google-apis-bigquery_v2 0.26.0 → 0.29.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ddded6a3b585d9192cce20043917be507bb0a5dbc5115b47d9c015cb4aca563f
|
4
|
+
data.tar.gz: ebb13be8c67ecf27c2ef2923a095263d000f42ceb95c7bf92b8f0176121f04e6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 34c99dcb700e77a4be4c9c62e100d3da083c0268ebe232cb75a2d5727c836f95cc635a27c66e829dd9ab5ebd2b9542da2392e7e5a266381f6ca862ad1ca8b8b3
|
7
|
+
data.tar.gz: 04227e38fcba09d2d2dce82a178f3c8cf10a1e2a7d36bae650fc30937a1000023ff3aff610c473dcc4a323b174bd214d3793ecc69d706079cc0f1fc355b0ba0f
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Release history for google-apis-bigquery_v2
|
2
2
|
|
3
|
+
### v0.29.0 (2022-03-30)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220322
|
6
|
+
|
7
|
+
### v0.28.0 (2022-03-19)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220313
|
10
|
+
|
11
|
+
### v0.27.0 (2022-03-12)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220307
|
14
|
+
|
3
15
|
### v0.26.0 (2022-03-06)
|
4
16
|
|
5
17
|
* Regenerated from discovery document revision 20220226
|
@@ -1637,6 +1637,12 @@ module Google
|
|
1637
1637
|
# @return [String]
|
1638
1638
|
attr_accessor :location
|
1639
1639
|
|
1640
|
+
# [Optional] Number of hours for the max time travel for all tables in the
|
1641
|
+
# dataset.
|
1642
|
+
# Corresponds to the JSON property `maxTimeTravelHours`
|
1643
|
+
# @return [Fixnum]
|
1644
|
+
attr_accessor :max_time_travel_hours
|
1645
|
+
|
1640
1646
|
# [Output-only] Reserved for future use.
|
1641
1647
|
# Corresponds to the JSON property `satisfiesPZS`
|
1642
1648
|
# @return [Boolean]
|
@@ -1676,6 +1682,7 @@ module Google
|
|
1676
1682
|
@labels = args[:labels] if args.key?(:labels)
|
1677
1683
|
@last_modified_time = args[:last_modified_time] if args.key?(:last_modified_time)
|
1678
1684
|
@location = args[:location] if args.key?(:location)
|
1685
|
+
@max_time_travel_hours = args[:max_time_travel_hours] if args.key?(:max_time_travel_hours)
|
1679
1686
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
1680
1687
|
@self_link = args[:self_link] if args.key?(:self_link)
|
1681
1688
|
@tags = args[:tags] if args.key?(:tags)
|
@@ -4385,6 +4392,11 @@ module Google
|
|
4385
4392
|
# @return [Float]
|
4386
4393
|
attr_accessor :completion_ratio
|
4387
4394
|
|
4395
|
+
# [Output-only] Statistics for a copy job.
|
4396
|
+
# Corresponds to the JSON property `copy`
|
4397
|
+
# @return [Google::Apis::BigqueryV2::JobStatistics5]
|
4398
|
+
attr_accessor :copy
|
4399
|
+
|
4388
4400
|
# [Output-only] Creation time of this job, in milliseconds since the epoch. This
|
4389
4401
|
# field will be present on all jobs.
|
4390
4402
|
# Corresponds to the JSON property `creationTime`
|
@@ -4486,6 +4498,7 @@ module Google
|
|
4486
4498
|
# Update properties of this object
|
4487
4499
|
def update!(**args)
|
4488
4500
|
@completion_ratio = args[:completion_ratio] if args.key?(:completion_ratio)
|
4501
|
+
@copy = args[:copy] if args.key?(:copy)
|
4489
4502
|
@creation_time = args[:creation_time] if args.key?(:creation_time)
|
4490
4503
|
@end_time = args[:end_time] if args.key?(:end_time)
|
4491
4504
|
@extract = args[:extract] if args.key?(:extract)
|
@@ -4864,6 +4877,31 @@ module Google
|
|
4864
4877
|
end
|
4865
4878
|
end
|
4866
4879
|
|
4880
|
+
#
|
4881
|
+
class JobStatistics5
|
4882
|
+
include Google::Apis::Core::Hashable
|
4883
|
+
|
4884
|
+
# [Output-only] Number of logical bytes copied to the destination table.
|
4885
|
+
# Corresponds to the JSON property `copied_logical_bytes`
|
4886
|
+
# @return [Fixnum]
|
4887
|
+
attr_accessor :copied_logical_bytes
|
4888
|
+
|
4889
|
+
# [Output-only] Number of rows copied to the destination table.
|
4890
|
+
# Corresponds to the JSON property `copied_rows`
|
4891
|
+
# @return [Fixnum]
|
4892
|
+
attr_accessor :copied_rows
|
4893
|
+
|
4894
|
+
def initialize(**args)
|
4895
|
+
update!(**args)
|
4896
|
+
end
|
4897
|
+
|
4898
|
+
# Update properties of this object
|
4899
|
+
def update!(**args)
|
4900
|
+
@copied_logical_bytes = args[:copied_logical_bytes] if args.key?(:copied_logical_bytes)
|
4901
|
+
@copied_rows = args[:copied_rows] if args.key?(:copied_rows)
|
4902
|
+
end
|
4903
|
+
end
|
4904
|
+
|
4867
4905
|
#
|
4868
4906
|
class JobStatus
|
4869
4907
|
include Google::Apis::Core::Hashable
|
@@ -8170,6 +8208,16 @@ module Google
|
|
8170
8208
|
# @return [Google::Apis::BigqueryV2::TrainingOptions]
|
8171
8209
|
attr_accessor :training_options
|
8172
8210
|
|
8211
|
+
# The model id in Vertex AI Model Registry for this training run
|
8212
|
+
# Corresponds to the JSON property `vertexAiModelId`
|
8213
|
+
# @return [String]
|
8214
|
+
attr_accessor :vertex_ai_model_id
|
8215
|
+
|
8216
|
+
# The model version in Vertex AI Model Registry for this training run
|
8217
|
+
# Corresponds to the JSON property `vertexAiModelVersion`
|
8218
|
+
# @return [String]
|
8219
|
+
attr_accessor :vertex_ai_model_version
|
8220
|
+
|
8173
8221
|
def initialize(**args)
|
8174
8222
|
update!(**args)
|
8175
8223
|
end
|
@@ -8183,6 +8231,8 @@ module Google
|
|
8183
8231
|
@results = args[:results] if args.key?(:results)
|
8184
8232
|
@start_time = args[:start_time] if args.key?(:start_time)
|
8185
8233
|
@training_options = args[:training_options] if args.key?(:training_options)
|
8234
|
+
@vertex_ai_model_id = args[:vertex_ai_model_id] if args.key?(:vertex_ai_model_id)
|
8235
|
+
@vertex_ai_model_version = args[:vertex_ai_model_version] if args.key?(:vertex_ai_model_version)
|
8186
8236
|
end
|
8187
8237
|
end
|
8188
8238
|
|
@@ -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.29.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220322"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -556,6 +556,12 @@ module Google
|
|
556
556
|
include Google::Apis::Core::JsonObjectSupport
|
557
557
|
end
|
558
558
|
|
559
|
+
class JobStatistics5
|
560
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
561
|
+
|
562
|
+
include Google::Apis::Core::JsonObjectSupport
|
563
|
+
end
|
564
|
+
|
559
565
|
class JobStatus
|
560
566
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
561
567
|
|
@@ -1372,6 +1378,7 @@ module Google
|
|
1372
1378
|
hash :labels, as: 'labels'
|
1373
1379
|
property :last_modified_time, :numeric_string => true, as: 'lastModifiedTime'
|
1374
1380
|
property :location, as: 'location'
|
1381
|
+
property :max_time_travel_hours, :numeric_string => true, as: 'maxTimeTravelHours'
|
1375
1382
|
property :satisfies_pzs, as: 'satisfiesPZS'
|
1376
1383
|
property :self_link, as: 'selfLink'
|
1377
1384
|
collection :tags, as: 'tags', class: Google::Apis::BigqueryV2::Dataset::Tag, decorator: Google::Apis::BigqueryV2::Dataset::Tag::Representation
|
@@ -2046,6 +2053,8 @@ module Google
|
|
2046
2053
|
# @private
|
2047
2054
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2048
2055
|
property :completion_ratio, as: 'completionRatio'
|
2056
|
+
property :copy, as: 'copy', class: Google::Apis::BigqueryV2::JobStatistics5, decorator: Google::Apis::BigqueryV2::JobStatistics5::Representation
|
2057
|
+
|
2049
2058
|
property :creation_time, :numeric_string => true, as: 'creationTime'
|
2050
2059
|
property :end_time, :numeric_string => true, as: 'endTime'
|
2051
2060
|
property :extract, as: 'extract', class: Google::Apis::BigqueryV2::JobStatistics4, decorator: Google::Apis::BigqueryV2::JobStatistics4::Representation
|
@@ -2161,6 +2170,14 @@ module Google
|
|
2161
2170
|
end
|
2162
2171
|
end
|
2163
2172
|
|
2173
|
+
class JobStatistics5
|
2174
|
+
# @private
|
2175
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2176
|
+
property :copied_logical_bytes, :numeric_string => true, as: 'copied_logical_bytes'
|
2177
|
+
property :copied_rows, :numeric_string => true, as: 'copied_rows'
|
2178
|
+
end
|
2179
|
+
end
|
2180
|
+
|
2164
2181
|
class JobStatus
|
2165
2182
|
# @private
|
2166
2183
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2987,6 +3004,8 @@ module Google
|
|
2987
3004
|
property :start_time, as: 'startTime'
|
2988
3005
|
property :training_options, as: 'trainingOptions', class: Google::Apis::BigqueryV2::TrainingOptions, decorator: Google::Apis::BigqueryV2::TrainingOptions::Representation
|
2989
3006
|
|
3007
|
+
property :vertex_ai_model_id, as: 'vertexAiModelId'
|
3008
|
+
property :vertex_ai_model_version, as: 'vertexAiModelVersion'
|
2990
3009
|
end
|
2991
3010
|
end
|
2992
3011
|
|
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.
|
4
|
+
version: 0.29.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-
|
11
|
+
date: 2022-04-04 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-bigquery_v2/v0.29.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: []
|