AppServiceCertificate 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
AppServiceCertificate() |
Initializes a new instance of the AppServiceCertificate class. |
AppServiceCertificate(String, String, Nullable<KeyVaultSecretStatus>) |
Initializes a new instance of the AppServiceCertificate class. |
AppServiceCertificate()
Initializes a new instance of the AppServiceCertificate class.
public AppServiceCertificate ();
Public Sub New ()
Applies to
AppServiceCertificate(String, String, Nullable<KeyVaultSecretStatus>)
Initializes a new instance of the AppServiceCertificate class.
public AppServiceCertificate (string keyVaultId = default, string keyVaultSecretName = default, Microsoft.Azure.Management.AppService.Fluent.Models.KeyVaultSecretStatus? provisioningState = default);
new Microsoft.Azure.Management.AppService.Fluent.Models.AppServiceCertificate : string * string * Nullable<Microsoft.Azure.Management.AppService.Fluent.Models.KeyVaultSecretStatus> -> Microsoft.Azure.Management.AppService.Fluent.Models.AppServiceCertificate
Public Sub New (Optional keyVaultId As String = Nothing, Optional keyVaultSecretName As String = Nothing, Optional provisioningState As Nullable(Of KeyVaultSecretStatus) = Nothing)
Parameters
- keyVaultId
- String
Key Vault resource Id.
- keyVaultSecretName
- String
Key Vault secret name.
- provisioningState
- Nullable<KeyVaultSecretStatus>
Status of the Key Vault secret. Possible values include: 'Initialized', 'WaitingOnCertificateOrder', 'Succeeded', 'CertificateOrderFailed', 'OperationNotPermittedOnKeyVault', 'AzureServiceUnauthorizedToAccessKeyVault', 'KeyVaultDoesNotExist', 'KeyVaultSecretDoesNotExist', 'UnknownError', 'ExternalPrivateKey', 'Unknown'
Applies to
Azure SDK for .NET