aws-sdk-outposts 1.97.0 → 1.98.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-outposts/client.rb +19 -4
- data/lib/aws-sdk-outposts/client_api.rb +4 -0
- data/lib/aws-sdk-outposts/types.rb +20 -1
- data/lib/aws-sdk-outposts.rb +1 -1
- data/sig/client.rbs +2 -1
- data/sig/types.rbs +4 -3
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fda6eaa0dad16eda7dd78b330355035357ae1222a466496688c616788967b06d
|
|
4
|
+
data.tar.gz: b1ff8f0f29a6f028b595424daff9ef185af9e5c9fa0979067ab082ed97636377
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 86e948d440b4e22b12df72abbca0d1d75b7180176e3fdd7a433d37f56b60d2058b95624b6b7468612b993d527e69b3cb49515c42524834bbcfee32c2186ce460
|
|
7
|
+
data.tar.gz: 706f4fd88cde96534cd9b0ba70a5ab175f9951557573dd8dc2910d75d32f01f34a1ff8a884e9383a2e9fe93eb915d4750e222f4dce7093dd126e7817a77100a1
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.98.0 (2026-04-07)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This change allows listAssets to surface pending and non-compute asset information. Adds the INSTALLING asset state enum and the STORAGE, POWERSHELF, SWITCH, and NETWORKING AssetTypes.
|
|
8
|
+
|
|
4
9
|
1.97.0 (2026-03-18)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.98.0
|
|
@@ -1395,6 +1395,20 @@ module Aws::Outposts
|
|
|
1395
1395
|
# @option params [Array<String>] :status_filter
|
|
1396
1396
|
# Filters the results by state.
|
|
1397
1397
|
#
|
|
1398
|
+
# @option params [Array<String>] :asset_type_filter
|
|
1399
|
+
# Filters the results by asset type.
|
|
1400
|
+
#
|
|
1401
|
+
# * COMPUTE - Server asset used for customer compute
|
|
1402
|
+
#
|
|
1403
|
+
# * STORAGE - Server asset used by storage services
|
|
1404
|
+
#
|
|
1405
|
+
# * POWERSHELF - Powershelf assets
|
|
1406
|
+
#
|
|
1407
|
+
# * SWITCH - Switch assets
|
|
1408
|
+
#
|
|
1409
|
+
# * NETWORKING - Asset managed by Amazon Web Services for networking
|
|
1410
|
+
# purposes
|
|
1411
|
+
#
|
|
1398
1412
|
# @return [Types::ListAssetsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1399
1413
|
#
|
|
1400
1414
|
# * {Types::ListAssetsOutput#assets #assets} => Array<Types::AssetInfo>
|
|
@@ -1409,7 +1423,8 @@ module Aws::Outposts
|
|
|
1409
1423
|
# host_id_filter: ["HostId"],
|
|
1410
1424
|
# max_results: 1,
|
|
1411
1425
|
# next_token: "Token",
|
|
1412
|
-
# status_filter: ["ACTIVE"], # accepts ACTIVE, RETIRING, ISOLATED
|
|
1426
|
+
# status_filter: ["ACTIVE"], # accepts ACTIVE, RETIRING, ISOLATED, INSTALLING
|
|
1427
|
+
# asset_type_filter: ["COMPUTE"], # accepts COMPUTE, STORAGE, POWERSHELF, SWITCH, NETWORKING
|
|
1413
1428
|
# })
|
|
1414
1429
|
#
|
|
1415
1430
|
# @example Response structure
|
|
@@ -1417,9 +1432,9 @@ module Aws::Outposts
|
|
|
1417
1432
|
# resp.assets #=> Array
|
|
1418
1433
|
# resp.assets[0].asset_id #=> String
|
|
1419
1434
|
# resp.assets[0].rack_id #=> String
|
|
1420
|
-
# resp.assets[0].asset_type #=> String, one of "COMPUTE"
|
|
1435
|
+
# resp.assets[0].asset_type #=> String, one of "COMPUTE", "STORAGE", "POWERSHELF", "SWITCH", "NETWORKING"
|
|
1421
1436
|
# resp.assets[0].compute_attributes.host_id #=> String
|
|
1422
|
-
# resp.assets[0].compute_attributes.state #=> String, one of "ACTIVE", "ISOLATED", "RETIRING"
|
|
1437
|
+
# resp.assets[0].compute_attributes.state #=> String, one of "ACTIVE", "ISOLATED", "RETIRING", "INSTALLING"
|
|
1423
1438
|
# resp.assets[0].compute_attributes.instance_families #=> Array
|
|
1424
1439
|
# resp.assets[0].compute_attributes.instance_families[0] #=> String
|
|
1425
1440
|
# resp.assets[0].compute_attributes.instance_type_capacities #=> Array
|
|
@@ -2445,7 +2460,7 @@ module Aws::Outposts
|
|
|
2445
2460
|
tracer: tracer
|
|
2446
2461
|
)
|
|
2447
2462
|
context[:gem_name] = 'aws-sdk-outposts'
|
|
2448
|
-
context[:gem_version] = '1.
|
|
2463
|
+
context[:gem_version] = '1.98.0'
|
|
2449
2464
|
Seahorse::Client::Request.new(handlers, context)
|
|
2450
2465
|
end
|
|
2451
2466
|
|
|
@@ -37,6 +37,7 @@ module Aws::Outposts
|
|
|
37
37
|
AssetLocation = Shapes::StructureShape.new(name: 'AssetLocation')
|
|
38
38
|
AssetState = Shapes::StringShape.new(name: 'AssetState')
|
|
39
39
|
AssetType = Shapes::StringShape.new(name: 'AssetType')
|
|
40
|
+
AssetTypeList = Shapes::ListShape.new(name: 'AssetTypeList')
|
|
40
41
|
AvailabilityZone = Shapes::StringShape.new(name: 'AvailabilityZone')
|
|
41
42
|
AvailabilityZoneId = Shapes::StringShape.new(name: 'AvailabilityZoneId')
|
|
42
43
|
AvailabilityZoneIdList = Shapes::ListShape.new(name: 'AvailabilityZoneIdList')
|
|
@@ -310,6 +311,8 @@ module Aws::Outposts
|
|
|
310
311
|
AssetLocation.add_member(:rack_elevation, Shapes::ShapeRef.new(shape: RackElevation, location_name: "RackElevation"))
|
|
311
312
|
AssetLocation.struct_class = Types::AssetLocation
|
|
312
313
|
|
|
314
|
+
AssetTypeList.member = Shapes::ShapeRef.new(shape: AssetType)
|
|
315
|
+
|
|
313
316
|
AvailabilityZoneIdList.member = Shapes::ShapeRef.new(shape: AvailabilityZoneId)
|
|
314
317
|
|
|
315
318
|
AvailabilityZoneList.member = Shapes::ShapeRef.new(shape: AvailabilityZone)
|
|
@@ -605,6 +608,7 @@ module Aws::Outposts
|
|
|
605
608
|
ListAssetsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults1000, location: "querystring", location_name: "MaxResults"))
|
|
606
609
|
ListAssetsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: Token, location: "querystring", location_name: "NextToken"))
|
|
607
610
|
ListAssetsInput.add_member(:status_filter, Shapes::ShapeRef.new(shape: StatusList, location: "querystring", location_name: "StatusFilter"))
|
|
611
|
+
ListAssetsInput.add_member(:asset_type_filter, Shapes::ShapeRef.new(shape: AssetTypeList, location: "querystring", location_name: "AssetTypeFilter"))
|
|
608
612
|
ListAssetsInput.struct_class = Types::ListAssetsInput
|
|
609
613
|
|
|
610
614
|
ListAssetsOutput.add_member(:assets, Shapes::ShapeRef.new(shape: AssetListDefinition, location_name: "Assets"))
|
|
@@ -389,6 +389,9 @@ module Aws::Outposts
|
|
|
389
389
|
# Capacity for new compute resources is reduced. Amazon Web Services
|
|
390
390
|
# sends notifications for resources that must be stopped before the
|
|
391
391
|
# asset can be replaced.
|
|
392
|
+
#
|
|
393
|
+
# * INSTALLING - The asset is being installed and can't yet provide
|
|
394
|
+
# capacity for new compute resources.
|
|
392
395
|
# @return [String]
|
|
393
396
|
#
|
|
394
397
|
# @!attribute [rw] instance_families
|
|
@@ -1376,6 +1379,21 @@ module Aws::Outposts
|
|
|
1376
1379
|
# Filters the results by state.
|
|
1377
1380
|
# @return [Array<String>]
|
|
1378
1381
|
#
|
|
1382
|
+
# @!attribute [rw] asset_type_filter
|
|
1383
|
+
# Filters the results by asset type.
|
|
1384
|
+
#
|
|
1385
|
+
# * COMPUTE - Server asset used for customer compute
|
|
1386
|
+
#
|
|
1387
|
+
# * STORAGE - Server asset used by storage services
|
|
1388
|
+
#
|
|
1389
|
+
# * POWERSHELF - Powershelf assets
|
|
1390
|
+
#
|
|
1391
|
+
# * SWITCH - Switch assets
|
|
1392
|
+
#
|
|
1393
|
+
# * NETWORKING - Asset managed by Amazon Web Services for networking
|
|
1394
|
+
# purposes
|
|
1395
|
+
# @return [Array<String>]
|
|
1396
|
+
#
|
|
1379
1397
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListAssetsInput AWS API Documentation
|
|
1380
1398
|
#
|
|
1381
1399
|
class ListAssetsInput < Struct.new(
|
|
@@ -1383,7 +1401,8 @@ module Aws::Outposts
|
|
|
1383
1401
|
:host_id_filter,
|
|
1384
1402
|
:max_results,
|
|
1385
1403
|
:next_token,
|
|
1386
|
-
:status_filter
|
|
1404
|
+
:status_filter,
|
|
1405
|
+
:asset_type_filter)
|
|
1387
1406
|
SENSITIVE = []
|
|
1388
1407
|
include Aws::Structure
|
|
1389
1408
|
end
|
data/lib/aws-sdk-outposts.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -358,7 +358,8 @@ module Aws
|
|
|
358
358
|
?host_id_filter: Array[::String],
|
|
359
359
|
?max_results: ::Integer,
|
|
360
360
|
?next_token: ::String,
|
|
361
|
-
?status_filter: Array[("ACTIVE" | "RETIRING" | "ISOLATED")]
|
|
361
|
+
?status_filter: Array[("ACTIVE" | "RETIRING" | "ISOLATED" | "INSTALLING")],
|
|
362
|
+
?asset_type_filter: Array[("COMPUTE" | "STORAGE" | "POWERSHELF" | "SWITCH" | "NETWORKING")]
|
|
362
363
|
) -> _ListAssetsResponseSuccess
|
|
363
364
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAssetsResponseSuccess
|
|
364
365
|
|
data/sig/types.rbs
CHANGED
|
@@ -31,7 +31,7 @@ module Aws::Outposts
|
|
|
31
31
|
class AssetInfo
|
|
32
32
|
attr_accessor asset_id: ::String
|
|
33
33
|
attr_accessor rack_id: ::String
|
|
34
|
-
attr_accessor asset_type: ("COMPUTE")
|
|
34
|
+
attr_accessor asset_type: ("COMPUTE" | "STORAGE" | "POWERSHELF" | "SWITCH" | "NETWORKING")
|
|
35
35
|
attr_accessor compute_attributes: Types::ComputeAttributes
|
|
36
36
|
attr_accessor asset_location: Types::AssetLocation
|
|
37
37
|
SENSITIVE: []
|
|
@@ -112,7 +112,7 @@ module Aws::Outposts
|
|
|
112
112
|
|
|
113
113
|
class ComputeAttributes
|
|
114
114
|
attr_accessor host_id: ::String
|
|
115
|
-
attr_accessor state: ("ACTIVE" | "ISOLATED" | "RETIRING")
|
|
115
|
+
attr_accessor state: ("ACTIVE" | "ISOLATED" | "RETIRING" | "INSTALLING")
|
|
116
116
|
attr_accessor instance_families: ::Array[::String]
|
|
117
117
|
attr_accessor instance_type_capacities: ::Array[Types::AssetInstanceTypeCapacity]
|
|
118
118
|
attr_accessor max_vcpus: ::Integer
|
|
@@ -405,7 +405,8 @@ module Aws::Outposts
|
|
|
405
405
|
attr_accessor host_id_filter: ::Array[::String]
|
|
406
406
|
attr_accessor max_results: ::Integer
|
|
407
407
|
attr_accessor next_token: ::String
|
|
408
|
-
attr_accessor status_filter: ::Array[("ACTIVE" | "RETIRING" | "ISOLATED")]
|
|
408
|
+
attr_accessor status_filter: ::Array[("ACTIVE" | "RETIRING" | "ISOLATED" | "INSTALLING")]
|
|
409
|
+
attr_accessor asset_type_filter: ::Array[("COMPUTE" | "STORAGE" | "POWERSHELF" | "SWITCH" | "NETWORKING")]
|
|
409
410
|
SENSITIVE: []
|
|
410
411
|
end
|
|
411
412
|
|