Skip to content

Commit 58c2e5a

Browse files
feat: Automated regeneration of bigquery v2 client (#24725)
Auto-created at 2025-10-26 09:55:08 +0000 using the toys pull request generator.
1 parent 4c5230f commit 58c2e5a

File tree

5 files changed

+14
-2
lines changed

5 files changed

+14
-2
lines changed

api_names_out.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54217,6 +54217,7 @@
5421754217
"/bigquery:v2/IncrementalResultStats/resultSetLastReplaceTime": result_set_last_replace_time
5421854218
"/bigquery:v2/IndexPruningStats": index_pruning_stats
5421954219
"/bigquery:v2/IndexPruningStats/baseTable": base_table
54220+
"/bigquery:v2/IndexPruningStats/indexId": index_id
5422054221
"/bigquery:v2/IndexPruningStats/postIndexPruningParallelInputCount": post_index_pruning_parallel_input_count
5422154222
"/bigquery:v2/IndexPruningStats/preIndexPruningParallelInputCount": pre_index_pruning_parallel_input_count
5422254223
"/bigquery:v2/IndexUnusedReason": index_unused_reason

generated/google-apis-bigquery_v2/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release history for google-apis-bigquery_v2
22

3+
### v0.96.0 (2025-10-26)
4+
5+
* Regenerated from discovery document revision 20251012
6+
37
### v0.95.0 (2025-10-05)
48

59
* Regenerated from discovery document revision 20250928

generated/google-apis-bigquery_v2/lib/google/apis/bigquery_v2/classes.rb

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4235,6 +4235,11 @@ class IndexPruningStats
42354235
# @return [Google::Apis::BigqueryV2::TableReference]
42364236
attr_accessor :base_table
42374237

4238+
# The index id.
4239+
# Corresponds to the JSON property `indexId`
4240+
# @return [String]
4241+
attr_accessor :index_id
4242+
42384243
# The number of parallel inputs after index pruning.
42394244
# Corresponds to the JSON property `postIndexPruningParallelInputCount`
42404245
# @return [Fixnum]
@@ -4252,6 +4257,7 @@ def initialize(**args)
42524257
# Update properties of this object
42534258
def update!(**args)
42544259
@base_table = args[:base_table] if args.key?(:base_table)
4260+
@index_id = args[:index_id] if args.key?(:index_id)
42554261
@post_index_pruning_parallel_input_count = args[:post_index_pruning_parallel_input_count] if args.key?(:post_index_pruning_parallel_input_count)
42564262
@pre_index_pruning_parallel_input_count = args[:pre_index_pruning_parallel_input_count] if args.key?(:pre_index_pruning_parallel_input_count)
42574263
end

generated/google-apis-bigquery_v2/lib/google/apis/bigquery_v2/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module BigqueryV2
1818
# Version of the google-apis-bigquery_v2 gem
19-
GEM_VERSION = "0.95.0"
19+
GEM_VERSION = "0.96.0"
2020

2121
# Version of the code generator used to generate this client
2222
GENERATOR_VERSION = "0.18.0"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20250928"
25+
REVISION = "20251012"
2626
end
2727
end
2828
end

generated/google-apis-bigquery_v2/lib/google/apis/bigquery_v2/representations.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2392,6 +2392,7 @@ class IndexPruningStats
23922392
class Representation < Google::Apis::Core::JsonRepresentation
23932393
property :base_table, as: 'baseTable', class: Google::Apis::BigqueryV2::TableReference, decorator: Google::Apis::BigqueryV2::TableReference::Representation
23942394

2395+
property :index_id, as: 'indexId'
23952396
property :post_index_pruning_parallel_input_count, :numeric_string => true, as: 'postIndexPruningParallelInputCount'
23962397
property :pre_index_pruning_parallel_input_count, :numeric_string => true, as: 'preIndexPruningParallelInputCount'
23972398
end

0 commit comments

Comments
 (0)