google-apis-bigquery_v2 0.40.0 → 0.41.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: 6b75a89dfc8297544e2d34afaaf5a077f387b71f866505e38c652baf8a3dcdf0
4
- data.tar.gz: c5eb6f1af719af2126cc63a8e82f9baf416811befb795f6dc82ccc7b10850168
3
+ metadata.gz: 6ac9abf5b5482e69b800162ba11b4f88f0cd3647f536376b87e95c133a9e7197
4
+ data.tar.gz: dcfbd1acf6fe2aed2360e679b3ecf2141b682715d81aba561c53bbe7a92103e3
5
5
  SHA512:
6
- metadata.gz: 3b578e7b2ca1001b9d9d9bbae0fe321a8e243451f1803ba4ea24bc08d76baeff71a8819784e7410dc6e54c01f32db9ed1e7d62af3bfbcf7acabb8acb5c99cb7b
7
- data.tar.gz: 11378b2b1dbd5656e706583851b72a51121d4d069f013bc90cc48403b200a94b22001445373b0f035e41481cd077d75743563c5764831ed0ba41c7b4615036bb
6
+ metadata.gz: e730ab952f21a6bf456111e57d327ae75f63950edd54a3be73af9cee190b2dbf45b0be80d5e503e1eba9fbeeba85cdeab51cd27590dc2626ec57c1ae4eab9b04
7
+ data.tar.gz: 2ca12dc4c0847007d6cbef236826f789d027843588c6013b3d91672e3f63ca844bd466becbf96bc2ff955e18e45d484aadd7b800f69fc3a2a319d6751ebfc543
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-bigquery_v2
2
2
 
3
+ ### v0.41.0 (2022-09-22)
4
+
5
+ * Regenerated from discovery document revision 20220913
6
+ * Regenerated using generator version 0.10.0
7
+
3
8
  ### v0.40.0 (2022-09-10)
4
9
 
5
10
  * Regenerated from discovery document revision 20220903
@@ -1499,6 +1499,30 @@ module Google
1499
1499
  end
1500
1500
  end
1501
1501
 
1502
+ #
1503
+ class DataMaskingStatistics
1504
+ include Google::Apis::Core::Hashable
1505
+
1506
+ # [Output-only] [Preview] Whether any accessed data was protected by data
1507
+ # masking. The actual evaluation is done by accessStats.masked_field_count > 0.
1508
+ # Since this is only used for the discovery_doc generation purpose, as long as
1509
+ # the type (boolean) matches, client library can leverage this. The actual
1510
+ # evaluation of the variable is done else-where.
1511
+ # Corresponds to the JSON property `dataMaskingApplied`
1512
+ # @return [Boolean]
1513
+ attr_accessor :data_masking_applied
1514
+ alias_method :data_masking_applied?, :data_masking_applied
1515
+
1516
+ def initialize(**args)
1517
+ update!(**args)
1518
+ end
1519
+
1520
+ # Update properties of this object
1521
+ def update!(**args)
1522
+ @data_masking_applied = args[:data_masking_applied] if args.key?(:data_masking_applied)
1523
+ end
1524
+ end
1525
+
1502
1526
  # Data split result. This contains references to the training and evaluation
1503
1527
  # data tables that were used to train the model.
1504
1528
  class DataSplitResult
@@ -3759,6 +3783,14 @@ module Google
3759
3783
  # @return [String]
3760
3784
  attr_accessor :create_disposition
3761
3785
 
3786
+ # If true, creates a new session, where session id will be a server generated
3787
+ # random id. If false, runs query with an existing session_id passed in
3788
+ # ConnectionProperty, otherwise runs the load job in non-session mode.
3789
+ # Corresponds to the JSON property `createSession`
3790
+ # @return [Boolean]
3791
+ attr_accessor :create_session
3792
+ alias_method :create_session?, :create_session
3793
+
3762
3794
  # [Optional] Defines the list of possible SQL data types to which the source
3763
3795
  # decimal values are converted. This list and the precision and the scale
3764
3796
  # parameters of the decimal field determine the target type. In the order of
@@ -3997,6 +4029,7 @@ module Google
3997
4029
  @clustering = args[:clustering] if args.key?(:clustering)
