CertificateCreateOrUpdateParameters 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
CertificateCreateOrUpdateParameters() |
Initializes a new instance of the CertificateCreateOrUpdateParameters class. |
CertificateCreateOrUpdateParameters(String, String, String, String, String, String, String, CertificateFormat, String) |
Initializes a new instance of the CertificateCreateOrUpdateParameters class. |
CertificateCreateOrUpdateParameters()
Initializes a new instance of the CertificateCreateOrUpdateParameters class.
public CertificateCreateOrUpdateParameters ();
Public Sub New ()
Applies to
CertificateCreateOrUpdateParameters(String, String, String, String, String, String, String, CertificateFormat, String)
Initializes a new instance of the CertificateCreateOrUpdateParameters class.
public CertificateCreateOrUpdateParameters (string data, string id = default, string name = default, string type = default, string etag = default, string thumbprintAlgorithm = default, string thumbprint = default, Microsoft.Azure.Management.Batch.Models.CertificateFormat format = Microsoft.Azure.Management.Batch.Models.CertificateFormat.Pfx, string password = default);
new Microsoft.Azure.Management.Batch.Models.CertificateCreateOrUpdateParameters : string * string * string * string * string * string * string * Microsoft.Azure.Management.Batch.Models.CertificateFormat * string -> Microsoft.Azure.Management.Batch.Models.CertificateCreateOrUpdateParameters
Public Sub New (data As String, Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional etag As String = Nothing, Optional thumbprintAlgorithm As String = Nothing, Optional thumbprint As String = Nothing, Optional format As CertificateFormat = Microsoft.Azure.Management.Batch.Models.CertificateFormat.Pfx, Optional password As String = Nothing)
Parameters
- data
- String
The base64-encoded contents of the certificate.
- id
- String
The ID of the resource.
- name
- String
The name of the resource.
- type
- String
The type of the resource.
- etag
- String
The ETag of the resource, used for concurrency statements.
- thumbprintAlgorithm
- String
The algorithm of the certificate thumbprint.
- thumbprint
- String
The thumbprint of the certificate.
- format
- CertificateFormat
The format of the certificate - either Pfx or Cer. If omitted, the default is Pfx. Possible values include: 'Pfx', 'Cer'
- password
- String
The password to access the certificate's private key.
Applies to
Azure SDK for .NET