Share via


DeletedStorageBundle Constructors

Definition

Overloads

DeletedStorageBundle()

Initializes a new instance of the DeletedStorageBundle class.

DeletedStorageBundle(String, String, String, Nullable<Boolean>, String, StorageAccountAttributes, IDictionary<String,String>, String, Nullable<DateTime>, Nullable<DateTime>)

Initializes a new instance of the DeletedStorageBundle class.

DeletedStorageBundle()

Source:
DeletedStorageBundle.cs

Initializes a new instance of the DeletedStorageBundle class.

public DeletedStorageBundle ();
Public Sub New ()

Applies to

DeletedStorageBundle(String, String, String, Nullable<Boolean>, String, StorageAccountAttributes, IDictionary<String,String>, String, Nullable<DateTime>, Nullable<DateTime>)

Source:
DeletedStorageBundle.cs

Initializes a new instance of the DeletedStorageBundle class.

public DeletedStorageBundle (string id = default, string resourceId = default, string activeKeyName = default, bool? autoRegenerateKey = default, string regenerationPeriod = default, Microsoft.Azure.KeyVault.Models.StorageAccountAttributes attributes = default, System.Collections.Generic.IDictionary<string,string> tags = default, string recoveryId = default, DateTime? scheduledPurgeDate = default, DateTime? deletedDate = default);
new Microsoft.Azure.KeyVault.Models.DeletedStorageBundle : string * string * string * Nullable<bool> * string * Microsoft.Azure.KeyVault.Models.StorageAccountAttributes * System.Collections.Generic.IDictionary<string, string> * string * Nullable<DateTime> * Nullable<DateTime> -> Microsoft.Azure.KeyVault.Models.DeletedStorageBundle
Public Sub New (Optional id As String = Nothing, Optional resourceId As String = Nothing, Optional activeKeyName As String = Nothing, Optional autoRegenerateKey As Nullable(Of Boolean) = Nothing, Optional regenerationPeriod As String = Nothing, Optional attributes As StorageAccountAttributes = Nothing, Optional tags As IDictionary(Of String, String) = Nothing, Optional recoveryId As String = Nothing, Optional scheduledPurgeDate As Nullable(Of DateTime) = Nothing, Optional deletedDate As Nullable(Of DateTime) = Nothing)

Parameters

id
String

The storage account id.

resourceId
String

The storage account resource id.

activeKeyName
String

The current active storage account key name.

autoRegenerateKey
Nullable<Boolean>

whether keyvault should manage the storage account for the user.

regenerationPeriod
String

The key regeneration time duration specified in ISO-8601 format.

attributes
StorageAccountAttributes

The storage account attributes.

tags
IDictionary<String,String>

Application specific metadata in the form of key-value pairs

recoveryId
String

The url of the recovery object, used to identify and recover the deleted storage account.

scheduledPurgeDate
Nullable<DateTime>

The time when the storage account is scheduled to be purged, in UTC

deletedDate
Nullable<DateTime>

The time when the storage account was deleted, in UTC

Applies to