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

BucketsListOptions

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

Additional options for Storage#bucketsList.

interface BucketsListOptions {
maxResults?: number;
pageToken?: string;
prefix?: string;
project: string;
projection?: "full" | "noAcl";
userProject?: string;
}

§Properties

§
maxResults?: number
[src]

Maximum number of buckets to return in a single response. The service will use this parameter or 1,000 items, whichever is smaller.

§
pageToken?: string
[src]

A previously-returned page token representing part of the larger set of results to view.

§
prefix?: string
[src]

Filter results to buckets whose names begin with this prefix.

§
project: string
[src]

A valid API project identifier.

§
projection?: "full" | "noAcl"
[src]

Set of properties to return. Defaults to noAcl.

§
userProject?: string
[src]

The project to be billed for this request.