aws-sdk-outposts 1.110.0 → 1.111.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 +17 -7
- data/lib/aws-sdk-outposts/client_api.rb +4 -0
- data/lib/aws-sdk-outposts/types.rb +24 -3
- data/lib/aws-sdk-outposts.rb +1 -1
- data/sig/client.rbs +2 -2
- data/sig/types.rbs +4 -1
- 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: 4f4828ff30096090b2240867901f9fd1d1b30f48ad3342274c0615e6a5bbdc0a
|
|
4
|
+
data.tar.gz: 47f5580cdbfe461c5160320f3f46c6b5d3de606d0ab5304be092f2063fec373b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5d9ec1d66a93f1502080200a28f36f6412a6c93bae201a64a03ea065f215189b62db999ed56f3b24526d7a06b25055651677203568909baefbfba45029d1821e
|
|
7
|
+
data.tar.gz: d7d966a6d5eca5ba65a459e676a3a7aedad30162a33ed5c82ab54e744e5f551b4dc301379eaa2deb5e22681673e6eb93d1ecff17bd7f754b0c20d5ace39ab38f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.111.0 (2026-09-10)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Added fields to identify Outpost generation and rack scaling configuration on Outpost and CatalogItem resources.
|
|
8
|
+
|
|
4
9
|
1.110.0 (2026-09-09)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.111.0
|
|
@@ -656,6 +656,8 @@ module Aws::Outposts
|
|
|
656
656
|
# resp.outpost.tags["TagKey"] #=> String
|
|
657
657
|
# resp.outpost.site_arn #=> String
|
|
658
658
|
# resp.outpost.supported_hardware_type #=> String, one of "RACK", "SERVER"
|
|
659
|
+
# resp.outpost.generation #=> String, one of "GENERATION_2", "GENERATION_1"
|
|
660
|
+
# resp.outpost.rack_scaling_type #=> String, one of "SINGLE_RACK", "MULTI_RACK"
|
|
659
661
|
#
|
|
660
662
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/CreateOutpost AWS API Documentation
|
|
661
663
|
#
|
|
@@ -773,7 +775,7 @@ module Aws::Outposts
|
|
|
773
775
|
# ],
|
|
774
776
|
# requested_constraints: [
|
|
775
777
|
# {
|
|
776
|
-
# quote_constraint_type: "RACK_MAXIMUM", # accepts RACK_MAXIMUM, RACK_MAX_POWER_KVA, RACK_MAX_WEIGHT_LBS
|
|
778
|
+
# quote_constraint_type: "RACK_MAXIMUM", # accepts RACK_MAXIMUM, RACK_MAX_POWER_KVA, RACK_MAX_WEIGHT_LBS, RACK_SPACE_CONSTRAINED
|
|
777
779
|
# value: "ConstraintValue",
|
|
778
780
|
# },
|
|
779
781
|
# ],
|
|
@@ -795,7 +797,7 @@ module Aws::Outposts
|
|
|
795
797
|
# resp.quote.requested_capacities[0].unit #=> String
|
|
796
798
|
# resp.quote.requested_capacities[0].quantity #=> Float
|
|
797
799
|
# resp.quote.requested_constraints #=> Array
|
|
798
|
-
# resp.quote.requested_constraints[0].quote_constraint_type #=> String, one of "RACK_MAXIMUM", "RACK_MAX_POWER_KVA", "RACK_MAX_WEIGHT_LBS"
|
|
800
|
+
# resp.quote.requested_constraints[0].quote_constraint_type #=> String, one of "RACK_MAXIMUM", "RACK_MAX_POWER_KVA", "RACK_MAX_WEIGHT_LBS", "RACK_SPACE_CONSTRAINED"
|
|
799
801
|
# resp.quote.requested_constraints[0].value #=> String
|
|
800
802
|
# resp.quote.requested_payment_options #=> Array
|
|
801
803
|
# resp.quote.requested_payment_options[0] #=> String, one of "ALL_UPFRONT", "NO_UPFRONT", "PARTIAL_UPFRONT"
|
|
@@ -1212,6 +1214,7 @@ module Aws::Outposts
|
|
|
1212
1214
|
# resp.catalog_item.supported_uplink_gbps[0] #=> Integer
|
|
1213
1215
|
# resp.catalog_item.supported_storage #=> Array
|
|
1214
1216
|
# resp.catalog_item.supported_storage[0] #=> String, one of "EBS", "S3"
|
|
1217
|
+
# resp.catalog_item.rack_scaling_type #=> String, one of "SINGLE_RACK", "MULTI_RACK"
|
|
1215
1218
|
#
|
|
1216
1219
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetCatalogItem AWS API Documentation
|
|
1217
1220
|
#
|
|
@@ -1354,6 +1357,8 @@ module Aws::Outposts
|
|
|
1354
1357
|
# resp.outpost.tags["TagKey"] #=> String
|
|
1355
1358
|
# resp.outpost.site_arn #=> String
|
|
1356
1359
|
# resp.outpost.supported_hardware_type #=> String, one of "RACK", "SERVER"
|
|
1360
|
+
# resp.outpost.generation #=> String, one of "GENERATION_2", "GENERATION_1"
|
|
1361
|
+
# resp.outpost.rack_scaling_type #=> String, one of "SINGLE_RACK", "MULTI_RACK"
|
|
1357
1362
|
#
|
|
1358
1363
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetOutpost AWS API Documentation
|
|
1359
1364
|
#
|
|
@@ -1584,7 +1589,7 @@ module Aws::Outposts
|
|
|
1584
1589
|
# resp.quote.requested_capacities[0].unit #=> String
|
|
1585
1590
|
# resp.quote.requested_capacities[0].quantity #=> Float
|
|
1586
1591
|
# resp.quote.requested_constraints #=> Array
|
|
1587
|
-
# resp.quote.requested_constraints[0].quote_constraint_type #=> String, one of "RACK_MAXIMUM", "RACK_MAX_POWER_KVA", "RACK_MAX_WEIGHT_LBS"
|
|
1592
|
+
# resp.quote.requested_constraints[0].quote_constraint_type #=> String, one of "RACK_MAXIMUM", "RACK_MAX_POWER_KVA", "RACK_MAX_WEIGHT_LBS", "RACK_SPACE_CONSTRAINED"
|
|
1588
1593
|
# resp.quote.requested_constraints[0].value #=> String
|
|
1589
1594
|
# resp.quote.requested_payment_options #=> Array
|
|
1590
1595
|
# resp.quote.requested_payment_options[0] #=> String, one of "ALL_UPFRONT", "NO_UPFRONT", "PARTIAL_UPFRONT"
|
|
@@ -2107,6 +2112,7 @@ module Aws::Outposts
|
|
|
2107
2112
|
# resp.catalog_items[0].supported_uplink_gbps[0] #=> Integer
|
|
2108
2113
|
# resp.catalog_items[0].supported_storage #=> Array
|
|
2109
2114
|
# resp.catalog_items[0].supported_storage[0] #=> String, one of "EBS", "S3"
|
|
2115
|
+
# resp.catalog_items[0].rack_scaling_type #=> String, one of "SINGLE_RACK", "MULTI_RACK"
|
|
2110
2116
|
# resp.next_token #=> String
|
|
2111
2117
|
#
|
|
2112
2118
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListCatalogItems AWS API Documentation
|
|
@@ -2272,6 +2278,8 @@ module Aws::Outposts
|
|
|
2272
2278
|
# resp.outposts[0].tags["TagKey"] #=> String
|
|
2273
2279
|
# resp.outposts[0].site_arn #=> String
|
|
2274
2280
|
# resp.outposts[0].supported_hardware_type #=> String, one of "RACK", "SERVER"
|
|
2281
|
+
# resp.outposts[0].generation #=> String, one of "GENERATION_2", "GENERATION_1"
|
|
2282
|
+
# resp.outposts[0].rack_scaling_type #=> String, one of "SINGLE_RACK", "MULTI_RACK"
|
|
2275
2283
|
# resp.next_token #=> String
|
|
2276
2284
|
#
|
|
2277
2285
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListOutposts AWS API Documentation
|
|
@@ -2319,7 +2327,7 @@ module Aws::Outposts
|
|
|
2319
2327
|
# resp.quotes[0].requested_capacities[0].unit #=> String
|
|
2320
2328
|
# resp.quotes[0].requested_capacities[0].quantity #=> Float
|
|
2321
2329
|
# resp.quotes[0].requested_constraints #=> Array
|
|
2322
|
-
# resp.quotes[0].requested_constraints[0].quote_constraint_type #=> String, one of "RACK_MAXIMUM", "RACK_MAX_POWER_KVA", "RACK_MAX_WEIGHT_LBS"
|
|
2330
|
+
# resp.quotes[0].requested_constraints[0].quote_constraint_type #=> String, one of "RACK_MAXIMUM", "RACK_MAX_POWER_KVA", "RACK_MAX_WEIGHT_LBS", "RACK_SPACE_CONSTRAINED"
|
|
2323
2331
|
# resp.quotes[0].requested_constraints[0].value #=> String
|
|
2324
2332
|
# resp.quotes[0].requested_payment_options #=> Array
|
|
2325
2333
|
# resp.quotes[0].requested_payment_options[0] #=> String, one of "ALL_UPFRONT", "NO_UPFRONT", "PARTIAL_UPFRONT"
|
|
@@ -2802,6 +2810,8 @@ module Aws::Outposts
|
|
|
2802
2810
|
# resp.outpost.tags["TagKey"] #=> String
|
|
2803
2811
|
# resp.outpost.site_arn #=> String
|
|
2804
2812
|
# resp.outpost.supported_hardware_type #=> String, one of "RACK", "SERVER"
|
|
2813
|
+
# resp.outpost.generation #=> String, one of "GENERATION_2", "GENERATION_1"
|
|
2814
|
+
# resp.outpost.rack_scaling_type #=> String, one of "SINGLE_RACK", "MULTI_RACK"
|
|
2805
2815
|
#
|
|
2806
2816
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/UpdateOutpost AWS API Documentation
|
|
2807
2817
|
#
|
|
@@ -2859,7 +2869,7 @@ module Aws::Outposts
|
|
|
2859
2869
|
# ],
|
|
2860
2870
|
# requested_constraints: [
|
|
2861
2871
|
# {
|
|
2862
|
-
# quote_constraint_type: "RACK_MAXIMUM", # accepts RACK_MAXIMUM, RACK_MAX_POWER_KVA, RACK_MAX_WEIGHT_LBS
|
|
2872
|
+
# quote_constraint_type: "RACK_MAXIMUM", # accepts RACK_MAXIMUM, RACK_MAX_POWER_KVA, RACK_MAX_WEIGHT_LBS, RACK_SPACE_CONSTRAINED
|
|
2863
2873
|
# value: "ConstraintValue",
|
|
2864
2874
|
# },
|
|
2865
2875
|
# ],
|
|
@@ -2881,7 +2891,7 @@ module Aws::Outposts
|
|
|
2881
2891
|
# resp.quote.requested_capacities[0].unit #=> String
|
|
2882
2892
|
# resp.quote.requested_capacities[0].quantity #=> Float
|
|
2883
2893
|
# resp.quote.requested_constraints #=> Array
|
|
2884
|
-
# resp.quote.requested_constraints[0].quote_constraint_type #=> String, one of "RACK_MAXIMUM", "RACK_MAX_POWER_KVA", "RACK_MAX_WEIGHT_LBS"
|
|
2894
|
+
# resp.quote.requested_constraints[0].quote_constraint_type #=> String, one of "RACK_MAXIMUM", "RACK_MAX_POWER_KVA", "RACK_MAX_WEIGHT_LBS", "RACK_SPACE_CONSTRAINED"
|
|
2885
2895
|
# resp.quote.requested_constraints[0].value #=> String
|
|
2886
2896
|
# resp.quote.requested_payment_options #=> Array
|
|
2887
2897
|
# resp.quote.requested_payment_options[0] #=> String, one of "ALL_UPFRONT", "NO_UPFRONT", "PARTIAL_UPFRONT"
|
|
@@ -3271,7 +3281,7 @@ module Aws::Outposts
|
|
|
3271
3281
|
tracer: tracer
|
|
3272
3282
|
)
|
|
3273
3283
|
context[:gem_name] = 'aws-sdk-outposts'
|
|
3274
|
-
context[:gem_version] = '1.
|
|
3284
|
+
context[:gem_version] = '1.111.0'
|
|
3275
3285
|
Seahorse::Client::Request.new(handlers, context)
|
|
3276
3286
|
end
|
|
3277
3287
|
|
|
@@ -266,6 +266,7 @@ module Aws::Outposts
|
|
|
266
266
|
RackElevation = Shapes::FloatShape.new(name: 'RackElevation')
|
|
267
267
|
RackId = Shapes::StringShape.new(name: 'RackId')
|
|
268
268
|
RackPhysicalProperties = Shapes::StructureShape.new(name: 'RackPhysicalProperties')
|
|
269
|
+
RackScalingType = Shapes::StringShape.new(name: 'RackScalingType')
|
|
269
270
|
RackSpecificationDetails = Shapes::StructureShape.new(name: 'RackSpecificationDetails')
|
|
270
271
|
RackUnitHeight = Shapes::StringShape.new(name: 'RackUnitHeight')
|
|
271
272
|
RequestedInstancePools = Shapes::ListShape.new(name: 'RequestedInstancePools')
|
|
@@ -448,6 +449,7 @@ module Aws::Outposts
|
|
|
448
449
|
CatalogItem.add_member(:weight_lbs, Shapes::ShapeRef.new(shape: CatalogItemWeightLbs, location_name: "WeightLbs"))
|
|
449
450
|
CatalogItem.add_member(:supported_uplink_gbps, Shapes::ShapeRef.new(shape: SupportedUplinkGbpsListDefinition, location_name: "SupportedUplinkGbps"))
|
|
450
451
|
CatalogItem.add_member(:supported_storage, Shapes::ShapeRef.new(shape: SupportedStorageList, location_name: "SupportedStorage"))
|
|
452
|
+
CatalogItem.add_member(:rack_scaling_type, Shapes::ShapeRef.new(shape: RackScalingType, location_name: "RackScalingType"))
|
|
451
453
|
CatalogItem.struct_class = Types::CatalogItem
|
|
452
454
|
|
|
453
455
|
CatalogItemClassList.member = Shapes::ShapeRef.new(shape: CatalogItemClass)
|
|
@@ -911,6 +913,8 @@ module Aws::Outposts
|
|
|
911
913
|
Outpost.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
|
912
914
|
Outpost.add_member(:site_arn, Shapes::ShapeRef.new(shape: SiteArn, location_name: "SiteArn"))
|
|
913
915
|
Outpost.add_member(:supported_hardware_type, Shapes::ShapeRef.new(shape: SupportedHardwareType, location_name: "SupportedHardwareType"))
|
|
916
|
+
Outpost.add_member(:generation, Shapes::ShapeRef.new(shape: OutpostGeneration, location_name: "Generation"))
|
|
917
|
+
Outpost.add_member(:rack_scaling_type, Shapes::ShapeRef.new(shape: RackScalingType, location_name: "RackScalingType"))
|
|
914
918
|
Outpost.struct_class = Types::Outpost
|
|
915
919
|
|
|
916
920
|
OutpostInstanceTypeList.member = Shapes::ShapeRef.new(shape: OutpostInstanceType)
|
|
@@ -381,6 +381,11 @@ module Aws::Outposts
|
|
|
381
381
|
# The supported storage options for the catalog item.
|
|
382
382
|
# @return [Array<String>]
|
|
383
383
|
#
|
|
384
|
+
# @!attribute [rw] rack_scaling_type
|
|
385
|
+
# The rack scaling type supported by the catalog item. Valid values
|
|
386
|
+
# are `SINGLE_RACK` and `MULTI_RACK`.
|
|
387
|
+
# @return [String]
|
|
388
|
+
#
|
|
384
389
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/CatalogItem AWS API Documentation
|
|
385
390
|
#
|
|
386
391
|
class CatalogItem < Struct.new(
|
|
@@ -390,7 +395,8 @@ module Aws::Outposts
|
|
|
390
395
|
:power_kva,
|
|
391
396
|
:weight_lbs,
|
|
392
397
|
:supported_uplink_gbps,
|
|
393
|
-
:supported_storage
|
|
398
|
+
:supported_storage,
|
|
399
|
+
:rack_scaling_type)
|
|
394
400
|
SENSITIVE = []
|
|
395
401
|
include Aws::Structure
|
|
396
402
|
end
|
|
@@ -2449,6 +2455,18 @@ module Aws::Outposts
|
|
|
2449
2455
|
# The hardware type.
|
|
2450
2456
|
# @return [String]
|
|
2451
2457
|
#
|
|
2458
|
+
# @!attribute [rw] generation
|
|
2459
|
+
# The Outpost generation. Valid values are `GENERATION_1` for
|
|
2460
|
+
# first-generation rack deployments and `GENERATION_2` for
|
|
2461
|
+
# second-generation rack deployments.
|
|
2462
|
+
# @return [String]
|
|
2463
|
+
#
|
|
2464
|
+
# @!attribute [rw] rack_scaling_type
|
|
2465
|
+
# The rack scaling type. Valid values are `SINGLE_RACK` for
|
|
2466
|
+
# single-rack Outposts and `MULTI_RACK` for multi-rack Outposts that
|
|
2467
|
+
# can expand across multiple racks.
|
|
2468
|
+
# @return [String]
|
|
2469
|
+
#
|
|
2452
2470
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/Outpost AWS API Documentation
|
|
2453
2471
|
#
|
|
2454
2472
|
class Outpost < Struct.new(
|
|
@@ -2463,7 +2481,9 @@ module Aws::Outposts
|
|
|
2463
2481
|
:availability_zone_id,
|
|
2464
2482
|
:tags,
|
|
2465
2483
|
:site_arn,
|
|
2466
|
-
:supported_hardware_type
|
|
2484
|
+
:supported_hardware_type,
|
|
2485
|
+
:generation,
|
|
2486
|
+
:rack_scaling_type)
|
|
2467
2487
|
SENSITIVE = []
|
|
2468
2488
|
include Aws::Structure
|
|
2469
2489
|
end
|
|
@@ -2660,7 +2680,8 @@ module Aws::Outposts
|
|
|
2660
2680
|
#
|
|
2661
2681
|
# @!attribute [rw] quote_constraint_type
|
|
2662
2682
|
# The type of constraint. Valid values are `RACK_MAXIMUM`,
|
|
2663
|
-
# `RACK_MAX_POWER_KVA`,
|
|
2683
|
+
# `RACK_MAX_POWER_KVA`, `RACK_MAX_WEIGHT_LBS`, and
|
|
2684
|
+
# `RACK_SPACE_CONSTRAINED`.
|
|
2664
2685
|
# @return [String]
|
|
2665
2686
|
#
|
|
2666
2687
|
# @!attribute [rw] value
|
data/lib/aws-sdk-outposts.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -168,7 +168,7 @@ module Aws
|
|
|
168
168
|
],
|
|
169
169
|
?requested_constraints: Array[
|
|
170
170
|
{
|
|
171
|
-
quote_constraint_type: ("RACK_MAXIMUM" | "RACK_MAX_POWER_KVA" | "RACK_MAX_WEIGHT_LBS")?,
|
|
171
|
+
quote_constraint_type: ("RACK_MAXIMUM" | "RACK_MAX_POWER_KVA" | "RACK_MAX_WEIGHT_LBS" | "RACK_SPACE_CONSTRAINED")?,
|
|
172
172
|
value: ::String?
|
|
173
173
|
}
|
|
174
174
|
],
|
|
@@ -681,7 +681,7 @@ module Aws
|
|
|
681
681
|
],
|
|
682
682
|
?requested_constraints: Array[
|
|
683
683
|
{
|
|
684
|
-
quote_constraint_type: ("RACK_MAXIMUM" | "RACK_MAX_POWER_KVA" | "RACK_MAX_WEIGHT_LBS")?,
|
|
684
|
+
quote_constraint_type: ("RACK_MAXIMUM" | "RACK_MAX_POWER_KVA" | "RACK_MAX_WEIGHT_LBS" | "RACK_SPACE_CONSTRAINED")?,
|
|
685
685
|
value: ::String?
|
|
686
686
|
}
|
|
687
687
|
],
|
data/sig/types.rbs
CHANGED
|
@@ -114,6 +114,7 @@ module Aws::Outposts
|
|
|
114
114
|
attr_accessor weight_lbs: ::Integer
|
|
115
115
|
attr_accessor supported_uplink_gbps: ::Array[::Integer]
|
|
116
116
|
attr_accessor supported_storage: ::Array[("EBS" | "S3")]
|
|
117
|
+
attr_accessor rack_scaling_type: ("SINGLE_RACK" | "MULTI_RACK")
|
|
117
118
|
SENSITIVE: []
|
|
118
119
|
end
|
|
119
120
|
|
|
@@ -699,6 +700,8 @@ module Aws::Outposts
|
|
|
699
700
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
700
701
|
attr_accessor site_arn: ::String
|
|
701
702
|
attr_accessor supported_hardware_type: ("RACK" | "SERVER")
|
|
703
|
+
attr_accessor generation: ("GENERATION_2" | "GENERATION_1")
|
|
704
|
+
attr_accessor rack_scaling_type: ("SINGLE_RACK" | "MULTI_RACK")
|
|
702
705
|
SENSITIVE: []
|
|
703
706
|
end
|
|
704
707
|
|
|
@@ -744,7 +747,7 @@ module Aws::Outposts
|
|
|
744
747
|
end
|
|
745
748
|
|
|
746
749
|
class QuoteConstraint
|
|
747
|
-
attr_accessor quote_constraint_type: ("RACK_MAXIMUM" | "RACK_MAX_POWER_KVA" | "RACK_MAX_WEIGHT_LBS")
|
|
750
|
+
attr_accessor quote_constraint_type: ("RACK_MAXIMUM" | "RACK_MAX_POWER_KVA" | "RACK_MAX_WEIGHT_LBS" | "RACK_SPACE_CONSTRAINED")
|
|
748
751
|
attr_accessor value: ::String
|
|
749
752
|
SENSITIVE: []
|
|
750
753
|
end
|