Share via


DeletedSasDefinitionItem Constructors

Definition

Overloads

DeletedSasDefinitionItem()

Initializes a new instance of the DeletedSasDefinitionItem class.

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

Initializes a new instance of the DeletedSasDefinitionItem class.

DeletedSasDefinitionItem()

Source:
DeletedSasDefinitionItem.cs

Initializes a new instance of the DeletedSasDefinitionItem class.

public DeletedSasDefinitionItem ();
Public Sub New ()

Applies to

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

Source:
DeletedSasDefinitionItem.cs

Initializes a new instance of the DeletedSasDefinitionItem class.

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)

Parameters

id
String

The storage SAS identifier.

secretId
String

The storage account SAS definition secret id.

attributes
SasDefinitionAttributes

The SAS definition 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 SAS definition.

scheduledPurgeDate
Nullable<DateTime>

The time when the SAS definition is scheduled to be purged, in UTC

deletedDate
Nullable<DateTime>

The time when the SAS definition was deleted, in UTC

Applies to