aws-sdk-ec2 1.586.0 → 1.587.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7b7760955cbec3fcce0f3302848906b19fcafa12f4fb4abb9e6b16bc0bfc365d
4
- data.tar.gz: 07d67463196e13ab2df76a6350e1607218e82c6c0977f289488c4575ee3f9cff
3
+ metadata.gz: b930ad78fe7d33169b8fc03e15476fbb93bf68027a1fd1ed9f08b3e7e64e9f72
4
+ data.tar.gz: d1b4182679e76fe86e07953b9b36d242698d8d06ad8bffb0b28d55ebe40d63e9
5
5
  SHA512:
6
- metadata.gz: 197442513077cc388fb966d5d9e298da5a26c273cd1a5de189e6880772076f66d7b6da530a090c0e18b7e59999a0f98ad107fae27a17cb08e8a275280f43bda0
7
- data.tar.gz: e3db3abde12b9725d5a5f35e578587f0e3647c00fe63dc4bd494f6a799f351410da4150dae480abe4582efa55920b98c200ae7efa072d204bae4da9f505ad72a
6
+ metadata.gz: 1aa8612d8d5deaecae407ba35c6f57ebfc7323e0ff5c2156fc563e3f7646d0801b203342186b06ee9522d9e32a5bf475337877d08921e3da0073aa11111fc35d
7
+ data.tar.gz: b41694668eeac103070aa45e0c1844bc4758180bb39aff054dfbfc31d6c6ea921f34a3ebdd8c95a93309b6bd15b7fb7f75c36b27d6213bb224a385b7af0eba0a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.587.0 (2025-12-22)
5
+ ------------------
6
+
7
+ * Feature - Adds support for linkedGroupId on the CreatePlacementGroup and DescribePlacementGroups APIs. The linkedGroupId parameter is reserved for future use.
8
+
4
9
  1.586.0 (2025-12-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.586.0
1
+ 1.587.0
@@ -13177,6 +13177,9 @@ module Aws::EC2
13177
13177
  #
13178
13178
  # * Rack – No usage restrictions.
13179
13179
  #
13180
+ # @option params [String] :linked_group_id
13181
+ # Reserved for future use.
13182
+ #
13180
13183
  # @option params [Boolean] :dry_run
13181
13184
  # Checks whether you have the required permissions for the operation,
13182
13185
  # without actually making the request, and provides an error response.
@@ -13226,6 +13229,7 @@ module Aws::EC2
13226
13229
  # },
13227
13230
  # ],
13228
13231
  # spread_level: "host", # accepts host, rack
13232
+ # linked_group_id: "PlacementGroupId",
13229
13233
  # dry_run: false,
13230
13234
  # group_name: "String",
13231
13235
  # strategy: "cluster", # accepts cluster, spread, partition
@@ -13243,6 +13247,7 @@ module Aws::EC2
13243
13247
  # resp.placement_group.tags[0].value #=> String
13244
13248
  # resp.placement_group.group_arn #=> String
13245
13249
  # resp.placement_group.spread_level #=> String, one of "host", "rack"
13250
+ # resp.placement_group.linked_group_id #=> String
13246
13251
  #
13247
13252
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreatePlacementGroup AWS API Documentation
13248
13253
  #
@@ -36988,6 +36993,7 @@ module Aws::EC2
36988
36993
  # resp.placement_groups[0].tags[0].value #=> String
36989
36994
  # resp.placement_groups[0].group_arn #=> String
36990
36995
  # resp.placement_groups[0].spread_level #=> String, one of "host", "rack"
36996
+ # resp.placement_groups[0].linked_group_id #=> String
36991
36997
  #
36992
36998
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribePlacementGroups AWS API Documentation
36993
36999
  #
@@ -71687,7 +71693,7 @@ module Aws::EC2
71687
71693
  tracer: tracer
71688
71694
  )
