aws-sdk-ec2 1.625.0 → 1.626.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-ec2/client.rb +20 -8
- data/lib/aws-sdk-ec2/client_api.rb +2 -0
- data/lib/aws-sdk-ec2/placement_group.rb +6 -0
- data/lib/aws-sdk-ec2/resource.rb +6 -2
- data/lib/aws-sdk-ec2/types.rb +13 -2
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +2 -1
- data/sig/placement_group.rbs +4 -1
- data/sig/resource.rbs +2 -1
- data/sig/types.rbs +4 -2
- 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: fe80518425a757a7441ea06da0fb746fc830052b557237b4c922bbbc36894db9
|
|
4
|
+
data.tar.gz: 949d7a63d83b12b1833fd1f93f5e268466387eceefecb9a6e7df758275bf2ead
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 74b598c69faaf88f26ee2e1fbcbfc8a9b12202261f59c241027a5604027de4d111afd59acb0cb3801b530248ec6aefca710ae61a751872bf6d6161a0dc541176
|
|
7
|
+
data.tar.gz: 9ccdce605c361d542af531e120bf4ac6bc450a2f19599140aae91ce67b5f052a336c300cff30fc226d0ce05314315453678474ea93c00bac4ce6c83c8eb1611f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.626.0 (2026-06-29)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adds support for the precision time strategy and a parentGroupId parameter on CreatePlacementGroup and DescribePlacementGroups. Precision time placement groups and cluster placement groups with a parent precision time placement group ensure instances launch on precision time capable hardware.
|
|
8
|
+
|
|
4
9
|
1.625.0 (2026-06-22)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.626.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
|
@@ -13499,7 +13499,10 @@ module Aws::EC2
|
|
|
13499
13499
|
# network throughput. A `spread` placement group places instances on
|
|
13500
13500
|
# distinct hardware. A `partition` placement group places groups of
|
|
13501
13501
|
# instances in different partitions, where instances in one partition do
|
|
13502
|
-
# not share the same hardware with instances in another partition.
|
|
13502
|
+
# not share the same hardware with instances in another partition. A
|
|
13503
|
+
# `precision-time` placement group places instances on supported
|
|
13504
|
+
# hardware with direct access to high-precision time sources in AWS
|
|
13505
|
+
# infrastructure.
|
|
13503
13506
|
#
|
|
13504
13507
|
# For more information, see [Placement groups][1] in the *Amazon EC2
|
|
13505
13508
|
# User Guide*.
|
|
@@ -13528,6 +13531,10 @@ module Aws::EC2
|
|
|
13528
13531
|
# @option params [Types::OperatorRequest] :operator
|
|
13529
13532
|
# Reserved for internal use.
|
|
13530
13533
|
#
|
|
13534
|
+
# @option params [String] :parent_group_id
|
|
13535
|
+
# The ID of a parent placement group. Valid only when **Strategy** is
|
|
13536
|
+
# set to `cluster`.
|
|
13537
|
+
#
|
|
13531
13538
|
# @option params [Boolean] :dry_run
|
|
13532
13539
|
# Checks whether you have the required permissions for the operation,
|
|
13533
13540
|
# without actually making the request, and provides an error response.
|
|
@@ -13581,16 +13588,17 @@ module Aws::EC2
|
|
|
13581
13588
|
# operator: {
|
|
13582
13589
|
# principal: "String",
|
|
13583
13590
|
# },
|
|
13591
|
+
# parent_group_id: "PlacementGroupId",
|
|
13584
13592
|
# dry_run: false,
|
|
13585
13593
|
# group_name: "String",
|
|
13586
|
-
# strategy: "cluster", # accepts cluster, spread, partition
|
|
13594
|
+
# strategy: "cluster", # accepts cluster, spread, partition, precision-time
|
|
13587
13595
|
# })
|
|
13588
13596
|
#
|
|
13589
13597
|
# @example Response structure
|
|
13590
13598
|
#
|
|
13591
13599
|
# resp.placement_group.group_name #=> String
|
|
13592
13600
|
# resp.placement_group.state #=> String, one of "pending", "available", "deleting", "deleted"
|
|
13593
|
-
# resp.placement_group.strategy #=> String, one of "cluster", "spread", "partition"
|
|
13601
|
+
# resp.placement_group.strategy #=> String, one of "cluster", "spread", "partition", "precision-time"
|
|
13594
13602
|
# resp.placement_group.partition_count #=> Integer
|
|
13595
13603
|
# resp.placement_group.group_id #=> String
|
|
13596
13604
|
# resp.placement_group.tags #=> Array
|
|
@@ -13602,6 +13610,7 @@ module Aws::EC2
|
|
|
13602
13610
|
# resp.placement_group.operator.managed #=> Boolean
|
|
13603
13611
|
# resp.placement_group.operator.principal #=> String
|
|
13604
13612
|
# resp.placement_group.operator.hidden_by_default #=> Boolean
|
|
13613
|
+
# resp.placement_group.parent_group_id #=> String
|
|
13605
13614
|
#
|
|
13606
13615
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreatePlacementGroup AWS API Documentation
|
|
13607
13616
|
#
|
|
@@ -21819,8 +21828,10 @@ module Aws::EC2
|
|
|
21819
21828
|
|
|
21820
21829
|
# Deletes the specified placement group. You must terminate all
|
|
21821
21830
|
# instances in the placement group before you can delete the placement
|
|
21822
|
-
# group.
|
|
21823
|
-
#
|
|
21831
|
+
# group. You cannot delete a placement group that is a parent of a
|
|
21832
|
+
# cluster placement group. Delete the cluster placement groups first.
|
|
21833
|
+
# For more information, see [Placement groups][1] in the *Amazon EC2
|
|
21834
|
+
# User Guide*.
|
|
21824
21835
|
#
|
|
21825
21836
|
#
|
|
21826
21837
|
#
|
|
@@ -38194,7 +38205,7 @@ module Aws::EC2
|
|
|
38194
38205
|
# \| `deleting` \| `deleted`).
|
|
38195
38206
|
#
|
|
38196
38207
|
# * `strategy` - The strategy of the placement group (`cluster` \|
|
|
38197
|
-
# `spread` \| `partition`).
|
|
38208
|
+
# `spread` \| `partition` \| `precision-time`).
|
|
38198
38209
|
#
|
|
38199
38210
|
# * `tag:<key>` - The key/value combination of a tag assigned to the
|
|
38200
38211
|
# resource. Use the tag key in the filter name and the tag value as
|
|
@@ -38229,7 +38240,7 @@ module Aws::EC2
|
|
|
38229
38240
|
# resp.placement_groups #=> Array
|
|
38230
38241
|
# resp.placement_groups[0].group_name #=> String
|
|
38231
38242
|
# resp.placement_groups[0].state #=> String, one of "pending", "available", "deleting", "deleted"
|
|
38232
|
-
# resp.placement_groups[0].strategy #=> String, one of "cluster", "spread", "partition"
|
|
38243
|
+
# resp.placement_groups[0].strategy #=> String, one of "cluster", "spread", "partition", "precision-time"
|
|
38233
38244
|
# resp.placement_groups[0].partition_count #=> Integer
|
|
38234
38245
|
# resp.placement_groups[0].group_id #=> String
|
|
38235
38246
|
# resp.placement_groups[0].tags #=> Array
|
|
@@ -38241,6 +38252,7 @@ module Aws::EC2
|
|
|
38241
38252
|
# resp.placement_groups[0].operator.managed #=> Boolean
|
|
38242
38253
|
# resp.placement_groups[0].operator.principal #=> String
|
|
38243
38254
|
# resp.placement_groups[0].operator.hidden_by_default #=> Boolean
|
|
38255
|
+
# resp.placement_groups[0].parent_group_id #=> String
|
|
38244
38256
|
#
|
|
38245
38257
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribePlacementGroups AWS API Documentation
|
|
38246
38258
|
#
|
|
@@ -74101,7 +74113,7 @@ module Aws::EC2
|
|
|
74101
74113
|
tracer: tracer
|
|
74102
74114
|
)
|
|
74103
74115
|
context[:gem_name] = 'aws-sdk-ec2'
|
|
74104
|
-
context[:gem_version] = '1.
|
|
74116
|
+
context[:gem_version] = '1.626.0'
|
|
74105
74117
|
Seahorse::Client::Request.new(handlers, context)
|
|
74106
74118
|
end
|
|
74107
74119
|
|
|
@@ -6451,6 +6451,7 @@ module Aws::EC2
|
|
|
6451
6451
|
CreatePlacementGroupRequest.add_member(:spread_level, Shapes::ShapeRef.new(shape: SpreadLevel, location_name: "SpreadLevel"))
|
|
6452
6452
|
CreatePlacementGroupRequest.add_member(:linked_group_id, Shapes::ShapeRef.new(shape: PlacementGroupId, location_name: "LinkedGroupId"))
|
|
6453
6453
|
CreatePlacementGroupRequest.add_member(:operator, Shapes::ShapeRef.new(shape: OperatorRequest, location_name: "Operator"))
|
|
6454
|
+
CreatePlacementGroupRequest.add_member(:parent_group_id, Shapes::ShapeRef.new(shape: PlacementGroupId, location_name: "ParentGroupId"))
|
|
6454
6455
|
CreatePlacementGroupRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
|
|
6455
6456
|
CreatePlacementGroupRequest.add_member(:group_name, Shapes::ShapeRef.new(shape: String, location_name: "groupName"))
|
|
6456
6457
|
CreatePlacementGroupRequest.add_member(:strategy, Shapes::ShapeRef.new(shape: PlacementStrategy, location_name: "strategy"))
|
|
@@ -16104,6 +16105,7 @@ module Aws::EC2
|
|
|
16104
16105
|
PlacementGroup.add_member(:spread_level, Shapes::ShapeRef.new(shape: SpreadLevel, location_name: "spreadLevel"))
|
|
16105
16106
|
PlacementGroup.add_member(:linked_group_id, Shapes::ShapeRef.new(shape: PlacementGroupId, location_name: "linkedGroupId"))
|
|
16106
16107
|
PlacementGroup.add_member(:operator, Shapes::ShapeRef.new(shape: OperatorResponse, location_name: "operator"))
|
|
16108
|
+
PlacementGroup.add_member(:parent_group_id, Shapes::ShapeRef.new(shape: PlacementGroupId, location_name: "parentGroupId"))
|
|
16107
16109
|
PlacementGroup.struct_class = Types::PlacementGroup
|
|
16108
16110
|
|
|
16109
16111
|
PlacementGroupIdStringList.member = Shapes::ShapeRef.new(shape: PlacementGroupId, location_name: "GroupId")
|
data/lib/aws-sdk-ec2/resource.rb
CHANGED
|
@@ -1127,9 +1127,10 @@ module Aws::EC2
|
|
|
1127
1127
|
# operator: {
|
|
1128
1128
|
# principal: "String",
|
|
1129
1129
|
# },
|
|
1130
|
+
# parent_group_id: "PlacementGroupId",
|
|
1130
1131
|
# dry_run: false,
|
|
1131
1132
|
# group_name: "String",
|
|
1132
|
-
# strategy: "cluster", # accepts cluster, spread, partition
|
|
1133
|
+
# strategy: "cluster", # accepts cluster, spread, partition, precision-time
|
|
1133
1134
|
# })
|
|
1134
1135
|
# @param [Hash] options ({})
|
|
1135
1136
|
# @option options [Integer] :partition_count
|
|
@@ -1147,6 +1148,9 @@ module Aws::EC2
|
|
|
1147
1148
|
# Reserved for future use.
|
|
1148
1149
|
# @option options [Types::OperatorRequest] :operator
|
|
1149
1150
|
# Reserved for internal use.
|
|
1151
|
+
# @option options [String] :parent_group_id
|
|
1152
|
+
# The ID of a parent placement group. Valid only when **Strategy** is
|
|
1153
|
+
# set to `cluster`.
|
|
1150
1154
|
# @option options [Boolean] :dry_run
|
|
1151
1155
|
# Checks whether you have the required permissions for the operation,
|
|
1152
1156
|
# without actually making the request, and provides an error response.
|
|
@@ -3658,7 +3662,7 @@ module Aws::EC2
|
|
|
3658
3662
|
# \| `deleting` \| `deleted`).
|
|
3659
3663
|
#
|
|
3660
3664
|
# * `strategy` - The strategy of the placement group (`cluster` \|
|
|
3661
|
-
# `spread` \| `partition`).
|
|
3665
|
+
# `spread` \| `partition` \| `precision-time`).
|
|
3662
3666
|
#
|
|
3663
3667
|
# * `tag:<key>` - The key/value combination of a tag assigned to the
|
|
3664
3668
|
# resource. Use the tag key in the filter name and the tag value as
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
|
@@ -13515,6 +13515,11 @@ module Aws::EC2
|
|
|
13515
13515
|
# Reserved for internal use.
|
|
13516
13516
|
# @return [Types::OperatorRequest]
|
|
13517
13517
|
#
|
|
13518
|
+
# @!attribute [rw] parent_group_id
|
|
13519
|
+
# The ID of a parent placement group. Valid only when **Strategy** is
|
|
13520
|
+
# set to `cluster`.
|
|
13521
|
+
# @return [String]
|
|
13522
|
+
#
|
|
13518
13523
|
# @!attribute [rw] dry_run
|
|
13519
13524
|
# Checks whether you have the required permissions for the operation,
|
|
13520
13525
|
# without actually making the request, and provides an error response.
|
|
@@ -13541,6 +13546,7 @@ module Aws::EC2
|
|
|
13541
13546
|
:spread_level,
|
|
13542
13547
|
:linked_group_id,
|
|
13543
13548
|
:operator,
|
|
13549
|
+
:parent_group_id,
|
|
13544
13550
|
:dry_run,
|
|
13545
13551
|
:group_name,
|
|
13546
13552
|
:strategy)
|
|
@@ -30353,7 +30359,7 @@ module Aws::EC2
|
|
|
30353
30359
|
# `available` \| `deleting` \| `deleted`).
|
|
30354
30360
|
#
|
|
30355
30361
|
# * `strategy` - The strategy of the placement group (`cluster` \|
|
|
30356
|
-
# `spread` \| `partition`).
|
|
30362
|
+
# `spread` \| `partition` \| `precision-time`).
|
|
30357
30363
|
#
|
|
30358
30364
|
# * `tag:<key>` - The key/value combination of a tag assigned to the
|
|
30359
30365
|
# resource. Use the tag key in the filter name and the tag value as
|
|
@@ -69794,6 +69800,10 @@ module Aws::EC2
|
|
|
69794
69800
|
# The service provider that manages the Placement Group.
|
|
69795
69801
|
# @return [Types::OperatorResponse]
|
|
69796
69802
|
#
|
|
69803
|
+
# @!attribute [rw] parent_group_id
|
|
69804
|
+
# The ID of the parent placement group.
|
|
69805
|
+
# @return [String]
|
|
69806
|
+
#
|
|
69797
69807
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PlacementGroup AWS API Documentation
|
|
69798
69808
|
#
|
|
69799
69809
|
class PlacementGroup < Struct.new(
|
|
@@ -69806,7 +69816,8 @@ module Aws::EC2
|
|
|
69806
69816
|
:group_arn,
|
|
69807
69817
|
:spread_level,
|
|
69808
69818
|
:linked_group_id,
|
|
69809
|
-
:operator
|
|
69819
|
+
:operator,
|
|
69820
|
+
:parent_group_id)
|
|
69810
69821
|
SENSITIVE = []
|
|
69811
69822
|
include Aws::Structure
|
|
69812
69823
|
end
|
data/lib/aws-sdk-ec2.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -2621,9 +2621,10 @@ module Aws
|
|
|
2621
2621
|
?operator: {
|
|
2622
2622
|
principal: ::String?
|
|
2623
2623
|
},
|
|
2624
|
+
?parent_group_id: ::String,
|
|
2624
2625
|
?dry_run: bool,
|
|
2625
2626
|
?group_name: ::String,
|
|
2626
|
-
?strategy: ("cluster" | "spread" | "partition")
|
|
2627
|
+
?strategy: ("cluster" | "spread" | "partition" | "precision-time")
|
|
2627
2628
|
) -> _CreatePlacementGroupResponseSuccess
|
|
2628
2629
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePlacementGroupResponseSuccess
|
|
2629
2630
|
|
data/sig/placement_group.rbs
CHANGED
|
@@ -22,7 +22,7 @@ module Aws
|
|
|
22
22
|
def state: () -> ("pending" | "available" | "deleting" | "deleted")
|
|
23
23
|
|
|
24
24
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/PlacementGroup.html#strategy-instance_method
|
|
25
|
-
def strategy: () -> ("cluster" | "spread" | "partition")
|
|
25
|
+
def strategy: () -> ("cluster" | "spread" | "partition" | "precision-time")
|
|
26
26
|
|
|
27
27
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/PlacementGroup.html#partition_count-instance_method
|
|
28
28
|
def partition_count: () -> ::Integer
|
|
@@ -45,6 +45,9 @@ module Aws
|
|
|
45
45
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/PlacementGroup.html#operator-instance_method
|
|
46
46
|
def operator: () -> Types::OperatorResponse
|
|
47
47
|
|
|
48
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/PlacementGroup.html#parent_group_id-instance_method
|
|
49
|
+
def parent_group_id: () -> ::String
|
|
50
|
+
|
|
48
51
|
def client: () -> Client
|
|
49
52
|
|
|
50
53
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/PlacementGroup.html#load-instance_method
|
data/sig/resource.rbs
CHANGED
|
@@ -497,9 +497,10 @@ module Aws
|
|
|
497
497
|
?operator: {
|
|
498
498
|
principal: ::String?
|
|
499
499
|
},
|
|
500
|
+
?parent_group_id: ::String,
|
|
500
501
|
?dry_run: bool,
|
|
501
502
|
?group_name: ::String,
|
|
502
|
-
?strategy: ("cluster" | "spread" | "partition")
|
|
503
|
+
?strategy: ("cluster" | "spread" | "partition" | "precision-time")
|
|
503
504
|
) -> PlacementGroup
|
|
504
505
|
| (?Hash[Symbol, untyped]) -> PlacementGroup
|
|
505
506
|
|
data/sig/types.rbs
CHANGED
|
@@ -2905,9 +2905,10 @@ module Aws::EC2
|
|
|
2905
2905
|
attr_accessor spread_level: ("host" | "rack")
|
|
2906
2906
|
attr_accessor linked_group_id: ::String
|
|
2907
2907
|
attr_accessor operator: Types::OperatorRequest
|
|
2908
|
+
attr_accessor parent_group_id: ::String
|
|
2908
2909
|
attr_accessor dry_run: bool
|
|
2909
2910
|
attr_accessor group_name: ::String
|
|
2910
|
-
attr_accessor strategy: ("cluster" | "spread" | "partition")
|
|
2911
|
+
attr_accessor strategy: ("cluster" | "spread" | "partition" | "precision-time")
|
|
2911
2912
|
SENSITIVE: []
|
|
2912
2913
|
end
|
|
2913
2914
|
|
|
@@ -15026,7 +15027,7 @@ module Aws::EC2
|
|
|
15026
15027
|
class PlacementGroup
|
|
15027
15028
|
attr_accessor group_name: ::String
|
|
15028
15029
|
attr_accessor state: ("pending" | "available" | "deleting" | "deleted")
|
|
15029
|
-
attr_accessor strategy: ("cluster" | "spread" | "partition")
|
|
15030
|
+
attr_accessor strategy: ("cluster" | "spread" | "partition" | "precision-time")
|
|
15030
15031
|
attr_accessor partition_count: ::Integer
|
|
15031
15032
|
attr_accessor group_id: ::String
|
|
15032
15033
|
attr_accessor tags: ::Array[Types::Tag]
|
|
@@ -15034,6 +15035,7 @@ module Aws::EC2
|
|
|
15034
15035
|
attr_accessor spread_level: ("host" | "rack")
|
|
15035
15036
|
attr_accessor linked_group_id: ::String
|
|
15036
15037
|
attr_accessor operator: Types::OperatorResponse
|
|
15038
|
+
attr_accessor parent_group_id: ::String
|
|
15037
15039
|
SENSITIVE: []
|
|
15038
15040
|
end
|
|
15039
15041
|
|