aws-sdk-locationservice 1.45.0 → 1.47.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 +35 -2
- data/lib/aws-sdk-locationservice/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-locationservice/types.rb +124 -36
- data/lib/aws-sdk-locationservice.rb +1 -1
- data/sig/client.rbs +1016 -0
- data/sig/errors.rbs +39 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +1250 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ff1f4897609944f5778577e76464371936243e355ec469497b2b314fca8a8098
|
4
|
+
data.tar.gz: d00e231ef6f9671faacde6f77f451828307e49cd468136485e2f0d447a18a2e5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b23a90b2a640424e6b4126277eb1980f8327338c038e51f1f881d97d927325606a097430ee9ac67c4ea76c9b19b8336dd2ce0739413c50cedadd05ca0f1fd10f
|
7
|
+
data.tar.gz: cbc2216493dc796b843faf0cb22a1491ed4505188e6f2ec4b57cce50698ff72e626d623e4fe80d399957bdeebcd652d225195155c42005d36b601c01c95f0b16
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.47.0 (2024-01-26)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.46.0 (2024-01-12)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Location SDK documentation update. Added missing fonts to the MapConfiguration data type. Updated note for the SubMunicipality property in the place data type.
|
13
|
+
|
4
14
|
1.45.0 (2024-01-10)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.47.0
|
@@ -2755,7 +2755,7 @@ module Aws::LocationService
|
|
2755
2755
|
# Bold`
|
2756
2756
|
#
|
2757
2757
|
# * VectorEsriNavigation – `Arial Regular` \| `Arial Italic` \| `Arial
|
2758
|
-
# Bold`
|
2758
|
+
# Bold` \| `Arial Unicode MS Bold` \| `Arial Unicode MS Regular`
|
2759
2759
|
#
|
2760
2760
|
# Valid font stacks for [HERE Technologies][2] styles:
|
2761
2761
|
#
|
@@ -3065,6 +3065,39 @@ module Aws::LocationService
|
|
3065
3065
|
# @option params [required, String] :place_id
|
3066
3066
|
# The identifier of the place to find.
|
3067
3067
|
#
|
3068
|
+
# While you can use PlaceID in subsequent requests, PlaceID is not
|
3069
|
+
# intended to be a permanent identifier and the ID can change between
|
3070
|
+
# consecutive API calls. Please see the following PlaceID behaviour for
|
3071
|
+
# each data provider:
|
3072
|
+
#
|
3073
|
+
# * Esri: Place IDs will change every quarter at a minimum. The typical
|
3074
|
+
# time period for these changes would be March, June, September, and
|
3075
|
+
# December. Place IDs might also change between the typical quarterly
|
3076
|
+
# change but that will be much less frequent.
|
3077
|
+
#
|
3078
|
+
# * HERE: We recommend that you cache data for no longer than a week to
|
3079
|
+
# keep your data data fresh. You can assume that less than 1% ID
|
3080
|
+
# shifts will release over release which is approximately 1 - 2 times
|
3081
|
+
# per week.
|
3082
|
+
#
|
3083
|
+
# * Grab: Place IDs can expire or become invalid in the following
|
3084
|
+
# situations.
|
3085
|
+
#
|
3086
|
+
# * Data operations: The POI may be removed from Grab POI database by
|
3087
|
+
# Grab Map Ops based on the ground-truth, such as being closed in
|
3088
|
+
# the real world, being detected as a duplicate POI, or having
|
3089
|
+
# incorrect information. Grab will synchronize data to the Waypoint
|
3090
|
+
# environment on weekly basis.
|
3091
|
+
#
|
3092
|
+
# * Interpolated POI: Interpolated POI is a temporary POI generated in
|
3093
|
+
# real time when serving a request, and it will be marked as derived
|
3094
|
+
# in the `place.result_type` field in the response. The information
|
3095
|
+
# of interpolated POIs will be retained for at least 30 days, which
|
3096
|
+
# means that within 30 days, you are able to obtain POI details by
|
3097
|
+
# Place ID from Place Details API. After 30 days, the interpolated
|
3098
|
+
# POIs(both Place ID and details) may expire and inaccessible from
|
3099
|
+
# the Places Details API.
|
3100
|
+
#
|
3068
3101
|
# @return [Types::GetPlaceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3069
3102
|
#
|
3070
3103
|
# * {Types::GetPlaceResponse#place #place} => Types::Place
|
@@ -4621,7 +4654,7 @@ module Aws::LocationService
|
|
4621
4654
|
params: params,
|
4622
4655
|
config: config)
|
4623
4656
|
context[:gem_name] = 'aws-sdk-locationservice'
|
4624
|
-
context[:gem_version] = '1.
|
4657
|
+
context[:gem_version] = '1.47.0'
|
4625
4658
|
Seahorse::Client::Request.new(handlers, context)
|
4626
4659
|
end
|
4627
4660
|
|
@@ -14,6 +14,7 @@ module Aws::LocationService
|
|
14
14
|
option(
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::LocationService::EndpointProvider',
|
17
|
+
rbs_type: 'untyped',
|
17
18
|
docstring: 'The endpoint provider used to resolve endpoints. Any '\
|
18
19
|
'object that responds to `#resolve_endpoint(parameters)` '\
|
19
20
|
'where `parameters` is a Struct similar to '\
|
@@ -3219,7 +3219,7 @@ module Aws::LocationService
|
|
3219
3219
|
# Bold`
|
3220
3220
|
#
|
3221
3221
|
# * VectorEsriNavigation – `Arial Regular` \| `Arial Italic` \| `Arial
|
3222
|
-
# Bold`
|
3222
|
+
# Bold` \| `Arial Unicode MS Bold` \| `Arial Unicode MS Regular`
|
3223
3223
|
#
|
3224
3224
|
# Valid font stacks for [HERE Technologies][2] styles:
|
3225
3225
|
#
|
@@ -3527,6 +3527,39 @@ module Aws::LocationService
|
|
3527
3527
|
#
|
3528
3528
|
# @!attribute [rw] place_id
|
3529
3529
|
# The identifier of the place to find.
|
3530
|
+
#
|
3531
|
+
# While you can use PlaceID in subsequent requests, PlaceID is not
|
3532
|
+
# intended to be a permanent identifier and the ID can change between
|
3533
|
+
# consecutive API calls. Please see the following PlaceID behaviour
|
3534
|
+
# for each data provider:
|
3535
|
+
#
|
3536
|
+
# * Esri: Place IDs will change every quarter at a minimum. The
|
3537
|
+
# typical time period for these changes would be March, June,
|
3538
|
+
# September, and December. Place IDs might also change between the
|
3539
|
+
# typical quarterly change but that will be much less frequent.
|
3540
|
+
#
|
3541
|
+
# * HERE: We recommend that you cache data for no longer than a week
|
3542
|
+
# to keep your data data fresh. You can assume that less than 1% ID
|
3543
|
+
# shifts will release over release which is approximately 1 - 2
|
3544
|
+
# times per week.
|
3545
|
+
#
|
3546
|
+
# * Grab: Place IDs can expire or become invalid in the following
|
3547
|
+
# situations.
|
3548
|
+
#
|
3549
|
+
# * Data operations: The POI may be removed from Grab POI database
|
3550
|
+
# by Grab Map Ops based on the ground-truth, such as being closed
|
3551
|
+
# in the real world, being detected as a duplicate POI, or having
|
3552
|
+
# incorrect information. Grab will synchronize data to the
|
3553
|
+
# Waypoint environment on weekly basis.
|
3554
|
+
#
|
3555
|
+
# * Interpolated POI: Interpolated POI is a temporary POI generated
|
3556
|
+
# in real time when serving a request, and it will be marked as
|
3557
|
+
# derived in the `place.result_type` field in the response. The
|
3558
|
+
# information of interpolated POIs will be retained for at least
|
3559
|
+
# 30 days, which means that within 30 days, you are able to obtain
|
3560
|
+
# POI details by Place ID from Place Details API. After 30 days,
|
3561
|
+
# the interpolated POIs(both Place ID and details) may expire and
|
3562
|
+
# inaccessible from the Places Details API.
|
3530
3563
|
# @return [String]
|
3531
3564
|
#
|
3532
3565
|
# @see http://docs.aws.amazon.com/goto/WebAPI/location-2020-11-19/GetPlaceRequest AWS API Documentation
|
@@ -4585,13 +4618,17 @@ module Aws::LocationService
|
|
4585
4618
|
# @!attribute [rw] custom_layers
|
4586
4619
|
# Specifies the custom layers for the style. Leave unset to not enable
|
4587
4620
|
# any custom layer, or, for styles that support custom layers, you can
|
4588
|
-
# enable layer(s), such as POI layer for the VectorEsriNavigation
|
4621
|
+
# enable layer(s), such as `POI` layer for the VectorEsriNavigation
|
4589
4622
|
# style. Default is `unset`.
|
4590
4623
|
#
|
4591
|
-
# <note markdown="1">
|
4592
|
-
#
|
4624
|
+
# <note markdown="1"> Currenlty only `VectorEsriNavigation` supports CustomLayers. For
|
4625
|
+
# more information, see [Custom Layers][1].
|
4593
4626
|
#
|
4594
4627
|
# </note>
|
4628
|
+
#
|
4629
|
+
#
|
4630
|
+
#
|
4631
|
+
# [1]: https://docs.aws.amazon.com/location/latest/developerguide/map-concepts.html#map-custom-layers
|
4595
4632
|
# @return [Array<String>]
|
4596
4633
|
#
|
4597
4634
|
# @!attribute [rw] political_view
|
@@ -4616,10 +4653,15 @@ module Aws::LocationService
|
|
4616
4653
|
#
|
4617
4654
|
# Valid [Esri map styles][1]:
|
4618
4655
|
#
|
4619
|
-
# * `
|
4620
|
-
#
|
4621
|
-
#
|
4622
|
-
#
|
4656
|
+
# * `VectorEsriNavigation` – The Esri Navigation map style, which
|
4657
|
+
# provides a detailed basemap for the world symbolized with a custom
|
4658
|
+
# navigation map style that's designed for use during the day in
|
4659
|
+
# mobile devices. It also includes a richer set of places, such as
|
4660
|
+
# shops, services, restaurants, attractions, and other points of
|
4661
|
+
# interest. Enable the `POI` layer by setting it in CustomLayers to
|
4662
|
+
# leverage the additional places data.
|
4663
|
+
#
|
4664
|
+
#
|
4623
4665
|
#
|
4624
4666
|
# * `RasterEsriImagery` – The Esri Imagery map style. A raster basemap
|
4625
4667
|
# that provides one meter or better satellite and aerial imagery in
|
@@ -4639,33 +4681,18 @@ module Aws::LocationService
|
|
4639
4681
|
# Esri street map style. The vector tile layer is similar in content
|
4640
4682
|
# and style to the World Street Map raster map.
|
4641
4683
|
#
|
4642
|
-
# * `
|
4643
|
-
#
|
4644
|
-
#
|
4645
|
-
#
|
4684
|
+
# * `VectorEsriDarkGrayCanvas` – The Esri Dark Gray Canvas map style.
|
4685
|
+
# A vector basemap with a dark gray, neutral background with minimal
|
4686
|
+
# colors, labels, and features that's designed to draw attention to
|
4687
|
+
# your thematic content.
|
4646
4688
|
#
|
4647
4689
|
# Valid [HERE Technologies map styles][2]:
|
4648
4690
|
#
|
4649
|
-
# * `VectorHereContrast` – The HERE Contrast (Berlin) map style is a
|
4650
|
-
# high contrast detailed base map of the world that blends 3D and 2D
|
4651
|
-
# rendering.
|
4652
|
-
#
|
4653
|
-
# <note markdown="1"> The `VectorHereContrast` style has been renamed from
|
4654
|
-
# `VectorHereBerlin`. `VectorHereBerlin` has been deprecated, but
|
4655
|
-
# will continue to work in applications that use it.
|
4656
|
-
#
|
4657
|
-
# </note>
|
4658
|
-
#
|
4659
4691
|
# * `VectorHereExplore` – A default HERE map style containing a
|
4660
4692
|
# neutral, global map and its features including roads, buildings,
|
4661
4693
|
# landmarks, and water features. It also now includes a fully
|
4662
4694
|
# designed map of Japan.
|
4663
4695
|
#
|
4664
|
-
# * `VectorHereExploreTruck` – A global map containing truck
|
4665
|
-
# restrictions and attributes (e.g. width / height / HAZMAT)
|
4666
|
-
# symbolized with highlighted segments and icons on top of HERE
|
4667
|
-
# Explore to support use cases within transport and logistics.
|
4668
|
-
#
|
4669
4696
|
# * `RasterHereExploreSatellite` – A global map containing high
|
4670
4697
|
# resolution satellite imagery.
|
4671
4698
|
#
|
@@ -4681,6 +4708,21 @@ module Aws::LocationService
|
|
4681
4708
|
#
|
4682
4709
|
# </note>
|
4683
4710
|
#
|
4711
|
+
# * `VectorHereContrast` – The HERE Contrast (Berlin) map style is a
|
4712
|
+
# high contrast detailed base map of the world that blends 3D and 2D
|
4713
|
+
# rendering.
|
4714
|
+
#
|
4715
|
+
# <note markdown="1"> The `VectorHereContrast` style has been renamed from
|
4716
|
+
# `VectorHereBerlin`. `VectorHereBerlin` has been deprecated, but
|
4717
|
+
# will continue to work in applications that use it.
|
4718
|
+
#
|
4719
|
+
# </note>
|
4720
|
+
#
|
4721
|
+
# * `VectorHereExploreTruck` – A global map containing truck
|
4722
|
+
# restrictions and attributes (e.g. width / height / HAZMAT)
|
4723
|
+
# symbolized with highlighted segments and icons on top of HERE
|
4724
|
+
# Explore to support use cases within transport and logistics.
|
4725
|
+
#
|
4684
4726
|
# Valid [GrabMaps map styles][3]:
|
4685
4727
|
#
|
4686
4728
|
# * `VectorGrabStandardLight` – The Grab Standard Light map style
|
@@ -4744,13 +4786,17 @@ module Aws::LocationService
|
|
4744
4786
|
# @!attribute [rw] custom_layers
|
4745
4787
|
# Specifies the custom layers for the style. Leave unset to not enable
|
4746
4788
|
# any custom layer, or, for styles that support custom layers, you can
|
4747
|
-
# enable layer(s), such as POI layer for the VectorEsriNavigation
|
4789
|
+
# enable layer(s), such as `POI` layer for the VectorEsriNavigation
|
4748
4790
|
# style. Default is `unset`.
|
4749
4791
|
#
|
4750
|
-
# <note markdown="1">
|
4751
|
-
#
|
4792
|
+
# <note markdown="1"> Currenlty only `VectorEsriNavigation` supports CustomLayers. For
|
4793
|
+
# more information, see [Custom Layers][1].
|
4752
4794
|
#
|
4753
4795
|
# </note>
|
4796
|
+
#
|
4797
|
+
#
|
4798
|
+
#
|
4799
|
+
# [1]: https://docs.aws.amazon.com/location/latest/developerguide/map-concepts.html#map-custom-layers
|
4754
4800
|
# @return [Array<String>]
|
4755
4801
|
#
|
4756
4802
|
# @!attribute [rw] political_view
|
@@ -4857,12 +4903,19 @@ module Aws::LocationService
|
|
4857
4903
|
#
|
4858
4904
|
# @!attribute [rw] sub_municipality
|
4859
4905
|
# An area that's part of a larger municipality. For example,
|
4860
|
-
# `Blissville
|
4906
|
+
# `Blissville` is a submunicipality in the Queen County in New York.
|
4861
4907
|
#
|
4862
|
-
# <note markdown="1"> This property
|
4863
|
-
#
|
4908
|
+
# <note markdown="1"> This property is only returned for a place index that uses Esri as a
|
4909
|
+
# data provider. The property is represented as a `district`.
|
4864
4910
|
#
|
4865
4911
|
# </note>
|
4912
|
+
#
|
4913
|
+
# For more information about data providers, see [Amazon Location
|
4914
|
+
# Service data providers][1].
|
4915
|
+
#
|
4916
|
+
#
|
4917
|
+
#
|
4918
|
+
# [1]: https://docs.aws.amazon.com/location/latest/developerguide/what-is-data-provider.html
|
4866
4919
|
# @return [String]
|
4867
4920
|
#
|
4868
4921
|
# @!attribute [rw] sub_region
|
@@ -4884,8 +4937,9 @@ module Aws::LocationService
|
|
4884
4937
|
# For addresses with multiple units, the unit identifier. Can include
|
4885
4938
|
# numbers and letters, for example `3B` or `Unit 123`.
|
4886
4939
|
#
|
4887
|
-
# <note markdown="1">
|
4888
|
-
# provider.
|
4940
|
+
# <note markdown="1"> This property is returned only for a place index that uses Esri or
|
4941
|
+
# Grab as a data provider. It is not returned for
|
4942
|
+
# `SearchPlaceIndexForPosition`.
|
4889
4943
|
#
|
4890
4944
|
# </note>
|
4891
4945
|
# @return [String]
|
@@ -4894,7 +4948,8 @@ module Aws::LocationService
|
|
4894
4948
|
# For addresses with a `UnitNumber`, the type of unit. For example,
|
4895
4949
|
# `Apartment`.
|
4896
4950
|
#
|
4897
|
-
# <note markdown="1">
|
4951
|
+
# <note markdown="1"> This property is returned only for a place index that uses Esri as a
|
4952
|
+
# data provider.
|
4898
4953
|
#
|
4899
4954
|
# </note>
|
4900
4955
|
# @return [String]
|
@@ -5196,6 +5251,39 @@ module Aws::LocationService
|
|
5196
5251
|
# providers.
|
5197
5252
|
#
|
5198
5253
|
# </note>
|
5254
|
+
#
|
5255
|
+
# While you can use PlaceID in subsequent requests, PlaceID is not
|
5256
|
+
# intended to be a permanent identifier and the ID can change between
|
5257
|
+
# consecutive API calls. Please see the following PlaceID behaviour
|
5258
|
+
# for each data provider:
|
5259
|
+
#
|
5260
|
+
# * Esri: Place IDs will change every quarter at a minimum. The
|
5261
|
+
# typical time period for these changes would be March, June,
|
5262
|
+
# September, and December. Place IDs might also change between the
|
5263
|
+
# typical quarterly change but that will be much less frequent.
|
5264
|
+
#
|
5265
|
+
# * HERE: We recommend that you cache data for no longer than a week
|
5266
|
+
# to keep your data data fresh. You can assume that less than 1% ID
|
5267
|
+
# shifts will release over release which is approximately 1 - 2
|
5268
|
+
# times per week.
|
5269
|
+
#
|
5270
|
+
# * Grab: Place IDs can expire or become invalid in the following
|
5271
|
+
# situations.
|
5272
|
+
#
|
5273
|
+
# * Data operations: The POI may be removed from Grab POI database
|
5274
|
+
# by Grab Map Ops based on the ground-truth, such as being closed
|
5275
|
+
# in the real world, being detected as a duplicate POI, or having
|
5276
|
+
# incorrect information. Grab will synchronize data to the
|
5277
|
+
# Waypoint environment on weekly basis.
|
5278
|
+
#
|
5279
|
+
# * Interpolated POI: Interpolated POI is a temporary POI generated
|
5280
|
+
# in real time when serving a request, and it will be marked as
|
5281
|
+
# derived in the `place.result_type` field in the response. The
|
5282
|
+
# information of interpolated POIs will be retained for at least
|
5283
|
+
# 30 days, which means that within 30 days, you are able to obtain
|
5284
|
+
# POI details by Place ID from Place Details API. After 30 days,
|
5285
|
+
# the interpolated POIs(both Place ID and details) may expire and
|
5286
|
+
# inaccessible from the Places Details API.
|
5199
5287
|
# @return [String]
|
5200
5288
|
#
|
5201
5289
|
# @!attribute [rw] supplemental_categories
|