Skip to content

Commit e9bf58e

Browse files
feat: Automated regeneration of bigquery v2 client (#25954)
Auto-created at 2026-03-15 10:41:10 +0000 using the toys pull request generator.
1 parent 27e34be commit e9bf58e

5 files changed

Lines changed: 84 additions & 2 deletions

File tree

api_names_out.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58009,6 +58009,8 @@
5800958009
"/bigquery:v2/DimensionalityReductionMetrics/totalExplainedVarianceRatio": total_explained_variance_ratio
5801058010
"/bigquery:v2/DmlStatistics": dml_statistics
5801158011
"/bigquery:v2/DmlStatistics/deletedRowCount": deleted_row_count
58012+
"/bigquery:v2/DmlStatistics/dmlMode": dml_mode
58013+
"/bigquery:v2/DmlStatistics/fineGrainedDmlUnusedReason": fine_grained_dml_unused_reason
5801258014
"/bigquery:v2/DmlStatistics/insertedRowCount": inserted_row_count
5801358015
"/bigquery:v2/DmlStatistics/updatedRowCount": updated_row_count
5801458016
"/bigquery:v2/DoubleCandidates": double_candidates
@@ -58503,6 +58505,8 @@
5850358505
"/bigquery:v2/JobStatistics2/queryInfo": query_info
5850458506
"/bigquery:v2/JobStatistics2/queryPlan": query_plan
5850558507
"/bigquery:v2/JobStatistics2/queryPlan/query_plan": query_plan
58508+
"/bigquery:v2/JobStatistics2/referencedPropertyGraphs": referenced_property_graphs
58509+
"/bigquery:v2/JobStatistics2/referencedPropertyGraphs/referenced_property_graph": referenced_property_graph
5850658510
"/bigquery:v2/JobStatistics2/referencedRoutines": referenced_routines
5850758511
"/bigquery:v2/JobStatistics2/referencedRoutines/referenced_routine": referenced_routine
5850858512
"/bigquery:v2/JobStatistics2/referencedTables": referenced_tables
@@ -58711,6 +58715,10 @@
5871158715
"/bigquery:v2/ProjectList/totalItems": total_items
5871258716
"/bigquery:v2/ProjectReference": project_reference
5871358717
"/bigquery:v2/ProjectReference/projectId": project_id
58718+
"/bigquery:v2/PropertyGraphReference": property_graph_reference
58719+
"/bigquery:v2/PropertyGraphReference/datasetId": dataset_id
58720+
"/bigquery:v2/PropertyGraphReference/projectId": project_id
58721+
"/bigquery:v2/PropertyGraphReference/propertyGraphId": property_graph_id
5871458722
"/bigquery:v2/PruningStats": pruning_stats
5871558723
"/bigquery:v2/PruningStats/postCmetaPruningParallelInputCount": post_cmeta_pruning_parallel_input_count
5871658724
"/bigquery:v2/PruningStats/postCmetaPruningPartitionCount": post_cmeta_pruning_partition_count

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.100.0 (2026-03-15)
4+
5+
* Regenerated from discovery document revision 20260224
6+
37
### v0.99.0 (2026-03-01)
48

59
* Regenerated from discovery document revision 20260211

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

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2571,6 +2571,16 @@ class DmlStatistics
25712571
# @return [Fixnum]
25722572
attr_accessor :deleted_row_count
25732573

2574+
# Output only. DML mode used.
2575+
# Corresponds to the JSON property `dmlMode`
2576+
# @return [String]
2577+
attr_accessor :dml_mode
2578+
2579+
# Output only. Reason for disabling fine-grained DML if applicable.
2580+
# Corresponds to the JSON property `fineGrainedDmlUnusedReason`
2581+
# @return [String]
2582+
attr_accessor :fine_grained_dml_unused_reason
2583+
25742584
# Output only. Number of inserted Rows. Populated by DML INSERT and MERGE
25752585
# statements
25762586
# Corresponds to the JSON property `insertedRowCount`
@@ -2590,6 +2600,8 @@ def initialize(**args)
25902600
# Update properties of this object
25912601
def update!(**args)
25922602
@deleted_row_count = args[:deleted_row_count] if args.key?(:deleted_row_count)
2603+
@dml_mode = args[:dml_mode] if args.key?(:dml_mode)
2604+
@fine_grained_dml_unused_reason = args[:fine_grained_dml_unused_reason] if args.key?(:fine_grained_dml_unused_reason)
25932605
@inserted_row_count = args[:inserted_row_count] if args.key?(:inserted_row_count)
25942606
@updated_row_count = args[:updated_row_count] if args.key?(:updated_row_count)
25952607
end
@@ -6186,6 +6198,12 @@ class JobStatistics2
61866198
# @return [Array<Google::Apis::BigqueryV2::ExplainQueryStage>]
61876199
attr_accessor :query_plan
61886200

6201+
# Output only. Referenced property graphs for the job. Queries that reference
6202+
# more than 50 property graphs will not have a complete list.
6203+
# Corresponds to the JSON property `referencedPropertyGraphs`
6204+
# @return [Array<Google::Apis::BigqueryV2::PropertyGraphReference>]
6205+
attr_accessor :referenced_property_graphs
6206+
61896207
# Output only. Referenced routines for the job.
61906208
# Corresponds to the JSON property `referencedRoutines`
61916209
# @return [Array<Google::Apis::BigqueryV2::RoutineReference>]
@@ -6408,6 +6426,7 @@ def update!(**args)
64086426
@performance_insights = args[:performance_insights] if args.key?(:performance_insights)
64096427
@query_info = args[:query_info] if args.key?(:query_info)
64106428
@query_plan = args[:query_plan] if args.key?(:query_plan)
6429+
@referenced_property_graphs = args[:referenced_property_graphs] if args.key?(:referenced_property_graphs)
64116430
@referenced_routines = args[:referenced_routines] if args.key?(:referenced_routines)
64126431
@referenced_tables = args[:referenced_tables] if args.key?(:referenced_tables)
64136432
@reservation_usage = args[:reservation_usage] if args.key?(:reservation_usage)
@@ -7786,6 +7805,38 @@ def update!(**args)
77867805
end
77877806
end
77887807

7808+
# Id path of a property graph.
7809+
class PropertyGraphReference
7810+
include Google::Apis::Core::Hashable
7811+
7812+
# Required. The ID of the dataset containing this property graph.
7813+
# Corresponds to the JSON property `datasetId`
7814+
# @return [String]
7815+
attr_accessor :dataset_id
7816+
7817+
# Required. The ID of the project containing this property graph.
7818+
# Corresponds to the JSON property `projectId`
7819+
# @return [String]
7820+
attr_accessor :project_id
7821+
7822+
# Required. The ID of the property graph. The ID must contain only letters (a-z,
7823+
# A-Z), numbers (0-9), or underscores (_). The maximum length is 256 characters.
7824+
# Corresponds to the JSON property `propertyGraphId`
7825+
# @return [String]
7826+
attr_accessor :property_graph_id
7827+
7828+
def initialize(**args)
7829+
update!(**args)
7830+
end
7831+
7832+
# Update properties of this object
7833+
def update!(**args)
7834+
@dataset_id = args[:dataset_id] if args.key?(:dataset_id)
7835+
@project_id = args[:project_id] if args.key?(:project_id)
7836+
@property_graph_id = args[:property_graph_id] if args.key?(:property_graph_id)
7837+
end
7838+
end
7839+
77897840
# The column metadata index pruning statistics.
77907841
class PruningStats
77917842
include Google::Apis::Core::Hashable

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.99.0"
19+
GEM_VERSION = "0.100.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 = "20260211"
25+
REVISION = "20260224"
2626
end
2727
end
2828
end

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

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -892,6 +892,12 @@ class Representation < Google::Apis::Core::JsonRepresentation; end
892892
include Google::Apis::Core::JsonObjectSupport
893893
end
894894

895+
class PropertyGraphReference
896+
class Representation < Google::Apis::Core::JsonRepresentation; end
897+
898+
include Google::Apis::Core::JsonObjectSupport
899+
end
900+
895901
class PruningStats
896902
class Representation < Google::Apis::Core::JsonRepresentation; end
897903

@@ -1983,6 +1989,8 @@ class DmlStatistics
19831989
# @private
19841990
class Representation < Google::Apis::Core::JsonRepresentation
19851991
property :deleted_row_count, :numeric_string => true, as: 'deletedRowCount'
1992+
property :dml_mode, as: 'dmlMode'
1993+
property :fine_grained_dml_unused_reason, as: 'fineGrainedDmlUnusedReason'
19861994
property :inserted_row_count, :numeric_string => true, as: 'insertedRowCount'
19871995
property :updated_row_count, :numeric_string => true, as: 'updatedRowCount'
19881996
end
@@ -2839,6 +2847,8 @@ class Representation < Google::Apis::Core::JsonRepresentation
28392847

28402848
collection :query_plan, as: 'queryPlan', class: Google::Apis::BigqueryV2::ExplainQueryStage, decorator: Google::Apis::BigqueryV2::ExplainQueryStage::Representation
28412849

2850+
collection :referenced_property_graphs, as: 'referencedPropertyGraphs', class: Google::Apis::BigqueryV2::PropertyGraphReference, decorator: Google::Apis::BigqueryV2::PropertyGraphReference::Representation
2851+
28422852
collection :referenced_routines, as: 'referencedRoutines', class: Google::Apis::BigqueryV2::RoutineReference, decorator: Google::Apis::BigqueryV2::RoutineReference::Representation
28432853

28442854
collection :referenced_tables, as: 'referencedTables', class: Google::Apis::BigqueryV2::TableReference, decorator: Google::Apis::BigqueryV2::TableReference::Representation
@@ -3244,6 +3254,15 @@ class Representation < Google::Apis::Core::JsonRepresentation
32443254
end
32453255
end
32463256

3257+
class PropertyGraphReference
3258+
# @private
3259+
class Representation < Google::Apis::Core::JsonRepresentation
3260+
property :dataset_id, as: 'datasetId'
3261+
property :project_id, as: 'projectId'
3262+
property :property_graph_id, as: 'propertyGraphId'
3263+
end
3264+
end
3265+
32473266
class PruningStats
32483267
# @private
32493268
class Representation < Google::Apis::Core::JsonRepresentation

0 commit comments

Comments
 (0)