boto3-pydantic-location 1.0.1__py3-none-any.whl → 1.0.2__py3-none-any.whl

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.
@@ -34,6 +34,7 @@ class BatchItemError(BaseValidatorModel):
34
34
  Message: Optional[str] = None
35
35
 
36
36
 
37
+ # This class is the input for the 'batch_delete_device_position_history' function.
37
38
  class BatchDeleteDevicePositionHistoryRequest(BaseValidatorModel):
38
39
  TrackerName: str
39
40
  DeviceIds: List[str]
@@ -47,11 +48,13 @@ class ResponseMetadata(BaseValidatorModel):
47
48
  HostId: Optional[str] = None
48
49
 
49
50
 
51
+ # This class is the input for the 'batch_delete_geofence' function.
50
52
  class BatchDeleteGeofenceRequest(BaseValidatorModel):
51
53
  CollectionName: str
52
54
  GeofenceIds: List[str]
53
55
 
54
56
 
57
+ # This class is the input for the 'batch_get_device_position' function.
55
58
  class BatchGetDevicePositionRequest(BaseValidatorModel):
56
59
  TrackerName: str
57
60
  DeviceIds: List[str]
@@ -109,6 +112,7 @@ class Circle(BaseValidatorModel):
109
112
  Radius: float
110
113
 
111
114
 
115
+ # This class is the input for the 'create_geofence_collection' function.
112
116
  class CreateGeofenceCollectionRequest(BaseValidatorModel):
113
117
  CollectionName: str
114
118
  PricingPlan: Optional[PricingPlanType] = None
@@ -122,6 +126,7 @@ class DataSourceConfiguration(BaseValidatorModel):
122
126
  IntendedUse: Optional[IntendedUseType] = None
123
127
 
124
128
 
129
+ # This class is the input for the 'create_route_calculator' function.
125
130
  class CreateRouteCalculatorRequest(BaseValidatorModel):
126
131
  CalculatorName: str
127
132
  DataSource: str
@@ -130,6 +135,7 @@ class CreateRouteCalculatorRequest(BaseValidatorModel):
130
135
  Tags: Optional[Dict[str, str]] = None
131
136
 
132
137
 
138
+ # This class is the input for the 'create_tracker' function.
133
139
  class CreateTrackerRequest(BaseValidatorModel):
134
140
  TrackerName: str
135
141
  PricingPlan: Optional[PricingPlanType] = None
@@ -167,14 +173,17 @@ class DeleteTrackerRequest(BaseValidatorModel):
167
173
  TrackerName: str
168
174
 
169
175
 
176
+ # This class is the input for the 'describe_geofence_collection' function.
170
177
  class DescribeGeofenceCollectionRequest(BaseValidatorModel):
171
178
  CollectionName: str
172
179
 
173
180
 
181
+ # This class is the input for the 'describe_key' function.
174
182
  class DescribeKeyRequest(BaseValidatorModel):
175
183
  KeyName: str
176
184
 
177
185
 
186
+ # This class is the input for the 'describe_map' function.
178
187
  class DescribeMapRequest(BaseValidatorModel):
179
188
  MapName: str
180
189
 
@@ -185,14 +194,17 @@ class MapConfigurationOutput(BaseValidatorModel):
185
194
  CustomLayers: Optional[List[str]] = None
186
195
 
187
196
 
197
+ # This class is the input for the 'describe_place_index' function.
188
198
  class DescribePlaceIndexRequest(BaseValidatorModel):
189
199
  IndexName: str
190
200
 
191
201
 
202
+ # This class is the input for the 'describe_route_calculator' function.
192
203
  class DescribeRouteCalculatorRequest(BaseValidatorModel):
193
204
  CalculatorName: str
194
205
 
195
206
 
207
+ # This class is the input for the 'describe_tracker' function.
196
208
  class DescribeTrackerRequest(BaseValidatorModel):
197
209
  TrackerName: str
198
210
 
@@ -232,16 +244,19 @@ class ForecastedEvent(BaseValidatorModel):
232
244
  GeofenceProperties: Optional[Dict[str, str]] = None
233
245
 
234
246
 
247
+ # This class is the input for the 'get_device_position' function.
235
248
  class GetDevicePositionRequest(BaseValidatorModel):
236
249
  TrackerName: str
237
250
  DeviceId: str
238
251
 
239
252
 
253
+ # This class is the input for the 'get_geofence' function.
240
254
  class GetGeofenceRequest(BaseValidatorModel):
241
255
  CollectionName: str
242
256
  GeofenceId: str
243
257
 
244
258
 
259
+ # This class is the input for the 'get_map_glyphs' function.
245
260
  class GetMapGlyphsRequest(BaseValidatorModel):
246
261
  MapName: str
247
262
  FontStack: str
@@ -249,17 +264,20 @@ class GetMapGlyphsRequest(BaseValidatorModel):
249
264
  Key: Optional[str] = None
250
265
 
251
266
 
267
+ # This class is the input for the 'get_map_sprites' function.
252
268
  class GetMapSpritesRequest(BaseValidatorModel):