71689
71695
  context[:gem_name] = 'aws-sdk-ec2'
71690
- context[:gem_version] = '1.586.0'
71696
+ context[:gem_version] = '1.587.0'
71691
71697
  Seahorse::Client::Request.new(handlers, context)
71692
71698
  end
71693
71699
 
@@ -6171,6 +6171,7 @@ module Aws::EC2
6171
6171
  CreatePlacementGroupRequest.add_member(:partition_count, Shapes::ShapeRef.new(shape: Integer, location_name: "PartitionCount"))
6172
6172
  CreatePlacementGroupRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
6173
6173
  CreatePlacementGroupRequest.add_member(:spread_level, Shapes::ShapeRef.new(shape: SpreadLevel, location_name: "SpreadLevel"))
6174
+ CreatePlacementGroupRequest.add_member(:linked_group_id, Shapes::ShapeRef.new(shape: PlacementGroupId, location_name: "LinkedGroupId"))
6174
6175
  CreatePlacementGroupRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
6175
6176
  CreatePlacementGroupRequest.add_member(:group_name, Shapes::ShapeRef.new(shape: String, location_name: "groupName"))
6176
6177
  CreatePlacementGroupRequest.add_member(:strategy, Shapes::ShapeRef.new(shape: PlacementStrategy, location_name: "strategy"))
@@ -15526,6 +15527,7 @@ module Aws::EC2
15526
15527
  PlacementGroup.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
15527
15528
  PlacementGroup.add_member(:group_arn, Shapes::ShapeRef.new(shape: String, location_name: "groupArn"))
15528
15529
  PlacementGroup.add_member(:spread_level, Shapes::ShapeRef.new(shape: SpreadLevel, location_name: "spreadLevel"))
15530
+ PlacementGroup.add_member(:linked_group_id, Shapes::ShapeRef.new(shape: PlacementGroupId, location_name: "linkedGroupId"))
15529
15531
  PlacementGroup.struct_class = Types::PlacementGroup
15530
15532
 
15531
15533
  PlacementGroupIdStringList.member = Shapes::ShapeRef.new(shape: PlacementGroupId, location_name: "GroupId")
@@ -79,6 +79,12 @@ module Aws::EC2
79
79
  data[:spread_level]
80
80
  end
81
81
 
82
+ # Reserved for future use.
83
+ # @return [String]
84
+ def linked_group_id
85
+ data[:linked_group_id]
86
+ end
87
+
82
88
  # @!endgroup
83
89
 
84
90
  # @return [Client]
@@ -1104,6 +1104,7 @@ module Aws::EC2
1104
1104
  # },
1105
1105
  # ],
1106
1106
  # spread_level: "host", # accepts host, rack
1107
+ # linked_group_id: "PlacementGroupId",
1107
1108
  # dry_run: false,
1108
1109
  # group_name: "String",
1109
1110
  # strategy: "cluster", # accepts cluster, spread, partition
@@ -1120,6 +1121,8 @@ module Aws::EC2
1120
1121
  # * Host – You can use `host` only with Outpost placement groups.
1121
1122
  #
1122
1123
  # * Rack – No usage restrictions.
1124
+ # @option options [String] :linked_group_id
1125
+ # Reserved for future use.
1123
1126
  # @option options [Boolean] :dry_run
1124
1127
  # Checks whether you have the required permissions for the operation,
1125
1128
  # without actually making the request, and provides an error response.
@@ -12990,6 +12990,10 @@ module Aws::EC2
12990
12990
  # * Rack – No usage restrictions.
12991
12991
  # @return [String]
12992
12992
  #
12993
+ # @!attribute [rw] linked_group_id
12994
+ # Reserved for future use.
12995
+ # @return [String]
12996
+ #
12993
12997
  # @!attribute [rw] dry_run
12994
12998
  # Checks whether you have the required permissions for the operation,
12995
12999
  # without actually making the request, and provides an error response.
