google-apis-bigquery_v2 0.13.0 → 0.14.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/bigquery_v2/classes.rb +96 -67
- data/lib/google/apis/bigquery_v2/gem_version.rb +2 -2
- data/lib/google/apis/bigquery_v2/representations.rb +51 -34
- metadata +13 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1a4653c7423f2b5a5c57fd9a1c9e8929254715a8a5b94d06f366b70e23451b31
|
4
|
+
data.tar.gz: e7120403ea5d46bc7875d0d4b7f8f7f0653669a8821c29b548568a41f50c2210
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b92f1746473036f8161c1275e6a09feff1c1d35a7b1812b926f7e3574d7789a4ae0679b7b9952f9fbbb3411792cdb705ca5cee6eaad75f5ef81c03b48d0a4dd4
|
7
|
+
data.tar.gz: cc20dfeb62e89fbed175602ed0cbac4a4ec455a30f8ba80a0269e192adfcf80e138e3dcf8c29c0dbfa78b4fb424388a86b7016d91927685fe65fb45b703e4fb3
|
data/CHANGELOG.md
CHANGED
@@ -537,6 +537,60 @@ module Google
|
|
537
537
|
end
|
538
538
|
end
|
539
539
|
|
540
|
+
#
|
541
|
+
class BiEngineReason
|
542
|
+
include Google::Apis::Core::Hashable
|
543
|
+
|
544
|
+
# [Output-only] High-level BI Engine reason for partial or disabled acceleration.
|
545
|
+
# Corresponds to the JSON property `code`
|
546
|
+
# @return [String]
|
547
|
+
attr_accessor :code
|
548
|
+
|
549
|
+
# [Output-only] Free form human-readable reason for partial or disabled
|
550
|
+
# acceleration.
|
551
|
+
# Corresponds to the JSON property `message`
|
552
|
+
# @return [String]
|
553
|
+
attr_accessor :message
|
554
|
+
|
555
|
+
def initialize(**args)
|
556
|
+
update!(**args)
|
557
|
+
end
|
558
|
+
|
559
|
+
# Update properties of this object
|
560
|
+
def update!(**args)
|
561
|
+
@code = args[:code] if args.key?(:code)
|
562
|
+
@message = args[:message] if args.key?(:message)
|
563
|
+
end
|
564
|
+
end
|
565
|
+
|
566
|
+
#
|
567
|
+
class BiEngineStatistics
|
568
|
+
include Google::Apis::Core::Hashable
|
569
|
+
|
570
|
+
# [Output-only] Specifies which mode of BI Engine acceleration was performed (if
|
571
|
+
# any).
|
572
|
+
# Corresponds to the JSON property `biEngineMode`
|
573
|
+
# @return [String]
|
574
|
+
attr_accessor :bi_engine_mode
|
575
|
+
|
576
|
+
# In case of DISABLED or PARTIAL bi_engine_mode, these contain the explanatory
|
577
|
+
# reasons as to why BI Engine could not accelerate. In case the full query was
|
578
|
+
# accelerated, this field is not populated.
|
579
|
+
# Corresponds to the JSON property `biEngineReasons`
|
580
|
+
# @return [Array<Google::Apis::BigqueryV2::BiEngineReason>]
|
581
|
+
attr_accessor :bi_engine_reasons
|
582
|
+
|
583
|
+
def initialize(**args)
|
584
|
+
update!(**args)
|
585
|
+
end
|
586
|
+
|
587
|
+
# Update properties of this object
|
588
|
+
def update!(**args)
|
589
|
+
@bi_engine_mode = args[:bi_engine_mode] if args.key?(:bi_engine_mode)
|
590
|
+
@bi_engine_reasons = args[:bi_engine_reasons] if args.key?(:bi_engine_reasons)
|
591
|
+
end
|
592
|
+
end
|
593
|
+
|
540
594
|
#
|
541
595
|
class BigQueryModelTraining
|
542
596
|
include Google::Apis::Core::Hashable
|
@@ -1843,6 +1897,37 @@ module Google
|
|
1843
1897
|
end
|
1844
1898
|
end
|
1845
1899
|
|
1900
|
+
#
|
1901
|
+
class DmlStatistics
|
1902
|
+
include Google::Apis::Core::Hashable
|
1903
|
+
|
1904
|
+
# Number of deleted Rows. populated by DML DELETE, MERGE and TRUNCATE statements.
|
1905
|
+
# Corresponds to the JSON property `deletedRowCount`
|
1906
|
+
# @return [Fixnum]
|
1907
|
+
attr_accessor :deleted_row_count
|
1908
|
+
|
1909
|
+
# Number of inserted Rows. Populated by DML INSERT and MERGE statements.
|
1910
|
+
# Corresponds to the JSON property `insertedRowCount`
|
1911
|
+
# @return [Fixnum]
|
1912
|
+
attr_accessor :inserted_row_count
|
1913
|
+
|
1914
|
+
# Number of updated Rows. Populated by DML UPDATE and MERGE statements.
|
1915
|
+
# Corresponds to the JSON property `updatedRowCount`
|
1916
|
+
# @return [Fixnum]
|
1917
|
+
attr_accessor :updated_row_count
|
1918
|
+
|
1919
|
+
def initialize(**args)
|
1920
|
+
update!(**args)
|
1921
|
+
end
|
1922
|
+
|
1923
|
+
# Update properties of this object
|
1924
|
+
def update!(**args)
|
1925
|
+
@deleted_row_count = args[:deleted_row_count] if args.key?(:deleted_row_count)
|
1926
|
+
@inserted_row_count = args[:inserted_row_count] if args.key?(:inserted_row_count)
|
1927
|
+
@updated_row_count = args[:updated_row_count] if args.key?(:updated_row_count)
|
1928
|
+
end
|
1929
|
+
end
|
1930
|
+
|
1846
1931
|
#
|
1847
1932
|
class EncryptionConfiguration
|
1848
1933
|
include Google::Apis::Core::Hashable
|
@@ -2200,32 +2285,6 @@ module Google
|
|
2200
2285
|
end
|
2201
2286
|
end
|
2202
2287
|
|
2203
|
-
# Explanation for a single feature.
|
2204
|
-
class Explanation
|
2205
|
-
include Google::Apis::Core::Hashable
|
2206
|
-
|
2207
|
-
# Attribution of feature.
|
2208
|
-
# Corresponds to the JSON property `attribution`
|
2209
|
-
# @return [Float]
|
2210
|
-
attr_accessor :attribution
|
2211
|
-
|
2212
|
-
# Full name of the feature. For non-numerical features, will be formatted like ..
|
2213
|
-
# Overall size of feature name will always be truncated to first 120 characters.
|
2214
|
-
# Corresponds to the JSON property `featureName`
|
2215
|
-
# @return [String]
|
2216
|
-
attr_accessor :feature_name
|
2217
|
-
|
2218
|
-
def initialize(**args)
|
2219
|
-
update!(**args)
|
2220
|
-
end
|
2221
|
-
|
2222
|
-
# Update properties of this object
|
2223
|
-
def update!(**args)
|
2224
|
-
@attribution = args[:attribution] if args.key?(:attribution)
|
2225
|
-
@feature_name = args[:feature_name] if args.key?(:feature_name)
|
2226
|
-
end
|
2227
|
-
end
|
2228
|
-
|
2229
2288
|
# Represents a textual expression in the Common Expression Language (CEL) syntax.
|
2230
2289
|
# CEL is a C-like expression language. The syntax and semantics of CEL are
|
2231
2290
|
# documented at https://github.com/google/cel-spec. Example (Comparison): title:
|
@@ -2624,34 +2683,6 @@ module Google
|
|
2624
2683
|
end
|
2625
2684
|
end
|
2626
2685
|
|
2627
|
-
# Global explanations containing the top most important features after training.
|
2628
|
-
class GlobalExplanation
|
2629
|
-
include Google::Apis::Core::Hashable
|
2630
|
-
|
2631
|
-
# Class label for this set of global explanations. Will be empty/null for binary
|
2632
|
-
# logistic and linear regression models. Sorted alphabetically in descending
|
2633
|
-
# order.
|
2634
|
-
# Corresponds to the JSON property `classLabel`
|
2635
|
-
# @return [String]
|
2636
|
-
attr_accessor :class_label
|
2637
|
-
|
2638
|
-
# A list of the top global explanations. Sorted by absolute value of attribution
|
2639
|
-
# in descending order.
|
2640
|
-
# Corresponds to the JSON property `explanations`
|
2641
|
-
# @return [Array<Google::Apis::BigqueryV2::Explanation>]
|
2642
|
-
attr_accessor :explanations
|
2643
|
-
|
2644
|
-
def initialize(**args)
|
2645
|
-
update!(**args)
|
2646
|
-
end
|
2647
|
-
|
2648
|
-
# Update properties of this object
|
2649
|
-
def update!(**args)
|
2650
|
-
@class_label = args[:class_label] if args.key?(:class_label)
|
2651
|
-
@explanations = args[:explanations] if args.key?(:explanations)
|
2652
|
-
end
|
2653
|
-
end
|
2654
|
-
|
2655
2686
|
#
|
2656
2687
|
class GoogleSheetsOptions
|
2657
2688
|
include Google::Apis::Core::Hashable
|
@@ -3845,9 +3876,9 @@ module Google
|
|
3845
3876
|
attr_accessor :script_statistics
|
3846
3877
|
|
3847
3878
|
# [Output-only] [Preview] Information of the session if this job is part of one.
|
3848
|
-
# Corresponds to the JSON property `
|
3879
|
+
# Corresponds to the JSON property `sessionInfo`
|
3849
3880
|
# @return [Google::Apis::BigqueryV2::SessionInfo]
|
3850
|
-
attr_accessor :
|
3881
|
+
attr_accessor :session_info
|
3851
3882
|
|
3852
3883
|
# [Output-only] Start time of this job, in milliseconds since the epoch. This
|
3853
3884
|
# field will be present when the job transitions from the PENDING state to
|
@@ -3892,7 +3923,7 @@ module Google
|
|
3892
3923
|
@reservation_id = args[:reservation_id] if args.key?(:reservation_id)
|
3893
3924
|
@row_level_security_statistics = args[:row_level_security_statistics] if args.key?(:row_level_security_statistics)
|
3894
3925
|
@script_statistics = args[:script_statistics] if args.key?(:script_statistics)
|
3895
|
-
@
|
3926
|
+
@session_info = args[:session_info] if args.key?(:session_info)
|
3896
3927
|
@start_time = args[:start_time] if args.key?(:start_time)
|
3897
3928
|
@total_bytes_processed = args[:total_bytes_processed] if args.key?(:total_bytes_processed)
|
3898
3929
|
@total_slot_ms = args[:total_slot_ms] if args.key?(:total_slot_ms)
|
@@ -3929,6 +3960,11 @@ module Google
|
|
3929
3960
|
class JobStatistics2
|
3930
3961
|
include Google::Apis::Core::Hashable
|
3931
3962
|
|
3963
|
+
# BI Engine specific Statistics. [Output-only] BI Engine specific Statistics.
|
3964
|
+
# Corresponds to the JSON property `biEngineStatistics`
|
3965
|
+
# @return [Google::Apis::BigqueryV2::BiEngineStatistics]
|
3966
|
+
attr_accessor :bi_engine_statistics
|
3967
|
+
|
3932
3968
|
# [Output-only] Billing tier for the job.
|
3933
3969
|
# Corresponds to the JSON property `billingTier`
|
3934
3970
|
# @return [Fixnum]
|
@@ -3990,7 +4026,7 @@ module Google
|
|
3990
4026
|
# [Output-only] Detailed statistics for DML statements Present only for DML
|
3991
4027
|
# statements INSERT, UPDATE, DELETE or TRUNCATE.
|
3992
4028
|
# Corresponds to the JSON property `dmlStats`
|
3993
|
-
# @return [
|
4029
|
+
# @return [Google::Apis::BigqueryV2::DmlStatistics]
|
3994
4030
|
attr_accessor :dml_stats
|
3995
4031
|
|
3996
4032
|
# [Output-only] The original estimate of bytes processed for the job.
|
@@ -4114,6 +4150,7 @@ module Google
|
|
4114
4150
|
|
4115
4151
|
# Update properties of this object
|
4116
4152
|
def update!(**args)
|
4153
|
+
@bi_engine_statistics = args[:bi_engine_statistics] if args.key?(:bi_engine_statistics)
|
4117
4154
|
@billing_tier = args[:billing_tier] if args.key?(:billing_tier)
|
4118
4155
|
@cache_hit = args[:cache_hit] if args.key?(:cache_hit)
|
4119
4156
|
@ddl_affected_row_access_policy_count = args[:ddl_affected_row_access_policy_count] if args.key?(:ddl_affected_row_access_policy_count)
|
@@ -5198,7 +5235,7 @@ module Google
|
|
5198
5235
|
# [Output-only] Detailed statistics for DML statements Present only for DML
|
5199
5236
|
# statements INSERT, UPDATE, DELETE or TRUNCATE.
|
5200
5237
|
# Corresponds to the JSON property `dmlStats`
|
5201
|
-
# @return [
|
5238
|
+
# @return [Google::Apis::BigqueryV2::DmlStatistics]
|
5202
5239
|
attr_accessor :dml_stats
|
5203
5240
|
|
5204
5241
|
# [Output-only] The first errors or warnings encountered during the running of
|
@@ -7276,13 +7313,6 @@ module Google
|
|
7276
7313
|
# @return [Google::Apis::BigqueryV2::EvaluationMetrics]
|
7277
7314
|
attr_accessor :evaluation_metrics
|
7278
7315
|
|
7279
|
-
# Global explanations for important features of the model. For multi-class
|
7280
|
-
# models, there is one entry for each label class. For other models, there is
|
7281
|
-
# only one entry in the list.
|
7282
|
-
# Corresponds to the JSON property `globalExplanations`
|
7283
|
-
# @return [Array<Google::Apis::BigqueryV2::GlobalExplanation>]
|
7284
|
-
attr_accessor :global_explanations
|
7285
|
-
|
7286
7316
|
# Output of each iteration run, results.size() <= max_iterations.
|
7287
7317
|
# Corresponds to the JSON property `results`
|
7288
7318
|
# @return [Array<Google::Apis::BigqueryV2::IterationResult>]
|
@@ -7306,7 +7336,6 @@ module Google
|
|
7306
7336
|
def update!(**args)
|
7307
7337
|
@data_split_result = args[:data_split_result] if args.key?(:data_split_result)
|
7308
7338
|
@evaluation_metrics = args[:evaluation_metrics] if args.key?(:evaluation_metrics)
|
7309
|
-
@global_explanations = args[:global_explanations] if args.key?(:global_explanations)
|
7310
7339
|
@results = args[:results] if args.key?(:results)
|
7311
7340
|
@start_time = args[:start_time] if args.key?(:start_time)
|
7312
7341
|
@training_options = args[:training_options] if args.key?(:training_options)
|
@@ -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.14.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.3.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210617"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -88,6 +88,18 @@ module Google
|
|
88
88
|
include Google::Apis::Core::JsonObjectSupport
|
89
89
|
end
|
90
90
|
|
91
|
+
class BiEngineReason
|
92
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
93
|
+
|
94
|
+
include Google::Apis::Core::JsonObjectSupport
|
95
|
+
end
|
96
|
+
|
97
|
+
class BiEngineStatistics
|
98
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
99
|
+
|
100
|
+
include Google::Apis::Core::JsonObjectSupport
|
101
|
+
end
|
102
|
+
|
91
103
|
class BigQueryModelTraining
|
92
104
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
93
105
|
|
@@ -256,6 +268,12 @@ module Google
|
|
256
268
|
include Google::Apis::Core::JsonObjectSupport
|
257
269
|
end
|
258
270
|
|
271
|
+
class DmlStatistics
|
272
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
273
|
+
|
274
|
+
include Google::Apis::Core::JsonObjectSupport
|
275
|
+
end
|
276
|
+
|
259
277
|
class EncryptionConfiguration
|
260
278
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
261
279
|
|
@@ -292,12 +310,6 @@ module Google
|
|
292
310
|
include Google::Apis::Core::JsonObjectSupport
|
293
311
|
end
|
294
312
|
|
295
|
-
class Explanation
|
296
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
297
|
-
|
298
|
-
include Google::Apis::Core::JsonObjectSupport
|
299
|
-
end
|
300
|
-
|
301
313
|
class Expr
|
302
314
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
303
315
|
|
@@ -340,12 +352,6 @@ module Google
|
|
340
352
|
include Google::Apis::Core::JsonObjectSupport
|
341
353
|
end
|
342
354
|
|
343
|
-
class GlobalExplanation
|
344
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
345
|
-
|
346
|
-
include Google::Apis::Core::JsonObjectSupport
|
347
|
-
end
|
348
|
-
|
349
355
|
class GoogleSheetsOptions
|
350
356
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
351
357
|
|
@@ -990,6 +996,23 @@ module Google
|
|
990
996
|
end
|
991
997
|
end
|
992
998
|
|
999
|
+
class BiEngineReason
|
1000
|
+
# @private
|
1001
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1002
|
+
property :code, as: 'code'
|
1003
|
+
property :message, as: 'message'
|
1004
|
+
end
|
1005
|
+
end
|
1006
|
+
|
1007
|
+
class BiEngineStatistics
|
1008
|
+
# @private
|
1009
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1010
|
+
property :bi_engine_mode, as: 'biEngineMode'
|
1011
|
+
collection :bi_engine_reasons, as: 'biEngineReasons', class: Google::Apis::BigqueryV2::BiEngineReason, decorator: Google::Apis::BigqueryV2::BiEngineReason::Representation
|
1012
|
+
|
1013
|
+
end
|
1014
|
+
end
|
1015
|
+
|
993
1016
|
class BigQueryModelTraining
|
994
1017
|
# @private
|
995
1018
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1300,6 +1323,15 @@ module Google
|
|
1300
1323
|
end
|
1301
1324
|
end
|
1302
1325
|
|
1326
|
+
class DmlStatistics
|
1327
|
+
# @private
|
1328
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1329
|
+
property :deleted_row_count, :numeric_string => true, as: 'deletedRowCount'
|
1330
|
+
property :inserted_row_count, :numeric_string => true, as: 'insertedRowCount'
|
1331
|
+
property :updated_row_count, :numeric_string => true, as: 'updatedRowCount'
|
1332
|
+
end
|
1333
|
+
end
|
1334
|
+
|
1303
1335
|
class EncryptionConfiguration
|
1304
1336
|
# @private
|
1305
1337
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1388,14 +1420,6 @@ module Google
|
|
1388
1420
|
end
|
1389
1421
|
end
|
1390
1422
|
|
1391
|
-
class Explanation
|
1392
|
-
# @private
|
1393
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1394
|
-
property :attribution, as: 'attribution'
|
1395
|
-
property :feature_name, as: 'featureName'
|
1396
|
-
end
|
1397
|
-
end
|
1398
|
-
|
1399
1423
|
class Expr
|
1400
1424
|
# @private
|
1401
1425
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1487,15 +1511,6 @@ module Google
|
|
1487
1511
|
end
|
1488
1512
|
end
|
1489
1513
|
|
1490
|
-
class GlobalExplanation
|
1491
|
-
# @private
|
1492
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1493
|
-
property :class_label, as: 'classLabel'
|
1494
|
-
collection :explanations, as: 'explanations', class: Google::Apis::BigqueryV2::Explanation, decorator: Google::Apis::BigqueryV2::Explanation::Representation
|
1495
|
-
|
1496
|
-
end
|
1497
|
-
end
|
1498
|
-
|
1499
1514
|
class GoogleSheetsOptions
|
1500
1515
|
# @private
|
1501
1516
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1756,7 +1771,7 @@ module Google
|
|
1756
1771
|
|
1757
1772
|
property :script_statistics, as: 'scriptStatistics', class: Google::Apis::BigqueryV2::ScriptStatistics, decorator: Google::Apis::BigqueryV2::ScriptStatistics::Representation
|
1758
1773
|
|
1759
|
-
property :
|
1774
|
+
property :session_info, as: 'sessionInfo', class: Google::Apis::BigqueryV2::SessionInfo, decorator: Google::Apis::BigqueryV2::SessionInfo::Representation
|
1760
1775
|
|
1761
1776
|
property :start_time, :numeric_string => true, as: 'startTime'
|
1762
1777
|
property :total_bytes_processed, :numeric_string => true, as: 'totalBytesProcessed'
|
@@ -1777,6 +1792,8 @@ module Google
|
|
1777
1792
|
class JobStatistics2
|
1778
1793
|
# @private
|
1779
1794
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1795
|
+
property :bi_engine_statistics, as: 'biEngineStatistics', class: Google::Apis::BigqueryV2::BiEngineStatistics, decorator: Google::Apis::BigqueryV2::BiEngineStatistics::Representation
|
1796
|
+
|
1780
1797
|
property :billing_tier, as: 'billingTier'
|
1781
1798
|
property :cache_hit, as: 'cacheHit'
|
1782
1799
|
property :ddl_affected_row_access_policy_count, :numeric_string => true, as: 'ddlAffectedRowAccessPolicyCount'
|
@@ -1791,7 +1808,8 @@ module Google
|
|
1791
1808
|
|
1792
1809
|
property :ddl_target_table, as: 'ddlTargetTable', class: Google::Apis::BigqueryV2::TableReference, decorator: Google::Apis::BigqueryV2::TableReference::Representation
|
1793
1810
|
|
1794
|
-
property :dml_stats, as: 'dmlStats'
|
1811
|
+
property :dml_stats, as: 'dmlStats', class: Google::Apis::BigqueryV2::DmlStatistics, decorator: Google::Apis::BigqueryV2::DmlStatistics::Representation
|
1812
|
+
|
1795
1813
|
property :estimated_bytes_processed, :numeric_string => true, as: 'estimatedBytesProcessed'
|
1796
1814
|
property :model_training, as: 'modelTraining', class: Google::Apis::BigqueryV2::BigQueryModelTraining, decorator: Google::Apis::BigqueryV2::BigQueryModelTraining::Representation
|
1797
1815
|
|
@@ -2091,7 +2109,8 @@ module Google
|
|
2091
2109
|
# @private
|
2092
2110
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2093
2111
|
property :cache_hit, as: 'cacheHit'
|
2094
|
-
property :dml_stats, as: 'dmlStats'
|
2112
|
+
property :dml_stats, as: 'dmlStats', class: Google::Apis::BigqueryV2::DmlStatistics, decorator: Google::Apis::BigqueryV2::DmlStatistics::Representation
|
2113
|
+
|
2095
2114
|
collection :errors, as: 'errors', class: Google::Apis::BigqueryV2::ErrorProto, decorator: Google::Apis::BigqueryV2::ErrorProto::Representation
|
2096
2115
|
|
2097
2116
|
property :job_complete, as: 'jobComplete'
|
@@ -2612,8 +2631,6 @@ module Google
|
|
2612
2631
|
|
2613
2632
|
property :evaluation_metrics, as: 'evaluationMetrics', class: Google::Apis::BigqueryV2::EvaluationMetrics, decorator: Google::Apis::BigqueryV2::EvaluationMetrics::Representation
|
2614
2633
|
|
2615
|
-
collection :global_explanations, as: 'globalExplanations', class: Google::Apis::BigqueryV2::GlobalExplanation, decorator: Google::Apis::BigqueryV2::GlobalExplanation::Representation
|
2616
|
-
|
2617
2634
|
collection :results, as: 'results', class: Google::Apis::BigqueryV2::IterationResult, decorator: Google::Apis::BigqueryV2::IterationResult::Representation
|
2618
2635
|
|
2619
2636
|
property :start_time, as: 'startTime'
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
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.14.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: 2021-06-
|
11
|
+
date: 2021-06-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.3'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 2.a
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.3'
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
32
|
+
version: 2.a
|
27
33
|
description: This is the simple REST client for BigQuery API V2. Simple REST clients
|
28
34
|
are Ruby client libraries that provide access to Google services via their HTTP
|
29
35
|
REST API endpoints. These libraries are generated and updated automatically based
|
@@ -52,7 +58,7 @@ licenses:
|
|
52
58
|
metadata:
|
53
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-bigquery_v2/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-bigquery_v2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-bigquery_v2/v0.14.0
|
56
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-bigquery_v2
|
57
63
|
post_install_message:
|
58
64
|
rdoc_options: []
|