provider_web_app_stacks_for_locations
Creates, updates, deletes, gets or lists a provider_web_app_stacks_for_locations
resource.
Overview
Name | provider_web_app_stacks_for_locations |
Type | Resource |
Id | azure.app_service.provider_web_app_stacks_for_locations |
Fields
The following fields are returned by SELECT
queries:
- get
Name | Datatype | Description |
---|---|---|
id | string | Resource Id. |
name | string | Resource Name. |
kind | string | Kind of resource. |
location | string | Web App stack location. |
properties | object | WebAppStack resource specific properties |
type | string | Resource type. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | location | stackOsType | Description for Get available Web 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.
Name | Datatype | Description |
---|---|---|
location | string | Web App stack location. |
stackOsType | string | Stack OS Type |
SELECT
examples
- get
Description for Get available Web app frameworks and their versions for location
SELECT
id,
name,
kind,
location,
properties,
type
FROM azure.app_service.provider_web_app_stacks_for_locations
WHERE location = '{{ location }}' -- required
AND stackOsType = '{{ stackOsType }}'
;