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

DeploymentOccurrence

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

The period during which some deployable was active in a runtime.

interface DeploymentOccurrence {
address?: string;
config?: string;
deployTime?: Date;
platform?:
| "PLATFORM_UNSPECIFIED"
| "GKE"
| "FLEX"
| "CUSTOM";
resourceUri?: string[];
undeployTime?: Date;
userEmail?: string;
}

§Properties

§
address?: string
[src]

Address of the runtime element hosting this deployment.

§
config?: string
[src]

Configuration used to create this deployment.

§
deployTime?: Date
[src]

Required. Beginning of the lifetime of this deployment.

§
platform?: "PLATFORM_UNSPECIFIED" | "GKE" | "FLEX" | "CUSTOM"
[src]

Platform hosting this deployment.

§
resourceUri?: string[]
[src]

Output only. Resource URI for the artifact being deployed taken from the deployable field with the same name.

§
undeployTime?: Date
[src]

End of the lifetime of this deployment.

§
userEmail?: string
[src]

Identity of the user that triggered this deployment.