StorageAccountKey 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
StorageAccountKey() |
Initializes a new instance of the StorageAccountKey class. |
StorageAccountKey(String, String, Nullable<KeyPermission>) |
Initializes a new instance of the StorageAccountKey class. |
StorageAccountKey()
Initializes a new instance of the StorageAccountKey class.
public StorageAccountKey ();
Public Sub New ()
Applies to
StorageAccountKey(String, String, Nullable<KeyPermission>)
Initializes a new instance of the StorageAccountKey class.
public StorageAccountKey (string keyName = default, string value = default, Microsoft.Azure.Management.Storage.Fluent.Models.KeyPermission? permissions = default);
new Microsoft.Azure.Management.Storage.Fluent.Models.StorageAccountKey : string * string * Nullable<Microsoft.Azure.Management.Storage.Fluent.Models.KeyPermission> -> Microsoft.Azure.Management.Storage.Fluent.Models.StorageAccountKey
Public Sub New (Optional keyName As String = Nothing, Optional value As String = Nothing, Optional permissions As Nullable(Of KeyPermission) = Nothing)
Parameters
- keyName
- String
Name of the key.
- value
- String
Base 64-encoded value of the key.
- permissions
- Nullable<KeyPermission>
Permissions for the key -- read-only or full permissions. Possible values include: 'Read', 'Full'