build_service_supported_stacks
Creates, updates, deletes, gets or lists a build_service_supported_stacks
resource.
Overview
Name | build_service_supported_stacks |
Type | Resource |
Id | azure.spring_apps.build_service_supported_stacks |
Fields
- vw_build_service_supported_stacks
- build_service_supported_stacks
Name | Datatype | Description |
---|---|---|
buildServiceName | text | field from the properties object |
resourceGroupName | text | field from the properties object |
serviceName | text | field from the properties object |
stackName | text | field from the properties object |
stack_id | text | field from the properties object |
subscriptionId | text | field from the properties object |
version | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Supported stack resource properties |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | buildServiceName, resourceGroupName, serviceName, stackName, subscriptionId | Get the supported stack resource. |
list | SELECT | buildServiceName, resourceGroupName, serviceName, subscriptionId | Get all supported stacks. |
SELECT
examples
Get all supported stacks.
- vw_build_service_supported_stacks
- build_service_supported_stacks
SELECT
buildServiceName,
resourceGroupName,
serviceName,
stackName,
stack_id,
subscriptionId,
version
FROM azure.spring_apps.vw_build_service_supported_stacks
WHERE buildServiceName = '{{ buildServiceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND serviceName = '{{ serviceName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
properties
FROM azure.spring_apps.build_service_supported_stacks
WHERE buildServiceName = '{{ buildServiceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND serviceName = '{{ serviceName }}'
AND subscriptionId = '{{ subscriptionId }}';