Skip to main content

build_auth_tokens

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

Overview

Namebuild_auth_tokens
TypeResource
Idazure.container_apps.build_auth_tokens

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
expiresstring (date-time)Token expiration date.
tokenstringAuthentication token.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, builderName, buildNameGets the token used to connect to the endpoint where source code can be uploaded for a build.

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
buildNamestringThe name of a build.
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

Gets the token used to connect to the endpoint where source code can be uploaded for a build.

SELECT
expires,
token
FROM azure.container_apps.build_auth_tokens
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND builderName = '{{ builderName }}' -- required
AND buildName = '{{ buildName }}' -- required
;