Skip to main content

provider_available_stacks

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

Overview

Nameprovider_available_stacks
TypeResource
Idazure.app_service.provider_available_stacks

Fields

The following fields are returned by SELECT queries:

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

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectosTypeSelectedDescription for Get available application frameworks and their versions

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
osTypeSelectedstring

SELECT examples

Description for Get available application frameworks and their versions

SELECT
id,
name,
kind,
properties,
type
FROM azure.app_service.provider_available_stacks
WHERE osTypeSelected = '{{ osTypeSelected }}'
;