aws-sdk-ec2 1.591.0 → 1.592.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 +40 -1
- data/lib/aws-sdk-ec2/client_api.rb +23 -0
- data/lib/aws-sdk-ec2/instance.rb +5 -0
- data/lib/aws-sdk-ec2/resource.rb +2 -0
- data/lib/aws-sdk-ec2/subnet.rb +1 -0
- data/lib/aws-sdk-ec2/types.rb +96 -5
- data/lib/aws-sdk-ec2/volume.rb +4 -0
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +17 -7
- data/sig/instance.rbs +3 -1
- data/sig/resource.rbs +4 -2
- data/sig/subnet.rbs +2 -1
- data/sig/types.rbs +19 -0
- data/sig/volume.rbs +1 -0
- 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: 5d0d053b613ccfedaed37d8010ebbbc0a7f552e55a2abc17a091c3c471335965
|
|
4
|
+
data.tar.gz: 0c1aab3a95c3afeeea71f93a9d72f73b918d7ce3579bc704cb87f449c2f75e9e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 076e1dfe5c02a7e1a35118d81f9e47619e05afd6520ee1098637bacfaef121ee8c721ec20ff4523c95e95de9e6268e74781cf95cf30e24d9b7bf270bf61d2983
|
|
7
|
+
data.tar.gz: 48e43ae1f9b824b8986d96660a8f4a361f70df971d499f1a3ff1fa82d7cf2559f9429fd231170aba2783d4a7e1ad0884aadcf4fca1e3912b95f3f434d3ba8dc5
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.592.0 (2026-01-21)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Added support of multiple EBS cards. New EbsCardIndex parameter enables attaching volumes to specific EBS cards on supported instance types for improved storage performance.
|
|
8
|
+
|
|
4
9
|
1.591.0 (2026-01-16)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.592.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
|
@@ -3398,6 +3398,10 @@ module Aws::EC2
|
|
|
3398
3398
|
# The ID of the EBS volume. The volume and instance must be within the
|
|
3399
3399
|
# same Availability Zone.
|
|
3400
3400
|
#
|
|
3401
|
+
# @option params [Integer] :ebs_card_index
|
|
3402
|
+
# The index of the EBS card. Some instance types support multiple EBS
|
|
3403
|
+
# cards. The default EBS card index is 0.
|
|
3404
|
+
#
|
|
3401
3405
|
# @option params [Boolean] :dry_run
|
|
3402
3406
|
# Checks whether you have the required permissions for the action,
|
|
3403
3407
|
# without actually making the request, and provides an error response.
|
|
@@ -3409,6 +3413,7 @@ module Aws::EC2
|
|
|
3409
3413
|
# * {Types::VolumeAttachment#delete_on_termination #delete_on_termination} => Boolean
|
|
3410
3414
|
# * {Types::VolumeAttachment#associated_resource #associated_resource} => String
|
|
3411
3415
|
# * {Types::VolumeAttachment#instance_owning_service #instance_owning_service} => String
|
|
3416
|
+
# * {Types::VolumeAttachment#ebs_card_index #ebs_card_index} => Integer
|
|
3412
3417
|
# * {Types::VolumeAttachment#volume_id #volume_id} => String
|
|
3413
3418
|
# * {Types::VolumeAttachment#instance_id #instance_id} => String
|
|
3414
3419
|
# * {Types::VolumeAttachment#device #device} => String
|
|
@@ -3441,6 +3446,7 @@ module Aws::EC2
|
|
|
3441
3446
|
# device: "String", # required
|
|
3442
3447
|
# instance_id: "InstanceId", # required
|
|
3443
3448
|
# volume_id: "VolumeId", # required
|
|
3449
|
+
# ebs_card_index: 1,
|
|
3444
3450
|
# dry_run: false,
|
|
3445
3451
|
# })
|
|
3446
3452
|
#
|
|
@@ -3449,6 +3455,7 @@ module Aws::EC2
|
|
|
3449
3455
|
# resp.delete_on_termination #=> Boolean
|
|
3450
3456
|
# resp.associated_resource #=> String
|
|
3451
3457
|
# resp.instance_owning_service #=> String
|
|
3458
|
+
# resp.ebs_card_index #=> Integer
|
|
3452
3459
|
# resp.volume_id #=> String
|
|
3453
3460
|
# resp.instance_id #=> String
|
|
3454
3461
|
# resp.device #=> String
|
|
@@ -5599,6 +5606,7 @@ module Aws::EC2
|
|
|
5599
5606
|
# resp.volumes[0].attachments[0].delete_on_termination #=> Boolean
|
|
5600
5607
|
# resp.volumes[0].attachments[0].associated_resource #=> String
|
|
5601
5608
|
# resp.volumes[0].attachments[0].instance_owning_service #=> String
|
|
5609
|
+
# resp.volumes[0].attachments[0].ebs_card_index #=> Integer
|
|
5602
5610
|
# resp.volumes[0].attachments[0].volume_id #=> String
|
|
5603
5611
|
# resp.volumes[0].attachments[0].instance_id #=> String
|
|
5604
5612
|
# resp.volumes[0].attachments[0].device #=> String
|
|
@@ -8422,6 +8430,7 @@ module Aws::EC2
|
|
|
8422
8430
|
# encrypted: false,
|
|
8423
8431
|
# volume_initialization_rate: 1,
|
|
8424
8432
|
# availability_zone_id: "String",
|
|
8433
|
+
# ebs_card_index: 1,
|
|
8425
8434
|
# },
|
|
8426
8435
|
# no_device: "String",
|
|
8427
8436
|
# device_name: "String",
|
|
@@ -10283,6 +10292,7 @@ module Aws::EC2
|
|
|
10283
10292
|
# volume_type: "standard", # accepts standard, io1, io2, gp2, sc1, st1, gp3
|
|
10284
10293
|
# throughput: 1,
|
|
10285
10294
|
# volume_initialization_rate: 1,
|
|
10295
|
+
# ebs_card_index: 1,
|
|
10286
10296
|
# },
|
|
10287
10297
|
# no_device: "String",
|
|
10288
10298
|
# },
|
|
@@ -10714,6 +10724,7 @@ module Aws::EC2
|
|
|
10714
10724
|
# volume_type: "standard", # accepts standard, io1, io2, gp2, sc1, st1, gp3
|
|
10715
10725
|
# throughput: 1,
|
|
10716
10726
|
# volume_initialization_rate: 1,
|
|
10727
|
+
# ebs_card_index: 1,
|
|
10717
10728
|
# },
|
|
10718
10729
|
# no_device: "String",
|
|
10719
10730
|
# },
|
|
@@ -10967,6 +10978,7 @@ module Aws::EC2
|
|
|
10967
10978
|
# resp.launch_template_version.launch_template_data.block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "io2", "gp2", "sc1", "st1", "gp3"
|
|
10968
10979
|
# resp.launch_template_version.launch_template_data.block_device_mappings[0].ebs.throughput #=> Integer
|
|
10969
10980
|
# resp.launch_template_version.launch_template_data.block_device_mappings[0].ebs.volume_initialization_rate #=> Integer
|
|
10981
|
+
# resp.launch_template_version.launch_template_data.block_device_mappings[0].ebs.ebs_card_index #=> Integer
|
|
10970
10982
|
# resp.launch_template_version.launch_template_data.block_device_mappings[0].no_device #=> String
|
|
10971
10983
|
# resp.launch_template_version.launch_template_data.network_interfaces #=> Array
|
|
10972
10984
|
# resp.launch_template_version.launch_template_data.network_interfaces[0].associate_carrier_ip_address #=> Boolean
|
|
@@ -17594,6 +17606,7 @@ module Aws::EC2
|
|
|
17594
17606
|
# resp.attachments[0].delete_on_termination #=> Boolean
|
|
17595
17607
|
# resp.attachments[0].associated_resource #=> String
|
|
17596
17608
|
# resp.attachments[0].instance_owning_service #=> String
|
|
17609
|
+
# resp.attachments[0].ebs_card_index #=> Integer
|
|
17597
17610
|
# resp.attachments[0].volume_id #=> String
|
|
17598
17611
|
# resp.attachments[0].instance_id #=> String
|
|
17599
17612
|
# resp.attachments[0].device #=> String
|
|
@@ -28780,6 +28793,7 @@ module Aws::EC2
|
|
|
28780
28793
|
# resp.block_device_mappings[0].ebs.encrypted #=> Boolean
|
|
28781
28794
|
# resp.block_device_mappings[0].ebs.volume_initialization_rate #=> Integer
|
|
28782
28795
|
# resp.block_device_mappings[0].ebs.availability_zone_id #=> String
|
|
28796
|
+
# resp.block_device_mappings[0].ebs.ebs_card_index #=> Integer
|
|
28783
28797
|
# resp.block_device_mappings[0].no_device #=> String
|
|
28784
28798
|
# resp.block_device_mappings[0].device_name #=> String
|
|
28785
28799
|
# resp.block_device_mappings[0].virtual_name #=> String
|
|
@@ -29412,6 +29426,7 @@ module Aws::EC2
|
|
|
29412
29426
|
# resp.images[0].block_device_mappings[0].ebs.encrypted #=> Boolean
|
|
29413
29427
|
# resp.images[0].block_device_mappings[0].ebs.volume_initialization_rate #=> Integer
|
|
29414
29428
|
# resp.images[0].block_device_mappings[0].ebs.availability_zone_id #=> String
|
|
29429
|
+
# resp.images[0].block_device_mappings[0].ebs.ebs_card_index #=> Integer
|
|
29415
29430
|
# resp.images[0].block_device_mappings[0].no_device #=> String
|
|
29416
29431
|
# resp.images[0].block_device_mappings[0].device_name #=> String
|
|
29417
29432
|
# resp.images[0].block_device_mappings[0].virtual_name #=> String
|
|
@@ -29767,6 +29782,7 @@ module Aws::EC2
|
|
|
29767
29782
|
# resp.block_device_mappings[0].ebs.volume_owner_id #=> String
|
|
29768
29783
|
# resp.block_device_mappings[0].ebs.operator.managed #=> Boolean
|
|
29769
29784
|
# resp.block_device_mappings[0].ebs.operator.principal #=> String
|
|
29785
|
+
# resp.block_device_mappings[0].ebs.ebs_card_index #=> Integer
|
|
29770
29786
|
# resp.disable_api_termination.value #=> Boolean
|
|
29771
29787
|
# resp.ena_support.value #=> Boolean
|
|
29772
29788
|
# resp.enclave_options.enabled #=> Boolean
|
|
@@ -31277,6 +31293,15 @@ module Aws::EC2
|
|
|
31277
31293
|
# resp.instance_types[0].ebs_info.nvme_support #=> String, one of "unsupported", "supported", "required"
|
|
31278
31294
|
# resp.instance_types[0].ebs_info.maximum_ebs_attachments #=> Integer
|
|
31279
31295
|
# resp.instance_types[0].ebs_info.attachment_limit_type #=> String, one of "shared", "dedicated"
|
|
31296
|
+
# resp.instance_types[0].ebs_info.maximum_ebs_cards #=> Integer
|
|
31297
|
+
# resp.instance_types[0].ebs_info.ebs_cards #=> Array
|
|
31298
|
+
# resp.instance_types[0].ebs_info.ebs_cards[0].ebs_card_index #=> Integer
|
|
31299
|
+
# resp.instance_types[0].ebs_info.ebs_cards[0].baseline_bandwidth_in_mbps #=> Integer
|
|
31300
|
+
# resp.instance_types[0].ebs_info.ebs_cards[0].baseline_throughput_in_m_bps #=> Float
|
|
31301
|
+
# resp.instance_types[0].ebs_info.ebs_cards[0].baseline_iops #=> Integer
|
|
31302
|
+
# resp.instance_types[0].ebs_info.ebs_cards[0].maximum_bandwidth_in_mbps #=> Integer
|
|
31303
|
+
# resp.instance_types[0].ebs_info.ebs_cards[0].maximum_throughput_in_m_bps #=> Float
|
|
31304
|
+
# resp.instance_types[0].ebs_info.ebs_cards[0].maximum_iops #=> Integer
|
|
31280
31305
|
# resp.instance_types[0].network_info.network_performance #=> String
|
|
31281
31306
|
# resp.instance_types[0].network_info.maximum_network_interfaces #=> Integer
|
|
31282
31307
|
# resp.instance_types[0].network_info.maximum_network_cards #=> Integer
|
|
@@ -31986,6 +32011,7 @@ module Aws::EC2
|
|
|
31986
32011
|
# resp.reservations[0].instances[0].block_device_mappings[0].ebs.volume_owner_id #=> String
|
|
31987
32012
|
# resp.reservations[0].instances[0].block_device_mappings[0].ebs.operator.managed #=> Boolean
|
|
31988
32013
|
# resp.reservations[0].instances[0].block_device_mappings[0].ebs.operator.principal #=> String
|
|
32014
|
+
# resp.reservations[0].instances[0].block_device_mappings[0].ebs.ebs_card_index #=> Integer
|
|
31989
32015
|
# resp.reservations[0].instances[0].client_token #=> String
|
|
31990
32016
|
# resp.reservations[0].instances[0].ebs_optimized #=> Boolean
|
|
31991
32017
|
# resp.reservations[0].instances[0].ena_support #=> Boolean
|
|
@@ -33491,6 +33517,7 @@ module Aws::EC2
|
|
|
33491
33517
|
# resp.launch_template_versions[0].launch_template_data.block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "io2", "gp2", "sc1", "st1", "gp3"
|
|
33492
33518
|
# resp.launch_template_versions[0].launch_template_data.block_device_mappings[0].ebs.throughput #=> Integer
|
|
33493
33519
|
# resp.launch_template_versions[0].launch_template_data.block_device_mappings[0].ebs.volume_initialization_rate #=> Integer
|
|
33520
|
+
# resp.launch_template_versions[0].launch_template_data.block_device_mappings[0].ebs.ebs_card_index #=> Integer
|
|
33494
33521
|
# resp.launch_template_versions[0].launch_template_data.block_device_mappings[0].no_device #=> String
|
|
33495
33522
|
# resp.launch_template_versions[0].launch_template_data.network_interfaces #=> Array
|
|
33496
33523
|
# resp.launch_template_versions[0].launch_template_data.network_interfaces[0].associate_carrier_ip_address #=> Boolean
|
|
@@ -40132,6 +40159,7 @@ module Aws::EC2
|
|
|
40132
40159
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].block_device_mappings[0].ebs.encrypted #=> Boolean
|
|
40133
40160
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].block_device_mappings[0].ebs.volume_initialization_rate #=> Integer
|
|
40134
40161
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].block_device_mappings[0].ebs.availability_zone_id #=> String
|
|
40162
|
+
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].block_device_mappings[0].ebs.ebs_card_index #=> Integer
|
|
40135
40163
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].block_device_mappings[0].no_device #=> String
|
|
40136
40164
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].block_device_mappings[0].device_name #=> String
|
|
40137
40165
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].block_device_mappings[0].virtual_name #=> String
|
|
@@ -40605,6 +40633,7 @@ module Aws::EC2
|
|
|
40605
40633
|
# resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].ebs.encrypted #=> Boolean
|
|
40606
40634
|
# resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].ebs.volume_initialization_rate #=> Integer
|
|
40607
40635
|
# resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].ebs.availability_zone_id #=> String
|
|
40636
|
+
# resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].ebs.ebs_card_index #=> Integer
|
|
40608
40637
|
# resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].no_device #=> String
|
|
40609
40638
|
# resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].device_name #=> String
|
|
40610
40639
|
# resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].virtual_name #=> String
|
|
@@ -43799,6 +43828,7 @@ module Aws::EC2
|
|
|
43799
43828
|
# resp.volumes[0].attachments[0].delete_on_termination #=> Boolean
|
|
43800
43829
|
# resp.volumes[0].attachments[0].associated_resource #=> String
|
|
43801
43830
|
# resp.volumes[0].attachments[0].instance_owning_service #=> String
|
|
43831
|
+
# resp.volumes[0].attachments[0].ebs_card_index #=> Integer
|
|
43802
43832
|
# resp.volumes[0].attachments[0].volume_id #=> String
|
|
43803
43833
|
# resp.volumes[0].attachments[0].instance_id #=> String
|
|
43804
43834
|
# resp.volumes[0].attachments[0].device #=> String
|
|
@@ -46085,6 +46115,7 @@ module Aws::EC2
|
|
|
46085
46115
|
# * {Types::VolumeAttachment#delete_on_termination #delete_on_termination} => Boolean
|
|
46086
46116
|
# * {Types::VolumeAttachment#associated_resource #associated_resource} => String
|
|
46087
46117
|
# * {Types::VolumeAttachment#instance_owning_service #instance_owning_service} => String
|
|
46118
|
+
# * {Types::VolumeAttachment#ebs_card_index #ebs_card_index} => Integer
|
|
46088
46119
|
# * {Types::VolumeAttachment#volume_id #volume_id} => String
|
|
46089
46120
|
# * {Types::VolumeAttachment#instance_id #instance_id} => String
|
|
46090
46121
|
# * {Types::VolumeAttachment#device #device} => String
|
|
@@ -46124,6 +46155,7 @@ module Aws::EC2
|
|
|
46124
46155
|
# resp.delete_on_termination #=> Boolean
|
|
46125
46156
|
# resp.associated_resource #=> String
|
|
46126
46157
|
# resp.instance_owning_service #=> String
|
|
46158
|
+
# resp.ebs_card_index #=> Integer
|
|
46127
46159
|
# resp.volume_id #=> String
|
|
46128
46160
|
# resp.instance_id #=> String
|
|
46129
46161
|
# resp.device #=> String
|
|
@@ -52459,6 +52491,7 @@ module Aws::EC2
|
|
|
52459
52491
|
# resp.launch_template_data.block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "io2", "gp2", "sc1", "st1", "gp3"
|
|
52460
52492
|
# resp.launch_template_data.block_device_mappings[0].ebs.throughput #=> Integer
|
|
52461
52493
|
# resp.launch_template_data.block_device_mappings[0].ebs.volume_initialization_rate #=> Integer
|
|
52494
|
+
# resp.launch_template_data.block_device_mappings[0].ebs.ebs_card_index #=> Integer
|
|
52462
52495
|
# resp.launch_template_data.block_device_mappings[0].no_device #=> String
|
|
52463
52496
|
# resp.launch_template_data.network_interfaces #=> Array
|
|
52464
52497
|
# resp.launch_template_data.network_interfaces[0].associate_carrier_ip_address #=> Boolean
|
|
@@ -64755,6 +64788,7 @@ module Aws::EC2
|
|
|
64755
64788
|
# encrypted: false,
|
|
64756
64789
|
# volume_initialization_rate: 1,
|
|
64757
64790
|
# availability_zone_id: "String",
|
|
64791
|
+
# ebs_card_index: 1,
|
|
64758
64792
|
# },
|
|
64759
64793
|
# no_device: "String",
|
|
64760
64794
|
# device_name: "String",
|
|
@@ -66297,6 +66331,7 @@ module Aws::EC2
|
|
|
66297
66331
|
# encrypted: false,
|
|
66298
66332
|
# volume_initialization_rate: 1,
|
|
66299
66333
|
# availability_zone_id: "String",
|
|
66334
|
+
# ebs_card_index: 1,
|
|
66300
66335
|
# },
|
|
66301
66336
|
# no_device: "String",
|
|
66302
66337
|
# device_name: "String",
|
|
@@ -66801,6 +66836,7 @@ module Aws::EC2
|
|
|
66801
66836
|
# encrypted: false,
|
|
66802
66837
|
# volume_initialization_rate: 1,
|
|
66803
66838
|
# availability_zone_id: "String",
|
|
66839
|
+
# ebs_card_index: 1,
|
|
66804
66840
|
# },
|
|
66805
66841
|
# no_device: "String",
|
|
66806
66842
|
# device_name: "String",
|
|
@@ -66933,6 +66969,7 @@ module Aws::EC2
|
|
|
66933
66969
|
# resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].ebs.encrypted #=> Boolean
|
|
66934
66970
|
# resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].ebs.volume_initialization_rate #=> Integer
|
|
66935
66971
|
# resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].ebs.availability_zone_id #=> String
|
|
66972
|
+
# resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].ebs.ebs_card_index #=> Integer
|
|
66936
66973
|
# resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].no_device #=> String
|
|
66937
66974
|
# resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].device_name #=> String
|
|
66938
66975
|
# resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].virtual_name #=> String
|
|
@@ -68551,6 +68588,7 @@ module Aws::EC2
|
|
|
68551
68588
|
# encrypted: false,
|
|
68552
68589
|
# volume_initialization_rate: 1,
|
|
68553
68590
|
# availability_zone_id: "String",
|
|
68591
|
+
# ebs_card_index: 1,
|
|
68554
68592
|
# },
|
|
68555
68593
|
# no_device: "String",
|
|
68556
68594
|
# device_name: "String",
|
|
@@ -68763,6 +68801,7 @@ module Aws::EC2
|
|
|
68763
68801
|
# resp.instances[0].block_device_mappings[0].ebs.volume_owner_id #=> String
|
|
68764
68802
|
# resp.instances[0].block_device_mappings[0].ebs.operator.managed #=> Boolean
|
|
68765
68803
|
# resp.instances[0].block_device_mappings[0].ebs.operator.principal #=> String
|
|
68804
|
+
# resp.instances[0].block_device_mappings[0].ebs.ebs_card_index #=> Integer
|
|
68766
68805
|
# resp.instances[0].client_token #=> String
|
|
68767
68806
|
# resp.instances[0].ebs_optimized #=> Boolean
|
|
68768
68807
|
# resp.instances[0].ena_support #=> Boolean
|
|
@@ -71697,7 +71736,7 @@ module Aws::EC2
|
|
|
71697
71736
|
tracer: tracer
|
|
71698
71737
|
)
|
|
71699
71738
|
context[:gem_name] = 'aws-sdk-ec2'
|
|
71700
|
-
context[:gem_version] = '1.
|
|
71739
|
+
context[:gem_version] = '1.592.0'
|
|
71701
71740
|
Seahorse::Client::Request.new(handlers, context)
|
|
71702
71741
|
end
|
|
71703
71742
|
|
|
@@ -1511,6 +1511,9 @@ module Aws::EC2
|
|
|
1511
1511
|
DynamicRoutingValue = Shapes::StringShape.new(name: 'DynamicRoutingValue')
|
|
1512
1512
|
EbsBlockDevice = Shapes::StructureShape.new(name: 'EbsBlockDevice')
|
|
1513
1513
|
EbsBlockDeviceResponse = Shapes::StructureShape.new(name: 'EbsBlockDeviceResponse')
|
|
1514
|
+
EbsCardIndex = Shapes::IntegerShape.new(name: 'EbsCardIndex')
|
|
1515
|
+
EbsCardInfo = Shapes::StructureShape.new(name: 'EbsCardInfo')
|
|
1516
|
+
EbsCardInfoList = Shapes::ListShape.new(name: 'EbsCardInfoList')
|
|
1514
1517
|
EbsEncryptionSupport = Shapes::StringShape.new(name: 'EbsEncryptionSupport')
|
|
1515
1518
|
EbsInfo = Shapes::StructureShape.new(name: 'EbsInfo')
|
|
1516
1519
|
EbsInstanceBlockDevice = Shapes::StructureShape.new(name: 'EbsInstanceBlockDevice')
|
|
@@ -2530,6 +2533,7 @@ module Aws::EC2
|
|
|
2530
2533
|
MaximumDaysSinceCreatedValue = Shapes::IntegerShape.new(name: 'MaximumDaysSinceCreatedValue')
|
|
2531
2534
|
MaximumDaysSinceDeprecatedValue = Shapes::IntegerShape.new(name: 'MaximumDaysSinceDeprecatedValue')
|
|
2532
2535
|
MaximumEbsAttachments = Shapes::IntegerShape.new(name: 'MaximumEbsAttachments')
|
|
2536
|
+
MaximumEbsCards = Shapes::IntegerShape.new(name: 'MaximumEbsCards')
|
|
2533
2537
|
MaximumEfaInterfaces = Shapes::IntegerShape.new(name: 'MaximumEfaInterfaces')
|
|
2534
2538
|
MaximumEnaQueueCount = Shapes::IntegerShape.new(name: 'MaximumEnaQueueCount')
|
|
2535
2539
|
MaximumEnaQueueCountPerInterface = Shapes::IntegerShape.new(name: 'MaximumEnaQueueCountPerInterface')
|
|
@@ -4563,6 +4567,7 @@ module Aws::EC2
|
|
|
4563
4567
|
AttachVolumeRequest.add_member(:device, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Device"))
|
|
4564
4568
|
AttachVolumeRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "InstanceId"))
|
|
4565
4569
|
AttachVolumeRequest.add_member(:volume_id, Shapes::ShapeRef.new(shape: VolumeId, required: true, location_name: "VolumeId"))
|
|
4570
|
+
AttachVolumeRequest.add_member(:ebs_card_index, Shapes::ShapeRef.new(shape: BoxedInteger, location_name: "EbsCardIndex"))
|
|
4566
4571
|
AttachVolumeRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
|
|
4567
4572
|
AttachVolumeRequest.struct_class = Types::AttachVolumeRequest
|
|
4568
4573
|
|
|
@@ -10150,6 +10155,7 @@ module Aws::EC2
|
|
|
10150
10155
|
EbsBlockDevice.add_member(:encrypted, Shapes::ShapeRef.new(shape: Boolean, location_name: "encrypted"))
|
|
10151
10156
|
EbsBlockDevice.add_member(:volume_initialization_rate, Shapes::ShapeRef.new(shape: Integer, location_name: "VolumeInitializationRate"))
|
|
10152
10157
|
EbsBlockDevice.add_member(:availability_zone_id, Shapes::ShapeRef.new(shape: String, location_name: "AvailabilityZoneId"))
|
|
10158
|
+
EbsBlockDevice.add_member(:ebs_card_index, Shapes::ShapeRef.new(shape: Integer, location_name: "EbsCardIndex"))
|
|
10153
10159
|
EbsBlockDevice.struct_class = Types::EbsBlockDevice
|
|
10154
10160
|
|
|
10155
10161
|
EbsBlockDeviceResponse.add_member(:encrypted, Shapes::ShapeRef.new(shape: Boolean, location_name: "encrypted"))
|
|
@@ -10162,12 +10168,25 @@ module Aws::EC2
|
|
|
10162
10168
|
EbsBlockDeviceResponse.add_member(:volume_type, Shapes::ShapeRef.new(shape: VolumeType, location_name: "volumeType"))
|
|
10163
10169
|
EbsBlockDeviceResponse.struct_class = Types::EbsBlockDeviceResponse
|
|
10164
10170
|
|
|
10171
|
+
EbsCardInfo.add_member(:ebs_card_index, Shapes::ShapeRef.new(shape: EbsCardIndex, location_name: "ebsCardIndex"))
|
|
10172
|
+
EbsCardInfo.add_member(:baseline_bandwidth_in_mbps, Shapes::ShapeRef.new(shape: BaselineBandwidthInMbps, location_name: "baselineBandwidthInMbps"))
|
|
10173
|
+
EbsCardInfo.add_member(:baseline_throughput_in_m_bps, Shapes::ShapeRef.new(shape: BaselineThroughputInMBps, location_name: "baselineThroughputInMBps"))
|
|
10174
|
+
EbsCardInfo.add_member(:baseline_iops, Shapes::ShapeRef.new(shape: BaselineIops, location_name: "baselineIops"))
|
|
10175
|
+
EbsCardInfo.add_member(:maximum_bandwidth_in_mbps, Shapes::ShapeRef.new(shape: MaximumBandwidthInMbps, location_name: "maximumBandwidthInMbps"))
|
|
10176
|
+
EbsCardInfo.add_member(:maximum_throughput_in_m_bps, Shapes::ShapeRef.new(shape: MaximumThroughputInMBps, location_name: "maximumThroughputInMBps"))
|
|
10177
|
+
EbsCardInfo.add_member(:maximum_iops, Shapes::ShapeRef.new(shape: MaximumIops, location_name: "maximumIops"))
|
|
10178
|
+
EbsCardInfo.struct_class = Types::EbsCardInfo
|
|
10179
|
+
|
|
10180
|
+
EbsCardInfoList.member = Shapes::ShapeRef.new(shape: EbsCardInfo, location_name: "item")
|
|
10181
|
+
|
|
10165
10182
|
EbsInfo.add_member(:ebs_optimized_support, Shapes::ShapeRef.new(shape: EbsOptimizedSupport, location_name: "ebsOptimizedSupport"))
|
|
10166
10183
|
EbsInfo.add_member(:encryption_support, Shapes::ShapeRef.new(shape: EbsEncryptionSupport, location_name: "encryptionSupport"))
|
|
10167
10184
|
EbsInfo.add_member(:ebs_optimized_info, Shapes::ShapeRef.new(shape: EbsOptimizedInfo, location_name: "ebsOptimizedInfo"))
|
|
10168
10185
|
EbsInfo.add_member(:nvme_support, Shapes::ShapeRef.new(shape: EbsNvmeSupport, location_name: "nvmeSupport"))
|
|
10169
10186
|
EbsInfo.add_member(:maximum_ebs_attachments, Shapes::ShapeRef.new(shape: MaximumEbsAttachments, location_name: "maximumEbsAttachments"))
|
|
10170
10187
|
EbsInfo.add_member(:attachment_limit_type, Shapes::ShapeRef.new(shape: AttachmentLimitType, location_name: "attachmentLimitType"))
|
|
10188
|
+
EbsInfo.add_member(:maximum_ebs_cards, Shapes::ShapeRef.new(shape: MaximumEbsCards, location_name: "maximumEbsCards"))
|
|
10189
|
+
EbsInfo.add_member(:ebs_cards, Shapes::ShapeRef.new(shape: EbsCardInfoList, location_name: "ebsCardSet"))
|
|
10171
10190
|
EbsInfo.struct_class = Types::EbsInfo
|
|
10172
10191
|
|
|
10173
10192
|
EbsInstanceBlockDevice.add_member(:attach_time, Shapes::ShapeRef.new(shape: DateTime, location_name: "attachTime"))
|
|
@@ -10177,6 +10196,7 @@ module Aws::EC2
|
|
|
10177
10196
|
EbsInstanceBlockDevice.add_member(:associated_resource, Shapes::ShapeRef.new(shape: String, location_name: "associatedResource"))
|
|
10178
10197
|
EbsInstanceBlockDevice.add_member(:volume_owner_id, Shapes::ShapeRef.new(shape: String, location_name: "volumeOwnerId"))
|
|
10179
10198
|
EbsInstanceBlockDevice.add_member(:operator, Shapes::ShapeRef.new(shape: OperatorResponse, location_name: "operator"))
|
|
10199
|
+
EbsInstanceBlockDevice.add_member(:ebs_card_index, Shapes::ShapeRef.new(shape: Integer, location_name: "ebsCardIndex"))
|
|
10180
10200
|
EbsInstanceBlockDevice.struct_class = Types::EbsInstanceBlockDevice
|
|
10181
10201
|
|
|
10182
10202
|
EbsInstanceBlockDeviceSpecification.add_member(:volume_id, Shapes::ShapeRef.new(shape: VolumeId, location_name: "volumeId"))
|
|
@@ -13413,6 +13433,7 @@ module Aws::EC2
|
|
|
13413
13433
|
LaunchTemplateEbsBlockDevice.add_member(:volume_type, Shapes::ShapeRef.new(shape: VolumeType, location_name: "volumeType"))
|
|
13414
13434
|
LaunchTemplateEbsBlockDevice.add_member(:throughput, Shapes::ShapeRef.new(shape: Integer, location_name: "throughput"))
|
|
13415
13435
|
LaunchTemplateEbsBlockDevice.add_member(:volume_initialization_rate, Shapes::ShapeRef.new(shape: Integer, location_name: "volumeInitializationRate"))
|
|
13436
|
+
LaunchTemplateEbsBlockDevice.add_member(:ebs_card_index, Shapes::ShapeRef.new(shape: Integer, location_name: "ebsCardIndex"))
|
|
13416
13437
|
LaunchTemplateEbsBlockDevice.struct_class = Types::LaunchTemplateEbsBlockDevice
|
|
13417
13438
|
|
|
13418
13439
|
LaunchTemplateEbsBlockDeviceRequest.add_member(:encrypted, Shapes::ShapeRef.new(shape: Boolean, location_name: "Encrypted"))
|
|
@@ -13424,6 +13445,7 @@ module Aws::EC2
|
|
|
13424
13445
|
LaunchTemplateEbsBlockDeviceRequest.add_member(:volume_type, Shapes::ShapeRef.new(shape: VolumeType, location_name: "VolumeType"))
|
|
13425
13446
|
LaunchTemplateEbsBlockDeviceRequest.add_member(:throughput, Shapes::ShapeRef.new(shape: Integer, location_name: "Throughput"))
|
|
13426
13447
|
LaunchTemplateEbsBlockDeviceRequest.add_member(:volume_initialization_rate, Shapes::ShapeRef.new(shape: Integer, location_name: "VolumeInitializationRate"))
|
|
13448
|
+
LaunchTemplateEbsBlockDeviceRequest.add_member(:ebs_card_index, Shapes::ShapeRef.new(shape: Integer, location_name: "EbsCardIndex"))
|
|
13427
13449
|
LaunchTemplateEbsBlockDeviceRequest.struct_class = Types::LaunchTemplateEbsBlockDeviceRequest
|
|
13428
13450
|
|
|
13429
13451
|
LaunchTemplateElasticInferenceAccelerator.add_member(:type, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Type"))
|
|
@@ -18674,6 +18696,7 @@ module Aws::EC2
|
|
|
18674
18696
|
VolumeAttachment.add_member(:delete_on_termination, Shapes::ShapeRef.new(shape: Boolean, location_name: "deleteOnTermination"))
|
|
18675
18697
|
VolumeAttachment.add_member(:associated_resource, Shapes::ShapeRef.new(shape: String, location_name: "associatedResource"))
|
|
18676
18698
|
VolumeAttachment.add_member(:instance_owning_service, Shapes::ShapeRef.new(shape: String, location_name: "instanceOwningService"))
|
|
18699
|
+
VolumeAttachment.add_member(:ebs_card_index, Shapes::ShapeRef.new(shape: Integer, location_name: "ebsCardIndex"))
|
|
18677
18700
|
VolumeAttachment.add_member(:volume_id, Shapes::ShapeRef.new(shape: String, location_name: "volumeId"))
|
|
18678
18701
|
VolumeAttachment.add_member(:instance_id, Shapes::ShapeRef.new(shape: String, location_name: "instanceId"))
|
|
18679
18702
|
VolumeAttachment.add_member(:device, Shapes::ShapeRef.new(shape: String, location_name: "device"))
|
data/lib/aws-sdk-ec2/instance.rb
CHANGED
|
@@ -733,6 +733,7 @@ module Aws::EC2
|
|
|
733
733
|
# instance.attach_volume({
|
|
734
734
|
# device: "String", # required
|
|
735
735
|
# volume_id: "VolumeId", # required
|
|
736
|
+
# ebs_card_index: 1,
|
|
736
737
|
# dry_run: false,
|
|
737
738
|
# })
|
|
738
739
|
# @param [Hash] options ({})
|
|
@@ -741,6 +742,9 @@ module Aws::EC2
|
|
|
741
742
|
# @option options [required, String] :volume_id
|
|
742
743
|
# The ID of the EBS volume. The volume and instance must be within the
|
|
743
744
|
# same Availability Zone.
|
|
745
|
+
# @option options [Integer] :ebs_card_index
|
|
746
|
+
# The index of the EBS card. Some instance types support multiple EBS
|
|
747
|
+
# cards. The default EBS card index is 0.
|
|
744
748
|
# @option options [Boolean] :dry_run
|
|
745
749
|
# Checks whether you have the required permissions for the action,
|
|
746
750
|
# without actually making the request, and provides an error response.
|
|
@@ -814,6 +818,7 @@ module Aws::EC2
|
|
|
814
818
|
# encrypted: false,
|
|
815
819
|
# volume_initialization_rate: 1,
|
|
816
820
|
# availability_zone_id: "String",
|
|
821
|
+
# ebs_card_index: 1,
|
|
817
822
|
# },
|
|
818
823
|
# no_device: "String",
|
|
819
824
|
# device_name: "String",
|
data/lib/aws-sdk-ec2/resource.rb
CHANGED
|
@@ -97,6 +97,7 @@ module Aws::EC2
|
|
|
97
97
|
# encrypted: false,
|
|
98
98
|
# volume_initialization_rate: 1,
|
|
99
99
|
# availability_zone_id: "String",
|
|
100
|
+
# ebs_card_index: 1,
|
|
100
101
|
# },
|
|
101
102
|
# no_device: "String",
|
|
102
103
|
# device_name: "String",
|
|
@@ -2030,6 +2031,7 @@ module Aws::EC2
|
|
|
2030
2031
|
# encrypted: false,
|
|
2031
2032
|
# volume_initialization_rate: 1,
|
|
2032
2033
|
# availability_zone_id: "String",
|
|
2034
|
+
# ebs_card_index: 1,
|
|
2033
2035
|
# },
|
|
2034
2036
|
# no_device: "String",
|
|
2035
2037
|
# device_name: "String",
|
data/lib/aws-sdk-ec2/subnet.rb
CHANGED
data/lib/aws-sdk-ec2/types.rb
CHANGED
|
@@ -3290,6 +3290,11 @@ module Aws::EC2
|
|
|
3290
3290
|
# same Availability Zone.
|
|
3291
3291
|
# @return [String]
|
|
3292
3292
|
#
|
|
3293
|
+
# @!attribute [rw] ebs_card_index
|
|
3294
|
+
# The index of the EBS card. Some instance types support multiple EBS
|
|
3295
|
+
# cards. The default EBS card index is 0.
|
|
3296
|
+
# @return [Integer]
|
|
3297
|
+
#
|
|
3293
3298
|
# @!attribute [rw] dry_run
|
|
3294
3299
|
# Checks whether you have the required permissions for the action,
|
|
3295
3300
|
# without actually making the request, and provides an error response.
|
|
@@ -3303,6 +3308,7 @@ module Aws::EC2
|
|
|
3303
3308
|
:device,
|
|
3304
3309
|
:instance_id,
|
|
3305
3310
|
:volume_id,
|
|
3311
|
+
:ebs_card_index,
|
|
3306
3312
|
:dry_run)
|
|
3307
3313
|
SENSITIVE = []
|
|
3308
3314
|
include Aws::Structure
|
|
@@ -37640,6 +37646,11 @@ module Aws::EC2
|
|
|
37640
37646
|
# [6]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RunInstances.html
|
|
37641
37647
|
# @return [String]
|
|
37642
37648
|
#
|
|
37649
|
+
# @!attribute [rw] ebs_card_index
|
|
37650
|
+
# The index of the EBS card. Some instance types support multiple EBS
|
|
37651
|
+
# cards. The default EBS card index is 0.
|
|
37652
|
+
# @return [Integer]
|
|
37653
|
+
#
|
|
37643
37654
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EbsBlockDevice AWS API Documentation
|
|
37644
37655
|
#
|
|
37645
37656
|
class EbsBlockDevice < Struct.new(
|
|
@@ -37654,7 +37665,8 @@ module Aws::EC2
|
|
|
37654
37665
|
:availability_zone,
|
|
37655
37666
|
:encrypted,
|
|
37656
37667
|
:volume_initialization_rate,
|
|
37657
|
-
:availability_zone_id
|
|
37668
|
+
:availability_zone_id,
|
|
37669
|
+
:ebs_card_index)
|
|
37658
37670
|
SENSITIVE = []
|
|
37659
37671
|
include Aws::Structure
|
|
37660
37672
|
end
|
|
@@ -37718,6 +37730,51 @@ module Aws::EC2
|
|
|
37718
37730
|
include Aws::Structure
|
|
37719
37731
|
end
|
|
37720
37732
|
|
|
37733
|
+
# Describes the performance characteristics of an EBS card on the
|
|
37734
|
+
# instance type.
|
|
37735
|
+
#
|
|
37736
|
+
# @!attribute [rw] ebs_card_index
|
|
37737
|
+
# The index of the EBS card.
|
|
37738
|
+
# @return [Integer]
|
|
37739
|
+
#
|
|
37740
|
+
# @!attribute [rw] baseline_bandwidth_in_mbps
|
|
37741
|
+
# The baseline bandwidth performance for the EBS card, in Mbps.
|
|
37742
|
+
# @return [Integer]
|
|
37743
|
+
#
|
|
37744
|
+
# @!attribute [rw] baseline_throughput_in_m_bps
|
|
37745
|
+
# The baseline throughput performance for the EBS card, in MBps.
|
|
37746
|
+
# @return [Float]
|
|
37747
|
+
#
|
|
37748
|
+
# @!attribute [rw] baseline_iops
|
|
37749
|
+
# The baseline IOPS performance for the EBS card.
|
|
37750
|
+
# @return [Integer]
|
|
37751
|
+
#
|
|
37752
|
+
# @!attribute [rw] maximum_bandwidth_in_mbps
|
|
37753
|
+
# The maximum bandwidth performance for the EBS card, in Mbps.
|
|
37754
|
+
# @return [Integer]
|
|
37755
|
+
#
|
|
37756
|
+
# @!attribute [rw] maximum_throughput_in_m_bps
|
|
37757
|
+
# The maximum throughput performance for the EBS card, in MBps.
|
|
37758
|
+
# @return [Float]
|
|
37759
|
+
#
|
|
37760
|
+
# @!attribute [rw] maximum_iops
|
|
37761
|
+
# The maximum IOPS performance for the EBS card.
|
|
37762
|
+
# @return [Integer]
|
|
37763
|
+
#
|
|
37764
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EbsCardInfo AWS API Documentation
|
|
37765
|
+
#
|
|
37766
|
+
class EbsCardInfo < Struct.new(
|
|
37767
|
+
:ebs_card_index,
|
|
37768
|
+
:baseline_bandwidth_in_mbps,
|
|
37769
|
+
:baseline_throughput_in_m_bps,
|
|
37770
|
+
:baseline_iops,
|
|
37771
|
+
:maximum_bandwidth_in_mbps,
|
|
37772
|
+
:maximum_throughput_in_m_bps,
|
|
37773
|
+
:maximum_iops)
|
|
37774
|
+
SENSITIVE = []
|
|
37775
|
+
include Aws::Structure
|
|
37776
|
+
end
|
|
37777
|
+
|
|
37721
37778
|
# Describes the Amazon EBS features supported by the instance type.
|
|
37722
37779
|
#
|
|
37723
37780
|
# @!attribute [rw] ebs_optimized_support
|
|
@@ -37764,6 +37821,14 @@ module Aws::EC2
|
|
|
37764
37821
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/volume_limits.html
|
|
37765
37822
|
# @return [String]
|
|
37766
37823
|
#
|
|
37824
|
+
# @!attribute [rw] maximum_ebs_cards
|
|
37825
|
+
# Indicates the number of EBS cards supported by the instance type.
|
|
37826
|
+
# @return [Integer]
|
|
37827
|
+
#
|
|
37828
|
+
# @!attribute [rw] ebs_cards
|
|
37829
|
+
# Describes the EBS cards available for the instance type.
|
|
37830
|
+
# @return [Array<Types::EbsCardInfo>]
|
|
37831
|
+
#
|
|
37767
37832
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EbsInfo AWS API Documentation
|
|
37768
37833
|
#
|
|
37769
37834
|
class EbsInfo < Struct.new(
|
|
@@ -37772,7 +37837,9 @@ module Aws::EC2
|
|
|
37772
37837
|
:ebs_optimized_info,
|
|
37773
37838
|
:nvme_support,
|
|
37774
37839
|
:maximum_ebs_attachments,
|
|
37775
|
-
:attachment_limit_type
|
|
37840
|
+
:attachment_limit_type,
|
|
37841
|
+
:maximum_ebs_cards,
|
|
37842
|
+
:ebs_cards)
|
|
37776
37843
|
SENSITIVE = []
|
|
37777
37844
|
include Aws::Structure
|
|
37778
37845
|
end
|
|
@@ -37812,6 +37879,11 @@ module Aws::EC2
|
|
|
37812
37879
|
# The service provider that manages the EBS volume.
|
|
37813
37880
|
# @return [Types::OperatorResponse]
|
|
37814
37881
|
#
|
|
37882
|
+
# @!attribute [rw] ebs_card_index
|
|
37883
|
+
# The index of the EBS card. Some instance types support multiple EBS
|
|
37884
|
+
# cards. The default EBS card index is 0.
|
|
37885
|
+
# @return [Integer]
|
|
37886
|
+
#
|
|
37815
37887
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EbsInstanceBlockDevice AWS API Documentation
|
|
37816
37888
|
#
|
|
37817
37889
|
class EbsInstanceBlockDevice < Struct.new(
|
|
@@ -37821,7 +37893,8 @@ module Aws::EC2
|
|
|
37821
37893
|
:volume_id,
|
|
37822
37894
|
:associated_resource,
|
|
37823
37895
|
:volume_owner_id,
|
|
37824
|
-
:operator
|
|
37896
|
+
:operator,
|
|
37897
|
+
:ebs_card_index)
|
|
37825
37898
|
SENSITIVE = []
|
|
37826
37899
|
include Aws::Structure
|
|
37827
37900
|
end
|
|
@@ -55883,6 +55956,11 @@ module Aws::EC2
|
|
|
55883
55956
|
# volume initialization rate was specified, the value is `null`.
|
|
55884
55957
|
# @return [Integer]
|
|
55885
55958
|
#
|
|
55959
|
+
# @!attribute [rw] ebs_card_index
|
|
55960
|
+
# The index of the EBS card. Some instance types support multiple EBS
|
|
55961
|
+
# cards. The default EBS card index is 0.
|
|
55962
|
+
# @return [Integer]
|
|
55963
|
+
#
|
|
55886
55964
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchTemplateEbsBlockDevice AWS API Documentation
|
|
55887
55965
|
#
|
|
55888
55966
|
class LaunchTemplateEbsBlockDevice < Struct.new(
|
|
@@ -55894,7 +55972,8 @@ module Aws::EC2
|
|
|
55894
55972
|
:volume_size,
|
|
55895
55973
|
:volume_type,
|
|
55896
55974
|
:throughput,
|
|
55897
|
-
:volume_initialization_rate
|
|
55975
|
+
:volume_initialization_rate,
|
|
55976
|
+
:ebs_card_index)
|
|
55898
55977
|
SENSITIVE = []
|
|
55899
55978
|
include Aws::Structure
|
|
55900
55979
|
end
|
|
@@ -56017,6 +56096,11 @@ module Aws::EC2
|
|
|
56017
56096
|
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/initalize-volume.html
|
|
56018
56097
|
# @return [Integer]
|
|
56019
56098
|
#
|
|
56099
|
+
# @!attribute [rw] ebs_card_index
|
|
56100
|
+
# The index of the EBS card. Some instance types support multiple EBS
|
|
56101
|
+
# cards. The default EBS card index is 0.
|
|
56102
|
+
# @return [Integer]
|
|
56103
|
+
#
|
|
56020
56104
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchTemplateEbsBlockDeviceRequest AWS API Documentation
|
|
56021
56105
|
#
|
|
56022
56106
|
class LaunchTemplateEbsBlockDeviceRequest < Struct.new(
|
|
@@ -56028,7 +56112,8 @@ module Aws::EC2
|
|
|
56028
56112
|
:volume_size,
|
|
56029
56113
|
:volume_type,
|
|
56030
56114
|
:throughput,
|
|
56031
|
-
:volume_initialization_rate
|
|
56115
|
+
:volume_initialization_rate,
|
|
56116
|
+
:ebs_card_index)
|
|
56032
56117
|
SENSITIVE = []
|
|
56033
56118
|
include Aws::Structure
|
|
56034
56119
|
end
|
|
@@ -83461,6 +83546,11 @@ module Aws::EC2
|
|
|
83461
83546
|
# Amazon Web Services-managed resources.
|
|
83462
83547
|
# @return [String]
|
|
83463
83548
|
#
|
|
83549
|
+
# @!attribute [rw] ebs_card_index
|
|
83550
|
+
# The index of the EBS card. Some instance types support multiple EBS
|
|
83551
|
+
# cards. The default EBS card index is 0.
|
|
83552
|
+
# @return [Integer]
|
|
83553
|
+
#
|
|
83464
83554
|
# @!attribute [rw] volume_id
|
|
83465
83555
|
# The ID of the volume.
|
|
83466
83556
|
# @return [String]
|
|
@@ -83493,6 +83583,7 @@ module Aws::EC2
|
|
|
83493
83583
|
:delete_on_termination,
|
|
83494
83584
|
:associated_resource,
|
|
83495
83585
|
:instance_owning_service,
|
|
83586
|
+
:ebs_card_index,
|
|
83496
83587
|
:volume_id,
|
|
83497
83588
|
:instance_id,
|
|
83498
83589
|
:device,
|
data/lib/aws-sdk-ec2/volume.rb
CHANGED
|
@@ -319,6 +319,7 @@ module Aws::EC2
|
|
|
319
319
|
# volume.attach_to_instance({
|
|
320
320
|
# device: "String", # required
|
|
321
321
|
# instance_id: "InstanceId", # required
|
|
322
|
+
# ebs_card_index: 1,
|
|
322
323
|
# dry_run: false,
|
|
323
324
|
# })
|
|
324
325
|
# @param [Hash] options ({})
|
|
@@ -326,6 +327,9 @@ module Aws::EC2
|
|
|
326
327
|
# The device name (for example, `/dev/sdh` or `xvdh`).
|
|
327
328
|
# @option options [required, String] :instance_id
|
|
328
329
|
# The ID of the instance.
|
|
330
|
+
# @option options [Integer] :ebs_card_index
|
|
331
|
+
# The index of the EBS card. Some instance types support multiple EBS
|
|
332
|
+
# cards. The default EBS card index is 0.
|
|
329
333
|
# @option options [Boolean] :dry_run
|
|
330
334
|
# Checks whether you have the required permissions for the action,
|
|
331
335
|
# without actually making the request, and provides an error response.
|
data/lib/aws-sdk-ec2.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -682,6 +682,7 @@ module Aws
|
|
|
682
682
|
def delete_on_termination: () -> bool
|
|
683
683
|
def associated_resource: () -> ::String
|
|
684
684
|
def instance_owning_service: () -> ::String
|
|
685
|
+
def ebs_card_index: () -> ::Integer
|
|
685
686
|
def volume_id: () -> ::String
|
|
686
687
|
def instance_id: () -> ::String
|
|
687
688
|
def device: () -> ::String
|
|
@@ -693,6 +694,7 @@ module Aws
|
|
|
693
694
|
device: ::String,
|
|
694
695
|
instance_id: ::String,
|
|
695
696
|
volume_id: ::String,
|
|
697
|
+
?ebs_card_index: ::Integer,
|
|
696
698
|
?dry_run: bool
|
|
697
699
|
) -> _AttachVolumeResponseSuccess
|
|
698
700
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AttachVolumeResponseSuccess
|
|
@@ -1805,7 +1807,8 @@ module Aws
|
|
|
1805
1807
|
availability_zone: ::String?,
|
|
1806
1808
|
encrypted: bool?,
|
|
1807
1809
|
volume_initialization_rate: ::Integer?,
|
|
1808
|
-
availability_zone_id: ::String
|
|
1810
|
+
availability_zone_id: ::String?,
|
|
1811
|
+
ebs_card_index: ::Integer?
|
|
1809
1812
|
}?,
|
|
1810
1813
|
no_device: ::String?,
|
|
1811
1814
|
device_name: ::String?,
|
|
@@ -2297,7 +2300,8 @@ module Aws
|
|
|
2297
2300
|
volume_size: ::Integer?,
|
|
2298
2301
|
volume_type: ("standard" | "io1" | "io2" | "gp2" | "sc1" | "st1" | "gp3")?,
|
|
2299
2302
|
throughput: ::Integer?,
|
|
2300
|
-
volume_initialization_rate: ::Integer
|
|
2303
|
+
volume_initialization_rate: ::Integer?,
|
|
2304
|
+
ebs_card_index: ::Integer?
|
|
2301
2305
|
}?,
|
|
2302
2306
|
no_device: ::String?
|
|
2303
2307
|
},
|
|
@@ -2573,7 +2577,8 @@ module Aws
|
|
|
2573
2577
|
volume_size: ::Integer?,
|
|
2574
2578
|
volume_type: ("standard" | "io1" | "io2" | "gp2" | "sc1" | "st1" | "gp3")?,
|
|
2575
2579
|
throughput: ::Integer?,
|
|
2576
|
-
volume_initialization_rate: ::Integer
|
|
2580
|
+
volume_initialization_rate: ::Integer?,
|
|
2581
|
+
ebs_card_index: ::Integer?
|
|
2577
2582
|
}?,
|
|
2578
2583
|
no_device: ::String?
|
|
2579
2584
|
},
|
|
@@ -9414,6 +9419,7 @@ module Aws
|
|
|
9414
9419
|
def delete_on_termination: () -> bool
|
|
9415
9420
|
def associated_resource: () -> ::String
|
|
9416
9421
|
def instance_owning_service: () -> ::String
|
|
9422
|
+
def ebs_card_index: () -> ::Integer
|
|
9417
9423
|
def volume_id: () -> ::String
|
|
9418
9424
|
def instance_id: () -> ::String
|
|
9419
9425
|
def device: () -> ::String
|
|
@@ -13842,7 +13848,8 @@ module Aws
|
|
|
13842
13848
|
availability_zone: ::String?,
|
|
13843
13849
|
encrypted: bool?,
|
|
13844
13850
|
volume_initialization_rate: ::Integer?,
|
|
13845
|
-
availability_zone_id: ::String
|
|
13851
|
+
availability_zone_id: ::String?,
|
|
13852
|
+
ebs_card_index: ::Integer?
|
|
13846
13853
|
}?,
|
|
13847
13854
|
no_device: ::String?,
|
|
13848
13855
|
device_name: ::String?,
|
|
@@ -14180,7 +14187,8 @@ module Aws
|
|
|
14180
14187
|
availability_zone: ::String?,
|
|
14181
14188
|
encrypted: bool?,
|
|
14182
14189
|
volume_initialization_rate: ::Integer?,
|
|
14183
|
-
availability_zone_id: ::String
|
|
14190
|
+
availability_zone_id: ::String?,
|
|
14191
|
+
ebs_card_index: ::Integer?
|
|
14184
14192
|
}?,
|
|
14185
14193
|
no_device: ::String?,
|
|
14186
14194
|
device_name: ::String?,
|
|
@@ -14498,7 +14506,8 @@ module Aws
|
|
|
14498
14506
|
availability_zone: ::String?,
|
|
14499
14507
|
encrypted: bool?,
|
|
14500
14508
|
volume_initialization_rate: ::Integer?,
|
|
14501
|
-
availability_zone_id: ::String
|
|
14509
|
+
availability_zone_id: ::String?,
|
|
14510
|
+
ebs_card_index: ::Integer?
|
|
14502
14511
|
}?,
|
|
14503
14512
|
no_device: ::String?,
|
|
14504
14513
|
device_name: ::String?,
|
|
@@ -14907,7 +14916,8 @@ module Aws
|
|
|
14907
14916
|
availability_zone: ::String?,
|
|
14908
14917
|
encrypted: bool?,
|
|
14909
14918
|
volume_initialization_rate: ::Integer?,
|
|
14910
|
-
availability_zone_id: ::String
|
|
14919
|
+
availability_zone_id: ::String?,
|
|
14920
|
+
ebs_card_index: ::Integer?
|
|
14911
14921
|
}?,
|
|
14912
14922
|
no_device: ::String?,
|
|
14913
14923
|
device_name: ::String?,
|
data/sig/instance.rbs
CHANGED
|
@@ -236,6 +236,7 @@ module Aws
|
|
|
236
236
|
def attach_volume: (
|
|
237
237
|
device: ::String,
|
|
238
238
|
volume_id: ::String,
|
|
239
|
+
?ebs_card_index: ::Integer,
|
|
239
240
|
?dry_run: bool
|
|
240
241
|
) -> Types::VolumeAttachment
|
|
241
242
|
| (?Hash[Symbol, untyped]) -> Types::VolumeAttachment
|
|
@@ -279,7 +280,8 @@ module Aws
|
|
|
279
280
|
availability_zone: ::String?,
|
|
280
281
|
encrypted: bool?,
|
|
281
282
|
volume_initialization_rate: ::Integer?,
|
|
282
|
-
availability_zone_id: ::String
|
|
283
|
+
availability_zone_id: ::String?,
|
|
284
|
+
ebs_card_index: ::Integer?
|
|
283
285
|
}?,
|
|
284
286
|
no_device: ::String?,
|
|
285
287
|
device_name: ::String?,
|
data/sig/resource.rbs
CHANGED
|
@@ -119,7 +119,8 @@ module Aws
|
|
|
119
119
|
availability_zone: ::String?,
|
|
120
120
|
encrypted: bool?,
|
|
121
121
|
volume_initialization_rate: ::Integer?,
|
|
122
|
-
availability_zone_id: ::String
|
|
122
|
+
availability_zone_id: ::String?,
|
|
123
|
+
ebs_card_index: ::Integer?
|
|
123
124
|
}?,
|
|
124
125
|
no_device: ::String?,
|
|
125
126
|
device_name: ::String?,
|
|
@@ -755,7 +756,8 @@ module Aws
|
|
|
755
756
|
availability_zone: ::String?,
|
|
756
757
|
encrypted: bool?,
|
|
757
758
|
volume_initialization_rate: ::Integer?,
|
|
758
|
-
availability_zone_id: ::String
|
|
759
|
+
availability_zone_id: ::String?,
|
|
760
|
+
ebs_card_index: ::Integer?
|
|
759
761
|
}?,
|
|
760
762
|
no_device: ::String?,
|
|
761
763
|
device_name: ::String?,
|
data/sig/subnet.rbs
CHANGED
|
@@ -113,7 +113,8 @@ module Aws
|
|
|
113
113
|
availability_zone: ::String?,
|
|
114
114
|
encrypted: bool?,
|
|
115
115
|
volume_initialization_rate: ::Integer?,
|
|
116
|
-
availability_zone_id: ::String
|
|
116
|
+
availability_zone_id: ::String?,
|
|
117
|
+
ebs_card_index: ::Integer?
|
|
117
118
|
}?,
|
|
118
119
|
no_device: ::String?,
|
|
119
120
|
device_name: ::String?,
|
data/sig/types.rbs
CHANGED
|
@@ -830,6 +830,7 @@ module Aws::EC2
|
|
|
830
830
|
attr_accessor device: ::String
|
|
831
831
|
attr_accessor instance_id: ::String
|
|
832
832
|
attr_accessor volume_id: ::String
|
|
833
|
+
attr_accessor ebs_card_index: ::Integer
|
|
833
834
|
attr_accessor dry_run: bool
|
|
834
835
|
SENSITIVE: []
|
|
835
836
|
end
|
|
@@ -8251,6 +8252,7 @@ module Aws::EC2
|
|
|
8251
8252
|
attr_accessor encrypted: bool
|
|
8252
8253
|
attr_accessor volume_initialization_rate: ::Integer
|
|
8253
8254
|
attr_accessor availability_zone_id: ::String
|
|
8255
|
+
attr_accessor ebs_card_index: ::Integer
|
|
8254
8256
|
SENSITIVE: []
|
|
8255
8257
|
end
|
|
8256
8258
|
|
|
@@ -8266,6 +8268,17 @@ module Aws::EC2
|
|
|
8266
8268
|
SENSITIVE: []
|
|
8267
8269
|
end
|
|
8268
8270
|
|
|
8271
|
+
class EbsCardInfo
|
|
8272
|
+
attr_accessor ebs_card_index: ::Integer
|
|
8273
|
+
attr_accessor baseline_bandwidth_in_mbps: ::Integer
|
|
8274
|
+
attr_accessor baseline_throughput_in_m_bps: ::Float
|
|
8275
|
+
attr_accessor baseline_iops: ::Integer
|
|
8276
|
+
attr_accessor maximum_bandwidth_in_mbps: ::Integer
|
|
8277
|
+
attr_accessor maximum_throughput_in_m_bps: ::Float
|
|
8278
|
+
attr_accessor maximum_iops: ::Integer
|
|
8279
|
+
SENSITIVE: []
|
|
8280
|
+
end
|
|
8281
|
+
|
|
8269
8282
|
class EbsInfo
|
|
8270
8283
|
attr_accessor ebs_optimized_support: ("unsupported" | "supported" | "default")
|
|
8271
8284
|
attr_accessor encryption_support: ("unsupported" | "supported")
|
|
@@ -8273,6 +8286,8 @@ module Aws::EC2
|
|
|
8273
8286
|
attr_accessor nvme_support: ("unsupported" | "supported" | "required")
|
|
8274
8287
|
attr_accessor maximum_ebs_attachments: ::Integer
|
|
8275
8288
|
attr_accessor attachment_limit_type: ("shared" | "dedicated")
|
|
8289
|
+
attr_accessor maximum_ebs_cards: ::Integer
|
|
8290
|
+
attr_accessor ebs_cards: ::Array[Types::EbsCardInfo]
|
|
8276
8291
|
SENSITIVE: []
|
|
8277
8292
|
end
|
|
8278
8293
|
|
|
@@ -8284,6 +8299,7 @@ module Aws::EC2
|
|
|
8284
8299
|
attr_accessor associated_resource: ::String
|
|
8285
8300
|
attr_accessor volume_owner_id: ::String
|
|
8286
8301
|
attr_accessor operator: Types::OperatorResponse
|
|
8302
|
+
attr_accessor ebs_card_index: ::Integer
|
|
8287
8303
|
SENSITIVE: []
|
|
8288
8304
|
end
|
|
8289
8305
|
|
|
@@ -12022,6 +12038,7 @@ module Aws::EC2
|
|
|
12022
12038
|
attr_accessor volume_type: ("standard" | "io1" | "io2" | "gp2" | "sc1" | "st1" | "gp3")
|
|
12023
12039
|
attr_accessor throughput: ::Integer
|
|
12024
12040
|
attr_accessor volume_initialization_rate: ::Integer
|
|
12041
|
+
attr_accessor ebs_card_index: ::Integer
|
|
12025
12042
|
SENSITIVE: []
|
|
12026
12043
|
end
|
|
12027
12044
|
|
|
@@ -12035,6 +12052,7 @@ module Aws::EC2
|
|
|
12035
12052
|
attr_accessor volume_type: ("standard" | "io1" | "io2" | "gp2" | "sc1" | "st1" | "gp3")
|
|
12036
12053
|
attr_accessor throughput: ::Integer
|
|
12037
12054
|
attr_accessor volume_initialization_rate: ::Integer
|
|
12055
|
+
attr_accessor ebs_card_index: ::Integer
|
|
12038
12056
|
SENSITIVE: []
|
|
12039
12057
|
end
|
|
12040
12058
|
|
|
@@ -18017,6 +18035,7 @@ module Aws::EC2
|
|
|
18017
18035
|
attr_accessor delete_on_termination: bool
|
|
18018
18036
|
attr_accessor associated_resource: ::String
|
|
18019
18037
|
attr_accessor instance_owning_service: ::String
|
|
18038
|
+
attr_accessor ebs_card_index: ::Integer
|
|
18020
18039
|
attr_accessor volume_id: ::String
|
|
18021
18040
|
attr_accessor instance_id: ::String
|
|
18022
18041
|
attr_accessor device: ::String
|
data/sig/volume.rbs
CHANGED