CertificateOperation 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
CertificateOperation() |
Initializes a new instance of the CertificateOperation class. |
CertificateOperation(String, IssuerParameters, Byte[], Nullable<Boolean>, String, String, Error, String, String) |
Initializes a new instance of the CertificateOperation class. |
CertificateOperation()
- Source:
- CertificateOperation.cs
Initializes a new instance of the CertificateOperation class.
public CertificateOperation ();
Public Sub New ()
Applies to
CertificateOperation(String, IssuerParameters, Byte[], Nullable<Boolean>, String, String, Error, String, String)
- Source:
- CertificateOperation.cs
Initializes a new instance of the CertificateOperation class.
public CertificateOperation (string id = default, Microsoft.Azure.KeyVault.Models.IssuerParameters issuerParameters = default, byte[] csr = default, bool? cancellationRequested = default, string status = default, string statusDetails = default, Microsoft.Azure.KeyVault.Models.Error error = default, string target = default, string requestId = default);
new Microsoft.Azure.KeyVault.Models.CertificateOperation : string * Microsoft.Azure.KeyVault.Models.IssuerParameters * byte[] * Nullable<bool> * string * string * Microsoft.Azure.KeyVault.Models.Error * string * string -> Microsoft.Azure.KeyVault.Models.CertificateOperation
Public Sub New (Optional id As String = Nothing, Optional issuerParameters As IssuerParameters = Nothing, Optional csr As Byte() = Nothing, Optional cancellationRequested As Nullable(Of Boolean) = Nothing, Optional status As String = Nothing, Optional statusDetails As String = Nothing, Optional error As Error = Nothing, Optional target As String = Nothing, Optional requestId As String = Nothing)
Parameters
- id
- String
The certificate id.
- issuerParameters
- IssuerParameters
Parameters for the issuer of the X509 component of a certificate.
- csr
- Byte[]
The certificate signing request (CSR) that is being used in the certificate operation.
Indicates if cancellation was requested on the certificate operation.
- status
- String
Status of the certificate operation.
- statusDetails
- String
The status details of the certificate operation.
- error
- Error
Error encountered, if any, during the certificate operation.
- target
- String
Location which contains the result of the certificate operation.
- requestId
- String
Identifier for the certificate operation.
Applies to
Azure SDK for .NET