aws-sdk-locationservice 1.72.0 → 1.73.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-locationservice/client.rb +129 -68
- data/lib/aws-sdk-locationservice/client_api.rb +10 -2
- data/lib/aws-sdk-locationservice/types.rb +296 -168
- data/lib/aws-sdk-locationservice.rb +1 -1
- data/sig/client.rbs +16 -2
- data/sig/types.rbs +47 -46
- metadata +1 -1
data/sig/client.rbs
CHANGED
@@ -164,7 +164,14 @@ module Aws
|
|
164
164
|
center: Array[::Float],
|
165
165
|
radius: ::Float
|
166
166
|
}?,
|
167
|
-
geobuf: ::String
|
167
|
+
geobuf: ::String?,
|
168
|
+
multi_polygon: Array[
|
169
|
+
Array[
|
170
|
+
Array[
|
171
|
+
Array[::Float],
|
172
|
+
],
|
173
|
+
],
|
174
|
+
]?
|
168
175
|
},
|
169
176
|
geofence_properties: Hash[::String, ::String]?
|
170
177
|
},
|
@@ -859,7 +866,14 @@ module Aws
|
|
859
866
|
center: Array[::Float],
|
860
867
|
radius: ::Float
|
861
868
|
}?,
|
862
|
-
geobuf: ::String
|
869
|
+
geobuf: ::String?,
|
870
|
+
multi_polygon: Array[
|
871
|
+
Array[
|
872
|
+
Array[
|
873
|
+
Array[::Float],
|
874
|
+
],
|
875
|
+
],
|
876
|
+
]?
|
863
877
|
},
|
864
878
|
?geofence_properties: Hash[::String, ::String]
|
865
879
|
) -> _PutGeofenceResponseSuccess
|
data/sig/types.rbs
CHANGED
@@ -72,7 +72,7 @@ module Aws::LocationService
|
|
72
72
|
attr_accessor device_id: ::String
|
73
73
|
attr_accessor sample_time: ::Time
|
74
74
|
attr_accessor error: Types::BatchItemError
|
75
|
-
SENSITIVE: []
|
75
|
+
SENSITIVE: [:sample_time]
|
76
76
|
end
|
77
77
|
|
78
78
|
class BatchEvaluateGeofencesRequest
|
@@ -139,14 +139,14 @@ module Aws::LocationService
|
|
139
139
|
attr_accessor geofence_id: ::String
|
140
140
|
attr_accessor create_time: ::Time
|
141
141
|
attr_accessor update_time: ::Time
|
142
|
-
SENSITIVE: []
|
142
|
+
SENSITIVE: [:create_time, :update_time]
|
143
143
|
end
|
144
144
|
|
145
145
|
class BatchUpdateDevicePositionError
|
146
146
|
attr_accessor device_id: ::String
|
147
147
|
attr_accessor sample_time: ::Time
|
148
148
|
attr_accessor error: Types::BatchItemError
|
149
|
-
SENSITIVE: []
|
149
|
+
SENSITIVE: [:sample_time]
|
150
150
|
end
|
151
151
|
|
152
152
|
class BatchUpdateDevicePositionRequest
|
@@ -177,7 +177,7 @@ module Aws::LocationService
|
|
177
177
|
attr_accessor car_mode_options: Types::CalculateRouteCarModeOptions
|
178
178
|
attr_accessor truck_mode_options: Types::CalculateRouteTruckModeOptions
|
179
179
|
attr_accessor key: ::String
|
180
|
-
SENSITIVE: [:key]
|
180
|
+
SENSITIVE: [:departure_time, :key]
|
181
181
|
end
|
182
182
|
|
183
183
|
class CalculateRouteMatrixResponse
|
@@ -211,7 +211,7 @@ module Aws::LocationService
|
|
211
211
|
attr_accessor arrival_time: ::Time
|
212
212
|
attr_accessor optimize_for: ("FastestRoute" | "ShortestRoute")
|
213
213
|
attr_accessor key: ::String
|
214
|
-
SENSITIVE: [:departure_position, :destination_position, :key]
|
214
|
+
SENSITIVE: [:departure_position, :destination_position, :departure_time, :arrival_time, :key]
|
215
215
|
end
|
216
216
|
|
217
217
|
class CalculateRouteResponse
|
@@ -245,7 +245,7 @@ module Aws::LocationService
|
|
245
245
|
class Circle
|
246
246
|
attr_accessor center: ::Array[::Float]
|
247
247
|
attr_accessor radius: ::Float
|
248
|
-
SENSITIVE: [:center]
|
248
|
+
SENSITIVE: [:center, :radius]
|
249
249
|
end
|
250
250
|
|
251
251
|
class ConflictException
|
@@ -267,7 +267,7 @@ module Aws::LocationService
|
|
267
267
|
attr_accessor collection_name: ::String
|
268
268
|
attr_accessor collection_arn: ::String
|
269
269
|
attr_accessor create_time: ::Time
|
270
|
-
SENSITIVE: []
|
270
|
+
SENSITIVE: [:create_time]
|
271
271
|
end
|
272
272
|
|
273
273
|
class CreateKeyRequest
|
@@ -277,7 +277,7 @@ module Aws::LocationService
|
|
277
277
|
attr_accessor expire_time: ::Time
|
278
278
|
attr_accessor no_expiry: bool
|
279
279
|
attr_accessor tags: ::Hash[::String, ::String]
|
280
|
-
SENSITIVE: []
|
280
|
+
SENSITIVE: [:expire_time]
|
281
281
|
end
|
282
282
|
|
283
283
|
class CreateKeyResponse
|
@@ -285,7 +285,7 @@ module Aws::LocationService
|
|
285
285
|
attr_accessor key_arn: ::String
|
286
286
|
attr_accessor key_name: ::String
|
287
287
|
attr_accessor create_time: ::Time
|
288
|
-
SENSITIVE: [:key]
|
288
|
+
SENSITIVE: [:key, :create_time]
|
289
289
|
end
|
290
290
|
|
291
291
|
class CreateMapRequest
|
@@ -301,7 +301,7 @@ module Aws::LocationService
|
|
301
301
|
attr_accessor map_name: ::String
|
302
302
|
attr_accessor map_arn: ::String
|
303
303
|
attr_accessor create_time: ::Time
|
304
|
-
SENSITIVE: []
|
304
|
+
SENSITIVE: [:create_time]
|
305
305
|
end
|
306
306
|
|
307
307
|
class CreatePlaceIndexRequest
|
@@ -318,7 +318,7 @@ module Aws::LocationService
|
|
318
318
|
attr_accessor index_name: ::String
|
319
319
|
attr_accessor index_arn: ::String
|
320
320
|
attr_accessor create_time: ::Time
|
321
|
-
SENSITIVE: []
|
321
|
+
SENSITIVE: [:create_time]
|
322
322
|
end
|
323
323
|
|
324
324
|
class CreateRouteCalculatorRequest
|
@@ -334,7 +334,7 @@ module Aws::LocationService
|
|
334
334
|
attr_accessor calculator_name: ::String
|
335
335
|
attr_accessor calculator_arn: ::String
|
336
336
|
attr_accessor create_time: ::Time
|
337
|
-
SENSITIVE: []
|
337
|
+
SENSITIVE: [:create_time]
|
338
338
|
end
|
339
339
|
|
340
340
|
class CreateTrackerRequest
|
@@ -354,7 +354,7 @@ module Aws::LocationService
|
|
354
354
|
attr_accessor tracker_name: ::String
|
355
355
|
attr_accessor tracker_arn: ::String
|
356
356
|
attr_accessor create_time: ::Time
|
357
|
-
SENSITIVE: []
|
357
|
+
SENSITIVE: [:create_time]
|
358
358
|
end
|
359
359
|
|
360
360
|
class DataSourceConfiguration
|
@@ -427,7 +427,7 @@ module Aws::LocationService
|
|
427
427
|
attr_accessor create_time: ::Time
|
428
428
|
attr_accessor update_time: ::Time
|
429
429
|
attr_accessor geofence_count: ::Integer
|
430
|
-
SENSITIVE: []
|
430
|
+
SENSITIVE: [:create_time, :update_time]
|
431
431
|
end
|
432
432
|
|
433
433
|
class DescribeKeyRequest
|
@@ -445,7 +445,7 @@ module Aws::LocationService
|
|
445
445
|
attr_accessor update_time: ::Time
|
446
446
|
attr_accessor description: ::String
|
447
447
|
attr_accessor tags: ::Hash[::String, ::String]
|
448
|
-
SENSITIVE: [:key]
|
448
|
+
SENSITIVE: [:key, :create_time, :expire_time, :update_time]
|
449
449
|
end
|
450
450
|
|
451
451
|
class DescribeMapRequest
|
@@ -463,7 +463,7 @@ module Aws::LocationService
|
|
463
463
|
attr_accessor tags: ::Hash[::String, ::String]
|
464
464
|
attr_accessor create_time: ::Time
|
465
465
|
attr_accessor update_time: ::Time
|
466
|
-
SENSITIVE: []
|
466
|
+
SENSITIVE: [:create_time, :update_time]
|
467
467
|
end
|
468
468
|
|
469
469
|
class DescribePlaceIndexRequest
|
@@ -481,7 +481,7 @@ module Aws::LocationService
|
|
481
481
|
attr_accessor data_source: ::String
|
482
482
|
attr_accessor data_source_configuration: Types::DataSourceConfiguration
|
483
483
|
attr_accessor tags: ::Hash[::String, ::String]
|
484
|
-
SENSITIVE: []
|
484
|
+
SENSITIVE: [:create_time, :update_time]
|
485
485
|
end
|
486
486
|
|
487
487
|
class DescribeRouteCalculatorRequest
|
@@ -498,7 +498,7 @@ module Aws::LocationService
|
|
498
498
|
attr_accessor update_time: ::Time
|
499
499
|
attr_accessor data_source: ::String
|
500
500
|
attr_accessor tags: ::Hash[::String, ::String]
|
501
|
-
SENSITIVE: []
|
501
|
+
SENSITIVE: [:create_time, :update_time]
|
502
502
|
end
|
503
503
|
|
504
504
|
class DescribeTrackerRequest
|
@@ -519,7 +519,7 @@ module Aws::LocationService
|
|
519
519
|
attr_accessor position_filtering: ("TimeBased" | "DistanceBased" | "AccuracyBased")
|
520
520
|
attr_accessor event_bridge_enabled: bool
|
521
521
|
attr_accessor kms_key_enable_geospatial_queries: bool
|
522
|
-
SENSITIVE: []
|
522
|
+
SENSITIVE: [:create_time, :update_time]
|
523
523
|
end
|
524
524
|
|
525
525
|
class DevicePosition
|
@@ -529,7 +529,7 @@ module Aws::LocationService
|
|
529
529
|
attr_accessor position: ::Array[::Float]
|
530
530
|
attr_accessor accuracy: Types::PositionalAccuracy
|
531
531
|
attr_accessor position_properties: ::Hash[::String, ::String]
|
532
|
-
SENSITIVE: [:position, :position_properties]
|
532
|
+
SENSITIVE: [:sample_time, :received_time, :position, :position_properties]
|
533
533
|
end
|
534
534
|
|
535
535
|
class DevicePositionUpdate
|
@@ -538,7 +538,7 @@ module Aws::LocationService
|
|
538
538
|
attr_accessor position: ::Array[::Float]
|
539
539
|
attr_accessor accuracy: Types::PositionalAccuracy
|
540
540
|
attr_accessor position_properties: ::Hash[::String, ::String]
|
541
|
-
SENSITIVE: [:position, :position_properties]
|
541
|
+
SENSITIVE: [:sample_time, :position, :position_properties]
|
542
542
|
end
|
543
543
|
|
544
544
|
class DeviceState
|
@@ -549,7 +549,7 @@ module Aws::LocationService
|
|
549
549
|
attr_accessor ipv_4_address: ::String
|
550
550
|
attr_accessor wi_fi_access_points: ::Array[Types::WiFiAccessPoint]
|
551
551
|
attr_accessor cell_signals: Types::CellSignals
|
552
|
-
SENSITIVE: [:position]
|
552
|
+
SENSITIVE: [:sample_time, :position]
|
553
553
|
end
|
554
554
|
|
555
555
|
class DisassociateTrackerConsumerRequest
|
@@ -594,13 +594,14 @@ module Aws::LocationService
|
|
594
594
|
attr_accessor event_type: ("ENTER" | "EXIT" | "IDLE")
|
595
595
|
attr_accessor forecasted_breach_time: ::Time
|
596
596
|
attr_accessor geofence_properties: ::Hash[::String, ::String]
|
597
|
-
SENSITIVE: [:geofence_properties]
|
597
|
+
SENSITIVE: [:forecasted_breach_time, :geofence_properties]
|
598
598
|
end
|
599
599
|
|
600
600
|
class GeofenceGeometry
|
601
601
|
attr_accessor polygon: ::Array[::Array[::Array[::Float]]]
|
602
602
|
attr_accessor circle: Types::Circle
|
603
603
|
attr_accessor geobuf: ::String
|
604
|
+
attr_accessor multi_polygon: ::Array[::Array[::Array[::Array[::Float]]]]
|
604
605
|
SENSITIVE: [:circle, :geobuf]
|
605
606
|
end
|
606
607
|
|
@@ -611,7 +612,7 @@ module Aws::LocationService
|
|
611
612
|
attr_accessor start_time_inclusive: ::Time
|
612
613
|
attr_accessor end_time_exclusive: ::Time
|
613
614
|
attr_accessor max_results: ::Integer
|
614
|
-
SENSITIVE: []
|
615
|
+
SENSITIVE: [:start_time_inclusive, :end_time_exclusive]
|
615
616
|
end
|
616
617
|
|
617
618
|
class GetDevicePositionHistoryResponse
|
@@ -633,7 +634,7 @@ module Aws::LocationService
|
|
633
634
|
attr_accessor position: ::Array[::Float]
|
634
635
|
attr_accessor accuracy: Types::PositionalAccuracy
|
635
636
|
attr_accessor position_properties: ::Hash[::String, ::String]
|
636
|
-
SENSITIVE: [:position, :position_properties]
|
637
|
+
SENSITIVE: [:sample_time, :received_time, :position, :position_properties]
|
637
638
|
end
|
638
639
|
|
639
640
|
class GetGeofenceRequest
|
@@ -649,7 +650,7 @@ module Aws::LocationService
|
|
649
650
|
attr_accessor create_time: ::Time
|
650
651
|
attr_accessor update_time: ::Time
|
651
652
|
attr_accessor geofence_properties: ::Hash[::String, ::String]
|
652
|
-
SENSITIVE: [:geofence_properties]
|
653
|
+
SENSITIVE: [:create_time, :update_time, :geofence_properties]
|
653
654
|
end
|
654
655
|
|
655
656
|
class GetMapGlyphsRequest
|
@@ -771,7 +772,7 @@ module Aws::LocationService
|
|
771
772
|
attr_accessor position: ::Array[::Float]
|
772
773
|
attr_accessor accuracy: Types::PositionalAccuracy
|
773
774
|
attr_accessor position_properties: ::Hash[::String, ::String]
|
774
|
-
SENSITIVE: [:position, :position_properties]
|
775
|
+
SENSITIVE: [:sample_time, :position, :position_properties]
|
775
776
|
end
|
776
777
|
|
777
778
|
class ListGeofenceCollectionsRequest
|
@@ -793,7 +794,7 @@ module Aws::LocationService
|
|
793
794
|
attr_accessor pricing_plan_data_source: ::String
|
794
795
|
attr_accessor create_time: ::Time
|
795
796
|
attr_accessor update_time: ::Time
|
796
|
-
SENSITIVE: []
|
797
|
+
SENSITIVE: [:create_time, :update_time]
|
797
798
|
end
|
798
799
|
|
799
800
|
class ListGeofenceResponseEntry
|
@@ -803,7 +804,7 @@ module Aws::LocationService
|
|
803
804
|
attr_accessor create_time: ::Time
|
804
805
|
attr_accessor update_time: ::Time
|
805
806
|
attr_accessor geofence_properties: ::Hash[::String, ::String]
|
806
|
-
SENSITIVE: [:geofence_properties]
|
807
|
+
SENSITIVE: [:create_time, :update_time, :geofence_properties]
|
807
808
|
end
|
808
809
|
|
809
810
|
class ListGeofencesRequest
|
@@ -839,7 +840,7 @@ module Aws::LocationService
|
|
839
840
|
attr_accessor restrictions: Types::ApiKeyRestrictions
|
840
841
|
attr_accessor create_time: ::Time
|
841
842
|
attr_accessor update_time: ::Time
|
842
|
-
SENSITIVE: []
|
843
|
+
SENSITIVE: [:expire_time, :create_time, :update_time]
|
843
844
|
end
|
844
845
|
|
845
846
|
class ListMapsRequest
|
@@ -861,7 +862,7 @@ module Aws::LocationService
|
|
861
862
|
attr_accessor pricing_plan: ("RequestBasedUsage" | "MobileAssetTracking" | "MobileAssetManagement")
|
862
863
|
attr_accessor create_time: ::Time
|
863
864
|
attr_accessor update_time: ::Time
|
864
|
-
SENSITIVE: []
|
865
|
+
SENSITIVE: [:create_time, :update_time]
|
865
866
|
end
|
866
867
|
|
867
868
|
class ListPlaceIndexesRequest
|
@@ -883,7 +884,7 @@ module Aws::LocationService
|
|
883
884
|
attr_accessor pricing_plan: ("RequestBasedUsage" | "MobileAssetTracking" | "MobileAssetManagement")
|
884
885
|
attr_accessor create_time: ::Time
|
885
886
|
attr_accessor update_time: ::Time
|
886
|
-
SENSITIVE: []
|
887
|
+
SENSITIVE: [:create_time, :update_time]
|
887
888
|
end
|
888
889
|
|
889
890
|
class ListRouteCalculatorsRequest
|
@@ -905,7 +906,7 @@ module Aws::LocationService
|
|
905
906
|
attr_accessor pricing_plan: ("RequestBasedUsage" | "MobileAssetTracking" | "MobileAssetManagement")
|
906
907
|
attr_accessor create_time: ::Time
|
907
908
|
attr_accessor update_time: ::Time
|
908
|
-
SENSITIVE: []
|
909
|
+
SENSITIVE: [:create_time, :update_time]
|
909
910
|
end
|
910
911
|
|
911
912
|
class ListTagsForResourceRequest
|
@@ -950,7 +951,7 @@ module Aws::LocationService
|
|
950
951
|
attr_accessor pricing_plan_data_source: ::String
|
951
952
|
attr_accessor create_time: ::Time
|
952
953
|
attr_accessor update_time: ::Time
|
953
|
-
SENSITIVE: []
|
954
|
+
SENSITIVE: [:create_time, :update_time]
|
954
955
|
end
|
955
956
|
|
956
957
|
class LteCellDetails
|
@@ -986,13 +987,13 @@ module Aws::LocationService
|
|
986
987
|
attr_accessor style: ::String
|
987
988
|
attr_accessor political_view: ::String
|
988
989
|
attr_accessor custom_layers: ::Array[::String]
|
989
|
-
SENSITIVE: []
|
990
|
+
SENSITIVE: [:political_view]
|
990
991
|
end
|
991
992
|
|
992
993
|
class MapConfigurationUpdate
|
993
994
|
attr_accessor political_view: ::String
|
994
995
|
attr_accessor custom_layers: ::Array[::String]
|
995
|
-
SENSITIVE: []
|
996
|
+
SENSITIVE: [:political_view]
|
996
997
|
end
|
997
998
|
|
998
999
|
class Place
|
@@ -1023,7 +1024,7 @@ module Aws::LocationService
|
|
1023
1024
|
|
1024
1025
|
class PositionalAccuracy
|
1025
1026
|
attr_accessor horizontal: ::Float
|
1026
|
-
SENSITIVE: []
|
1027
|
+
SENSITIVE: [:horizontal]
|
1027
1028
|
end
|
1028
1029
|
|
1029
1030
|
class PutGeofenceRequest
|
@@ -1038,7 +1039,7 @@ module Aws::LocationService
|
|
1038
1039
|
attr_accessor geofence_id: ::String
|
1039
1040
|
attr_accessor create_time: ::Time
|
1040
1041
|
attr_accessor update_time: ::Time
|
1041
|
-
SENSITIVE: []
|
1042
|
+
SENSITIVE: [:create_time, :update_time]
|
1042
1043
|
end
|
1043
1044
|
|
1044
1045
|
class ResourceNotFoundException
|
@@ -1242,7 +1243,7 @@ module Aws::LocationService
|
|
1242
1243
|
attr_accessor collection_name: ::String
|
1243
1244
|
attr_accessor collection_arn: ::String
|
1244
1245
|
attr_accessor update_time: ::Time
|
1245
|
-
SENSITIVE: []
|
1246
|
+
SENSITIVE: [:update_time]
|
1246
1247
|
end
|
1247
1248
|
|
1248
1249
|
class UpdateKeyRequest
|
@@ -1252,14 +1253,14 @@ module Aws::LocationService
|
|
1252
1253
|
attr_accessor no_expiry: bool
|
1253
1254
|
attr_accessor force_update: bool
|
1254
1255
|
attr_accessor restrictions: Types::ApiKeyRestrictions
|
1255
|
-
SENSITIVE: []
|
1256
|
+
SENSITIVE: [:expire_time]
|
1256
1257
|
end
|
1257
1258
|
|
1258
1259
|
class UpdateKeyResponse
|
1259
1260
|
attr_accessor key_arn: ::String
|
1260
1261
|
attr_accessor key_name: ::String
|
1261
1262
|
attr_accessor update_time: ::Time
|
1262
|
-
SENSITIVE: []
|
1263
|
+
SENSITIVE: [:update_time]
|
1263
1264
|
end
|
1264
1265
|
|
1265
1266
|
class UpdateMapRequest
|
@@ -1274,7 +1275,7 @@ module Aws::LocationService
|
|
1274
1275
|
attr_accessor map_name: ::String
|
1275
1276
|
attr_accessor map_arn: ::String
|
1276
1277
|
attr_accessor update_time: ::Time
|
1277
|
-
SENSITIVE: []
|
1278
|
+
SENSITIVE: [:update_time]
|
1278
1279
|
end
|
1279
1280
|
|
1280
1281
|
class UpdatePlaceIndexRequest
|
@@ -1289,7 +1290,7 @@ module Aws::LocationService
|
|
1289
1290
|
attr_accessor index_name: ::String
|
1290
1291
|
attr_accessor index_arn: ::String
|
1291
1292
|
attr_accessor update_time: ::Time
|
1292
|
-
SENSITIVE: []
|
1293
|
+
SENSITIVE: [:update_time]
|
1293
1294
|
end
|
1294
1295
|
|
1295
1296
|
class UpdateRouteCalculatorRequest
|
@@ -1303,7 +1304,7 @@ module Aws::LocationService
|
|
1303
1304
|
attr_accessor calculator_name: ::String
|
1304
1305
|
attr_accessor calculator_arn: ::String
|
1305
1306
|
attr_accessor update_time: ::Time
|
1306
|
-
SENSITIVE: []
|
1307
|
+
SENSITIVE: [:update_time]
|
1307
1308
|
end
|
1308
1309
|
|
1309
1310
|
class UpdateTrackerRequest
|
@@ -1321,7 +1322,7 @@ module Aws::LocationService
|
|
1321
1322
|
attr_accessor tracker_name: ::String
|
1322
1323
|
attr_accessor tracker_arn: ::String
|
1323
1324
|
attr_accessor update_time: ::Time
|
1324
|
-
SENSITIVE: []
|
1325
|
+
SENSITIVE: [:update_time]
|
1325
1326
|
end
|
1326
1327
|
|
1327
1328
|
class ValidationException
|
@@ -1350,7 +1351,7 @@ module Aws::LocationService
|
|
1350
1351
|
attr_accessor sample_time: ::Time
|
1351
1352
|
attr_accessor received_time: ::Time
|
1352
1353
|
attr_accessor distance_unit: ("Kilometers" | "Miles")
|
1353
|
-
SENSITIVE: []
|
1354
|
+
SENSITIVE: [:sample_time, :received_time]
|
1354
1355
|
end
|
1355
1356
|
|
1356
1357
|
class WiFiAccessPoint
|