aws-sdk-locationservice 1.67.0 → 1.68.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 141eee9db45d7db10160a5faf26c427335f4d93e4eab177884e3e1c9a879977f
4
- data.tar.gz: 37f9c413c0e811b60fe7e652615f5e7f96ddf06ba63d327cbf112b8f1b280635
3
+ metadata.gz: 1f682cc4ddf153467fae10d193f4c833699d1825a444e3c72e03df4dec19d309
4
+ data.tar.gz: cbff913ef95f4a652099d9650f1d1fa400629d4bcb80deeaad1952ad5b244605
5
5
  SHA512:
6
- metadata.gz: 5da6f78cb3be3d7e3c8e56376f97717110d9155a35b9353e0ff33b0f3fb823b8214ec05f39c59868ed370d984994cddec9573701abb2d34696467ed1dd020afc
7
- data.tar.gz: 281b8cfc7dd36809accd4cac9de09cd0258d15976f66752c0ef7658a35ec7641c16e00e64c7bd63d142e72f58851a387b090c56367446e3209ab28fc5d4c293a
6
+ metadata.gz: 9690ab20863c72378aef7c1257fcf483195ec580a08dd4e36bb5962adf4d7e740192aae5ca76e6680237d7ede83e21e71b9ba3a8cae80379038779e44100081f
7
+ data.tar.gz: 44a4f0a4a7429bfaf302f558d1d0a5b2743782406f63a3992d62966629b59933eafb104eb012d40ed9ee65fd7c2d9045ceebb35ac02c8040d2ab9ef99191a990
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.68.0 (2025-02-19)
5
+ ------------------
6
+
7
+ * Feature - Adds support for larger property maps for tracking and geofence positions changes. It increases the maximum number of items from 3 to 4, and the maximum value length from 40 to 150.
8
+
4
9
  1.67.0 (2025-02-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.67.0
1
+ 1.68.0
@@ -649,7 +649,7 @@ module Aws::LocationService
649
649
  # horizontal: 1.0, # required
650
650
  # },
651
651
  # position_properties: {
652
- # "PropertyMapKeyString" => "PropertyMapValueString",
652
+ # "PositionPropertyMapKeyString" => "PositionPropertyMapValueString",
653
653
  # },
654
654
  # },
655
655
  # ],
@@ -711,7 +711,7 @@ module Aws::LocationService
711
711
  # resp.device_positions[0].position[0] #=> Float
712
712
  # resp.device_positions[0].accuracy.horizontal #=> Float
713
713
  # resp.device_positions[0].position_properties #=> Hash
714
- # resp.device_positions[0].position_properties["PropertyMapKeyString"] #=> String
714
+ # resp.device_positions[0].position_properties["PositionPropertyMapKeyString"] #=> String
715
715
  #
716
716
  # @see http://docs.aws.amazon.com/goto/WebAPI/location-2020-11-19/BatchGetDevicePosition AWS API Documentation
717
717
  #
@@ -836,7 +836,7 @@ module Aws::LocationService
836
836
  # horizontal: 1.0, # required
837
837
  # },
838
838
  # position_properties: {
839
- # "PropertyMapKeyString" => "PropertyMapValueString",
839
+ # "PositionPropertyMapKeyString" => "PositionPropertyMapValueString",
840
840
  # },
841
841
  # },
842
842
  # ],
@@ -2758,7 +2758,7 @@ module Aws::LocationService
2758
2758
  # resp.position[0] #=> Float
2759
2759
  # resp.accuracy.horizontal #=> Float
2760
2760
  # resp.position_properties #=> Hash
2761
- # resp.position_properties["PropertyMapKeyString"] #=> String
2761
+ # resp.position_properties["PositionPropertyMapKeyString"] #=> String
2762
2762
  #
2763
2763
  # @see http://docs.aws.amazon.com/goto/WebAPI/location-2020-11-19/GetDevicePosition AWS API Documentation
2764
2764
  #
@@ -2855,7 +2855,7 @@ module Aws::LocationService
2855
2855
  # resp.device_positions[0].position[0] #=> Float
2856
2856
  # resp.device_positions[0].accuracy.horizontal #=> Float
2857
2857
  # resp.device_positions[0].position_properties #=> Hash
2858
- # resp.device_positions[0].position_properties["PropertyMapKeyString"] #=> String
2858
+ # resp.device_positions[0].position_properties["PositionPropertyMapKeyString"] #=> String
2859
2859
  # resp.next_token #=> String
2860
2860
  #
2861
2861
  # @see http://docs.aws.amazon.com/goto/WebAPI/location-2020-11-19/GetDevicePositionHistory AWS API Documentation
@@ -3350,7 +3350,7 @@ module Aws::LocationService
3350
3350
  # resp.data.entries[0].position[0] #=> Float
3351
3351
  # resp.data.entries[0].accuracy.horizontal #=> Float
3352
3352
  # resp.data.entries[0].position_properties #=> Hash
3353
- # resp.data.entries[0].position_properties["PropertyMapKeyString"] #=> String
3353
+ # resp.data.entries[0].position_properties["PositionPropertyMapKeyString"] #=> String
3354
3354
  # resp.next_token #=> String
3355
3355
  #
3356
3356
  # @see http://docs.aws.amazon.com/goto/WebAPI/location-2020-11-19/ListDevicePositions AWS API Documentation
@@ -4914,7 +4914,7 @@ module Aws::LocationService
4914
4914
  tracer: tracer
4915
4915
  )
