aws-sdk-ec2 1.591.0 → 1.593.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 +44 -1
- data/lib/aws-sdk-ec2/client_api.rb +32 -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 +112 -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 +22 -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: 2b3328f47b2ac07ef3b7da42aa377e9677e909b8f1630ecff8fc1f742f3ce0a2
|
|
4
|
+
data.tar.gz: 70cfdf8eb92c854f90f00c4db0b31abb27ce1fc267c607d9e63593aee5e3f446
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f16c2e15e81af0ac06c2c97284469aceeba46de3c477b1652f5533a1269efa7406d32d7c4ee6f244992f08f4b4466ec285553ebed1875168a2f3839ef9564fbb
|
|
7
|
+
data.tar.gz: e9d0b195b531193da69502967d04bc7c9f416ef3b7f47e2a65fb584a6c056c4eda72007ab930ba84e31e55f4224c5bc89f9c1fb5e5af986f3caece6edc538c84
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.593.0 (2026-01-22)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Add better support for fractional GPU instances in DescribeInstanceTypes API. The new fields, logicalGpuCount, gpuPartitionSize, and workload array enable better GPU resource selection and filtering for both full and fractional GPU instance types.
|
|
8
|
+
|
|
9
|
+
1.592.0 (2026-01-21)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* 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.
|
|
13
|
+
|
|
4
14
|
1.591.0 (2026-01-16)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.593.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
|
|
@@ -31305,6 +31330,10 @@ module Aws::EC2
|
|
|
31305
31330
|
# resp.instance_types[0].gpu_info.gpus[0].name #=> String
|
|
31306
31331
|
# resp.instance_types[0].gpu_info.gpus[0].manufacturer #=> String
|
|
31307
31332
|
# resp.instance_types[0].gpu_info.gpus[0].count #=> Integer
|
|
31333
|
+
# resp.instance_types[0].gpu_info.gpus[0].logical_gpu_count #=> Integer
|
|
31334
|
+
# resp.instance_types[0].gpu_info.gpus[0].gpu_partition_size #=> Float
|
|
31335
|
+
# resp.instance_types[0].gpu_info.gpus[0].workloads #=> Array
|
|
31336
|
+
# resp.instance_types[0].gpu_info.gpus[0].workloads[0] #=> String
|
|
31308
31337
|
# resp.instance_types[0].gpu_info.gpus[0].memory_info.size_in_mi_b #=> Integer
|
|
31309
31338
|
# resp.instance_types[0].gpu_info.total_gpu_memory_in_mi_b #=> Integer
|
|
31310
31339
|
# resp.instance_types[0].fpga_info.fpgas #=> Array
|
|
@@ -31986,6 +32015,7 @@ module Aws::EC2
|
|
|
31986
32015
|
# resp.reservations[0].instances[0].block_device_mappings[0].ebs.volume_owner_id #=> String
|
|
31987
32016
|
# resp.reservations[0].instances[0].block_device_mappings[0].ebs.operator.managed #=> Boolean
|
|
31988
32017
|
# resp.reservations[0].instances[0].block_device_mappings[0].ebs.operator.principal #=> String
|
|
32018
|
+
# resp.reservations[0].instances[0].block_device_mappings[0].ebs.ebs_card_index #=> Integer
|
|
31989
32019
|
# resp.reservations[0].instances[0].client_token #=> String
|
|
31990
32020
|
# resp.reservations[0].instances[0].ebs_optimized #=> Boolean
|
|
31991
32021
|
# resp.reservations[0].instances[0].ena_support #=> Boolean
|
|
@@ -33491,6 +33521,7 @@ module Aws::EC2
|
|
|
33491
33521
|
# 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
33522
|
# resp.launch_template_versions[0].launch_template_data.block_device_mappings[0].ebs.throughput #=> Integer
|
|
33493
33523
|
# resp.launch_template_versions[0].launch_template_data.block_device_mappings[0].ebs.volume_initialization_rate #=> Integer
|
|
33524
|
+
# resp.launch_template_versions[0].launch_template_data.block_device_mappings[0].ebs.ebs_card_index #=> Integer
|
|
33494
33525
|
# resp.launch_template_versions[0].launch_template_data.block_device_mappings[0].no_device #=> String
|
|
33495
33526
|
# resp.launch_template_versions[0].launch_template_data.network_interfaces #=> Array
|
|
33496
33527
|
# resp.launch_template_versions[0].launch_template_data.network_interfaces[0].associate_carrier_ip_address #=> Boolean
|
|
@@ -40132,6 +40163,7 @@ module Aws::EC2
|
|
|
40132
40163
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].block_device_mappings[0].ebs.encrypted #=> Boolean
|
|
40133
40164
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].block_device_mappings[0].ebs.volume_initialization_rate #=> Integer
|
|
40134
40165
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].block_device_mappings[0].ebs.availability_zone_id #=> String
|
|
40166
|
+
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].block_device_mappings[0].ebs.ebs_card_index #=> Integer
|
|
40135
40167
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].block_device_mappings[0].no_device #=> String
|
|
40136
40168
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].block_device_mappings[0].device_name #=> String
|
|
40137
40169
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].block_device_mappings[0].virtual_name #=> String
|
|
@@ -40605,6 +40637,7 @@ module Aws::EC2
|
|
|
40605
40637
|
# resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].ebs.encrypted #=> Boolean
|
|
40606
40638
|
# resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].ebs.volume_initialization_rate #=> Integer
|
|
40607
40639
|
# resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].ebs.availability_zone_id #=> String
|
|
40640
|
+
# resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].ebs.ebs_card_index #=> Integer
|
|
40608
40641
|
# resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].no_device #=> String
|
|
40609
40642
|
# resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].device_name #=> String
|
|
40610
40643
|
# resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].virtual_name #=> String
|
|
@@ -43799,6 +43832,7 @@ module Aws::EC2
|
|
|
43799
43832
|
# resp.volumes[0].attachments[0].delete_on_termination #=> Boolean
|
|
43800
43833
|
# resp.volumes[0].attachments[0].associated_resource #=> String
|
|
43801
43834
|
# resp.volumes[0].attachments[0].instance_owning_service #=> String
|
|
43835
|
+
# resp.volumes[0].attachments[0].ebs_card_index #=> Integer
|
|
43802
43836
|
# resp.volumes[0].attachments[0].volume_id #=> String
|
|
43803
43837
|
# resp.volumes[0].attachments[0].instance_id #=> String
|
|
43804
43838
|
# resp.volumes[0].attachments[0].device #=> String
|
|
@@ -46085,6 +46119,7 @@ module Aws::EC2
|
|
|
46085
46119
|
# * {Types::VolumeAttachment#delete_on_termination #delete_on_termination} => Boolean
|
|
46086
46120
|
# * {Types::VolumeAttachment#associated_resource #associated_resource} => String
|
|
46087
46121
|
# * {Types::VolumeAttachment#instance_owning_service #instance_owning_service} => String
|
|
46122
|
+
# * {Types::VolumeAttachment#ebs_card_index #ebs_card_index} => Integer
|
|
46088
46123
|
# * {Types::VolumeAttachment#volume_id #volume_id} => String
|
|
46089
46124
|
# * {Types::VolumeAttachment#instance_id #instance_id} => String
|
|
46090
46125
|
# * {Types::VolumeAttachment#device #device} => String
|
|
@@ -46124,6 +46159,7 @@ module Aws::EC2
|
|
|
46124
46159
|
# resp.delete_on_termination #=> Boolean
|
|
46125
46160
|
# resp.associated_resource #=> String
|
|
46126
46161
|
# resp.instance_owning_service #=> String
|
|
46162
|
+
# resp.ebs_card_index #=> Integer
|
|
46127
46163
|
# resp.volume_id #=> String
|
|
46128
46164
|
# resp.instance_id #=> String
|
|
46129
46165
|
# resp.device #=> String
|
|
@@ -52459,6 +52495,7 @@ module Aws::EC2
|
|
|
52459
52495
|
# resp.launch_template_data.block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "io2", "gp2", "sc1", "st1", "gp3"
|
|
52460
52496
|
# resp.launch_template_data.block_device_mappings[0].ebs.throughput #=> Integer
|
|
52461
52497
|
# resp.launch_template_data.block_device_mappings[0].ebs.volume_initialization_rate #=> Integer
|
|
52498
|
+
# resp.launch_template_data.block_device_mappings[0].ebs.ebs_card_index #=> Integer
|
|
52462
52499
|
# resp.launch_template_data.block_device_mappings[0].no_device #=> String
|
|
52463
52500
|
# resp.launch_template_data.network_interfaces #=> Array
|
|
52464
52501
|
# resp.launch_template_data.network_interfaces[0].associate_carrier_ip_address #=> Boolean
|
|
@@ -64755,6 +64792,7 @@ module Aws::EC2
|
|
|
64755
64792
|
# encrypted: false,
|
|
64756
64793
|
# volume_initialization_rate: 1,
|
|
64757
64794
|
# availability_zone_id: "String",
|
|
64795
|
+
# ebs_card_index: 1,
|
|
64758
64796
|
# },
|
|
64759
64797
|
# no_device: "String",
|
|
64760
64798
|
# device_name: "String",
|
|
@@ -66297,6 +66335,7 @@ module Aws::EC2
|
|
|
66297
66335
|
# encrypted: false,
|
|
66298
66336
|
# volume_initialization_rate: 1,
|
|
66299
66337
|
# availability_zone_id: "String",
|
|
66338
|
+
# ebs_card_index: 1,
|
|
66300
66339
|
# },
|
|
66301
66340
|
# no_device: "String",
|
|
66302
66341
|
# device_name: "String",
|
|
@@ -66801,6 +66840,7 @@ module Aws::EC2
|
|
|
66801
66840
|
# encrypted: false,
|
|
66802
66841
|
# volume_initialization_rate: 1,
|
|
66803
66842
|
# availability_zone_id: "String",
|
|
66843
|
+
# ebs_card_index: 1,
|
|
66804
66844
|
# },
|
|
66805
66845
|
# no_device: "String",
|
|
66806
66846
|
# device_name: "String",
|
|
@@ -66933,6 +66973,7 @@ module Aws::EC2
|
|
|
66933
66973
|
# resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].ebs.encrypted #=> Boolean
|
|
66934
66974
|
# resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].ebs.volume_initialization_rate #=> Integer
|
|
66935
66975
|
# resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].ebs.availability_zone_id #=> String
|
|
66976
|
+
# resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].ebs.ebs_card_index #=> Integer
|
|
66936
66977
|
# resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].no_device #=> String
|
|
66937
66978
|
# resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].device_name #=> String
|
|
66938
66979
|
# resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].virtual_name #=> String
|
|
@@ -68551,6 +68592,7 @@ module Aws::EC2
|
|
|
68551
68592
|
# encrypted: false,
|
|
68552
68593
|
# volume_initialization_rate: 1,
|
|
68553
68594
|
# availability_zone_id: "String",
|
|
68595
|
+
# ebs_card_index: 1,
|
|
68554
68596
|
# },
|
|
68555
68597
|
# no_device: "String",
|
|
68556
68598
|
# device_name: "String",
|
|
@@ -68763,6 +68805,7 @@ module Aws::EC2
|
|
|
68763
68805
|
# resp.instances[0].block_device_mappings[0].ebs.volume_owner_id #=> String
|
|
68764
68806
|
# resp.instances[0].block_device_mappings[0].ebs.operator.managed #=> Boolean
|
|
68765
68807
|
# resp.instances[0].block_device_mappings[0].ebs.operator.principal #=> String
|
|
68808
|
+
# resp.instances[0].block_device_mappings[0].ebs.ebs_card_index #=> Integer
|
|
68766
68809
|
# resp.instances[0].client_token #=> String
|
|
68767
68810
|
# resp.instances[0].ebs_optimized #=> Boolean
|
|
68768
68811
|
# resp.instances[0].ena_support #=> Boolean
|
|
@@ -71697,7 +71740,7 @@ module Aws::EC2
|
|
|
71697
71740
|
tracer: tracer
|
|
71698
71741
|
)
|
|
71699
71742
|
context[:gem_name] = 'aws-sdk-ec2'
|
|
71700
|
-
context[:gem_version] = '1.
|
|
71743
|
+
context[:gem_version] = '1.593.0'
|
|
71701
71744
|
Seahorse::Client::Request.new(handlers, context)
|
|
71702
71745
|
end
|
|
71703
71746
|
|
|
@@ -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')
|
|
@@ -1892,6 +1895,7 @@ module Aws::EC2
|
|
|
1892
1895
|
GpuDeviceMemorySize = Shapes::IntegerShape.new(name: 'GpuDeviceMemorySize')
|
|
1893
1896
|
GpuDeviceName = Shapes::StringShape.new(name: 'GpuDeviceName')
|
|
1894
1897
|
GpuInfo = Shapes::StructureShape.new(name: 'GpuInfo')
|
|
1898
|
+
GpuPartitionSize = Shapes::FloatShape.new(name: 'GpuPartitionSize')
|
|
1895
1899
|
GroupBy = Shapes::StringShape.new(name: 'GroupBy')
|
|
1896
1900
|
GroupBySet = Shapes::ListShape.new(name: 'GroupBySet')
|
|
1897
1901
|
GroupIdStringList = Shapes::ListShape.new(name: 'GroupIdStringList')
|
|
@@ -2499,6 +2503,7 @@ module Aws::EC2
|
|
|
2499
2503
|
LockedSnapshotsInfo = Shapes::StructureShape.new(name: 'LockedSnapshotsInfo')
|
|
2500
2504
|
LockedSnapshotsInfoList = Shapes::ListShape.new(name: 'LockedSnapshotsInfoList')
|
|
2501
2505
|
LogDestinationType = Shapes::StringShape.new(name: 'LogDestinationType')
|
|
2506
|
+
LogicalGpuCount = Shapes::IntegerShape.new(name: 'LogicalGpuCount')
|
|
2502
2507
|
Long = Shapes::IntegerShape.new(name: 'Long')
|
|
2503
2508
|
MacHost = Shapes::StructureShape.new(name: 'MacHost')
|
|
2504
2509
|
MacHostList = Shapes::ListShape.new(name: 'MacHostList')
|
|
@@ -2530,6 +2535,7 @@ module Aws::EC2
|
|
|
2530
2535
|
MaximumDaysSinceCreatedValue = Shapes::IntegerShape.new(name: 'MaximumDaysSinceCreatedValue')
|
|
2531
2536
|
MaximumDaysSinceDeprecatedValue = Shapes::IntegerShape.new(name: 'MaximumDaysSinceDeprecatedValue')
|
|
2532
2537
|
MaximumEbsAttachments = Shapes::IntegerShape.new(name: 'MaximumEbsAttachments')
|
|
2538
|
+
MaximumEbsCards = Shapes::IntegerShape.new(name: 'MaximumEbsCards')
|
|
2533
2539
|
MaximumEfaInterfaces = Shapes::IntegerShape.new(name: 'MaximumEfaInterfaces')
|
|
2534
2540
|
MaximumEnaQueueCount = Shapes::IntegerShape.new(name: 'MaximumEnaQueueCount')
|
|
2535
2541
|
MaximumEnaQueueCountPerInterface = Shapes::IntegerShape.new(name: 'MaximumEnaQueueCountPerInterface')
|
|
@@ -3881,6 +3887,8 @@ module Aws::EC2
|
|
|
3881
3887
|
WeekDay = Shapes::StringShape.new(name: 'WeekDay')
|
|
3882
3888
|
WithdrawByoipCidrRequest = Shapes::StructureShape.new(name: 'WithdrawByoipCidrRequest')
|
|
3883
3889
|
WithdrawByoipCidrResult = Shapes::StructureShape.new(name: 'WithdrawByoipCidrResult')
|
|
3890
|
+
Workload = Shapes::StringShape.new(name: 'Workload')
|
|
3891
|
+
WorkloadsList = Shapes::ListShape.new(name: 'WorkloadsList')
|
|
3884
3892
|
ZoneIdStringList = Shapes::ListShape.new(name: 'ZoneIdStringList')
|
|
3885
3893
|
ZoneNameStringList = Shapes::ListShape.new(name: 'ZoneNameStringList')
|
|
3886
3894
|
customerGatewayConfiguration = Shapes::StringShape.new(name: 'customerGatewayConfiguration')
|
|
@@ -4563,6 +4571,7 @@ module Aws::EC2
|
|
|
4563
4571
|
AttachVolumeRequest.add_member(:device, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Device"))
|
|
4564
4572
|
AttachVolumeRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "InstanceId"))
|
|
4565
4573
|
AttachVolumeRequest.add_member(:volume_id, Shapes::ShapeRef.new(shape: VolumeId, required: true, location_name: "VolumeId"))
|
|
4574
|
+
AttachVolumeRequest.add_member(:ebs_card_index, Shapes::ShapeRef.new(shape: BoxedInteger, location_name: "EbsCardIndex"))
|
|
4566
4575
|
AttachVolumeRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
|
|
4567
4576
|
AttachVolumeRequest.struct_class = Types::AttachVolumeRequest
|
|
4568
4577
|
|
|
@@ -10150,6 +10159,7 @@ module Aws::EC2
|
|
|
10150
10159
|
EbsBlockDevice.add_member(:encrypted, Shapes::ShapeRef.new(shape: Boolean, location_name: "encrypted"))
|
|
10151
10160
|
EbsBlockDevice.add_member(:volume_initialization_rate, Shapes::ShapeRef.new(shape: Integer, location_name: "VolumeInitializationRate"))
|
|
10152
10161
|
EbsBlockDevice.add_member(:availability_zone_id, Shapes::ShapeRef.new(shape: String, location_name: "AvailabilityZoneId"))
|
|
10162
|
+
EbsBlockDevice.add_member(:ebs_card_index, Shapes::ShapeRef.new(shape: Integer, location_name: "EbsCardIndex"))
|
|
10153
10163
|
EbsBlockDevice.struct_class = Types::EbsBlockDevice
|
|
10154
10164
|
|
|
10155
10165
|
EbsBlockDeviceResponse.add_member(:encrypted, Shapes::ShapeRef.new(shape: Boolean, location_name: "encrypted"))
|
|
@@ -10162,12 +10172,25 @@ module Aws::EC2
|
|
|
10162
10172
|
EbsBlockDeviceResponse.add_member(:volume_type, Shapes::ShapeRef.new(shape: VolumeType, location_name: "volumeType"))
|
|
10163
10173
|
EbsBlockDeviceResponse.struct_class = Types::EbsBlockDeviceResponse
|
|
10164
10174
|
|
|
10175
|
+
EbsCardInfo.add_member(:ebs_card_index, Shapes::ShapeRef.new(shape: EbsCardIndex, location_name: "ebsCardIndex"))
|
|
10176
|
+
EbsCardInfo.add_member(:baseline_bandwidth_in_mbps, Shapes::ShapeRef.new(shape: BaselineBandwidthInMbps, location_name: "baselineBandwidthInMbps"))
|
|
10177
|
+
EbsCardInfo.add_member(:baseline_throughput_in_m_bps, Shapes::ShapeRef.new(shape: BaselineThroughputInMBps, location_name: "baselineThroughputInMBps"))
|
|
10178
|
+
EbsCardInfo.add_member(:baseline_iops, Shapes::ShapeRef.new(shape: BaselineIops, location_name: "baselineIops"))
|
|
10179
|
+
EbsCardInfo.add_member(:maximum_bandwidth_in_mbps, Shapes::ShapeRef.new(shape: MaximumBandwidthInMbps, location_name: "maximumBandwidthInMbps"))
|
|
10180
|
+
EbsCardInfo.add_member(:maximum_throughput_in_m_bps, Shapes::ShapeRef.new(shape: MaximumThroughputInMBps, location_name: "maximumThroughputInMBps"))
|
|
10181
|
+
EbsCardInfo.add_member(:maximum_iops, Shapes::ShapeRef.new(shape: MaximumIops, location_name: "maximumIops"))
|
|
10182
|
+
EbsCardInfo.struct_class = Types::EbsCardInfo
|
|
10183
|
+
|
|
10184
|
+
EbsCardInfoList.member = Shapes::ShapeRef.new(shape: EbsCardInfo, location_name: "item")
|
|
10185
|
+
|
|
10165
10186
|
EbsInfo.add_member(:ebs_optimized_support, Shapes::ShapeRef.new(shape: EbsOptimizedSupport, location_name: "ebsOptimizedSupport"))
|
|
10166
10187
|
EbsInfo.add_member(:encryption_support, Shapes::ShapeRef.new(shape: EbsEncryptionSupport, location_name: "encryptionSupport"))
|
|
10167
10188
|
EbsInfo.add_member(:ebs_optimized_info, Shapes::ShapeRef.new(shape: EbsOptimizedInfo, location_name: "ebsOptimizedInfo"))
|
|
10168
10189
|
EbsInfo.add_member(:nvme_support, Shapes::ShapeRef.new(shape: EbsNvmeSupport, location_name: "nvmeSupport"))
|
|
10169
10190
|
EbsInfo.add_member(:maximum_ebs_attachments, Shapes::ShapeRef.new(shape: MaximumEbsAttachments, location_name: "maximumEbsAttachments"))
|
|
10170
10191
|
EbsInfo.add_member(:attachment_limit_type, Shapes::ShapeRef.new(shape: AttachmentLimitType, location_name: "attachmentLimitType"))
|
|
10192
|
+
EbsInfo.add_member(:maximum_ebs_cards, Shapes::ShapeRef.new(shape: MaximumEbsCards, location_name: "maximumEbsCards"))
|
|
10193
|
+
EbsInfo.add_member(:ebs_cards, Shapes::ShapeRef.new(shape: EbsCardInfoList, location_name: "ebsCardSet"))
|
|
10171
10194
|
EbsInfo.struct_class = Types::EbsInfo
|
|
10172
10195
|
|
|
10173
10196
|
EbsInstanceBlockDevice.add_member(:attach_time, Shapes::ShapeRef.new(shape: DateTime, location_name: "attachTime"))
|
|
@@ -10177,6 +10200,7 @@ module Aws::EC2
|
|
|
10177
10200
|
EbsInstanceBlockDevice.add_member(:associated_resource, Shapes::ShapeRef.new(shape: String, location_name: "associatedResource"))
|
|
10178
10201
|
EbsInstanceBlockDevice.add_member(:volume_owner_id, Shapes::ShapeRef.new(shape: String, location_name: "volumeOwnerId"))
|
|
10179
10202
|
EbsInstanceBlockDevice.add_member(:operator, Shapes::ShapeRef.new(shape: OperatorResponse, location_name: "operator"))
|
|
10203
|
+
EbsInstanceBlockDevice.add_member(:ebs_card_index, Shapes::ShapeRef.new(shape: Integer, location_name: "ebsCardIndex"))
|
|
10180
10204
|
EbsInstanceBlockDevice.struct_class = Types::EbsInstanceBlockDevice
|
|
10181
10205
|
|
|
10182
10206
|
EbsInstanceBlockDeviceSpecification.add_member(:volume_id, Shapes::ShapeRef.new(shape: VolumeId, location_name: "volumeId"))
|
|
@@ -11687,6 +11711,9 @@ module Aws::EC2
|
|
|
11687
11711
|
GpuDeviceInfo.add_member(:name, Shapes::ShapeRef.new(shape: GpuDeviceName, location_name: "name"))
|
|
11688
11712
|
GpuDeviceInfo.add_member(:manufacturer, Shapes::ShapeRef.new(shape: GpuDeviceManufacturerName, location_name: "manufacturer"))
|
|
11689
11713
|
GpuDeviceInfo.add_member(:count, Shapes::ShapeRef.new(shape: GpuDeviceCount, location_name: "count"))
|
|
11714
|
+
GpuDeviceInfo.add_member(:logical_gpu_count, Shapes::ShapeRef.new(shape: LogicalGpuCount, location_name: "logicalGpuCount"))
|
|
11715
|
+
GpuDeviceInfo.add_member(:gpu_partition_size, Shapes::ShapeRef.new(shape: GpuPartitionSize, location_name: "gpuPartitionSize"))
|
|
11716
|
+
GpuDeviceInfo.add_member(:workloads, Shapes::ShapeRef.new(shape: WorkloadsList, location_name: "workloadSet"))
|
|
11690
11717
|
GpuDeviceInfo.add_member(:memory_info, Shapes::ShapeRef.new(shape: GpuDeviceMemoryInfo, location_name: "memoryInfo"))
|
|
11691
11718
|
GpuDeviceInfo.struct_class = Types::GpuDeviceInfo
|
|
11692
11719
|
|
|
@@ -13413,6 +13440,7 @@ module Aws::EC2
|
|
|
13413
13440
|
LaunchTemplateEbsBlockDevice.add_member(:volume_type, Shapes::ShapeRef.new(shape: VolumeType, location_name: "volumeType"))
|
|
13414
13441
|
LaunchTemplateEbsBlockDevice.add_member(:throughput, Shapes::ShapeRef.new(shape: Integer, location_name: "throughput"))
|
|
13415
13442
|
LaunchTemplateEbsBlockDevice.add_member(:volume_initialization_rate, Shapes::ShapeRef.new(shape: Integer, location_name: "volumeInitializationRate"))
|
|
13443
|
+
LaunchTemplateEbsBlockDevice.add_member(:ebs_card_index, Shapes::ShapeRef.new(shape: Integer, location_name: "ebsCardIndex"))
|
|
13416
13444
|
LaunchTemplateEbsBlockDevice.struct_class = Types::LaunchTemplateEbsBlockDevice
|
|
13417
13445
|
|
|
13418
13446
|
LaunchTemplateEbsBlockDeviceRequest.add_member(:encrypted, Shapes::ShapeRef.new(shape: Boolean, location_name: "Encrypted"))
|
|
@@ -13424,6 +13452,7 @@ module Aws::EC2
|
|
|
13424
13452
|
LaunchTemplateEbsBlockDeviceRequest.add_member(:volume_type, Shapes::ShapeRef.new(shape: VolumeType, location_name: "VolumeType"))
|
|
13425
13453
|
LaunchTemplateEbsBlockDeviceRequest.add_member(:throughput, Shapes::ShapeRef.new(shape: Integer, location_name: "Throughput"))
|
|
13426
13454
|
LaunchTemplateEbsBlockDeviceRequest.add_member(:volume_initialization_rate, Shapes::ShapeRef.new(shape: Integer, location_name: "VolumeInitializationRate"))
|
|
13455
|
+
LaunchTemplateEbsBlockDeviceRequest.add_member(:ebs_card_index, Shapes::ShapeRef.new(shape: Integer, location_name: "EbsCardIndex"))
|
|
13427
13456
|
LaunchTemplateEbsBlockDeviceRequest.struct_class = Types::LaunchTemplateEbsBlockDeviceRequest
|
|
13428
13457
|
|
|
13429
13458
|
LaunchTemplateElasticInferenceAccelerator.add_member(:type, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Type"))
|
|
@@ -18674,6 +18703,7 @@ module Aws::EC2
|
|
|
18674
18703
|
VolumeAttachment.add_member(:delete_on_termination, Shapes::ShapeRef.new(shape: Boolean, location_name: "deleteOnTermination"))
|
|
18675
18704
|
VolumeAttachment.add_member(:associated_resource, Shapes::ShapeRef.new(shape: String, location_name: "associatedResource"))
|
|
18676
18705
|
VolumeAttachment.add_member(:instance_owning_service, Shapes::ShapeRef.new(shape: String, location_name: "instanceOwningService"))
|
|
18706
|
+
VolumeAttachment.add_member(:ebs_card_index, Shapes::ShapeRef.new(shape: Integer, location_name: "ebsCardIndex"))
|
|
18677
18707
|
VolumeAttachment.add_member(:volume_id, Shapes::ShapeRef.new(shape: String, location_name: "volumeId"))
|
|
18678
18708
|
VolumeAttachment.add_member(:instance_id, Shapes::ShapeRef.new(shape: String, location_name: "instanceId"))
|
|
18679
18709
|
VolumeAttachment.add_member(:device, Shapes::ShapeRef.new(shape: String, location_name: "device"))
|
|
@@ -19129,6 +19159,8 @@ module Aws::EC2
|
|
|
19129
19159
|
WithdrawByoipCidrResult.add_member(:byoip_cidr, Shapes::ShapeRef.new(shape: ByoipCidr, location_name: "byoipCidr"))
|
|
19130
19160
|
WithdrawByoipCidrResult.struct_class = Types::WithdrawByoipCidrResult
|
|
19131
19161
|
|
|
19162
|
+
WorkloadsList.member = Shapes::ShapeRef.new(shape: Workload, location_name: "item")
|
|
19163
|
+
|
|
19132
19164
|
ZoneIdStringList.member = Shapes::ShapeRef.new(shape: String, location_name: "ZoneId")
|
|
19133
19165
|
|
|
19134
19166
|
ZoneNameStringList.member = Shapes::ShapeRef.new(shape: String, location_name: "ZoneName")
|
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
|
|
@@ -46149,6 +46222,19 @@ module Aws::EC2
|
|
|
46149
46222
|
# The number of GPUs for the instance type.
|
|
46150
46223
|
# @return [Integer]
|
|
46151
46224
|
#
|
|
46225
|
+
# @!attribute [rw] logical_gpu_count
|
|
46226
|
+
# Total number of GPU devices of this type.
|
|
46227
|
+
# @return [Integer]
|
|
46228
|
+
#
|
|
46229
|
+
# @!attribute [rw] gpu_partition_size
|
|
46230
|
+
# The size of each GPU as a fraction of a full GPU, between 0
|
|
46231
|
+
# (excluded) and 1 (included).
|
|
46232
|
+
# @return [Float]
|
|
46233
|
+
#
|
|
46234
|
+
# @!attribute [rw] workloads
|
|
46235
|
+
# A list of workload types this GPU supports.
|
|
46236
|
+
# @return [Array<String>]
|
|
46237
|
+
#
|
|
46152
46238
|
# @!attribute [rw] memory_info
|
|
46153
46239
|
# Describes the memory available to the GPU accelerator.
|
|
46154
46240
|
# @return [Types::GpuDeviceMemoryInfo]
|
|
@@ -46159,6 +46245,9 @@ module Aws::EC2
|
|
|
46159
46245
|
:name,
|
|
46160
46246
|
:manufacturer,
|
|
46161
46247
|
:count,
|
|
46248
|
+
:logical_gpu_count,
|
|
46249
|
+
:gpu_partition_size,
|
|
46250
|
+
:workloads,
|
|
46162
46251
|
:memory_info)
|
|
46163
46252
|
SENSITIVE = []
|
|
46164
46253
|
include Aws::Structure
|
|
@@ -55883,6 +55972,11 @@ module Aws::EC2
|
|
|
55883
55972
|
# volume initialization rate was specified, the value is `null`.
|
|
55884
55973
|
# @return [Integer]
|
|
55885
55974
|
#
|
|
55975
|
+
# @!attribute [rw] ebs_card_index
|
|
55976
|
+
# The index of the EBS card. Some instance types support multiple EBS
|
|
55977
|
+
# cards. The default EBS card index is 0.
|
|
55978
|
+
# @return [Integer]
|
|
55979
|
+
#
|
|
55886
55980
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchTemplateEbsBlockDevice AWS API Documentation
|
|
55887
55981
|
#
|
|
55888
55982
|
class LaunchTemplateEbsBlockDevice < Struct.new(
|
|
@@ -55894,7 +55988,8 @@ module Aws::EC2
|
|
|
55894
55988
|
:volume_size,
|
|
55895
55989
|
:volume_type,
|
|
55896
55990
|
:throughput,
|
|
55897
|
-
:volume_initialization_rate
|
|
55991
|
+
:volume_initialization_rate,
|
|
55992
|
+
:ebs_card_index)
|
|
55898
55993
|
SENSITIVE = []
|
|
55899
55994
|
include Aws::Structure
|
|
55900
55995
|
end
|
|
@@ -56017,6 +56112,11 @@ module Aws::EC2
|
|
|
56017
56112
|
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/initalize-volume.html
|
|
56018
56113
|
# @return [Integer]
|
|
56019
56114
|
#
|
|
56115
|
+
# @!attribute [rw] ebs_card_index
|
|
56116
|
+
# The index of the EBS card. Some instance types support multiple EBS
|
|
56117
|
+
# cards. The default EBS card index is 0.
|
|
56118
|
+
# @return [Integer]
|
|
56119
|
+
#
|
|
56020
56120
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchTemplateEbsBlockDeviceRequest AWS API Documentation
|
|
56021
56121
|
#
|
|
56022
56122
|
class LaunchTemplateEbsBlockDeviceRequest < Struct.new(
|
|
@@ -56028,7 +56128,8 @@ module Aws::EC2
|
|
|
56028
56128
|
:volume_size,
|
|
56029
56129
|
:volume_type,
|
|
56030
56130
|
:throughput,
|
|
56031
|
-
:volume_initialization_rate
|
|
56131
|
+
:volume_initialization_rate,
|
|
56132
|
+
:ebs_card_index)
|
|
56032
56133
|
SENSITIVE = []
|
|
56033
56134
|
include Aws::Structure
|
|
56034
56135
|
end
|
|
@@ -83461,6 +83562,11 @@ module Aws::EC2
|
|
|
83461
83562
|
# Amazon Web Services-managed resources.
|
|
83462
83563
|
# @return [String]
|
|
83463
83564
|
#
|
|
83565
|
+
# @!attribute [rw] ebs_card_index
|
|
83566
|
+
# The index of the EBS card. Some instance types support multiple EBS
|
|
83567
|
+
# cards. The default EBS card index is 0.
|
|
83568
|
+
# @return [Integer]
|
|
83569
|
+
#
|
|
83464
83570
|
# @!attribute [rw] volume_id
|
|
83465
83571
|
# The ID of the volume.
|
|
83466
83572
|
# @return [String]
|
|
@@ -83493,6 +83599,7 @@ module Aws::EC2
|
|
|
83493
83599
|
:delete_on_termination,
|
|
83494
83600
|
:associated_resource,
|
|
83495
83601
|
:instance_owning_service,
|
|
83602
|
+
:ebs_card_index,
|
|
83496
83603
|
:volume_id,
|
|
83497
83604
|
:instance_id,
|
|
83498
83605
|
: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
|
|
|
@@ -10226,6 +10242,9 @@ module Aws::EC2
|
|
|
10226
10242
|
attr_accessor name: ::String
|
|
10227
10243
|
attr_accessor manufacturer: ::String
|
|
10228
10244
|
attr_accessor count: ::Integer
|
|
10245
|
+
attr_accessor logical_gpu_count: ::Integer
|
|
10246
|
+
attr_accessor gpu_partition_size: ::Float
|
|
10247
|
+
attr_accessor workloads: ::Array[::String]
|
|
10229
10248
|
attr_accessor memory_info: Types::GpuDeviceMemoryInfo
|
|
10230
10249
|
SENSITIVE: []
|
|
10231
10250
|
end
|
|
@@ -12022,6 +12041,7 @@ module Aws::EC2
|
|
|
12022
12041
|
attr_accessor volume_type: ("standard" | "io1" | "io2" | "gp2" | "sc1" | "st1" | "gp3")
|
|
12023
12042
|
attr_accessor throughput: ::Integer
|
|
12024
12043
|
attr_accessor volume_initialization_rate: ::Integer
|
|
12044
|
+
attr_accessor ebs_card_index: ::Integer
|
|
12025
12045
|
SENSITIVE: []
|
|
12026
12046
|
end
|
|
12027
12047
|
|
|
@@ -12035,6 +12055,7 @@ module Aws::EC2
|
|
|
12035
12055
|
attr_accessor volume_type: ("standard" | "io1" | "io2" | "gp2" | "sc1" | "st1" | "gp3")
|
|
12036
12056
|
attr_accessor throughput: ::Integer
|
|
12037
12057
|
attr_accessor volume_initialization_rate: ::Integer
|
|
12058
|
+
attr_accessor ebs_card_index: ::Integer
|
|
12038
12059
|
SENSITIVE: []
|
|
12039
12060
|
end
|
|
12040
12061
|
|
|
@@ -18017,6 +18038,7 @@ module Aws::EC2
|
|
|
18017
18038
|
attr_accessor delete_on_termination: bool
|
|
18018
18039
|
attr_accessor associated_resource: ::String
|
|
18019
18040
|
attr_accessor instance_owning_service: ::String
|
|
18041
|
+
attr_accessor ebs_card_index: ::Integer
|
|
18020
18042
|
attr_accessor volume_id: ::String
|
|
18021
18043
|
attr_accessor instance_id: ::String
|
|
18022
18044
|
attr_accessor device: ::String
|
data/sig/volume.rbs
CHANGED