google-apis-bigquery_v2 0.67.0 → 0.68.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 99bd062a3aeb1b6dca6faebfe0f1d83cd93a2376d4ca52a919b0ffc12c56b1cf
4
- data.tar.gz: b14edccafb3e5ebb04b26f64c348cc2e16f722f1eb872faed30e92270030839d
3
+ metadata.gz: 3497b0da4f58e593d9ae0ff306fdc0189354c8a1ec6aaae9fe66bf10ddcd7871
4
+ data.tar.gz: 03d4e435aaa92261d3d5b54a68470501de8b8b1357815daafc5151d3575dd828
5
5
  SHA512:
6
- metadata.gz: 9ae554e8caf0ecfc4085b50d2d0a236ba81f4579e5c3db807f32dfc0c855374bf9d1785bb0bbfa181cb7d6564044ce22514b9479c20afe4fa91a3e1fa5a59784
7
- data.tar.gz: 9406a3a06d087de3d050175aa50223a9616353b84dc1361ff441e188a1d2baec0341ae98f3b8031501ca0b5c16a201b66faf662042a234706178d5704ff4f37d
6
+ metadata.gz: 2ab69a7d89e1238308c0b3d8c7b3b8a694bc0fd1aa511b169ab0aefcc87467ef0a08d344faec763e1a166dd5d040d25788a78f9968541398389057c6459f6785
7
+ data.tar.gz: 4e61deb12cf4e295fceacf5805429e529a3ea0f894a53974505df97e5095ac90b6f134c91858fccf632d09a07ac75feb40443f768778b8a337c451e5a443b15a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-bigquery_v2
2
2
 
3
+ ### v0.68.0 (2024-04-28)
4
+
5
+ * Regenerated from discovery document revision 20240418
6
+
3
7
  ### v0.67.0 (2024-03-31)
4
8
 
5
9
  * Regenerated from discovery document revision 20240323
@@ -1564,7 +1564,12 @@ module Google
1564
1564
  # @return [String]
1565
1565
  attr_accessor :field_delimiter
1566
1566
 
1567
- # [Optional] A custom string that will represent a NULL value in CSV import data.
1567
+ # Optional. Specifies a string that represents a null value in a CSV file. For
1568
+ # example, if you specify "\N", BigQuery interprets "\N" as a null value when
1569
+ # querying a CSV file. The default value is the empty string. If you set this
1570
+ # property to a custom value, BigQuery throws an error if an empty string is
1571
+ # present for all data types except for STRING and BYTE. For STRING and BYTE
1572
+ # columns, BigQuery interprets the empty string as an empty value.
1568
1573
  # Corresponds to the JSON property `nullMarker`
1569
1574
  # @return [String]
1570
1575
  attr_accessor :null_marker
@@ -1862,6 +1867,14 @@ module Google
1862
1867
  # @return [Fixnum]
1863
1868
  attr_accessor :max_time_travel_hours
1864
1869
 
1870
+ # Optional. Output only. Restriction config for all tables and dataset. If set,
1871
+ # restrict certain accesses on the dataset and all its tables based on the
1872
+ # config. See [Data egress](/bigquery/docs/analytics-hub-introduction#
1873
+ # data_egress) for more details.
1874
+ # Corresponds to the JSON property `restrictions`
1875
+ # @return [Google::Apis::BigqueryV2::RestrictionConfig]
1876
+ attr_accessor :restrictions
1877
+
1865
1878
  # Output only. Reserved for future use.
1866
1879
  # Corresponds to the JSON property `satisfiesPzi`
1867
1880
  # @return [Boolean]
@@ -1893,8 +1906,7 @@ module Google
1893
1906
  # Output only. Same as `type` in `ListFormatDataset`. The type of the dataset,
1894
1907
  # one of: * DEFAULT - only accessible by owner and authorized accounts, * PUBLIC
1895
1908
  # - accessible by everyone, * LINKED - linked dataset, * EXTERNAL - dataset with
