aws-sdk-outposts 1.47.0 → 1.48.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: 3f88eb569d17182cbc9ce86c5d81de96279d43a22370e0f6dcce3f5f138693e7
4
- data.tar.gz: fcdd97deaa5ca9f647ca93d9d9f98c4c2f1fee804730538e6a741df5602e5f33
3
+ metadata.gz: a47b00e2f2ff9a50b6b3c1fe62bf492e6c681001b844d14c041d773da0606906
4
+ data.tar.gz: 34a4bf0f7052c14c4720eb64fe6e9620fe002d529d0364fb27d2d3a8bef959ac
5
5
  SHA512:
6
- metadata.gz: d1129e8670a07b1f0003dd9d785f8bd196b5b31360d0a8625363dcb00f5c605c639802634d3aed0bc295c954da497f5a20362ff429542cd0834f665655ae606c
7
- data.tar.gz: ce1e34822c8f99dba2101308c6adc78a1ef6edb802927cea0ee951231f6082334368aa7a1adb92945d2caf97b27bed9a3467aa3355a5212e9058532cef38d282
6
+ metadata.gz: d686e93930b3f5f5e83654ec98bb2f3265d6e9fc216bdc1e194198932b51047b4094944834b8710b14867cd10d072844e9bab453a229ca2c2b003a4208905b97
7
+ data.tar.gz: 320723d0d6d6bfe70210b537ff674a6193034176c2fcfda1a9eb327aa5d8d25d735d3650813d90cc6c8b0e5657df73ac4f557d0bcc59fa59fbb93550c6ed4a78
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.48.0 (2023-09-19)
5
+ ------------------
6
+
7
+ * Feature - This release adds the InstanceFamilies field to the ListAssets response.
8
+
4
9
  1.47.0 (2023-07-11)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.47.0
1
+ 1.48.0
@@ -1071,6 +1071,8 @@ module Aws::Outposts
1071
1071
  # resp.assets[0].asset_type #=> String, one of "COMPUTE"
1072
1072
  # resp.assets[0].compute_attributes.host_id #=> String
1073
1073
  # resp.assets[0].compute_attributes.state #=> String, one of "ACTIVE", "ISOLATED", "RETIRING"
1074
+ # resp.assets[0].compute_attributes.instance_families #=> Array
1075
+ # resp.assets[0].compute_attributes.instance_families[0] #=> String
1074
1076
  # resp.assets[0].asset_location.rack_elevation #=> Float
1075
1077
  # resp.next_token #=> String
1076
1078
  #
@@ -1831,7 +1833,7 @@ module Aws::Outposts
1831
1833
  params: params,
1832
1834
  config: config)
1833
1835
  context[:gem_name] = 'aws-sdk-outposts'
1834
- context[:gem_version] = '1.47.0'
1836
+ context[:gem_version] = '1.48.0'
1835
1837
  Seahorse::Client::Request.new(handlers, context)
1836
1838
  end
1837
1839
 
@@ -88,6 +88,8 @@ module Aws::Outposts
88
88
  HostId = Shapes::StringShape.new(name: 'HostId')
89
89
  HostIdList = Shapes::ListShape.new(name: 'HostIdList')
90
90
  ISO8601Timestamp = Shapes::TimestampShape.new(name: 'ISO8601Timestamp')
91
+ InstanceFamilies = Shapes::ListShape.new(name: 'InstanceFamilies')
92
+ InstanceFamilyName = Shapes::StringShape.new(name: 'InstanceFamilyName')
91
93
  InstanceType = Shapes::StringShape.new(name: 'InstanceType')
92
94
  InstanceTypeItem = Shapes::StructureShape.new(name: 'InstanceTypeItem')
93
95
  InstanceTypeListDefinition = Shapes::ListShape.new(name: 'InstanceTypeListDefinition')
@@ -255,6 +257,7 @@ module Aws::Outposts
255
257
 
256
258
  ComputeAttributes.add_member(:host_id, Shapes::ShapeRef.new(shape: HostId, location_name: "HostId"))
257
259
  ComputeAttributes.add_member(:state, Shapes::ShapeRef.new(shape: ComputeAssetState, location_name: "State"))
260
+ ComputeAttributes.add_member(:instance_families, Shapes::ShapeRef.new(shape: InstanceFamilies, location_name: "InstanceFamilies"))
258
261
  ComputeAttributes.struct_class = Types::ComputeAttributes
259
262
 
260
263
  ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
@@ -377,6 +380,8 @@ module Aws::Outposts
377
380
 
378
381
  HostIdList.member = Shapes::ShapeRef.new(shape: HostId)
379
382
 
383
+ InstanceFamilies.member = Shapes::ShapeRef.new(shape: InstanceFamilyName)
384
+
380
385
  InstanceTypeItem.add_member(:instance_type, Shapes::ShapeRef.new(shape: InstanceType, location_name: "InstanceType"))
381
386
  InstanceTypeItem.struct_class = Types::InstanceTypeItem
382
387
 
@@ -218,11 +218,17 @@ module Aws::Outposts
218
218
  # asset can be replaced.
219
219
  # @return [String]
220
220
  #
221
+ # @!attribute [rw] instance_families
222
+ # A list of the names of instance families that are currently
223
+ # associated with a given asset.
224
+ # @return [Array<String>]
225
+ #
221
226
  # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ComputeAttributes AWS API Documentation
222
227
  #
223
228
  class ComputeAttributes < Struct.new(
224
229
  :host_id,
225
- :state)
230
+ :state,
231
+ :instance_families)
226
232
  SENSITIVE = []
227
233
  include Aws::Structure
228
234
  end
@@ -775,7 +781,7 @@ module Aws::Outposts
775
781
  # @return [String]
776
782
  #
777
783
  # @!attribute [rw] previous_order_id
778
- # The ID of the previous order item.
784
+ # The ID of the previous order.
779
785
  # @return [String]
780
786
  #
781
787
  # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/LineItem AWS API Documentation
@@ -1155,7 +1161,7 @@ module Aws::Outposts
1155
1161
  # @return [String]
1156
1162
  #
1157
1163
  # @!attribute [rw] order_type
1158
- # Type of order.
1164
+ # The type of order.
1159
1165
  # @return [String]
1160
1166
  #
1161
1167
  # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/Order AWS API Documentation
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-outposts/customizations'
52
52
  # @!group service
53
53
  module Aws::Outposts
54
54
 
55
- GEM_VERSION = '1.47.0'
55
+ GEM_VERSION = '1.48.0'
56
56
 
57
57
  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.47.0
4
+ version: 1.48.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-07-11 00:00:00.000000000 Z
11
+ date: 2023-09-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core