google-apis-streetviewpublish_v1 0.19.0 → 0.20.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: ab1f02b818a7cdf2022189195945fce361903cdbaf2ef4292725ca7b1fee10be
4
- data.tar.gz: 4b35d02deb3d61e35abc3020f7f52ea340efd27b2bac132c0185a969bd260454
3
+ metadata.gz: f7bf716022232ff198ef220b76d41084a51a0d50defd2cbee112bb0d375ecfc9
4
+ data.tar.gz: '0810304e625e22c45d6281bec6a767692446af399587d08ffeb12eaddf209610'
5
5
  SHA512:
6
- metadata.gz: 6d2ecc57be2248388fa957cdf8dc9e890177226a8b7d54b21c0ffd63d6e5d03e39d014a85f26450a1aee87302a1052b258165a5176cbbacfb791acd56047f0bb
7
- data.tar.gz: dc8dd3783d5827354d9e9411de2b8f91ce5e941dff79f7f52ce3fe0afd7586427004f5536d888908dff54f5e9548c6bf188abb3cdf5757ba438fea7192a45595
6
+ metadata.gz: 6ecaa6f49f5f759272b0f3e9a5ef8ffe06889f479a81bc753ae73a865c652b2eb3e47115e36afd426f9a190ec92dde4f259e96cab44a129e78641b5ed6622890
7
+ data.tar.gz: b6333a29bca41bd78e1e74a854b9eb0c345d9b639ec7180084fe85b9fa8264a736ee6381c92478b48ce798d2d4269d71ba2cb1d90ba149442c880082e3bb064c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-streetviewpublish_v1
2
2
 
3
+ ### v0.20.0 (2022-07-03)
4
+
5
+ * Regenerated from discovery document revision 20220630
6
+ * Regenerated using generator version 0.8.0
7
+
3
8
  ### v0.19.0 (2022-06-25)
4
9
 
5
10
  * Regenerated from discovery document revision 20220623
@@ -156,6 +156,31 @@ module Google
156
156
  end
157
157
  end
158
158
 
159
+ # Details related to ProcessingFailureReason#GPS_DATA_GAP.
160
+ class GpsDataGapFailureDetails
161
+ include Google::Apis::Core::Hashable
162
+
163
+ # The duration of the gap in GPS data that was found.
164
+ # Corresponds to the JSON property `gapDuration`
165
+ # @return [String]
166
+ attr_accessor :gap_duration
167
+
168
+ # Relative time (from the start of the video stream) when the gap started.
169
+ # Corresponds to the JSON property `gapTime`
170
+ # @return [String]
171
+ attr_accessor :gap_time
172
+
173
+ def initialize(**args)
174
+ update!(**args)
175
+ end
176
+
177
+ # Update properties of this object
178
+ def update!(**args)
179
+ @gap_duration = args[:gap_duration] if args.key?(:gap_duration)
180
+ @gap_time = args[:gap_time] if args.key?(:gap_time)
181
+ end
182
+ end
183
+
159
184
  # IMU data from the device sensors.
160
185
  class Imu
161
186
  include Google::Apis::Core::Hashable
@@ -190,6 +215,50 @@ module Google
190
215
  end
191
216
  end
192
217
 
218
+ # Details related to ProcessingFailureReason#IMU_DATA_GAP.
219
+ class ImuDataGapFailureDetails
220
+ include Google::Apis::Core::Hashable
221
+
222
+ # The duration of the gap in IMU data that was found.
223
+ # Corresponds to the JSON property `gapDuration`
224
+ # @return [String]
225
+ attr_accessor :gap_duration
226
+
227
+ # Relative time (from the start of the video stream) when the gap started.
228
+ # Corresponds to the JSON property `gapTime`
229
+ # @return [String]
230
+ attr_accessor :gap_time
231
+
232
+ def initialize(**args)
233
+ update!(**args)
234
+ end
235
+
236
+ # Update properties of this object
237
+ def update!(**args)
238
+ @gap_duration = args[:gap_duration] if args.key?(:gap_duration)
239
+ @gap_time = args[:gap_time] if args.key?(:gap_time)
240
+ end
241
+ end
242
+
243
+ # Details related to ProcessingFailureReason#INSUFFICIENT_GPS.
244
+ class InsufficientGpsFailureDetails
245
+ include Google::Apis::Core::Hashable
246
+
247
+ # The number of GPS points that were found in the video.
248
+ # Corresponds to the JSON property `gpsPointsFound`
249
+ # @return [Fixnum]
250
+ attr_accessor :gps_points_found
251
+
252
+ def initialize(**args)
253
+ update!(**args)
254
+ end
255
+
256
+ # Update properties of this object
257
+ def update!(**args)
258
+ @gps_points_found = args[:gps_points_found] if args.key?(:gps_points_found)
259
+ end
260
+ end
261
+
193
262
  # An object that represents a latitude/longitude pair. This is expressed as a