1896
- # definition in external metadata catalog. -- *BIGLAKE_METASTORE - dataset that
1897
- # references a database created in BigLakeMetastore service. --
1909
+ # definition in external metadata catalog.
1898
1910
  # Corresponds to the JSON property `type`
1899
1911
  # @return [String]
1900
1912
  attr_accessor :type
@@ -1927,6 +1939,7 @@ module Google
1927
1939
  @linked_dataset_source = args[:linked_dataset_source] if args.key?(:linked_dataset_source)
1928
1940
  @location = args[:location] if args.key?(:location)
1929
1941
  @max_time_travel_hours = args[:max_time_travel_hours] if args.key?(:max_time_travel_hours)
1942
+ @restrictions = args[:restrictions] if args.key?(:restrictions)
1930
1943
  @satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
1931
1944
  @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
1932
1945
  @self_link = args[:self_link] if args.key?(:self_link)
@@ -2275,6 +2288,15 @@ module Google
2275
2288
  # @return [Float]
2276
2289
  attr_accessor :delta_budget
2277
2290
 
2291
+ # Output only. The delta budget remaining. If budget is exhausted, no more
2292
+ # queries are allowed. Note that the budget for queries that are in progress is
2293
+ # deducted before the query executes. If the query fails or is cancelled then
2294
+ # the budget is refunded. In this case the amount of budget remaining can
2295
+ # increase.
2296
+ # Corresponds to the JSON property `deltaBudgetRemaining`
2297
+ # @return [Float]
2298
+ attr_accessor :delta_budget_remaining
2299
+
2278
2300
  # Optional. The delta value that is used per query. Delta represents the
2279
2301
  # probability that any row will fail to be epsilon differentially private.
2280
2302
  # Indicates the risk associated with exposing aggregate rows in the result of a
@@ -2298,6 +2320,15 @@ module Google
2298
2320
  # @return [Float]
2299
2321
  attr_accessor :epsilon_budget
2300
2322
 
2323
+ # Output only. The epsilon budget remaining. If budget is exhausted, no more
2324
+ # queries are allowed. Note that the budget for queries that are in progress is
2325
+ # deducted before the query executes. If the query fails or is cancelled then
2326
+ # the budget is refunded. In this case the amount of budget remaining can
2327
+ # increase.
2328
+ # Corresponds to the JSON property `epsilonBudgetRemaining`
2329
+ # @return [Float]
2330
+ attr_accessor :epsilon_budget_remaining
2331
+
2301
2332
  # Optional. The maximum epsilon value that a query can consume. If the
2302
2333
  # subscriber specifies epsilon as a parameter in a SELECT query, it must be less
2303
2334
  # than or equal to this value. The epsilon parameter controls the amount of
@@ -2328,8 +2359,10 @@ module Google
2328
2359
  # Update properties of this object
2329
2360
  def update!(**args)
2330
2361
  @delta_budget = args[:delta_budget] if args.key?(:delta_budget)
2362
+ @delta_budget_remaining = args[:delta_budget_remaining] if args.key?(:delta_budget_remaining)
2331
2363
  @delta_per_query = args[:delta_per_query] if args.key?(:delta_per_query)
2332
2364
  @epsilon_budget = args[:epsilon_budget] if args.key?(:epsilon_budget)
2365
+ @epsilon_budget_remaining = args[:epsilon_budget_remaining] if args.key?(:epsilon_budget_remaining)
2333
2366
  @max_epsilon_per_query = args[:max_epsilon_per_query] if args.key?(:max_epsilon_per_query)
2334
2367
  @max_groups_contributed = args[:max_groups_contributed] if args.key?(:max_groups_contributed)
2335
2368
  @privacy_unit_column = args[:privacy_unit_column] if args.key?(:privacy_unit_column)
@@ -3311,6 +3344,26 @@ module Google
3311
3344
  end
3312
3345
  end
3313
3346
 