3998
4030
  @connection_properties = args[:connection_properties] if args.key?(:connection_properties)
3999
4031
  @create_disposition = args[:create_disposition] if args.key?(:create_disposition)
4032
+ @create_session = args[:create_session] if args.key?(:create_session)
4000
4033
  @decimal_target_types = args[:decimal_target_types] if args.key?(:decimal_target_types)
4001
4034
  @destination_encryption_configuration = args[:destination_encryption_configuration] if args.key?(:destination_encryption_configuration)
4002
4035
  @destination_table = args[:destination_table] if args.key?(:destination_table)
@@ -4478,6 +4511,12 @@ module Google
4478
4511
  # @return [Fixnum]
4479
4512
  attr_accessor :creation_time
4480
4513
 
4514
+ # [Output-only] Statistics for data masking. Present only for query and extract
4515
+ # jobs.
4516
+ # Corresponds to the JSON property `dataMaskingStatistics`
4517
+ # @return [Google::Apis::BigqueryV2::DataMaskingStatistics]
4518
+ attr_accessor :data_masking_statistics
4519
+
4481
4520
  # [Output-only] End time of this job, in milliseconds since the epoch. This
4482
4521
  # field will be present whenever a job is in the DONE state.
4483
4522
  # Corresponds to the JSON property `endTime`
@@ -4575,6 +4614,7 @@ module Google
4575
4614
  @completion_ratio = args[:completion_ratio] if args.key?(:completion_ratio)
4576
4615
  @copy = args[:copy] if args.key?(:copy)
4577
4616
  @creation_time = args[:creation_time] if args.key?(:creation_time)
4617
+ @data_masking_statistics = args[:data_masking_statistics] if args.key?(:data_masking_statistics)
4578
4618
  @end_time = args[:end_time] if args.key?(:end_time)
4579
4619
  @extract = args[:extract] if args.key?(:extract)
4580
4620
  @load = args[:load] if args.key?(:load)
@@ -4623,29 +4663,29 @@ module Google
4623
4663
  class JobStatistics2
4624
4664
  include Google::Apis::Core::Hashable
4625
4665
 
4626
- # BI Engine specific Statistics. [Output-only] BI Engine specific Statistics.
4666
+ # BI Engine specific Statistics. [Output only] BI Engine specific Statistics.
4627
4667
  # Corresponds to the JSON property `biEngineStatistics`
4628
4668
  # @return [Google::Apis::BigqueryV2::BiEngineStatistics]
4629
4669
  attr_accessor :bi_engine_statistics
4630
4670
 
4631
- # [Output-only] Billing tier for the job.
4671
+ # [Output only] Billing tier for the job.
4632
4672
  # Corresponds to the JSON property `billingTier`
4633
4673
  # @return [Fixnum]
4634
4674
  attr_accessor :billing_tier
4635
4675
 
4636
- # [Output-only] Whether the query result was fetched from the query cache.
4676
+ # [Output only] Whether the query result was fetched from the query cache.
4637
4677
  # Corresponds to the JSON property `cacheHit`
4638
4678
  # @return [Boolean]
4639
4679
  attr_accessor :cache_hit
4640
4680
  alias_method :cache_hit?, :cache_hit
4641
4681
 
4642
- # [Output-only] [Preview] The number of row access policies affected by a DDL
4682
+ # [Output only] [Preview] The number of row access policies affected by a DDL
4643
4683
  # statement. Present only for DROP ALL ROW ACCESS POLICIES queries.
4644
4684
  # Corresponds to the JSON property `ddlAffectedRowAccessPolicyCount`
4645
4685
  # @return [Fixnum]
4646
4686
  attr_accessor :ddl_affected_row_access_policy_count
4647
4687
 
4648
- # [Output-only] The DDL destination table. Present only for ALTER TABLE RENAME
4688
+ # [Output only] The DDL destination table. Present only for ALTER TABLE RENAME
4649
4689
  # TO queries. Note that ddl_target_table is used just for its type information.
4650
4690
  # Corresponds to the JSON property `ddlDestinationTable`
4651
4691
  # @return [Google::Apis::BigqueryV2::TableReference]
