aws-sdk-outposts 1.33.0 → 1.34.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: 1e0de24751c034ae60e4bd5058c3b9f07a791e0163d3ef1887eeb9d83310a89b
4
- data.tar.gz: e48e1a879dd091dc99e822aa8fcc67d80ea11f694fa43c39253d8d38bfec48c2
3
+ metadata.gz: bbd9041b0fb0a732e5d8e22d4d98d86392bef0ff9184b8fb852018031629eccc
4
+ data.tar.gz: a035f0f01e28c582346597e9b8bc7263a57e20008ffdd69f50c17d403b950492
5
5
  SHA512:
6
- metadata.gz: d90b1d19b0c32780ddd2af7317abad533549b08073d40b9f53acada3315050c4649539b17e85f052e86515a56ff7fad5375440f7be0c32fbe53263275317258d
7
- data.tar.gz: 77288adfdb6a91c37de9e85af08d2fbdfb5bc5a109913b9bff56aea53aa1a078ff5a4a282e3fdfbbfcafe9364e6dcf64bcb53974c278c5979928329026376189
6
+ metadata.gz: 4ba58c6ce8261fa2ca82aa349a26e9cbee5427c85bdbd013a6d9850368e52d71047e9f57c9c98b9aeb923b8930592a876eb413c4f4fe2d5bcd836e97cd80213a
7
+ data.tar.gz: d1a3386711c65cf372a3bc30cd49b1d3d57e968e28b0427b4b7b450973cea9ae017a5d087ae2a171ef1f9d46691b492c6eab5a2803fd937fc32225c8964fce77
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.34.0 (2022-06-20)
5
+ ------------------
6
+
7
+ * Feature - This release adds the AssetLocation structure to the ListAssets response. AssetLocation includes the RackElevation for an Asset.
8
+
4
9
  1.33.0 (2022-06-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.33.0
1
+ 1.34.0
@@ -1066,6 +1066,7 @@ module Aws::Outposts
1066
1066
  # resp.assets[0].rack_id #=> String
1067
1067
  # resp.assets[0].asset_type #=> String, one of "COMPUTE"
1068
1068
  # resp.assets[0].compute_attributes.host_id #=> String
1069
+ # resp.assets[0].asset_location.rack_elevation #=> Float
1069
1070
  # resp.next_token #=> String
1070
1071
  #
1071
1072
  # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListAssets AWS API Documentation
@@ -1896,7 +1897,7 @@ module Aws::Outposts
1896
1897
  params: params,
1897
1898
  config: config)
1898
1899
  context[:gem_name] = 'aws-sdk-outposts'
1899
- context[:gem_version] = '1.33.0'
1900
+ context[:gem_version] = '1.34.0'
1900
1901
  Seahorse::Client::Request.new(handlers, context)
1901
1902
  end
1902
1903
 
@@ -24,6 +24,7 @@ module Aws::Outposts
24
24
  AssetId = Shapes::StringShape.new(name: 'AssetId')
25
25
  AssetInfo = Shapes::StructureShape.new(name: 'AssetInfo')
26
26
  AssetListDefinition = Shapes::ListShape.new(name: 'AssetListDefinition')
27
+ AssetLocation = Shapes::StructureShape.new(name: 'AssetLocation')
27
28
  AssetType = Shapes::StringShape.new(name: 'AssetType')
28
29
  AvailabilityZone = Shapes::StringShape.new(name: 'AvailabilityZone')
29
30
  AvailabilityZoneId = Shapes::StringShape.new(name: 'AvailabilityZoneId')
@@ -140,6 +141,7 @@ module Aws::Outposts
140
141
  PowerFeedDrop = Shapes::StringShape.new(name: 'PowerFeedDrop')
141
142
  PowerPhase = Shapes::StringShape.new(name: 'PowerPhase')
142
143
  Quantity = Shapes::StringShape.new(name: 'Quantity')
144
+ RackElevation = Shapes::FloatShape.new(name: 'RackElevation')
143
145
  RackId = Shapes::StringShape.new(name: 'RackId')
144
146
  RackPhysicalProperties = Shapes::StructureShape.new(name: 'RackPhysicalProperties')
145
147
  ResourceType = Shapes::StringShape.new(name: 'ResourceType')
@@ -207,10 +209,14 @@ module Aws::Outposts
207
209
  AssetInfo.add_member(:rack_id, Shapes::ShapeRef.new(shape: RackId, location_name: "RackId"))
208
210
  AssetInfo.add_member(:asset_type, Shapes::ShapeRef.new(shape: AssetType, location_name: "AssetType"))
209
211
  AssetInfo.add_member(:compute_attributes, Shapes::ShapeRef.new(shape: ComputeAttributes, location_name: "ComputeAttributes"))
212
+ AssetInfo.add_member(:asset_location, Shapes::ShapeRef.new(shape: AssetLocation, location_name: "AssetLocation"))
210
213
  AssetInfo.struct_class = Types::AssetInfo
211
214
 
212
215
  AssetListDefinition.member = Shapes::ShapeRef.new(shape: AssetInfo)
213
216
 
217
+ AssetLocation.add_member(:rack_elevation, Shapes::ShapeRef.new(shape: RackElevation, location_name: "RackElevation"))
218
+ AssetLocation.struct_class = Types::AssetLocation
219
+
214
220
  AvailabilityZoneIdList.member = Shapes::ShapeRef.new(shape: AvailabilityZoneId)
215
221
 
216
222
  AvailabilityZoneList.member = Shapes::ShapeRef.new(shape: AvailabilityZone)
@@ -122,13 +122,32 @@ module Aws::Outposts
122
122
  # Information about compute hardware assets.
123
123
  # @return [Types::ComputeAttributes]
124
124
  #
125
+ # @!attribute [rw] asset_location
126
+ # The position of an asset in a rack.
127
+ # @return [Types::AssetLocation]
128
+ #
125
129
  # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/AssetInfo AWS API Documentation
126
130
  #
127
131
  class AssetInfo < Struct.new(
128
132
  :asset_id,
129
133
  :rack_id,
130
134
  :asset_type,
131
- :compute_attributes)
135
+ :compute_attributes,
136
+ :asset_location)
137
+ SENSITIVE = []
138
+ include Aws::Structure
139
+ end
140
+
141
+ # Information about the position of the asset in a rack.
142
+ #
143
+ # @!attribute [rw] rack_elevation
144
+ # The position of an asset in a rack measured in rack units.
145
+ # @return [Float]
146
+ #
147
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/AssetLocation AWS API Documentation
148
+ #
149
+ class AssetLocation < Struct.new(
150
+ :rack_elevation)
132
151
  SENSITIVE = []
133
152
  include Aws::Structure
134
153
  end
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-outposts/customizations'
48
48
  # @!group service
49
49
  module Aws::Outposts
50
50
 
51
- GEM_VERSION = '1.33.0'
51
+ GEM_VERSION = '1.34.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-outposts
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.33.0
4
+ version: 1.34.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-06-13 00:00:00.000000000 Z
11
+ date: 2022-06-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core