aws-sdk-locationservice 1.18.0 → 1.21.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 95a67e67ffea477482603ea65251ec3598bdea617e92279054648ec148e940b2
4
- data.tar.gz: 334f6638c8cc1cd9137c7f2a4917ec3d4ecae3ef621638c3a2a8900ff79a9b78
3
+ metadata.gz: e831562a3f4d883cec098f59c3abb06a31f1afb06d81c6195de6bd7561d6c9f6
4
+ data.tar.gz: 51ae3fa958b3b8f12bd58d1a4d63005b82668e85c0a49806eb7580907df3b14b
5
5
  SHA512:
6
- metadata.gz: f635bb4a6ca3ebcb7b82f72369560c9dfe9db094e8400ce1494c668aa4b204b241d67c5263df06a02683232a04b3262b22661937edb6d8f093d83aaea6163240
7
- data.tar.gz: c5732df6aedcded9da2d15d886f774d003b415680101f531705141dd3282f15923f52750832debc818e60cbf30874f4e7016357edf7e4b4297e472f3c4a2f5fd
6
+ metadata.gz: 7f47ca9c53b45055a6795fc37cf0fd4a4457c0759774ca2753af8f7b3e2aa6d7887ae6a84743df810204badd5d95369185d11872dcebfa8567b1d8ad6a90a006
7
+ data.tar.gz: 9e673ec20db5623853d2d458f7914d1fc83fef3d07dddf625a0695d9243c3c173ca969561f03c1334dd4cc096d27d2a098419b25d3a31f2064e9d63956dfc4b9
data/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.21.0 (2022-03-22)
5
+ ------------------
6
+
7
+ * Feature - Amazon Location Service now includes a MaxResults parameter for GetDevicePositionHistory requests.
8
+
9
+ 1.20.0 (2022-03-15)
10
+ ------------------
11
+
12
+ * Feature - New HERE style "VectorHereExplore" and "VectorHereExploreTruck".
13
+
14
+ 1.19.0 (2022-02-24)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
4
19
  1.18.0 (2022-02-03)
5
20
  ------------------
6
21
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.18.0
1
+ 1.21.0
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
30
31
  require 'aws-sdk-core/plugins/defaults_mode.rb'
31
32
  require 'aws-sdk-core/plugins/recursion_detection.rb'
32
33
  require 'aws-sdk-core/plugins/signature_v4.rb'
@@ -75,6 +76,7 @@ module Aws::LocationService
75
76
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
76
77
  add_plugin(Aws::Plugins::TransferEncoding)
77
78
  add_plugin(Aws::Plugins::HttpChecksum)
79
+ add_plugin(Aws::Plugins::ChecksumAlgorithm)
78
80
  add_plugin(Aws::Plugins::DefaultsMode)
79
81
  add_plugin(Aws::Plugins::RecursionDetection)
80
82
  add_plugin(Aws::Plugins::SignatureV4)
@@ -2241,6 +2243,12 @@ module Aws::LocationService
2241
2243
  #
2242
2244
  # [1]: https://www.iso.org/iso-8601-date-and-time-format.html
2243
2245
  #
2246
+ # @option params [Integer] :max_results
2247
+ # An optional limit for the number of device positions returned in a
2248
+ # single call.
2249
+ #
2250
+ # Default value: `100`
2251
+ #
2244
2252
  # @option params [String] :next_token
2245
2253
  # The pagination token specifying which page of results to return in the
2246
2254
  # response. If no token is provided, the default page is the first page.
@@ -2279,6 +2287,7 @@ module Aws::LocationService
2279
2287
  # resp = client.get_device_position_history({
2280
2288
  # device_id: "Id", # required
2281
2289
  # end_time_exclusive: Time.now,
2290
+ # max_results: 1,
2282
2291
  # next_token: "Token",
2283
2292
  # start_time_inclusive: Time.now,
2284
2293
  # tracker_name: "ResourceName", # required
@@ -2377,7 +2386,9 @@ module Aws::LocationService
2377
2386
  #
2378
2387
  # * VectorHereBerlin – `Fira GO Regular` \| `Fira GO Bold`
2379
2388
  #
