test_summaries
Creates, updates, deletes, gets or lists a test_summaries resource.
Overview
| Name | test_summaries |
| Type | Resource |
| Id | azure_extras.testbase.test_summaries |
Fields
The following fields are returned by SELECT queries:
- get
- list
| Name | Datatype | Description |
|---|---|---|
id | string | Resource ID. |
name | string | Resource name. |
applicationName | string | Application name. |
applicationVersion | string | Application version. |
executionStatus | string | The execution status of last test. Known values are: "None", "InProgress", "Processing", "Completed", "NotExecuted", "Incomplete", "Failed", and "Succeeded". |
featureUpdatesTestSummary | object | The result summary of tests triggered by feature updates. |
grade | string | The grade of the test. Known values are: "None", "NotAvailable", "Pass", and "Fail". |
packageId | string | The Azure resource Id of package. |
packageTags | object | The tags of Package resource that are associated with the testSummary. |
securityUpdatesTestSummary | object | The result summary of tests triggered by security updates. |
systemData | object | The system metadata relating to this resource. |
testRunTime | string | The run time of the last test. |
testStatus | string | The status of last test. Known values are: "None", "TestExecutionInProgress", "DataProcessing", "TestFailure", "UpdateFailure", "TestAndUpdateFailure", "InfrastructureFailure", and "Completed". |
testSummaryId | string | The Id of the current Test Summary. |
type | string | Resource type. |
| Name | Datatype | Description |
|---|---|---|
id | string | Resource ID. |
name | string | Resource name. |
applicationName | string | Application name. |
applicationVersion | string | Application version. |
executionStatus | string | The execution status of last test. Known values are: "None", "InProgress", "Processing", "Completed", "NotExecuted", "Incomplete", "Failed", and "Succeeded". |
featureUpdatesTestSummary | object | The result summary of tests triggered by feature updates. |
grade | string | The grade of the test. Known values are: "None", "NotAvailable", "Pass", and "Fail". |
packageId | string | The Azure resource Id of package. |
packageTags | object | The tags of Package resource that are associated with the testSummary. |
securityUpdatesTestSummary | object | The result summary of tests triggered by security updates. |
systemData | object | The system metadata relating to this resource. |
testRunTime | string | The run time of the last test. |
testStatus | string | The status of last test. Known values are: "None", "TestExecutionInProgress", "DataProcessing", "TestFailure", "UpdateFailure", "TestAndUpdateFailure", "InfrastructureFailure", and "Completed". |
testSummaryId | string | The Id of the current Test Summary. |
type | string | Resource type. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | resource_group_name, test_base_account_name, test_summary_name, subscription_id | Gets a Test Summary with specific name from all the Test Summaries of all the packages under a Test Base Account. | |
list | select | resource_group_name, test_base_account_name, subscription_id | Lists the Test Summaries of all the packages under a Test Base Account. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
resource_group_name | string | The name of the resource group that contains the resource. Required. |
subscription_id | string | |
test_base_account_name | string | The resource name of the Test Base Account. Required. |
test_summary_name | string | The name of the Test Summary. Required. |
SELECT examples
- get
- list
Gets a Test Summary with specific name from all the Test Summaries of all the packages under a Test Base Account.
SELECT
id,
name,
applicationName,
applicationVersion,
executionStatus,
featureUpdatesTestSummary,
grade,
packageId,
packageTags,
securityUpdatesTestSummary,
systemData,
testRunTime,
testStatus,
testSummaryId,
type
FROM azure_extras.testbase.test_summaries
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND test_base_account_name = '{{ test_base_account_name }}' -- required
AND test_summary_name = '{{ test_summary_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;
Lists the Test Summaries of all the packages under a Test Base Account.
SELECT
id,
name,
applicationName,
applicationVersion,
executionStatus,
featureUpdatesTestSummary,
grade,
packageId,
packageTags,
securityUpdatesTestSummary,
systemData,
testRunTime,
testStatus,
testSummaryId,
type
FROM azure_extras.testbase.test_summaries
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND test_base_account_name = '{{ test_base_account_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;