Package version:

Interface StorageAccountKey

An access key for the storage account.

interface StorageAccountKey {
    creationTime?: any;
    keyName?: string;
    permissions?: KeyPermission;
    value?: string;
}

Properties

creationTime?: any

Creation time of the key, in round trip date format. NOTE: This property will not be serialized. It can only be populated by the server.

keyName?: string

Name of the key. NOTE: This property will not be serialized. It can only be populated by the server.

permissions?: KeyPermission

Permissions for the key -- read-only or full permissions. NOTE: This property will not be serialized. It can only be populated by the server.

value?: string

Base 64-encoded value of the key. NOTE: This property will not be serialized. It can only be populated by the server.