253
269
  MapName: str
254
270
  FileName: str
255
271
  Key: Optional[str] = None
256
272
 
257
273
 
274
+ # This class is the input for the 'get_map_style_descriptor' function.
258
275
  class GetMapStyleDescriptorRequest(BaseValidatorModel):
259
276
  MapName: str
260
277
  Key: Optional[str] = None
261
278
 
262
279
 
280
+ # This class is the input for the 'get_map_tile' function.
263
281
  class GetMapTileRequest(BaseValidatorModel):
264
282
  MapName: str
265
283
  Z: str
@@ -268,6 +286,7 @@ class GetMapTileRequest(BaseValidatorModel):
268
286
  Key: Optional[str] = None
269
287
 
270
288
 
289
+ # This class is the input for the 'get_place' function.
271
290
  class GetPlaceRequest(BaseValidatorModel):
272
291
  IndexName: str
273
292
  PlaceId: str
@@ -291,6 +310,7 @@ class TrackingFilterGeometry(BaseValidatorModel):
291
310
  Polygon: Optional[List[List[List[float]]]] = None
292
311
 
293
312
 
313
+ # This class is the input for the 'list_geofence_collections' function.
294
314
  class ListGeofenceCollectionsRequest(BaseValidatorModel):
295
315
  MaxResults: Optional[int] = None
296
316
  NextToken: Optional[str] = None
@@ -305,12 +325,14 @@ class ListGeofenceCollectionsResponseEntry(BaseValidatorModel):
305
325
  PricingPlanDataSource: Optional[str] = None
306
326
 
307
327
 
328
+ # This class is the input for the 'list_geofences' function.
308
329
  class ListGeofencesRequest(BaseValidatorModel):
309
330
  CollectionName: str
310
331
  NextToken: Optional[str] = None
311
332
  MaxResults: Optional[int] = None
312
333
 
313
334
 
335
+ # This class is the input for the 'list_maps' function.
314
336
  class ListMapsRequest(BaseValidatorModel):
315
337
  MaxResults: Optional[int] = None
316
338
  NextToken: Optional[str] = None
@@ -325,6 +347,7 @@ class ListMapsResponseEntry(BaseValidatorModel):
325
347
  PricingPlan: Optional[PricingPlanType] = None
326
348
 
327
349
 
350
+ # This class is the input for the 'list_place_indexes' function.
328
351
  class ListPlaceIndexesRequest(BaseValidatorModel):
329
352
  MaxResults: Optional[int] = None
330
353
  NextToken: Optional[str] = None
@@ -339,6 +362,7 @@ class ListPlaceIndexesResponseEntry(BaseValidatorModel):
339
362
  PricingPlan: Optional[PricingPlanType] = None
340
363
 
341
364
 
365
+ # This class is the input for the 'list_route_calculators' function.
342
366
  class ListRouteCalculatorsRequest(BaseValidatorModel):
343
367
  MaxResults: Optional[int] = None
344
368
  NextToken: Optional[str] = None
@@ -353,16 +377,19 @@ class ListRouteCalculatorsResponseEntry(BaseValidatorModel):
353
377
  PricingPlan: Optional[PricingPlanType] = None
354
378
 
355
379
 
380
+ # This class is the input for the 'list_tags_for_resource' function.
356
381
  class ListTagsForResourceRequest(BaseValidatorModel):
357
382
  ResourceArn: str
358
383
 
359
384
 
385
+ # This class is the input for the 'list_tracker_consumers' function.
360
386
  class ListTrackerConsumersRequest(BaseValidatorModel):
361
387
  TrackerName: str
362
388
  MaxResults: Optional[int] = None
363
389
  NextToken: Optional[str] = None
364
390
 
365
391
 
392
+ # This class is the input for the 'list_trackers' function.
366
393
  class ListTrackersRequest(BaseValidatorModel):
367
394
  MaxResults: Optional[int] = None
368
395
  NextToken: Optional[str] = None
@@ -422,6 +449,7 @@ class SearchForSuggestionsResult(BaseValidatorModel):
422
449
  SupplementalCategories: Optional[List[str]] = None
423
450
 
424
451
 
452
+ # This class is the input for the 'search_place_index_for_position' function.
425
453
  class SearchPlaceIndexForPositionRequest(BaseValidatorModel):
426
454
  IndexName: str
427
455
  Position: List[float]
@@ -437,6 +465,7 @@ class SearchPlaceIndexForPositionSummary(BaseValidatorModel):
437
465
  Language: Optional[str] = None
438
466
 
439
467
 
468
+ # This class is the input for the 'search_place_index_for_suggestions' function.
440
469
  class SearchPlaceIndexForSuggestionsRequest(BaseValidatorModel):
441
470
  IndexName: str
442
471
  Text: str
@@ -460,6 +489,7 @@ class SearchPlaceIndexForSuggestionsSummary(BaseValidatorModel):
460
489
  FilterCategories: Optional[List[str]] = None
