aws-sdk-outposts 1.47.0 → 1.49.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: 3f88eb569d17182cbc9ce86c5d81de96279d43a22370e0f6dcce3f5f138693e7
4
- data.tar.gz: fcdd97deaa5ca9f647ca93d9d9f98c4c2f1fee804730538e6a741df5602e5f33
3
+ metadata.gz: 1c97550595ba04b24058a28c0b210b1188f712105536306d15e21754e2f0353e
4
+ data.tar.gz: 3aefd62bd4a2c4185feb624c5efafc7d4179346e5f0c3fcfd24d249a541f87e1
5
5
  SHA512:
6
- metadata.gz: d1129e8670a07b1f0003dd9d785f8bd196b5b31360d0a8625363dcb00f5c605c639802634d3aed0bc295c954da497f5a20362ff429542cd0834f665655ae606c
7
- data.tar.gz: ce1e34822c8f99dba2101308c6adc78a1ef6edb802927cea0ee951231f6082334368aa7a1adb92945d2caf97b27bed9a3467aa3355a5212e9058532cef38d282
6
+ metadata.gz: 438d4a8099231f4af8e6ce37fdf781e09a1c445d67802101971882be764eac95cb9ab703fa5d37be23d28e429030cbd0257caa235e1ab85a6878ffd3fff8cac7
7
+ data.tar.gz: 18ddf2f6ae0fc0834bd96fde93a25bd4244df11a795b03f7d2b5da6fd10bcf5219e333f369b556294e102c909abe367df26d81bc8bd22b301c870a90ea23e4e0
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.49.0 (2023-09-27)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.48.0 (2023-09-19)
10
+ ------------------
11
+
12
+ * Feature - This release adds the InstanceFamilies field to the ListAssets response.
13
+
4
14
  1.47.0 (2023-07-11)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.47.0
1
+ 1.49.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.49.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.49.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.49.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-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.177.0
22
+ version: 3.184.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.177.0
32
+ version: 3.184.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement