prorm API Reference
    Preparing search index...

    Interface GCSStoreOptions

    Connection options for GCSStore.

    interface GCSStoreOptions {
        projectId?: string;
        keyFilename?: string;
        client?: unknown;
    }
    Index
    projectId?: string

    GCP project ID. Falls back to the ambient credentials' project when omitted.

    keyFilename?: string

    Path to a service-account key JSON file. Omit to use Application Default Credentials.

    client?: unknown

    A pre-built Storage instance (from new Storage(...)). When provided, connect() uses it directly and skips loading @google-cloud/storage. Primarily an injection seam for tests, but also useful for sharing a client or supplying custom constructor options.