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

GoogleCloudRunV2SourceFile

import type { GoogleCloudRunV2SourceFile } from "https://googleapis.deno.dev/v1/run:v2.ts";

Source file.

interface GoogleCloudRunV2SourceFile {
content?: string;
filename?: string;
}

§Properties

§
content?: string
[src]

Required. Input only. The source code as raw text.

§
filename?: string
[src]

Required. Input only. The file name for the source code. e.g., "index.js" or "node_modules/dependency.js". The filename must be less than 255 characters and cannot contain .., ./, //, or end with a /. Cloud Run will place the files in the container subdirectories, please use relative path to access the file.