4916
4916
  context[:gem_name] = 'aws-sdk-locationservice'
4917
- context[:gem_version] = '1.67.0'
4917
+ context[:gem_version] = '1.68.0'
4918
4918
  Seahorse::Client::Request.new(handlers, context)
4919
4919
  end
4920
4920
 
@@ -262,6 +262,9 @@ module Aws::LocationService
262
262
  PlaceSupplementalCategoryList = Shapes::ListShape.new(name: 'PlaceSupplementalCategoryList')
263
263
  Position = Shapes::ListShape.new(name: 'Position')
264
264
  PositionFiltering = Shapes::StringShape.new(name: 'PositionFiltering')
265
+ PositionPropertyMap = Shapes::MapShape.new(name: 'PositionPropertyMap')
266
+ PositionPropertyMapKeyString = Shapes::StringShape.new(name: 'PositionPropertyMapKeyString')
267
+ PositionPropertyMapValueString = Shapes::StringShape.new(name: 'PositionPropertyMapValueString')
265
268
  PositionalAccuracy = Shapes::StructureShape.new(name: 'PositionalAccuracy')
266
269
  PositionalAccuracyHorizontalDouble = Shapes::FloatShape.new(name: 'PositionalAccuracyHorizontalDouble')
267
270
  PricingPlan = Shapes::StringShape.new(name: 'PricingPlan')
@@ -582,8 +585,8 @@ module Aws::LocationService
582
585
  CountryCodeList.member = Shapes::ShapeRef.new(shape: CountryCode3)
583
586
 
584
587
  CreateGeofenceCollectionRequest.add_member(:collection_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "CollectionName"))
585
- CreateGeofenceCollectionRequest.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. If included, the only allowed value is RequestBasedUsage."}))
586
- CreateGeofenceCollectionRequest.add_member(:pricing_plan_data_source, Shapes::ShapeRef.new(shape: String, deprecated: true, location_name: "PricingPlanDataSource", metadata: {"deprecatedMessage"=>"Deprecated. No longer allowed."}))
588
+ CreateGeofenceCollectionRequest.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. If included, the only allowed value is RequestBasedUsage.", "deprecatedSince"=>"2022-02-01"}))
589
+ CreateGeofenceCollectionRequest.add_member(:pricing_plan_data_source, Shapes::ShapeRef.new(shape: String, deprecated: true, location_name: "PricingPlanDataSource", metadata: {"deprecatedMessage"=>"Deprecated. No longer allowed.", "deprecatedSince"=>"2022-02-01"}))
587
590
  CreateGeofenceCollectionRequest.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, location_name: "Description"))
588
591
  CreateGeofenceCollectionRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
589
592
  CreateGeofenceCollectionRequest.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "KmsKeyId"))
@@ -610,7 +613,7 @@ module Aws::LocationService
610
613
 
611
614
  CreateMapRequest.add_member(:map_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "MapName"))
612
615
  CreateMapRequest.add_member(:configuration, Shapes::ShapeRef.new(shape: MapConfiguration, required: true, location_name: "Configuration"))
613
- CreateMapRequest.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. If included, the only allowed value is RequestBasedUsage."}))
616
+ CreateMapRequest.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. If included, the only allowed value is RequestBasedUsage.", "deprecatedSince"=>"2022-02-01"}))
614
617
  CreateMapRequest.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, location_name: "Description"))
615
618
  CreateMapRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
