google-apis-bigquery_v2 0.81.0 → 0.83.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/bigquery_v2/classes.rb +24 -22
- data/lib/google/apis/bigquery_v2/gem_version.rb +2 -2
- data/lib/google/apis/bigquery_v2/service.rb +16 -15
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 97fb4d8512d9dd27b2ed1559cef8b970ec20e72e2e5e24d1e9e7832fc9c036d1
|
4
|
+
data.tar.gz: 6726192ca190f24d0940b1f21a9d4e6df49c406ddc0b16cb9df70c327e4cdee6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e5ebf97d9a0886eb85168c19d835fab057a59fe51fd629c0f1bfb4293cdb104d7408a03aae3f299fef478ac3dc61dea884e250855e9255ee08dec4fd716cd8e2
|
7
|
+
data.tar.gz: f574d56f4358b81a21b235f2a9ef273766d99c0557d13090acbf23336f5d22b2743c29221d366d1691dcab9feb9711347d11081e87ceee66373491fb9ed51ae1
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-bigquery_v2
|
2
2
|
|
3
|
+
### v0.83.0 (2025-01-05)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20241222
|
6
|
+
|
7
|
+
### v0.82.0 (2024-12-08)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20241115
|
10
|
+
|
3
11
|
### v0.81.0 (2024-11-24)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20241111
|
@@ -1411,8 +1411,8 @@ module Google
|
|
1411
1411
|
# One or more fields on which data should be clustered. Only top-level, non-
|
1412
1412
|
# repeated, simple-type fields are supported. The ordering of the clustering
|
1413
1413
|
# fields should be prioritized from most to least important for filtering
|
1414
|
-
# purposes.
|
1415
|
-
# cloud.google.com/bigquery/docs/
|
1414
|
+
# purposes. For additional information, see [Introduction to clustered tables](
|
1415
|
+
# https://cloud.google.com/bigquery/docs/clustered-tables#limitations).
|
1416
1416
|
# Corresponds to the JSON property `fields`
|
1417
1417
|
# @return [Array<String>]
|
1418
1418
|
attr_accessor :fields
|
@@ -1819,7 +1819,7 @@ module Google
|
|
1819
1819
|
attr_accessor :etag
|
1820
1820
|
|
1821
1821
|
# Options defining open source compatible datasets living in the BigQuery
|
1822
|
-
# catalog. Contains metadata of open source database, schema or namespace
|
1822
|
+
# catalog. Contains metadata of open source database, schema, or namespace
|
1823
1823
|
# represented by the current dataset.
|
1824
1824
|
# Corresponds to the JSON property `externalCatalogDatasetOptions`
|
1825
1825
|
# @return [Google::Apis::BigqueryV2::ExternalCatalogDatasetOptions]
|
@@ -3026,7 +3026,7 @@ module Google
|
|
3026
3026
|
end
|
3027
3027
|
|
3028
3028
|
# Options defining open source compatible datasets living in the BigQuery
|
3029
|
-
# catalog. Contains metadata of open source database, schema or namespace
|
3029
|
+
# catalog. Contains metadata of open source database, schema, or namespace
|
3030
3030
|
# represented by the current dataset.
|
3031
3031
|
class ExternalCatalogDatasetOptions
|
3032
3032
|
include Google::Apis::Core::Hashable
|
@@ -3038,7 +3038,7 @@ module Google
|
|
3038
3038
|
attr_accessor :default_storage_location_uri
|
3039
3039
|
|
3040
3040
|
# Optional. A map of key value pairs defining the parameters and properties of
|
3041
|
-
# the open source schema. Maximum size of
|
3041
|
+
# the open source schema. Maximum size of 2MiB.
|
3042
3042
|
# Corresponds to the JSON property `parameters`
|
3043
3043
|
# @return [Hash<String,String>]
|
3044
3044
|
attr_accessor :parameters
|
@@ -3055,21 +3055,22 @@ module Google
|
|
3055
3055
|
end
|
3056
3056
|
|
3057
3057
|
# Metadata about open source compatible table. The fields contained in these
|
3058
|
-
# options correspond to
|
3058
|
+
# options correspond to Hive metastore's table-level properties.
|
3059
3059
|
class ExternalCatalogTableOptions
|
3060
3060
|
include Google::Apis::Core::Hashable
|
3061
3061
|
|
3062
|
-
# Optional.
|
3063
|
-
# external storage, such as Azure Blob, Cloud Storage, or S3.
|
3064
|
-
# needed to read the open source table from BigQuery
|
3065
|
-
#
|
3062
|
+
# Optional. A connection ID that specifies the credentials to be used to read
|
3063
|
+
# external storage, such as Azure Blob, Cloud Storage, or Amazon S3. This
|
3064
|
+
# connection is needed to read the open source table from BigQuery. The
|
3065
|
+
# connection_id format must be either `..` or `projects//locations//connections/`
|
3066
|
+
# .
|
3066
3067
|
# Corresponds to the JSON property `connectionId`
|
3067
3068
|
# @return [String]
|
3068
3069
|
attr_accessor :connection_id
|
3069
3070
|
|
3070
|
-
# Optional. A map of key
|
3071
|
-
# the open source table. Corresponds with
|
3072
|
-
# Maximum size of
|
3071
|
+
# Optional. A map of the key-value pairs defining the parameters and properties
|
3072
|
+
# of the open source table. Corresponds with Hive metastore table parameters.
|
3073
|
+
# Maximum size of 4MiB.
|
3073
3074
|
# Corresponds to the JSON property `parameters`
|
3074
3075
|
# @return [Hash<String,String>]
|
3075
3076
|
attr_accessor :parameters
|
@@ -5778,7 +5779,7 @@ module Google
|
|
5778
5779
|
# google.com/bigquery/docs/reference/standard-sql/debugging-statements#assert)
|
5779
5780
|
# statement. * `INSERT`: [`INSERT`](https://cloud.google.com/bigquery/docs/
|
5780
5781
|
# reference/standard-sql/dml-syntax#insert_statement) statement. * `UPDATE`: [`
|
5781
|
-
# UPDATE`](https://cloud.google.com/bigquery/docs/reference/standard-sql/
|
5782
|
+
# UPDATE`](https://cloud.google.com/bigquery/docs/reference/standard-sql/dml-
|
5782
5783
|
# syntax#update_statement) statement. * `DELETE`: [`DELETE`](https://cloud.
|
5783
5784
|
# google.com/bigquery/docs/reference/standard-sql/data-manipulation-language)
|
5784
5785
|
# statement. * `MERGE`: [`MERGE`](https://cloud.google.com/bigquery/docs/
|
@@ -5787,8 +5788,8 @@ module Google
|
|
5787
5788
|
# sql/data-definition-language#create_table_statement) statement, without `AS
|
5788
5789
|
# SELECT`. * `CREATE_TABLE_AS_SELECT`: [`CREATE TABLE AS SELECT`](https://cloud.
|
5789
5790
|
# google.com/bigquery/docs/reference/standard-sql/data-definition-language#
|
5790
|
-
#
|
5791
|
-
# google.com/bigquery/docs/reference/standard-sql/data-definition-language#
|
5791
|
+
# create_table_statement) statement. * `CREATE_VIEW`: [`CREATE VIEW`](https://
|
5792
|
+
# cloud.google.com/bigquery/docs/reference/standard-sql/data-definition-language#
|
5792
5793
|
# create_view_statement) statement. * `CREATE_MODEL`: [`CREATE MODEL`](https://
|
5793
5794
|
# cloud.google.com/bigquery-ml/docs/reference/standard-sql/bigqueryml-syntax-
|
5794
5795
|
# create#create_model_statement) statement. * `CREATE_MATERIALIZED_VIEW`: [`
|
@@ -5846,7 +5847,7 @@ module Google
|
|
5846
5847
|
# bigquery/docs/reference/standard-sql/data-definition-language#
|
5847
5848
|
# alter_materialized_view_set_options_statement) statement. * `ALTER_SCHEMA`: [`
|
5848
5849
|
# ALTER SCHEMA`](https://cloud.google.com/bigquery/docs/reference/standard-sql/
|
5849
|
-
# data-definition-language#
|
5850
|
+
# data-definition-language#alter_schema_set_options_statement) statement. * `
|
5850
5851
|
# SCRIPT`: [`SCRIPT`](https://cloud.google.com/bigquery/docs/reference/standard-
|
5851
5852
|
# sql/procedural-language). * `TRUNCATE_TABLE`: [`TRUNCATE TABLE`](https://cloud.
|
5852
5853
|
# google.com/bigquery/docs/reference/standard-sql/dml-syntax#
|
@@ -7552,8 +7553,9 @@ module Google
|
|
7552
7553
|
# @return [Hash<String,String>]
|
7553
7554
|
attr_accessor :labels
|
7554
7555
|
|
7555
|
-
# The geographic location where the job should run.
|
7556
|
-
# google.com/bigquery/docs/locations#
|
7556
|
+
# The geographic location where the job should run. For more information, see
|
7557
|
+
# how to [specify locations](https://cloud.google.com/bigquery/docs/locations#
|
7558
|
+
# specify_locations).
|
7557
7559
|
# Corresponds to the JSON property `location`
|
7558
7560
|
# @return [String]
|
7559
7561
|
attr_accessor :location
|
@@ -9343,7 +9345,7 @@ module Google
|
|
9343
9345
|
attr_accessor :expiration_time
|
9344
9346
|
|
9345
9347
|
# Metadata about open source compatible table. The fields contained in these
|
9346
|
-
# options correspond to
|
9348
|
+
# options correspond to Hive metastore's table-level properties.
|
9347
9349
|
# Corresponds to the JSON property `externalCatalogTableOptions`
|
9348
9350
|
# @return [Google::Apis::BigqueryV2::ExternalCatalogTableOptions]
|
9349
9351
|
attr_accessor :external_catalog_table_options
|
@@ -10753,8 +10755,8 @@ module Google
|
|
10753
10755
|
# When data_split_method is SEQ, the first DATA_SPLIT_EVAL_FRACTION rows (from
|
10754
10756
|
# smallest to largest) in the corresponding column are used as training data,
|
10755
10757
|
# and the rest are eval data. It respects the order in Orderable data types:
|
10756
|
-
# https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#
|
10757
|
-
#
|
10758
|
+
# https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#
|
10759
|
+
# data_type_properties
|
10758
10760
|
# Corresponds to the JSON property `dataSplitColumn`
|
10759
10761
|
# @return [String]
|
10760
10762
|
attr_accessor :data_split_column
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module BigqueryV2
|
18
18
|
# Version of the google-apis-bigquery_v2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.83.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20241222"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -99,7 +99,7 @@ module Google
|
|
99
99
|
# 1, and 3. Requests specifying an invalid value will be rejected. Requests for
|
100
100
|
# conditional access policy binding in datasets must specify version 3. Dataset
|
101
101
|
# with no conditional role bindings in access policy may specify any valid value
|
102
|
-
# or leave the field unset. This field will be
|
102
|
+
# or leave the field unset. This field will be mapped to [IAM Policy version] (
|
103
103
|
# https://cloud.google.com/iam/docs/policies#versions) and will be used to fetch
|
104
104
|
# policy from IAM. If unset or if 0 or 1 value is used for dataset with
|
105
105
|
# conditional bindings, access entry with condition will have role string
|
@@ -154,7 +154,7 @@ module Google
|
|
154
154
|
# access policy binding in datasets must specify version 3. * But dataset with
|
155
155
|
# no conditional role bindings in access policy may specify any valid value or
|
156
156
|
# leave the field unset. If unset or if 0 or 1 value is used for dataset with
|
157
|
-
# conditional bindings, request will be rejected. This field will be
|
157
|
+
# conditional bindings, request will be rejected. This field will be mapped to
|
158
158
|
# IAM Policy version (https://cloud.google.com/iam/docs/policies#versions) and
|
159
159
|
# will be used to set policy in IAM.
|
160
160
|
# @param [String] fields
|
@@ -256,7 +256,7 @@ module Google
|
|
256
256
|
# condition. * But dataset with no conditional role bindings in access policy
|
257
257
|
# may specify any valid value or leave the field unset. If unset or if 0 or 1
|
258
258
|
# value is used for dataset with conditional bindings, request will be rejected.
|
259
|
-
# This field will be
|
259
|
+
# This field will be mapped to IAM Policy version (https://cloud.google.com/iam/
|
260
260
|
# docs/policies#versions) and will be used to set policy in IAM.
|
261
261
|
# @param [String] fields
|
262
262
|
# Selector specifying which fields to include in a partial response.
|
@@ -347,7 +347,7 @@ module Google
|
|
347
347
|
# condition. * But dataset with no conditional role bindings in access policy
|
348
348
|
# may specify any valid value or leave the field unset. If unset or if 0 or 1
|
349
349
|
# value is used for dataset with conditional bindings, request will be rejected.
|
350
|
-
# This field will be
|
350
|
+
# This field will be mapped to IAM Policy version (https://cloud.google.com/iam/
|
351
351
|
# docs/policies#versions) and will be used to set policy in IAM.
|
352
352
|
# @param [String] fields
|
353
353
|
# Selector specifying which fields to include in a partial response.
|
@@ -388,11 +388,11 @@ module Google
|
|
388
388
|
# @param [String] job_id
|
389
389
|
# Required. Job ID of the job to cancel
|
390
390
|
# @param [String] location
|
391
|
-
# The geographic location of the job. You must specify the location
|
392
|
-
#
|
393
|
-
#
|
394
|
-
#
|
395
|
-
#
|
391
|
+
# The geographic location of the job. You must [specify the location](https://
|
392
|
+
# cloud.google.com/bigquery/docs/locations#specify_locations) to run the job for
|
393
|
+
# the following scenarios: * If the location to run a job is not in the `us` or
|
394
|
+
# the `eu` multi-regional location * If the job's location is in a single region
|
395
|
+
# (for example, `us-central1`)
|
396
396
|
# @param [String] fields
|
397
397
|
# Selector specifying which fields to include in a partial response.
|
398
398
|
# @param [String] quota_user
|
@@ -431,8 +431,9 @@ module Google
|
|
431
431
|
# parent job which has child jobs, the metadata from all child jobs will be
|
432
432
|
# deleted as well. Direct deletion of the metadata of child jobs is not allowed.
|
433
433
|
# @param [String] location
|
434
|
-
# The geographic location of the job. Required.
|
435
|
-
# google.com/bigquery/docs/locations#
|
434
|
+
# The geographic location of the job. Required. For more information, see how to
|
435
|
+
# [specify locations](https://cloud.google.com/bigquery/docs/locations#
|
436
|
+
# specify_locations).
|
436
437
|
# @param [String] fields
|
437
438
|
# Selector specifying which fields to include in a partial response.
|
438
439
|
# @param [String] quota_user
|
@@ -471,8 +472,8 @@ module Google
|
|
471
472
|
# The geographic location of the job. You must specify the location to run the
|
472
473
|
# job for the following scenarios: * If the location to run a job is not in the `
|
473
474
|
# us` or the `eu` multi-regional location * If the job's location is in a single
|
474
|
-
# region (for example, `us-central1`) For more information, see
|
475
|
-
# google.com/bigquery/docs/locations#
|
475
|
+
# region (for example, `us-central1`) For more information, see how to [specify
|
476
|
+
# locations](https://cloud.google.com/bigquery/docs/locations#specify_locations).
|
476
477
|
# @param [String] fields
|
477
478
|
# Selector specifying which fields to include in a partial response.
|
478
479
|
# @param [String] quota_user
|
@@ -513,8 +514,8 @@ module Google
|
|
513
514
|
# The geographic location of the job. You must specify the location to run the
|
514
515
|
# job for the following scenarios: * If the location to run a job is not in the `
|
515
516
|
# us` or the `eu` multi-regional location * If the job's location is in a single
|
516
|
-
# region (for example, `us-central1`) For more information, see
|
517
|
-
# google.com/bigquery/docs/locations#
|
517
|
+
# region (for example, `us-central1`) For more information, see how to [specify
|
518
|
+
# locations](https://cloud.google.com/bigquery/docs/locations#specify_locations).
|
518
519
|
# @param [Fixnum] max_results
|
519
520
|
# Maximum number of results to read.
|
520
521
|
# @param [String] page_token
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-bigquery_v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.83.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-01-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-bigquery_v2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-bigquery_v2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-bigquery_v2/v0.83.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-bigquery_v2
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.5.
|
78
|
+
rubygems_version: 3.5.23
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for BigQuery API V2
|