@@ -4662,7 +4702,7 @@ module Google
4662
4702
  # @return [String]
4663
4703
  attr_accessor :ddl_operation_performed
4664
4704
 
4665
- # [Output-only] The DDL target dataset. Present only for CREATE/ALTER/DROP
4705
+ # [Output only] The DDL target dataset. Present only for CREATE/ALTER/DROP
4666
4706
  # SCHEMA queries.
4667
4707
  # Corresponds to the JSON property `ddlTargetDataset`
4668
4708
  # @return [Google::Apis::BigqueryV2::DatasetReference]
@@ -4674,89 +4714,89 @@ module Google
4674
4714
  # @return [Google::Apis::BigqueryV2::RoutineReference]
4675
4715
  attr_accessor :ddl_target_routine
4676
4716
 
4677
- # [Output-only] [Preview] The DDL target row access policy. Present only for
4717
+ # [Output only] [Preview] The DDL target row access policy. Present only for
4678
4718
  # CREATE/DROP ROW ACCESS POLICY queries.
4679
4719
  # Corresponds to the JSON property `ddlTargetRowAccessPolicy`
4680
4720
  # @return [Google::Apis::BigqueryV2::RowAccessPolicyReference]
4681
4721
  attr_accessor :ddl_target_row_access_policy
4682
4722
 
4683
- # [Output-only] The DDL target table. Present only for CREATE/DROP TABLE/VIEW
4723
+ # [Output only] The DDL target table. Present only for CREATE/DROP TABLE/VIEW
4684
4724
  # and DROP ALL ROW ACCESS POLICIES queries.
4685
4725
  # Corresponds to the JSON property `ddlTargetTable`
4686
4726
  # @return [Google::Apis::BigqueryV2::TableReference]
4687
4727
  attr_accessor :ddl_target_table
4688
4728
 
4689
- # [Output-only] Detailed statistics for DML statements Present only for DML
4729
+ # [Output only] Detailed statistics for DML statements Present only for DML
4690
4730
  # statements INSERT, UPDATE, DELETE or TRUNCATE.
4691
4731
  # Corresponds to the JSON property `dmlStats`
4692
4732
  # @return [Google::Apis::BigqueryV2::DmlStatistics]
4693
4733
  attr_accessor :dml_stats
4694
4734
 
4695
- # [Output-only] The original estimate of bytes processed for the job.
4735
+ # [Output only] The original estimate of bytes processed for the job.
4696
4736
  # Corresponds to the JSON property `estimatedBytesProcessed`
4697
4737
  # @return [Fixnum]
4698
4738
  attr_accessor :estimated_bytes_processed
4699
4739
 
4700
- # [Output-only] Statistics of a BigQuery ML training job.
4740
+ # [Output only] Statistics of a BigQuery ML training job.
4701
4741
  # Corresponds to the JSON property `mlStatistics`
4702
4742
  # @return [Google::Apis::BigqueryV2::MlStatistics]
4703
4743
  attr_accessor :ml_statistics
4704
4744
 
4705
- # [Output-only, Beta] Information about create model query job progress.
4745
+ # [Output only, Beta] Information about create model query job progress.
4706
4746
  # Corresponds to the JSON property `modelTraining`
4707
4747
  # @return [Google::Apis::BigqueryV2::BigQueryModelTraining]
4708
4748
  attr_accessor :model_training
4709
4749
 
4710
- # [Output-only, Beta] Deprecated; do not use.
4750
+ # [Output only, Beta] Deprecated; do not use.
4711
4751
  # Corresponds to the JSON property `modelTrainingCurrentIteration`
4712
4752
  # @return [Fixnum]
4713
4753
  attr_accessor :model_training_current_iteration
4714
4754
 
4715
- # [Output-only, Beta] Deprecated; do not use.
4755
+ # [Output only, Beta] Deprecated; do not use.
4716
4756
  # Corresponds to the JSON property `modelTrainingExpectedTotalIteration`
4717
4757
  # @return [Fixnum]
4718
4758
  attr_accessor :model_training_expected_total_iteration
4719
4759
 
4720
- # [Output-only] The number of rows affected by a DML statement. Present only for
4760
+ # [Output only] The number of rows affected by a DML statement. Present only for
4721
4761
  # DML statements INSERT, UPDATE or DELETE.