616
619
  CreateMapRequest.struct_class = Types::CreateMapRequest
@@ -622,7 +625,7 @@ module Aws::LocationService
622
625
 
623
626
  CreatePlaceIndexRequest.add_member(:index_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "IndexName"))
624
627
  CreatePlaceIndexRequest.add_member(:data_source, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DataSource"))
625
- CreatePlaceIndexRequest.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. If included, the only allowed value is RequestBasedUsage."}))
628
+ CreatePlaceIndexRequest.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. If included, the only allowed value is RequestBasedUsage.", "deprecatedSince"=>"2022-02-01"}))
626
629
  CreatePlaceIndexRequest.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, location_name: "Description"))
627
630
  CreatePlaceIndexRequest.add_member(:data_source_configuration, Shapes::ShapeRef.new(shape: DataSourceConfiguration, location_name: "DataSourceConfiguration"))
628
631
  CreatePlaceIndexRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
@@ -635,7 +638,7 @@ module Aws::LocationService
635
638
 
636
639
  CreateRouteCalculatorRequest.add_member(:calculator_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "CalculatorName"))
637
640
  CreateRouteCalculatorRequest.add_member(:data_source, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DataSource"))
638
- CreateRouteCalculatorRequest.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. If included, the only allowed value is RequestBasedUsage."}))
641
+ CreateRouteCalculatorRequest.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. If included, the only allowed value is RequestBasedUsage.", "deprecatedSince"=>"2022-02-01"}))
639
642
  CreateRouteCalculatorRequest.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, location_name: "Description"))
640
643
  CreateRouteCalculatorRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
641
644
  CreateRouteCalculatorRequest.struct_class = Types::CreateRouteCalculatorRequest
@@ -646,9 +649,9 @@ module Aws::LocationService
646
649
  CreateRouteCalculatorResponse.struct_class = Types::CreateRouteCalculatorResponse
647
650
 
648
651
  CreateTrackerRequest.add_member(:tracker_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "TrackerName"))
649
- CreateTrackerRequest.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. If included, the only allowed value is RequestBasedUsage."}))
652
+ CreateTrackerRequest.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. If included, the only allowed value is RequestBasedUsage.", "deprecatedSince"=>"2022-02-01"}))
650
653
  CreateTrackerRequest.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "KmsKeyId"))
651
- CreateTrackerRequest.add_member(:pricing_plan_data_source, Shapes::ShapeRef.new(shape: String, deprecated: true, location_name: "PricingPlanDataSource", metadata: {"deprecatedMessage"=>"Deprecated. No longer allowed."}))
654
+ CreateTrackerRequest.add_member(:pricing_plan_data_source, Shapes::ShapeRef.new(shape: String, deprecated: true, location_name: "PricingPlanDataSource", metadata: {"deprecatedMessage"=>"Deprecated. No longer allowed.", "deprecatedSince"=>"2022-02-01"}))
652
655
  CreateTrackerRequest.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, location_name: "Description"))
653
656
  CreateTrackerRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
654
657
  CreateTrackerRequest.add_member(:position_filtering, Shapes::ShapeRef.new(shape: PositionFiltering, location_name: "PositionFiltering"))
@@ -703,8 +706,8 @@ module Aws::LocationService
703
706
  DescribeGeofenceCollectionResponse.add_member(:collection_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "CollectionName"))
704
707
  DescribeGeofenceCollectionResponse.add_member(:collection_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "CollectionArn"))
705
708
  DescribeGeofenceCollectionResponse.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, required: true, location_name: "Description"))
706
- DescribeGeofenceCollectionResponse.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. Always returns RequestBasedUsage."}))
707
- DescribeGeofenceCollectionResponse.add_member(:pricing_plan_data_source, Shapes::ShapeRef.new(shape: String, deprecated: true, location_name: "PricingPlanDataSource", metadata: {"deprecatedMessage"=>"Deprecated. Unused."}))
709
+ DescribeGeofenceCollectionResponse.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. Always returns RequestBasedUsage.", "deprecatedSince"=>"2022-02-01"}))
710
+ DescribeGeofenceCollectionResponse.add_member(:pricing_plan_data_source, Shapes::ShapeRef.new(shape: String, deprecated: true, location_name: "PricingPlanDataSource", metadata: {"deprecatedMessage"=>"Deprecated. Unused.", "deprecatedSince"=>"2022-02-01"}))
708
711
  DescribeGeofenceCollectionResponse.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "KmsKeyId"))
