aws-sdk-locationservice 1.27.0 → 1.29.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 +12 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-locationservice/client.rb +412 -38
- data/lib/aws-sdk-locationservice/client_api.rb +195 -0
- data/lib/aws-sdk-locationservice/endpoint_parameters.rb +0 -3
- data/lib/aws-sdk-locationservice/endpoint_provider.rb +38 -96
- data/lib/aws-sdk-locationservice/endpoints.rb +70 -0
- data/lib/aws-sdk-locationservice/plugins/endpoints.rb +10 -0
- data/lib/aws-sdk-locationservice/types.rb +611 -40
- data/lib/aws-sdk-locationservice.rb +1 -1
- metadata +2 -2
@@ -76,6 +76,8 @@ module Aws::LocationService
|
|
76
76
|
Aws::LocationService::Endpoints::CalculateRouteMatrix.build(context)
|
77
77
|
when :create_geofence_collection
|
78
78
|
Aws::LocationService::Endpoints::CreateGeofenceCollection.build(context)
|
79
|
+
when :create_key
|
80
|
+
Aws::LocationService::Endpoints::CreateKey.build(context)
|
79
81
|
when :create_map
|
80
82
|
Aws::LocationService::Endpoints::CreateMap.build(context)
|
81
83
|
when :create_place_index
|
@@ -86,6 +88,8 @@ module Aws::LocationService
|
|
86
88
|
Aws::LocationService::Endpoints::CreateTracker.build(context)
|
87
89
|
when :delete_geofence_collection
|
88
90
|
Aws::LocationService::Endpoints::DeleteGeofenceCollection.build(context)
|
91
|
+
when :delete_key
|
92
|
+
Aws::LocationService::Endpoints::DeleteKey.build(context)
|
89
93
|
when :delete_map
|
90
94
|
Aws::LocationService::Endpoints::DeleteMap.build(context)
|
91
95
|
when :delete_place_index
|
@@ -96,6 +100,8 @@ module Aws::LocationService
|
|
96
100
|
Aws::LocationService::Endpoints::DeleteTracker.build(context)
|
97
101
|
when :describe_geofence_collection
|
98
102
|
Aws::LocationService::Endpoints::DescribeGeofenceCollection.build(context)
|
103
|
+
when :describe_key
|
104
|
+
Aws::LocationService::Endpoints::DescribeKey.build(context)
|
99
105
|
when :describe_map
|
100
106
|
Aws::LocationService::Endpoints::DescribeMap.build(context)
|
101
107
|
when :describe_place_index
|
@@ -128,6 +134,8 @@ module Aws::LocationService
|
|
128
134
|
Aws::LocationService::Endpoints::ListGeofenceCollections.build(context)
|
129
135
|
when :list_geofences
|
130
136
|
Aws::LocationService::Endpoints::ListGeofences.build(context)
|
137
|
+
when :list_keys
|
138
|
+
Aws::LocationService::Endpoints::ListKeys.build(context)
|
131
139
|
when :list_maps
|
132
140
|
Aws::LocationService::Endpoints::ListMaps.build(context)
|
133
141
|
when :list_place_indexes
|
@@ -154,6 +162,8 @@ module Aws::LocationService
|
|
154
162
|
Aws::LocationService::Endpoints::UntagResource.build(context)
|
155
163
|
when :update_geofence_collection
|
156
164
|
Aws::LocationService::Endpoints::UpdateGeofenceCollection.build(context)
|
165
|
+
when :update_key
|
166
|
+
Aws::LocationService::Endpoints::UpdateKey.build(context)
|
157
167
|
when :update_map
|
158
168
|
Aws::LocationService::Endpoints::UpdateMap.build(context)
|
159
169
|
when :update_place_index
|