4722
4762
  # Corresponds to the JSON property `numDmlAffectedRows`
4723
4763
  # @return [Fixnum]
4724
4764
  attr_accessor :num_dml_affected_rows
4725
4765
 
4726
- # [Output-only] Describes execution plan for the query.
4766
+ # [Output only] Describes execution plan for the query.
4727
4767
  # Corresponds to the JSON property `queryPlan`
4728
4768
  # @return [Array<Google::Apis::BigqueryV2::ExplainQueryStage>]
4729
4769
  attr_accessor :query_plan
4730
4770
 
4731
- # [Output-only] Referenced routines (persistent user-defined functions and
4771
+ # [Output only] Referenced routines (persistent user-defined functions and
4732
4772
  # stored procedures) for the job.
4733
4773
  # Corresponds to the JSON property `referencedRoutines`
4734
4774
  # @return [Array<Google::Apis::BigqueryV2::RoutineReference>]
4735
4775
  attr_accessor :referenced_routines
4736
4776
 
4737
- # [Output-only] Referenced tables for the job. Queries that reference more than
4777
+ # [Output only] Referenced tables for the job. Queries that reference more than
4738
4778
  # 50 tables will not have a complete list.
4739
4779
  # Corresponds to the JSON property `referencedTables`
4740
4780
  # @return [Array<Google::Apis::BigqueryV2::TableReference>]
4741
4781
  attr_accessor :referenced_tables
4742
4782
 
4743
- # [Output-only] Job resource usage breakdown by reservation.
4783
+ # [Output only] Job resource usage breakdown by reservation.
4744
4784
  # Corresponds to the JSON property `reservationUsage`
4745
4785
  # @return [Array<Google::Apis::BigqueryV2::JobStatistics2::ReservationUsage>]
4746
4786
  attr_accessor :reservation_usage
4747
4787
 
4748
- # [Output-only] The schema of the results. Present only for successful dry run
4788
+ # [Output only] The schema of the results. Present only for successful dry run
4749
4789
  # of non-legacy SQL queries.
4750
4790
  # Corresponds to the JSON property `schema`
4751
4791
  # @return [Google::Apis::BigqueryV2::TableSchema]
4752
4792
  attr_accessor :schema
4753
4793
 
4754
- # [Output-only] Search query specific statistics.
4794
+ # [Output only] Search query specific statistics.
4755
4795
  # Corresponds to the JSON property `searchStatistics`
4756
4796
  # @return [Google::Apis::BigqueryV2::SearchStatistics]
4757
4797
  attr_accessor :search_statistics
4758
4798
 
4759
- # [Output-only] Statistics of a Spark procedure job.
4799
+ # [Output only] Statistics of a Spark procedure job.
4760
4800
  # Corresponds to the JSON property `sparkStatistics`
4761
4801
  # @return [Google::Apis::BigqueryV2::SparkStatistics]
4762
4802
  attr_accessor :spark_statistics
@@ -4781,22 +4821,22 @@ module Google
4781
4821
  # @return [String]
4782
4822
  attr_accessor :statement_type
4783
4823
 
4784
- # [Output-only] [Beta] Describes a timeline of job execution.
4824
+ # [Output only] [Beta] Describes a timeline of job execution.
4785
4825
  # Corresponds to the JSON property `timeline`
4786
4826
  # @return [Array<Google::Apis::BigqueryV2::QueryTimelineSample>]
4787
4827
  attr_accessor :timeline
4788
4828
 
4789
- # [Output-only] Total bytes billed for the job.
4829
+ # [Output only] Total bytes billed for the job.
4790
4830
  # Corresponds to the JSON property `totalBytesBilled`
4791
4831
  # @return [Fixnum]
4792
4832
  attr_accessor :total_bytes_billed
4793
4833
 
4794
- # [Output-only] Total bytes processed for the job.
4834
+ # [Output only] Total bytes processed for the job.
4795
4835
  # Corresponds to the JSON property `totalBytesProcessed`
4796
4836
  # @return [Fixnum]
4797
4837
  attr_accessor :total_bytes_processed
