@maxim_mazurok/gapi.client.bigquery-v2 0.0.20250713 → 0.1.20250802
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +6 -2
- package/package.json +1 -1
- package/readme.md +2 -0
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://bigquery.googleapis.com/$discovery/rest?version=v2
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250802
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -1072,6 +1072,8 @@ declare namespace gapi.client {
|
|
|
1072
1072
|
labels?: {[P in string]: string};
|
|
1073
1073
|
/** [Pick one] Configures a load job. */
|
|
1074
1074
|
load?: JobConfigurationLoad;
|
|
1075
|
+
/** Optional. INTERNAL: DO NOT USE. The maximum rate of slot consumption to allow for this job. If set, the number of slots used to execute the job will be throttled to try and keep its slot consumption below the requested rate. */
|
|
1076
|
+
maxSlots?: number;
|
|
1075
1077
|
/** [Pick one] Configures a query job. */
|
|
1076
1078
|
query?: JobConfigurationQuery;
|
|
1077
1079
|
/** Optional. The reservation that job would use. User can specify a reservation to execute the job. If reservation is not set, reservation is determined based on the rules defined by the reservation assignments. The expected format is `projects/{project}/locations/{location}/reservations/{reservation}`. */
|
|
@@ -1833,6 +1835,8 @@ declare namespace gapi.client {
|
|
|
1833
1835
|
maximumBytesBilled?: string;
|
|
1834
1836
|
/** Optional. The maximum number of rows of data to return per page of results. Setting this flag to a small value such as 1000 and then paging through results might improve reliability when the query result set is large. In addition to this limit, responses are also limited to 10 MB. By default, there is no maximum row count, and only the byte limit applies. */
|
|
1835
1837
|
maxResults?: number;
|
|
1838
|
+
/** Optional. INTERNAL: DO NOT USE. The maximum rate of slot consumption to allow for this job. If set, the number of slots used to execute the job will be throttled to try and keep its slot consumption below the requested rate. This limit is best effort. */
|
|
1839
|
+
maxSlots?: number;
|
|
1836
1840
|
/** GoogleSQL only. Set to POSITIONAL to use positional (?) query parameters or to NAMED to use named (@myparam) query parameters in this query. */
|
|
1837
1841
|
parameterMode?: string;
|
|
1838
1842
|
/** This property is deprecated. */
|
|
@@ -1990,7 +1994,7 @@ declare namespace gapi.client {
|
|
|
1990
1994
|
creationTime?: string;
|
|
1991
1995
|
/** Optional. If set to `DATA_MASKING`, the function is validated and made available as a masking function. For more information, see [Create custom masking routines](https://cloud.google.com/bigquery/docs/user-defined-functions#custom-mask). */
|
|
1992
1996
|
dataGovernanceType?: string;
|
|
1993
|
-
/** Required. The body of the routine. For functions, this is the expression in the AS clause. If language=SQL
|
|
1997
|
+
/** Required. The body of the routine. For functions, this is the expression in the AS clause. If `language = "SQL"`, it is the substring inside (but excluding) the parentheses. For example, for the function created with the following statement: `CREATE FUNCTION JoinLines(x string, y string) as (concat(x, "\n", y))` The definition_body is `concat(x, "\n", y)` (\n is not replaced with linebreak). If `language="JAVASCRIPT"`, it is the evaluated string in the AS clause. For example, for the function created with the following statement: `CREATE FUNCTION f() RETURNS STRING LANGUAGE js AS 'return "\n";\n'` The definition_body is `return "\n";\n` Note that both \n are replaced with linebreaks. If `definition_body` references another routine, then that routine must be fully qualified with its project ID. */
|
|
1994
1998
|
definitionBody?: string;
|
|
1995
1999
|
/** Optional. The description of the routine, if defined. */
|
|
1996
2000
|
description?: string;
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -440,3 +440,5 @@ await gapi.client.bigquery.tables.update({
|
|
|
440
440
|
tableId: 'tableId',
|
|
441
441
|
});
|
|
442
442
|
```
|
|
443
|
+
|
|
444
|
+
For provenance information see [Provenance section on NPM](https://www.npmjs.com/package/@maxim_mazurok/gapi.client.bigquery-v2#Provenance:~:text=none-,Provenance,-Built%20and%20signed)
|