Google Apps Script API
    Preparing search index...
    interface TeamdrivesCollection {
        get(teamDriveId: string): GoogleAppsScript.Drive.Schema.TeamDrive;
        get(
            teamDriveId: string,
            optionalArgs: Record<string, any>,
        ): GoogleAppsScript.Drive.Schema.TeamDrive;
        insert(
            resource: GoogleAppsScript.Drive.Schema.TeamDrive,
            requestId: string,
        ): GoogleAppsScript.Drive.Schema.TeamDrive;
        list(): GoogleAppsScript.Drive.Schema.TeamDriveList;
        list(
            optionalArgs: Record<string, any>,
        ): GoogleAppsScript.Drive.Schema.TeamDriveList;
        remove(teamDriveId: string): void;
        update(
            resource: GoogleAppsScript.Drive.Schema.TeamDrive,
            teamDriveId: string,
        ): GoogleAppsScript.Drive.Schema.TeamDrive;
        update(
            resource: GoogleAppsScript.Drive.Schema.TeamDrive,
            teamDriveId: string,
            optionalArgs: Record<string, any>,
        ): GoogleAppsScript.Drive.Schema.TeamDrive;
    }
    Index

    Methods