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

FilesListOptions

import type { FilesListOptions } from "https://googleapis.deno.dev/v1/drive:v3.ts";

Additional options for Drive#filesList.

interface FilesListOptions {
corpora?: string;
corpus?: "domain" | "user";
driveId?: string;
includeItemsFromAllDrives?: boolean;
includeLabels?: string;
includePermissionsForView?: string;
includeTeamDriveItems?: boolean;
orderBy?: string;
pageSize?: number;
pageToken?: string;
q?: string;
spaces?: string;
supportsAllDrives?: boolean;
supportsTeamDrives?: boolean;
teamDriveId?: string;
}

§Properties

§
corpora?: string
[src]

Specifies a collection of items (files or documents) to which the query applies. Supported items include: * user * domain * drive * allDrives Prefer user or drive to allDrives for efficiency. By default, corpora is set to user. However, this can change depending on the filter set through the q parameter. For more information, see File organization.

§
corpus?: "domain" | "user"
[src]

Deprecated: The source of files to list. Use corpora instead.

§
driveId?: string
[src]

ID of the shared drive to search.

§
includeItemsFromAllDrives?: boolean
[src]

Whether both My Drive and shared drive items should be included in results.

§
includeLabels?: string
[src]

A comma-separated list of IDs of labels to include in the labelInfo part of the response.

§
includePermissionsForView?: string
[src]

Specifies which additional view's permissions to include in the response. Only published is supported.

§
includeTeamDriveItems?: boolean
[src]

Deprecated: Use includeItemsFromAllDrives instead.

§
orderBy?: string
[src]

A comma-separated list of sort keys. Valid keys are: * createdTime: When the file was created. Avoid using this key for queries on large item collections as it might result in timeouts or other issues. For time-related sorting on large item collections, use modifiedTime desc instead. * folder: The folder ID. This field is sorted using alphabetical ordering. * modifiedByMeTime: The last time the file was modified by the user. * modifiedTime: The last time the file was modified by anyone. * name: The name of the file. This field is sorted using alphabetical ordering, so 1, 12, 2, 22. * name_natural: The name of the file. This field is sorted using natural sort ordering, so 1, 2, 12, 22. * quotaBytesUsed: The number of storage quota bytes used by the file. * recency: The most recent timestamp from the file's date-time fields. * sharedWithMeTime: When the file was shared with the user, if applicable.

  • starred: Whether the user has starred the file. * viewedByMeTime: The last time the file was viewed by the user. Each key sorts ascending by default, but can be reversed with the desc modifier. Example usage: ?orderBy=folder,modifiedTime desc,name.
§
pageSize?: number
[src]

The maximum number of files to return per page. Pages may be partial or empty even before reaching the end of the file list. If unspecified, at most 100 files are returned for shared drives, and the entire list of files for non-shared drives. The maximum value is 100; values above 100 are changed to 100.

§
pageToken?: string
[src]

The token for continuing a previous list request on the next page. This should be set to the value of nextPageToken from the previous response.

§
q?: string
[src]

A query for filtering the file results. For supported syntax, see Search for files and folders.

§
spaces?: string
[src]

A comma-separated list of spaces to query within the corpora. Supported values are drive and appDataFolder. For more information, see File organization.

§
supportsAllDrives?: boolean
[src]

Whether the requesting application supports both My Drives and shared drives.

§
supportsTeamDrives?: boolean
[src]

Deprecated: Use supportsAllDrives instead.

§
teamDriveId?: string
[src]

Deprecated: Use driveId instead.