Skip to main content

registries_build_source_upload_urls

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

Overview

Nameregistries_build_source_upload_urls
TypeResource
Idazure.container_registry.registries_build_source_upload_urls

Fields

The following fields are returned by SELECT queries:

The request was successful; the request was well-formed and received properly.

NameDatatypeDescription
relativePathstringThe relative path to the source. This is used to submit the subsequent queue build request.
uploadUrlstringThe URL where the client can upload the source.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, registryNameGet the upload location for the user to be able to upload the source.

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
registryNamestringThe name of the container registry.
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 the upload location for the user to be able to upload the source.

SELECT
relativePath,
uploadUrl
FROM azure.container_registry.registries_build_source_upload_urls
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND registryName = '{{ registryName }}' -- required
;