2380
- # ^
2389
+ # * VectorHereExplore, VectorHereExploreTruck – `Firo GO Italic` \|
2390
+ # `Fira GO Map` \| `Fira GO Map Bold` \| `Noto Sans CJK JP Bold` \|
2391
+ # `Noto Sans CJK JP Light` \| `Noto Sans CJK JP Regular`
2381
2392
  #
2382
2393
  #
2383
2394
  #
@@ -3748,7 +3759,7 @@ module Aws::LocationService
3748
3759
  params: params,
3749
3760
  config: config)
3750
3761
  context[:gem_name] = 'aws-sdk-locationservice'
3751
- context[:gem_version] = '1.18.0'
3762
+ context[:gem_version] = '1.21.0'
3752
3763
  Seahorse::Client::Request.new(handlers, context)
3753
3764
  end
3754
3765
 
@@ -118,6 +118,7 @@ module Aws::LocationService
118
118
  Double = Shapes::FloatShape.new(name: 'Double')
119
119
  GeofenceGeometry = Shapes::StructureShape.new(name: 'GeofenceGeometry')
120
120
  GetDevicePositionHistoryRequest = Shapes::StructureShape.new(name: 'GetDevicePositionHistoryRequest')
121
+ GetDevicePositionHistoryRequestMaxResultsInteger = Shapes::IntegerShape.new(name: 'GetDevicePositionHistoryRequestMaxResultsInteger')
121
122
  GetDevicePositionHistoryResponse = Shapes::StructureShape.new(name: 'GetDevicePositionHistoryResponse')
122
123
  GetDevicePositionRequest = Shapes::StructureShape.new(name: 'GetDevicePositionRequest')
123
124
  GetDevicePositionResponse = Shapes::StructureShape.new(name: 'GetDevicePositionResponse')
@@ -663,6 +664,7 @@ module Aws::LocationService
663
664
 
664
665
  GetDevicePositionHistoryRequest.add_member(:device_id, Shapes::ShapeRef.new(shape: Id, required: true, location: "uri", location_name: "DeviceId"))
665
666
  GetDevicePositionHistoryRequest.add_member(:end_time_exclusive, Shapes::ShapeRef.new(shape: Timestamp, location_name: "EndTimeExclusive"))
667
+ GetDevicePositionHistoryRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: GetDevicePositionHistoryRequestMaxResultsInteger, location_name: "MaxResults"))
666
668
  GetDevicePositionHistoryRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: Token, location_name: "NextToken"))
667
669
  GetDevicePositionHistoryRequest.add_member(:start_time_inclusive, Shapes::ShapeRef.new(shape: Timestamp, location_name: "StartTimeInclusive"))
668
670
  GetDevicePositionHistoryRequest.add_member(:tracker_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "TrackerName"))
