Skip to main content

draft_packages_paths

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

Overview

Namedraft_packages_paths
TypeResource
Idazure_extras.test_base.draft_packages_paths

Fields

NameDatatypeDescription
baseUrlstringThe base URL of the storage account.
draftPackagePathstringThe relative path of the folder hosting package files.
expirationTimestringExpiry date of the SAS token.
sasTokenstringA SAS token for the storage account to access workspace.
workingPathstringThe relative path for a temporary folder for package creation work.

Methods

NameAccessible byRequired ParamsDescription
getSELECTdraftPackageName, resourceGroupName, subscriptionId, testBaseAccountNameGets draft package path and temp working path with SAS.

SELECT examples

Gets draft package path and temp working path with SAS.

SELECT
baseUrl,
draftPackagePath,
expirationTime,
sasToken,
workingPath
FROM azure_extras.test_base.draft_packages_paths
WHERE draftPackageName = '{{ draftPackageName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND testBaseAccountName = '{{ testBaseAccountName }}';