Share via


StorageBundle Constructors

Definition

Overloads

StorageBundle()

Initializes a new instance of the StorageBundle class.

StorageBundle(String, String, String, Nullable<Boolean>, String, StorageAccountAttributes, IDictionary<String,String>)

Initializes a new instance of the StorageBundle class.

StorageBundle()

Source:
StorageBundle.cs

Initializes a new instance of the StorageBundle class.

public StorageBundle ();
Public Sub New ()

Applies to

StorageBundle(String, String, String, Nullable<Boolean>, String, StorageAccountAttributes, IDictionary<String,String>)

Source:
StorageBundle.cs

Initializes a new instance of the StorageBundle class.

public StorageBundle (string id = default, string resourceId = default, string activeKeyName = default, bool? autoRegenerateKey = default, string regenerationPeriod = default, Microsoft.Azure.KeyVault.Models.StorageAccountAttributes attributes = default, System.Collections.Generic.IDictionary<string,string> tags = default);
new Microsoft.Azure.KeyVault.Models.StorageBundle : string * string * string * Nullable<bool> * string * Microsoft.Azure.KeyVault.Models.StorageAccountAttributes * System.Collections.Generic.IDictionary<string, string> -> Microsoft.Azure.KeyVault.Models.StorageBundle
Public Sub New (Optional id As String = Nothing, Optional resourceId As String = Nothing, Optional activeKeyName As String = Nothing, Optional autoRegenerateKey As Nullable(Of Boolean) = Nothing, Optional regenerationPeriod As String = Nothing, Optional attributes As StorageAccountAttributes = Nothing, Optional tags As IDictionary(Of String, String) = Nothing)

Parameters

id
String

The storage account id.

resourceId
String

The storage account resource id.

activeKeyName
String

The current active storage account key name.

autoRegenerateKey
Nullable<Boolean>

whether keyvault should manage the storage account for the user.

regenerationPeriod
String

The key regeneration time duration specified in ISO-8601 format.

attributes
StorageAccountAttributes

The storage account attributes.

tags
IDictionary<String,String>

Application specific metadata in the form of key-value pairs

Applies to