SasDefinitionCreateParameters Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
SasDefinitionCreateParameters() |
Initializes a new instance of the SasDefinitionCreateParameters class. |
SasDefinitionCreateParameters(String, String, String, SasDefinitionAttributes, IDictionary<String,String>) |
Initializes a new instance of the SasDefinitionCreateParameters class. |
SasDefinitionCreateParameters()
Initializes a new instance of the SasDefinitionCreateParameters class.
public SasDefinitionCreateParameters ();
Public Sub New ()
Applies to
SasDefinitionCreateParameters(String, String, String, SasDefinitionAttributes, IDictionary<String,String>)
Initializes a new instance of the SasDefinitionCreateParameters class.
public SasDefinitionCreateParameters (string templateUri, string sasType, string validityPeriod, Microsoft.Azure.KeyVault.Models.SasDefinitionAttributes sasDefinitionAttributes = default, System.Collections.Generic.IDictionary<string,string> tags = default);
new Microsoft.Azure.KeyVault.Models.SasDefinitionCreateParameters : string * string * string * Microsoft.Azure.KeyVault.Models.SasDefinitionAttributes * System.Collections.Generic.IDictionary<string, string> -> Microsoft.Azure.KeyVault.Models.SasDefinitionCreateParameters
Public Sub New (templateUri As String, sasType As String, validityPeriod As String, Optional sasDefinitionAttributes As SasDefinitionAttributes = Nothing, Optional tags As IDictionary(Of String, String) = Nothing)
Parameters
- 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.
- sasDefinitionAttributes
- SasDefinitionAttributes
The attributes of the SAS definition.
- tags
- IDictionary<String,String>
Application specific metadata in the form of key-value pairs.
Applies to
Azure SDK for .NET