@@ -1594,6 +1596,7 @@ module Aws::LocationService
1594
1596
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1595
1597
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1596
1598
  o[:pager] = Aws::Pager.new(
1599
+ limit_key: "max_results",
1597
1600
  tokens: {
1598
1601
  "next_token" => "next_token"
1599
1602
  }
@@ -1236,7 +1236,7 @@ module Aws::LocationService
1236
1236
  # @return [Boolean]
1237
1237
  #
1238
1238
  # @!attribute [rw] avoid_tolls
1239
- # Avoids ferries when calculating routes.
1239
+ # Avoids tolls when calculating routes.
1240
1240
  #
1241
1241
  # Default Value: `false`
1242
1242
  #
@@ -2674,7 +2674,7 @@ module Aws::LocationService
2674
2674
  #
2675
2675
  #
2676
2676
  #
2677
- # [1]: https://earth-info.nga.mil/GandG/wgs84/index.html
2677
+ # [1]: https://earth-info.nga.mil/index.php?dir=wgs84&amp;action=wgs84
2678
2678
  # @return [Array<Float>]
2679
2679
  #
2680
2680
  # @!attribute [rw] position_properties
@@ -2791,6 +2791,7 @@ module Aws::LocationService
2791
2791
  # {
2792
2792
  # device_id: "Id", # required
2793
2793
  # end_time_exclusive: Time.now,
2794
+ # max_results: 1,
2794
2795
  # next_token: "Token",
2795
2796
  # start_time_inclusive: Time.now,
2796
2797
  # tracker_name: "ResourceName", # required
@@ -2817,6 +2818,13 @@ module Aws::LocationService
2817
2818
  # [1]: https://www.iso.org/iso-8601-date-and-time-format.html
2818
2819
  # @return [Time]
2819
2820
  #
2821
+ # @!attribute [rw] max_results
2822
+ # An optional limit for the number of device positions returned in a
2823
+ # single call.
2824
+ #
2825
+ # Default value: `100`
2826
+ # @return [Integer]
2827
+ #
2820
2828
  # @!attribute [rw] next_token
2821
2829
  # The pagination token specifying which page of results to return in
2822
2830
  # the response. If no token is provided, the default page is the first
@@ -2852,6 +2860,7 @@ module Aws::LocationService
2852
2860
  class GetDevicePositionHistoryRequest < Struct.new(
2853
2861
  :device_id,
2854
2862
  :end_time_exclusive,
2863
+ :max_results,
2855
2864
  :next_token,
2856
2865
  :start_time_inclusive,
2857
2866
  :tracker_name)
@@ -3063,7 +3072,9 @@ module Aws::LocationService
3063
3072
  #
3064
3073
  # * VectorHereBerlin – `Fira GO Regular` \| `Fira GO Bold`
3065
3074
  #
3066
- # ^
3075
+ # * VectorHereExplore, VectorHereExploreTruck – `Firo GO Italic` \|
3076
+ # `Fira GO Map` \| `Fira GO Map Bold` \| `Noto Sans CJK JP Bold` \|
3077
+ # `Noto Sans CJK JP Light` \| `Noto Sans CJK JP Regular`
3067
3078
  #
3068
3079
  #
3069
3080
  #
@@ -4271,18 +4282,20 @@ module Aws::LocationService
4271
4282
  # * `VectorHereBerlin` – The HERE Berlin map style is a high contrast
4272
4283
  # detailed base map of the world that blends 3D and 2D rendering.
4273
4284
  #
4274
- # <note markdown="1"> When using HERE as your data provider, and selecting the Style
4275
- # `VectorHereBerlin`, you may not use HERE Technologies maps for
4276
- # Asset Management. See the [AWS Service Terms][3] for Amazon
4277
- # Location Service.
4285
+ # * `VectorHereExplore` A default HERE map style containing a
4286
+ # neutral, global map and its features including roads, buildings,
4287
+ # landmarks, and water features. It also now includes a fully
4288
+ # designed map of Japan.
4278
4289
  #
4279
- # </note>
4290
+ # * `VectorHereExploreTruck` – A global map containing truck
4291
+ # restrictions and attributes (e.g. width / height / HAZMAT)
4292
+ # symbolized with highlighted segments and icons on top of HERE
4293
+ # Explore to support use cases within transport and logistics.
4280
4294
  #
4281
4295
  #
4282
4296
  #
4283
4297
  # [1]: https://docs.aws.amazon.com/location/latest/developerguide/esri.html
4284
4298
  # [2]: https://docs.aws.amazon.com/location/latest/developerguide/HERE.html
4285
- # [3]: https://aws.amazon.com/service-terms/
4286
4299
  # @return [String]
4287
4300
  #
4288
4301
  # @see http://docs.aws.amazon.com/goto/WebAPI/location-2020-11-19/MapConfiguration AWS API Documentation
@@ -4520,8 +4533,8 @@ module Aws::LocationService
4520
4533
  include Aws::Structure
4521
4534
  end
4522
4535
 
4523
- # The result for one `SnappedDeparturePosition`
4524
- # `SnappedDestinationPosition` pair.
4536
+ # The result for the calculated route of one `DeparturePosition`
4537
+ # `DestinationPosition` pair.
4525
4538
  #
4526
4539
  # @!attribute [rw] distance
4527
4540
  # The total distance of travel for the route.
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-locationservice/customizations'
48
48
  # @!group service
49
49
  module Aws::LocationService
50
50
 
51
- GEM_VERSION = '1.18.0'
51
+ GEM_VERSION = '1.21.0'
52
52
 
53
53
  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.18.0
4
+ version: 1.21.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: 2022-02-03 00:00:00.000000000 Z
11
+ date: 2022-03-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.126.0
22
+ version: 3.127.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.126.0
32
+ version: 3.127.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement