Skip to main content

results

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

Overview

Nameresults
TypeResource
Idgoogle.workloadmanager.results

Fields

NameDatatypeDescription
commandsarrayThe commands to remediate the violation.
documentationUrlstringThe URL for the documentation of the rule.
resourceobjectMessage represent resource in execution result
rulestringThe rule that is violated in an evaluation.
severitystringThe severity of violation.
violationDetailsobjectMessage describing the violation in an evaluation result.
violationMessagestringThe violation message of an execution.

Methods

NameAccessible byRequired ParamsDescription
listSELECTevaluationsId, executionsId, locationsId, projectsIdLists the result of a single evaluation.

SELECT examples

Lists the result of a single evaluation.

SELECT
commands,
documentationUrl,
resource,
rule,
severity,
violationDetails,
violationMessage
FROM google.workloadmanager.results
WHERE evaluationsId = '{{ evaluationsId }}'
AND executionsId = '{{ executionsId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';