PoolSpecification.CertificateReferences Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a list of Certificates to be installed on each Compute Node in the Pool.
[Newtonsoft.Json.JsonProperty(PropertyName="certificateReferences")]
public System.Collections.Generic.IList<Microsoft.Azure.Batch.Protocol.Models.CertificateReference> CertificateReferences { get; set; }
[<Newtonsoft.Json.JsonProperty(PropertyName="certificateReferences")>]
member this.CertificateReferences : System.Collections.Generic.IList<Microsoft.Azure.Batch.Protocol.Models.CertificateReference> with get, set
Public Property CertificateReferences As IList(Of CertificateReference)
Property Value
- Attributes
-
Newtonsoft.Json.JsonPropertyAttribute
Remarks
For Windows Nodes, the Batch service installs the Certificates to the specified Certificate store and location. For Linux Compute Nodes, the Certificates are stored in a directory inside the Task working directory and an environment variable AZ_BATCH_CERTIFICATES_DIR is supplied to the Task to query for this location. For Certificates with visibility of 'remoteUser', a 'certs' directory is created in the user's home directory (e.g., /home/{user-name}/certs) and Certificates are placed in that directory.
Warning: This property is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead.
Applies to
Azure SDK for .NET