StorageAccountCreateParameters 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
StorageAccountCreateParameters() |
Initializes a new instance of the StorageAccountCreateParameters class. |
StorageAccountCreateParameters(String, String, Boolean, String, StorageAccountAttributes, IDictionary<String,String>) |
Initializes a new instance of the StorageAccountCreateParameters class. |
StorageAccountCreateParameters()
Initializes a new instance of the StorageAccountCreateParameters class.
public StorageAccountCreateParameters ();
Public Sub New ()
Applies to
StorageAccountCreateParameters(String, String, Boolean, String, StorageAccountAttributes, IDictionary<String,String>)
Initializes a new instance of the StorageAccountCreateParameters class.
public StorageAccountCreateParameters (string resourceId, string activeKeyName, bool autoRegenerateKey, string regenerationPeriod = default, Microsoft.Azure.KeyVault.Models.StorageAccountAttributes storageAccountAttributes = default, System.Collections.Generic.IDictionary<string,string> tags = default);
new Microsoft.Azure.KeyVault.Models.StorageAccountCreateParameters : string * string * bool * string * Microsoft.Azure.KeyVault.Models.StorageAccountAttributes * System.Collections.Generic.IDictionary<string, string> -> Microsoft.Azure.KeyVault.Models.StorageAccountCreateParameters
Public Sub New (resourceId As String, activeKeyName As String, autoRegenerateKey As Boolean, Optional regenerationPeriod As String = Nothing, Optional storageAccountAttributes As StorageAccountAttributes = Nothing, Optional tags As IDictionary(Of String, String) = Nothing)
Parameters
- resourceId
- String
Storage account resource id.
- activeKeyName
- String
Current active storage account key name.
- autoRegenerateKey
- Boolean
whether keyvault should manage the storage account for the user.
- regenerationPeriod
- String
The key regeneration time duration specified in ISO-8601 format.
- storageAccountAttributes
- StorageAccountAttributes
The attributes of the storage account.
- tags
- IDictionary<String,String>
Application specific metadata in the form of key-value pairs.
Applies to
Azure SDK for .NET