3347
+ # Metadata about the foreign data type definition such as the system in which
3348
+ # the type is defined.
3349
+ class ForeignTypeInfo
3350
+ include Google::Apis::Core::Hashable
3351
+
3352
+ # Required. Specifies the system which defines the foreign data type.
3353
+ # Corresponds to the JSON property `typeSystem`
3354
+ # @return [String]
3355
+ attr_accessor :type_system
3356
+
3357
+ def initialize(**args)
3358
+ update!(**args)
3359
+ end
3360
+
3361
+ # Update properties of this object
3362
+ def update!(**args)
3363
+ @type_system = args[:type_system] if args.key?(:type_system)
3364
+ end
3365
+ end
3366
+
3314
3367
  # Request message for `GetIamPolicy` method.
3315
3368
  class GetIamPolicyRequest
3316
3369
  include Google::Apis::Core::Hashable
@@ -4415,15 +4468,15 @@ module Google
4415
4468
  # @return [Array<Google::Apis::BigqueryV2::ConnectionProperty>]
4416
4469
  attr_accessor :connection_properties
4417
4470
 
4418
- # Optional. [Experimental] Configures the load job to only copy files to the
4419
- # destination BigLake managed table with an external storage_uri, without
4420
- # reading file content and writing them to new files. Copying files only is
4421
- # supported when: * source_uris are in the same external storage system as the
4422
- # destination table but they do not overlap with storage_uri of the destination
4423
- # table. * source_format is the same file format as the destination table. *
4424
- # destination_table is an existing BigLake managed table. Its schema does not
4425
- # have default value expression. It schema does not have type parameters other
4426
- # than precision and scale. * No options other than the above are specified.
4471
+ # Optional. [Experimental] Configures the load job to copy files directly to the
4472
+ # destination BigLake managed table, bypassing file content reading and
4473
+ # rewriting. Copying files only is supported when all the following are true: * `
4474
+ # source_uris` are located in the same Cloud Storage location as the destination
4475
+ # table's `storage_uri` location. * `source_format` is `PARQUET`. * `
4476
+ # destination_table` is an existing BigLake managed table. The table's schema
4477
+ # does not have flexible column names. The table's columns do not have type
4478
+ # parameters other than precision and scale. * No options other than the above
4479
+ # are specified.
4427
4480
  # Corresponds to the JSON property `copyFilesOnly`
4428
4481
  # @return [Boolean]
4429
4482
  attr_accessor :copy_files_only
@@ -5408,7 +5461,8 @@ module Google
5408
5461
  class ReservationUsage
5409
5462
  include Google::Apis::Core::Hashable
5410
5463
 
5411
- # Reservation name or "unreserved" for on-demand resources usage.
5464
+ # Reservation name or "unreserved" for on-demand resource usage and multi-
5465
+ # statement queries.
5412
5466
  # Corresponds to the JSON property `name`
5413
5467
  # @return [String]
5414
5468
  attr_accessor :name
@@ -5812,7 +5866,8 @@ module Google
5812
5866
  class ReservationUsage
5813
5867
  include Google::Apis::Core::Hashable
5814
5868
 
5815
- # Reservation name or "unreserved" for on-demand resources usage.
5869
+ # Reservation name or "unreserved" for on-demand resource usage and multi-
5870
+ # statement queries.
5816
5871
  # Corresponds to the JSON property `name`
5817
5872
  # @return [String]
5818
5873
  attr_accessor :name
@@ -6277,8 +6332,8 @@ module Google
6277
6332
  class MaterializedViewDefinition
6278
6333
  include Google::Apis::Core::Hashable
6279
6334
 
6280
- # Optional. This option declares authors intention to construct a materialized
6281
- # view that will not be refreshed incrementally.
6335
+ # Optional. This option declares the intention to construct a materialized view
6336
+ # that isn't refreshed incrementally.
6282
6337
  # Corresponds to the JSON property `allowNonIncrementalDefinition`
6283
6338
  # @return [Boolean]
6284
6339
  attr_accessor :allow_non_incremental_definition
@@ -6769,6 +6824,11 @@ module Google
6769
6824
  attr_accessor :enum_as_string
6770
6825
  alias_method :enum_as_string?, :enum_as_string
6771
6826
 
