Skip to main content

accounts_file_upload_urls

Creates, updates, deletes, gets or lists a accounts_file_upload_urls resource.

Overview

Nameaccounts_file_upload_urls
TypeResource
Idazure_extras.test_base.accounts_file_upload_urls

Fields

NameDatatypeDescription
blobPathstringThe blob path of the uploaded package. It will be used as the 'blobPath' property of PackageResource.
uploadUrlstringThe URL used for uploading the package.

Methods

NameAccessible byRequired ParamsDescription
getSELECTresourceGroupName, subscriptionId, testBaseAccountNameGets 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 }}';