aws-sdk-ec2 1.346.0 → 1.347.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: 69cbb591936c11fd2daac815320d2c8aa2ab7c78ff964564ea62a034d8a78d72
4
- data.tar.gz: ceb6bb88b4b9263cb08152b651a6e237a3b684335d9797b9f85d460451be87c6
3
+ metadata.gz: 1f9f32c805711bd98d031fde00dbb5940ebe24d0703c34a15c1c1540ad39e89e
4
+ data.tar.gz: 955f5ce7c17474e7fd761d06818207d0864a2b5691537f8731bfdc9ef8500c30
5
5
  SHA512:
6
- metadata.gz: 483e4477b7751980c9c1f649f73f6032355f57d6105d97ad40bfdedea3aa09169e1d3e4e3bcd6a8ee94c56c6f0299ab2e9bf512cf7fddb91c329e626c7563600
7
- data.tar.gz: aafcb1b8e0f3429e21525dd0d0dbd5079af25c9a04f90c2aef7ccb1944efad6ef9343afec8f6f24d189fcf66b07f6bb8aaf82b66eb426ff4659f7d169e2ac3c4
6
+ metadata.gz: fff4fef5cdbd9f8001869ec902b3f3dcfa14661e1c384212fec8a7a0be317d576c568a20246e6e5109a9065061dc4dde9df30570f6c0bbc47e0a39e8a59175e9
7
+ data.tar.gz: 8dc7dc78bfd972c7fc5d7d66075d2c81334591e4bad6918be9709a27954c865576062e6d8744bb686cd9f3d042ad78e799b2d9ad18d40d29bb78c0902a6a8f4d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.347.0 (2022-11-08)
5
+ ------------------
6
+
7
+ * Feature - This release enables sharing of EC2 Placement Groups across accounts and within AWS Organizations using Resource Access Manager
8
+
4
9
  1.346.0 (2022-11-07)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.346.0
1
+ 1.347.0
@@ -5977,6 +5977,7 @@ module Aws::EC2
5977
5977
  # tenancy: "default", # accepts default, dedicated, host
5978
5978
  # spread_domain: "String",
5979
5979
  # host_resource_group_arn: "String",
5980
+ # group_id: "PlacementGroupId",
5980
5981
  # },
5981
5982
  # instance_requirements: {
5982
5983
  # v_cpu_count: { # required
@@ -7636,6 +7637,7 @@ module Aws::EC2
7636
7637
  # spread_domain: "String",
7637
7638
  # host_resource_group_arn: "String",
7638
7639
  # partition_number: 1,
7640
+ # group_id: "PlacementGroupId",
7639
7641
  # },
7640
7642
  # ram_disk_id: "RamdiskId",
7641
7643
  # disable_api_termination: false,
@@ -8006,6 +8008,7 @@ module Aws::EC2
8006
8008
  # spread_domain: "String",
8007
8009
  # host_resource_group_arn: "String",
8008
8010
  # partition_number: 1,
8011
+ # group_id: "PlacementGroupId",
8009
8012
  # },
8010
8013
  # ram_disk_id: "RamdiskId",
8011
8014
  # disable_api_termination: false,
@@ -8204,6 +8207,7 @@ module Aws::EC2
8204
8207
  # resp.launch_template_version.launch_template_data.placement.spread_domain #=> String
8205
8208
  # resp.launch_template_version.launch_template_data.placement.host_resource_group_arn #=> String
8206
8209
  # resp.launch_template_version.launch_template_data.placement.partition_number #=> Integer
8210
+ # resp.launch_template_version.launch_template_data.placement.group_id #=> String
8207
8211
  # resp.launch_template_version.launch_template_data.ram_disk_id #=> String
8208
8212
  # resp.launch_template_version.launch_template_data.disable_api_termination #=> Boolean
8209
8213
  # resp.launch_template_version.launch_template_data.instance_initiated_shutdown_behavior #=> String, one of "stop", "terminate"
