accounts_file_upload_urls
Creates, updates, deletes, gets or lists an accounts_file_upload_urls
resource.
Overview
Name | accounts_file_upload_urls |
Type | Resource |
Id | azure_extras.test_base.accounts_file_upload_urls |
Fields
The following fields are returned by SELECT
queries:
- get
The file upload URL of the Test Base Account was returned.
Name | Datatype | Description |
---|---|---|
blobPath | string | The blob path of the uploaded package. It will be used as the 'blobPath' property of PackageResource. |
uploadUrl | string | The URL used for uploading the package. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , testBaseAccountName | Gets 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.
Name | Datatype | Description |
---|---|---|
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
testBaseAccountName | string | The resource name of the Test Base Account. |
SELECT
examples
- get
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
;