6827
+ # Optional. Will indicate how to represent a parquet map if present.
6828
+ # Corresponds to the JSON property `mapTargetType`
6829
+ # @return [String]
6830
+ attr_accessor :map_target_type
6831
+
6772
6832
  def initialize(**args)
6773
6833
  update!(**args)
6774
6834
  end
@@ -6777,6 +6837,7 @@ module Google
6777
6837
  def update!(**args)
6778
6838
  @enable_list_inference = args[:enable_list_inference] if args.key?(:enable_list_inference)
6779
6839
  @enum_as_string = args[:enum_as_string] if args.key?(:enum_as_string)
6840
+ @map_target_type = args[:map_target_type] if args.key?(:map_target_type)
6780
6841
  end
6781
6842
  end
6782
6843
 
@@ -7956,6 +8017,25 @@ module Google
7956
8017
  end
7957
8018
  end
7958
8019
 
8020
+ #
8021
+ class RestrictionConfig
8022
+ include Google::Apis::Core::Hashable
8023
+
8024
+ # Output only. Specifies the type of dataset/table restriction.
8025
+ # Corresponds to the JSON property `type`
8026
+ # @return [String]
8027
+ attr_accessor :type
8028
+
8029
+ def initialize(**args)
8030
+ update!(**args)
8031
+ end
8032
+
8033
+ # Update properties of this object
8034
+ def update!(**args)
8035
+ @type = args[:type] if args.key?(:type)
8036
+ end
8037
+ end
8038
+
7959
8039
  # A user-defined function or a stored procedure.
7960
8040
  class Routine
7961
8041
  include Google::Apis::Core::Hashable
@@ -9321,6 +9401,13 @@ module Google
9321
9401
  # @return [Hash<String,String>]
9322
9402
  attr_accessor :resource_tags
9323
9403
 
9404
+ # Optional. Output only. Restriction config for table. If set, restrict certain
9405
+ # accesses on the table based on the config. See [Data egress](/bigquery/docs/
9406
+ # analytics-hub-introduction#data_egress) for more details.
9407
+ # Corresponds to the JSON property `restrictions`
9408
+ # @return [Google::Apis::BigqueryV2::RestrictionConfig]
9409
+ attr_accessor :restrictions
9410
+
9324
9411
  # Schema of a table
9325
9412
  # Corresponds to the JSON property `schema`
9326
9413
  # @return [Google::Apis::BigqueryV2::TableSchema]
@@ -9426,6 +9513,7 @@ module Google
9426
9513
  @replicas = args[:replicas] if args.key?(:replicas)
9427
9514
  @require_partition_filter = args[:require_partition_filter] if args.key?(:require_partition_filter)
9428
9515
  @resource_tags = args[:resource_tags] if args.key?(:resource_tags)
9516
+ @restrictions = args[:restrictions] if args.key?(:restrictions)
9429
9517
  @schema = args[:schema] if args.key?(:schema)
9430
9518
  @self_link = args[:self_link] if args.key?(:self_link)
9431
9519
  @snapshot_definition = args[:snapshot_definition] if args.key?(:snapshot_definition)
@@ -9809,6 +9897,12 @@ module Google
9809
9897
  # @return [Array<Google::Apis::BigqueryV2::TableFieldSchema>]
9810
9898
  attr_accessor :fields
9811
9899
 
9900
+ # Optional. Definition of the foreign data type. Only valid for top-level schema
9901
+ # fields (not nested fields). If the type is FOREIGN, this field is required.
9902
+ # Corresponds to the JSON property `foreignTypeDefinition`
9903
+ # @return [String]
9904
+ attr_accessor :foreign_type_definition
9905
+
9812
9906
  # Optional. Maximum length of values of this field for STRINGS or BYTES. If
9813
9907
  # max_length is not specified, no maximum length constraint is imposed on this
9814
9908
  # field. If type = "STRING", then max_length represents the maximum UTF-8 length
@@ -9894,6 +9988,7 @@ module Google
9894
9988
  @default_value_expression = args[:default_value_expression] if args.key?(:default_value_expression)
9895
9989
  @description = args[:description] if args.key?(:description)
