你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

DeletedStorageAccountItem 构造函数

定义

重载

DeletedStorageAccountItem()

初始化 DeletedStorageAccountItem 类的新实例。

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

初始化 DeletedStorageAccountItem 类的新实例。

DeletedStorageAccountItem()

Source:
DeletedStorageAccountItem.cs

初始化 DeletedStorageAccountItem 类的新实例。

public DeletedStorageAccountItem ();
Public Sub New ()

适用于

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

Source:
DeletedStorageAccountItem.cs

初始化 DeletedStorageAccountItem 类的新实例。

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)

参数

id
String

存储标识符。

resourceId
String

存储帐户资源 ID。

attributes
StorageAccountAttributes

存储帐户管理属性。

tags
IDictionary<String,String>

键/值对形式的应用程序特定元数据。

recoveryId
String

恢复对象的 URL,用于标识和恢复已删除的存储帐户。

scheduledPurgeDate
Nullable<DateTime>

计划清除存储帐户的时间(UTC)

deletedDate
Nullable<DateTime>

删除存储帐户的时间(UTC)

适用于