194
263
  # pair of doubles to represent degrees latitude and degrees longitude. Unless
195
264
  # specified otherwise, this object must conform to the WGS84 standard. Values
@@ -374,6 +443,26 @@ module Google
374
443
  end
375
444
  end
376
445
 
446
+ # Details related to ProcessingFailureReason#NOT_OUTDOORS.
447
+ class NotOutdoorsFailureDetails
448
+ include Google::Apis::Core::Hashable
449
+
450
+ # Relative time (from the start of the video stream) when an indoor frame was
451
+ # found.
452
+ # Corresponds to the JSON property `time`
453
+ # @return [String]
454
+ attr_accessor :time
455
+
456
+ def initialize(**args)
457
+ update!(**args)
458
+ end
459
+
460
+ # Update properties of this object
461
+ def update!(**args)
462
+ @time = args[:time] if args.key?(:time)
463
+ end
464
+ end
465
+
377
466
  # This resource represents a long-running operation that is the result of a
378
467
  # network API call.
379
468
  class Operation
@@ -597,6 +686,13 @@ module Google
597
686
  # @return [Float]
598
687
  attr_accessor :distance_meters
599
688
 
689
+ # Additional details to accompany the ProcessingFailureReason enum. This message
690
+ # is always expected to be used in conjunction with ProcessingFailureReason, and
691
+ # the oneof value set in this message should match the FailureReason.
692
+ # Corresponds to the JSON property `failureDetails`
693
+ # @return [Google::Apis::StreetviewpublishV1::ProcessingFailureDetails]
694
+ attr_accessor :failure_details
695
+
600
696
  # Output only. If this sequence has processing_state = FAILED, this will contain
601
697
  # the reason why it failed. If the processing_state is any other value, this
602
698
  # field will be unset.
@@ -677,6 +773,7 @@ module Google
677
773
  def update!(**args)
678
774
  @capture_time_override = args[:capture_time_override] if args.key?(:capture_time_override)
679
775
  @distance_meters = args[:distance_meters] if args.key?(:distance_meters)
776
+ @failure_details = args[:failure_details] if args.key?(:failure_details)
680
777
  @failure_reason = args[:failure_reason] if args.key?(:failure_reason)
681
778
  @filename = args[:filename] if args.key?(:filename)
682
779
  @gps_source = args[:gps_source] if args.key?(:gps_source)
@@ -744,6 +841,11 @@ module Google
744
841
  # @return [Float]
745
842
  attr_accessor :altitude
746
843
 
844
+ # Time of the GPS record since UTC epoch.
845
+ # Corresponds to the JSON property `gpsRecordTimestampUnixEpoch`
846
+ # @return [String]
847
+ attr_accessor :gps_record_timestamp_unix_epoch
848
+
747
849
  # The following pose parameters pertain to the center of the photo. They match
748
850
  # https://developers.google.com/streetview/spherical-metadata. Compass heading,
749
851
  # measured at the center of the photo in degrees clockwise from North. Value
@@ -786,6 +888,7 @@ module Google
786
888
  def update!(**args)
787
889
  @accuracy_meters = args[:accuracy_meters] if args.key?(:accuracy_meters)
788
890
  @altitude = args[:altitude] if args.key?(:altitude)
891
+ @gps_record_timestamp_unix_epoch = args[:gps_record_timestamp_unix_epoch] if args.key?(:gps_record_timestamp_unix_epoch)
789
892
  @heading = args[:heading] if args.key?(:heading)
790
893
  @lat_lng_pair = args[:lat_lng_pair] if args.key?(:lat_lng_pair)
791
894
  @level = args[:level] if args.key?(:level)
@@ -794,6 +897,45 @@ module Google
794
897
  end
795
898
  end
796
899
 
