Google Apps Script API
    Preparing search index...
    interface TablesCollection {
        get(
            projectId: string,
            datasetId: string,
            tableId: string,
        ): GoogleAppsScript.BigQuery.Schema.Table;
        get(
            projectId: string,
            datasetId: string,
            tableId: string,
            optionalArgs: object,
        ): GoogleAppsScript.BigQuery.Schema.Table;
        insert(
            resource: GoogleAppsScript.BigQuery.Schema.Table,
            projectId: string,
            datasetId: string,
        ): GoogleAppsScript.BigQuery.Schema.Table;
        list(projectId: string, datasetId: string): TableList;
        list(projectId: string, datasetId: string, optionalArgs: object): TableList;
        patch(
            resource: GoogleAppsScript.BigQuery.Schema.Table,
            projectId: string,
            datasetId: string,
            tableId: string,
        ): GoogleAppsScript.BigQuery.Schema.Table;
        remove(projectId: string, datasetId: string, tableId: string): void;
        update(
            resource: GoogleAppsScript.BigQuery.Schema.Table,
            projectId: string,
            datasetId: string,
            tableId: string,
        ): GoogleAppsScript.BigQuery.Schema.Table;
    }
    Index

    Methods