google-apis-bigquery_v2 0.86.0 → 0.88.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '098b282e7898fe120603340dbab70b3f18760480d4707388cb9a7926991214f8'
|
4
|
+
data.tar.gz: 58decc294950a29fdacc940e4d53d358a9baaa18a8d7ae4db75c1280125b3df0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2aa8d1f2cb2d89de920531d1ad782e18669a92780742b62cd2e317d2fad0c3ce2488353d6b4791be15a4543f175e278157aca85b804a7038a1afa5503346690a
|
7
|
+
data.tar.gz: 4937d2362d8f9ed88c77bc61d48a972a2ea199aed27d9b84149c9637228e498d1d75a099f31c62793865ab9b12062b90a270c7cb067caba564ef7aee0aa711c2
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-bigquery_v2
|
2
2
|
|
3
|
+
### v0.88.0 (2025-05-04)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250427
|
6
|
+
* Regenerated using generator version 0.17.0
|
7
|
+
|
8
|
+
### v0.87.0 (2025-04-20)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20250404
|
11
|
+
|
3
12
|
### v0.86.0 (2025-03-23)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20250313
|
data/OVERVIEW.md
CHANGED
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/bigquery/) may provide guid
|
|
83
83
|
|
84
84
|
## Supported Ruby versions
|
85
85
|
|
86
|
-
This library is supported on Ruby
|
86
|
+
This library is supported on Ruby 3.1+.
|
87
87
|
|
88
88
|
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
89
89
|
|
@@ -690,7 +690,8 @@ module Google
|
|
690
690
|
end
|
691
691
|
end
|
692
692
|
|
693
|
-
# Configuration for BigLake managed
|
693
|
+
# Configuration for BigQuery tables for Apache Iceberg (formerly BigLake managed
|
694
|
+
# tables.)
|
694
695
|
class BigLakeConfiguration
|
695
696
|
include Google::Apis::Core::Hashable
|
696
697
|
|
@@ -4966,8 +4967,8 @@ module Google
|
|
4966
4967
|
# @return [Google::Apis::BigqueryV2::TimePartitioning]
|
4967
4968
|
attr_accessor :time_partitioning
|
4968
4969
|
|
4969
|
-
# Optional.
|
4970
|
-
#
|
4970
|
+
# Optional. Default time zone that will apply when parsing timestamp values that
|
4971
|
+
# have no specific time zone.
|
4971
4972
|
# Corresponds to the JSON property `timeZone`
|
4972
4973
|
# @return [String]
|
4973
4974
|
attr_accessor :time_zone
|
@@ -5906,8 +5907,7 @@ module Google
|
|
5906
5907
|
# @return [Array<Google::Apis::BigqueryV2::RoutineReference>]
|
5907
5908
|
attr_accessor :referenced_routines
|
5908
5909
|
|
5909
|
-
# Output only. Referenced tables for the job.
|
5910
|
-
# 50 tables will not have a complete list.
|
5910
|
+
# Output only. Referenced tables for the job.
|
5911
5911
|
# Corresponds to the JSON property `referencedTables`
|
5912
5912
|
# @return [Array<Google::Apis::BigqueryV2::TableReference>]
|
5913
5913
|
attr_accessor :referenced_tables
|
@@ -8082,6 +8082,12 @@ module Google
|
|
8082
8082
|
# @return [Fixnum]
|
8083
8083
|
attr_accessor :pending_units
|
8084
8084
|
|
8085
|
+
# Total shuffle usage ratio in shuffle RAM per reservation of this query. This
|
8086
|
+
# will be provided for reservation customers only.
|
8087
|
+
# Corresponds to the JSON property `shuffleRamUsageRatio`
|
8088
|
+
# @return [Float]
|
8089
|
+
attr_accessor :shuffle_ram_usage_ratio
|
8090
|
+
|
8085
8091
|
# Cumulative slot-ms consumed by the query.
|
8086
8092
|
# Corresponds to the JSON property `totalSlotMs`
|
8087
8093
|
# @return [Fixnum]
|
@@ -8098,6 +8104,7 @@ module Google
|
|
8098
8104
|
@elapsed_ms = args[:elapsed_ms] if args.key?(:elapsed_ms)
|
8099
8105
|
@estimated_runnable_units = args[:estimated_runnable_units] if args.key?(:estimated_runnable_units)
|
8100
8106
|
@pending_units = args[:pending_units] if args.key?(:pending_units)
|
8107
|
+
@shuffle_ram_usage_ratio = args[:shuffle_ram_usage_ratio] if args.key?(:shuffle_ram_usage_ratio)
|
8101
8108
|
@total_slot_ms = args[:total_slot_ms] if args.key?(:total_slot_ms)
|
8102
8109
|
end
|
8103
8110
|
end
|
@@ -9608,7 +9615,8 @@ module Google
|
|
9608
9615
|
class Table
|
9609
9616
|
include Google::Apis::Core::Hashable
|
9610
9617
|
|
9611
|
-
# Configuration for BigLake managed
|
9618
|
+
# Configuration for BigQuery tables for Apache Iceberg (formerly BigLake managed
|
9619
|
+
# tables.)
|
9612
9620
|
# Corresponds to the JSON property `biglakeConfiguration`
|
9613
9621
|
# @return [Google::Apis::BigqueryV2::BigLakeConfiguration]
|
9614
9622
|
attr_accessor :biglake_configuration
|
@@ -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.88.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.17.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250427"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -3281,6 +3281,7 @@ module Google
|
|
3281
3281
|
property :elapsed_ms, :numeric_string => true, as: 'elapsedMs'
|
3282
3282
|
property :estimated_runnable_units, :numeric_string => true, as: 'estimatedRunnableUnits'
|
3283
3283
|
property :pending_units, :numeric_string => true, as: 'pendingUnits'
|
3284
|
+
property :shuffle_ram_usage_ratio, as: 'shuffleRamUsageRatio'
|
3284
3285
|
property :total_slot_ms, :numeric_string => true, as: 'totalSlotMs'
|
3285
3286
|
end
|
3286
3287
|
end
|
@@ -258,6 +258,9 @@ module Google
|
|
258
258
|
# value is used for dataset with conditional bindings, request will be rejected.
|
259
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
|
+
# @param [String] update_mode
|
262
|
+
# Optional. Specifies the fields of dataset that update/patch operation is
|
263
|
+
# targeting By default, both metadata and ACL fields are updated.
|
261
264
|
# @param [String] fields
|
262
265
|
# Selector specifying which fields to include in a partial response.
|
263
266
|
# @param [String] quota_user
|
@@ -275,7 +278,7 @@ module Google
|
|
275
278
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
276
279
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
277
280
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
278
|
-
def patch_dataset(project_id, dataset_id, dataset_object = nil, access_policy_version: nil, fields: nil, quota_user: nil, options: nil, &block)
|
281
|
+
def patch_dataset(project_id, dataset_id, dataset_object = nil, access_policy_version: nil, update_mode: nil, fields: nil, quota_user: nil, options: nil, &block)
|
279
282
|
command = make_simple_command(:patch, 'projects/{+projectId}/datasets/{+datasetId}', options)
|
280
283
|
command.request_representation = Google::Apis::BigqueryV2::Dataset::Representation
|
281
284
|
command.request_object = dataset_object
|
@@ -284,6 +287,7 @@ module Google
|
|
284
287
|
command.params['projectId'] = project_id unless project_id.nil?
|
285
288
|
command.params['datasetId'] = dataset_id unless dataset_id.nil?
|
286
289
|
command.query['accessPolicyVersion'] = access_policy_version unless access_policy_version.nil?
|
290
|
+
command.query['updateMode'] = update_mode unless update_mode.nil?
|
287
291
|
command.query['fields'] = fields unless fields.nil?
|
288
292
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
289
293
|
execute_or_queue_command(command, &block)
|
@@ -349,6 +353,9 @@ module Google
|
|
349
353
|
# value is used for dataset with conditional bindings, request will be rejected.
|
350
354
|
# This field will be mapped to IAM Policy version (https://cloud.google.com/iam/
|
351
355
|
# docs/policies#versions) and will be used to set policy in IAM.
|
356
|
+
# @param [String] update_mode
|
357
|
+
# Optional. Specifies the fields of dataset that update/patch operation is
|
358
|
+
# targeting By default, both metadata and ACL fields are updated.
|
352
359
|
# @param [String] fields
|
353
360
|
# Selector specifying which fields to include in a partial response.
|
354
361
|
# @param [String] quota_user
|
@@ -366,7 +373,7 @@ module Google
|
|
366
373
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
367
374
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
368
375
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
369
|
-
def update_dataset(project_id, dataset_id, dataset_object = nil, access_policy_version: nil, fields: nil, quota_user: nil, options: nil, &block)
|
376
|
+
def update_dataset(project_id, dataset_id, dataset_object = nil, access_policy_version: nil, update_mode: nil, fields: nil, quota_user: nil, options: nil, &block)
|
370
377
|
command = make_simple_command(:put, 'projects/{+projectId}/datasets/{+datasetId}', options)
|
371
378
|
command.request_representation = Google::Apis::BigqueryV2::Dataset::Representation
|
372
379
|
command.request_object = dataset_object
|
@@ -375,6 +382,7 @@ module Google
|
|
375
382
|
command.params['projectId'] = project_id unless project_id.nil?
|
376
383
|
command.params['datasetId'] = dataset_id unless dataset_id.nil?
|
377
384
|
command.query['accessPolicyVersion'] = access_policy_version unless access_policy_version.nil?
|
385
|
+
command.query['updateMode'] = update_mode unless update_mode.nil?
|
378
386
|
command.query['fields'] = fields unless fields.nil?
|
379
387
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
380
388
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
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.88.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-bigquery_v2/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-bigquery_v2/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-bigquery_v2/v0.88.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-bigquery_v2
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|
@@ -66,14 +66,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
66
66
|
requirements:
|
67
67
|
- - ">="
|
68
68
|
- !ruby/object:Gem::Version
|
69
|
-
version: '
|
69
|
+
version: '3.1'
|
70
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
71
71
|
requirements:
|
72
72
|
- - ">="
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.8
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for BigQuery API V2
|
79
79
|
test_files: []
|