9896
9990
  @fields = args[:fields] if args.key?(:fields)
9991
+ @foreign_type_definition = args[:foreign_type_definition] if args.key?(:foreign_type_definition)
9897
9992
  @max_length = args[:max_length] if args.key?(:max_length)
9898
9993
  @mode = args[:mode] if args.key?(:mode)
9899
9994
  @name = args[:name] if args.key?(:name)
@@ -10281,6 +10376,12 @@ module Google
10281
10376
  # @return [Array<Google::Apis::BigqueryV2::TableFieldSchema>]
10282
10377
  attr_accessor :fields
10283
10378
 
10379
+ # Metadata about the foreign data type definition such as the system in which
10380
+ # the type is defined.
10381
+ # Corresponds to the JSON property `foreignTypeInfo`
10382
+ # @return [Google::Apis::BigqueryV2::ForeignTypeInfo]
10383
+ attr_accessor :foreign_type_info
10384
+
10284
10385
  def initialize(**args)
10285
10386
  update!(**args)
10286
10387
  end
@@ -10288,6 +10389,7 @@ module Google
10288
10389
  # Update properties of this object
10289
10390
  def update!(**args)
10290
10391
  @fields = args[:fields] if args.key?(:fields)
10392
+ @foreign_type_info = args[:foreign_type_info] if args.key?(:foreign_type_info)
10291
10393
  end
10292
10394
  end
10293
10395
 
@@ -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.67.0"
19
+ GEM_VERSION = "0.68.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240323"
25
+ REVISION = "20240418"
26
26
  end
27
27
  end
28
28
  end
@@ -430,6 +430,12 @@ module Google
430
430
  include Google::Apis::Core::JsonObjectSupport
431
431
  end
432
432
 
433
+ class ForeignTypeInfo
434
+ class Representation < Google::Apis::Core::JsonRepresentation; end
435
+
436
+ include Google::Apis::Core::JsonObjectSupport
437
+ end
438
+
433
439
  class GetIamPolicyRequest
434
440
  class Representation < Google::Apis::Core::JsonRepresentation; end
435
441
 
@@ -934,6 +940,12 @@ module Google
934
940
  include Google::Apis::Core::JsonObjectSupport
935
941
  end
936
942
 
943
+ class RestrictionConfig
944
+ class Representation < Google::Apis::Core::JsonRepresentation; end
945
+
946
+ include Google::Apis::Core::JsonObjectSupport
947
+ end
948
+
937
949
  class Routine
938
950
  class Representation < Google::Apis::Core::JsonRepresentation; end
939
951
 
@@ -1754,6 +1766,8 @@ module Google
1754
1766
 
1755
1767
  property :location, as: 'location'
1756
1768
  property :max_time_travel_hours, :numeric_string => true, as: 'maxTimeTravelHours'
1769
+ property :restrictions, as: 'restrictions', class: Google::Apis::BigqueryV2::RestrictionConfig, decorator: Google::Apis::BigqueryV2::RestrictionConfig::Representation
1770
+
1757
1771
  property :satisfies_pzi, as: 'satisfiesPzi'
1758
1772
  property :satisfies_pzs, as: 'satisfiesPzs'
1759
1773
  property :self_link, as: 'selfLink'
@@ -1847,8 +1861,10 @@ module Google
1847
1861
  # @private
1848
1862
  class Representation < Google::Apis::Core::JsonRepresentation
1849
1863
  property :delta_budget, as: 'deltaBudget'
1864
+ property :delta_budget_remaining, as: 'deltaBudgetRemaining'
1850
1865
  property :delta_per_query, as: 'deltaPerQuery'
1851
1866
  property :epsilon_budget, as: 'epsilonBudget'
1867
+ property :epsilon_budget_remaining, as: 'epsilonBudgetRemaining'
1852
1868
  property :max_epsilon_per_query, as: 'maxEpsilonPerQuery'
1853
1869
  property :max_groups_contributed, :numeric_string => true, as: 'maxGroupsContributed'
1854
1870
  property :privacy_unit_column, as: 'privacyUnitColumn'
