build_service_supported_buildpacks
Creates, updates, deletes, gets or lists a build_service_supported_buildpacks
resource.
Overview
Name | build_service_supported_buildpacks |
Type | Resource |
Id | azure.spring_apps.build_service_supported_buildpacks |
Fields
The following fields are returned by SELECT
queries:
- get
- list
Success. The response describes the supported buildpack.
Name | Datatype | Description |
---|---|---|
properties | object | Supported buildpack resource properties |
Success. The response describes all supported buildpacks.
Name | Datatype | Description |
---|---|---|
properties | object | Supported buildpack resource properties |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , serviceName , buildServiceName , buildpackName | Get the supported buildpack resource. | |
list | select | subscriptionId , resourceGroupName , serviceName , buildServiceName | Get 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.
Name | Datatype | Description |
---|---|---|
buildServiceName | string | The name of the build service resource. |
buildpackName | string | The name of the buildpack resource. |
resourceGroupName | string | The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. |
serviceName | string | The name of the Service resource. |
subscriptionId | string | Gets subscription ID which uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
SELECT
examples
- get
- list
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
;
Get all supported buildpacks.
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
;