@@ -23291,6 +23295,7 @@ module Aws::EC2
23291
23295
  # resp.reservations[0].instances[0].placement.tenancy #=> String, one of "default", "dedicated", "host"
23292
23296
  # resp.reservations[0].instances[0].placement.spread_domain #=> String
23293
23297
  # resp.reservations[0].instances[0].placement.host_resource_group_arn #=> String
23298
+ # resp.reservations[0].instances[0].placement.group_id #=> String
23294
23299
  # resp.reservations[0].instances[0].platform #=> String, one of "Windows"
23295
23300
  # resp.reservations[0].instances[0].private_dns_name #=> String
23296
23301
  # resp.reservations[0].instances[0].private_ip_address #=> String
@@ -24240,6 +24245,7 @@ module Aws::EC2
24240
24245
  # resp.launch_template_versions[0].launch_template_data.placement.spread_domain #=> String
24241
24246
  # resp.launch_template_versions[0].launch_template_data.placement.host_resource_group_arn #=> String
24242
24247
  # resp.launch_template_versions[0].launch_template_data.placement.partition_number #=> Integer
24248
+ # resp.launch_template_versions[0].launch_template_data.placement.group_id #=> String
24243
24249
  # resp.launch_template_versions[0].launch_template_data.ram_disk_id #=> String
24244
24250
  # resp.launch_template_versions[0].launch_template_data.disable_api_termination #=> Boolean
24245
24251
  # resp.launch_template_versions[0].launch_template_data.instance_initiated_shutdown_behavior #=> String, one of "stop", "terminate"
@@ -37814,6 +37820,7 @@ module Aws::EC2
37814
37820
  # resp.launch_template_data.placement.spread_domain #=> String
37815
37821
  # resp.launch_template_data.placement.host_resource_group_arn #=> String
37816
37822
  # resp.launch_template_data.placement.partition_number #=> Integer
37823
+ # resp.launch_template_data.placement.group_id #=> String
37817
37824
  # resp.launch_template_data.ram_disk_id #=> String
37818
37825
  # resp.launch_template_data.disable_api_termination #=> Boolean
37819
37826
  # resp.launch_template_data.instance_initiated_shutdown_behavior #=> String, one of "stop", "terminate"
@@ -39855,6 +39862,7 @@ module Aws::EC2
39855
39862
  # tenancy: "default", # accepts default, dedicated, host
39856
39863
  # spread_domain: "String",
39857
39864
  # host_resource_group_arn: "String",
39865
+ # group_id: "PlacementGroupId",
39858
39866
  # },
39859
39867
  # private_ip_address: "String",
39860
39868
  # subnet_id: "SubnetId",
@@ -40993,6 +41001,7 @@ module Aws::EC2
40993
41001
  # tenancy: "default", # accepts default, dedicated, host
40994
41002
  # spread_domain: "String",
40995
41003
  # host_resource_group_arn: "String",
41004
+ # group_id: "PlacementGroupId",
40996
41005
  # },
40997
41006
  # instance_requirements: {
40998
41007
  # v_cpu_count: { # required
@@ -42270,6 +42279,10 @@ module Aws::EC2
42270
42279
  # @option params [String] :host_resource_group_arn
42271
42280
  # The ARN of the host resource group in which to place the instance.
42272
42281
  #
42282
+ # @option params [String] :group_id
42283
+ # The Group Id of a placement group. You must specify the Placement
42284
+ # Group **Group Id** to launch an instance in a shared placement group.
42285
+ #
42273
42286
  # @return [Types::ModifyInstancePlacementResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
42274
42287
  #
42275
42288
  # * {Types::ModifyInstancePlacementResult#return #return} => Boolean
@@ -42284,6 +42297,7 @@ module Aws::EC2
42284
42297
  # tenancy: "dedicated", # accepts dedicated, host
42285
42298
  # partition_number: 1,
42286
42299
  # host_resource_group_arn: "String",
42300
+ # group_id: "PlacementGroupId",
42287
42301
  # })
42288
42302
  #
42289
42303
  # @example Response structure
