ContainerAppsFunctionsOperations Class

Warning

DO NOT instantiate this class directly.

Instead, you should access the following operations through

ContainerAppsAPIClient's

<xref:container_apps_functions> attribute.

Constructor

ContainerAppsFunctionsOperations(*args, **kwargs)

Methods

get

Get a specific function of a Container App from the latest Revision.

Gets the details of a specific function from the latest Container App revision.

list

List the functions for a given Container App from the latest Revision.

Lists the functions available in the latest revision of a Container App.

get

Get a specific function of a Container App from the latest Revision.

Gets the details of a specific function from the latest Container App revision.

async get(resource_group_name: str, container_app_name: str, function_name: str, **kwargs: Any) -> ContainerAppsFunction

Parameters

Name Description
resource_group_name
Required
str

The name of the resource group. The name is case insensitive. Required.

container_app_name
Required
str

Name of the Container App. Required.

function_name
Required
str

Name of the Function. Required.

Returns

Type Description

ContainerAppsFunction. The ContainerAppsFunction is compatible with MutableMapping

Exceptions

Type Description

list

List the functions for a given Container App from the latest Revision.

Lists the functions available in the latest revision of a Container App.

list(resource_group_name: str, container_app_name: str, **kwargs: Any) -> AsyncItemPaged[ContainerAppsFunction]

Parameters

Name Description
resource_group_name
Required
str

The name of the resource group. The name is case insensitive. Required.

container_app_name
Required
str

Name of the Container App. Required.

Returns

Type Description

An iterator like instance of ContainerAppsFunction

Exceptions

Type Description