Skip to main content

test_results

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

Overview

Nametest_results
TypeResource
Idazure_extras.test_base.test_results

Fields

NameDatatypeDescription
analysis_summariestextfield from the properties object
application_nametextfield from the properties object
application_versiontextfield from the properties object
baseline_test_result_idtextfield from the properties object
build_revisiontextfield from the properties object
build_versiontextfield from the properties object
custom_image_display_nametextfield from the properties object
custom_image_idtextfield from the properties object
execution_statustextfield from the properties object
first_party_appstextfield from the properties object
flighting_ringtextfield from the properties object
gradetextfield from the properties object
inplace_upgrade_propertiestextfield from the properties object
interop_media_typetextfield from the properties object
interop_media_versiontextfield from the properties object
is_download_data_availabletextfield from the properties object
is_video_availabletextfield from the properties object
kb_numbertextfield from the properties object
osUpdateTypetextfield from the properties object
os_nametextfield from the properties object
packageNametextfield from the properties object
package_idtextfield from the properties object
package_versiontextfield from the properties object
release_nametextfield from the properties object
release_version_datetextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object
testBaseAccountNametextfield from the properties object
testResultNametextfield from the properties object
test_end_timetextfield from the properties object
test_run_timetextfield from the properties object
test_start_timetextfield from the properties object
test_statustextfield from the properties object
test_typetextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTpackageName, resourceGroupName, subscriptionId, testBaseAccountName, testResultNameGet the Test Result by Id with specified OS Update type for a Test Base Package.
listSELECTosUpdateType, packageName, resourceGroupName, subscriptionId, testBaseAccountNameLists all the Test Results with specified OS Update type for a Test Base Package. Can be filtered by osName, releaseName, flightingRing, buildVersion, buildRevision.

SELECT examples

Lists all the Test Results with specified OS Update type for a Test Base Package. Can be filtered by osName, releaseName, flightingRing, buildVersion, buildRevision.

SELECT
analysis_summaries,
application_name,
application_version,
baseline_test_result_id,
build_revision,
build_version,
custom_image_display_name,
custom_image_id,
execution_status,
first_party_apps,
flighting_ring,
grade,
inplace_upgrade_properties,
interop_media_type,
interop_media_version,
is_download_data_available,
is_video_available,
kb_number,
osUpdateType,
os_name,
packageName,
package_id,
package_version,
release_name,
release_version_date,
resourceGroupName,
subscriptionId,
testBaseAccountName,
testResultName,
test_end_time,
test_run_time,
test_start_time,
test_status,
test_type
FROM azure_extras.test_base.vw_test_results
WHERE osUpdateType = '{{ osUpdateType }}'
AND packageName = '{{ packageName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND testBaseAccountName = '{{ testBaseAccountName }}';