@@ -50058,6 +50072,7 @@ module Aws::EC2
50058
50072
  # tenancy: "default", # accepts default, dedicated, host
50059
50073
  # spread_domain: "String",
50060
50074
  # host_resource_group_arn: "String",
50075
+ # group_id: "PlacementGroupId",
50061
50076
  # },
50062
50077
  # ramdisk_id: "RamdiskId",
50063
50078
  # security_group_ids: ["SecurityGroupId"],
@@ -50217,6 +50232,7 @@ module Aws::EC2
50217
50232
  # resp.instances[0].placement.tenancy #=> String, one of "default", "dedicated", "host"
50218
50233
  # resp.instances[0].placement.spread_domain #=> String
50219
50234
  # resp.instances[0].placement.host_resource_group_arn #=> String
50235
+ # resp.instances[0].placement.group_id #=> String
50220
50236
  # resp.instances[0].platform #=> String, one of "Windows"
50221
50237
  # resp.instances[0].private_dns_name #=> String
50222
50238
  # resp.instances[0].private_ip_address #=> String
@@ -52562,7 +52578,7 @@ module Aws::EC2
52562
52578
  params: params,
52563
52579
  config: config)
52564
52580
  context[:gem_name] = 'aws-sdk-ec2'
52565
- context[:gem_version] = '1.346.0'
52581
+ context[:gem_version] = '1.347.0'
52566
52582
  Seahorse::Client::Request.new(handlers, context)
52567
52583
  end
52568
52584
 
@@ -9617,6 +9617,7 @@ module Aws::EC2
9617
9617
  LaunchTemplatePlacement.add_member(:spread_domain, Shapes::ShapeRef.new(shape: String, location_name: "spreadDomain"))
9618
9618
  LaunchTemplatePlacement.add_member(:host_resource_group_arn, Shapes::ShapeRef.new(shape: String, location_name: "hostResourceGroupArn"))
9619
9619
  LaunchTemplatePlacement.add_member(:partition_number, Shapes::ShapeRef.new(shape: Integer, location_name: "partitionNumber"))
9620
+ LaunchTemplatePlacement.add_member(:group_id, Shapes::ShapeRef.new(shape: PlacementGroupId, location_name: "groupId"))
9620
9621
  LaunchTemplatePlacement.struct_class = Types::LaunchTemplatePlacement
9621
9622
 
9622
9623
  LaunchTemplatePlacementRequest.add_member(:availability_zone, Shapes::ShapeRef.new(shape: String, location_name: "AvailabilityZone"))
@@ -9627,6 +9628,7 @@ module Aws::EC2
9627
9628
  LaunchTemplatePlacementRequest.add_member(:spread_domain, Shapes::ShapeRef.new(shape: String, location_name: "SpreadDomain"))
9628
9629
  LaunchTemplatePlacementRequest.add_member(:host_resource_group_arn, Shapes::ShapeRef.new(shape: String, location_name: "HostResourceGroupArn"))
9629
9630
  LaunchTemplatePlacementRequest.add_member(:partition_number, Shapes::ShapeRef.new(shape: Integer, location_name: "PartitionNumber"))
9631
+ LaunchTemplatePlacementRequest.add_member(:group_id, Shapes::ShapeRef.new(shape: PlacementGroupId, location_name: "GroupId"))
9630
9632
  LaunchTemplatePlacementRequest.struct_class = Types::LaunchTemplatePlacementRequest
9631
9633
 
9632
9634
  LaunchTemplatePrivateDnsNameOptions.add_member(:hostname_type, Shapes::ShapeRef.new(shape: HostnameType, location_name: "hostnameType"))
@@ -10085,6 +10087,7 @@ module Aws::EC2
10085
10087
  ModifyInstancePlacementRequest.add_member(:tenancy, Shapes::ShapeRef.new(shape: HostTenancy, location_name: "tenancy"))
10086
10088
  ModifyInstancePlacementRequest.add_member(:partition_number, Shapes::ShapeRef.new(shape: Integer, location_name: "PartitionNumber"))
