Skip to main content

analysis_results

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

Overview

Nameanalysis_results
TypeResource
Idazure_extras.test_base.analysis_results

Fields

NameDatatypeDescription
analysisResultNametextfield from the properties object
analysisResultTypetextfield from the properties object
analysis_result_typetextfield from the properties object
gradetextfield from the properties object
packageNametextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object
testBaseAccountNametextfield from the properties object
testResultNametextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTanalysisResultName, packageName, resourceGroupName, subscriptionId, testBaseAccountName, testResultNameGets an Analysis Result of a Test Result by name.
listSELECTanalysisResultType, packageName, resourceGroupName, subscriptionId, testBaseAccountName, testResultNameLists the Analysis Results of a Test Result. The result collection will only contain one element as all the data will be nested in a singleton object.

SELECT examples

Gets an Analysis Result of a Test Result by name.

SELECT
analysisResultName,
analysisResultType,
analysis_result_type,
grade,
packageName,
resourceGroupName,
subscriptionId,
testBaseAccountName,
testResultName
FROM azure_extras.test_base.vw_analysis_results
WHERE analysisResultName = '{{ analysisResultName }}'
AND packageName = '{{ packageName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND testBaseAccountName = '{{ testBaseAccountName }}'
AND testResultName = '{{ testResultName }}';