Skip to main content

accounts_file_upload_urls

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

Overview

Nameaccounts_file_upload_urls
TypeResource
Idazure_extras.test_base.accounts_file_upload_urls

Fields

The following fields are returned by SELECT queries:

The file upload URL of the Test Base Account was returned.

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

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, testBaseAccountNameGets the file upload URL of a Test Base Account.

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.

NameDatatypeDescription
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.
testBaseAccountNamestringThe resource name of the 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 subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND testBaseAccountName = '{{ testBaseAccountName }}' -- required
;