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. Represents the exact, literal, and complete source
code of the file. Placeholders like ... or comments such as # [rest of code] should NEVER be used as omission. Every character in this field will
be built into the final container. Any omission will result in a broken
application.
§
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.