SasDefinitionUpdateParameters 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
SasDefinitionUpdateParameters() |
Initializes a new instance of the SasDefinitionUpdateParameters class. |
SasDefinitionUpdateParameters(String, String, String, SasDefinitionAttributes, IDictionary<String,String>) |
Initializes a new instance of the SasDefinitionUpdateParameters class. |
SasDefinitionUpdateParameters()
Initializes a new instance of the SasDefinitionUpdateParameters class.
public SasDefinitionUpdateParameters ();
Public Sub New ()
Applies to
SasDefinitionUpdateParameters(String, String, String, SasDefinitionAttributes, IDictionary<String,String>)
Initializes a new instance of the SasDefinitionUpdateParameters class.
public SasDefinitionUpdateParameters (string templateUri = default, string sasType = default, string validityPeriod = default, Microsoft.Azure.KeyVault.Models.SasDefinitionAttributes sasDefinitionAttributes = default, System.Collections.Generic.IDictionary<string,string> tags = default);
new Microsoft.Azure.KeyVault.Models.SasDefinitionUpdateParameters : string * string * string * Microsoft.Azure.KeyVault.Models.SasDefinitionAttributes * System.Collections.Generic.IDictionary<string, string> -> Microsoft.Azure.KeyVault.Models.SasDefinitionUpdateParameters
Public Sub New (Optional templateUri As String = Nothing, Optional sasType As String = Nothing, Optional validityPeriod As String = Nothing, 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