test_summaries
Creates, updates, deletes, gets or lists a test_summaries
resource.
Overview
Name | test_summaries |
Type | Resource |
Id | azure_extras.test_base.test_summaries |
Fields
- vw_test_summaries
- test_summaries
Name | Datatype | Description |
---|---|---|
application_name | text | field from the properties object |
application_version | text | field from the properties object |
execution_status | text | field from the properties object |
feature_updates_test_summary | text | field from the properties object |
grade | text | field from the properties object |
inplace_upgrades_test_summary | text | field from the properties object |
package_id | text | field from the properties object |
package_tags | text | field from the properties object |
resourceGroupName | text | field from the properties object |
security_updates_test_summary | text | field from the properties object |
subscriptionId | text | field from the properties object |
testBaseAccountName | text | field from the properties object |
testSummaryName | text | field from the properties object |
test_run_time | text | field from the properties object |
test_status | text | field from the properties object |
test_summary_id | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Properties of a Test Summary. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | resourceGroupName, subscriptionId, testBaseAccountName, testSummaryName | Gets a Test Summary with specific name from all the Test Summaries of all the packages under a Test Base Account. |
list | SELECT | resourceGroupName, subscriptionId, testBaseAccountName | Lists 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.
- vw_test_summaries
- test_summaries
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 }}';
SELECT
properties
FROM azure_extras.test_base.test_summaries
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND testBaseAccountName = '{{ testBaseAccountName }}';