DeletedSecretItem 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
DeletedSecretItem() |
Initializes a new instance of the DeletedSecretItem class. |
DeletedSecretItem(String, SecretAttributes, IDictionary<String,String>, String, Nullable<Boolean>, String, Nullable<DateTime>, Nullable<DateTime>) |
Initializes a new instance of the DeletedSecretItem class. |
DeletedSecretItem()
- Source:
- DeletedSecretItem.cs
Initializes a new instance of the DeletedSecretItem class.
public DeletedSecretItem ();
Public Sub New ()
Applies to
DeletedSecretItem(String, SecretAttributes, IDictionary<String,String>, String, Nullable<Boolean>, String, Nullable<DateTime>, Nullable<DateTime>)
- Source:
- DeletedSecretItem.cs
Initializes a new instance of the DeletedSecretItem class.
public DeletedSecretItem (string id = default, Microsoft.Azure.KeyVault.Models.SecretAttributes attributes = default, System.Collections.Generic.IDictionary<string,string> tags = default, string contentType = default, bool? managed = default, string recoveryId = default, DateTime? scheduledPurgeDate = default, DateTime? deletedDate = default);
new Microsoft.Azure.KeyVault.Models.DeletedSecretItem : string * Microsoft.Azure.KeyVault.Models.SecretAttributes * System.Collections.Generic.IDictionary<string, string> * string * Nullable<bool> * string * Nullable<DateTime> * Nullable<DateTime> -> Microsoft.Azure.KeyVault.Models.DeletedSecretItem
Public Sub New (Optional id As String = Nothing, Optional attributes As SecretAttributes = Nothing, Optional tags As IDictionary(Of String, String) = Nothing, Optional contentType 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
- id
- String
Secret identifier.
- attributes
- SecretAttributes
The secret management attributes.
- tags
- IDictionary<String,String>
Application specific metadata in the form of key-value pairs.
- contentType
- String
Type of the secret value such as a password.
True if the secret's lifetime is managed by key vault. If this is a key 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