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

GoogleCloudRunV2GCSVolumeSource

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

Represents a volume backed by a Cloud Storage bucket using Cloud Storage FUSE.

interface GoogleCloudRunV2GCSVolumeSource {
bucket?: string;
mountOptions?: string[];
readOnly?: boolean;
}

§Properties

§
bucket?: string
[src]

Cloud Storage Bucket name.

§
mountOptions?: string[]
[src]

A list of additional flags to pass to the gcsfuse CLI. Options should be specified without the leading "--".

§
readOnly?: boolean
[src]

If true, the volume will be mounted as read only for all mounts.