AccountsOperations interface
Interface representing a Accounts operations.
Properties
| create |
Creates an account. |
| delete | Delete an account. |
| get | Get information about an account. |
| list |
Retrieve a list of accounts within a given resource group. |
| list |
Retrieve a list of accounts within a subscription. |
| update | Updates an account. |
Property Details
createOrUpdate
Creates an account.
createOrUpdate: (accountName: string, resourceGroupName: string, parameters: Account, options?: AccountsCreateOrUpdateOptionalParams) => Promise<Account>
Property Value
(accountName: string, resourceGroupName: string, parameters: Account, options?: AccountsCreateOrUpdateOptionalParams) => Promise<Account>
delete
Delete an account.
delete: (accountName: string, resourceGroupName: string, options?: AccountsDeleteOptionalParams) => Promise<void>
Property Value
(accountName: string, resourceGroupName: string, options?: AccountsDeleteOptionalParams) => Promise<void>
get
Get information about an account.
get: (accountName: string, resourceGroupName: string, options?: AccountsGetOptionalParams) => Promise<Account>
Property Value
(accountName: string, resourceGroupName: string, options?: AccountsGetOptionalParams) => Promise<Account>
listByResourceGroup
Retrieve a list of accounts within a given resource group.
listByResourceGroup: (resourceGroupName: string, options?: AccountsListByResourceGroupOptionalParams) => PagedAsyncIterableIterator<Account, Account[], PageSettings>
Property Value
(resourceGroupName: string, options?: AccountsListByResourceGroupOptionalParams) => PagedAsyncIterableIterator<Account, Account[], PageSettings>
listBySubscription
Retrieve a list of accounts within a subscription.
listBySubscription: (options?: AccountsListBySubscriptionOptionalParams) => PagedAsyncIterableIterator<Account, Account[], PageSettings>
Property Value
(options?: AccountsListBySubscriptionOptionalParams) => PagedAsyncIterableIterator<Account, Account[], PageSettings>
update
Updates an account.
update: (accountName: string, resourceGroupName: string, parameters: PatchAccount, options?: AccountsUpdateOptionalParams) => Promise<Account>
Property Value
(accountName: string, resourceGroupName: string, parameters: PatchAccount, options?: AccountsUpdateOptionalParams) => Promise<Account>