Share via


StorageAccountItem Constructors

Definition

Overloads

StorageAccountItem()

Initializes a new instance of the StorageAccountItem class.

StorageAccountItem(String, String, StorageAccountAttributes, IDictionary<String,String>)

Initializes a new instance of the StorageAccountItem class.

StorageAccountItem()

Source:
StorageAccountItem.cs

Initializes a new instance of the StorageAccountItem class.

public StorageAccountItem ();
Public Sub New ()

Applies to

StorageAccountItem(String, String, StorageAccountAttributes, IDictionary<String,String>)

Source:
StorageAccountItem.cs

Initializes a new instance of the StorageAccountItem class.

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

Parameters

id
String

Storage identifier.

resourceId
String

Storage account resource Id.

attributes
StorageAccountAttributes

The storage account management attributes.

tags
IDictionary<String,String>

Application specific metadata in the form of key-value pairs.

Applies to