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

DeletedSasDefinitionItem 构造函数

定义

重载

DeletedSasDefinitionItem()

初始化 DeletedSasDefinitionItem 类的新实例。

DeletedSasDefinitionItem(String, String, SasDefinitionAttributes, IDictionary<String,String>, String, Nullable<DateTime>, Nullable<DateTime>)

初始化 DeletedSasDefinitionItem 类的新实例。

DeletedSasDefinitionItem()

Source:
DeletedSasDefinitionItem.cs

初始化 DeletedSasDefinitionItem 类的新实例。

public DeletedSasDefinitionItem ();
Public Sub New ()

适用于

DeletedSasDefinitionItem(String, String, SasDefinitionAttributes, IDictionary<String,String>, String, Nullable<DateTime>, Nullable<DateTime>)

Source:
DeletedSasDefinitionItem.cs

初始化 DeletedSasDefinitionItem 类的新实例。

public DeletedSasDefinitionItem (string id = default, string secretId = default, Microsoft.Azure.KeyVault.Models.SasDefinitionAttributes attributes = default, System.Collections.Generic.IDictionary<string,string> tags = default, string recoveryId = default, DateTime? scheduledPurgeDate = default, DateTime? deletedDate = default);
new Microsoft.Azure.KeyVault.Models.DeletedSasDefinitionItem : string * string * Microsoft.Azure.KeyVault.Models.SasDefinitionAttributes * System.Collections.Generic.IDictionary<string, string> * string * Nullable<DateTime> * Nullable<DateTime> -> Microsoft.Azure.KeyVault.Models.DeletedSasDefinitionItem
Public Sub New (Optional id As String = Nothing, Optional secretId As String = Nothing, Optional attributes As SasDefinitionAttributes = 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

存储 SAS 标识符。

secretId
String

存储帐户 SAS 定义机密 ID。

attributes
SasDefinitionAttributes

SAS 定义管理属性。

tags
IDictionary<String,String>

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

recoveryId
String

恢复对象的 URL,用于标识和恢复已删除的 SAS 定义。

scheduledPurgeDate
Nullable<DateTime>

计划清除 SAS 定义的时间(UTC)

deletedDate
Nullable<DateTime>

删除 SAS 定义的时间(UTC)

适用于