Google Apps Script API
    Preparing search index...
    interface DrivesCollection {
        get(driveId: string): GoogleAppsScript.Drive.Schema.Drive;
        get(
            driveId: string,
            optionalArgs: Record<string, any>,
        ): GoogleAppsScript.Drive.Schema.Drive;
        hide(driveId: string): GoogleAppsScript.Drive.Schema.Drive;
        insert(
            resource: GoogleAppsScript.Drive.Schema.Drive,
            requestId: string,
        ): GoogleAppsScript.Drive.Schema.Drive;
        list(): GoogleAppsScript.Drive.Schema.DriveList;
        list(
            optionalArgs: Record<string, any>,
        ): GoogleAppsScript.Drive.Schema.DriveList;
        remove(driveId: string): void;
        unhide(driveId: string): GoogleAppsScript.Drive.Schema.Drive;
        update(
            resource: GoogleAppsScript.Drive.Schema.Drive,
            driveId: string,
        ): GoogleAppsScript.Drive.Schema.Drive;
        update(
            resource: GoogleAppsScript.Drive.Schema.Drive,
            driveId: string,
            optionalArgs: Record<string, any>,
        ): GoogleAppsScript.Drive.Schema.Drive;
    }
    Index

    Methods