@@ -2095,6 +2111,13 @@ module Google
2095
2111
  end
2096
2112
  end
2097
2113
 
2114
+ class ForeignTypeInfo
2115
+ # @private
2116
+ class Representation < Google::Apis::Core::JsonRepresentation
2117
+ property :type_system, as: 'typeSystem'
2118
+ end
2119
+ end
2120
+
2098
2121
  class GetIamPolicyRequest
2099
2122
  # @private
2100
2123
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2950,6 +2973,7 @@ module Google
2950
2973
  class Representation < Google::Apis::Core::JsonRepresentation
2951
2974
  property :enable_list_inference, as: 'enableListInference'
2952
2975
  property :enum_as_string, as: 'enumAsString'
2976
+ property :map_target_type, as: 'mapTargetType'
2953
2977
  end
2954
2978
  end
2955
2979
 
@@ -3247,6 +3271,13 @@ module Google
3247
3271
  end
3248
3272
  end
3249
3273
 
3274
+ class RestrictionConfig
3275
+ # @private
3276
+ class Representation < Google::Apis::Core::JsonRepresentation
3277
+ property :type, as: 'type'
3278
+ end
3279
+ end
3280
+
3250
3281
  class Routine
3251
3282
  # @private
3252
3283
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3594,6 +3625,8 @@ module Google
3594
3625
 
3595
3626
  property :require_partition_filter, as: 'requirePartitionFilter'
3596
3627
  hash :resource_tags, as: 'resourceTags'
3628
+ property :restrictions, as: 'restrictions', class: Google::Apis::BigqueryV2::RestrictionConfig, decorator: Google::Apis::BigqueryV2::RestrictionConfig::Representation
3629
+
3597
3630
  property :schema, as: 'schema', class: Google::Apis::BigqueryV2::TableSchema, decorator: Google::Apis::BigqueryV2::TableSchema::Representation
3598
3631
 
3599
3632
  property :self_link, as: 'selfLink'
@@ -3728,6 +3761,7 @@ module Google
3728
3761
  property :description, as: 'description'
3729
3762
  collection :fields, as: 'fields', class: Google::Apis::BigqueryV2::TableFieldSchema, decorator: Google::Apis::BigqueryV2::TableFieldSchema::Representation
3730
3763
 
3764
+ property :foreign_type_definition, as: 'foreignTypeDefinition'
3731
3765
  property :max_length, :numeric_string => true, as: 'maxLength'
3732
3766
  property :mode, as: 'mode'
3733
3767
  property :name, as: 'name'
@@ -3854,6 +3888,8 @@ module Google
3854
3888
  class Representation < Google::Apis::Core::JsonRepresentation
3855
3889
  collection :fields, as: 'fields', class: Google::Apis::BigqueryV2::TableFieldSchema, decorator: Google::Apis::BigqueryV2::TableFieldSchema::Representation
3856
3890
 
3891
+ property :foreign_type_info, as: 'foreignTypeInfo', class: Google::Apis::BigqueryV2::ForeignTypeInfo, decorator: Google::Apis::BigqueryV2::ForeignTypeInfo::Representation
3892
+
3857
3893
  end
3858
3894
  end
3859
3895
 
@@ -169,7 +169,7 @@ module Google
169
169
  # An expression for filtering the results of the request by label. The syntax is
170
170
  # \"labels.<name>[:<value>]\". Multiple filters can be ANDed together by
171
171
  # connecting with a space. Example: \"labels.department:receiving labels.active\"
172
- # . See [Filtering datasets using labels](/bigquery/docs/labeling-datasets#
172
+ # . See [Filtering datasets using labels](/bigquery/docs/filtering-labels#
173
173
  # filtering_datasets_using_labels) for details.
174
174
  # @param [Fixnum] max_results
175
175
  # The maximum number of results to return in a single response page. Leverage
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.67.0
4
+ version: 0.68.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: 2024-03-31 00:00:00.000000000 Z
11
+ date: 2024-04-28 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.67.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-bigquery_v2/v0.68.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: []