BucketsGetOptions
import type { BucketsGetOptions } from "https://googleapis.deno.dev/v1/storage:v1.ts";
Additional options for Storage#bucketsGet.
interface BucketsGetOptions {
generation?: bigint;
ifMetagenerationMatch?: bigint;
ifMetagenerationNotMatch?: bigint;
projection?: "full" | "noAcl";
softDeleted?: boolean;
userProject?: string;
}§Properties
§
generation?: bigint
[src]If present, specifies the generation of the bucket. This is required if softDeleted is true.
§
ifMetagenerationMatch?: bigint
[src]Makes the return of the bucket metadata conditional on whether the bucket's current metageneration matches the given value.
§
ifMetagenerationNotMatch?: bigint
[src]Makes the return of the bucket metadata conditional on whether the bucket's current metageneration does not match the given value.
§
softDeleted?: boolean
[src]If true, return the soft-deleted version of this bucket. The default is false. For more information, see Soft Delete.