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
The following fields are returned by SELECT
queries:
- get
The request was successful; the request was well-formed and received properly.
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
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , registryName | Get 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.
Name | Datatype | Description |
---|---|---|
registryName | string | The name of the container registry. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- get
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
;