GoogleCloudRunV2SourceFile
import type { GoogleCloudRunV2SourceFile } from "https://googleapis.deno.dev/v1/run:v2.ts";Source file.
interface GoogleCloudRunV2SourceFile {
content?: string;
filename?: string;
}§Properties
§
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.