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

ContaineranalysisGoogleDevtoolsCloudbuildV1ApprovalResult

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

ApprovalResult describes the decision and associated metadata of a manual approval of a build.

interface ContaineranalysisGoogleDevtoolsCloudbuildV1ApprovalResult {
readonly approvalTime?: Date;
readonly approverAccount?: string;
comment?: string;
decision?: "DECISION_UNSPECIFIED" | "APPROVED" | "REJECTED";
url?: string;
}

§Properties

§
readonly approvalTime?: Date
[src]

Output only. The time when the approval decision was made.

§
readonly approverAccount?: string
[src]

Output only. Email of the user that called the ApproveBuild API to approve or reject a build at the time that the API was called.

§
comment?: string
[src]

Optional. An optional comment for this manual approval result.

§
decision?: "DECISION_UNSPECIFIED" | "APPROVED" | "REJECTED"
[src]

Required. The decision of this manual approval.

§
url?: string
[src]

Optional. An optional URL tied to this manual approval result. This field is essentially the same as comment, except that it will be rendered by the UI differently. An example use case is a link to an external job that approved this Build.