Skip to main content

builders

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

Overview

Namebuilders
TypeResource
Idazure.container_apps.builders

Fields

The following fields are returned by SELECT queries:

ARM operation completed successfully.

NameDatatypeDescription
identityobjectThe managed service identities assigned to this resource.
locationstringThe geo-location where the resource lives
propertiesobjectThe resource-specific properties for this resource.
tagsobjectResource tags.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, builderNameGet a BuilderResource
list_by_resource_groupselectsubscriptionId, resourceGroupNameList BuilderResource resources by resource group
list_by_subscriptionselectsubscriptionIdList BuilderResource resources by subscription ID
create_or_updateinsertsubscriptionId, resourceGroupName, builderNameCreate or update a BuilderResource
updateupdatesubscriptionId, resourceGroupName, builderNameUpdate a BuilderResource
deletedeletesubscriptionId, resourceGroupName, builderNameDelete a 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

Get a BuilderResource

SELECT
identity,
location,
properties,
tags
FROM azure.container_apps.builders
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND builderName = '{{ builderName }}' -- required
;

INSERT examples

Create or update a BuilderResource

INSERT INTO azure.container_apps.builders (
data__properties,
data__identity,
data__tags,
data__location,
subscriptionId,
resourceGroupName,
builderName
)
SELECT
'{{ properties }}',
'{{ identity }}',
'{{ tags }}',
'{{ location }}',
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ builderName }}'
RETURNING
identity,
location,
properties,
tags
;

UPDATE examples

Update a BuilderResource

UPDATE azure.container_apps.builders
SET
data__identity = '{{ identity }}',
data__tags = '{{ tags }}',
data__properties = '{{ properties }}'
WHERE
subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND builderName = '{{ builderName }}' --required
RETURNING
identity,
location,
properties,
tags;

DELETE examples

Delete a BuilderResource

DELETE FROM azure.container_apps.builders
WHERE subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND builderName = '{{ builderName }}' --required
;