900
+ # Additional details to accompany the ProcessingFailureReason enum. This message
901
+ # is always expected to be used in conjunction with ProcessingFailureReason, and
902
+ # the oneof value set in this message should match the FailureReason.
903
+ class ProcessingFailureDetails
904
+ include Google::Apis::Core::Hashable
905
+
906
+ # Details related to ProcessingFailureReason#GPS_DATA_GAP.
907
+ # Corresponds to the JSON property `gpsDataGapDetails`
908
+ # @return [Google::Apis::StreetviewpublishV1::GpsDataGapFailureDetails]
909
+ attr_accessor :gps_data_gap_details
910
+
911
+ # Details related to ProcessingFailureReason#IMU_DATA_GAP.
912
+ # Corresponds to the JSON property `imuDataGapDetails`
913
+ # @return [Google::Apis::StreetviewpublishV1::ImuDataGapFailureDetails]
914
+ attr_accessor :imu_data_gap_details
915
+
916
+ # Details related to ProcessingFailureReason#INSUFFICIENT_GPS.
917
+ # Corresponds to the JSON property `insufficientGpsDetails`
918
+ # @return [Google::Apis::StreetviewpublishV1::InsufficientGpsFailureDetails]
919
+ attr_accessor :insufficient_gps_details
920
+
921
+ # Details related to ProcessingFailureReason#NOT_OUTDOORS.
922
+ # Corresponds to the JSON property `notOutdoorsDetails`
923
+ # @return [Google::Apis::StreetviewpublishV1::NotOutdoorsFailureDetails]
924
+ attr_accessor :not_outdoors_details
925
+
926
+ def initialize(**args)
927
+ update!(**args)
928
+ end
929
+
930
+ # Update properties of this object
931
+ def update!(**args)
932
+ @gps_data_gap_details = args[:gps_data_gap_details] if args.key?(:gps_data_gap_details)
933
+ @imu_data_gap_details = args[:imu_data_gap_details] if args.key?(:imu_data_gap_details)
934
+ @insufficient_gps_details = args[:insufficient_gps_details] if args.key?(:insufficient_gps_details)
935
+ @not_outdoors_details = args[:not_outdoors_details] if args.key?(:not_outdoors_details)
936
+ end
937
+ end
938
+
797
939
  # The `Status` type defines a logical error model that is suitable for different
798
940
  # programming environments, including REST APIs and RPC APIs. It is used by [
799
941
  # gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
@@ -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.0"
19
+ GEM_VERSION = "0.20.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.7.0"
22
+ GENERATOR_VERSION = "0.8.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220623"
25
+ REVISION = "20220630"
26
26
  end
27
27
  end
28
28
  end
@@ -64,12 +64,30 @@ module Google
64
64
  include Google::Apis::Core::JsonObjectSupport
65
65
  end
66
66
 
67
+ class GpsDataGapFailureDetails
68
+ class Representation < Google::Apis::Core::JsonRepresentation; end
69
+
70
+ include Google::Apis::Core::JsonObjectSupport
71
+ end
72
+
67
73
  class Imu
68
74
  class Representation < Google::Apis::Core::JsonRepresentation; end
69
75
 
70
76
  include Google::Apis::Core::JsonObjectSupport
71
77
  end
72
78
 
79
+ class ImuDataGapFailureDetails
80
+ class Representation < Google::Apis::Core::JsonRepresentation; end
81
+
82
+ include Google::Apis::Core::JsonObjectSupport
83
+ end
84
+
85
+ class InsufficientGpsFailureDetails
86
+ class Representation < Google::Apis::Core::JsonRepresentation; end
87
+
88
+ include Google::Apis::Core::JsonObjectSupport
89
+ end
90
+
73
91
  class LatLng
74
92
  class Representation < Google::Apis::Core::JsonRepresentation; end
75
93
 
@@ -106,6 +124,12 @@ module Google
106
124
  include Google::Apis::Core::JsonObjectSupport
107
125
  end
108
126
 
127
+ class NotOutdoorsFailureDetails
128
+ class Representation < Google::Apis::Core::JsonRepresentation; end
129
+
130
+ include Google::Apis::Core::JsonObjectSupport
131
+ end
132
+
109
133
  class Operation
110
134
  class Representation < Google::Apis::Core::JsonRepresentation; end
111
135
 
@@ -148,6 +172,12 @@ module Google
148
172
  include Google::Apis::Core::JsonObjectSupport
149
173
  end
150
174
 
175
+ class ProcessingFailureDetails
176
+ class Representation < Google::Apis::Core::JsonRepresentation; end
177
+
178
+ include Google::Apis::Core::JsonObjectSupport
179
+ end
180
+
151
181
  class Status
152
182
  class Representation < Google::Apis::Core::JsonRepresentation; end
153
183
 
@@ -219,6 +249,14 @@ module Google
219
249
  end
