aws-sdk-geomaps 1.19.0 → 1.21.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fd7f707cd79fb51cbcb1b9cf7e733ceeb0f738d5003db44811f15945c4f579da
4
- data.tar.gz: 2fb38b60cec006b0d96a03deb83fd818a12abf14d319d438096589e141254475
3
+ metadata.gz: a5e2fae273686b02e563dc9c7d9784e79ab4029167461783e7962ef169c2dade
4
+ data.tar.gz: e9f66e06de744bdebc304959d5b445be0bc49286eebccca09db4be771be316a7
5
5
  SHA512:
6
- metadata.gz: 2734b6e3026f8f2644c93e8dabb126b2cd687fc6e7413d694b43d29e6f13b36aa7884d11626ea831ff099def3d3bb0abf200f7a7c5784b5988fb30b641299df5
7
- data.tar.gz: 7a129be974bb8fc1a1d7b58db29990cef55da7a9fc065161746627ebe7e302fcc749836f40c01bfc00ab7d092a8e783a9bbb2ef72e5e005ff2d58faf3192c52f
6
+ metadata.gz: 24f876292b2c2bc15a573f57822888ee6aec8d25052bc081adeac5f308a637e4024d448f0f880e10e3e50e3d732a4803908ee90c8a60ac6472f1352cb7cbcfd8
7
+ data.tar.gz: 14bfd9b0ad0f484441ec37055e07f2435c7acd7a79e8cfc9760970b767e09a4b0a686f9b2ed78f8eff06495df28a5c396accb3dc6e2092cd6098af4deaa628e2
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.21.0 (2026-02-03)
5
+ ------------------
6
+
7
+ * Feature - Added support for optional style parameters in maps, including 3D terrain and 3D Buildings
8
+
9
+ 1.20.0 (2026-01-16)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.19.0 (2026-01-08)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.19.0
1
+ 1.21.0
@@ -1218,16 +1218,19 @@ module Aws::GeoMaps
1218
1218
  # * `Hillshade`: Displays the physical terrain details through shading
1219
1219
  # and highlighting of elevation change and geographic features.
1220
1220
  #
1221
- # ^
1221
+ # * `Terrain3D`: Displays physical terrain details and elevations as a
1222
+ # three-dimensional model.
1222
1223
  #
1223
- # This parameter is valid only for the `Standard` map style.
1224
+ # `Hillshade` is valid only for the `Standard` and `Monochrome` map
1225
+ # styles.
1224
1226
  #
1225
1227
  # @option params [String] :contour_density
1226
1228
  # Displays the shape and steepness of terrain features using elevation
1227
1229
  # lines. The density value controls how densely the available contour
1228
1230
  # line information is rendered on the map.
1229
1231
  #
1230
- # This parameter is valid only for the `Standard` map style.
1232
+ # This parameter is valid only for the `Standard`, `Monochrome`, and
1233
+ # `Hybrid` map styles.
1231
1234
  #
1232
1235
  # @option params [String] :traffic
1233
1236
  # Displays real-time traffic information overlay on map, such as
@@ -1243,6 +1246,19 @@ module Aws::GeoMaps
1243
1246
  #
1244
1247
  # This parameter is valid only for the `Standard` map style.
1245
1248
  #
1249
+ # @option params [String] :buildings
1250
+ # Adjusts how building details are rendered on the map.
1251
+ #
1252
+ # The following building styles are currently supported:
1253
+ #
1254
+ # * `Buildings3D`: Displays buildings as three-dimensional extrusions on
1255
+ # the map.
1256
+ #
1257
+ # ^
1258
+ #
1259
+ # `Buildings3D` is valid only for the `Standard` and `Monochrome` map
1260
+ # styles.
1261
+ #
1246
1262
  # @option params [String] :key
1247
1263
  # Optional: The API key to be used for authorization. Either an API key
1248
1264
  # or valid SigV4 signature must be provided when making a request.
@@ -1260,10 +1276,11 @@ module Aws::GeoMaps
1260
1276
  # style: "Standard", # required, accepts Standard, Monochrome, Hybrid, Satellite
1261
1277
  # color_scheme: "Light", # accepts Light, Dark
1262
1278
  # political_view: "CountryCode",
1263
- # terrain: "Hillshade", # accepts Hillshade
1279
+ # terrain: "Hillshade", # accepts Hillshade, Terrain3D
1264
1280
  # contour_density: "Medium", # accepts Medium
1265
1281
  # traffic: "All", # accepts All
1266
1282
  # travel_modes: ["Transit"], # accepts Transit, Truck
