CertificateReference Constructors
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.
Overloads
CertificateReference() |
Initializes a new instance of the CertificateReference class. |
CertificateReference(String, String, Nullable<CertificateStoreLocation>, String, IList<CertificateVisibility>) |
Initializes a new instance of the CertificateReference class. |
CertificateReference()
- Source:
- CertificateReference.cs
Initializes a new instance of the CertificateReference class.
public CertificateReference ();
Public Sub New ()
Applies to
CertificateReference(String, String, Nullable<CertificateStoreLocation>, String, IList<CertificateVisibility>)
- Source:
- CertificateReference.cs
Initializes a new instance of the CertificateReference class.
public CertificateReference (string thumbprint, string thumbprintAlgorithm, Microsoft.Azure.Batch.Protocol.Models.CertificateStoreLocation? storeLocation = default, string storeName = default, System.Collections.Generic.IList<Microsoft.Azure.Batch.Protocol.Models.CertificateVisibility> visibility = default);
new Microsoft.Azure.Batch.Protocol.Models.CertificateReference : string * string * Nullable<Microsoft.Azure.Batch.Protocol.Models.CertificateStoreLocation> * string * System.Collections.Generic.IList<Microsoft.Azure.Batch.Protocol.Models.CertificateVisibility> -> Microsoft.Azure.Batch.Protocol.Models.CertificateReference
Public Sub New (thumbprint As String, thumbprintAlgorithm As String, Optional storeLocation As Nullable(Of CertificateStoreLocation) = Nothing, Optional storeName As String = Nothing, Optional visibility As IList(Of CertificateVisibility) = Nothing)
Parameters
- thumbprint
- String
The thumbprint of the Certificate.
- thumbprintAlgorithm
- String
The algorithm with which the thumbprint is associated. This must be sha1.
- 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
Azure SDK for .NET