@maxim_mazurok/gapi.client.bigquery-v2 0.0.20241222 → 0.0.20250112

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.
Files changed (2) hide show
  1. package/index.d.ts +14 -2
  2. 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: 20241222
12
+ // Revision: 20250112
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -1505,7 +1505,7 @@ declare namespace gapi.client {
1505
1505
  tableReference?: TableReference;
1506
1506
  }
1507
1507
  interface MaterializedViewDefinition {
1508
- /** Optional. This option declares the intention to construct a materialized view that isn't refreshed incrementally. */
1508
+ /** Optional. This option declares the intention to construct a materialized view that isn't refreshed incrementally. Non-incremental materialized views support an expanded range of SQL queries. The `allow_non_incremental_definition` option can't be changed after the materialized view is created. */
1509
1509
  allowNonIncrementalDefinition?: boolean;
1510
1510
  /** Optional. Enable automatic refresh of the materialized view when the base table is updated. The default value is "true". */
1511
1511
  enableRefresh?: boolean;
@@ -1783,8 +1783,12 @@ declare namespace gapi.client {
1783
1783
  interface QueryResponse {
1784
1784
  /** Whether the query result was fetched from the query cache. */
1785
1785
  cacheHit?: boolean;
1786
+ /** Output only. Creation time of this query, in milliseconds since the epoch. This field will be present on all queries. */
1787
+ creationTime?: string;
1786
1788
  /** Output only. Detailed statistics for DML statements INSERT, UPDATE, DELETE, MERGE or TRUNCATE. */
1787
1789
  dmlStats?: DmlStatistics;
1790
+ /** Output only. End time of this query, in milliseconds since the epoch. This field will be present whenever a query job is in the DONE state. */
1791
+ endTime?: string;
1788
1792
  /** Output only. The first errors or warnings encountered during the running of the job. The final message includes the number of errors that caused the process to stop. Errors here do not necessarily mean that the job has completed or was unsuccessful. For more information about error messages, see [Error messages](https://cloud.google.com/bigquery/docs/error-messages). */
1789
1793
  errors?: ErrorProto[];
1790
1794
  /** 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. */
@@ -1795,6 +1799,8 @@ declare namespace gapi.client {
1795
1799
  jobReference?: JobReference;
1796
1800
  /** The resource type. */
1797
1801
  kind?: string;
1802
+ /** Output only. The geographic location of the query. For more information about BigQuery locations, see: https://cloud.google.com/bigquery/docs/locations */
1803
+ location?: string;
1798
1804
  /** Output only. The number of rows affected by a DML statement. Present only for DML statements INSERT, UPDATE or DELETE. */
1799
1805
  numDmlAffectedRows?: string;
1800
1806
  /** 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). */
@@ -1807,10 +1813,16 @@ declare namespace gapi.client {
1807
1813
  schema?: TableSchema;
1808
1814
  /** Output only. Information of the session if this job is part of one. */
1809
1815
  sessionInfo?: SessionInfo;
1816
+ /** Output only. Start time of this query, in milliseconds since the epoch. This field will be present when the query job transitions from the PENDING state to either RUNNING or DONE. */
1817
+ startTime?: string;
1818
+ /** Output only. If the project is configured to use on-demand pricing, then this field contains the total bytes billed for the job. If the project is configured to use flat-rate pricing, then you are not billed for bytes and this field is informational only. */
1819
+ totalBytesBilled?: string;
1810
1820
  /** The total number of bytes processed for this query. If this query was a dry run, this is the number of bytes that would be processed if the query were run. */
1811
1821
  totalBytesProcessed?: string;
1812
1822
  /** The total number of rows in the complete query result set, which can be more than the number of rows in this single page of results. */
1813
1823
  totalRows?: string;
1824
+ /** Output only. Number of slot ms the user is actually billed for. */
1825
+ totalSlotMs?: string;
1814
1826
  }
1815
1827
  interface QueryTimelineSample {
1816
1828
  /** Total number of active workers. This does not correspond directly to slot usage. This is the largest value observed since the last sample. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.bigquery-v2",
3
- "version": "0.0.20241222",
3
+ "version": "0.0.20250112",
4
4
  "description": "TypeScript typings for BigQuery API v2",
5
5
  "repository": {
6
6
  "type": "git",