Interface GoogleBigQueryV1NodeParameters

Source
interface GoogleBigQueryV1NodeParameters {
    authentication?: "oAuth2" | "serviceAccount";
    columns?: string;
    datasetId?: string;
    limit?: number;
    operation?: "create" | "getAll";
    options?:
        | {
            ignoreUnknownValues?: boolean;
            skipInvalidRows?: boolean;
            templateSuffix?: string;
            traceId?: string;
        }
        | { selectedFields?: string };
    projectId?: string;
    resource?: "record";
    returnAll?: boolean;
    simple?: boolean;
    tableId?: string;
}

Properties§

Source§

readonly authentication?: "oAuth2" | "serviceAccount"

Default: "oAuth2"

Source§

readonly columns?: string

Comma-separated list of the item properties to use as columns

Source§

readonly datasetId?: string

ID of the dataset to create the record in. Choose from the list, or specify an ID using an expression. Type options: {"loadOptionsMethod":"getDatasets","loadOptionsDependsOn":["projectId"]}

Source§

readonly limit?: number

Max number of results to return Default: 50 Type options: {"minValue":1,"maxValue":500}

Source§

readonly operation?: "create" | "getAll"

Default: "create"

Source§

readonly options?:
    | {
        ignoreUnknownValues?: boolean;
        skipInvalidRows?: boolean;
        templateSuffix?: string;
        traceId?: string;
    }
    | { selectedFields?: string }

Default: {}

Source§

readonly projectId?: string

ID of the project to create the record in. Choose from the list, or specify an ID using an expression. Type options: {"loadOptionsMethod":"getProjects"}

Source§

readonly resource?: "record"

Default: "record"

Source§

readonly returnAll?: boolean

Whether to return all results or only up to a given limit

Source§

readonly simple?: boolean

Whether to return a simplified version of the response instead of the raw data Default: true

Source§

readonly tableId?: string

ID of the table to create the record in. Choose from the list, or specify an ID using an expression. Type options: {"loadOptionsMethod":"getTables","loadOptionsDependsOn":["projectId","datasetId"]}