google-apis-streetviewpublish_v1 0.20.0 → 0.21.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: f7bf716022232ff198ef220b76d41084a51a0d50defd2cbee112bb0d375ecfc9
4
- data.tar.gz: '0810304e625e22c45d6281bec6a767692446af399587d08ffeb12eaddf209610'
3
+ metadata.gz: fedc15573a4cf763c248334ddd08017a9f7873ee9ad6f1f1a0e3a909d903564c
4
+ data.tar.gz: a34d4d1cb5c32ccce9f8c4ee5b253adadb2feee0c1e64a840806ab49913c2439
5
5
  SHA512:
6
- metadata.gz: 6ecaa6f49f5f759272b0f3e9a5ef8ffe06889f479a81bc753ae73a865c652b2eb3e47115e36afd426f9a190ec92dde4f259e96cab44a129e78641b5ed6622890
7
- data.tar.gz: b6333a29bca41bd78e1e74a854b9eb0c345d9b639ec7180084fe85b9fa8264a736ee6381c92478b48ce798d2d4269d71ba2cb1d90ba149442c880082e3bb064c
6
+ metadata.gz: a1b4a34e322199bdbd5c7118767ba641c8d5f2ae524ac5efeadd2a65e63728b6cb2cd076ddc8ac98e2ae33ded9c6bd55c7299b1f6f9172220776c0067f444457
7
+ data.tar.gz: '05590745f7e67e4dd01720267fe125881984a50c7182f33dc5de33c214e67d3e6ad2757fd1fcbce1bd23115c9be15560678b7f936478f3746acf92299d498457'
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-streetviewpublish_v1
2
2
 
3
+ ### v0.21.0 (2022-07-22)
4
+
5
+ * Regenerated from discovery document revision 20220720
6
+ * Regenerated using generator version 0.9.0
7
+
3
8
  ### v0.20.0 (2022-07-03)
4
9
 
5
10
  * 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 `gapTime`
170
+ # Corresponds to the JSON property `gapStartTime`
170
171
  # @return [String]
171
- attr_accessor :gap_time
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
- @gap_time = args[:gap_time] if args.key?(:gap_time)
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 `gapTime`
230
+ # Corresponds to the JSON property `gapStartTime`
229
231
  # @return [String]
230
- attr_accessor :gap_time
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
- @gap_time = args[:gap_time] if args.key?(:gap_time)
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 `time`
455
+ # Corresponds to the JSON property `startTime`
453
456
  # @return [String]
454
- attr_accessor :time
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
- @time = args[:time] if args.key?(:time)
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.20.0"
19
+ GEM_VERSION = "0.21.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.8.0"
22
+ GENERATOR_VERSION = "0.9.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220630"
25
+ REVISION = "20220720"
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 :gap_time, as: 'gapTime'
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 :gap_time, as: 'gapTime'
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 :time, as: 'time'
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.20.0
4
+ version: 0.21.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-07-04 00:00:00.000000000 Z
11
+ date: 2022-07-25 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-streetviewpublish_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-streetviewpublish_v1/v0.20.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-streetviewpublish_v1/v0.21.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: []