aws-sdk-ec2 1.602.0 → 1.603.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: 88eaa0f9b72beb479f0396ea53c1e4269602b45687158e6fb4c8ec65add40106
4
- data.tar.gz: 97d036cf609f65719e05376f75c3138e954c6b4b62136433583dbcc03c4fadfd
3
+ metadata.gz: 16ccb526cedb37d55d55cc906f580462044827a07db196cc71f3cca69b761626
4
+ data.tar.gz: 5a44f95beece7624d380f98fc978e50405b95b024e94a109447b2b22b89340a2
5
5
  SHA512:
6
- metadata.gz: 375dc476d8f9ccc7f612a5c78217137ea0a24c4861a9182f03aabaf022d42793dbeee98bfccde9ff33571e3ba4f7aa669af7aa4e0b638000c14650208092bbf4
7
- data.tar.gz: fc5d504753a05b3b7bfd39118ca96625dc61b555aed743027b0876fb3d824094488deb7b101b5b0250941b4437fb9149da0d28fb8166c54b5e14e1b856ae76db
6
+ metadata.gz: fbac11ecec320a8311e01e32d267bdb090eea998576079f8810758263951a9aca5230713c3c5c98f8e2656555343bee76097cadfbe4bce6bb9fc5cf6455940fb
7
+ data.tar.gz: 13698ad5b3345c8863e5517512450dc6d246b803424439fffaabb5dd44df65d56b43c248d6bcefebb4ed870a842fd563457ae617a8353ecaf5a3806e0bb2fb0f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.603.0 (2026-02-17)
5
+ ------------------
6
+
7
+ * Feature - Add Operator field to CreatePlacementGroup and DescribePlacementGroup APIs.
8
+
4
9
  1.602.0 (2026-02-16)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.602.0
1
+ 1.603.0
@@ -13234,6 +13234,9 @@ module Aws::EC2
13234
13234
  # @option params [String] :linked_group_id
13235
13235
  # Reserved for future use.
13236
13236
  #
13237
+ # @option params [Types::OperatorRequest] :operator
13238
+ # Reserved for internal use.
13239
+ #
13237
13240
  # @option params [Boolean] :dry_run
13238
13241
  # Checks whether you have the required permissions for the operation,
13239
13242
  # without actually making the request, and provides an error response.
@@ -13284,6 +13287,9 @@ module Aws::EC2
13284
13287
  # ],
13285
13288
  # spread_level: "host", # accepts host, rack
13286
13289
  # linked_group_id: "PlacementGroupId",
13290
+ # operator: {
13291
+ # principal: "String",
13292
+ # },
13287
13293
  # dry_run: false,
13288
13294
  # group_name: "String",
13289
13295
  # strategy: "cluster", # accepts cluster, spread, partition
@@ -13302,6 +13308,8 @@ module Aws::EC2
13302
13308
  # resp.placement_group.group_arn #=> String
13303
13309
  # resp.placement_group.spread_level #=> String, one of "host", "rack"
13304
13310
  # resp.placement_group.linked_group_id #=> String
13311
+ # resp.placement_group.operator.managed #=> Boolean
13312
+ # resp.placement_group.operator.principal #=> String
13305
13313
  #
13306
13314
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreatePlacementGroup AWS API Documentation
13307
13315
  #
@@ -37605,6 +37613,8 @@ module Aws::EC2
37605
37613
  # resp.placement_groups[0].group_arn #=> String
37606
37614
  # resp.placement_groups[0].spread_level #=> String, one of "host", "rack"
37607
37615
  # resp.placement_groups[0].linked_group_id #=> String
37616
+ # resp.placement_groups[0].operator.managed #=> Boolean
37617
+ # resp.placement_groups[0].operator.principal #=> String
37608
37618
  #
37609
37619
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribePlacementGroups AWS API Documentation
37610
37620
  #
@@ -73019,7 +73029,7 @@ module Aws::EC2
73019
73029
  tracer: tracer