10087
10089
  ModifyInstancePlacementRequest.add_member(:host_resource_group_arn, Shapes::ShapeRef.new(shape: String, location_name: "HostResourceGroupArn"))
10090
+ ModifyInstancePlacementRequest.add_member(:group_id, Shapes::ShapeRef.new(shape: PlacementGroupId, location_name: "GroupId"))
10088
10091
  ModifyInstancePlacementRequest.struct_class = Types::ModifyInstancePlacementRequest
10089
10092
 
10090
10093
  ModifyInstancePlacementResult.add_member(:return, Shapes::ShapeRef.new(shape: Boolean, location_name: "return"))
@@ -10944,6 +10947,7 @@ module Aws::EC2
10944
10947
  Placement.add_member(:tenancy, Shapes::ShapeRef.new(shape: Tenancy, location_name: "tenancy"))
10945
10948
  Placement.add_member(:spread_domain, Shapes::ShapeRef.new(shape: String, location_name: "spreadDomain"))
10946
10949
  Placement.add_member(:host_resource_group_arn, Shapes::ShapeRef.new(shape: String, location_name: "hostResourceGroupArn"))
10950
+ Placement.add_member(:group_id, Shapes::ShapeRef.new(shape: PlacementGroupId, location_name: "groupId"))
10947
10951
  Placement.struct_class = Types::Placement
10948
10952
 
10949
10953
  PlacementGroup.add_member(:group_name, Shapes::ShapeRef.new(shape: String, location_name: "groupName"))
@@ -122,6 +122,7 @@ module Aws::EC2
122
122
  # tenancy: "default", # accepts default, dedicated, host
123
123
  # spread_domain: "String",
124
124
  # host_resource_group_arn: "String",
125
+ # group_id: "PlacementGroupId",
125
126
  # },
126
127
  # ramdisk_id: "RamdiskId",
127
128
  # security_group_ids: ["SecurityGroupId"],
@@ -347,6 +347,7 @@ module Aws::EC2
347
347
  # tenancy: "default", # accepts default, dedicated, host
348
348
  # spread_domain: "String",
349
349
  # host_resource_group_arn: "String",
350
+ # group_id: "PlacementGroupId",
350
351
  # },
351
352
  # ramdisk_id: "RamdiskId",
352
353
  # security_group_ids: ["SecurityGroupId"],
@@ -8242,6 +8242,7 @@ module Aws::EC2
8242
8242
  # tenancy: "default", # accepts default, dedicated, host
8243
8243
  # spread_domain: "String",
8244
8244
  # host_resource_group_arn: "String",
8245
+ # group_id: "PlacementGroupId",
8245
8246
  # },
8246
8247
  # instance_requirements: {
8247
8248
  # v_cpu_count: { # required
@@ -9656,6 +9657,7 @@ module Aws::EC2
9656
9657
  # spread_domain: "String",
9657
9658
  # host_resource_group_arn: "String",
9658
9659
  # partition_number: 1,
9660
+ # group_id: "PlacementGroupId",
9659
9661
  # },
9660
9662
  # ram_disk_id: "RamdiskId",
9661
9663
  # disable_api_termination: false,
@@ -9969,6 +9971,7 @@ module Aws::EC2
9969
9971
  # spread_domain: "String",
9970
9972
  # host_resource_group_arn: "String",
9971
9973
  # partition_number: 1,
9974
+ # group_id: "PlacementGroupId",
9972
9975
  # },
9973
9976
  # ram_disk_id: "RamdiskId",
9974
9977
  # disable_api_termination: false,
@@ -35418,6 +35421,7 @@ module Aws::EC2
35418
35421
  # tenancy: "default", # accepts default, dedicated, host
35419
35422
  # spread_domain: "String",
35420
35423
  # host_resource_group_arn: "String",
35424
+ # group_id: "PlacementGroupId",
35421
35425
  # },
35422
35426
  # instance_requirements: {
35423
35427
  # v_cpu_count: { # required
