FunctionsExtensions Interface

public interface FunctionsExtensions

Resource collection API of FunctionsExtensions.

Method Summary

Modifier and Type Method and Description
abstract String invokeFunctionsHost(String resourceGroupName, String containerAppName, String revisionName, String functionAppName)

Proxies a Functions host call to the function app backed by the container app.

abstract Response<String> invokeFunctionsHostWithResponse(String resourceGroupName, String containerAppName, String revisionName, String functionAppName, Context context)

Proxies a Functions host call to the function app backed by the container app.

Method Details

invokeFunctionsHost

public abstract String invokeFunctionsHost(String resourceGroupName, String containerAppName, String revisionName, String functionAppName)

Proxies a Functions host call to the function app backed by the container app.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
containerAppName - Name of the Container App.
revisionName - Name of the Container App Revision, the parent resource.
functionAppName - Name of the Function App, the extension resource.

Returns:

the response.

invokeFunctionsHostWithResponse

public abstract Response<String> invokeFunctionsHostWithResponse(String resourceGroupName, String containerAppName, String revisionName, String functionAppName, Context context)

Proxies a Functions host call to the function app backed by the container app.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
containerAppName - Name of the Container App.
revisionName - Name of the Container App Revision, the parent resource.
functionAppName - Name of the Function App, the extension resource.
context - The context to associate with this operation.

Returns:

the response body along with Response<T>.

Applies to