461
490
 
462
491
 
492
+ # This class is the input for the 'search_place_index_for_text' function.
463
493
  class SearchPlaceIndexForTextRequest(BaseValidatorModel):
464
494
  IndexName: str
465
495
  Text: str
@@ -494,6 +524,7 @@ class UntagResourceRequest(BaseValidatorModel):
494
524
  TagKeys: List[str]
495
525
 
496
526
 
527
+ # This class is the input for the 'update_geofence_collection' function.
497
528
  class UpdateGeofenceCollectionRequest(BaseValidatorModel):
498
529
  CollectionName: str
499
530
  PricingPlan: Optional[PricingPlanType] = None
@@ -501,12 +532,14 @@ class UpdateGeofenceCollectionRequest(BaseValidatorModel):
501
532
  Description: Optional[str] = None
502
533
 
503
534
 
535
+ # This class is the input for the 'update_route_calculator' function.
504
536
  class UpdateRouteCalculatorRequest(BaseValidatorModel):
505
537
  CalculatorName: str
506
538
  PricingPlan: Optional[PricingPlanType] = None
507
539
  Description: Optional[str] = None
508
540
 
509
541
 
542
+ # This class is the input for the 'update_tracker' function.
510
543
  class UpdateTrackerRequest(BaseValidatorModel):
511
544
  TrackerName: str
512
545
  PricingPlan: Optional[PricingPlanType] = None
@@ -517,6 +550,7 @@ class UpdateTrackerRequest(BaseValidatorModel):
517
550
  KmsKeyEnableGeospatialQueries: Optional[bool] = None
518
551
 
519
552
 
553
+ # This class is the input for the 'list_keys' function.
520
554
  class ListKeysRequest(BaseValidatorModel):
521
555
  MaxResults: Optional[int] = None
522
556
  NextToken: Optional[str] = None
@@ -566,6 +600,7 @@ class BatchUpdateDevicePositionError(BaseValidatorModel):
566
600
  Error: BatchItemError
567
601
 
568
602
 
603
+ # This class is the output for the 'create_geofence_collection' function.
569
604
  class CreateGeofenceCollectionResponse(BaseValidatorModel):
570
605
  CollectionName: str
571
606
  CollectionArn: str
@@ -573,6 +608,7 @@ class CreateGeofenceCollectionResponse(BaseValidatorModel):
573
608
  ResponseMetadata: ResponseMetadata
574
609
 
575
610
 
611
+ # This class is the output for the 'create_key' function.
576
612
  class CreateKeyResponse(BaseValidatorModel):
577
613
  Key: str
578
614
  KeyArn: str
@@ -581,6 +617,7 @@ class CreateKeyResponse(BaseValidatorModel):
581
617
  ResponseMetadata: ResponseMetadata
582
618
 
583
619
 
620
+ # This class is the output for the 'create_map' function.
584
621
  class CreateMapResponse(BaseValidatorModel):
585
622
  MapName: str
586
623
  MapArn: str
@@ -588,6 +625,7 @@ class CreateMapResponse(BaseValidatorModel):
588
625
  ResponseMetadata: ResponseMetadata
589
626
 
590
627
 
628
+ # This class is the output for the 'create_place_index' function.
591
629
  class CreatePlaceIndexResponse(BaseValidatorModel):
592
630
  IndexName: str
593
631
  IndexArn: str
@@ -595,6 +633,7 @@ class CreatePlaceIndexResponse(BaseValidatorModel):
595
633
  ResponseMetadata: ResponseMetadata
596
634
 
597
635
 
636
+ # This class is the output for the 'create_route_calculator' function.
598
637
  class CreateRouteCalculatorResponse(BaseValidatorModel):
599
638
  CalculatorName: str
600
639
  CalculatorArn: str
@@ -602,6 +641,7 @@ class CreateRouteCalculatorResponse(BaseValidatorModel):
602
641
  ResponseMetadata: ResponseMetadata
603
642
 
604
643
 
644
+ # This class is the output for the 'create_tracker' function.
605
645
  class CreateTrackerResponse(BaseValidatorModel):
606
646
  TrackerName: str
607
647
  TrackerArn: str
@@ -609,6 +649,7 @@ class CreateTrackerResponse(BaseValidatorModel):
609
649
  ResponseMetadata: ResponseMetadata
610
650
 
611
651
 
652
+ # This class is the output for the 'describe_geofence_collection' function.
612
653
  class DescribeGeofenceCollectionResponse(BaseValidatorModel):
613
654
  CollectionName: str
614
655
  CollectionArn: str
@@ -623,6 +664,7 @@ class DescribeGeofenceCollectionResponse(BaseValidatorModel):
623
664
  ResponseMetadata: ResponseMetadata
624
665
 
625
666
 
667
+ # This class is the output for the 'describe_key' function.
626
668
  class DescribeKeyResponse(BaseValidatorModel):
627
669
  Key: str
628
670
  KeyArn: str
