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

TargetArtifact

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

The artifacts produced by a target render operation.

interface TargetArtifact {
readonly artifactUri?: string;
readonly manifestPath?: string;
readonly phaseArtifacts?: {
[key: string]: PhaseArtifact;
}
;
readonly skaffoldConfigPath?: string;
}

§Properties

§
readonly artifactUri?: string
[src]

Output only. URI of a directory containing the artifacts. This contains deployment configuration used by Skaffold during a rollout, and all paths are relative to this location.

§
readonly manifestPath?: string
[src]

Output only. File path of the rendered manifest relative to the URI.

§
readonly phaseArtifacts?: {
[key: string]: PhaseArtifact;
}
[src]

Output only. Map from the phase ID to the phase artifacts for the Target.

§
readonly skaffoldConfigPath?: string
[src]

Output only. File path of the resolved Skaffold configuration relative to the URI.