Accounts interface
Interface representing a Accounts.
Methods
create |
Creates or updates a team account with the specified parameters. |
delete(string, string, Accounts |
Deletes a machine learning team account. |
get(string, string, Accounts |
Gets the properties of the specified machine learning team account. |
list(Accounts |
Lists all the available machine learning team accounts under the specified subscription. |
list |
Lists all the available machine learning team accounts under the specified resource group. |
update(string, string, Account |
Updates a machine learning team account with the specified parameters. |
Method Details
createOrUpdate(string, string, Account, AccountsCreateOrUpdateOptionalParams)
Creates or updates a team account with the specified parameters.
function createOrUpdate(resourceGroupName: string, accountName: string, parameters: Account, options?: AccountsCreateOrUpdateOptionalParams): Promise<Account>
Parameters
- resourceGroupName
-
string
The name of the resource group to which the machine learning team account belongs.
- accountName
-
string
The name of the machine learning team account.
- parameters
- Account
The parameters for creating or updating a machine learning team account.
The options parameters.
Returns
Promise<Account>
delete(string, string, AccountsDeleteOptionalParams)
Deletes a machine learning team account.
function delete(resourceGroupName: string, accountName: string, options?: AccountsDeleteOptionalParams): Promise<void>
Parameters
- resourceGroupName
-
string
The name of the resource group to which the machine learning team account belongs.
- accountName
-
string
The name of the machine learning team account.
- options
- AccountsDeleteOptionalParams
The options parameters.
Returns
Promise<void>
get(string, string, AccountsGetOptionalParams)
Gets the properties of the specified machine learning team account.
function get(resourceGroupName: string, accountName: string, options?: AccountsGetOptionalParams): Promise<Account>
Parameters
- resourceGroupName
-
string
The name of the resource group to which the machine learning team account belongs.
- accountName
-
string
The name of the machine learning team account.
- options
- AccountsGetOptionalParams
The options parameters.
Returns
Promise<Account>
list(AccountsListOptionalParams)
Lists all the available machine learning team accounts under the specified subscription.
function list(options?: AccountsListOptionalParams): PagedAsyncIterableIterator<Account, Account[], PageSettings>
Parameters
- options
- AccountsListOptionalParams
The options parameters.
Returns
listByResourceGroup(string, AccountsListByResourceGroupOptionalParams)
Lists all the available machine learning team accounts under the specified resource group.
function listByResourceGroup(resourceGroupName: string, options?: AccountsListByResourceGroupOptionalParams): PagedAsyncIterableIterator<Account, Account[], PageSettings>
Parameters
- resourceGroupName
-
string
The name of the resource group to which the machine learning team account belongs.
The options parameters.
Returns
update(string, string, AccountUpdateParameters, AccountsUpdateOptionalParams)
Updates a machine learning team account with the specified parameters.
function update(resourceGroupName: string, accountName: string, parameters: AccountUpdateParameters, options?: AccountsUpdateOptionalParams): Promise<Account>
Parameters
- resourceGroupName
-
string
The name of the resource group to which the machine learning team account belongs.
- accountName
-
string
The name of the machine learning team account.
- parameters
- AccountUpdateParameters
The parameters for updating a machine learning team account.
- options
- AccountsUpdateOptionalParams
The options parameters.
Returns
Promise<Account>
Azure SDK for JavaScript