@@ -35607,6 +35611,7 @@ module Aws::EC2
35607
35611
  # tenancy: "default", # accepts default, dedicated, host
35608
35612
  # spread_domain: "String",
35609
35613
  # host_resource_group_arn: "String",
35614
+ # group_id: "PlacementGroupId",
35610
35615
  # },
35611
35616
  # instance_requirements: {
35612
35617
  # v_cpu_count: { # required
@@ -40562,6 +40567,7 @@ module Aws::EC2
40562
40567
  # tenancy: "default", # accepts default, dedicated, host
40563
40568
  # spread_domain: "String",
40564
40569
  # host_resource_group_arn: "String",
40570
+ # group_id: "PlacementGroupId",
40565
40571
  # },
40566
40572
  # private_ip_address: "String",
40567
40573
  # subnet_id: "SubnetId",
@@ -40677,6 +40683,7 @@ module Aws::EC2
40677
40683
  # tenancy: "default", # accepts default, dedicated, host
40678
40684
  # spread_domain: "String",
40679
40685
  # host_resource_group_arn: "String",
40686
+ # group_id: "PlacementGroupId",
40680
40687
  # },
40681
40688
  # private_ip_address: "String",
40682
40689
  # subnet_id: "SubnetId",
@@ -47347,6 +47354,12 @@ module Aws::EC2
47347
47354
  # only if the placement group strategy is set to `partition`.
47348
47355
  # @return [Integer]
47349
47356
  #
47357
+ # @!attribute [rw] group_id
47358
+ # The Group ID of the placement group. You must specify the Placement
47359
+ # Group **Group ID** to launch an instance in a shared placement
47360
+ # group.
47361
+ # @return [String]
47362
+ #
47350
47363
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchTemplatePlacement AWS API Documentation
47351
47364
  #
47352
47365
  class LaunchTemplatePlacement < Struct.new(
@@ -47357,7 +47370,8 @@ module Aws::EC2
47357
47370
  :tenancy,
47358
47371
  :spread_domain,
47359
47372
  :host_resource_group_arn,
47360
- :partition_number)
47373
+ :partition_number,
47374
+ :group_id)
47361
47375
  SENSITIVE = []
47362
47376
  include Aws::Structure
47363
47377
  end
@@ -47376,6 +47390,7 @@ module Aws::EC2
47376
47390
  # spread_domain: "String",
47377
47391
  # host_resource_group_arn: "String",
47378
47392
  # partition_number: 1,
47393
+ # group_id: "PlacementGroupId",
47379
47394
  # }
47380
47395
  #
47381
47396
  # @!attribute [rw] availability_zone
@@ -47415,6 +47430,12 @@ module Aws::EC2
47415
47430
  # only if the placement group strategy is set to `partition`.
47416
47431
  # @return [Integer]
47417
47432
  #
47433
+ # @!attribute [rw] group_id
47434
+ # The Group Id of a placement group. You must specify the Placement
47435
+ # Group **Group Id** to launch an instance in a shared placement
47436
+ # group.
47437
+ # @return [String]
47438
+ #
47418
47439
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchTemplatePlacementRequest AWS API Documentation
47419
47440
  #
47420
47441
  class LaunchTemplatePlacementRequest < Struct.new(
@@ -47425,7 +47446,8 @@ module Aws::EC2
47425
47446
  :tenancy,
47426
47447
  :spread_domain,
47427
47448
  :host_resource_group_arn,
47428
- :partition_number)
47449
+ :partition_number,
47450
+ :group_id)
47429
47451
  SENSITIVE = []
47430
47452
  include Aws::Structure
47431
47453
  end
@@ -49208,6 +49230,7 @@ module Aws::EC2
49208
49230
  # tenancy: "default", # accepts default, dedicated, host
49209
49231
  # spread_domain: "String",
49210
49232
  # host_resource_group_arn: "String",
49233
+ # group_id: "PlacementGroupId",
49211
49234
  # },
49212
49235
  # instance_requirements: {
