@maxim_mazurok/gapi.client.bigquery-v2 0.0.20240803 → 0.0.20240815
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 +7 -7
- package/package.json +1 -1
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: 20240815
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -994,7 +994,7 @@ declare namespace gapi.client {
|
|
|
994
994
|
etag?: string;
|
|
995
995
|
/** Output only. Opaque ID field of the job. */
|
|
996
996
|
id?: string;
|
|
997
|
-
/** Output only.
|
|
997
|
+
/** Output only. The reason why a Job was created. [Preview](/products/#product-launch-stages) */
|
|
998
998
|
jobCreationReason?: JobCreationReason;
|
|
999
999
|
/** Optional. Reference describing the unique-per-user name of the job. */
|
|
1000
1000
|
jobReference?: JobReference;
|
|
@@ -1749,7 +1749,7 @@ declare namespace gapi.client {
|
|
|
1749
1749
|
dryRun?: boolean;
|
|
1750
1750
|
/** Optional. Output format adjustments. */
|
|
1751
1751
|
formatOptions?: DataFormatOptions;
|
|
1752
|
-
/** Optional. If not set, jobs are always required. If set, the query request will follow the behavior described JobCreationMode.
|
|
1752
|
+
/** Optional. If not set, jobs are always required. If set, the query request will follow the behavior described JobCreationMode. [Preview](/products/#product-launch-stages) */
|
|
1753
1753
|
jobCreationMode?: string;
|
|
1754
1754
|
/** The resource type of the request. */
|
|
1755
1755
|
kind?: string;
|
|
@@ -1787,9 +1787,9 @@ declare namespace gapi.client {
|
|
|
1787
1787
|
errors?: ErrorProto[];
|
|
1788
1788
|
/** Whether the query has completed or not. If rows or totalRows are present, this will always be true. If this is false, totalRows will not be available. */
|
|
1789
1789
|
jobComplete?: boolean;
|
|
1790
|
-
/** Optional. Only relevant when a job_reference is present in the response. If job_reference is not present it will always be unset.
|
|
1790
|
+
/** Optional. The reason why a Job was created. Only relevant when a job_reference is present in the response. If job_reference is not present it will always be unset. [Preview](/products/#product-launch-stages) */
|
|
1791
1791
|
jobCreationReason?: JobCreationReason;
|
|
1792
|
-
/** Reference to the Job that was created to run the query. This field will be present even if the original request timed out, in which case GetQueryResults can be used to read the results once the query has completed. Since this API only returns the first page of results, subsequent pages can be fetched via the same mechanism (GetQueryResults). */
|
|
1792
|
+
/** Reference to the Job that was created to run the query. This field will be present even if the original request timed out, in which case GetQueryResults can be used to read the results once the query has completed. Since this API only returns the first page of results, subsequent pages can be fetched via the same mechanism (GetQueryResults). If job_creation_mode was set to `JOB_CREATION_OPTIONAL` and the query completes without creating a job, this field will be empty. */
|
|
1793
1793
|
jobReference?: JobReference;
|
|
1794
1794
|
/** The resource type. */
|
|
1795
1795
|
kind?: string;
|
|
@@ -1797,7 +1797,7 @@ declare namespace gapi.client {
|
|
|
1797
1797
|
numDmlAffectedRows?: string;
|
|
1798
1798
|
/** A token used for paging results. A non-empty token indicates that additional results are available. To see additional results, query the [`jobs.getQueryResults`](https://cloud.google.com/bigquery/docs/reference/rest/v2/jobs/getQueryResults) method. For more information, see [Paging through table data](https://cloud.google.com/bigquery/docs/paging-results). */
|
|
1799
1799
|
pageToken?: string;
|
|
1800
|
-
/**
|
|
1800
|
+
/** Auto-generated ID for the query. [Preview](/products/#product-launch-stages) */
|
|
1801
1801
|
queryId?: string;
|
|
1802
1802
|
/** An object with as many results as can be contained within the maximum permitted reply size. To get any additional rows, you can call GetQueryResults and specify the jobReference returned above. */
|
|
1803
1803
|
rows?: TableRow[];
|
|
@@ -2359,7 +2359,7 @@ declare namespace gapi.client {
|
|
|
2359
2359
|
roundingMode?: string;
|
|
2360
2360
|
/** Optional. See documentation for precision. */
|
|
2361
2361
|
scale?: string;
|
|
2362
|
-
/** Required. The field data type. Possible values include: * STRING * BYTES * INTEGER (or INT64) * FLOAT (or FLOAT64) * BOOLEAN (or BOOL) * TIMESTAMP * DATE * TIME * DATETIME * GEOGRAPHY * NUMERIC * BIGNUMERIC * JSON * RECORD (or STRUCT) * RANGE
|
|
2362
|
+
/** Required. The field data type. Possible values include: * STRING * BYTES * INTEGER (or INT64) * FLOAT (or FLOAT64) * BOOLEAN (or BOOL) * TIMESTAMP * DATE * TIME * DATETIME * GEOGRAPHY * NUMERIC * BIGNUMERIC * JSON * RECORD (or STRUCT) * RANGE Use of RECORD/STRUCT indicates that the field contains a nested schema. */
|
|
2363
2363
|
type?: string;
|
|
2364
2364
|
}
|
|
2365
2365
|
interface TableList {
|