220
250
  end
221
251
 
252
+ class GpsDataGapFailureDetails
253
+ # @private
254
+ class Representation < Google::Apis::Core::JsonRepresentation
255
+ property :gap_duration, as: 'gapDuration'
256
+ property :gap_time, as: 'gapTime'
257
+ end
258
+ end
259
+
222
260
  class Imu
223
261
  # @private
224
262
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -231,6 +269,21 @@ module Google
231
269
  end
232
270
  end
233
271
 
272
+ class ImuDataGapFailureDetails
273
+ # @private
274
+ class Representation < Google::Apis::Core::JsonRepresentation
275
+ property :gap_duration, as: 'gapDuration'
276
+ property :gap_time, as: 'gapTime'
277
+ end
278
+ end
279
+
280
+ class InsufficientGpsFailureDetails
281
+ # @private
282
+ class Representation < Google::Apis::Core::JsonRepresentation
283
+ property :gps_points_found, as: 'gpsPointsFound'
284
+ end
285
+ end
286
+
234
287
  class LatLng
235
288
  # @private
236
289
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -285,6 +338,13 @@ module Google
285
338
  end
286
339
  end
287
340
 
341
+ class NotOutdoorsFailureDetails
342
+ # @private
343
+ class Representation < Google::Apis::Core::JsonRepresentation
344
+ property :time, as: 'time'
345
+ end
346
+ end
347
+
288
348
  class Operation
289
349
  # @private
290
350
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -343,6 +403,8 @@ module Google
343
403
  class Representation < Google::Apis::Core::JsonRepresentation
344
404
  property :capture_time_override, as: 'captureTimeOverride'
345
405
  property :distance_meters, as: 'distanceMeters'
406
+ property :failure_details, as: 'failureDetails', class: Google::Apis::StreetviewpublishV1::ProcessingFailureDetails, decorator: Google::Apis::StreetviewpublishV1::ProcessingFailureDetails::Representation
407
+
346
408
  property :failure_reason, as: 'failureReason'
347
409
  property :filename, as: 'filename'
348
410
  property :gps_source, as: 'gpsSource'
@@ -377,6 +439,7 @@ module Google
377
439
  class Representation < Google::Apis::Core::JsonRepresentation
378
440
  property :accuracy_meters, as: 'accuracyMeters'
379
441
  property :altitude, as: 'altitude'
442
+ property :gps_record_timestamp_unix_epoch, as: 'gpsRecordTimestampUnixEpoch'
380
443
  property :heading, as: 'heading'
381
444
  property :lat_lng_pair, as: 'latLngPair', class: Google::Apis::StreetviewpublishV1::LatLng, decorator: Google::Apis::StreetviewpublishV1::LatLng::Representation
382
445
 
@@ -387,6 +450,20 @@ module Google
387
450
  end
388
451
  end
389
452
 
453
+ class ProcessingFailureDetails
454
+ # @private
455
+ class Representation < Google::Apis::Core::JsonRepresentation
456
+ property :gps_data_gap_details, as: 'gpsDataGapDetails', class: Google::Apis::StreetviewpublishV1::GpsDataGapFailureDetails, decorator: Google::Apis::StreetviewpublishV1::GpsDataGapFailureDetails::Representation
457
+
458
+ property :imu_data_gap_details, as: 'imuDataGapDetails', class: Google::Apis::StreetviewpublishV1::ImuDataGapFailureDetails, decorator: Google::Apis::StreetviewpublishV1::ImuDataGapFailureDetails::Representation
459
+
460
+ property :insufficient_gps_details, as: 'insufficientGpsDetails', class: Google::Apis::StreetviewpublishV1::InsufficientGpsFailureDetails, decorator: Google::Apis::StreetviewpublishV1::InsufficientGpsFailureDetails::Representation
461
+
462
+ property :not_outdoors_details, as: 'notOutdoorsDetails', class: Google::Apis::StreetviewpublishV1::NotOutdoorsFailureDetails, decorator: Google::Apis::StreetviewpublishV1::NotOutdoorsFailureDetails::Representation
463
+
464
+ end
465
+ end
466
+
390
467
  class Status
391
468
  # @private
392
469
  class Representation < Google::Apis::Core::JsonRepresentation
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.19.0
4
+ version: 0.20.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-06-27 00:00:00.000000000 Z
11
+ date: 2022-07-04 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: '0.6'
19
+ version: '0.7'
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: '0.6'
29
+ version: '0.7'
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.19.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-streetviewpublish_v1/v0.20.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: []