73020
73030
  )
73021
73031
  context[:gem_name] = 'aws-sdk-ec2'
73022
- context[:gem_version] = '1.602.0'
73032
+ context[:gem_version] = '1.603.0'
73023
73033
  Seahorse::Client::Request.new(handlers, context)
73024
73034
  end
73025
73035
 
@@ -6269,6 +6269,7 @@ module Aws::EC2
6269
6269
  CreatePlacementGroupRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
6270
6270
  CreatePlacementGroupRequest.add_member(:spread_level, Shapes::ShapeRef.new(shape: SpreadLevel, location_name: "SpreadLevel"))
6271
6271
  CreatePlacementGroupRequest.add_member(:linked_group_id, Shapes::ShapeRef.new(shape: PlacementGroupId, location_name: "LinkedGroupId"))
6272
+ CreatePlacementGroupRequest.add_member(:operator, Shapes::ShapeRef.new(shape: OperatorRequest, location_name: "Operator"))
6272
6273
  CreatePlacementGroupRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
6273
6274
  CreatePlacementGroupRequest.add_member(:group_name, Shapes::ShapeRef.new(shape: String, location_name: "groupName"))
6274
6275
  CreatePlacementGroupRequest.add_member(:strategy, Shapes::ShapeRef.new(shape: PlacementStrategy, location_name: "strategy"))
@@ -15794,6 +15795,7 @@ module Aws::EC2
15794
15795
  PlacementGroup.add_member(:group_arn, Shapes::ShapeRef.new(shape: String, location_name: "groupArn"))
15795
15796
  PlacementGroup.add_member(:spread_level, Shapes::ShapeRef.new(shape: SpreadLevel, location_name: "spreadLevel"))
15796
15797
  PlacementGroup.add_member(:linked_group_id, Shapes::ShapeRef.new(shape: PlacementGroupId, location_name: "linkedGroupId"))
15798
+ PlacementGroup.add_member(:operator, Shapes::ShapeRef.new(shape: OperatorResponse, location_name: "operator"))
15797
15799
  PlacementGroup.struct_class = Types::PlacementGroup
15798
15800
 
15799
15801
  PlacementGroupIdStringList.member = Shapes::ShapeRef.new(shape: PlacementGroupId, location_name: "GroupId")
@@ -85,6 +85,12 @@ module Aws::EC2
85
85
  data[:linked_group_id]
86
86
  end
87
87
 
88
+ # The service provider that manages the Placement Group.
89
+ # @return [Types::OperatorResponse]
90
+ def operator
91
+ data[:operator]
92
+ end
93
+
88
94
  # @!endgroup
89
95
 
90
96
  # @return [Client]
@@ -1124,6 +1124,9 @@ module Aws::EC2
1124
1124
  # ],
1125
1125
  # spread_level: "host", # accepts host, rack
1126
1126
  # linked_group_id: "PlacementGroupId",
1127
+ # operator: {
1128
+ # principal: "String",
1129
+ # },
1127
1130
  # dry_run: false,
1128
1131
  # group_name: "String",
1129
1132
  # strategy: "cluster", # accepts cluster, spread, partition
@@ -1142,6 +1145,8 @@ module Aws::EC2
1142
1145
  # * Rack – No usage restrictions.
1143
1146
  # @option options [String] :linked_group_id
1144
1147
  # Reserved for future use.
1148
+ # @option options [Types::OperatorRequest] :operator
1149
+ # Reserved for internal use.
1145
1150
  # @option options [Boolean] :dry_run
1146
1151
  # Checks whether you have the required permissions for the operation,
1147
1152
  # without actually making the request, and provides an error response.
@@ -13056,6 +13056,10 @@ module Aws::EC2
13056
13056
  # Reserved for future use.
13057
13057
  # @return [String]
13058
13058
  #
