google-apis-bigquery_v2 0.26.0 → 0.27.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: 790f2b04ab4895a08cc402014292f06733b70167b419f6a1057275cef9436c2f
|
4
|
+
data.tar.gz: 178cb40eee5a73b3a5bfa78cd3f444f2c0b580d19e2741896ab284700a884b3e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4367d5c5dc2e8dc82b0378425b8f91cd0db63bba0822faca6722a923bd2ad1a62a919035b9dd90621ff5abc246d48618618f06b37c6a769fb3f17f9f0177823c
|
7
|
+
data.tar.gz: f4fd5a2be9c79a1b3501ce910a7d2f89dae4f3ba2a37f6a76766878f613e3242dbfce64b53269d1a2dbe27bd75aaf1b22929e4139493b120756c0eb6c0714a42
|
data/CHANGELOG.md
CHANGED
@@ -4385,6 +4385,11 @@ module Google
|
|
4385
4385
|
# @return [Float]
|
4386
4386
|
attr_accessor :completion_ratio
|
4387
4387
|
|
4388
|
+
# [Output-only] Statistics for a copy job.
|
4389
|
+
# Corresponds to the JSON property `copy`
|
4390
|
+
# @return [Google::Apis::BigqueryV2::JobStatistics5]
|
4391
|
+
attr_accessor :copy
|
4392
|
+
|
4388
4393
|
# [Output-only] Creation time of this job, in milliseconds since the epoch. This
|
4389
4394
|
# field will be present on all jobs.
|
4390
4395
|
# Corresponds to the JSON property `creationTime`
|
@@ -4486,6 +4491,7 @@ module Google
|
|
4486
4491
|
# Update properties of this object
|
4487
4492
|
def update!(**args)
|
4488
4493
|
@completion_ratio = args[:completion_ratio] if args.key?(:completion_ratio)
|
4494
|
+
@copy = args[:copy] if args.key?(:copy)
|
4489
4495
|
@creation_time = args[:creation_time] if args.key?(:creation_time)
|
4490
4496
|
@end_time = args[:end_time] if args.key?(:end_time)
|
4491
4497
|
@extract = args[:extract] if args.key?(:extract)
|
@@ -4864,6 +4870,31 @@ module Google
|
|
4864
4870
|
end
|
4865
4871
|
end
|
4866
4872
|
|
4873
|
+
#
|
4874
|
+
class JobStatistics5
|
4875
|
+
include Google::Apis::Core::Hashable
|
4876
|
+
|
4877
|
+
# [Output-only] Number of logical bytes copied to the destination table.
|
4878
|
+
# Corresponds to the JSON property `copied_logical_bytes`
|
4879
|
+
# @return [Fixnum]
|
4880
|
+
attr_accessor :copied_logical_bytes
|
4881
|
+
|
4882
|
+
# [Output-only] Number of rows copied to the destination table.
|
4883
|
+
# Corresponds to the JSON property `copied_rows`
|
4884
|
+
# @return [Fixnum]
|
4885
|
+
attr_accessor :copied_rows
|
4886
|
+
|
4887
|
+
def initialize(**args)
|
4888
|
+
update!(**args)
|
4889
|
+
end
|
4890
|
+
|
4891
|
+
# Update properties of this object
|
4892
|
+
def update!(**args)
|
4893
|
+
@copied_logical_bytes = args[:copied_logical_bytes] if args.key?(:copied_logical_bytes)
|
4894
|
+
@copied_rows = args[:copied_rows] if args.key?(:copied_rows)
|
4895
|
+
end
|
4896
|
+
end
|
4897
|
+
|
4867
4898
|
#
|
4868
4899
|
class JobStatus
|
4869
4900
|
include Google::Apis::Core::Hashable
|
@@ -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.27.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 = "20220307"
|
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
|
|
@@ -2046,6 +2052,8 @@ module Google
|
|
2046
2052
|
# @private
|
2047
2053
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2048
2054
|
property :completion_ratio, as: 'completionRatio'
|
2055
|
+
property :copy, as: 'copy', class: Google::Apis::BigqueryV2::JobStatistics5, decorator: Google::Apis::BigqueryV2::JobStatistics5::Representation
|
2056
|
+
|
2049
2057
|
property :creation_time, :numeric_string => true, as: 'creationTime'
|
2050
2058
|
property :end_time, :numeric_string => true, as: 'endTime'
|
2051
2059
|
property :extract, as: 'extract', class: Google::Apis::BigqueryV2::JobStatistics4, decorator: Google::Apis::BigqueryV2::JobStatistics4::Representation
|
@@ -2161,6 +2169,14 @@ module Google
|
|
2161
2169
|
end
|
2162
2170
|
end
|
2163
2171
|
|
2172
|
+
class JobStatistics5
|
2173
|
+
# @private
|
2174
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2175
|
+
property :copied_logical_bytes, :numeric_string => true, as: 'copied_logical_bytes'
|
2176
|
+
property :copied_rows, :numeric_string => true, as: 'copied_rows'
|
2177
|
+
end
|
2178
|
+
end
|
2179
|
+
|
2164
2180
|
class JobStatus
|
2165
2181
|
# @private
|
2166
2182
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.27.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-03-
|
11
|
+
date: 2022-03-14 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.27.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: []
|