aws-sdk-locationservice 1.44.0 → 1.45.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: 93e9fe61b27c4450689cf2675904d8df7550dff97541dbdeff5875d7789b2e3e
4
- data.tar.gz: d4d2c0cc017600f225d45ffb864d70fcf2b9db0e5e12b7b2388cbd1e703bbbae
3
+ metadata.gz: 89b887ffbf70ed73ca56dfd7471cf23db5687f29b1a19c9505e703d623e00978
4
+ data.tar.gz: 24f1436231d0e73d48673c540578ec43c54d46c4e4ba0efa7b3798e9386c51ff
5
5
  SHA512:
6
- metadata.gz: f5047b6482d2b2dfd4ef976d5ea70ebb37ec1a90053168dac5916cc293a951a7e11773f060ffad763716d8fd8581debbd27eb6e1ed5ee1092526c931c3bfc968
7
- data.tar.gz: e14e84d16379acff2d4d28d83b62859d1374c38818c91f9289d5f92ed9e0dd9575d25ff614c961dfae0feb6b35e78aeb3b00276e180d4b861ac58abc47637652
6
+ metadata.gz: f58c229bca8693df274b0527fbac1559e35f2e802fbd6fb4d1c31175867f10a263051d75e59a057a8a74318decb8c9bccd4bd7464f0946bf09733341ff8cd50e
7
+ data.tar.gz: 0cfb7d458b030ef2ac04422adb97b0a10b3b9d2d3efb5520ae601155cc019685524a1aa5ebf728f516c1df8cb103ebf5d5297c30471bc67f127d2d48f595ddba
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.45.0 (2024-01-10)
5
+ ------------------
6
+
7
+ * Feature - This release adds API support for custom layers for the maps service APIs: CreateMap, UpdateMap, DescribeMap.
8
+
4
9
  1.44.0 (2023-12-29)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.44.0
1
+ 1.45.0
@@ -1579,6 +1579,7 @@ module Aws::LocationService
1579
1579
  #
1580
1580
  # resp = client.create_map({
1581
1581
  # configuration: { # required
1582
+ # custom_layers: ["CustomLayer"],
1582
1583
  # political_view: "CountryCode3",
1583
1584
  # style: "MapStyle", # required
1584
1585
  # },
@@ -2334,6 +2335,8 @@ module Aws::LocationService
2334
2335
  #
2335
2336
  # @example Response structure
2336
2337
  #
2338
+ # resp.configuration.custom_layers #=> Array
2339
+ # resp.configuration.custom_layers[0] #=> String
2337
2340
  # resp.configuration.political_view #=> String
2338
2341
  # resp.configuration.style #=> String
2339
2342
  # resp.create_time #=> Time
@@ -4396,6 +4399,7 @@ module Aws::LocationService
4396
4399
  #
4397
4400
  # resp = client.update_map({
4398
4401
  # configuration_update: {
4402
+ # custom_layers: ["CustomLayer"],
4399
4403
  # political_view: "CountryCode3OrEmpty",
4400
4404
  # },
4401
4405
  # description: "ResourceDescription",
@@ -4617,7 +4621,7 @@ module Aws::LocationService
4617
4621
  params: params,
4618
4622
  config: config)
4619
4623
  context[:gem_name] = 'aws-sdk-locationservice'
4620
- context[:gem_version] = '1.44.0'
4624
+ context[:gem_version] = '1.45.0'
4621
4625
  Seahorse::Client::Request.new(handlers, context)
4622
4626
  end
4623
4627
 
@@ -99,6 +99,8 @@ module Aws::LocationService
99
99
  CreateRouteCalculatorResponse = Shapes::StructureShape.new(name: 'CreateRouteCalculatorResponse')
100
100
  CreateTrackerRequest = Shapes::StructureShape.new(name: 'CreateTrackerRequest')
101
101
  CreateTrackerResponse = Shapes::StructureShape.new(name: 'CreateTrackerResponse')
102
+ CustomLayer = Shapes::StringShape.new(name: 'CustomLayer')
103
+ CustomLayerList = Shapes::ListShape.new(name: 'CustomLayerList')
102
104
  DataSourceConfiguration = Shapes::StructureShape.new(name: 'DataSourceConfiguration')
103
105
  DeleteGeofenceCollectionRequest = Shapes::StructureShape.new(name: 'DeleteGeofenceCollectionRequest')
104
106
  DeleteGeofenceCollectionResponse = Shapes::StructureShape.new(name: 'DeleteGeofenceCollectionResponse')
@@ -615,6 +617,8 @@ module Aws::LocationService
615
617
  CreateTrackerResponse.add_member(:tracker_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "TrackerName"))
616
618
  CreateTrackerResponse.struct_class = Types::CreateTrackerResponse
