results
Creates, updates, deletes, gets or lists a results
resource.
Overview
Name | results |
Type | Resource |
Id | google.workloadmanager.results |
Fields
Name | Datatype | Description |
---|---|---|
commands | array | The commands to remediate the violation. |
documentationUrl | string | The URL for the documentation of the rule. |
resource | object | Message represent resource in execution result |
rule | string | The rule that is violated in an evaluation. |
severity | string | The severity of violation. |
violationDetails | object | Message describing the violation in an evaluation result. |
violationMessage | string | The violation message of an execution. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | evaluationsId, executionsId, locationsId, projectsId | Lists 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 }}';