1283
+ # buildings: "Buildings3D", # accepts Buildings3D
1267
1284
  # key: "ApiKey",
1268
1285
  # })
1269
1286
  #
@@ -1301,7 +1318,8 @@ module Aws::GeoMaps
1301
1318
  # @option params [required, String] :tileset
1302
1319
  # Specifies the desired tile set.
1303
1320
  #
1304
- # Valid Values: `raster.satellite | vector.basemap`
1321
+ # Valid Values: `raster.satellite | vector.basemap | vector.traffic |
1322
+ # raster.dem`
1305
1323
  #
1306
1324
  # @option params [required, String] :z
1307
1325
  # The zoom value for the map tile.
@@ -1370,7 +1388,7 @@ module Aws::GeoMaps
1370
1388
  tracer: tracer
1371
1389
  )
1372
1390
  context[:gem_name] = 'aws-sdk-geomaps'
1373
- context[:gem_version] = '1.19.0'
1391
+ context[:gem_version] = '1.21.0'
1374
1392
  Seahorse::Client::Request.new(handlers, context)
1375
1393
  end
1376
1394
 
@@ -18,6 +18,7 @@ module Aws::GeoMaps
18
18
  ApiKey = Shapes::StringShape.new(name: 'ApiKey')
19
19
  Blob = Shapes::BlobShape.new(name: 'Blob')
20
20
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
21
+ Buildings = Shapes::StringShape.new(name: 'Buildings')
21
22
  ColorScheme = Shapes::StringShape.new(name: 'ColorScheme')
22
23
  CompactOverlay = Shapes::StringShape.new(name: 'CompactOverlay')
23
24
  ContourDensity = Shapes::StringShape.new(name: 'ContourDensity')
@@ -138,6 +139,7 @@ module Aws::GeoMaps
138
139
  GetStyleDescriptorRequest.add_member(:contour_density, Shapes::ShapeRef.new(shape: ContourDensity, location: "querystring", location_name: "contour-density"))
139
140
  GetStyleDescriptorRequest.add_member(:traffic, Shapes::ShapeRef.new(shape: Traffic, location: "querystring", location_name: "traffic"))
140
141
  GetStyleDescriptorRequest.add_member(:travel_modes, Shapes::ShapeRef.new(shape: TravelModeList, location: "querystring", location_name: "travel-modes"))
142
+ GetStyleDescriptorRequest.add_member(:buildings, Shapes::ShapeRef.new(shape: Buildings, location: "querystring", location_name: "buildings"))
141
143
  GetStyleDescriptorRequest.add_member(:key, Shapes::ShapeRef.new(shape: ApiKey, location: "querystring", location_name: "key"))
142
144
  GetStyleDescriptorRequest.struct_class = Types::GetStyleDescriptorRequest
143
145
 
@@ -776,9 +776,11 @@ module Aws::GeoMaps
776
776
  # * `Hillshade`: Displays the physical terrain details through shading
777
777
  # and highlighting of elevation change and geographic features.
778
778
  #
779
- # ^
779
+ # * `Terrain3D`: Displays physical terrain details and elevations as a
780
+ # three-dimensional model.
780
781
  #
781
- # This parameter is valid only for the `Standard` map style.
782
+ # `Hillshade` is valid only for the `Standard` and `Monochrome` map
783
+ # styles.
782
784
  # @return [String]
783
785
  #
784
786
  # @!attribute [rw] contour_density
@@ -786,7 +788,8 @@ module Aws::GeoMaps
786
788
  # lines. The density value controls how densely the available contour
787
789
  # line information is rendered on the map.
788
790
  #
789
- # This parameter is valid only for the `Standard` map style.
791
+ # This parameter is valid only for the `Standard`, `Monochrome`, and
792
+ # `Hybrid` map styles.
790
793
  # @return [String]
791
794
  #
792
795
  # @!attribute [rw] traffic
@@ -805,6 +808,20 @@ module Aws::GeoMaps
805
808
  # This parameter is valid only for the `Standard` map style.
806
809
  # @return [Array<String>]
807
810
  #
811
+ # @!attribute [rw] buildings
812
+ # Adjusts how building details are rendered on the map.
813
+ #
814
+ # The following building styles are currently supported:
815
+ #
816
+ # * `Buildings3D`: Displays buildings as three-dimensional extrusions
817
+ # on the map.
818
+ #
819
+ # ^
820
+ #
821
+ # `Buildings3D` is valid only for the `Standard` and `Monochrome` map
822
+ # styles.
823
+ # @return [String]
824
+ #
808
825
  # @!attribute [rw] key
