Skip to main content

build_service_supported_stacks

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

Overview

Namebuild_service_supported_stacks
TypeResource
Idazure.spring_apps.build_service_supported_stacks

Fields

NameDatatypeDescription
buildServiceNametextfield from the properties object
resourceGroupNametextfield from the properties object
serviceNametextfield from the properties object
stackNametextfield from the properties object
stack_idtextfield from the properties object
subscriptionIdtextfield from the properties object
versiontextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTbuildServiceName, resourceGroupName, serviceName, stackName, subscriptionIdGet the supported stack resource.
listSELECTbuildServiceName, resourceGroupName, serviceName, subscriptionIdGet all supported stacks.

SELECT examples

Get all 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 }}';