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

CloudStorageFile

import type { CloudStorageFile } from "https://googleapis.deno.dev/v1/vault:v1.ts";

The export file in Cloud Storage

interface CloudStorageFile {
bucketName?: string;
md5Hash?: string;
objectName?: string;
size?: bigint;
}

§Properties

§
bucketName?: string
[src]

The name of the Cloud Storage bucket for the export file. You can use this value in the Cloud Storage JSON API or XML API, but not to list the bucket contents. Instead, you can get individual export files by object name.

§
md5Hash?: string
[src]

The md5 hash of the file.

§
objectName?: string
[src]

The name of the Cloud Storage object for the export file. You can use this value in the Cloud Storage JSON API or XML API.

§
size?: bigint
[src]

The export file size.