aws-sdk-ec2 1.506.0 → 1.508.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +140 -26
- data/lib/aws-sdk-ec2/client_api.rb +49 -1
- data/lib/aws-sdk-ec2/image.rb +1 -1
- data/lib/aws-sdk-ec2/types.rb +449 -62
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +40 -2
- data/sig/image.rbs +2 -2
- data/sig/types.rbs +46 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 678fcbcf29be678cf2869ea51625d3ffcb23c8e071a23811f4c205e8df05daa7
|
4
|
+
data.tar.gz: 7f158ca4f18c8760026afc735a3d0641dd3e06d39f5e3cc43222d8d9ccbded6f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9e68abee19500d200f7c7b85b27af1006b41327a7bd5d9873fa4b705c090dccd40436d85bfbbbb25a50745dcfdcaa986bc3c849980ab13d236872ebeb9113317
|
7
|
+
data.tar.gz: adc62a526b8fbd320a042898b8e41669c6a7bf14738d5b1a69613bb33d9cd1155c45f3cbbaccfc0ef8bdc743d99575d013111f954487b4080929e44e96b17267
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.508.0 (2025-02-26)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Amazon EC2 Fleet customers can now override the Block Device Mapping specified in the Launch Template when creating a new Fleet request, saving the effort of creating and associating new Launch Templates to customize the Block Device Mapping.
|
8
|
+
|
9
|
+
1.507.0 (2025-02-25)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Adds support for time-based EBS-backed AMI copy operations. Time-based copy ensures that EBS-backed AMIs are copied within and across Regions in a specified timeframe.
|
13
|
+
|
4
14
|
1.506.0 (2025-02-18)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.508.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -4899,6 +4899,22 @@ module Aws::EC2
|
|
4899
4899
|
#
|
4900
4900
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateTags.html
|
4901
4901
|
#
|
4902
|
+
# @option params [Integer] :snapshot_copy_completion_duration_minutes
|
4903
|
+
# Specify a completion duration, in 15 minute increments, to initiate a
|
4904
|
+
# time-based AMI copy. The specified completion duration applies to each
|
4905
|
+
# of the snapshots associated with the AMI. Each snapshot associated
|
4906
|
+
# with the AMI will be completed within the specified completion
|
4907
|
+
# duration, regardless of their size.
|
4908
|
+
#
|
4909
|
+
# If you do not specify a value, the AMI copy operation is completed on
|
4910
|
+
# a best-effort basis.
|
4911
|
+
#
|
4912
|
+
# For more information, see [ Time-based copies][1].
|
4913
|
+
#
|
4914
|
+
#
|
4915
|
+
#
|
4916
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/time-based-copies.html
|
4917
|
+
#
|
4902
4918
|
# @option params [Boolean] :dry_run
|
4903
4919
|
# Checks whether you have the required permissions for the action,
|
4904
4920
|
# without actually making the request, and provides an error response.
|
@@ -4949,6 +4965,7 @@ module Aws::EC2
|
|
4949
4965
|
# ],
|
4950
4966
|
# },
|
4951
4967
|
# ],
|
4968
|
+
# snapshot_copy_completion_duration_minutes: 1,
|
4952
4969
|
# dry_run: false,
|
4953
4970
|
# })
|
4954
4971
|
#
|
@@ -6981,6 +6998,23 @@ module Aws::EC2
|
|
6981
6998
|
# group_id: "PlacementGroupId",
|
6982
6999
|
# availability_zone: "String",
|
6983
7000
|
# },
|
7001
|
+
# block_device_mappings: [
|
7002
|
+
# {
|
7003
|
+
# device_name: "String",
|
7004
|
+
# virtual_name: "String",
|
7005
|
+
# ebs: {
|
7006
|
+
# encrypted: false,
|
7007
|
+
# delete_on_termination: false,
|
7008
|
+
# iops: 1,
|
7009
|
+
# throughput: 1,
|
7010
|
+
# kms_key_id: "KmsKeyId",
|
7011
|
+
# snapshot_id: "SnapshotId",
|
7012
|
+
# volume_size: 1,
|
7013
|
+
# volume_type: "standard", # accepts standard, io1, io2, gp2, sc1, st1, gp3
|
7014
|
+
# },
|
7015
|
+
# no_device: "String",
|
7016
|
+
# },
|
7017
|
+
# ],
|
6984
7018
|
# instance_requirements: {
|
6985
7019
|
# v_cpu_count: { # required
|
6986
7020
|
# min: 1, # required
|
@@ -7132,6 +7166,18 @@ module Aws::EC2
|
|
7132
7166
|
# resp.errors[0].launch_template_and_overrides.overrides.instance_requirements.baseline_performance_factors.cpu.references #=> Array
|
7133
7167
|
# resp.errors[0].launch_template_and_overrides.overrides.instance_requirements.baseline_performance_factors.cpu.references[0].instance_family #=> String
|
7134
7168
|
# resp.errors[0].launch_template_and_overrides.overrides.image_id #=> String
|
7169
|
+
# resp.errors[0].launch_template_and_overrides.overrides.block_device_mappings #=> Array
|
7170
|
+
# resp.errors[0].launch_template_and_overrides.overrides.block_device_mappings[0].device_name #=> String
|
7171
|
+
# resp.errors[0].launch_template_and_overrides.overrides.block_device_mappings[0].virtual_name #=> String
|
7172
|
+
# resp.errors[0].launch_template_and_overrides.overrides.block_device_mappings[0].ebs.encrypted #=> Boolean
|
7173
|
+
# resp.errors[0].launch_template_and_overrides.overrides.block_device_mappings[0].ebs.delete_on_termination #=> Boolean
|
7174
|
+
# resp.errors[0].launch_template_and_overrides.overrides.block_device_mappings[0].ebs.iops #=> Integer
|
7175
|
+
# resp.errors[0].launch_template_and_overrides.overrides.block_device_mappings[0].ebs.throughput #=> Integer
|
7176
|
+
# resp.errors[0].launch_template_and_overrides.overrides.block_device_mappings[0].ebs.kms_key_id #=> String
|
7177
|
+
# resp.errors[0].launch_template_and_overrides.overrides.block_device_mappings[0].ebs.snapshot_id #=> String
|
7178
|
+
# resp.errors[0].launch_template_and_overrides.overrides.block_device_mappings[0].ebs.volume_size #=> Integer
|
7179
|
+
# resp.errors[0].launch_template_and_overrides.overrides.block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "io2", "gp2", "sc1", "st1", "gp3"
|
7180
|
+
# resp.errors[0].launch_template_and_overrides.overrides.block_device_mappings[0].no_device #=> String
|
7135
7181
|
# resp.errors[0].lifecycle #=> String, one of "spot", "on-demand"
|
7136
7182
|
# resp.errors[0].error_code #=> String
|
7137
7183
|
# resp.errors[0].error_message #=> String
|
@@ -7190,6 +7236,18 @@ module Aws::EC2
|
|
7190
7236
|
# resp.instances[0].launch_template_and_overrides.overrides.instance_requirements.baseline_performance_factors.cpu.references #=> Array
|
7191
7237
|
# resp.instances[0].launch_template_and_overrides.overrides.instance_requirements.baseline_performance_factors.cpu.references[0].instance_family #=> String
|
7192
7238
|
# resp.instances[0].launch_template_and_overrides.overrides.image_id #=> String
|
7239
|
+
# resp.instances[0].launch_template_and_overrides.overrides.block_device_mappings #=> Array
|
7240
|
+
# resp.instances[0].launch_template_and_overrides.overrides.block_device_mappings[0].device_name #=> String
|
7241
|
+
# resp.instances[0].launch_template_and_overrides.overrides.block_device_mappings[0].virtual_name #=> String
|
7242
|
+
# resp.instances[0].launch_template_and_overrides.overrides.block_device_mappings[0].ebs.encrypted #=> Boolean
|
7243
|
+
# resp.instances[0].launch_template_and_overrides.overrides.block_device_mappings[0].ebs.delete_on_termination #=> Boolean
|
7244
|
+
# resp.instances[0].launch_template_and_overrides.overrides.block_device_mappings[0].ebs.iops #=> Integer
|
7245
|
+
# resp.instances[0].launch_template_and_overrides.overrides.block_device_mappings[0].ebs.throughput #=> Integer
|
7246
|
+
# resp.instances[0].launch_template_and_overrides.overrides.block_device_mappings[0].ebs.kms_key_id #=> String
|
7247
|
+
# resp.instances[0].launch_template_and_overrides.overrides.block_device_mappings[0].ebs.snapshot_id #=> String
|
7248
|
+
# resp.instances[0].launch_template_and_overrides.overrides.block_device_mappings[0].ebs.volume_size #=> Integer
|
7249
|
+
# resp.instances[0].launch_template_and_overrides.overrides.block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "io2", "gp2", "sc1", "st1", "gp3"
|
7250
|
+
# resp.instances[0].launch_template_and_overrides.overrides.block_device_mappings[0].no_device #=> String
|
7193
7251
|
# resp.instances[0].lifecycle #=> String, one of "spot", "on-demand"
|
7194
7252
|
# resp.instances[0].instance_ids #=> Array
|
7195
7253
|
# resp.instances[0].instance_ids[0] #=> String
|
@@ -8796,8 +8854,8 @@ module Aws::EC2
|
|
8796
8854
|
# A launch template contains the parameters to launch an instance. When
|
8797
8855
|
# you launch an instance using RunInstances, you can specify a launch
|
8798
8856
|
# template instead of providing the launch parameters in the request.
|
8799
|
-
# For more information, see [
|
8800
|
-
#
|
8857
|
+
# For more information, see [Store instance launch parameters in Amazon
|
8858
|
+
# EC2 launch templates][1] in the *Amazon EC2 User Guide*.
|
8801
8859
|
#
|
8802
8860
|
# To clone an existing launch template as the basis for a new launch
|
8803
8861
|
# template, use the Amazon EC2 console. The API, SDKs, and CLI do not
|
@@ -8808,7 +8866,7 @@ module Aws::EC2
|
|
8808
8866
|
#
|
8809
8867
|
#
|
8810
8868
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-launch-templates.html
|
8811
|
-
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/
|
8869
|
+
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/create-launch-template.html#create-launch-template-from-existing-launch-template
|
8812
8870
|
#
|
8813
8871
|
# @option params [Boolean] :dry_run
|
8814
8872
|
# Checks whether you have the required permissions for the action,
|
@@ -9211,7 +9269,7 @@ module Aws::EC2
|
|
9211
9269
|
#
|
9212
9270
|
#
|
9213
9271
|
#
|
9214
|
-
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/
|
9272
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/manage-launch-template-versions.html
|
9215
9273
|
#
|
9216
9274
|
# @option params [Boolean] :dry_run
|
9217
9275
|
# Checks whether you have the required permissions for the action,
|
@@ -9271,7 +9329,7 @@ module Aws::EC2
|
|
9271
9329
|
#
|
9272
9330
|
#
|
9273
9331
|
#
|
9274
|
-
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/
|
9332
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/create-launch-template.html#use-an-ssm-parameter-instead-of-an-ami-id
|
9275
9333
|
#
|
9276
9334
|
# @return [Types::CreateLaunchTemplateVersionResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9277
9335
|
#
|
@@ -16765,20 +16823,23 @@ module Aws::EC2
|
|
16765
16823
|
req.send_request(options)
|
16766
16824
|
end
|
16767
16825
|
|
16768
|
-
# Deletes the specified EC2
|
16769
|
-
#
|
16770
|
-
# After you delete an EC2 Fleet, it launches no new instances.
|
16826
|
+
# Deletes the specified EC2 Fleet request.
|
16771
16827
|
#
|
16772
|
-
#
|
16773
|
-
# instances. If you choose to terminate the instances, the EC2 Fleet
|
16774
|
-
# enters the `deleted_terminating` state. Otherwise, the EC2 Fleet
|
16775
|
-
# enters the `deleted_running` state, and the instances continue to run
|
16776
|
-
# until they are interrupted or you terminate them manually.
|
16828
|
+
# After you delete an EC2 Fleet request, it launches no new instances.
|
16777
16829
|
#
|
16778
|
-
#
|
16779
|
-
#
|
16780
|
-
# request
|
16781
|
-
#
|
16830
|
+
# You must also specify whether a deleted EC2 Fleet request should
|
16831
|
+
# terminate its instances. If you choose to terminate the instances, the
|
16832
|
+
# EC2 Fleet request enters the `deleted_terminating` state. Otherwise,
|
16833
|
+
# it enters the `deleted_running` state, and the instances continue to
|
16834
|
+
# run until they are interrupted or you terminate them manually.
|
16835
|
+
#
|
16836
|
+
# A deleted `instant` fleet with running instances is not supported.
|
16837
|
+
# When you delete an `instant` fleet, Amazon EC2 automatically
|
16838
|
+
# terminates all its instances. For fleets with more than 1000
|
16839
|
+
# instances, the deletion request might fail. If your fleet has more
|
16840
|
+
# than 1000 instances, first terminate most of the instances manually,
|
16841
|
+
# leaving 1000 or fewer. Then delete the fleet, and the remaining
|
16842
|
+
# instances will be terminated automatically.
|
16782
16843
|
#
|
16783
16844
|
# **Restrictions**
|
16784
16845
|
#
|
@@ -16794,12 +16855,12 @@ module Aws::EC2
|
|
16794
16855
|
# * If you exceed the specified number of fleets to delete, no fleets
|
16795
16856
|
# are deleted.
|
16796
16857
|
#
|
16797
|
-
# For more information, see [Delete an EC2 Fleet
|
16798
|
-
# User Guide*.
|
16858
|
+
# For more information, see [Delete an EC2 Fleet request and the
|
16859
|
+
# instances in the fleet][1] in the *Amazon EC2 User Guide*.
|
16799
16860
|
#
|
16800
16861
|
#
|
16801
16862
|
#
|
16802
|
-
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/
|
16863
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/delete-fleet.html
|
16803
16864
|
#
|
16804
16865
|
# @option params [Boolean] :dry_run
|
16805
16866
|
# Checks whether you have the required permissions for the action,
|
@@ -17549,7 +17610,7 @@ module Aws::EC2
|
|
17549
17610
|
#
|
17550
17611
|
#
|
17551
17612
|
#
|
17552
|
-
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/
|
17613
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/delete-launch-template.html#delete-launch-template-version
|
17553
17614
|
#
|
17554
17615
|
# @option params [Boolean] :dry_run
|
17555
17616
|
# Checks whether you have the required permissions for the action,
|
@@ -23915,6 +23976,18 @@ module Aws::EC2
|
|
23915
23976
|
# resp.fleets[0].launch_template_configs[0].overrides[0].instance_requirements.baseline_performance_factors.cpu.references #=> Array
|
23916
23977
|
# resp.fleets[0].launch_template_configs[0].overrides[0].instance_requirements.baseline_performance_factors.cpu.references[0].instance_family #=> String
|
23917
23978
|
# resp.fleets[0].launch_template_configs[0].overrides[0].image_id #=> String
|
23979
|
+
# resp.fleets[0].launch_template_configs[0].overrides[0].block_device_mappings #=> Array
|
23980
|
+
# resp.fleets[0].launch_template_configs[0].overrides[0].block_device_mappings[0].device_name #=> String
|
23981
|
+
# resp.fleets[0].launch_template_configs[0].overrides[0].block_device_mappings[0].virtual_name #=> String
|
23982
|
+
# resp.fleets[0].launch_template_configs[0].overrides[0].block_device_mappings[0].ebs.encrypted #=> Boolean
|
23983
|
+
# resp.fleets[0].launch_template_configs[0].overrides[0].block_device_mappings[0].ebs.delete_on_termination #=> Boolean
|
23984
|
+
# resp.fleets[0].launch_template_configs[0].overrides[0].block_device_mappings[0].ebs.iops #=> Integer
|
23985
|
+
# resp.fleets[0].launch_template_configs[0].overrides[0].block_device_mappings[0].ebs.throughput #=> Integer
|
23986
|
+
# resp.fleets[0].launch_template_configs[0].overrides[0].block_device_mappings[0].ebs.kms_key_id #=> String
|
23987
|
+
# resp.fleets[0].launch_template_configs[0].overrides[0].block_device_mappings[0].ebs.snapshot_id #=> String
|
23988
|
+
# resp.fleets[0].launch_template_configs[0].overrides[0].block_device_mappings[0].ebs.volume_size #=> Integer
|
23989
|
+
# resp.fleets[0].launch_template_configs[0].overrides[0].block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "io2", "gp2", "sc1", "st1", "gp3"
|
23990
|
+
# resp.fleets[0].launch_template_configs[0].overrides[0].block_device_mappings[0].no_device #=> String
|
23918
23991
|
# resp.fleets[0].target_capacity_specification.total_target_capacity #=> Integer
|
23919
23992
|
# resp.fleets[0].target_capacity_specification.on_demand_target_capacity #=> Integer
|
23920
23993
|
# resp.fleets[0].target_capacity_specification.spot_target_capacity #=> Integer
|
@@ -23998,6 +24071,18 @@ module Aws::EC2
|
|
23998
24071
|
# resp.fleets[0].errors[0].launch_template_and_overrides.overrides.instance_requirements.baseline_performance_factors.cpu.references #=> Array
|
23999
24072
|
# resp.fleets[0].errors[0].launch_template_and_overrides.overrides.instance_requirements.baseline_performance_factors.cpu.references[0].instance_family #=> String
|
24000
24073
|
# resp.fleets[0].errors[0].launch_template_and_overrides.overrides.image_id #=> String
|
24074
|
+
# resp.fleets[0].errors[0].launch_template_and_overrides.overrides.block_device_mappings #=> Array
|
24075
|
+
# resp.fleets[0].errors[0].launch_template_and_overrides.overrides.block_device_mappings[0].device_name #=> String
|
24076
|
+
# resp.fleets[0].errors[0].launch_template_and_overrides.overrides.block_device_mappings[0].virtual_name #=> String
|
24077
|
+
# resp.fleets[0].errors[0].launch_template_and_overrides.overrides.block_device_mappings[0].ebs.encrypted #=> Boolean
|
24078
|
+
# resp.fleets[0].errors[0].launch_template_and_overrides.overrides.block_device_mappings[0].ebs.delete_on_termination #=> Boolean
|
24079
|
+
# resp.fleets[0].errors[0].launch_template_and_overrides.overrides.block_device_mappings[0].ebs.iops #=> Integer
|
24080
|
+
# resp.fleets[0].errors[0].launch_template_and_overrides.overrides.block_device_mappings[0].ebs.throughput #=> Integer
|
24081
|
+
# resp.fleets[0].errors[0].launch_template_and_overrides.overrides.block_device_mappings[0].ebs.kms_key_id #=> String
|
24082
|
+
# resp.fleets[0].errors[0].launch_template_and_overrides.overrides.block_device_mappings[0].ebs.snapshot_id #=> String
|
24083
|
+
# resp.fleets[0].errors[0].launch_template_and_overrides.overrides.block_device_mappings[0].ebs.volume_size #=> Integer
|
24084
|
+
# resp.fleets[0].errors[0].launch_template_and_overrides.overrides.block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "io2", "gp2", "sc1", "st1", "gp3"
|
24085
|
+
# resp.fleets[0].errors[0].launch_template_and_overrides.overrides.block_device_mappings[0].no_device #=> String
|
24001
24086
|
# resp.fleets[0].errors[0].lifecycle #=> String, one of "spot", "on-demand"
|
24002
24087
|
# resp.fleets[0].errors[0].error_code #=> String
|
24003
24088
|
# resp.fleets[0].errors[0].error_message #=> String
|
@@ -24056,6 +24141,18 @@ module Aws::EC2
|
|
24056
24141
|
# resp.fleets[0].instances[0].launch_template_and_overrides.overrides.instance_requirements.baseline_performance_factors.cpu.references #=> Array
|
24057
24142
|
# resp.fleets[0].instances[0].launch_template_and_overrides.overrides.instance_requirements.baseline_performance_factors.cpu.references[0].instance_family #=> String
|
24058
24143
|
# resp.fleets[0].instances[0].launch_template_and_overrides.overrides.image_id #=> String
|
24144
|
+
# resp.fleets[0].instances[0].launch_template_and_overrides.overrides.block_device_mappings #=> Array
|
24145
|
+
# resp.fleets[0].instances[0].launch_template_and_overrides.overrides.block_device_mappings[0].device_name #=> String
|
24146
|
+
# resp.fleets[0].instances[0].launch_template_and_overrides.overrides.block_device_mappings[0].virtual_name #=> String
|
24147
|
+
# resp.fleets[0].instances[0].launch_template_and_overrides.overrides.block_device_mappings[0].ebs.encrypted #=> Boolean
|
24148
|
+
# resp.fleets[0].instances[0].launch_template_and_overrides.overrides.block_device_mappings[0].ebs.delete_on_termination #=> Boolean
|
24149
|
+
# resp.fleets[0].instances[0].launch_template_and_overrides.overrides.block_device_mappings[0].ebs.iops #=> Integer
|
24150
|
+
# resp.fleets[0].instances[0].launch_template_and_overrides.overrides.block_device_mappings[0].ebs.throughput #=> Integer
|
24151
|
+
# resp.fleets[0].instances[0].launch_template_and_overrides.overrides.block_device_mappings[0].ebs.kms_key_id #=> String
|
24152
|
+
# resp.fleets[0].instances[0].launch_template_and_overrides.overrides.block_device_mappings[0].ebs.snapshot_id #=> String
|
24153
|
+
# resp.fleets[0].instances[0].launch_template_and_overrides.overrides.block_device_mappings[0].ebs.volume_size #=> Integer
|
24154
|
+
# resp.fleets[0].instances[0].launch_template_and_overrides.overrides.block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "io2", "gp2", "sc1", "st1", "gp3"
|
24155
|
+
# resp.fleets[0].instances[0].launch_template_and_overrides.overrides.block_device_mappings[0].no_device #=> String
|
24059
24156
|
# resp.fleets[0].instances[0].lifecycle #=> String, one of "spot", "on-demand"
|
24060
24157
|
# resp.fleets[0].instances[0].instance_ids #=> Array
|
24061
24158
|
# resp.fleets[0].instances[0].instance_ids[0] #=> String
|
@@ -28760,7 +28857,7 @@ module Aws::EC2
|
|
28760
28857
|
#
|
28761
28858
|
#
|
28762
28859
|
#
|
28763
|
-
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/
|
28860
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/create-launch-template.html#use-an-ssm-parameter-instead-of-an-ami-id
|
28764
28861
|
#
|
28765
28862
|
# @return [Types::DescribeLaunchTemplateVersionsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
28766
28863
|
#
|
@@ -31712,8 +31809,8 @@ module Aws::EC2
|
|
31712
31809
|
#
|
31713
31810
|
# If you have a large number of network interfaces, the operation fails
|
31714
31811
|
# unless you use pagination or one of the following filters: `group-id`,
|
31715
|
-
# `mac-address`, `private-dns-name`, `private-ip-address`,
|
31716
|
-
#
|
31812
|
+
# `mac-address`, `private-dns-name`, `private-ip-address`, `subnet-id`,
|
31813
|
+
# or `vpc-id`.
|
31717
31814
|
#
|
31718
31815
|
# We strongly recommend using only paginated requests. Unpaginated
|
31719
31816
|
# requests are susceptible to throttling and timeouts.
|
@@ -49380,6 +49477,23 @@ module Aws::EC2
|
|
49380
49477
|
# group_id: "PlacementGroupId",
|
49381
49478
|
# availability_zone: "String",
|
49382
49479
|
# },
|
49480
|
+
# block_device_mappings: [
|
49481
|
+
# {
|
49482
|
+
# device_name: "String",
|
49483
|
+
# virtual_name: "String",
|
49484
|
+
# ebs: {
|
49485
|
+
# encrypted: false,
|
49486
|
+
# delete_on_termination: false,
|
49487
|
+
# iops: 1,
|
49488
|
+
# throughput: 1,
|
49489
|
+
# kms_key_id: "KmsKeyId",
|
49490
|
+
# snapshot_id: "SnapshotId",
|
49491
|
+
# volume_size: 1,
|
49492
|
+
# volume_type: "standard", # accepts standard, io1, io2, gp2, sc1, st1, gp3
|
49493
|
+
# },
|
49494
|
+
# no_device: "String",
|
49495
|
+
# },
|
49496
|
+
# ],
|
49383
49497
|
# instance_requirements: {
|
49384
49498
|
# v_cpu_count: { # required
|
49385
49499
|
# min: 1, # required
|
@@ -51470,7 +51584,7 @@ module Aws::EC2
|
|
51470
51584
|
# @option params [String] :client_token
|
51471
51585
|
# Unique, case-sensitive identifier you provide to ensure the
|
51472
51586
|
# idempotency of the request. For more information, see [Ensuring
|
51473
|
-
# idempotency][1].
|
51587
|
+
# idempotency in Amazon EC2 API requests][1].
|
51474
51588
|
#
|
51475
51589
|
# Constraint: Maximum 128 ASCII characters.
|
51476
51590
|
#
|
@@ -63212,7 +63326,7 @@ module Aws::EC2
|
|
63212
63326
|
tracer: tracer
|
63213
63327
|
)
|
63214
63328
|
context[:gem_name] = 'aws-sdk-ec2'
|
63215
|
-
context[:gem_version] = '1.
|
63329
|
+
context[:gem_version] = '1.508.0'
|
63216
63330
|
Seahorse::Client::Request.new(handlers, context)
|
63217
63331
|
end
|
63218
63332
|
|
@@ -238,6 +238,8 @@ module Aws::EC2
|
|
238
238
|
BlockDeviceMapping = Shapes::StructureShape.new(name: 'BlockDeviceMapping')
|
239
239
|
BlockDeviceMappingList = Shapes::ListShape.new(name: 'BlockDeviceMappingList')
|
240
240
|
BlockDeviceMappingRequestList = Shapes::ListShape.new(name: 'BlockDeviceMappingRequestList')
|
241
|
+
BlockDeviceMappingResponse = Shapes::StructureShape.new(name: 'BlockDeviceMappingResponse')
|
242
|
+
BlockDeviceMappingResponseList = Shapes::ListShape.new(name: 'BlockDeviceMappingResponseList')
|
241
243
|
BlockPublicAccessMode = Shapes::StringShape.new(name: 'BlockPublicAccessMode')
|
242
244
|
BlockPublicAccessStates = Shapes::StructureShape.new(name: 'BlockPublicAccessStates')
|
243
245
|
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
@@ -810,6 +812,7 @@ module Aws::EC2
|
|
810
812
|
DeprovisionPublicIpv4PoolCidrResult = Shapes::StructureShape.new(name: 'DeprovisionPublicIpv4PoolCidrResult')
|
811
813
|
DeprovisionedAddressSet = Shapes::ListShape.new(name: 'DeprovisionedAddressSet')
|
812
814
|
DeregisterImageRequest = Shapes::StructureShape.new(name: 'DeregisterImageRequest')
|
815
|
+
DeregisterImageResult = Shapes::StructureShape.new(name: 'DeregisterImageResult')
|
813
816
|
DeregisterInstanceEventNotificationAttributesRequest = Shapes::StructureShape.new(name: 'DeregisterInstanceEventNotificationAttributesRequest')
|
814
817
|
DeregisterInstanceEventNotificationAttributesResult = Shapes::StructureShape.new(name: 'DeregisterInstanceEventNotificationAttributesResult')
|
815
818
|
DeregisterInstanceTagAttributeRequest = Shapes::StructureShape.new(name: 'DeregisterInstanceTagAttributeRequest')
|
@@ -1331,6 +1334,7 @@ module Aws::EC2
|
|
1331
1334
|
DrainSeconds = Shapes::IntegerShape.new(name: 'DrainSeconds')
|
1332
1335
|
DynamicRoutingValue = Shapes::StringShape.new(name: 'DynamicRoutingValue')
|
1333
1336
|
EbsBlockDevice = Shapes::StructureShape.new(name: 'EbsBlockDevice')
|
1337
|
+
EbsBlockDeviceResponse = Shapes::StructureShape.new(name: 'EbsBlockDeviceResponse')
|
1334
1338
|
EbsEncryptionSupport = Shapes::StringShape.new(name: 'EbsEncryptionSupport')
|
1335
1339
|
EbsInfo = Shapes::StructureShape.new(name: 'EbsInfo')
|
1336
1340
|
EbsInstanceBlockDevice = Shapes::StructureShape.new(name: 'EbsInstanceBlockDevice')
|
@@ -1485,11 +1489,14 @@ module Aws::EC2
|
|
1485
1489
|
FirewallStatefulRule = Shapes::StructureShape.new(name: 'FirewallStatefulRule')
|
1486
1490
|
FirewallStatelessRule = Shapes::StructureShape.new(name: 'FirewallStatelessRule')
|
1487
1491
|
FleetActivityStatus = Shapes::StringShape.new(name: 'FleetActivityStatus')
|
1492
|
+
FleetBlockDeviceMappingRequest = Shapes::StructureShape.new(name: 'FleetBlockDeviceMappingRequest')
|
1493
|
+
FleetBlockDeviceMappingRequestList = Shapes::ListShape.new(name: 'FleetBlockDeviceMappingRequestList')
|
1488
1494
|
FleetCapacityReservation = Shapes::StructureShape.new(name: 'FleetCapacityReservation')
|
1489
1495
|
FleetCapacityReservationSet = Shapes::ListShape.new(name: 'FleetCapacityReservationSet')
|
1490
1496
|
FleetCapacityReservationTenancy = Shapes::StringShape.new(name: 'FleetCapacityReservationTenancy')
|
1491
1497
|
FleetCapacityReservationUsageStrategy = Shapes::StringShape.new(name: 'FleetCapacityReservationUsageStrategy')
|
1492
1498
|
FleetData = Shapes::StructureShape.new(name: 'FleetData')
|
1499
|
+
FleetEbsBlockDeviceRequest = Shapes::StructureShape.new(name: 'FleetEbsBlockDeviceRequest')
|
1493
1500
|
FleetEventType = Shapes::StringShape.new(name: 'FleetEventType')
|
1494
1501
|
FleetExcessCapacityTerminationPolicy = Shapes::StringShape.new(name: 'FleetExcessCapacityTerminationPolicy')
|
1495
1502
|
FleetId = Shapes::StringShape.new(name: 'FleetId')
|
@@ -4200,6 +4207,14 @@ module Aws::EC2
|
|
4200
4207
|
|
4201
4208
|
BlockDeviceMappingRequestList.member = Shapes::ShapeRef.new(shape: BlockDeviceMapping, location_name: "BlockDeviceMapping")
|
4202
4209
|
|
4210
|
+
BlockDeviceMappingResponse.add_member(:device_name, Shapes::ShapeRef.new(shape: String, location_name: "deviceName"))
|
4211
|
+
BlockDeviceMappingResponse.add_member(:virtual_name, Shapes::ShapeRef.new(shape: String, location_name: "virtualName"))
|
4212
|
+
BlockDeviceMappingResponse.add_member(:ebs, Shapes::ShapeRef.new(shape: EbsBlockDeviceResponse, location_name: "ebs"))
|
4213
|
+
BlockDeviceMappingResponse.add_member(:no_device, Shapes::ShapeRef.new(shape: String, location_name: "noDevice"))
|
4214
|
+
BlockDeviceMappingResponse.struct_class = Types::BlockDeviceMappingResponse
|
4215
|
+
|
4216
|
+
BlockDeviceMappingResponseList.member = Shapes::ShapeRef.new(shape: BlockDeviceMappingResponse, location_name: "item")
|
4217
|
+
|
4203
4218
|
BlockPublicAccessStates.add_member(:internet_gateway_block_mode, Shapes::ShapeRef.new(shape: BlockPublicAccessMode, location_name: "internetGatewayBlockMode"))
|
4204
4219
|
BlockPublicAccessStates.struct_class = Types::BlockPublicAccessStates
|
4205
4220
|
|
@@ -4801,6 +4816,7 @@ module Aws::EC2
|
|
4801
4816
|
CopyImageRequest.add_member(:destination_outpost_arn, Shapes::ShapeRef.new(shape: String, location_name: "DestinationOutpostArn"))
|
4802
4817
|
CopyImageRequest.add_member(:copy_image_tags, Shapes::ShapeRef.new(shape: Boolean, location_name: "CopyImageTags"))
|
4803
4818
|
CopyImageRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
|
4819
|
+
CopyImageRequest.add_member(:snapshot_copy_completion_duration_minutes, Shapes::ShapeRef.new(shape: Long, location_name: "SnapshotCopyCompletionDurationMinutes"))
|
4804
4820
|
CopyImageRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
|
4805
4821
|
CopyImageRequest.struct_class = Types::CopyImageRequest
|
4806
4822
|
|
@@ -6631,6 +6647,8 @@ module Aws::EC2
|
|
6631
6647
|
DeregisterImageRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
|
6632
6648
|
DeregisterImageRequest.struct_class = Types::DeregisterImageRequest
|
6633
6649
|
|
6650
|
+
DeregisterImageResult.struct_class = Types::DeregisterImageResult
|
6651
|
+
|
6634
6652
|
DeregisterInstanceEventNotificationAttributesRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
6635
6653
|
DeregisterInstanceEventNotificationAttributesRequest.add_member(:instance_tag_attribute, Shapes::ShapeRef.new(shape: DeregisterInstanceTagAttributeRequest, required: true, location_name: "InstanceTagAttribute"))
|
6636
6654
|
DeregisterInstanceEventNotificationAttributesRequest.struct_class = Types::DeregisterInstanceEventNotificationAttributesRequest
|
@@ -8859,6 +8877,16 @@ module Aws::EC2
|
|
8859
8877
|
EbsBlockDevice.add_member(:encrypted, Shapes::ShapeRef.new(shape: Boolean, location_name: "encrypted"))
|
8860
8878
|
EbsBlockDevice.struct_class = Types::EbsBlockDevice
|
8861
8879
|
|
8880
|
+
EbsBlockDeviceResponse.add_member(:encrypted, Shapes::ShapeRef.new(shape: Boolean, location_name: "encrypted"))
|
8881
|
+
EbsBlockDeviceResponse.add_member(:delete_on_termination, Shapes::ShapeRef.new(shape: Boolean, location_name: "deleteOnTermination"))
|
8882
|
+
EbsBlockDeviceResponse.add_member(:iops, Shapes::ShapeRef.new(shape: Integer, location_name: "iops"))
|
8883
|
+
EbsBlockDeviceResponse.add_member(:throughput, Shapes::ShapeRef.new(shape: Integer, location_name: "throughput"))
|
8884
|
+
EbsBlockDeviceResponse.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "kmsKeyId"))
|
8885
|
+
EbsBlockDeviceResponse.add_member(:snapshot_id, Shapes::ShapeRef.new(shape: SnapshotId, location_name: "snapshotId"))
|
8886
|
+
EbsBlockDeviceResponse.add_member(:volume_size, Shapes::ShapeRef.new(shape: Integer, location_name: "volumeSize"))
|
8887
|
+
EbsBlockDeviceResponse.add_member(:volume_type, Shapes::ShapeRef.new(shape: VolumeType, location_name: "volumeType"))
|
8888
|
+
EbsBlockDeviceResponse.struct_class = Types::EbsBlockDeviceResponse
|
8889
|
+
|
8862
8890
|
EbsInfo.add_member(:ebs_optimized_support, Shapes::ShapeRef.new(shape: EbsOptimizedSupport, location_name: "ebsOptimizedSupport"))
|
8863
8891
|
EbsInfo.add_member(:encryption_support, Shapes::ShapeRef.new(shape: EbsEncryptionSupport, location_name: "encryptionSupport"))
|
8864
8892
|
EbsInfo.add_member(:ebs_optimized_info, Shapes::ShapeRef.new(shape: EbsOptimizedInfo, location_name: "ebsOptimizedInfo"))
|
@@ -9418,6 +9446,14 @@ module Aws::EC2
|
|
9418
9446
|
FirewallStatelessRule.add_member(:priority, Shapes::ShapeRef.new(shape: Priority, location_name: "priority"))
|
9419
9447
|
FirewallStatelessRule.struct_class = Types::FirewallStatelessRule
|
9420
9448
|
|
9449
|
+
FleetBlockDeviceMappingRequest.add_member(:device_name, Shapes::ShapeRef.new(shape: String, location_name: "DeviceName"))
|
9450
|
+
FleetBlockDeviceMappingRequest.add_member(:virtual_name, Shapes::ShapeRef.new(shape: String, location_name: "VirtualName"))
|
9451
|
+
FleetBlockDeviceMappingRequest.add_member(:ebs, Shapes::ShapeRef.new(shape: FleetEbsBlockDeviceRequest, location_name: "Ebs"))
|
9452
|
+
FleetBlockDeviceMappingRequest.add_member(:no_device, Shapes::ShapeRef.new(shape: String, location_name: "NoDevice"))
|
9453
|
+
FleetBlockDeviceMappingRequest.struct_class = Types::FleetBlockDeviceMappingRequest
|
9454
|
+
|
9455
|
+
FleetBlockDeviceMappingRequestList.member = Shapes::ShapeRef.new(shape: FleetBlockDeviceMappingRequest, location_name: "BlockDeviceMapping")
|
9456
|
+
|
9421
9457
|
FleetCapacityReservation.add_member(:capacity_reservation_id, Shapes::ShapeRef.new(shape: CapacityReservationId, location_name: "capacityReservationId"))
|
9422
9458
|
FleetCapacityReservation.add_member(:availability_zone_id, Shapes::ShapeRef.new(shape: String, location_name: "availabilityZoneId"))
|
9423
9459
|
FleetCapacityReservation.add_member(:instance_type, Shapes::ShapeRef.new(shape: InstanceType, location_name: "instanceType"))
|
@@ -9456,6 +9492,16 @@ module Aws::EC2
|
|
9456
9492
|
FleetData.add_member(:context, Shapes::ShapeRef.new(shape: String, location_name: "context"))
|
9457
9493
|
FleetData.struct_class = Types::FleetData
|
9458
9494
|
|
9495
|
+
FleetEbsBlockDeviceRequest.add_member(:encrypted, Shapes::ShapeRef.new(shape: Boolean, location_name: "Encrypted"))
|
9496
|
+
FleetEbsBlockDeviceRequest.add_member(:delete_on_termination, Shapes::ShapeRef.new(shape: Boolean, location_name: "DeleteOnTermination"))
|
9497
|
+
FleetEbsBlockDeviceRequest.add_member(:iops, Shapes::ShapeRef.new(shape: Integer, location_name: "Iops"))
|
9498
|
+
FleetEbsBlockDeviceRequest.add_member(:throughput, Shapes::ShapeRef.new(shape: Integer, location_name: "Throughput"))
|
9499
|
+
FleetEbsBlockDeviceRequest.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "KmsKeyId"))
|
9500
|
+
FleetEbsBlockDeviceRequest.add_member(:snapshot_id, Shapes::ShapeRef.new(shape: SnapshotId, location_name: "SnapshotId"))
|
9501
|
+
FleetEbsBlockDeviceRequest.add_member(:volume_size, Shapes::ShapeRef.new(shape: Integer, location_name: "VolumeSize"))
|
9502
|
+
FleetEbsBlockDeviceRequest.add_member(:volume_type, Shapes::ShapeRef.new(shape: VolumeType, location_name: "VolumeType"))
|
9503
|
+
FleetEbsBlockDeviceRequest.struct_class = Types::FleetEbsBlockDeviceRequest
|
9504
|
+
|
9459
9505
|
FleetIdSet.member = Shapes::ShapeRef.new(shape: FleetId)
|
9460
9506
|
|
9461
9507
|
FleetLaunchTemplateConfig.add_member(:launch_template_specification, Shapes::ShapeRef.new(shape: FleetLaunchTemplateSpecification, location_name: "launchTemplateSpecification"))
|
@@ -9479,6 +9525,7 @@ module Aws::EC2
|
|
9479
9525
|
FleetLaunchTemplateOverrides.add_member(:placement, Shapes::ShapeRef.new(shape: PlacementResponse, location_name: "placement"))
|
9480
9526
|
FleetLaunchTemplateOverrides.add_member(:instance_requirements, Shapes::ShapeRef.new(shape: InstanceRequirements, location_name: "instanceRequirements"))
|
9481
9527
|
FleetLaunchTemplateOverrides.add_member(:image_id, Shapes::ShapeRef.new(shape: ImageId, location_name: "imageId"))
|
9528
|
+
FleetLaunchTemplateOverrides.add_member(:block_device_mappings, Shapes::ShapeRef.new(shape: BlockDeviceMappingResponseList, location_name: "blockDeviceMappingSet"))
|
9482
9529
|
FleetLaunchTemplateOverrides.struct_class = Types::FleetLaunchTemplateOverrides
|
9483
9530
|
|
9484
9531
|
FleetLaunchTemplateOverridesList.member = Shapes::ShapeRef.new(shape: FleetLaunchTemplateOverrides, location_name: "item")
|
@@ -9492,6 +9539,7 @@ module Aws::EC2
|
|
9492
9539
|
FleetLaunchTemplateOverridesRequest.add_member(:weighted_capacity, Shapes::ShapeRef.new(shape: Double, location_name: "WeightedCapacity"))
|
9493
9540
|
FleetLaunchTemplateOverridesRequest.add_member(:priority, Shapes::ShapeRef.new(shape: Double, location_name: "Priority"))
|
9494
9541
|
FleetLaunchTemplateOverridesRequest.add_member(:placement, Shapes::ShapeRef.new(shape: Placement, location_name: "Placement"))
|
9542
|
+
FleetLaunchTemplateOverridesRequest.add_member(:block_device_mappings, Shapes::ShapeRef.new(shape: FleetBlockDeviceMappingRequestList, location_name: "BlockDeviceMapping"))
|
9495
9543
|
FleetLaunchTemplateOverridesRequest.add_member(:instance_requirements, Shapes::ShapeRef.new(shape: InstanceRequirementsRequest, location_name: "InstanceRequirements"))
|
9496
9544
|
FleetLaunchTemplateOverridesRequest.add_member(:image_id, Shapes::ShapeRef.new(shape: ImageId, location_name: "ImageId"))
|
9497
9545
|
FleetLaunchTemplateOverridesRequest.struct_class = Types::FleetLaunchTemplateOverridesRequest
|
@@ -18615,7 +18663,7 @@ module Aws::EC2
|
|
18615
18663
|
o.http_method = "POST"
|
18616
18664
|
o.http_request_uri = "/"
|
18617
18665
|
o.input = Shapes::ShapeRef.new(shape: DeregisterImageRequest)
|
18618
|
-
o.output = Shapes::ShapeRef.new(shape:
|
18666
|
+
o.output = Shapes::ShapeRef.new(shape: DeregisterImageResult)
|
18619
18667
|
end)
|
18620
18668
|
|
18621
18669
|
api.add_operation(:deregister_instance_event_notification_attributes, Seahorse::Model::Operation.new.tap do |o|
|
data/lib/aws-sdk-ec2/image.rb
CHANGED
@@ -613,7 +613,7 @@ module Aws::EC2
|
|
613
613
|
# without actually making the request, and provides an error response.
|
614
614
|
# If you have the required permissions, the error response is
|
615
615
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
616
|
-
# @return [
|
616
|
+
# @return [Types::DeregisterImageResult]
|
617
617
|
def deregister(options = {})
|
618
618
|
options = options.merge(image_id: @id)
|
619
619
|
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|