Skip to main content

builds_by_builder_resources

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

Overview

Namebuilds_by_builder_resources
TypeResource
Idazure.container_apps.builds_by_builder_resources

Fields

The following fields are returned by SELECT queries:

ARM operation completed successfully.

NameDatatypeDescription
propertiesobjectThe resource-specific properties for this resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, builderNameList BuildResource resources by BuilderResource

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
builderNamestringThe name of the builder.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

List BuildResource resources by BuilderResource

SELECT
properties
FROM azure.container_apps.builds_by_builder_resources
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND builderName = '{{ builderName }}' -- required
;