Google Apps Script API
    Preparing search index...
    interface JobsCollection {
        cancel(projectId: string, jobId: string): JobCancelResponse;
        cancel(
            projectId: string,
            jobId: string,
            optionalArgs: object,
        ): JobCancelResponse;
        get(projectId: string, jobId: string): Job;
        get(projectId: string, jobId: string, optionalArgs: object): Job;
        getQueryResults(projectId: string, jobId: string): GetQueryResultsResponse;
        getQueryResults(
            projectId: string,
            jobId: string,
            optionalArgs: object,
        ): GetQueryResultsResponse;
        insert(resource: Job, projectId: string): Job;
        insert(resource: Job, projectId: string, mediaData: any): Job;
        list(projectId: string): JobList;
        list(projectId: string, optionalArgs: object): JobList;
        query(
            resource: QueryRequest,
            projectId: string,
        ): GoogleAppsScript.BigQuery.Schema.QueryResponse;
    }
    Index

    Methods