Skip to main content

test_results_video_download_urls

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

Overview

Nametest_results_video_download_urls
TypeResource
Idazure_extras.test_base.test_results_video_download_urls

Fields

NameDatatypeDescription
downloadUrlstringThe download URL.
expirationTimestringExpiry date of the download URL.

Methods

NameAccessible byRequired ParamsDescription
getSELECTpackageName, resourceGroupName, subscriptionId, testBaseAccountName, testResultNameGets the download URL of the test execution screen recording.

SELECT examples

Gets the download URL of the test execution screen recording.

SELECT
downloadUrl,
expirationTime
FROM azure_extras.test_base.test_results_video_download_urls
WHERE packageName = '{{ packageName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND testBaseAccountName = '{{ testBaseAccountName }}'
AND testResultName = '{{ testResultName }}';