accounts_file_upload_urls
Creates, updates, deletes, gets or lists a accounts_file_upload_urls
resource.
Overview
Name | accounts_file_upload_urls |
Type | Resource |
Id | azure_extras.test_base.accounts_file_upload_urls |
Fields
Name | Datatype | Description |
---|---|---|
blobPath | string | The blob path of the uploaded package. It will be used as the 'blobPath' property of PackageResource. |
uploadUrl | string | The URL used for uploading the package. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | resourceGroupName, subscriptionId, testBaseAccountName | Gets the file upload URL of a Test Base Account. |
SELECT
examples
Gets the file upload URL of a Test Base Account.
SELECT
blobPath,
uploadUrl
FROM azure_extras.test_base.accounts_file_upload_urls
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND testBaseAccountName = '{{ testBaseAccountName }}';