709
712
  DescribeGeofenceCollectionResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
710
713
  DescribeGeofenceCollectionResponse.add_member(:create_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreateTime"))
@@ -731,7 +734,7 @@ module Aws::LocationService
731
734
 
732
735
  DescribeMapResponse.add_member(:map_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "MapName"))
733
736
  DescribeMapResponse.add_member(:map_arn, Shapes::ShapeRef.new(shape: GeoArn, required: true, location_name: "MapArn"))
734
- DescribeMapResponse.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. Always returns RequestBasedUsage."}))
737
+ DescribeMapResponse.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. Always returns RequestBasedUsage.", "deprecatedSince"=>"2022-02-01"}))
735
738
  DescribeMapResponse.add_member(:data_source, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DataSource"))
736
739
  DescribeMapResponse.add_member(:configuration, Shapes::ShapeRef.new(shape: MapConfiguration, required: true, location_name: "Configuration"))
737
740
  DescribeMapResponse.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, required: true, location_name: "Description"))
@@ -745,7 +748,7 @@ module Aws::LocationService
745
748
 
746
749
  DescribePlaceIndexResponse.add_member(:index_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "IndexName"))
747
750
  DescribePlaceIndexResponse.add_member(:index_arn, Shapes::ShapeRef.new(shape: GeoArn, required: true, location_name: "IndexArn"))
748
- DescribePlaceIndexResponse.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. Always returns RequestBasedUsage."}))
751
+ DescribePlaceIndexResponse.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. Always returns RequestBasedUsage.", "deprecatedSince"=>"2022-02-01"}))
749
752
  DescribePlaceIndexResponse.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, required: true, location_name: "Description"))
750
753
  DescribePlaceIndexResponse.add_member(:create_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreateTime"))
751
754
  DescribePlaceIndexResponse.add_member(:update_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "UpdateTime"))
@@ -759,7 +762,7 @@ module Aws::LocationService
759
762
 
760
763
  DescribeRouteCalculatorResponse.add_member(:calculator_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "CalculatorName"))
761
764
  DescribeRouteCalculatorResponse.add_member(:calculator_arn, Shapes::ShapeRef.new(shape: GeoArn, required: true, location_name: "CalculatorArn"))
762
- DescribeRouteCalculatorResponse.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. Always returns RequestBasedUsage."}))
765
+ DescribeRouteCalculatorResponse.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. Always returns RequestBasedUsage.", "deprecatedSince"=>"2022-02-01"}))
763
766
  DescribeRouteCalculatorResponse.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, required: true, location_name: "Description"))
764
767
  DescribeRouteCalculatorResponse.add_member(:create_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreateTime"))
765
768
  DescribeRouteCalculatorResponse.add_member(:update_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "UpdateTime"))
@@ -773,8 +776,8 @@ module Aws::LocationService
773
776
  DescribeTrackerResponse.add_member(:tracker_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "TrackerName"))
774
777
  DescribeTrackerResponse.add_member(:tracker_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "TrackerArn"))
775
778
  DescribeTrackerResponse.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, required: true, location_name: "Description"))
776
- DescribeTrackerResponse.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. Always returns RequestBasedUsage."}))
777
- DescribeTrackerResponse.add_member(:pricing_plan_data_source, Shapes::ShapeRef.new(shape: String, deprecated: true, location_name: "PricingPlanDataSource", metadata: {"deprecatedMessage"=>"Deprecated. Unused."}))
779
+ DescribeTrackerResponse.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. Always returns RequestBasedUsage.", "deprecatedSince"=>"2022-02-01"}))
780
+ DescribeTrackerResponse.add_member(:pricing_plan_data_source, Shapes::ShapeRef.new(shape: String, deprecated: true, location_name: "PricingPlanDataSource", metadata: {"deprecatedMessage"=>"Deprecated. Unused.", "deprecatedSince"=>"2022-02-01"}))
778
781
  DescribeTrackerResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
779
782
  DescribeTrackerResponse.add_member(:create_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreateTime"))
780
783
  DescribeTrackerResponse.add_member(:update_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "UpdateTime"))
@@ -789,7 +792,7 @@ module Aws::LocationService
789
792
  DevicePosition.add_member(:received_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "ReceivedTime"))
790
793
  DevicePosition.add_member(:position, Shapes::ShapeRef.new(shape: Position, required: true, location_name: "Position"))
