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

CloudRunMetadata

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

CloudRunMetadata contains information from a Cloud Run deployment.

interface CloudRunMetadata {
readonly job?: string;
readonly revision?: string;
readonly service?: string;
readonly serviceUrls?: string[];
}

§Properties

§
readonly job?: string
[src]

Output only. The name of the Cloud Run job that is associated with a Rollout. Format is projects/{project}/locations/{location}/jobs/{job_name}.

§
readonly revision?: string
[src]

Output only. The Cloud Run Revision id associated with a Rollout.

§
readonly service?: string
[src]

Output only. The name of the Cloud Run Service that is associated with a Rollout. Format is projects/{project}/locations/{location}/services/{service}.

§
readonly serviceUrls?: string[]
[src]

Output only. The Cloud Run Service urls that are associated with a Rollout.