registries_build_source_upload_urls
Creates, updates, deletes, gets or lists a registries_build_source_upload_urls
resource.
Overview
Name | registries_build_source_upload_urls |
Type | Resource |
Id | azure.container_registry.registries_build_source_upload_urls |
Fields
Name | Datatype | Description |
---|---|---|
relativePath | string | The relative path to the source. This is used to submit the subsequent queue build request. |
uploadUrl | string | The URL where the client can upload the source. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | registryName, resourceGroupName, subscriptionId | Get 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 }}';