791
794
  DevicePosition.add_member(:accuracy, Shapes::ShapeRef.new(shape: PositionalAccuracy, location_name: "Accuracy"))
792
- DevicePosition.add_member(:position_properties, Shapes::ShapeRef.new(shape: PropertyMap, location_name: "PositionProperties"))
795
+ DevicePosition.add_member(:position_properties, Shapes::ShapeRef.new(shape: PositionPropertyMap, location_name: "PositionProperties"))
793
796
  DevicePosition.struct_class = Types::DevicePosition
794
797
 
795
798
  DevicePositionList.member = Shapes::ShapeRef.new(shape: DevicePosition)
@@ -798,7 +801,7 @@ module Aws::LocationService
798
801
  DevicePositionUpdate.add_member(:sample_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "SampleTime"))
799
802
  DevicePositionUpdate.add_member(:position, Shapes::ShapeRef.new(shape: Position, required: true, location_name: "Position"))
800
803
  DevicePositionUpdate.add_member(:accuracy, Shapes::ShapeRef.new(shape: PositionalAccuracy, location_name: "Accuracy"))
801
- DevicePositionUpdate.add_member(:position_properties, Shapes::ShapeRef.new(shape: PropertyMap, location_name: "PositionProperties"))
804
+ DevicePositionUpdate.add_member(:position_properties, Shapes::ShapeRef.new(shape: PositionPropertyMap, location_name: "PositionProperties"))
802
805
  DevicePositionUpdate.struct_class = Types::DevicePositionUpdate
803
806
 
804
807
  DeviceState.add_member(:device_id, Shapes::ShapeRef.new(shape: Id, required: true, location_name: "DeviceId"))
@@ -874,7 +877,7 @@ module Aws::LocationService
874
877
  GetDevicePositionResponse.add_member(:received_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "ReceivedTime"))
875
878
  GetDevicePositionResponse.add_member(:position, Shapes::ShapeRef.new(shape: Position, required: true, location_name: "Position"))
876
879
  GetDevicePositionResponse.add_member(:accuracy, Shapes::ShapeRef.new(shape: PositionalAccuracy, location_name: "Accuracy"))
877
- GetDevicePositionResponse.add_member(:position_properties, Shapes::ShapeRef.new(shape: PropertyMap, location_name: "PositionProperties"))
880
+ GetDevicePositionResponse.add_member(:position_properties, Shapes::ShapeRef.new(shape: PositionPropertyMap, location_name: "PositionProperties"))
878
881
  GetDevicePositionResponse.struct_class = Types::GetDevicePositionResponse
879
882
 
880
883
  GetGeofenceRequest.add_member(:collection_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "CollectionName"))
@@ -990,7 +993,7 @@ module Aws::LocationService
990
993
  ListDevicePositionsResponseEntry.add_member(:sample_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "SampleTime"))
991
994
  ListDevicePositionsResponseEntry.add_member(:position, Shapes::ShapeRef.new(shape: Position, required: true, location_name: "Position"))
992
995
  ListDevicePositionsResponseEntry.add_member(:accuracy, Shapes::ShapeRef.new(shape: PositionalAccuracy, location_name: "Accuracy"))
993
- ListDevicePositionsResponseEntry.add_member(:position_properties, Shapes::ShapeRef.new(shape: PropertyMap, location_name: "PositionProperties"))
996
+ ListDevicePositionsResponseEntry.add_member(:position_properties, Shapes::ShapeRef.new(shape: PositionPropertyMap, location_name: "PositionProperties"))
994
997
  ListDevicePositionsResponseEntry.struct_class = Types::ListDevicePositionsResponseEntry
995
998
 
996
999
  ListDevicePositionsResponseEntryList.member = Shapes::ShapeRef.new(shape: ListDevicePositionsResponseEntry)
@@ -1005,8 +1008,8 @@ module Aws::LocationService
1005
1008
 
1006
1009
  ListGeofenceCollectionsResponseEntry.add_member(:collection_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "CollectionName"))
1007
1010
  ListGeofenceCollectionsResponseEntry.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, required: true, location_name: "Description"))
