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

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

NameAccessible byRequired ParamsDescription
getSELECTregistryName, resourceGroupName, subscriptionIdGet the upload location for the user to be able to upload the source.

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 registryName = '{{ registryName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';