Application interface

Interface representing a Application.

Methods

create(string, string, ApplicationResourceDescription, ApplicationCreateOptionalParams)

Creates an application resource with the specified name, description and properties. If an application resource with the same name exists, then it is updated with the specified description and properties.

delete(string, string, ApplicationDeleteOptionalParams)

Deletes the application resource identified by the name.

get(string, string, ApplicationGetOptionalParams)

Gets the information about the application resource with the given name. The information include the description and other properties of the application.

listByResourceGroup(string, ApplicationListByResourceGroupOptionalParams)

Gets the information about all application resources in a given resource group. The information include the description and other properties of the Application.

listBySubscription(ApplicationListBySubscriptionOptionalParams)

Gets the information about all application resources in a given resource group. The information include the description and other properties of the application.

Method Details

create(string, string, ApplicationResourceDescription, ApplicationCreateOptionalParams)

Creates an application resource with the specified name, description and properties. If an application resource with the same name exists, then it is updated with the specified description and properties.

function create(resourceGroupName: string, applicationResourceName: string, applicationResourceDescription: ApplicationResourceDescription, options?: ApplicationCreateOptionalParams): Promise<ApplicationResourceDescription>

Parameters

resourceGroupName

string

Azure resource group name

applicationResourceName

string

The identity of the application.

applicationResourceDescription
ApplicationResourceDescription

Description for creating a Application resource.

options
ApplicationCreateOptionalParams

The options parameters.

Returns

delete(string, string, ApplicationDeleteOptionalParams)

Deletes the application resource identified by the name.

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

Parameters

resourceGroupName

string

Azure resource group name

applicationResourceName

string

The identity of the application.

options
ApplicationDeleteOptionalParams

The options parameters.

Returns

Promise<void>

get(string, string, ApplicationGetOptionalParams)

Gets the information about the application resource with the given name. The information include the description and other properties of the application.

function get(resourceGroupName: string, applicationResourceName: string, options?: ApplicationGetOptionalParams): Promise<ApplicationResourceDescription>

Parameters

resourceGroupName

string

Azure resource group name

applicationResourceName

string

The identity of the application.

options
ApplicationGetOptionalParams

The options parameters.

Returns

listByResourceGroup(string, ApplicationListByResourceGroupOptionalParams)

Gets the information about all application resources in a given resource group. The information include the description and other properties of the Application.

function listByResourceGroup(resourceGroupName: string, options?: ApplicationListByResourceGroupOptionalParams): PagedAsyncIterableIterator<ApplicationResourceDescription, ApplicationResourceDescription[], PageSettings>

Parameters

resourceGroupName

string

Azure resource group name

options
ApplicationListByResourceGroupOptionalParams

The options parameters.

Returns

listBySubscription(ApplicationListBySubscriptionOptionalParams)

Gets the information about all application resources in a given resource group. The information include the description and other properties of the application.

function listBySubscription(options?: ApplicationListBySubscriptionOptionalParams): PagedAsyncIterableIterator<ApplicationResourceDescription, ApplicationResourceDescription[], PageSettings>

Parameters

options
ApplicationListBySubscriptionOptionalParams

The options parameters.

Returns