@@ -636,6 +678,7 @@ class DescribeKeyResponse(BaseValidatorModel):
636
678
  ResponseMetadata: ResponseMetadata
637
679
 
638
680
 
681
+ # This class is the output for the 'describe_route_calculator' function.
639
682
  class DescribeRouteCalculatorResponse(BaseValidatorModel):
640
683
  CalculatorName: str
641
684
  CalculatorArn: str
@@ -648,6 +691,7 @@ class DescribeRouteCalculatorResponse(BaseValidatorModel):
648
691
  ResponseMetadata: ResponseMetadata
649
692
 
650
693
 
694
+ # This class is the output for the 'describe_tracker' function.
651
695
  class DescribeTrackerResponse(BaseValidatorModel):
652
696
  TrackerName: str
653
697
  TrackerArn: str
@@ -664,6 +708,7 @@ class DescribeTrackerResponse(BaseValidatorModel):
664
708
  ResponseMetadata: ResponseMetadata
665
709
 
666
710
 
711
+ # This class is the output for the 'get_map_glyphs' function.
667
712
  class GetMapGlyphsResponse(BaseValidatorModel):
668
713
  Blob: StreamingBody
669
714
  ContentType: str
@@ -671,6 +716,7 @@ class GetMapGlyphsResponse(BaseValidatorModel):
671
716
  ResponseMetadata: ResponseMetadata
672
717
 
673
718
 
719
+ # This class is the output for the 'get_map_sprites' function.
674
720
  class GetMapSpritesResponse(BaseValidatorModel):
675
721
  Blob: StreamingBody
676
722
  ContentType: str
@@ -678,6 +724,7 @@ class GetMapSpritesResponse(BaseValidatorModel):
678
724
  ResponseMetadata: ResponseMetadata
679
725
 
680
726
 
727
+ # This class is the output for the 'get_map_style_descriptor' function.
681
728
  class GetMapStyleDescriptorResponse(BaseValidatorModel):
682
729
  Blob: StreamingBody
683
730
  ContentType: str
@@ -685,6 +732,7 @@ class GetMapStyleDescriptorResponse(BaseValidatorModel):
685
732
  ResponseMetadata: ResponseMetadata
686
733
 
687
734
 
735
+ # This class is the output for the 'get_map_tile' function.
688
736
  class GetMapTileResponse(BaseValidatorModel):
689
737
  Blob: StreamingBody
690
738
  ContentType: str
@@ -692,17 +740,20 @@ class GetMapTileResponse(BaseValidatorModel):
692
740
  ResponseMetadata: ResponseMetadata
693
741
 
694
742
 
743
+ # This class is the output for the 'list_tags_for_resource' function.
695
744
  class ListTagsForResourceResponse(BaseValidatorModel):
696
745
  Tags: Dict[str, str]
697
746
  ResponseMetadata: ResponseMetadata
698
747
 
699
748
 
749
+ # This class is the output for the 'list_tracker_consumers' function.
700
750
  class ListTrackerConsumersResponse(BaseValidatorModel):
701
751
  ConsumerArns: List[str]
702
752
  ResponseMetadata: ResponseMetadata
703
753
  NextToken: Optional[str] = None
704
754
 
705
755
 
756
+ # This class is the output for the 'put_geofence' function.
706
757
  class PutGeofenceResponse(BaseValidatorModel):
707
758
  GeofenceId: str
708
759
  CreateTime: datetime
@@ -710,6 +761,7 @@ class PutGeofenceResponse(BaseValidatorModel):
710
761
  ResponseMetadata: ResponseMetadata
711
762
 
712
763
 
764
+ # This class is the output for the 'update_geofence_collection' function.
713
765
  class UpdateGeofenceCollectionResponse(BaseValidatorModel):
714
766
  CollectionName: str
715
767
  CollectionArn: str
@@ -717,6 +769,7 @@ class UpdateGeofenceCollectionResponse(BaseValidatorModel):
717
769
  ResponseMetadata: ResponseMetadata
718
770
 
719
771
 
772
+ # This class is the output for the 'update_key' function.
720
773
  class UpdateKeyResponse(BaseValidatorModel):
721
774
  KeyArn: str
722
775
  KeyName: str
@@ -724,6 +777,7 @@ class UpdateKeyResponse(BaseValidatorModel):
724
777
  ResponseMetadata: ResponseMetadata
725
778
 
726
779
 
780
+ # This class is the output for the 'update_map' function.
727
781
  class UpdateMapResponse(BaseValidatorModel):
728
782
  MapName: str
729
783
  MapArn: str
@@ -731,6 +785,7 @@ class UpdateMapResponse(BaseValidatorModel):
731
785
  ResponseMetadata: ResponseMetadata
732
786
 
733
787
 
788
+ # This class is the output for the 'update_place_index' function.
734
789
  class UpdatePlaceIndexResponse(BaseValidatorModel):
735
790
  IndexName: str
736
791
  IndexArn: str
@@ -738,6 +793,7 @@ class UpdatePlaceIndexResponse(BaseValidatorModel):
738
793
  ResponseMetadata: ResponseMetadata
