Skip to main content

packages_download_urls

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

Overview

Namepackages_download_urls
TypeResource
Idazure_extras.test_base.packages_download_urls

Fields

The following fields are returned by SELECT queries:

The package download URL is returned.

NameDatatypeDescription
downloadUrlstringThe download URL.
expirationTimestring (date-time)Expiry date of the download URL.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, testBaseAccountName, packageNameGets the download URL of a package.

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
packageNamestringThe resource name of the Test Base Package.
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 download URL of a package.

SELECT
downloadUrl,
expirationTime
FROM azure_extras.test_base.packages_download_urls
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND testBaseAccountName = '{{ testBaseAccountName }}' -- required
AND packageName = '{{ packageName }}' -- required
;