@@ -13014,6 +13018,7 @@ module Aws::EC2
13014
13018
  :partition_count,
13015
13019
  :tag_specifications,
13016
13020
  :spread_level,
13021
+ :linked_group_id,
13017
13022
  :dry_run,
13018
13023
  :group_name,
13019
13024
  :strategy)
@@ -67538,6 +67543,10 @@ module Aws::EC2
67538
67543
  # groups can be spread across hosts.
67539
67544
  # @return [String]
67540
67545
  #
67546
+ # @!attribute [rw] linked_group_id
67547
+ # Reserved for future use.
67548
+ # @return [String]
67549
+ #
67541
67550
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PlacementGroup AWS API Documentation
67542
67551
  #
67543
67552
  class PlacementGroup < Struct.new(
@@ -67548,7 +67557,8 @@ module Aws::EC2
67548
67557
  :group_id,
67549
67558
  :tags,
67550
67559
  :group_arn,
67551
- :spread_level)
67560
+ :spread_level,
67561
+ :linked_group_id)
67552
67562
  SENSITIVE = []
67553
67563
  include Aws::Structure
67554
67564
  end
data/lib/aws-sdk-ec2.rb CHANGED
@@ -78,7 +78,7 @@ module Aws::EC2
78
78
  autoload :VpcPeeringConnection, 'aws-sdk-ec2/vpc_peering_connection'
79
79
  autoload :VpcAddress, 'aws-sdk-ec2/vpc_address'
80
80
 
81
- GEM_VERSION = '1.586.0'
81
+ GEM_VERSION = '1.587.0'
82
82
 
83
83
  end
84
84
 
data/sig/client.rbs CHANGED
@@ -3343,6 +3343,7 @@ module Aws
3343
3343
  },
3344
3344
  ],
3345
3345
  ?spread_level: ("host" | "rack"),
3346
+ ?linked_group_id: ::String,
3346
3347
  ?dry_run: bool,
3347
3348
  ?group_name: ::String,
3348
3349
  ?strategy: ("cluster" | "spread" | "partition")
@@ -39,6 +39,9 @@ module Aws
39
39
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/PlacementGroup.html#spread_level-instance_method
40
40
  def spread_level: () -> ("host" | "rack")
41
41
 
42
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/PlacementGroup.html#linked_group_id-instance_method
43
+ def linked_group_id: () -> ::String
44
+
42
45
  def client: () -> Client
43
46
 
44
47
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/PlacementGroup.html#load-instance_method
data/sig/resource.rbs CHANGED
@@ -476,6 +476,7 @@ module Aws
476
476
  },
477
477
  ],
478
478
  ?spread_level: ("host" | "rack"),
479
+ ?linked_group_id: ::String,
479
480
  ?dry_run: bool,
480
481
  ?group_name: ::String,
481
482
  ?strategy: ("cluster" | "spread" | "partition")
data/sig/types.rbs CHANGED
@@ -2788,6 +2788,7 @@ module Aws::EC2
2788
2788
  attr_accessor partition_count: ::Integer
2789
2789
  attr_accessor tag_specifications: ::Array[Types::TagSpecification]
2790
2790
  attr_accessor spread_level: ("host" | "rack")
2791
+ attr_accessor linked_group_id: ::String
2791
2792
  attr_accessor dry_run: bool
2792
2793
  attr_accessor group_name: ::String
2793
2794
  attr_accessor strategy: ("cluster" | "spread" | "partition")
@@ -14551,6 +14552,7 @@ module Aws::EC2
14551
14552
  attr_accessor tags: ::Array[Types::Tag]
14552
14553
  attr_accessor group_arn: ::String
14553
14554
  attr_accessor spread_level: ("host" | "rack")
14555
+ attr_accessor linked_group_id: ::String
14554
14556
  SENSITIVE: []
14555
14557
  end
14556
14558
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ec2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.586.0
4
+ version: 1.587.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services