739
794
 
740
795
 
796
+ # This class is the output for the 'update_route_calculator' function.
741
797
  class UpdateRouteCalculatorResponse(BaseValidatorModel):
742
798
  CalculatorName: str
743
799
  CalculatorArn: str
@@ -745,6 +801,7 @@ class UpdateRouteCalculatorResponse(BaseValidatorModel):
745
801
  ResponseMetadata: ResponseMetadata
746
802
 
747
803
 
804
+ # This class is the output for the 'update_tracker' function.
748
805
  class UpdateTrackerResponse(BaseValidatorModel):
749
806
  TrackerName: str
750
807
  TrackerArn: str
@@ -752,6 +809,7 @@ class UpdateTrackerResponse(BaseValidatorModel):
752
809
  ResponseMetadata: ResponseMetadata
753
810
 
754
811
 
812
+ # This class is the input for the 'get_device_position_history' function.
755
813
  class GetDevicePositionHistoryRequest(BaseValidatorModel):
756
814
  TrackerName: str
757
815
  DeviceId: str
@@ -776,6 +834,7 @@ class GeofenceGeometryOutput(BaseValidatorModel):
776
834
  CircleUnion = Union[Circle, CircleOutput]
777
835
 
778
836
 
837
+ # This class is the input for the 'create_place_index' function.
779
838
  class CreatePlaceIndexRequest(BaseValidatorModel):
780
839
  IndexName: str
781
840
  DataSource: str
@@ -785,6 +844,7 @@ class CreatePlaceIndexRequest(BaseValidatorModel):
785
844
  Tags: Optional[Dict[str, str]] = None
786
845
 
787
846
 
847
+ # This class is the output for the 'describe_place_index' function.
788
848
  class DescribePlaceIndexResponse(BaseValidatorModel):
789
849
  IndexName: str
790
850
  IndexArn: str
@@ -798,6 +858,7 @@ class DescribePlaceIndexResponse(BaseValidatorModel):
798
858
  ResponseMetadata: ResponseMetadata
799
859
 
800
860
 
861
+ # This class is the input for the 'update_place_index' function.
801
862
  class UpdatePlaceIndexRequest(BaseValidatorModel):
802
863
  IndexName: str
803
864
  PricingPlan: Optional[PricingPlanType] = None
@@ -805,6 +866,7 @@ class UpdatePlaceIndexRequest(BaseValidatorModel):
805
866
  DataSourceConfiguration: Optional[DataSourceConfiguration] = None
806
867
 
807
868
 
869
+ # This class is the output for the 'describe_map' function.
808
870
  class DescribeMapResponse(BaseValidatorModel):
809
871
  MapName: str
810
872
  MapArn: str
@@ -835,6 +897,7 @@ class DevicePositionUpdate(BaseValidatorModel):
835
897
  PositionProperties: Optional[Dict[str, str]] = None
836
898
 
837
899
 
900
+ # This class is the output for the 'get_device_position' function.
838
901
  class GetDevicePositionResponse(BaseValidatorModel):
839
902
  DeviceId: str
840
903
  SampleTime: datetime
@@ -860,6 +923,7 @@ class ListDevicePositionsResponseEntry(BaseValidatorModel):
860
923
  PositionProperties: Optional[Dict[str, str]] = None
861
924
 
862
925
 
926
+ # This class is the input for the 'forecast_geofence_events' function.
863
927
  class ForecastGeofenceEventsRequest(BaseValidatorModel):
864
928
  CollectionName: str
865
929
  DeviceState: ForecastGeofenceEventsDeviceState
@@ -922,6 +986,7 @@ class ListTrackersRequestPaginate(BaseValidatorModel):
922
986
  PaginationConfig: Optional[PaginatorConfig] = None
923
987
 
924
988
 
989
+ # This class is the output for the 'forecast_geofence_events' function.
925
990
  class ForecastGeofenceEventsResponse(BaseValidatorModel):
926
991
  ForecastedEvents: List[ForecastedEvent]
927
992
  DistanceUnit: DistanceUnitType
@@ -945,6 +1010,7 @@ class ListDevicePositionsRequestPaginate(BaseValidatorModel):
945
1010
  PaginationConfig: Optional[PaginatorConfig] = None
946
1011
 
947
1012
 
1013
+ # This class is the input for the 'list_device_positions' function.
948
1014
  class ListDevicePositionsRequest(BaseValidatorModel):
949
1015
  TrackerName: str
950
1016
  MaxResults: Optional[int] = None
@@ -952,30 +1018,35 @@ class ListDevicePositionsRequest(BaseValidatorModel):
952
1018
  FilterGeometry: Optional[TrackingFilterGeometry] = None
953
1019
 
954
1020
 
1021
+ # This class is the output for the 'list_geofence_collections' function.
955
1022
  class ListGeofenceCollectionsResponse(BaseValidatorModel):
956
1023
  Entries: List[ListGeofenceCollectionsResponseEntry]
957
1024
  ResponseMetadata: ResponseMetadata
