DeletedSasDefinitionBundle Constructors

Definition

Overloads

DeletedSasDefinitionBundle()

Initializes a new instance of the DeletedSasDefinitionBundle class.

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

Initializes a new instance of the DeletedSasDefinitionBundle class.

DeletedSasDefinitionBundle()

Source:
DeletedSasDefinitionBundle.cs

Initializes a new instance of the DeletedSasDefinitionBundle class.

public DeletedSasDefinitionBundle ();
Public Sub New ()

Applies to

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

Source:
DeletedSasDefinitionBundle.cs

Initializes a new instance of the DeletedSasDefinitionBundle class.

public DeletedSasDefinitionBundle (string id = default, string secretId = default, string templateUri = default, string sasType = default, string validityPeriod = 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.DeletedSasDefinitionBundle : string * string * string * string * string * Microsoft.Azure.KeyVault.Models.SasDefinitionAttributes * System.Collections.Generic.IDictionary<string, string> * string * Nullable<DateTime> * Nullable<DateTime> -> Microsoft.Azure.KeyVault.Models.DeletedSasDefinitionBundle
Public Sub New (Optional id As String = Nothing, Optional secretId As String = Nothing, Optional templateUri As String = Nothing, Optional sasType As String = Nothing, Optional validityPeriod 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 SAS definition id.

secretId
String

Storage account SAS definition secret id.

templateUri
String

The SAS definition token template signed with an arbitrary key. Tokens created according to the SAS definition will have the same properties as the template.

sasType
String

The type of SAS token the SAS definition will create. Possible values include: 'account', 'service'

validityPeriod
String

The validity period of SAS tokens created according to the SAS definition.

attributes
SasDefinitionAttributes

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