1008
- ListGeofenceCollectionsResponseEntry.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. Always returns RequestBasedUsage."}))
1009
- ListGeofenceCollectionsResponseEntry.add_member(:pricing_plan_data_source, Shapes::ShapeRef.new(shape: String, deprecated: true, location_name: "PricingPlanDataSource", metadata: {"deprecatedMessage"=>"Deprecated. Unused."}))
1011
+ ListGeofenceCollectionsResponseEntry.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. Always returns RequestBasedUsage.", "deprecatedSince"=>"2022-02-01"}))
1012
+ ListGeofenceCollectionsResponseEntry.add_member(:pricing_plan_data_source, Shapes::ShapeRef.new(shape: String, deprecated: true, location_name: "PricingPlanDataSource", metadata: {"deprecatedMessage"=>"Deprecated. Unused.", "deprecatedSince"=>"2022-02-01"}))
1010
1013
  ListGeofenceCollectionsResponseEntry.add_member(:create_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreateTime"))
1011
1014
  ListGeofenceCollectionsResponseEntry.add_member(:update_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "UpdateTime"))
1012
1015
  ListGeofenceCollectionsResponseEntry.struct_class = Types::ListGeofenceCollectionsResponseEntry
@@ -1062,7 +1065,7 @@ module Aws::LocationService
1062
1065
  ListMapsResponseEntry.add_member(:map_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "MapName"))
1063
1066
  ListMapsResponseEntry.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, required: true, location_name: "Description"))
1064
1067
  ListMapsResponseEntry.add_member(:data_source, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DataSource"))
1065
- ListMapsResponseEntry.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. Always returns RequestBasedUsage."}))
1068
+ ListMapsResponseEntry.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. Always returns RequestBasedUsage.", "deprecatedSince"=>"2022-02-01"}))
1066
1069
  ListMapsResponseEntry.add_member(:create_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreateTime"))
1067
1070
  ListMapsResponseEntry.add_member(:update_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "UpdateTime"))
1068
1071
  ListMapsResponseEntry.struct_class = Types::ListMapsResponseEntry
@@ -1080,7 +1083,7 @@ module Aws::LocationService
1080
1083
  ListPlaceIndexesResponseEntry.add_member(:index_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "IndexName"))
1081
1084
  ListPlaceIndexesResponseEntry.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, required: true, location_name: "Description"))
1082
1085
  ListPlaceIndexesResponseEntry.add_member(:data_source, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DataSource"))
1083
- ListPlaceIndexesResponseEntry.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. Always returns RequestBasedUsage."}))
1086
+ ListPlaceIndexesResponseEntry.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. Always returns RequestBasedUsage.", "deprecatedSince"=>"2022-02-01"}))
1084
1087
  ListPlaceIndexesResponseEntry.add_member(:create_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreateTime"))
1085
1088
  ListPlaceIndexesResponseEntry.add_member(:update_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "UpdateTime"))
1086
1089
  ListPlaceIndexesResponseEntry.struct_class = Types::ListPlaceIndexesResponseEntry
@@ -1098,7 +1101,7 @@ module Aws::LocationService
1098
1101
  ListRouteCalculatorsResponseEntry.add_member(:calculator_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "CalculatorName"))
1099
1102
  ListRouteCalculatorsResponseEntry.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, required: true, location_name: "Description"))
1100
1103
  ListRouteCalculatorsResponseEntry.add_member(:data_source, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DataSource"))
1101
- ListRouteCalculatorsResponseEntry.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. Always returns RequestBasedUsage."}))
1104
+ ListRouteCalculatorsResponseEntry.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. Always returns RequestBasedUsage.", "deprecatedSince"=>"2022-02-01"}))
1102
1105
  ListRouteCalculatorsResponseEntry.add_member(:create_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreateTime"))
1103
1106
  ListRouteCalculatorsResponseEntry.add_member(:update_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "UpdateTime"))
1104
1107
  ListRouteCalculatorsResponseEntry.struct_class = Types::ListRouteCalculatorsResponseEntry
@@ -1130,8 +1133,8 @@ module Aws::LocationService
1130
1133
 
1131
1134
  ListTrackersResponseEntry.add_member(:tracker_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "TrackerName"))
1132
1135
  ListTrackersResponseEntry.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, required: true, location_name: "Description"))
1133
- ListTrackersResponseEntry.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. Always returns RequestBasedUsage."}))
1134
- ListTrackersResponseEntry.add_member(:pricing_plan_data_source, Shapes::ShapeRef.new(shape: String, deprecated: true, location_name: "PricingPlanDataSource", metadata: {"deprecatedMessage"=>"Deprecated. Unused."}))
1136
+ ListTrackersResponseEntry.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. Always returns RequestBasedUsage.", "deprecatedSince"=>"2022-02-01"}))
1137
+ ListTrackersResponseEntry.add_member(:pricing_plan_data_source, Shapes::ShapeRef.new(shape: String, deprecated: true, location_name: "PricingPlanDataSource", metadata: {"deprecatedMessage"=>"Deprecated. Unused.", "deprecatedSince"=>"2022-02-01"}))
1135
1138
  ListTrackersResponseEntry.add_member(:create_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreateTime"))
1136
1139
  ListTrackersResponseEntry.add_member(:update_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "UpdateTime"))