4798
4838
 
4799
- # [Output-only] For dry-run jobs, totalBytesProcessed is an estimate and this
4839
+ # [Output only] For dry-run jobs, totalBytesProcessed is an estimate and this
4800
4840
  # field specifies the accuracy of the estimate. Possible values can be: UNKNOWN:
4801
4841
  # accuracy of the estimate is unknown. PRECISE: estimate is precise. LOWER_BOUND:
4802
4842
  # estimate is lower bound of what the query would cost. UPPER_BOUND: estimate
@@ -4805,13 +4845,13 @@ module Google
4805
4845
  # @return [String]
4806
4846
  attr_accessor :total_bytes_processed_accuracy
4807
4847
 
4808
- # [Output-only] Total number of partitions processed from all partitioned tables
4848
+ # [Output only] Total number of partitions processed from all partitioned tables
4809
4849
  # referenced in the job.
4810
4850
  # Corresponds to the JSON property `totalPartitionsProcessed`
4811
4851
  # @return [Fixnum]
4812
4852
  attr_accessor :total_partitions_processed
4813
4853
 
4814
- # [Output-only] Slot-milliseconds for the job.
4854
+ # [Output only] Slot-milliseconds for the job.
4815
4855
  # Corresponds to the JSON property `totalSlotMs`
4816
4856
  # @return [Fixnum]
4817
4857
  attr_accessor :total_slot_ms
@@ -4866,12 +4906,12 @@ module Google
4866
4906
  class ReservationUsage
4867
4907
  include Google::Apis::Core::Hashable
4868
4908
 
4869
- # [Output-only] Reservation name or "unreserved" for on-demand resources usage.
4909
+ # [Output only] Reservation name or "unreserved" for on-demand resources usage.
4870
4910
  # Corresponds to the JSON property `name`
4871
4911
  # @return [String]
4872
4912
  attr_accessor :name
4873
4913
 
4874
- # [Output-only] Slot-milliseconds the job spent in the given reservation.
4914
+ # [Output only] Slot-milliseconds the job spent in the given reservation.
4875
4915
  # Corresponds to the JSON property `slotMs`
4876
4916
  # @return [Fixnum]
4877
4917
  attr_accessor :slot_ms
@@ -5318,8 +5358,7 @@ module Google
5318
5358
  # @return [Array<Fixnum>]
5319
5359
  attr_accessor :optimal_trial_ids
5320
5360
 
5321
- # Output only. Information for all training runs in increasing order of
5322
- # start_time.
5361
+ # Information for all training runs in increasing order of start_time.
5323
5362
  # Corresponds to the JSON property `trainingRuns`
5324
5363
  # @return [Array<Google::Apis::BigqueryV2::TrainingRun>]
5325
5364
  attr_accessor :training_runs
@@ -8612,8 +8651,8 @@ module Google
8612
8651
  class TrainingRun
8613
8652
  include Google::Apis::Core::Hashable
8614
8653
 
8615
- # Global explanation contains the explanation of top features on the class level.
8616
- # Applies to classification models only.
8654
+ # Output only. Global explanation contains the explanation of top features on
8655
+ # the class level. Applies to classification models only.
8617
8656
  # Corresponds to the JSON property `classLevelGlobalExplanations`
8618
8657
  # @return [Array<Google::Apis::BigqueryV2::GlobalExplanation>]
8619
8658
  attr_accessor :class_level_global_explanations
@@ -8636,12 +8675,12 @@ module Google
8636
8675
  # @return [Google::Apis::BigqueryV2::GlobalExplanation]
8637
8676
  attr_accessor :model_level_global_explanation
8638
8677
 
8639
- # Output of each iteration run, results.size() <= max_iterations.
8678
+ # Output only. Output of each iteration run, results.size() <= max_iterations.
8640
8679
  # Corresponds to the JSON property `results`
8641
8680
  # @return [Array<Google::Apis::BigqueryV2::IterationResult>]
8642
8681
  attr_accessor :results
8643
8682
 
8644
- # The start time of this training run.
8683
+ # Output only. The start time of this training run.
8645
8684
  # Corresponds to the JSON property `startTime`
8646
8685
  # @return [String]