958
1025
  NextToken: Optional[str] = None
959
1026
 
960
1027
 
1028
+ # This class is the output for the 'list_maps' function.
961
1029
  class ListMapsResponse(BaseValidatorModel):
962
1030
  Entries: List[ListMapsResponseEntry]
963
1031
  ResponseMetadata: ResponseMetadata
964
1032
  NextToken: Optional[str] = None
965
1033
 
966
1034
 
1035
+ # This class is the output for the 'list_place_indexes' function.
967
1036
  class ListPlaceIndexesResponse(BaseValidatorModel):
968
1037
  Entries: List[ListPlaceIndexesResponseEntry]
969
1038
  ResponseMetadata: ResponseMetadata
970
1039
  NextToken: Optional[str] = None
971
1040
 
972
1041
 
1042
+ # This class is the output for the 'list_route_calculators' function.
973
1043
  class ListRouteCalculatorsResponse(BaseValidatorModel):
974
1044
  Entries: List[ListRouteCalculatorsResponseEntry]
975
1045
  ResponseMetadata: ResponseMetadata
976
1046
  NextToken: Optional[str] = None
977
1047
 
978
1048
 
1049
+ # This class is the output for the 'list_trackers' function.
979
1050
  class ListTrackersResponse(BaseValidatorModel):
980
1051
  Entries: List[ListTrackersResponseEntry]
981
1052
  ResponseMetadata: ResponseMetadata
@@ -997,6 +1068,7 @@ class LteCellDetails(BaseValidatorModel):
997
1068
  MapConfigurationUnion = Union[MapConfiguration, MapConfigurationOutput]
998
1069
 
999
1070
 
1071
+ # This class is the input for the 'update_map' function.
1000
1072
  class UpdateMapRequest(BaseValidatorModel):
1001
1073
  MapName: str
1002
1074
  PricingPlan: Optional[PricingPlanType] = None
@@ -1030,18 +1102,21 @@ class RouteMatrixEntry(BaseValidatorModel):
1030
1102
  Error: Optional[RouteMatrixEntryError] = None
1031
1103
 
1032
1104
 
1105
+ # This class is the output for the 'search_place_index_for_suggestions' function.
1033
1106
  class SearchPlaceIndexForSuggestionsResponse(BaseValidatorModel):
1034
1107
  Summary: SearchPlaceIndexForSuggestionsSummary
1035
1108
  Results: List[SearchForSuggestionsResult]
1036
1109
  ResponseMetadata: ResponseMetadata
1037
1110
 
1038
1111
 
1112
+ # This class is the output for the 'list_keys' function.
1039
1113
  class ListKeysResponse(BaseValidatorModel):
1040
1114
  Entries: List[ListKeysResponseEntry]
1041
1115
  ResponseMetadata: ResponseMetadata
1042
1116
  NextToken: Optional[str] = None
1043
1117
 
1044
1118
 
1119
+ # This class is the input for the 'create_key' function.
1045
1120
  class CreateKeyRequest(BaseValidatorModel):
1046
1121
  KeyName: str
1047
1122
  Restrictions: ApiKeyRestrictionsUnion
@@ -1051,6 +1126,7 @@ class CreateKeyRequest(BaseValidatorModel):
1051
1126
  Tags: Optional[Dict[str, str]] = None
1052
1127
 
1053
1128
 
1129
+ # This class is the input for the 'update_key' function.
1054
1130
  class UpdateKeyRequest(BaseValidatorModel):
1055
1131
  KeyName: str
1056
1132
  Description: Optional[str] = None
@@ -1060,32 +1136,38 @@ class UpdateKeyRequest(BaseValidatorModel):
1060
1136
  Restrictions: Optional[ApiKeyRestrictionsUnion] = None
1061
1137
 
1062
1138
 
1139
+ # This class is the output for the 'batch_delete_device_position_history' function.
1063
1140
  class BatchDeleteDevicePositionHistoryResponse(BaseValidatorModel):
1064
1141
  Errors: List[BatchDeleteDevicePositionHistoryError]
1065
1142
  ResponseMetadata: ResponseMetadata
1066
1143
 
1067
1144
 
1145
+ # This class is the output for the 'batch_delete_geofence' function.
1068
1146
  class BatchDeleteGeofenceResponse(BaseValidatorModel):
1069
1147
  Errors: List[BatchDeleteGeofenceError]
1070
1148
  ResponseMetadata: ResponseMetadata
1071
1149
 
1072
1150
 
1151
+ # This class is the output for the 'batch_evaluate_geofences' function.
1073
1152
  class BatchEvaluateGeofencesResponse(BaseValidatorModel):
1074
1153
  Errors: List[BatchEvaluateGeofencesError]
1075
1154
  ResponseMetadata: ResponseMetadata
1076
1155
 
1077
1156
 
1157
+ # This class is the output for the 'batch_put_geofence' function.
1078
1158
  class BatchPutGeofenceResponse(BaseValidatorModel):
