DeletedStorageAccountItem Constructors

Definition

Overloads

DeletedStorageAccountItem()

Initializes a new instance of the DeletedStorageAccountItem class.

DeletedStorageAccountItem(String, String, StorageAccountAttributes, IDictionary<String,String>, String, Nullable<DateTime>, Nullable<DateTime>)

Initializes a new instance of the DeletedStorageAccountItem class.

DeletedStorageAccountItem()

Source:
DeletedStorageAccountItem.cs

Initializes a new instance of the DeletedStorageAccountItem class.

public DeletedStorageAccountItem ();
Public Sub New ()

Applies to

DeletedStorageAccountItem(String, String, StorageAccountAttributes, IDictionary<String,String>, String, Nullable<DateTime>, Nullable<DateTime>)

Source:
DeletedStorageAccountItem.cs

Initializes a new instance of the DeletedStorageAccountItem class.

public DeletedStorageAccountItem (string id = default, string resourceId = 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.DeletedStorageAccountItem : string * string * Microsoft.Azure.KeyVault.Models.StorageAccountAttributes * System.Collections.Generic.IDictionary<string, string> * string * Nullable<DateTime> * Nullable<DateTime> -> Microsoft.Azure.KeyVault.Models.DeletedStorageAccountItem
Public Sub New (Optional id As String = Nothing, Optional resourceId 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

Storage identifier.

resourceId
String

Storage account resource Id.

attributes
StorageAccountAttributes

The storage account management 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