Delen via


ApplicationOperations interface

Interface die een ApplicationOperations vertegenwoordigt.

Methoden

create(string, string, string, ApplicationCreateOptionalParams)

Hiermee voegt u een toepassing toe aan het opgegeven Batch-account.

delete(string, string, string, ApplicationDeleteOptionalParams)

Hiermee verwijdert u een toepassing.

get(string, string, string, ApplicationGetOptionalParams)

Hiermee haalt u informatie op over de opgegeven toepassing.

list(string, string, ApplicationListOptionalParams)

Een lijst met alle toepassingen in het opgegeven account.

update(string, string, string, Application, ApplicationUpdateOptionalParams)

Updates instellingen voor de opgegeven toepassing.

Methodedetails

create(string, string, string, ApplicationCreateOptionalParams)

Hiermee voegt u een toepassing toe aan het opgegeven Batch-account.

function create(resourceGroupName: string, accountName: string, applicationName: string, options?: ApplicationCreateOptionalParams): Promise<Application>

Parameters

resourceGroupName

string

De naam van de resourcegroep die het Batch-account bevat.

accountName

string

De naam van het Batch-account.

applicationName

string

De naam van de toepassing. Dit moet uniek zijn binnen het account.

options
ApplicationCreateOptionalParams

De optiesparameters.

Retouren

Promise<Application>

delete(string, string, string, ApplicationDeleteOptionalParams)

Hiermee verwijdert u een toepassing.

function delete(resourceGroupName: string, accountName: string, applicationName: string, options?: ApplicationDeleteOptionalParams): Promise<void>

Parameters

resourceGroupName

string

De naam van de resourcegroep die het Batch-account bevat.

accountName

string

De naam van het Batch-account.

applicationName

string

De naam van de toepassing. Dit moet uniek zijn binnen het account.

options
ApplicationDeleteOptionalParams

De optiesparameters.

Retouren

Promise<void>

get(string, string, string, ApplicationGetOptionalParams)

Hiermee haalt u informatie op over de opgegeven toepassing.

function get(resourceGroupName: string, accountName: string, applicationName: string, options?: ApplicationGetOptionalParams): Promise<Application>

Parameters

resourceGroupName

string

De naam van de resourcegroep die het Batch-account bevat.

accountName

string

De naam van het Batch-account.

applicationName

string

De naam van de toepassing. Dit moet uniek zijn binnen het account.

options
ApplicationGetOptionalParams

De optiesparameters.

Retouren

Promise<Application>

list(string, string, ApplicationListOptionalParams)

Een lijst met alle toepassingen in het opgegeven account.

function list(resourceGroupName: string, accountName: string, options?: ApplicationListOptionalParams): PagedAsyncIterableIterator<Application, Application[], PageSettings>

Parameters

resourceGroupName

string

De naam van de resourcegroep die het Batch-account bevat.

accountName

string

De naam van het Batch-account.

options
ApplicationListOptionalParams

De optiesparameters.

Retouren

update(string, string, string, Application, ApplicationUpdateOptionalParams)

Updates instellingen voor de opgegeven toepassing.

function update(resourceGroupName: string, accountName: string, applicationName: string, parameters: Application, options?: ApplicationUpdateOptionalParams): Promise<Application>

Parameters

resourceGroupName

string

De naam van de resourcegroep die het Batch-account bevat.

accountName

string

De naam van het Batch-account.

applicationName

string

De naam van de toepassing. Dit moet uniek zijn binnen het account.

parameters
Application

De parameters voor de aanvraag.

options
ApplicationUpdateOptionalParams

De optiesparameters.

Retouren

Promise<Application>