1137
1140
  ListTrackersResponseEntry.struct_class = Types::ListTrackersResponseEntry
@@ -1200,6 +1203,9 @@ module Aws::LocationService
1200
1203
 
1201
1204
  Position.member = Shapes::ShapeRef.new(shape: Double)
1202
1205
 
1206
+ PositionPropertyMap.key = Shapes::ShapeRef.new(shape: PositionPropertyMapKeyString)
1207
+ PositionPropertyMap.value = Shapes::ShapeRef.new(shape: PositionPropertyMapValueString)
1208
+
1203
1209
  PositionalAccuracy.add_member(:horizontal, Shapes::ShapeRef.new(shape: PositionalAccuracyHorizontalDouble, required: true, location_name: "Horizontal"))
1204
1210
  PositionalAccuracy.struct_class = Types::PositionalAccuracy
1205
1211
 
@@ -1374,8 +1380,8 @@ module Aws::LocationService
1374
1380
  UntagResourceResponse.struct_class = Types::UntagResourceResponse
1375
1381
 
1376
1382
  UpdateGeofenceCollectionRequest.add_member(:collection_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "CollectionName"))
1377
- UpdateGeofenceCollectionRequest.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. If included, the only allowed value is RequestBasedUsage."}))
1378
- UpdateGeofenceCollectionRequest.add_member(:pricing_plan_data_source, Shapes::ShapeRef.new(shape: String, deprecated: true, location_name: "PricingPlanDataSource", metadata: {"deprecatedMessage"=>"Deprecated. No longer allowed."}))
1383
+ UpdateGeofenceCollectionRequest.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. If included, the only allowed value is RequestBasedUsage.", "deprecatedSince"=>"2022-02-01"}))
1384
+ UpdateGeofenceCollectionRequest.add_member(:pricing_plan_data_source, Shapes::ShapeRef.new(shape: String, deprecated: true, location_name: "PricingPlanDataSource", metadata: {"deprecatedMessage"=>"Deprecated. No longer allowed.", "deprecatedSince"=>"2022-02-01"}))
1379
1385
  UpdateGeofenceCollectionRequest.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, location_name: "Description"))
1380
1386
  UpdateGeofenceCollectionRequest.struct_class = Types::UpdateGeofenceCollectionRequest
1381
1387
 
@@ -1398,7 +1404,7 @@ module Aws::LocationService
1398
1404
  UpdateKeyResponse.struct_class = Types::UpdateKeyResponse
1399
1405
 
1400
1406
  UpdateMapRequest.add_member(:map_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "MapName"))
1401
- UpdateMapRequest.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. If included, the only allowed value is RequestBasedUsage."}))
1407
+ UpdateMapRequest.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. If included, the only allowed value is RequestBasedUsage.", "deprecatedSince"=>"2022-02-01"}))
1402
1408
  UpdateMapRequest.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, location_name: "Description"))
1403
1409
  UpdateMapRequest.add_member(:configuration_update, Shapes::ShapeRef.new(shape: MapConfigurationUpdate, location_name: "ConfigurationUpdate"))
1404
1410
  UpdateMapRequest.struct_class = Types::UpdateMapRequest
@@ -1409,7 +1415,7 @@ module Aws::LocationService
1409
1415
  UpdateMapResponse.struct_class = Types::UpdateMapResponse
1410
1416
 
1411
1417
  UpdatePlaceIndexRequest.add_member(:index_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "IndexName"))
1412
- UpdatePlaceIndexRequest.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. If included, the only allowed value is RequestBasedUsage."}))
1418
+ UpdatePlaceIndexRequest.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. If included, the only allowed value is RequestBasedUsage.", "deprecatedSince"=>"2022-02-01"}))
1413
1419
  UpdatePlaceIndexRequest.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, location_name: "Description"))
1414
1420
  UpdatePlaceIndexRequest.add_member(:data_source_configuration, Shapes::ShapeRef.new(shape: DataSourceConfiguration, location_name: "DataSourceConfiguration"))
