Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ExecutionResult

import type { ExecutionResult } from "https://googleapis.deno.dev/v1/workloadmanager:v1.ts";

Message describing the result of an execution

interface ExecutionResult {
commands?: Command[];
documentationUrl?: string;
resource?: Resource;
rule?: string;
severity?: string;
type?: "TYPE_UNSPECIFIED" | "TYPE_PASSED" | "TYPE_VIOLATED";
violationDetails?: ViolationDetails;
violationMessage?: string;
}

§Properties

§
commands?: Command[]
[src]

The commands to remediate the violation.

§
documentationUrl?: string
[src]

The URL for the documentation of the rule.

§
resource?: Resource
[src]

The resource that violates the rule.

§
rule?: string
[src]

The rule that is violated in an evaluation.

§
severity?: string
[src]

The severity of violation.

§
type?: "TYPE_UNSPECIFIED" | "TYPE_PASSED" | "TYPE_VIOLATED"
[src]

Execution result type of the scanned resource

§
violationDetails?: ViolationDetails
[src]

The details of violation in an evaluation result.

§
violationMessage?: string
[src]

The violation message of an execution.