build_service_resource_upload_urls
Creates, updates, deletes, gets or lists a build_service_resource_upload_urls
resource.
Overview
Name | build_service_resource_upload_urls |
Type | Resource |
Id | azure.spring_apps.build_service_resource_upload_urls |
Fields
Name | Datatype | Description |
---|---|---|
relativePath | string | Source relative path |
uploadUrl | string | Upload URL |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | buildServiceName, resourceGroupName, serviceName, subscriptionId | Get an resource upload URL for build service, which may be artifacts or source archive. |
SELECT
examples
Get an resource upload URL for build service, which may be artifacts or source archive.
SELECT
relativePath,
uploadUrl
FROM azure.spring_apps.build_service_resource_upload_urls
WHERE buildServiceName = '{{ buildServiceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND serviceName = '{{ serviceName }}'
AND subscriptionId = '{{ subscriptionId }}';