google-apis-streetviewpublish_v1 0.20.0 → 0.22.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: edc7b692a75ba0f6a37243c9aa04e73e4294f5c7d9d31f8d8f2de45be59ad2bb
|
4
|
+
data.tar.gz: 8d382036c8c9ce046f2efbd39ae24571344b2e178fd7daacb87079f78e099738
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 805c62bc7c985639c0c4839b7ffa3af4000242104569937615a3425841e7b4339102300d587e983f70edcbcf7b42c32dc7e32c0ac9340bd91c64a3084e891eaa
|
7
|
+
data.tar.gz: 9c0e2a529d82ba506ad004c539781e0af3ddf768e7021357a5b34a916cc6b19b9b1f09c08573c910e31fbd12448fcf5481386799dea4ad216c716b4729b55e7a
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-streetviewpublish_v1
|
2
2
|
|
3
|
+
### v0.22.0 (2022-09-17)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220722
|
6
|
+
|
7
|
+
### v0.21.0 (2022-07-22)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220720
|
10
|
+
* Regenerated using generator version 0.9.0
|
11
|
+
|
3
12
|
### v0.20.0 (2022-07-03)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20220630
|
@@ -156,7 +156,8 @@ module Google
|
|
156
156
|
end
|
157
157
|
end
|
158
158
|
|
159
|
-
# Details related to ProcessingFailureReason#GPS_DATA_GAP.
|
159
|
+
# Details related to ProcessingFailureReason#GPS_DATA_GAP. If there are multiple
|
160
|
+
# GPS data gaps, only the one with the largest duration is reported here.
|
160
161
|
class GpsDataGapFailureDetails
|
161
162
|
include Google::Apis::Core::Hashable
|
162
163
|
|
@@ -166,9 +167,9 @@ module Google
|
|
166
167
|
attr_accessor :gap_duration
|
167
168
|
|
168
169
|
# Relative time (from the start of the video stream) when the gap started.
|
169
|
-
# Corresponds to the JSON property `
|
170
|
+
# Corresponds to the JSON property `gapStartTime`
|
170
171
|
# @return [String]
|
171
|
-
attr_accessor :
|
172
|
+
attr_accessor :gap_start_time
|
172
173
|
|
173
174
|
def initialize(**args)
|
174
175
|
update!(**args)
|
@@ -177,7 +178,7 @@ module Google
|
|
177
178
|
# Update properties of this object
|
178
179
|
def update!(**args)
|
179
180
|
@gap_duration = args[:gap_duration] if args.key?(:gap_duration)
|
180
|
-
@
|
181
|
+
@gap_start_time = args[:gap_start_time] if args.key?(:gap_start_time)
|
181
182
|
end
|
182
183
|
end
|
183
184
|
|
@@ -215,7 +216,8 @@ module Google
|
|
215
216
|
end
|
216
217
|
end
|
217
218
|
|
218
|
-
# Details related to ProcessingFailureReason#IMU_DATA_GAP.
|
219
|
+
# Details related to ProcessingFailureReason#IMU_DATA_GAP. If there are multiple
|
220
|
+
# IMU data gaps, only the one with the largest duration is reported here.
|
219
221
|
class ImuDataGapFailureDetails
|
220
222
|
include Google::Apis::Core::Hashable
|
221
223
|
|
@@ -225,9 +227,9 @@ module Google
|
|
225
227
|
attr_accessor :gap_duration
|
226
228
|
|
227
229
|
# Relative time (from the start of the video stream) when the gap started.
|
228
|
-
# Corresponds to the JSON property `
|
230
|
+
# Corresponds to the JSON property `gapStartTime`
|
229
231
|
# @return [String]
|
230
|
-
attr_accessor :
|
232
|
+
attr_accessor :gap_start_time
|
231
233
|
|
232
234
|
def initialize(**args)
|
233
235
|
update!(**args)
|
@@ -236,7 +238,7 @@ module Google
|
|
236
238
|
# Update properties of this object
|
237
239
|
def update!(**args)
|
238
240
|
@gap_duration = args[:gap_duration] if args.key?(:gap_duration)
|
239
|
-
@
|
241
|
+
@gap_start_time = args[:gap_start_time] if args.key?(:gap_start_time)
|
240
242
|
end
|
241
243
|
end
|
242
244
|
|
@@ -443,15 +445,16 @@ module Google
|
|
443
445
|
end
|
444
446
|
end
|
445
447
|
|
446
|
-
# Details related to ProcessingFailureReason#NOT_OUTDOORS.
|
448
|
+
# Details related to ProcessingFailureReason#NOT_OUTDOORS. If there are multiple
|
449
|
+
# indoor frames found, the first frame is recorded here.
|
447
450
|
class NotOutdoorsFailureDetails
|
448
451
|
include Google::Apis::Core::Hashable
|
449
452
|
|
450
453
|
# Relative time (from the start of the video stream) when an indoor frame was
|
451
454
|
# found.
|
452
|
-
# Corresponds to the JSON property `
|
455
|
+
# Corresponds to the JSON property `startTime`
|
453
456
|
# @return [String]
|
454
|
-
attr_accessor :
|
457
|
+
attr_accessor :start_time
|
455
458
|
|
456
459
|
def initialize(**args)
|
457
460
|
update!(**args)
|
@@ -459,7 +462,7 @@ module Google
|
|
459
462
|
|
460
463
|
# Update properties of this object
|
461
464
|
def update!(**args)
|
462
|
-
@
|
465
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
463
466
|
end
|
464
467
|
end
|
465
468
|
|
@@ -903,12 +906,14 @@ module Google
|
|
903
906
|
class ProcessingFailureDetails
|
904
907
|
include Google::Apis::Core::Hashable
|
905
908
|
|
906
|
-
# Details related to ProcessingFailureReason#GPS_DATA_GAP.
|
909
|
+
# Details related to ProcessingFailureReason#GPS_DATA_GAP. If there are multiple
|
910
|
+
# GPS data gaps, only the one with the largest duration is reported here.
|
907
911
|
# Corresponds to the JSON property `gpsDataGapDetails`
|
908
912
|
# @return [Google::Apis::StreetviewpublishV1::GpsDataGapFailureDetails]
|
909
913
|
attr_accessor :gps_data_gap_details
|
910
914
|
|
911
|
-
# Details related to ProcessingFailureReason#IMU_DATA_GAP.
|
915
|
+
# Details related to ProcessingFailureReason#IMU_DATA_GAP. If there are multiple
|
916
|
+
# IMU data gaps, only the one with the largest duration is reported here.
|
912
917
|
# Corresponds to the JSON property `imuDataGapDetails`
|
913
918
|
# @return [Google::Apis::StreetviewpublishV1::ImuDataGapFailureDetails]
|
914
919
|
attr_accessor :imu_data_gap_details
|
@@ -918,7 +923,8 @@ module Google
|
|
918
923
|
# @return [Google::Apis::StreetviewpublishV1::InsufficientGpsFailureDetails]
|
919
924
|
attr_accessor :insufficient_gps_details
|
920
925
|
|
921
|
-
# Details related to ProcessingFailureReason#NOT_OUTDOORS.
|
926
|
+
# Details related to ProcessingFailureReason#NOT_OUTDOORS. If there are multiple
|
927
|
+
# indoor frames found, the first frame is recorded here.
|
922
928
|
# Corresponds to the JSON property `notOutdoorsDetails`
|
923
929
|
# @return [Google::Apis::StreetviewpublishV1::NotOutdoorsFailureDetails]
|
924
930
|
attr_accessor :not_outdoors_details
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module StreetviewpublishV1
|
18
18
|
# Version of the google-apis-streetviewpublish_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.22.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.9.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220722"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -253,7 +253,7 @@ module Google
|
|
253
253
|
# @private
|
254
254
|
class Representation < Google::Apis::Core::JsonRepresentation
|
255
255
|
property :gap_duration, as: 'gapDuration'
|
256
|
-
property :
|
256
|
+
property :gap_start_time, as: 'gapStartTime'
|
257
257
|
end
|
258
258
|
end
|
259
259
|
|
@@ -273,7 +273,7 @@ module Google
|
|
273
273
|
# @private
|
274
274
|
class Representation < Google::Apis::Core::JsonRepresentation
|
275
275
|
property :gap_duration, as: 'gapDuration'
|
276
|
-
property :
|
276
|
+
property :gap_start_time, as: 'gapStartTime'
|
277
277
|
end
|
278
278
|
end
|
279
279
|
|
@@ -341,7 +341,7 @@ module Google
|
|
341
341
|
class NotOutdoorsFailureDetails
|
342
342
|
# @private
|
343
343
|
class Representation < Google::Apis::Core::JsonRepresentation
|
344
|
-
property :
|
344
|
+
property :start_time, as: 'startTime'
|
345
345
|
end
|
346
346
|
end
|
347
347
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-streetviewpublish_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.22.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-09-19 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:
|
19
|
+
version: 0.7.2
|
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:
|
29
|
+
version: 0.7.2
|
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-streetviewpublish_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-streetviewpublish_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-streetviewpublish_v1/v0.22.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-streetviewpublish_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|