IStorageAccountOperations Interface
Represents the interface for operations that are used to manage storage accounts.
Namespace: Microsoft.WindowsAzure.Management.Storage
Assembly: Microsoft.WindowsAzure.Management.Storage (in Microsoft.WindowsAzure.Management.Storage.dll)
Syntax
public interface IStorageAccountOperations
public interface class IStorageAccountOperations
type IStorageAccountOperations = interface end
Public Interface IStorageAccountOperations
Methods
Name | Description | |
---|---|---|
BeginCreatingAsync(StorageAccountCreateParameters, CancellationToken) | Asynchronously initiates the creation of a storage account. |
|
CheckNameAvailabilityAsync(String, CancellationToken) | Asynchronously checks for the availability of the specified storage account name. |
|
CreateAsync(StorageAccountCreateParameters, CancellationToken) | Asynchronously creates a storage account. |
|
DeleteAsync(String, CancellationToken) | Asynchronously deletes a storage account. |
|
GetAsync(String, CancellationToken) | Asynchronously retrieves information about a storage account. |
|
GetKeysAsync(String, CancellationToken) | Asynchronously retrieves the primary and secondary access keys for a storage account. |
|
ListAsync(CancellationToken) | Asynchronously lists the storage accounts in a subscription. |
|
RegenerateKeysAsync(StorageAccountRegenerateKeysParameters, CancellationToken) | Asynchronously regenerates the primary or secondary access key for a storage account. |
|
UpdateAsync(String, StorageAccountUpdateParameters, CancellationToken) | Asynchronously updates attributes of a storage account. |
Extension Methods
Name | Description | |
---|---|---|
BeginCreating(StorageAccountCreateParameters) | Initiates the creation of a storage account.(Defined by StorageAccountOperationsExtensions.) |
|
BeginCreatingAsync(StorageAccountCreateParameters) | Asynchronously initiates the creation of a storage account.(Defined by StorageAccountOperationsExtensions.) |
|
CheckNameAvailability(String) | Checks for the availability of the specified storage account name.(Defined by StorageAccountOperationsExtensions.) |
|
CheckNameAvailabilityAsync(String) | Asynchronously checks for the availability of the specified storage account name.(Defined by StorageAccountOperationsExtensions.) |
|
Create(StorageAccountCreateParameters) | Creates a storage account.(Defined by StorageAccountOperationsExtensions.) |
|
CreateAsync(StorageAccountCreateParameters) | Asynchronously creates a storage account.(Defined by StorageAccountOperationsExtensions.) |
|
Delete(String) | Deletes a storage account.(Defined by StorageAccountOperationsExtensions.) |
|
DeleteAsync(String) | Asynchronously deletes a storage account.(Defined by StorageAccountOperationsExtensions.) |
|
Get(String) | Retrieves information about a storage account.(Defined by StorageAccountOperationsExtensions.) |
|
GetAsync(String) | Asynchronously retrieves information about a storage account.(Defined by StorageAccountOperationsExtensions.) |
|
GetKeys(String) | Retrieves the primary and secondary access keys for a storage account.(Defined by StorageAccountOperationsExtensions.) |
|
GetKeysAsync(String) | Asynchronously retrieves the primary and secondary access keys for a storage account.(Defined by StorageAccountOperationsExtensions.) |
|
List() | Lists the storage accounts in a subscription.(Defined by StorageAccountOperationsExtensions.) |
|
ListAsync() | Asynchronously lists the storage accounts in a subscription.(Defined by StorageAccountOperationsExtensions.) |
|
RegenerateKeys(StorageAccountRegenerateKeysParameters) | Regenerates the primary or secondary access key for a storage account.(Defined by StorageAccountOperationsExtensions.) |
|
RegenerateKeysAsync(StorageAccountRegenerateKeysParameters) | Asynchronously regenerates the primary or secondary access key for a storage account.(Defined by StorageAccountOperationsExtensions.) |
|
Update(String, StorageAccountUpdateParameters) | Updates attributes of a storage account.(Defined by StorageAccountOperationsExtensions.) |
|
UpdateAsync(String, StorageAccountUpdateParameters) | Asynchronously updates attributes of a storage account.(Defined by StorageAccountOperationsExtensions.) |
Remarks
For more information about managing storage accounts, see the following resources:
See Also
Microsoft.WindowsAzure.Management.Storage Namespace
Return to top