SasDefinitionAttributes Constructors

Definition

Overloads

SasDefinitionAttributes()

Initializes a new instance of the SasDefinitionAttributes class.

SasDefinitionAttributes(Nullable<Boolean>, Nullable<DateTime>, Nullable<DateTime>, String)

Initializes a new instance of the SasDefinitionAttributes class.

SasDefinitionAttributes()

Source:
SasDefinitionAttributes.cs

Initializes a new instance of the SasDefinitionAttributes class.

public SasDefinitionAttributes ();
Public Sub New ()

Applies to

SasDefinitionAttributes(Nullable<Boolean>, Nullable<DateTime>, Nullable<DateTime>, String)

Source:
SasDefinitionAttributes.cs

Initializes a new instance of the SasDefinitionAttributes class.

public SasDefinitionAttributes (bool? enabled = default, DateTime? created = default, DateTime? updated = default, string recoveryLevel = default);
new Microsoft.Azure.KeyVault.Models.SasDefinitionAttributes : Nullable<bool> * Nullable<DateTime> * Nullable<DateTime> * string -> Microsoft.Azure.KeyVault.Models.SasDefinitionAttributes
Public Sub New (Optional enabled As Nullable(Of Boolean) = Nothing, Optional created As Nullable(Of DateTime) = Nothing, Optional updated As Nullable(Of DateTime) = Nothing, Optional recoveryLevel As String = Nothing)

Parameters

enabled
Nullable<Boolean>

the enabled state of the object.

created
Nullable<DateTime>

Creation time in UTC.

updated
Nullable<DateTime>

Last updated time in UTC.

recoveryLevel
String

Reflects the deletion recovery level currently in effect for SAS definitions in the current vault. If it contains 'Purgeable' the SAS definition can be permanently deleted by a privileged user; otherwise, only the system can purge the SAS definition, at the end of the retention interval. Possible values include: 'Purgeable', 'Recoverable+Purgeable', 'Recoverable', 'Recoverable+ProtectedSubscription'

Applies to