Accounts interface

Interface representing a Accounts.

Methods

createOrUpdate(string, string, Account, AccountsCreateOrUpdateOptionalParams)

Creates or updates a team account with the specified parameters.

delete(string, string, AccountsDeleteOptionalParams)

Deletes a machine learning team account.

get(string, string, AccountsGetOptionalParams)

Gets the properties of the specified machine learning team account.

list(AccountsListOptionalParams)

Lists all the available machine learning team accounts under the specified subscription.

listByResourceGroup(string, AccountsListByResourceGroupOptionalParams)

Lists all the available machine learning team accounts under the specified resource group.

update(string, string, AccountUpdateParameters, AccountsUpdateOptionalParams)

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.

options
AccountsCreateOrUpdateOptionalParams

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.

options
AccountsListByResourceGroupOptionalParams

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>