Skip to main content

build_service_supported_buildpacks

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

Overview

Namebuild_service_supported_buildpacks
TypeResource
Idazure.spring_apps.build_service_supported_buildpacks

Fields

The following fields are returned by SELECT queries:

Success. The response describes the supported buildpack.

NameDatatypeDescription
propertiesobjectSupported buildpack resource properties

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, serviceName, buildServiceName, buildpackNameGet the supported buildpack resource.
listselectsubscriptionId, resourceGroupName, serviceName, buildServiceNameGet all supported buildpacks.

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
buildServiceNamestringThe name of the build service resource.
buildpackNamestringThe name of the buildpack resource.
resourceGroupNamestringThe name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
serviceNamestringThe name of the Service resource.
subscriptionIdstringGets subscription ID which uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.

SELECT examples

Get the supported buildpack resource.

SELECT
properties
FROM azure.spring_apps.build_service_supported_buildpacks
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND serviceName = '{{ serviceName }}' -- required
AND buildServiceName = '{{ buildServiceName }}' -- required
AND buildpackName = '{{ buildpackName }}' -- required
;