aws-sdk-locationservice 1.49.0 → 1.51.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-locationservice/client.rb +1036 -863
- data/lib/aws-sdk-locationservice/client_api.rb +382 -212
- data/lib/aws-sdk-locationservice/endpoints.rb +28 -0
- data/lib/aws-sdk-locationservice/errors.rb +5 -5
- data/lib/aws-sdk-locationservice/plugins/endpoints.rb +4 -0
- data/lib/aws-sdk-locationservice/types.rb +2158 -1749
- data/lib/aws-sdk-locationservice.rb +1 -1
- data/sig/client.rbs +283 -202
- data/sig/errors.rbs +1 -1
- data/sig/types.rbs +327 -215
- metadata +4 -4
@@ -404,6 +404,20 @@ module Aws::LocationService
|
|
404
404
|
end
|
405
405
|
end
|
406
406
|
|
407
|
+
class ForecastGeofenceEvents
|
408
|
+
def self.build(context)
|
409
|
+
unless context.config.regional_endpoint
|
410
|
+
endpoint = context.config.endpoint.to_s
|
411
|
+
end
|
412
|
+
Aws::LocationService::EndpointParameters.new(
|
413
|
+
region: context.config.region,
|
414
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
415
|
+
use_fips: context.config.use_fips_endpoint,
|
416
|
+
endpoint: endpoint,
|
417
|
+
)
|
418
|
+
end
|
419
|
+
end
|
420
|
+
|
407
421
|
class GetDevicePosition
|
408
422
|
def self.build(context)
|
409
423
|
unless context.config.regional_endpoint
|
@@ -824,5 +838,19 @@ module Aws::LocationService
|
|
824
838
|
end
|
825
839
|
end
|
826
840
|
|
841
|
+
class VerifyDevicePosition
|
842
|
+
def self.build(context)
|
843
|
+
unless context.config.regional_endpoint
|
844
|
+
endpoint = context.config.endpoint.to_s
|
845
|
+
end
|
846
|
+
Aws::LocationService::EndpointParameters.new(
|
847
|
+
region: context.config.region,
|
848
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
849
|
+
use_fips: context.config.use_fips_endpoint,
|
850
|
+
endpoint: endpoint,
|
851
|
+
)
|
852
|
+
end
|
853
|
+
end
|
854
|
+
|
827
855
|
end
|
828
856
|
end
|
@@ -148,11 +148,6 @@ module Aws::LocationService
|
|
148
148
|
super(context, message, data)
|
149
149
|
end
|
150
150
|
|
151
|
-
# @return [String]
|
152
|
-
def field_list
|
153
|
-
@data[:field_list]
|
154
|
-
end
|
155
|
-
|
156
151
|
# @return [String]
|
157
152
|
def message
|
158
153
|
@message || @data[:message]
|
@@ -162,6 +157,11 @@ module Aws::LocationService
|
|
162
157
|
def reason
|
163
158
|
@data[:reason]
|
164
159
|
end
|
160
|
+
|
161
|
+
# @return [String]
|
162
|
+
def field_list
|
163
|
+
@data[:field_list]
|
164
|
+
end
|
165
165
|
end
|
166
166
|
|
167
167
|
end
|
@@ -114,6 +114,8 @@ module Aws::LocationService
|
|
114
114
|
Aws::LocationService::Endpoints::DescribeTracker.build(context)
|
115
115
|
when :disassociate_tracker_consumer
|
116
116
|
Aws::LocationService::Endpoints::DisassociateTrackerConsumer.build(context)
|
117
|
+
when :forecast_geofence_events
|
118
|
+
Aws::LocationService::Endpoints::ForecastGeofenceEvents.build(context)
|
117
119
|
when :get_device_position
|
118
120
|
Aws::LocationService::Endpoints::GetDevicePosition.build(context)
|
119
121
|
when :get_device_position_history
|
@@ -174,6 +176,8 @@ module Aws::LocationService
|
|
174
176
|
Aws::LocationService::Endpoints::UpdateRouteCalculator.build(context)
|
175
177
|
when :update_tracker
|
176
178
|
Aws::LocationService::Endpoints::UpdateTracker.build(context)
|
179
|
+
when :verify_device_position
|
180
|
+
Aws::LocationService::Endpoints::VerifyDevicePosition.build(context)
|
177
181
|
end
|
178
182
|
end
|
179
183
|
end
|