1079
1159
  Successes: List[BatchPutGeofenceSuccess]
1080
1160
  Errors: List[BatchPutGeofenceError]
1081
1161
  ResponseMetadata: ResponseMetadata
1082
1162
 
1083
1163
 
1164
+ # This class is the output for the 'batch_update_device_position' function.
1084
1165
  class BatchUpdateDevicePositionResponse(BaseValidatorModel):
1085
1166
  Errors: List[BatchUpdateDevicePositionError]
1086
1167
  ResponseMetadata: ResponseMetadata
1087
1168
 
1088
1169
 
1170
+ # This class is the input for the 'calculate_route_matrix' function.
1089
1171
  class CalculateRouteMatrixRequest(BaseValidatorModel):
1090
1172
  CalculatorName: str
1091
1173
  DeparturePositions: List[List[float]]
@@ -1099,6 +1181,7 @@ class CalculateRouteMatrixRequest(BaseValidatorModel):
1099
1181
  Key: Optional[str] = None
1100
1182
 
1101
1183
 
1184
+ # This class is the input for the 'calculate_route' function.
1102
1185
  class CalculateRouteRequest(BaseValidatorModel):
1103
1186
  CalculatorName: str
1104
1187
  DeparturePosition: List[float]
@@ -1116,6 +1199,7 @@ class CalculateRouteRequest(BaseValidatorModel):
1116
1199
  Key: Optional[str] = None
1117
1200
 
1118
1201
 
1202
+ # This class is the output for the 'get_geofence' function.
1119
1203
  class GetGeofenceResponse(BaseValidatorModel):
1120
1204
  GeofenceId: str
1121
1205
  Geometry: GeofenceGeometryOutput
@@ -1141,28 +1225,33 @@ class GeofenceGeometry(BaseValidatorModel):
1141
1225
  Geobuf: Optional[Blob] = None
1142
1226
 
1143
1227
 
1228
+ # This class is the output for the 'batch_get_device_position' function.
1144
1229
  class BatchGetDevicePositionResponse(BaseValidatorModel):
1145
1230
  Errors: List[BatchGetDevicePositionError]
1146
1231
  DevicePositions: List[DevicePosition]
1147
1232
  ResponseMetadata: ResponseMetadata
1148
1233
 
1149
1234
 
1235
+ # This class is the output for the 'get_device_position_history' function.
1150
1236
  class GetDevicePositionHistoryResponse(BaseValidatorModel):
1151
1237
  DevicePositions: List[DevicePosition]
1152
1238
  ResponseMetadata: ResponseMetadata
1153
1239
  NextToken: Optional[str] = None
1154
1240
 
1155
1241
 
1242
+ # This class is the input for the 'batch_evaluate_geofences' function.
1156
1243
  class BatchEvaluateGeofencesRequest(BaseValidatorModel):
1157
1244
  CollectionName: str
1158
1245
  DevicePositionUpdates: List[DevicePositionUpdate]
1159
1246
 
1160
1247
 
1248
+ # This class is the input for the 'batch_update_device_position' function.
1161
1249
  class BatchUpdateDevicePositionRequest(BaseValidatorModel):
1162
1250
  TrackerName: str
1163
1251
  Updates: List[DevicePositionUpdate]
1164
1252
 
1165
1253
 
1254
+ # This class is the output for the 'verify_device_position' function.
1166
1255
  class VerifyDevicePositionResponse(BaseValidatorModel):
1167
1256
  InferredState: InferredState
1168
1257
  DeviceId: str
@@ -1172,12 +1261,14 @@ class VerifyDevicePositionResponse(BaseValidatorModel):
1172
1261
  ResponseMetadata: ResponseMetadata
1173
1262
 
1174
1263
 
1264
+ # This class is the output for the 'list_device_positions' function.
1175
1265
  class ListDevicePositionsResponse(BaseValidatorModel):
1176
1266
  Entries: List[ListDevicePositionsResponseEntry]
1177
1267
  ResponseMetadata: ResponseMetadata
1178
1268
  NextToken: Optional[str] = None
1179
1269
 
1180
1270
 
1271
+ # This class is the output for the 'calculate_route' function.
1181
1272
  class CalculateRouteResponse(BaseValidatorModel):
1182
1273
  Legs: List[Leg]
1183
1274
  Summary: CalculateRouteSummary
@@ -1188,6 +1279,7 @@ class CellSignals(BaseValidatorModel):
1188
1279
  LteCellDetails: List[LteCellDetails]
1189
1280
 
1190
1281
 
1282
+ # This class is the input for the 'create_map' function.
1191
1283
  class CreateMapRequest(BaseValidatorModel):
1192
1284
  MapName: str
1193
1285
  Configuration: MapConfigurationUnion
@@ -1196,6 +1288,7 @@ class CreateMapRequest(BaseValidatorModel):
1196
1288
  Tags: Optional[Dict[str, str]] = None
1197
1289
 
1198
1290
 
1291
+ # This class is the output for the 'get_place' function.
1199
1292
  class GetPlaceResponse(BaseValidatorModel):
