Skip to main content

user_provided_function_app_for_static_site_builds

Creates, updates, deletes, gets or lists a user_provided_function_app_for_static_site_builds resource.

Overview

Nameuser_provided_function_app_for_static_site_builds
TypeResource
Idazure.app_service.user_provided_function_app_for_static_site_builds

Fields

The following fields are returned by SELECT queries:

OK.

NameDatatypeDescription
idstringResource Id.
namestringResource Name.
kindstringKind of resource.
propertiesobjectStaticSiteUserProvidedFunctionAppARMResource resource specific properties
typestringResource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresourceGroupName, name, environmentName, functionAppName, subscriptionIdDescription for Gets the details of the user provided function app registered with a static site build

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
environmentNamestringThe stage site identifier.
functionAppNamestringName of the function app registered with the static site build.
namestringName of the static site.
resourceGroupNamestringName of the resource group to which the resource belongs.
subscriptionIdstringYour Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000).

SELECT examples

Description for Gets the details of the user provided function app registered with a static site build

SELECT
id,
name,
kind,
properties,
type
FROM azure.app_service.user_provided_function_app_for_static_site_builds
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND name = '{{ name }}' -- required
AND environmentName = '{{ environmentName }}' -- required
AND functionAppName = '{{ functionAppName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;