draft_packages_paths
Creates, updates, deletes, gets or lists a draft_packages_paths
resource.
Overview
Name | draft_packages_paths |
Type | Resource |
Id | azure_extras.test_base.draft_packages_paths |
Fields
Name | Datatype | Description |
---|---|---|
baseUrl | string | The base URL of the storage account. |
draftPackagePath | string | The relative path of the folder hosting package files. |
expirationTime | string | Expiry date of the SAS token. |
sasToken | string | A SAS token for the storage account to access workspace. |
workingPath | string | The relative path for a temporary folder for package creation work. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | draftPackageName, resourceGroupName, subscriptionId, testBaseAccountName | Gets 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 }}';