SasDefinitionBundle Constructors

Definition

Overloads

SasDefinitionBundle()

Initializes a new instance of the SasDefinitionBundle class.

SasDefinitionBundle(String, String, String, String, String, SasDefinitionAttributes, IDictionary<String,String>)

Initializes a new instance of the SasDefinitionBundle class.

SasDefinitionBundle()

Source:
SasDefinitionBundle.cs

Initializes a new instance of the SasDefinitionBundle class.

public SasDefinitionBundle ();
Public Sub New ()

Applies to

SasDefinitionBundle(String, String, String, String, String, SasDefinitionAttributes, IDictionary<String,String>)

Source:
SasDefinitionBundle.cs

Initializes a new instance of the SasDefinitionBundle class.

public SasDefinitionBundle (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);
new Microsoft.Azure.KeyVault.Models.SasDefinitionBundle : string * string * string * string * string * Microsoft.Azure.KeyVault.Models.SasDefinitionAttributes * System.Collections.Generic.IDictionary<string, string> -> Microsoft.Azure.KeyVault.Models.SasDefinitionBundle
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)

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

Applies to