Share via


CertificateReference Constructors

Definition

Overloads

CertificateReference()

Initializes a new instance of the CertificateReference class.

CertificateReference(String, Nullable<CertificateStoreLocation>, String, IList<CertificateVisibility>)

Initializes a new instance of the CertificateReference class.

CertificateReference()

Initializes a new instance of the CertificateReference class.

public CertificateReference ();
Public Sub New ()

Applies to

CertificateReference(String, Nullable<CertificateStoreLocation>, String, IList<CertificateVisibility>)

Initializes a new instance of the CertificateReference class.

public CertificateReference (string id, Microsoft.Azure.Management.Batch.Models.CertificateStoreLocation? storeLocation = default, string storeName = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Batch.Models.CertificateVisibility> visibility = default);
new Microsoft.Azure.Management.Batch.Models.CertificateReference : string * Nullable<Microsoft.Azure.Management.Batch.Models.CertificateStoreLocation> * string * System.Collections.Generic.IList<Microsoft.Azure.Management.Batch.Models.CertificateVisibility> -> Microsoft.Azure.Management.Batch.Models.CertificateReference
Public Sub New (id As String, Optional storeLocation As Nullable(Of CertificateStoreLocation) = Nothing, Optional storeName As String = Nothing, Optional visibility As IList(Of CertificateVisibility) = Nothing)

Parameters

id
String

The fully qualified ID of the certificate to install on the pool. This must be inside the same batch account as the pool.

storeLocation
Nullable<CertificateStoreLocation>

The location of the certificate store on the compute node into which to install the certificate.

storeName
String

The name of the certificate store on the compute node into which to install the certificate.

visibility
IList<CertificateVisibility>

Which user accounts on the compute node should have access to the private data of the certificate.

Applies to