1200
1293
  Place: Place
1201
1294
  ResponseMetadata: ResponseMetadata
@@ -1214,6 +1307,7 @@ class SearchForTextResult(BaseValidatorModel):
1214
1307
  PlaceId: Optional[str] = None
1215
1308
 
1216
1309
 
1310
+ # This class is the output for the 'calculate_route_matrix' function.
1217
1311
  class CalculateRouteMatrixResponse(BaseValidatorModel):
1218
1312
  RouteMatrix: List[List[RouteMatrixEntry]]
1219
1313
  SnappedDeparturePositions: List[List[float]]
@@ -1222,6 +1316,7 @@ class CalculateRouteMatrixResponse(BaseValidatorModel):
1222
1316
  ResponseMetadata: ResponseMetadata
1223
1317
 
1224
1318
 
1319
+ # This class is the output for the 'list_geofences' function.
1225
1320
  class ListGeofencesResponse(BaseValidatorModel):
1226
1321
  Entries: List[ListGeofenceResponseEntry]
1227
1322
  ResponseMetadata: ResponseMetadata
@@ -1240,12 +1335,14 @@ class DeviceState(BaseValidatorModel):
1240
1335
  CellSignals: Optional[CellSignals] = None
1241
1336
 
1242
1337
 
1338
+ # This class is the output for the 'search_place_index_for_position' function.
1243
1339
  class SearchPlaceIndexForPositionResponse(BaseValidatorModel):
1244
1340
  Summary: SearchPlaceIndexForPositionSummary
1245
1341
  Results: List[SearchForPositionResult]
1246
1342
  ResponseMetadata: ResponseMetadata
1247
1343
 
1248
1344
 
1345
+ # This class is the output for the 'search_place_index_for_text' function.
1249
1346
  class SearchPlaceIndexForTextResponse(BaseValidatorModel):
1250
1347
  Summary: SearchPlaceIndexForTextSummary
1251
1348
  Results: List[SearchForTextResult]
@@ -1258,6 +1355,7 @@ class BatchPutGeofenceRequestEntry(BaseValidatorModel):
1258
1355
  GeofenceProperties: Optional[Dict[str, str]] = None
1259
1356
 
1260
1357
 
1358
+ # This class is the input for the 'put_geofence' function.
1261
1359
  class PutGeofenceRequest(BaseValidatorModel):
1262
1360
  CollectionName: str
1263
1361
  GeofenceId: str
@@ -1265,12 +1363,14 @@ class PutGeofenceRequest(BaseValidatorModel):
1265
1363
  GeofenceProperties: Optional[Dict[str, str]] = None
1266
1364
 
1267
1365
 
1366
+ # This class is the input for the 'verify_device_position' function.
1268
1367
  class VerifyDevicePositionRequest(BaseValidatorModel):
1269
1368
  TrackerName: str
1270
1369
  DeviceState: DeviceState
1271
1370
  DistanceUnit: Optional[DistanceUnitType] = None
1272
1371
 
1273
1372
 
1373
+ # This class is the input for the 'batch_put_geofence' function.
1274
1374
  class BatchPutGeofenceRequest(BaseValidatorModel):
1275
1375
  CollectionName: str
1276
1376
  Entries: List[BatchPutGeofenceRequestEntry]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: boto3-pydantic-location
3
- Version: 1.0.1
3
+ Version: 1.0.2
4
4
  Summary: Pydantic models for AWS Location
5
5
  Keywords: aws,boto3,pydantic,models,location
6
6
  Author: Alexy Grabov
@@ -1,7 +1,7 @@
1
1
  boto3_pydantic_location/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  boto3_pydantic_location/base_validator_model.py,sha256=C3teURdLR9HMNOC5LMFGGgdsm6Ks6OF0p5RnKw54er4,463
3
- boto3_pydantic_location/location_classes.py,sha256=cQdJixn1IpbrQNebFcEzQyh1Zf0Io-ytX_olCMnN260,33955
3
+ boto3_pydantic_location/location_classes.py,sha256=hNoMgVFQRr48zxABRDXZydq8_8KNQ94FpYWMrJX8pi0,40627
4
4
  boto3_pydantic_location/location_constants.py,sha256=ts_UW-WtpFZNCA16ddmHs3uoXVP-dcLH2pHRnr7T4Ho,8811
5
- boto3_pydantic_location-1.0.1.dist-info/METADATA,sha256=RB5UeE3cmL96LKsz-KyATM0T1StOojwuw7mDfz-8m4Q,1407
6
- boto3_pydantic_location-1.0.1.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
7
- boto3_pydantic_location-1.0.1.dist-info/RECORD,,
5
+ boto3_pydantic_location-1.0.2.dist-info/METADATA,sha256=0bfBiuNvQrCbFup-RQ1ymRiswEHedEXmI_crjOGb4ZE,1407
6
+ boto3_pydantic_location-1.0.2.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
7
+ boto3_pydantic_location-1.0.2.dist-info/RECORD,,