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

Folder

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

A folder. Only available in buckets with hierarchical namespace enabled.

interface Folder {
bucket?: string;
createTime?: Date;
id?: string;
kind?: string;
metageneration?: bigint;
name?: string;
pendingRenameInfo?: {
operationId?: string;
}
;
selfLink?: string;
updateTime?: Date;
}

§Properties

§
bucket?: string
[src]

The name of the bucket containing this folder.

§
createTime?: Date
[src]

The creation time of the folder in RFC 3339 format.

§
id?: string
[src]

The ID of the folder, including the bucket name, folder name.

§
kind?: string
[src]

The kind of item this is. For folders, this is always storage#folder.

§
metageneration?: bigint
[src]

The version of the metadata for this folder. Used for preconditions and for detecting changes in metadata.

§
name?: string
[src]

The name of the folder. Required if not specified by URL parameter.

§
pendingRenameInfo?: {
operationId?: string;
}
[src]

Only present if the folder is part of an ongoing rename folder operation. Contains information which can be used to query the operation status.

§
updateTime?: Date
[src]

The modification time of the folder metadata in RFC 3339 format.