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

TargetRender

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

Details of rendering for a single target.

interface TargetRender {
readonly failureCause?:
| "FAILURE_CAUSE_UNSPECIFIED"
| "CLOUD_BUILD_UNAVAILABLE"
| "EXECUTION_FAILED"
| "CLOUD_BUILD_REQUEST_FAILED"
| "VERIFICATION_CONFIG_NOT_FOUND"
| "CUSTOM_ACTION_NOT_FOUND"
| "DEPLOYMENT_STRATEGY_NOT_SUPPORTED"
| "RENDER_FEATURE_NOT_SUPPORTED";
readonly failureMessage?: string;
readonly metadata?: RenderMetadata;
readonly renderingBuild?: string;
readonly renderingState?:
| "TARGET_RENDER_STATE_UNSPECIFIED"
| "SUCCEEDED"
| "FAILED"
| "IN_PROGRESS";
}

§Properties

§
readonly failureCause?: "FAILURE_CAUSE_UNSPECIFIED" | "CLOUD_BUILD_UNAVAILABLE" | "EXECUTION_FAILED" | "CLOUD_BUILD_REQUEST_FAILED" | "VERIFICATION_CONFIG_NOT_FOUND" | "CUSTOM_ACTION_NOT_FOUND" | "DEPLOYMENT_STRATEGY_NOT_SUPPORTED" | "RENDER_FEATURE_NOT_SUPPORTED"
[src]

Output only. Reason this render failed. This will always be unspecified while the render in progress.

§
readonly failureMessage?: string
[src]

Output only. Additional information about the render failure, if available.

§
readonly metadata?: RenderMetadata
[src]

Output only. Metadata related to the Release render for this Target.

§
readonly renderingBuild?: string
[src]

Output only. The resource name of the Cloud Build Build object that is used to render the manifest for this target. Format is projects/{project}/locations/{location}/builds/{build}.

§
readonly renderingState?: "TARGET_RENDER_STATE_UNSPECIFIED" | "SUCCEEDED" | "FAILED" | "IN_PROGRESS"
[src]

Output only. Current state of the render operation for this Target.