Skip to main content

test_summaries

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

Overview

Nametest_summaries
TypeResource
Idazure_extras.test_base.test_summaries

Fields

NameDatatypeDescription
application_nametextfield from the properties object
application_versiontextfield from the properties object
execution_statustextfield from the properties object
feature_updates_test_summarytextfield from the properties object
gradetextfield from the properties object
inplace_upgrades_test_summarytextfield from the properties object
package_idtextfield from the properties object
package_tagstextfield from the properties object
resourceGroupNametextfield from the properties object
security_updates_test_summarytextfield from the properties object
subscriptionIdtextfield from the properties object
testBaseAccountNametextfield from the properties object
testSummaryNametextfield from the properties object
test_run_timetextfield from the properties object
test_statustextfield from the properties object
test_summary_idtextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTresourceGroupName, subscriptionId, testBaseAccountName, testSummaryNameGets a Test Summary with specific name from all the Test Summaries of all the packages under a Test Base Account.
listSELECTresourceGroupName, subscriptionId, testBaseAccountNameLists the Test Summaries of all the packages under a Test Base Account.

SELECT examples

Lists the Test Summaries of all the packages under a Test Base Account.

SELECT
application_name,
application_version,
execution_status,
feature_updates_test_summary,
grade,
inplace_upgrades_test_summary,
package_id,
package_tags,
resourceGroupName,
security_updates_test_summary,
subscriptionId,
testBaseAccountName,
testSummaryName,
test_run_time,
test_status,
test_summary_id
FROM azure_extras.test_base.vw_test_summaries
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND testBaseAccountName = '{{ testBaseAccountName }}';