aws-sdk-locationservice 1.86.0 → 1.87.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 +1 -1
- data/lib/aws-sdk-locationservice.rb +1 -1
- data/sig/client.rbs +17 -125
- data/sig/params.rbs +75 -0
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5174868468be5bc9a959f91b756e4311bb4697e68561517eee291bb24796b4f2
|
|
4
|
+
data.tar.gz: 9957edddd0e2b821bb1400db1984e570f52ac8425d45199cc47b7684f73a5ade
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 20c5d56ab783dbc42c890818deed485cf97cb26865e09ba2c2b074a8a00085666da5ef7788d5e2bde04c38ff4596e4a67ba76d4e80f477094f42012fbd641715
|
|
7
|
+
data.tar.gz: 6994824e2d8bbd021424abe787389ebca30c025bf049adea3ef0a296e9f205a725f6d4caa359cbab453fad8d7291fd5e7009df2f9ce61b1e3f183eb202b84ef5
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.87.0
|
|
@@ -5961,7 +5961,7 @@ module Aws::LocationService
|
|
|
5961
5961
|
tracer: tracer
|
|
5962
5962
|
)
|
|
5963
5963
|
context[:gem_name] = 'aws-sdk-locationservice'
|
|
5964
|
-
context[:gem_version] = '1.
|
|
5964
|
+
context[:gem_version] = '1.87.0'
|
|
5965
5965
|
Seahorse::Client::Request.new(handlers, context)
|
|
5966
5966
|
end
|
|
5967
5967
|
|
data/sig/client.rbs
CHANGED
|
@@ -118,15 +118,7 @@ module Aws
|
|
|
118
118
|
def batch_evaluate_geofences: (
|
|
119
119
|
collection_name: ::String,
|
|
120
120
|
device_position_updates: Array[
|
|
121
|
-
|
|
122
|
-
device_id: ::String,
|
|
123
|
-
sample_time: ::Time,
|
|
124
|
-
position: Array[::Float],
|
|
125
|
-
accuracy: {
|
|
126
|
-
horizontal: ::Float
|
|
127
|
-
}?,
|
|
128
|
-
position_properties: Hash[::String, ::String]?
|
|
129
|
-
},
|
|
121
|
+
Params::device_position_update
|
|
130
122
|
]
|
|
131
123
|
) -> _BatchEvaluateGeofencesResponseSuccess
|
|
132
124
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchEvaluateGeofencesResponseSuccess
|
|
@@ -154,27 +146,9 @@ module Aws
|
|
|
154
146
|
entries: Array[
|
|
155
147
|
{
|
|
156
148
|
geofence_id: ::String,
|
|
157
|
-
geometry:
|
|
158
|
-
polygon: Array[
|
|
159
|
-
Array[
|
|
160
|
-
Array[::Float],
|
|
161
|
-
],
|
|
162
|
-
]?,
|
|
163
|
-
circle: {
|
|
164
|
-
center: Array[::Float],
|
|
165
|
-
radius: ::Float
|
|
166
|
-
}?,
|
|
167
|
-
geobuf: ::String?,
|
|
168
|
-
multi_polygon: Array[
|
|
169
|
-
Array[
|
|
170
|
-
Array[
|
|
171
|
-
Array[::Float],
|
|
172
|
-
],
|
|
173
|
-
],
|
|
174
|
-
]?
|
|
175
|
-
},
|
|
149
|
+
geometry: Params::geofence_geometry,
|
|
176
150
|
geofence_properties: Hash[::String, ::String]?
|
|
177
|
-
}
|
|
151
|
+
}
|
|
178
152
|
]
|
|
179
153
|
) -> _BatchPutGeofenceResponseSuccess
|
|
180
154
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchPutGeofenceResponseSuccess
|
|
@@ -187,15 +161,7 @@ module Aws
|
|
|
187
161
|
def batch_update_device_position: (
|
|
188
162
|
tracker_name: ::String,
|
|
189
163
|
updates: Array[
|
|
190
|
-
|
|
191
|
-
device_id: ::String,
|
|
192
|
-
sample_time: ::Time,
|
|
193
|
-
position: Array[::Float],
|
|
194
|
-
accuracy: {
|
|
195
|
-
horizontal: ::Float
|
|
196
|
-
}?,
|
|
197
|
-
position_properties: Hash[::String, ::String]?
|
|
198
|
-
},
|
|
164
|
+
Params::device_position_update
|
|
199
165
|
]
|
|
200
166
|
) -> _BatchUpdateDevicePositionResponseSuccess
|
|
201
167
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchUpdateDevicePositionResponseSuccess
|
|
@@ -211,7 +177,7 @@ module Aws
|
|
|
211
177
|
departure_position: Array[::Float],
|
|
212
178
|
destination_position: Array[::Float],
|
|
213
179
|
?waypoint_positions: Array[
|
|
214
|
-
Array[::Float]
|
|
180
|
+
Array[::Float]
|
|
215
181
|
],
|
|
216
182
|
?travel_mode: ("Car" | "Truck" | "Walking" | "Bicycle" | "Motorcycle"),
|
|
217
183
|
?departure_time: ::Time,
|
|
@@ -222,20 +188,7 @@ module Aws
|
|
|
222
188
|
avoid_ferries: bool?,
|
|
223
189
|
avoid_tolls: bool?
|
|
224
190
|
},
|
|
225
|
-
?truck_mode_options:
|
|
226
|
-
avoid_ferries: bool?,
|
|
227
|
-
avoid_tolls: bool?,
|
|
228
|
-
dimensions: {
|
|
229
|
-
length: ::Float?,
|
|
230
|
-
height: ::Float?,
|
|
231
|
-
width: ::Float?,
|
|
232
|
-
unit: ("Meters" | "Feet")?
|
|
233
|
-
}?,
|
|
234
|
-
weight: {
|
|
235
|
-
total: ::Float?,
|
|
236
|
-
unit: ("Kilograms" | "Pounds")?
|
|
237
|
-
}?
|
|
238
|
-
},
|
|
191
|
+
?truck_mode_options: Params::calculate_route_truck_mode_options,
|
|
239
192
|
?arrival_time: ::Time,
|
|
240
193
|
?optimize_for: ("FastestRoute" | "ShortestRoute"),
|
|
241
194
|
?key: ::String
|
|
@@ -253,10 +206,10 @@ module Aws
|
|
|
253
206
|
def calculate_route_matrix: (
|
|
254
207
|
calculator_name: ::String,
|
|
255
208
|
departure_positions: Array[
|
|
256
|
-
Array[::Float]
|
|
209
|
+
Array[::Float]
|
|
257
210
|
],
|
|
258
211
|
destination_positions: Array[
|
|
259
|
-
Array[::Float]
|
|
212
|
+
Array[::Float]
|
|
260
213
|
],
|
|
261
214
|
?travel_mode: ("Car" | "Truck" | "Walking" | "Bicycle" | "Motorcycle"),
|
|
262
215
|
?departure_time: ::Time,
|
|
@@ -266,20 +219,7 @@ module Aws
|
|
|
266
219
|
avoid_ferries: bool?,
|
|
267
220
|
avoid_tolls: bool?
|
|
268
221
|
},
|
|
269
|
-
?truck_mode_options:
|
|
270
|
-
avoid_ferries: bool?,
|
|
271
|
-
avoid_tolls: bool?,
|
|
272
|
-
dimensions: {
|
|
273
|
-
length: ::Float?,
|
|
274
|
-
height: ::Float?,
|
|
275
|
-
width: ::Float?,
|
|
276
|
-
unit: ("Meters" | "Feet")?
|
|
277
|
-
}?,
|
|
278
|
-
weight: {
|
|
279
|
-
total: ::Float?,
|
|
280
|
-
unit: ("Kilograms" | "Pounds")?
|
|
281
|
-
}?
|
|
282
|
-
},
|
|
222
|
+
?truck_mode_options: Params::calculate_route_truck_mode_options,
|
|
283
223
|
?key: ::String
|
|
284
224
|
) -> _CalculateRouteMatrixResponseSuccess
|
|
285
225
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CalculateRouteMatrixResponseSuccess
|
|
@@ -323,22 +263,7 @@ module Aws
|
|
|
323
263
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LocationService/Client.html#create_key-instance_method
|
|
324
264
|
def create_key: (
|
|
325
265
|
key_name: ::String,
|
|
326
|
-
restrictions:
|
|
327
|
-
allow_actions: Array[::String],
|
|
328
|
-
allow_resources: Array[::String],
|
|
329
|
-
allow_referers: Array[::String]?,
|
|
330
|
-
allow_android_apps: Array[
|
|
331
|
-
{
|
|
332
|
-
package: ::String,
|
|
333
|
-
certificate_fingerprint: ::String
|
|
334
|
-
},
|
|
335
|
-
]?,
|
|
336
|
-
allow_apple_apps: Array[
|
|
337
|
-
{
|
|
338
|
-
bundle_id: ::String
|
|
339
|
-
},
|
|
340
|
-
]?
|
|
341
|
-
},
|
|
266
|
+
restrictions: Params::api_key_restrictions,
|
|
342
267
|
?description: ::String,
|
|
343
268
|
?expire_time: ::Time,
|
|
344
269
|
?no_expiry: bool,
|
|
@@ -773,8 +698,8 @@ module Aws
|
|
|
773
698
|
?filter_geometry: {
|
|
774
699
|
polygon: Array[
|
|
775
700
|
Array[
|
|
776
|
-
Array[::Float]
|
|
777
|
-
]
|
|
701
|
+
Array[::Float]
|
|
702
|
+
]
|
|
778
703
|
]?
|
|
779
704
|
}
|
|
780
705
|
) -> _ListDevicePositionsResponseSuccess
|
|
@@ -916,25 +841,7 @@ module Aws
|
|
|
916
841
|
def put_geofence: (
|
|
917
842
|
collection_name: ::String,
|
|
918
843
|
geofence_id: ::String,
|
|
919
|
-
geometry:
|
|
920
|
-
polygon: Array[
|
|
921
|
-
Array[
|
|
922
|
-
Array[::Float],
|
|
923
|
-
],
|
|
924
|
-
]?,
|
|
925
|
-
circle: {
|
|
926
|
-
center: Array[::Float],
|
|
927
|
-
radius: ::Float
|
|
928
|
-
}?,
|
|
929
|
-
geobuf: ::String?,
|
|
930
|
-
multi_polygon: Array[
|
|
931
|
-
Array[
|
|
932
|
-
Array[
|
|
933
|
-
Array[::Float],
|
|
934
|
-
],
|
|
935
|
-
],
|
|
936
|
-
]?
|
|
937
|
-
},
|
|
844
|
+
geometry: Params::geofence_geometry,
|
|
938
845
|
?geofence_properties: Hash[::String, ::String]
|
|
939
846
|
) -> _PutGeofenceResponseSuccess
|
|
940
847
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutGeofenceResponseSuccess
|
|
@@ -1070,22 +977,7 @@ module Aws
|
|
|
1070
977
|
?expire_time: ::Time,
|
|
1071
978
|
?no_expiry: bool,
|
|
1072
979
|
?force_update: bool,
|
|
1073
|
-
?restrictions:
|
|
1074
|
-
allow_actions: Array[::String],
|
|
1075
|
-
allow_resources: Array[::String],
|
|
1076
|
-
allow_referers: Array[::String]?,
|
|
1077
|
-
allow_android_apps: Array[
|
|
1078
|
-
{
|
|
1079
|
-
package: ::String,
|
|
1080
|
-
certificate_fingerprint: ::String
|
|
1081
|
-
},
|
|
1082
|
-
]?,
|
|
1083
|
-
allow_apple_apps: Array[
|
|
1084
|
-
{
|
|
1085
|
-
bundle_id: ::String
|
|
1086
|
-
},
|
|
1087
|
-
]?
|
|
1088
|
-
}
|
|
980
|
+
?restrictions: Params::api_key_restrictions
|
|
1089
981
|
) -> _UpdateKeyResponseSuccess
|
|
1090
982
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateKeyResponseSuccess
|
|
1091
983
|
|
|
@@ -1179,7 +1071,7 @@ module Aws
|
|
|
1179
1071
|
{
|
|
1180
1072
|
mac_address: ::String,
|
|
1181
1073
|
rss: ::Integer
|
|
1182
|
-
}
|
|
1074
|
+
}
|
|
1183
1075
|
]?,
|
|
1184
1076
|
cell_signals: {
|
|
1185
1077
|
lte_cell_details: Array[
|
|
@@ -1198,14 +1090,14 @@ module Aws
|
|
|
1198
1090
|
pci: ::Integer,
|
|
1199
1091
|
rsrp: ::Integer?,
|
|
1200
1092
|
rsrq: ::Float?
|
|
1201
|
-
}
|
|
1093
|
+
}
|
|
1202
1094
|
]?,
|
|
1203
1095
|
timing_advance: ::Integer?,
|
|
1204
1096
|
nr_capable: bool?,
|
|
1205
1097
|
rsrp: ::Integer?,
|
|
1206
1098
|
rsrq: ::Float?,
|
|
1207
1099
|
tac: ::Integer?
|
|
1208
|
-
}
|
|
1100
|
+
}
|
|
1209
1101
|
]
|
|
1210
1102
|
}?
|
|
1211
1103
|
},
|
data/sig/params.rbs
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
|
2
|
+
#
|
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
5
|
+
#
|
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
|
7
|
+
|
|
8
|
+
module Aws
|
|
9
|
+
module LocationService
|
|
10
|
+
module Params
|
|
11
|
+
type device_position_update = {
|
|
12
|
+
device_id: ::String,
|
|
13
|
+
sample_time: ::Time,
|
|
14
|
+
position: Array[::Float],
|
|
15
|
+
accuracy: {
|
|
16
|
+
horizontal: ::Float
|
|
17
|
+
}?,
|
|
18
|
+
position_properties: Hash[::String, ::String]?
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
type geofence_geometry = {
|
|
22
|
+
polygon: Array[
|
|
23
|
+
Array[
|
|
24
|
+
Array[::Float]
|
|
25
|
+
]
|
|
26
|
+
]?,
|
|
27
|
+
circle: {
|
|
28
|
+
center: Array[::Float],
|
|
29
|
+
radius: ::Float
|
|
30
|
+
}?,
|
|
31
|
+
geobuf: ::String?,
|
|
32
|
+
multi_polygon: Array[
|
|
33
|
+
Array[
|
|
34
|
+
Array[
|
|
35
|
+
Array[::Float]
|
|
36
|
+
]
|
|
37
|
+
]
|
|
38
|
+
]?
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
type calculate_route_truck_mode_options = {
|
|
42
|
+
avoid_ferries: bool?,
|
|
43
|
+
avoid_tolls: bool?,
|
|
44
|
+
dimensions: {
|
|
45
|
+
length: ::Float?,
|
|
46
|
+
height: ::Float?,
|
|
47
|
+
width: ::Float?,
|
|
48
|
+
unit: ("Meters" | "Feet")?
|
|
49
|
+
}?,
|
|
50
|
+
weight: {
|
|
51
|
+
total: ::Float?,
|
|
52
|
+
unit: ("Kilograms" | "Pounds")?
|
|
53
|
+
}?
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
type api_key_restrictions = {
|
|
57
|
+
allow_actions: Array[::String],
|
|
58
|
+
allow_resources: Array[::String],
|
|
59
|
+
allow_referers: Array[::String]?,
|
|
60
|
+
allow_android_apps: Array[
|
|
61
|
+
{
|
|
62
|
+
package: ::String,
|
|
63
|
+
certificate_fingerprint: ::String
|
|
64
|
+
}
|
|
65
|
+
]?,
|
|
66
|
+
allow_apple_apps: Array[
|
|
67
|
+
{
|
|
68
|
+
bundle_id: ::String
|
|
69
|
+
}
|
|
70
|
+
]?
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
end
|
|
74
|
+
end
|
|
75
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-locationservice
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.87.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -68,6 +68,7 @@ files:
|
|
|
68
68
|
- lib/aws-sdk-locationservice/waiters.rb
|
|
69
69
|
- sig/client.rbs
|
|
70
70
|
- sig/errors.rbs
|
|
71
|
+
- sig/params.rbs
|
|
71
72
|
- sig/resource.rbs
|
|
72
73
|
- sig/types.rbs
|
|
73
74
|
- sig/waiters.rbs
|