test_results
Creates, updates, deletes, gets or lists a test_results
resource.
Overview
Name | test_results |
Type | Resource |
Id | azure_extras.test_base.test_results |
Fields
- vw_test_results
- test_results
Name | Datatype | Description |
---|---|---|
analysis_summaries | text | field from the properties object |
application_name | text | field from the properties object |
application_version | text | field from the properties object |
baseline_test_result_id | text | field from the properties object |
build_revision | text | field from the properties object |
build_version | text | field from the properties object |
custom_image_display_name | text | field from the properties object |
custom_image_id | text | field from the properties object |
execution_status | text | field from the properties object |
first_party_apps | text | field from the properties object |
flighting_ring | text | field from the properties object |
grade | text | field from the properties object |
inplace_upgrade_properties | text | field from the properties object |
interop_media_type | text | field from the properties object |
interop_media_version | text | field from the properties object |
is_download_data_available | text | field from the properties object |
is_video_available | text | field from the properties object |
kb_number | text | field from the properties object |
osUpdateType | text | field from the properties object |
os_name | text | field from the properties object |
packageName | text | field from the properties object |
package_id | text | field from the properties object |
package_version | text | field from the properties object |
release_name | text | field from the properties object |
release_version_date | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
testBaseAccountName | text | field from the properties object |
testResultName | text | field from the properties object |
test_end_time | text | field from the properties object |
test_run_time | text | field from the properties object |
test_start_time | text | field from the properties object |
test_status | text | field from the properties object |
test_type | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | The properties of a Test Result. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | packageName, resourceGroupName, subscriptionId, testBaseAccountName, testResultName | Get the Test Result by Id with specified OS Update type for a Test Base Package. |
list | SELECT | osUpdateType, packageName, resourceGroupName, subscriptionId, testBaseAccountName | 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
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.
- vw_test_results
- test_results
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 }}';
SELECT
properties
FROM azure_extras.test_base.test_results
WHERE osUpdateType = '{{ osUpdateType }}'
AND packageName = '{{ packageName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND testBaseAccountName = '{{ testBaseAccountName }}';