Skip to main content

provider_function_app_stacks_for_locations

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

Overview

Nameprovider_function_app_stacks_for_locations
TypeResource
Idazure.app_service.provider_function_app_stacks_for_locations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringResource Id.
namestringResource Name.
kindstringKind of resource.
locationstringFunction App stack location.
propertiesobjectFunctionAppStack resource specific properties
typestringResource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectlocationstackOsTypeDescription for Get available Function app frameworks and their versions for location

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
locationstringFunction App stack location.
stackOsTypestringStack OS Type

SELECT examples

Description for Get available Function app frameworks and their versions for location

SELECT
id,
name,
kind,
location,
properties,
type
FROM azure.app_service.provider_function_app_stacks_for_locations
WHERE location = '{{ location }}' -- required
AND stackOsType = '{{ stackOsType }}'
;