49213
49236
  # v_cpu_count: { # required
@@ -50371,6 +50394,7 @@ module Aws::EC2
50371
50394
  # tenancy: "dedicated", # accepts dedicated, host
50372
50395
  # partition_number: 1,
50373
50396
  # host_resource_group_arn: "String",
50397
+ # group_id: "PlacementGroupId",
50374
50398
  # }
50375
50399
  #
50376
50400
  # @!attribute [rw] affinity
@@ -50415,6 +50439,12 @@ module Aws::EC2
50415
50439
  # The ARN of the host resource group in which to place the instance.
50416
50440
  # @return [String]
50417
50441
  #
50442
+ # @!attribute [rw] group_id
50443
+ # The Group Id of a placement group. You must specify the Placement
50444
+ # Group **Group Id** to launch an instance in a shared placement
50445
+ # group.
50446
+ # @return [String]
50447
+ #
50418
50448
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyInstancePlacementRequest AWS API Documentation
50419
50449
  #
50420
50450
  class ModifyInstancePlacementRequest < Struct.new(
@@ -50424,7 +50454,8 @@ module Aws::EC2
50424
50454
  :instance_id,
50425
50455
  :tenancy,
50426
50456
  :partition_number,
50427
- :host_resource_group_arn)
50457
+ :host_resource_group_arn,
50458
+ :group_id)
50428
50459
  SENSITIVE = []
50429
50460
  include Aws::Structure
50430
50461
  end
@@ -55610,6 +55641,7 @@ module Aws::EC2
55610
55641
  # tenancy: "default", # accepts default, dedicated, host
55611
55642
  # spread_domain: "String",
55612
55643
  # host_resource_group_arn: "String",
55644
+ # group_id: "PlacementGroupId",
55613
55645
  # }
55614
55646
  #
55615
55647
  # @!attribute [rw] availability_zone
@@ -55703,6 +55735,10 @@ module Aws::EC2
55703
55735
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateFleet
55704
55736
  # @return [String]
55705
55737
  #
55738
+ # @!attribute [rw] group_id
55739
+ # The Group Id of the placement group.
55740
+ # @return [String]
55741
+ #
55706
55742
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Placement AWS API Documentation
55707
55743
  #
55708
55744
  class Placement < Struct.new(
@@ -55713,7 +55749,8 @@ module Aws::EC2
55713
55749
  :host_id,
55714
55750
  :tenancy,
55715
55751
  :spread_domain,
55716
- :host_resource_group_arn)
55752
+ :host_resource_group_arn,
55753
+ :group_id)
55717
55754
  SENSITIVE = []
55718
55755
  include Aws::Structure
55719
55756
  end
@@ -58603,6 +58640,7 @@ module Aws::EC2
58603
58640
  # spread_domain: "String",
58604
58641
  # host_resource_group_arn: "String",
58605
58642
  # partition_number: 1,
58643
+ # group_id: "PlacementGroupId",
58606
58644
  # },
58607
58645
  # ram_disk_id: "RamdiskId",
58608
58646
  # disable_api_termination: false,
@@ -61925,6 +61963,7 @@ module Aws::EC2
61925
61963
  # tenancy: "default", # accepts default, dedicated, host
61926
61964
  # spread_domain: "String",
61927
61965
  # host_resource_group_arn: "String",
61966
+ # group_id: "PlacementGroupId",
61928
61967
  # },
61929
61968
  # ramdisk_id: "RamdiskId",
61930
61969
  # security_group_ids: ["SecurityGroupId"],
data/lib/aws-sdk-ec2.rb CHANGED
@@ -76,6 +76,6 @@ require_relative 'aws-sdk-ec2/customizations'
76
76
  # @!group service
77
77
  module Aws::EC2
78
78
 
79
- GEM_VERSION = '1.346.0'
79
+ GEM_VERSION = '1.347.0'
80
80
 
81
81
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ec2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.346.0
4
+ version: 1.347.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-11-07 00:00:00.000000000 Z
11
+ date: 2022-11-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4