617
619
 
620
+ CustomLayerList.member = Shapes::ShapeRef.new(shape: CustomLayer)
621
+
618
622
  DataSourceConfiguration.add_member(:intended_use, Shapes::ShapeRef.new(shape: IntendedUse, location_name: "IntendedUse"))
619
623
  DataSourceConfiguration.struct_class = Types::DataSourceConfiguration
620
624
 
@@ -1044,10 +1048,12 @@ module Aws::LocationService
1044
1048
 
1045
1049
  ListTrackersResponseEntryList.member = Shapes::ShapeRef.new(shape: ListTrackersResponseEntry)
1046
1050
 
1051
+ MapConfiguration.add_member(:custom_layers, Shapes::ShapeRef.new(shape: CustomLayerList, location_name: "CustomLayers"))
1047
1052
  MapConfiguration.add_member(:political_view, Shapes::ShapeRef.new(shape: CountryCode3, location_name: "PoliticalView"))
1048
1053
  MapConfiguration.add_member(:style, Shapes::ShapeRef.new(shape: MapStyle, required: true, location_name: "Style"))
1049
1054
  MapConfiguration.struct_class = Types::MapConfiguration
1050
1055
 
1056
+ MapConfigurationUpdate.add_member(:custom_layers, Shapes::ShapeRef.new(shape: CustomLayerList, location_name: "CustomLayers"))
1051
1057
  MapConfigurationUpdate.add_member(:political_view, Shapes::ShapeRef.new(shape: CountryCode3OrEmpty, location_name: "PoliticalView"))
1052
1058
  MapConfigurationUpdate.struct_class = Types::MapConfigurationUpdate
1053
1059
 
@@ -4582,6 +4582,18 @@ module Aws::LocationService
4582
4582
 
4583
4583
  # Specifies the map tile style selected from an available provider.
4584
4584
  #
4585
+ # @!attribute [rw] custom_layers
4586
+ # Specifies the custom layers for the style. Leave unset to not enable
4587
+ # any custom layer, or, for styles that support custom layers, you can
4588
+ # enable layer(s), such as POI layer for the VectorEsriNavigation
4589
+ # style. Default is `unset`.
4590
+ #
4591
+ # <note markdown="1"> Not all map resources or styles support custom layers. See Custom
4592
+ # Layers for more information.
4593
+ #
4594
+ # </note>
4595
+ # @return [Array<String>]
4596
+ #
4585
4597
  # @!attribute [rw] political_view
4586
4598
  # Specifies the political view for the style. Leave unset to not use a
4587
4599
  # political view, or, for styles that support specific political
@@ -4720,6 +4732,7 @@ module Aws::LocationService
4720
4732
  # @see http://docs.aws.amazon.com/goto/WebAPI/location-2020-11-19/MapConfiguration AWS API Documentation
4721
4733
  #
4722
4734
  class MapConfiguration < Struct.new(
4735
+ :custom_layers,
4723
4736
  :political_view,
4724
4737
  :style)
4725
4738
  SENSITIVE = []
@@ -4728,6 +4741,18 @@ module Aws::LocationService
4728
4741
 
4729
4742
  # Specifies the political view for the style.
4730
4743
  #
4744
+ # @!attribute [rw] custom_layers
4745
+ # Specifies the custom layers for the style. Leave unset to not enable
4746
+ # any custom layer, or, for styles that support custom layers, you can
4747
+ # enable layer(s), such as POI layer for the VectorEsriNavigation
4748
+ # style. Default is `unset`.
4749
+ #
4750
+ # <note markdown="1"> Not all map resources or styles support custom layers. See Custom
4751
+ # Layers for more information.
4752
+ #
4753
+ # </note>
4754
+ # @return [Array<String>]
4755
+ #
4731
4756
  # @!attribute [rw] political_view
4732
4757
  # Specifies the political view for the style. Set to an empty string
4733
4758
  # to not use a political view, or, for styles that support specific
@@ -4747,6 +4772,7 @@ module Aws::LocationService
4747
4772
  # @see http://docs.aws.amazon.com/goto/WebAPI/location-2020-11-19/MapConfigurationUpdate AWS API Documentation
4748
4773
  #
4749
4774
  class MapConfigurationUpdate < Struct.new(
4775
+ :custom_layers,
4750
4776
  :political_view)
4751
4777
  SENSITIVE = []
4752
4778
  include Aws::Structure
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-locationservice/customizations'
52
52
  # @!group service
53
53
  module Aws::LocationService
54
54
 
55
- GEM_VERSION = '1.44.0'
55
+ GEM_VERSION = '1.45.0'
56
56
 
57
57
  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.44.0
4
+ version: 1.45.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: 2023-12-29 00:00:00.000000000 Z
11
+ date: 2024-01-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core