aws-sdk-outposts 1.46.0 → 1.48.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: 3b6a479b5d834c04e5c391b6167e33d6d87c62f3c39943a790db69d325be4c84
4
- data.tar.gz: f878152a9562596cebabfe72602f1e23007f3277b6a2b7d0666edda35ce3a557
3
+ metadata.gz: a47b00e2f2ff9a50b6b3c1fe62bf492e6c681001b844d14c041d773da0606906
4
+ data.tar.gz: 34a4bf0f7052c14c4720eb64fe6e9620fe002d529d0364fb27d2d3a8bef959ac
5
5
  SHA512:
6
- metadata.gz: 56289c97d64f3a75e361c3f44a944426f88410949bc1f467fb5224090f024745fff2bcb06587b938cb4ad5eddf5d3b2299ca164a5033e0dbe97f41c3cd837a2f
7
- data.tar.gz: 9a7559cc45528c1b760db34b5a10f8341df02bd07269a2e288baead52f50534f75c2a243d52d0afd347e8d110dca0c7bc930a5751071a90db684fadbd7be048e
6
+ metadata.gz: d686e93930b3f5f5e83654ec98bb2f3265d6e9fc216bdc1e194198932b51047b4094944834b8710b14867cd10d072844e9bab453a229ca2c2b003a4208905b97
7
+ data.tar.gz: 320723d0d6d6bfe70210b537ff674a6193034176c2fcfda1a9eb327aa5d8d25d735d3650813d90cc6c8b0e5657df73ac4f557d0bcc59fa59fbb93550c6ed4a78
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
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
+
9
+ 1.47.0 (2023-07-11)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.46.0 (2023-07-06)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.46.0
1
+ 1.48.0
@@ -216,6 +216,10 @@ module Aws::Outposts
216
216
  # @option options [Boolean] :endpoint_discovery (false)
217
217
  # When set to `true`, endpoint discovery will be enabled for operations when available.
218
218
  #
219
+ # @option options [Boolean] :ignore_configured_endpoint_urls
220
+ # Setting to true disables use of endpoint URLs provided via environment
221
+ # variables and the shared configuration file.
222
+ #
219
223
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
220
224
  # The log formatter.
221
225
  #
@@ -1067,6 +1071,8 @@ module Aws::Outposts
1067
1071
  # resp.assets[0].asset_type #=> String, one of "COMPUTE"
1068
1072
  # resp.assets[0].compute_attributes.host_id #=> String
1069
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
1070
1076
  # resp.assets[0].asset_location.rack_elevation #=> Float
1071
1077
  # resp.next_token #=> String
1072
1078
  #
@@ -1827,7 +1833,7 @@ module Aws::Outposts
1827
1833
  params: params,
1828
1834
  config: config)
1829
1835
  context[:gem_name] = 'aws-sdk-outposts'
1830
- context[:gem_version] = '1.46.0'
1836
+ context[:gem_version] = '1.48.0'
1831
1837
  Seahorse::Client::Request.new(handlers, context)
1832
1838
  end
1833
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.46.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.46.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-06 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