13059
+ # @!attribute [rw] operator
13060
+ # Reserved for internal use.
13061
+ # @return [Types::OperatorRequest]
13062
+ #
13059
13063
  # @!attribute [rw] dry_run
13060
13064
  # Checks whether you have the required permissions for the operation,
13061
13065
  # without actually making the request, and provides an error response.
@@ -13081,6 +13085,7 @@ module Aws::EC2
13081
13085
  :tag_specifications,
13082
13086
  :spread_level,
13083
13087
  :linked_group_id,
13088
+ :operator,
13084
13089
  :dry_run,
13085
13090
  :group_name,
13086
13091
  :strategy)
@@ -68580,6 +68585,10 @@ module Aws::EC2
68580
68585
  # Reserved for future use.
68581
68586
  # @return [String]
68582
68587
  #
68588
+ # @!attribute [rw] operator
68589
+ # The service provider that manages the Placement Group.
68590
+ # @return [Types::OperatorResponse]
68591
+ #
68583
68592
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PlacementGroup AWS API Documentation
68584
68593
  #
68585
68594
  class PlacementGroup < Struct.new(
@@ -68591,7 +68600,8 @@ module Aws::EC2
68591
68600
  :tags,
68592
68601
  :group_arn,
68593
68602
  :spread_level,
68594
- :linked_group_id)
68603
+ :linked_group_id,
68604
+ :operator)
68595
68605
  SENSITIVE = []
68596
68606
  include Aws::Structure
68597
68607
  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.602.0'
81
+ GEM_VERSION = '1.603.0'
82
82
 
83
83
  end
84
84
 
data/sig/client.rbs CHANGED
@@ -3381,6 +3381,9 @@ module Aws
3381
3381
  ],
3382
3382
  ?spread_level: ("host" | "rack"),
3383
3383
  ?linked_group_id: ::String,
3384
+ ?operator: {
3385
+ principal: ::String?
3386
+ },
3384
3387
  ?dry_run: bool,
3385
3388
  ?group_name: ::String,
3386
3389
  ?strategy: ("cluster" | "spread" | "partition")
@@ -42,6 +42,9 @@ module Aws
42
42
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/PlacementGroup.html#linked_group_id-instance_method
43
43
  def linked_group_id: () -> ::String
44
44
 
45
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/PlacementGroup.html#operator-instance_method
46
+ def operator: () -> Types::OperatorResponse
47
+
45
48
  def client: () -> Client
46
49
 
47
50
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/PlacementGroup.html#load-instance_method
data/sig/resource.rbs CHANGED
@@ -494,6 +494,9 @@ module Aws
494
494
  ],
495
495
  ?spread_level: ("host" | "rack"),
496
496
  ?linked_group_id: ::String,
497
+ ?operator: {
498
+ principal: ::String?
499
+ },
497
500
  ?dry_run: bool,
498
501
  ?group_name: ::String,
499
502
  ?strategy: ("cluster" | "spread" | "partition")
data/sig/types.rbs CHANGED
@@ -2804,6 +2804,7 @@ module Aws::EC2
2804
2804
  attr_accessor tag_specifications: ::Array[Types::TagSpecification]
2805
2805
  attr_accessor spread_level: ("host" | "rack")
2806
2806
  attr_accessor linked_group_id: ::String
2807
+ attr_accessor operator: Types::OperatorRequest
2807
2808
  attr_accessor dry_run: bool
2808
2809
  attr_accessor group_name: ::String
2809
2810
  attr_accessor strategy: ("cluster" | "spread" | "partition")
@@ -14767,6 +14768,7 @@ module Aws::EC2
14767
14768
  attr_accessor group_arn: ::String
14768
14769
  attr_accessor spread_level: ("host" | "rack")
14769
14770
  attr_accessor linked_group_id: ::String
14771
+ attr_accessor operator: Types::OperatorResponse
14770
14772
  SENSITIVE: []
14771
14773
  end
14772
14774
 
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.602.0
4
+ version: 1.603.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services