DeletedSecretBundle 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
DeletedSecretBundle() |
Initializes a new instance of the DeletedSecretBundle class. |
DeletedSecretBundle(String, String, String, SecretAttributes, IDictionary<String,String>, String, Nullable<Boolean>, String, Nullable<DateTime>, Nullable<DateTime>) |
Initializes a new instance of the DeletedSecretBundle class. |
DeletedSecretBundle()
- Source:
- DeletedSecretBundle.cs
Initializes a new instance of the DeletedSecretBundle class.
public DeletedSecretBundle ();
Public Sub New ()
Applies to
DeletedSecretBundle(String, String, String, SecretAttributes, IDictionary<String,String>, String, Nullable<Boolean>, String, Nullable<DateTime>, Nullable<DateTime>)
- Source:
- DeletedSecretBundle.cs
Initializes a new instance of the DeletedSecretBundle class.
public DeletedSecretBundle (string value = default, string id = default, string contentType = default, Microsoft.Azure.KeyVault.Models.SecretAttributes attributes = default, System.Collections.Generic.IDictionary<string,string> tags = default, string kid = default, bool? managed = default, string recoveryId = default, DateTime? scheduledPurgeDate = default, DateTime? deletedDate = default);
new Microsoft.Azure.KeyVault.Models.DeletedSecretBundle : string * string * string * Microsoft.Azure.KeyVault.Models.SecretAttributes * System.Collections.Generic.IDictionary<string, string> * string * Nullable<bool> * string * Nullable<DateTime> * Nullable<DateTime> -> Microsoft.Azure.KeyVault.Models.DeletedSecretBundle
Public Sub New (Optional value As String = Nothing, Optional id As String = Nothing, Optional contentType As String = Nothing, Optional attributes As SecretAttributes = Nothing, Optional tags As IDictionary(Of String, String) = Nothing, Optional kid As String = Nothing, Optional managed As Nullable(Of Boolean) = Nothing, Optional recoveryId As String = Nothing, Optional scheduledPurgeDate As Nullable(Of DateTime) = Nothing, Optional deletedDate As Nullable(Of DateTime) = Nothing)
Parameters
- value
- String
The secret value.
- id
- String
The secret id.
- contentType
- String
The content type of the secret.
- attributes
- SecretAttributes
The secret management attributes.
- tags
- IDictionary<String,String>
Application specific metadata in the form of key-value pairs.
- kid
- String
If this is a secret backing a KV certificate, then this field specifies the corresponding key backing the KV certificate.
True if the secret's lifetime is managed by key vault. If this is a secret backing a certificate, then managed will be true.
- recoveryId
- String
The url of the recovery object, used to identify and recover the deleted secret.
Applies to
Azure SDK for .NET