1415
1421
  UpdatePlaceIndexRequest.struct_class = Types::UpdatePlaceIndexRequest
@@ -1420,7 +1426,7 @@ module Aws::LocationService
1420
1426
  UpdatePlaceIndexResponse.struct_class = Types::UpdatePlaceIndexResponse
1421
1427
 
1422
1428
  UpdateRouteCalculatorRequest.add_member(:calculator_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "CalculatorName"))
1423
- UpdateRouteCalculatorRequest.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. If included, the only allowed value is RequestBasedUsage."}))
1429
+ UpdateRouteCalculatorRequest.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. If included, the only allowed value is RequestBasedUsage.", "deprecatedSince"=>"2022-02-01"}))
1424
1430
  UpdateRouteCalculatorRequest.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, location_name: "Description"))
1425
1431
  UpdateRouteCalculatorRequest.struct_class = Types::UpdateRouteCalculatorRequest
1426
1432
 
@@ -1430,8 +1436,8 @@ module Aws::LocationService
1430
1436
  UpdateRouteCalculatorResponse.struct_class = Types::UpdateRouteCalculatorResponse
1431
1437
 
1432
1438
  UpdateTrackerRequest.add_member(:tracker_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "TrackerName"))
1433
- UpdateTrackerRequest.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. If included, the only allowed value is RequestBasedUsage."}))
1434
- UpdateTrackerRequest.add_member(:pricing_plan_data_source, Shapes::ShapeRef.new(shape: String, deprecated: true, location_name: "PricingPlanDataSource", metadata: {"deprecatedMessage"=>"Deprecated. No longer allowed."}))
1439
+ UpdateTrackerRequest.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, deprecated: true, location_name: "PricingPlan", metadata: {"deprecatedMessage"=>"Deprecated. If included, the only allowed value is RequestBasedUsage.", "deprecatedSince"=>"2022-02-01"}))
1440
+ UpdateTrackerRequest.add_member(:pricing_plan_data_source, Shapes::ShapeRef.new(shape: String, deprecated: true, location_name: "PricingPlanDataSource", metadata: {"deprecatedMessage"=>"Deprecated. No longer allowed.", "deprecatedSince"=>"2022-02-01"}))
1435
1441
  UpdateTrackerRequest.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, location_name: "Description"))
1436
1442
  UpdateTrackerRequest.add_member(:position_filtering, Shapes::ShapeRef.new(shape: PositionFiltering, location_name: "PositionFiltering"))
1437
1443
  UpdateTrackerRequest.add_member(:event_bridge_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "EventBridgeEnabled"))
@@ -1480,6 +1486,7 @@ module Aws::LocationService
1480
1486
 
1481
1487
  api.metadata = {
1482
1488
  "apiVersion" => "2020-11-19",
1489
+ "auth" => ["aws.auth#sigv4"],
1483
1490
  "endpointPrefix" => "geo",
1484
1491
  "protocol" => "rest-json",
1485
1492
  "protocols" => ["rest-json"],
@@ -54,7 +54,7 @@ module Aws::LocationService
54
54
  autoload :EndpointProvider, 'aws-sdk-locationservice/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-locationservice/endpoints'
56
56
 
57
- GEM_VERSION = '1.67.0'
57
+ GEM_VERSION = '1.68.0'
58
58
 
59
59
  end
60
60
 
data/sig/types.rbs CHANGED
@@ -1326,7 +1326,7 @@ module Aws::LocationService
1326
1326
 
1327
1327
  class ValidationException
1328
1328
  attr_accessor message: ::String
1329
- attr_accessor reason: ("UnknownOperation" | "Missing" | "CannotParse" | "FieldValidationFailed" | "Other")
1329
+ attr_accessor reason: ("UnknownOperation" | "Missing" | "CannotParse" | "FieldValidationFailed" | "Other" | "UnknownField")
1330
1330
  attr_accessor field_list: ::Array[Types::ValidationExceptionField]
1331
1331
  SENSITIVE: []
1332
1332
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-locationservice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.67.0
4
+ version: 1.68.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-02-18 00:00:00.000000000 Z
11
+ date: 2025-02-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -36,14 +36,14 @@ dependencies:
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: '1.1'
39
+ version: '1.5'
40
40
  type: :runtime
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: '1.1'
46
+ version: '1.5'
47
47
  description: Official AWS Ruby gem for Amazon Location Service. This gem is part of
48
48
  the AWS SDK for Ruby.
49
49
  email: