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 dataset Id?: string
readonly dataset Id?: 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
readonly limit?: number
Max number of results to return Default: 50 Type options: {"minValue":1,"maxValue":500}
Source§readonly options?:
| {
ignoreUnknownValues?: boolean;
skipInvalidRows?: boolean;
templateSuffix?: string;
traceId?: string;
}
| { selectedFields?: string }
readonly options?:
| {
ignoreUnknownValues?: boolean;
skipInvalidRows?: boolean;
templateSuffix?: string;
traceId?: string;
}
| { selectedFields?: string }
Default: {}
Source§readonly project Id?: string
readonly project Id?: 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 simple?: boolean
readonly simple?: boolean
Whether to return a simplified version of the response instead of the raw data Default: true
Source§readonly table Id?: string
readonly table Id?: 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"]}
Default: "oAuth2"