8647
8686
  attr_accessor :start_time
@@ -8651,7 +8690,7 @@ module Google
8651
8690
  # @return [Google::Apis::BigqueryV2::TrainingOptions]
8652
8691
  attr_accessor :training_options
8653
8692
 
8654
- # The start time of this training run, in milliseconds since epoch.
8693
+ # Output only. The start time of this training run, in milliseconds since epoch.
8655
8694
  # Corresponds to the JSON property `trainingStartTime`
8656
8695
  # @return [Fixnum]
8657
8696
  attr_accessor :training_start_time
@@ -8661,7 +8700,8 @@ module Google
8661
8700
  # @return [String]
8662
8701
  attr_accessor :vertex_ai_model_id
8663
8702
 
8664
- # The model version in Vertex AI Model Registry for this training run
8703
+ # Output only. The model version in Vertex AI Model Registry for this training
8704
+ # run
8665
8705
  # Corresponds to the JSON property `vertexAiModelVersion`
8666
8706
  # @return [String]
8667
8707
  attr_accessor :vertex_ai_model_version
@@ -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.40.0"
19
+ GEM_VERSION = "0.41.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.9.0"
22
+ GENERATOR_VERSION = "0.10.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220903"
25
+ REVISION = "20220913"
26
26
  end
27
27
  end
28
28
  end
@@ -226,6 +226,12 @@ module Google
226
226
  include Google::Apis::Core::JsonObjectSupport
227
227
  end
228
228
 
229
+ class DataMaskingStatistics
230
+ class Representation < Google::Apis::Core::JsonRepresentation; end
231
+
232
+ include Google::Apis::Core::JsonObjectSupport
233
+ end
234
+
229
235
  class DataSplitResult
230
236
  class Representation < Google::Apis::Core::JsonRepresentation; end
231
237
 
@@ -1381,6 +1387,13 @@ module Google
1381
1387
  end
1382
1388
  end
1383
1389
 
1390
+ class DataMaskingStatistics
1391
+ # @private
1392
+ class Representation < Google::Apis::Core::JsonRepresentation
1393
+ property :data_masking_applied, as: 'dataMaskingApplied'
1394
+ end
1395
+ end
1396
+
1384
1397
  class DataSplitResult
1385
1398
  # @private
1386
1399
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1965,6 +1978,7 @@ module Google
1965
1978
  collection :connection_properties, as: 'connectionProperties', class: Google::Apis::BigqueryV2::ConnectionProperty, decorator: Google::Apis::BigqueryV2::ConnectionProperty::Representation
1966
1979
 
1967
1980
  property :create_disposition, as: 'createDisposition'
1981
+ property :create_session, as: 'createSession'
1968
1982
  collection :decimal_target_types, as: 'decimalTargetTypes'
1969
1983
  property :destination_encryption_configuration, as: 'destinationEncryptionConfiguration', class: Google::Apis::BigqueryV2::EncryptionConfiguration, decorator: Google::Apis::BigqueryV2::EncryptionConfiguration::Representation
1970
1984
 
@@ -2108,6 +2122,8 @@ module Google
2108
2122
  property :copy, as: 'copy', class: Google::Apis::BigqueryV2::JobStatistics5, decorator: Google::Apis::BigqueryV2::JobStatistics5::Representation
2109
2123
 
2110
2124
  property :creation_time, :numeric_string => true, as: 'creationTime'
2125
+ property :data_masking_statistics, as: 'dataMaskingStatistics', class: Google::Apis::BigqueryV2::DataMaskingStatistics, decorator: Google::Apis::BigqueryV2::DataMaskingStatistics::Representation
2126
+
2111
2127
  property :end_time, :numeric_string => true, as: 'endTime'
2112
2128
  property :extract, as: 'extract', class: Google::Apis::BigqueryV2::JobStatistics4, decorator: Google::Apis::BigqueryV2::JobStatistics4::Representation
2113
2129
 
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.40.0
4
+ version: 0.41.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: 2022-09-12 00:00:00.000000000 Z
11
+ date: 2022-09-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.7'
19
+ version: 0.9.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.7'
29
+ version: 0.9.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.40.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-bigquery_v2/v0.41.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: []