Share via


CertificateReference.StoreLocation Property

Definition

Gets or sets the location of the certificate store on the compute node into which to install the certificate.

[Newtonsoft.Json.JsonProperty(PropertyName="storeLocation")]
public Microsoft.Azure.Management.Batch.Models.CertificateStoreLocation? StoreLocation { get; set; }
[<Newtonsoft.Json.JsonProperty(PropertyName="storeLocation")>]
member this.StoreLocation : Nullable<Microsoft.Azure.Management.Batch.Models.CertificateStoreLocation> with get, set
Public Property StoreLocation As Nullable(Of CertificateStoreLocation)

Property Value

Attributes
Newtonsoft.Json.JsonPropertyAttribute

Remarks

The default value is currentUser. This property is applicable only for pools configured with Windows nodes (that is, created with cloudServiceConfiguration, or with virtualMachineConfiguration using a Windows image reference). 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. Possible values include: 'CurrentUser', 'LocalMachine'

Applies to