809
826
  # Optional: The API key to be used for authorization. Either an API
810
827
  # key or valid SigV4 signature must be provided when making a request.
@@ -820,6 +837,7 @@ module Aws::GeoMaps
820
837
  :contour_density,
821
838
  :traffic,
822
839
  :travel_modes,
840
+ :buildings,
823
841
  :key)
824
842
  SENSITIVE = [:political_view, :key]
825
843
  include Aws::Structure
@@ -862,7 +880,8 @@ module Aws::GeoMaps
862
880
  # @!attribute [rw] tileset
863
881
  # Specifies the desired tile set.
864
882
  #
865
- # Valid Values: `raster.satellite | vector.basemap`
883
+ # Valid Values: `raster.satellite | vector.basemap | vector.traffic |
884
+ # raster.dem`
866
885
  # @return [String]
867
886
  #
868
887
  # @!attribute [rw] z
@@ -0,0 +1,15 @@
1
+ # frozen_string_literal: true
2
+
3
+ # WARNING ABOUT GENERATED CODE
4
+ #
5
+ # This file is generated. See the contributing guide for more information:
6
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
7
+ #
8
+ # WARNING ABOUT GENERATED CODE
9
+
10
+ require 'aws-sdk-core/waiters'
11
+
12
+ module Aws::GeoMaps
13
+ module Waiters
14
+ end
15
+ end
@@ -49,12 +49,13 @@ module Aws::GeoMaps
49
49
  end
50
50
  autoload :Client, 'aws-sdk-geomaps/client'
51
51
  autoload :Errors, 'aws-sdk-geomaps/errors'
52
+ autoload :Waiters, 'aws-sdk-geomaps/waiters'
52
53
  autoload :Resource, 'aws-sdk-geomaps/resource'
53
54
  autoload :EndpointParameters, 'aws-sdk-geomaps/endpoint_parameters'
54
55
  autoload :EndpointProvider, 'aws-sdk-geomaps/endpoint_provider'
55
56
  autoload :Endpoints, 'aws-sdk-geomaps/endpoints'
56
57
 
57
- GEM_VERSION = '1.19.0'
58
+ GEM_VERSION = '1.21.0'
58
59
 
59
60
  end
60
61
 
data/sig/client.rbs CHANGED
@@ -153,10 +153,11 @@ module Aws
153
153
  style: ("Standard" | "Monochrome" | "Hybrid" | "Satellite"),
154
154
  ?color_scheme: ("Light" | "Dark"),
155
155
  ?political_view: ::String,
156
- ?terrain: ("Hillshade"),
156
+ ?terrain: ("Hillshade" | "Terrain3D"),
157
157
  ?contour_density: ("Medium"),
158
158
  ?traffic: ("All"),
159
159
  ?travel_modes: Array[("Transit" | "Truck")],
160
+ ?buildings: ("Buildings3D"),
160
161
  ?key: ::String
161
162
  ) ?{ (*untyped) -> void } -> _GetStyleDescriptorResponseSuccess
162
163
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) ?{ (*untyped) -> void } -> _GetStyleDescriptorResponseSuccess
data/sig/types.rbs CHANGED
@@ -80,10 +80,11 @@ module Aws::GeoMaps
80
80
  attr_accessor style: ("Standard" | "Monochrome" | "Hybrid" | "Satellite")
81
81
  attr_accessor color_scheme: ("Light" | "Dark")
82
82
  attr_accessor political_view: ::String
83
- attr_accessor terrain: ("Hillshade")
83
+ attr_accessor terrain: ("Hillshade" | "Terrain3D")
84
84
  attr_accessor contour_density: ("Medium")
85
85
  attr_accessor traffic: ("All")
86
86
  attr_accessor travel_modes: ::Array[("Transit" | "Truck")]
87
+ attr_accessor buildings: ("Buildings3D")
87
88
  attr_accessor key: ::String
88
89
  SENSITIVE: [:political_view, :key]
89
90
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-geomaps
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.19.0
4
+ version: 1.21.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.241.3
21
+ version: 3.241.4
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.241.3
31
+ version: 3.241.4
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement
@@ -65,6 +65,7 @@ files:
65
65
  - lib/aws-sdk-geomaps/plugins/endpoints.rb
66
66
  - lib/aws-sdk-geomaps/resource.rb
67
67
  - lib/aws-sdk-geomaps/types.rb
68
+ - lib/aws-sdk-geomaps/waiters.rb
68
69
  - sig/client.rbs
69
70
  - sig/errors.rbs
70
71
  - sig/resource.rbs