aws-sdk-ec2 1.519.0 → 1.521.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 +97 -5
- data/lib/aws-sdk-ec2/client_api.rb +9 -1
- data/lib/aws-sdk-ec2/instance.rb +1 -0
- data/lib/aws-sdk-ec2/resource.rb +34 -0
- data/lib/aws-sdk-ec2/subnet.rb +1 -0
- data/lib/aws-sdk-ec2/types.rb +180 -7
- data/lib/aws-sdk-ec2/volume.rb +9 -0
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +19 -8
- data/sig/instance.rbs +2 -1
- data/sig/resource.rbs +5 -2
- data/sig/subnet.rbs +2 -1
- data/sig/types.rbs +8 -0
- data/sig/volume.rbs +3 -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: 11053f76d582c59c3d4f6b2e8842558993fab0fc1c61fadd62660daca15c8e64
|
4
|
+
data.tar.gz: 03e92ffc170aa1b2dc8cca10e2acaa6deaaf48cc9ad412e8cfc7a9aebf60ecf8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f9c807c4106c69e9f9c4b93d7f2731175c812769dc4ab1f66613e66ce6bfcfd0fe199b93d09af4615be8e963a0cc9e8451b025fcbd56214c79dbe06ffe528375
|
7
|
+
data.tar.gz: eb979cc0e8f0520d32a60b5842d53ebf20992829e011a1ed8eec3b03dd029b314802eb455edf0e6fb6be2842a04cf74404c57dcfc547c6eb8ddb8c6859546529
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.521.0 (2025-05-07)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds API support for Path Component Exclusion (Filter Out ARN) for Reachability Analyzer
|
8
|
+
|
9
|
+
1.520.0 (2025-05-06)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds support for Amazon EBS Provisioned Rate for Volume Initialization, which lets you specify a volume initialization rate to ensure that your EBS volumes are initialized in a predictable amount of time.
|
13
|
+
|
4
14
|
1.519.0 (2025-05-05)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.521.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -6107,7 +6107,7 @@ module Aws::EC2
|
|
6107
6107
|
# Indicates whether the client VPN session is disconnected after the
|
6108
6108
|
# maximum timeout specified in `SessionTimeoutHours` is reached. If
|
6109
6109
|
# `true`, users are prompted to reconnect client VPN. If `false`, client
|
6110
|
-
# VPN attempts to reconnect automatically. The default value is `
|
6110
|
+
# VPN attempts to reconnect automatically. The default value is `true`.
|
6111
6111
|
#
|
6112
6112
|
# @return [Types::CreateClientVpnEndpointResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6113
6113
|
#
|
@@ -7165,7 +7165,7 @@ module Aws::EC2
|
|
7165
7165
|
# },
|
7166
7166
|
# },
|
7167
7167
|
# },
|
7168
|
-
# image_id: "
|
7168
|
+
# image_id: "String",
|
7169
7169
|
# },
|
7170
7170
|
# ],
|
7171
7171
|
# },
|
@@ -7796,6 +7796,7 @@ module Aws::EC2
|
|
7796
7796
|
# throughput: 1,
|
7797
7797
|
# outpost_arn: "String",
|
7798
7798
|
# encrypted: false,
|
7799
|
+
# volume_initialization_rate: 1,
|
7799
7800
|
# },
|
7800
7801
|
# no_device: "String",
|
7801
7802
|
# device_name: "String",
|
@@ -9099,6 +9100,7 @@ module Aws::EC2
|
|
9099
9100
|
# volume_size: 1,
|
9100
9101
|
# volume_type: "standard", # accepts standard, io1, io2, gp2, sc1, st1, gp3
|
9101
9102
|
# throughput: 1,
|
9103
|
+
# volume_initialization_rate: 1,
|
9102
9104
|
# },
|
9103
9105
|
# no_device: "String",
|
9104
9106
|
# },
|
@@ -9526,6 +9528,7 @@ module Aws::EC2
|
|
9526
9528
|
# volume_size: 1,
|
9527
9529
|
# volume_type: "standard", # accepts standard, io1, io2, gp2, sc1, st1, gp3
|
9528
9530
|
# throughput: 1,
|
9531
|
+
# volume_initialization_rate: 1,
|
9529
9532
|
# },
|
9530
9533
|
# no_device: "String",
|
9531
9534
|
# },
|
@@ -9775,6 +9778,7 @@ module Aws::EC2
|
|
9775
9778
|
# resp.launch_template_version.launch_template_data.block_device_mappings[0].ebs.volume_size #=> Integer
|
9776
9779
|
# resp.launch_template_version.launch_template_data.block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "io2", "gp2", "sc1", "st1", "gp3"
|
9777
9780
|
# resp.launch_template_version.launch_template_data.block_device_mappings[0].ebs.throughput #=> Integer
|
9781
|
+
# resp.launch_template_version.launch_template_data.block_device_mappings[0].ebs.volume_initialization_rate #=> Integer
|
9778
9782
|
# resp.launch_template_version.launch_template_data.block_device_mappings[0].no_device #=> String
|
9779
9783
|
# resp.launch_template_version.launch_template_data.network_interfaces #=> Array
|
9780
9784
|
# resp.launch_template_version.launch_template_data.network_interfaces[0].associate_carrier_ip_address #=> Boolean
|
@@ -11941,6 +11945,37 @@ module Aws::EC2
|
|
11941
11945
|
# original root volume after the replacement task completes, you must
|
11942
11946
|
# manually delete it when you no longer need it.
|
11943
11947
|
#
|
11948
|
+
# @option params [Integer] :volume_initialization_rate
|
11949
|
+
# Specifies the Amazon EBS Provisioned Rate for Volume Initialization
|
11950
|
+
# (volume initialization rate), in MiB/s, at which to download the
|
11951
|
+
# snapshot blocks from Amazon S3 to the replacement root volume. This is
|
11952
|
+
# also known as *volume initialization*. Specifying a volume
|
11953
|
+
# initialization rate ensures that the volume is initialized at a
|
11954
|
+
# predictable and consistent rate after creation.
|
11955
|
+
#
|
11956
|
+
# Omit this parameter if:
|
11957
|
+
#
|
11958
|
+
# * You want to create the volume using fast snapshot restore. You must
|
11959
|
+
# specify a snapshot that is enabled for fast snapshot restore. In
|
11960
|
+
# this case, the volume is fully initialized at creation.
|
11961
|
+
#
|
11962
|
+
# <note markdown="1"> If you specify a snapshot that is enabled for fast snapshot restore
|
11963
|
+
# and a volume initialization rate, the volume will be initialized at
|
11964
|
+
# the specified rate instead of fast snapshot restore.
|
11965
|
+
#
|
11966
|
+
# </note>
|
11967
|
+
#
|
11968
|
+
# * You want to create a volume that is initialized at the default rate.
|
11969
|
+
#
|
11970
|
+
# For more information, see [ Initialize Amazon EBS volumes][1] in the
|
11971
|
+
# *Amazon EC2 User Guide*.
|
11972
|
+
#
|
11973
|
+
# Valid range: 100 - 300 MiB/s
|
11974
|
+
#
|
11975
|
+
#
|
11976
|
+
#
|
11977
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/initalize-volume.html
|
11978
|
+
#
|
11944
11979
|
# @return [Types::CreateReplaceRootVolumeTaskResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
11945
11980
|
#
|
11946
11981
|
# * {Types::CreateReplaceRootVolumeTaskResult#replace_root_volume_task #replace_root_volume_task} => Types::ReplaceRootVolumeTask
|
@@ -11965,6 +12000,7 @@ module Aws::EC2
|
|
11965
12000
|
# ],
|
11966
12001
|
# image_id: "ImageId",
|
11967
12002
|
# delete_replaced_root_volume: false,
|
12003
|
+
# volume_initialization_rate: 1,
|
11968
12004
|
# })
|
11969
12005
|
#
|
11970
12006
|
# @example Response structure
|
@@ -15756,6 +15792,38 @@ module Aws::EC2
|
|
15756
15792
|
#
|
15757
15793
|
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
15758
15794
|
#
|
15795
|
+
# @option params [Integer] :volume_initialization_rate
|
15796
|
+
# Specifies the Amazon EBS Provisioned Rate for Volume Initialization
|
15797
|
+
# (volume initialization rate), in MiB/s, at which to download the
|
15798
|
+
# snapshot blocks from Amazon S3 to the volume. This is also known as
|
15799
|
+
# *volume initialization*. Specifying a volume initialization rate
|
15800
|
+
# ensures that the volume is initialized at a predictable and consistent
|
15801
|
+
# rate after creation.
|
15802
|
+
#
|
15803
|
+
# This parameter is supported only for volumes created from snapshots.
|
15804
|
+
# Omit this parameter if:
|
15805
|
+
#
|
15806
|
+
# * You want to create the volume using fast snapshot restore. You must
|
15807
|
+
# specify a snapshot that is enabled for fast snapshot restore. In
|
15808
|
+
# this case, the volume is fully initialized at creation.
|
15809
|
+
#
|
15810
|
+
# <note markdown="1"> If you specify a snapshot that is enabled for fast snapshot restore
|
15811
|
+
# and a volume initialization rate, the volume will be initialized at
|
15812
|
+
# the specified rate instead of fast snapshot restore.
|
15813
|
+
#
|
15814
|
+
# </note>
|
15815
|
+
#
|
15816
|
+
# * You want to create a volume that is initialized at the default rate.
|
15817
|
+
#
|
15818
|
+
# For more information, see [ Initialize Amazon EBS volumes][1] in the
|
15819
|
+
# *Amazon EC2 User Guide*.
|
15820
|
+
#
|
15821
|
+
# Valid range: 100 - 300 MiB/s
|
15822
|
+
#
|
15823
|
+
#
|
15824
|
+
#
|
15825
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/initalize-volume.html
|
15826
|
+
#
|
15759
15827
|
# @option params [Types::OperatorRequest] :operator
|
15760
15828
|
# Reserved for internal use.
|
15761
15829
|
#
|
@@ -15776,6 +15844,7 @@ module Aws::EC2
|
|
15776
15844
|
# * {Types::Volume#throughput #throughput} => Integer
|
15777
15845
|
# * {Types::Volume#sse_type #sse_type} => String
|
15778
15846
|
# * {Types::Volume#operator #operator} => Types::OperatorResponse
|
15847
|
+
# * {Types::Volume#volume_initialization_rate #volume_initialization_rate} => Integer
|
15779
15848
|
# * {Types::Volume#volume_id #volume_id} => String
|
15780
15849
|
# * {Types::Volume#size #size} => Integer
|
15781
15850
|
# * {Types::Volume#snapshot_id #snapshot_id} => String
|
@@ -15863,6 +15932,7 @@ module Aws::EC2
|
|
15863
15932
|
# multi_attach_enabled: false,
|
15864
15933
|
# throughput: 1,
|
15865
15934
|
# client_token: "String",
|
15935
|
+
# volume_initialization_rate: 1,
|
15866
15936
|
# operator: {
|
15867
15937
|
# principal: "String",
|
15868
15938
|
# },
|
@@ -15883,6 +15953,7 @@ module Aws::EC2
|
|
15883
15953
|
# resp.sse_type #=> String, one of "sse-ebs", "sse-kms", "none"
|
15884
15954
|
# resp.operator.managed #=> Boolean
|
15885
15955
|
# resp.operator.principal #=> String
|
15956
|
+
# resp.volume_initialization_rate #=> Integer
|
15886
15957
|
# resp.volume_id #=> String
|
15887
15958
|
# resp.size #=> Integer
|
15888
15959
|
# resp.snapshot_id #=> String
|
@@ -25980,6 +26051,7 @@ module Aws::EC2
|
|
25980
26051
|
# resp.block_device_mappings[0].ebs.throughput #=> Integer
|
25981
26052
|
# resp.block_device_mappings[0].ebs.outpost_arn #=> String
|
25982
26053
|
# resp.block_device_mappings[0].ebs.encrypted #=> Boolean
|
26054
|
+
# resp.block_device_mappings[0].ebs.volume_initialization_rate #=> Integer
|
25983
26055
|
# resp.block_device_mappings[0].no_device #=> String
|
25984
26056
|
# resp.block_device_mappings[0].device_name #=> String
|
25985
26057
|
# resp.block_device_mappings[0].virtual_name #=> String
|
@@ -26285,6 +26357,7 @@ module Aws::EC2
|
|
26285
26357
|
# resp.images[0].block_device_mappings[0].ebs.throughput #=> Integer
|
26286
26358
|
# resp.images[0].block_device_mappings[0].ebs.outpost_arn #=> String
|
26287
26359
|
# resp.images[0].block_device_mappings[0].ebs.encrypted #=> Boolean
|
26360
|
+
# resp.images[0].block_device_mappings[0].ebs.volume_initialization_rate #=> Integer
|
26288
26361
|
# resp.images[0].block_device_mappings[0].no_device #=> String
|
26289
26362
|
# resp.images[0].block_device_mappings[0].device_name #=> String
|
26290
26363
|
# resp.images[0].block_device_mappings[0].virtual_name #=> String
|
@@ -29875,6 +29948,7 @@ module Aws::EC2
|
|
29875
29948
|
# resp.launch_template_versions[0].launch_template_data.block_device_mappings[0].ebs.volume_size #=> Integer
|
29876
29949
|
# 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"
|
29877
29950
|
# resp.launch_template_versions[0].launch_template_data.block_device_mappings[0].ebs.throughput #=> Integer
|
29951
|
+
# resp.launch_template_versions[0].launch_template_data.block_device_mappings[0].ebs.volume_initialization_rate #=> Integer
|
29878
29952
|
# resp.launch_template_versions[0].launch_template_data.block_device_mappings[0].no_device #=> String
|
29879
29953
|
# resp.launch_template_versions[0].launch_template_data.network_interfaces #=> Array
|
29880
29954
|
# resp.launch_template_versions[0].launch_template_data.network_interfaces[0].associate_carrier_ip_address #=> Boolean
|
@@ -31535,6 +31609,8 @@ module Aws::EC2
|
|
31535
31609
|
# resp.network_insights_analyses[0].additional_accounts[0] #=> String
|
31536
31610
|
# resp.network_insights_analyses[0].filter_in_arns #=> Array
|
31537
31611
|
# resp.network_insights_analyses[0].filter_in_arns[0] #=> String
|
31612
|
+
# resp.network_insights_analyses[0].filter_out_arns #=> Array
|
31613
|
+
# resp.network_insights_analyses[0].filter_out_arns[0] #=> String
|
31538
31614
|
# resp.network_insights_analyses[0].start_date #=> Time
|
31539
31615
|
# resp.network_insights_analyses[0].status #=> String, one of "running", "succeeded", "failed"
|
31540
31616
|
# resp.network_insights_analyses[0].status_message #=> String
|
@@ -36350,6 +36426,7 @@ module Aws::EC2
|
|
36350
36426
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].block_device_mappings[0].ebs.throughput #=> Integer
|
36351
36427
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].block_device_mappings[0].ebs.outpost_arn #=> String
|
36352
36428
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].block_device_mappings[0].ebs.encrypted #=> Boolean
|
36429
|
+
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].block_device_mappings[0].ebs.volume_initialization_rate #=> Integer
|
36353
36430
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].block_device_mappings[0].no_device #=> String
|
36354
36431
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].block_device_mappings[0].device_name #=> String
|
36355
36432
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].block_device_mappings[0].virtual_name #=> String
|
@@ -36812,6 +36889,7 @@ module Aws::EC2
|
|
36812
36889
|
# resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].ebs.throughput #=> Integer
|
36813
36890
|
# resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].ebs.outpost_arn #=> String
|
36814
36891
|
# resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].ebs.encrypted #=> Boolean
|
36892
|
+
# resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].ebs.volume_initialization_rate #=> Integer
|
36815
36893
|
# resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].no_device #=> String
|
36816
36894
|
# resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].device_name #=> String
|
36817
36895
|
# resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].virtual_name #=> String
|
@@ -39898,6 +39976,7 @@ module Aws::EC2
|
|
39898
39976
|
# resp.volumes[0].sse_type #=> String, one of "sse-ebs", "sse-kms", "none"
|
39899
39977
|
# resp.volumes[0].operator.managed #=> Boolean
|
39900
39978
|
# resp.volumes[0].operator.principal #=> String
|
39979
|
+
# resp.volumes[0].volume_initialization_rate #=> Integer
|
39901
39980
|
# resp.volumes[0].volume_id #=> String
|
39902
39981
|
# resp.volumes[0].size #=> Integer
|
39903
39982
|
# resp.volumes[0].snapshot_id #=> String
|
@@ -47210,6 +47289,7 @@ module Aws::EC2
|
|
47210
47289
|
# resp.launch_template_data.block_device_mappings[0].ebs.volume_size #=> Integer
|
47211
47290
|
# resp.launch_template_data.block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "io2", "gp2", "sc1", "st1", "gp3"
|
47212
47291
|
# resp.launch_template_data.block_device_mappings[0].ebs.throughput #=> Integer
|
47292
|
+
# resp.launch_template_data.block_device_mappings[0].ebs.volume_initialization_rate #=> Integer
|
47213
47293
|
# resp.launch_template_data.block_device_mappings[0].no_device #=> String
|
47214
47294
|
# resp.launch_template_data.network_interfaces #=> Array
|
47215
47295
|
# resp.launch_template_data.network_interfaces[0].associate_carrier_ip_address #=> Boolean
|
@@ -50986,7 +51066,7 @@ module Aws::EC2
|
|
50986
51066
|
# Indicates whether the client VPN session is disconnected after the
|
50987
51067
|
# maximum timeout specified in `sessionTimeoutHours` is reached. If
|
50988
51068
|
# `true`, users are prompted to reconnect client VPN. If `false`, client
|
50989
|
-
# VPN attempts to reconnect automatically. The default value is `
|
51069
|
+
# VPN attempts to reconnect automatically. The default value is `true`.
|
50990
51070
|
#
|
50991
51071
|
# @return [Types::ModifyClientVpnEndpointResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
50992
51072
|
#
|
@@ -51351,7 +51431,7 @@ module Aws::EC2
|
|
51351
51431
|
# },
|
51352
51432
|
# },
|
51353
51433
|
# },
|
51354
|
-
# image_id: "
|
51434
|
+
# image_id: "String",
|
51355
51435
|
# },
|
51356
51436
|
# ],
|
51357
51437
|
# },
|
@@ -58584,6 +58664,7 @@ module Aws::EC2
|
|
58584
58664
|
# throughput: 1,
|
58585
58665
|
# outpost_arn: "String",
|
58586
58666
|
# encrypted: false,
|
58667
|
+
# volume_initialization_rate: 1,
|
58587
58668
|
# },
|
58588
58669
|
# no_device: "String",
|
58589
58670
|
# device_name: "String",
|
@@ -60107,6 +60188,7 @@ module Aws::EC2
|
|
60107
60188
|
# throughput: 1,
|
60108
60189
|
# outpost_arn: "String",
|
60109
60190
|
# encrypted: false,
|
60191
|
+
# volume_initialization_rate: 1,
|
60110
60192
|
# },
|
60111
60193
|
# no_device: "String",
|
60112
60194
|
# device_name: "String",
|
@@ -60603,6 +60685,7 @@ module Aws::EC2
|
|
60603
60685
|
# throughput: 1,
|
60604
60686
|
# outpost_arn: "String",
|
60605
60687
|
# encrypted: false,
|
60688
|
+
# volume_initialization_rate: 1,
|
60606
60689
|
# },
|
60607
60690
|
# no_device: "String",
|
60608
60691
|
# device_name: "String",
|
@@ -60730,6 +60813,7 @@ module Aws::EC2
|
|
60730
60813
|
# resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].ebs.throughput #=> Integer
|
60731
60814
|
# resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].ebs.outpost_arn #=> String
|
60732
60815
|
# resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].ebs.encrypted #=> Boolean
|
60816
|
+
# resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].ebs.volume_initialization_rate #=> Integer
|
60733
60817
|
# resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].no_device #=> String
|
60734
60818
|
# resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].device_name #=> String
|
60735
60819
|
# resp.spot_instance_requests[0].launch_specification.block_device_mappings[0].virtual_name #=> String
|
@@ -62304,6 +62388,7 @@ module Aws::EC2
|
|
62304
62388
|
# throughput: 1,
|
62305
62389
|
# outpost_arn: "String",
|
62306
62390
|
# encrypted: false,
|
62391
|
+
# volume_initialization_rate: 1,
|
62307
62392
|
# },
|
62308
62393
|
# no_device: "String",
|
62309
62394
|
# device_name: "String",
|
@@ -63427,6 +63512,10 @@ module Aws::EC2
|
|
63427
63512
|
# The Amazon Resource Names (ARN) of the resources that the path must
|
63428
63513
|
# traverse.
|
63429
63514
|
#
|
63515
|
+
# @option params [Array<String>] :filter_out_arns
|
63516
|
+
# The Amazon Resource Names (ARN) of the resources that the path will
|
63517
|
+
# ignore.
|
63518
|
+
#
|
63430
63519
|
# @option params [Boolean] :dry_run
|
63431
63520
|
# Checks whether you have the required permissions for the action,
|
63432
63521
|
# without actually making the request, and provides an error response.
|
@@ -63458,6 +63547,7 @@ module Aws::EC2
|
|
63458
63547
|
# network_insights_path_id: "NetworkInsightsPathId", # required
|
63459
63548
|
# additional_accounts: ["String"],
|
63460
63549
|
# filter_in_arns: ["ResourceArn"],
|
63550
|
+
# filter_out_arns: ["ResourceArn"],
|
63461
63551
|
# dry_run: false,
|
63462
63552
|
# tag_specifications: [
|
63463
63553
|
# {
|
@@ -63482,6 +63572,8 @@ module Aws::EC2
|
|
63482
63572
|
# resp.network_insights_analysis.additional_accounts[0] #=> String
|
63483
63573
|
# resp.network_insights_analysis.filter_in_arns #=> Array
|
63484
63574
|
# resp.network_insights_analysis.filter_in_arns[0] #=> String
|
63575
|
+
# resp.network_insights_analysis.filter_out_arns #=> Array
|
63576
|
+
# resp.network_insights_analysis.filter_out_arns[0] #=> String
|
63485
63577
|
# resp.network_insights_analysis.start_date #=> Time
|
63486
63578
|
# resp.network_insights_analysis.status #=> String, one of "running", "succeeded", "failed"
|
63487
63579
|
# resp.network_insights_analysis.status_message #=> String
|
@@ -65265,7 +65357,7 @@ module Aws::EC2
|
|
65265
65357
|
tracer: tracer
|
65266
65358
|
)
|
65267
65359
|
context[:gem_name] = 'aws-sdk-ec2'
|
65268
|
-
context[:gem_version] = '1.
|
65360
|
+
context[:gem_version] = '1.521.0'
|
65269
65361
|
Seahorse::Client::Request.new(handlers, context)
|
65270
65362
|
end
|
65271
65363
|
|
@@ -5578,6 +5578,7 @@ module Aws::EC2
|
|
5578
5578
|
CreateReplaceRootVolumeTaskRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
|
5579
5579
|
CreateReplaceRootVolumeTaskRequest.add_member(:image_id, Shapes::ShapeRef.new(shape: ImageId, location_name: "ImageId"))
|
5580
5580
|
CreateReplaceRootVolumeTaskRequest.add_member(:delete_replaced_root_volume, Shapes::ShapeRef.new(shape: Boolean, location_name: "DeleteReplacedRootVolume"))
|
5581
|
+
CreateReplaceRootVolumeTaskRequest.add_member(:volume_initialization_rate, Shapes::ShapeRef.new(shape: Long, location_name: "VolumeInitializationRate"))
|
5581
5582
|
CreateReplaceRootVolumeTaskRequest.struct_class = Types::CreateReplaceRootVolumeTaskRequest
|
5582
5583
|
|
5583
5584
|
CreateReplaceRootVolumeTaskResult.add_member(:replace_root_volume_task, Shapes::ShapeRef.new(shape: ReplaceRootVolumeTask, location_name: "replaceRootVolumeTask"))
|
@@ -6073,6 +6074,7 @@ module Aws::EC2
|
|
6073
6074
|
CreateVolumeRequest.add_member(:multi_attach_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "MultiAttachEnabled"))
|
6074
6075
|
CreateVolumeRequest.add_member(:throughput, Shapes::ShapeRef.new(shape: Integer, location_name: "Throughput"))
|
6075
6076
|
CreateVolumeRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
|
6077
|
+
CreateVolumeRequest.add_member(:volume_initialization_rate, Shapes::ShapeRef.new(shape: Integer, location_name: "VolumeInitializationRate"))
|
6076
6078
|
CreateVolumeRequest.add_member(:operator, Shapes::ShapeRef.new(shape: OperatorRequest, location_name: "Operator"))
|
6077
6079
|
CreateVolumeRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
|
6078
6080
|
CreateVolumeRequest.struct_class = Types::CreateVolumeRequest
|
@@ -9167,6 +9169,7 @@ module Aws::EC2
|
|
9167
9169
|
EbsBlockDevice.add_member(:throughput, Shapes::ShapeRef.new(shape: Integer, location_name: "throughput"))
|
9168
9170
|
EbsBlockDevice.add_member(:outpost_arn, Shapes::ShapeRef.new(shape: String, location_name: "outpostArn"))
|
9169
9171
|
EbsBlockDevice.add_member(:encrypted, Shapes::ShapeRef.new(shape: Boolean, location_name: "encrypted"))
|
9172
|
+
EbsBlockDevice.add_member(:volume_initialization_rate, Shapes::ShapeRef.new(shape: Integer, location_name: "VolumeInitializationRate"))
|
9170
9173
|
EbsBlockDevice.struct_class = Types::EbsBlockDevice
|
9171
9174
|
|
9172
9175
|
EbsBlockDeviceResponse.add_member(:encrypted, Shapes::ShapeRef.new(shape: Boolean, location_name: "encrypted"))
|
@@ -9841,7 +9844,7 @@ module Aws::EC2
|
|
9841
9844
|
FleetLaunchTemplateOverridesRequest.add_member(:placement, Shapes::ShapeRef.new(shape: Placement, location_name: "Placement"))
|
9842
9845
|
FleetLaunchTemplateOverridesRequest.add_member(:block_device_mappings, Shapes::ShapeRef.new(shape: FleetBlockDeviceMappingRequestList, location_name: "BlockDeviceMapping"))
|
9843
9846
|
FleetLaunchTemplateOverridesRequest.add_member(:instance_requirements, Shapes::ShapeRef.new(shape: InstanceRequirementsRequest, location_name: "InstanceRequirements"))
|
9844
|
-
FleetLaunchTemplateOverridesRequest.add_member(:image_id, Shapes::ShapeRef.new(shape:
|
9847
|
+
FleetLaunchTemplateOverridesRequest.add_member(:image_id, Shapes::ShapeRef.new(shape: String, location_name: "ImageId"))
|
9845
9848
|
FleetLaunchTemplateOverridesRequest.struct_class = Types::FleetLaunchTemplateOverridesRequest
|
9846
9849
|
|
9847
9850
|
FleetLaunchTemplateSpecification.add_member(:launch_template_id, Shapes::ShapeRef.new(shape: String, location_name: "launchTemplateId"))
|
@@ -11992,6 +11995,7 @@ module Aws::EC2
|
|
11992
11995
|
LaunchTemplateEbsBlockDevice.add_member(:volume_size, Shapes::ShapeRef.new(shape: Integer, location_name: "volumeSize"))
|
11993
11996
|
LaunchTemplateEbsBlockDevice.add_member(:volume_type, Shapes::ShapeRef.new(shape: VolumeType, location_name: "volumeType"))
|
11994
11997
|
LaunchTemplateEbsBlockDevice.add_member(:throughput, Shapes::ShapeRef.new(shape: Integer, location_name: "throughput"))
|
11998
|
+
LaunchTemplateEbsBlockDevice.add_member(:volume_initialization_rate, Shapes::ShapeRef.new(shape: Integer, location_name: "volumeInitializationRate"))
|
11995
11999
|
LaunchTemplateEbsBlockDevice.struct_class = Types::LaunchTemplateEbsBlockDevice
|
11996
12000
|
|
11997
12001
|
LaunchTemplateEbsBlockDeviceRequest.add_member(:encrypted, Shapes::ShapeRef.new(shape: Boolean, location_name: "Encrypted"))
|
@@ -12002,6 +12006,7 @@ module Aws::EC2
|
|
12002
12006
|
LaunchTemplateEbsBlockDeviceRequest.add_member(:volume_size, Shapes::ShapeRef.new(shape: Integer, location_name: "VolumeSize"))
|
12003
12007
|
LaunchTemplateEbsBlockDeviceRequest.add_member(:volume_type, Shapes::ShapeRef.new(shape: VolumeType, location_name: "VolumeType"))
|
12004
12008
|
LaunchTemplateEbsBlockDeviceRequest.add_member(:throughput, Shapes::ShapeRef.new(shape: Integer, location_name: "Throughput"))
|
12009
|
+
LaunchTemplateEbsBlockDeviceRequest.add_member(:volume_initialization_rate, Shapes::ShapeRef.new(shape: Integer, location_name: "VolumeInitializationRate"))
|
12005
12010
|
LaunchTemplateEbsBlockDeviceRequest.struct_class = Types::LaunchTemplateEbsBlockDeviceRequest
|
12006
12011
|
|
12007
12012
|
LaunchTemplateElasticInferenceAccelerator.add_member(:type, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Type"))
|
@@ -13522,6 +13527,7 @@ module Aws::EC2
|
|
13522
13527
|
NetworkInsightsAnalysis.add_member(:network_insights_path_id, Shapes::ShapeRef.new(shape: NetworkInsightsPathId, location_name: "networkInsightsPathId"))
|
13523
13528
|
NetworkInsightsAnalysis.add_member(:additional_accounts, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "additionalAccountSet"))
|
13524
13529
|
NetworkInsightsAnalysis.add_member(:filter_in_arns, Shapes::ShapeRef.new(shape: ArnList, location_name: "filterInArnSet"))
|
13530
|
+
NetworkInsightsAnalysis.add_member(:filter_out_arns, Shapes::ShapeRef.new(shape: ArnList, location_name: "filterOutArnSet"))
|
13525
13531
|
NetworkInsightsAnalysis.add_member(:start_date, Shapes::ShapeRef.new(shape: MillisecondDateTime, location_name: "startDate"))
|
13526
13532
|
NetworkInsightsAnalysis.add_member(:status, Shapes::ShapeRef.new(shape: AnalysisStatus, location_name: "status"))
|
13527
13533
|
NetworkInsightsAnalysis.add_member(:status_message, Shapes::ShapeRef.new(shape: String, location_name: "statusMessage"))
|
@@ -15811,6 +15817,7 @@ module Aws::EC2
|
|
15811
15817
|
StartNetworkInsightsAnalysisRequest.add_member(:network_insights_path_id, Shapes::ShapeRef.new(shape: NetworkInsightsPathId, required: true, location_name: "NetworkInsightsPathId"))
|
15812
15818
|
StartNetworkInsightsAnalysisRequest.add_member(:additional_accounts, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "AdditionalAccount"))
|
15813
15819
|
StartNetworkInsightsAnalysisRequest.add_member(:filter_in_arns, Shapes::ShapeRef.new(shape: ArnList, location_name: "FilterInArn"))
|
15820
|
+
StartNetworkInsightsAnalysisRequest.add_member(:filter_out_arns, Shapes::ShapeRef.new(shape: ArnList, location_name: "FilterOutArn"))
|
15814
15821
|
StartNetworkInsightsAnalysisRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
15815
15822
|
StartNetworkInsightsAnalysisRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
|
15816
15823
|
StartNetworkInsightsAnalysisRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
|
@@ -16931,6 +16938,7 @@ module Aws::EC2
|
|
16931
16938
|
Volume.add_member(:throughput, Shapes::ShapeRef.new(shape: Integer, location_name: "throughput"))
|
16932
16939
|
Volume.add_member(:sse_type, Shapes::ShapeRef.new(shape: SSEType, location_name: "sseType"))
|
16933
16940
|
Volume.add_member(:operator, Shapes::ShapeRef.new(shape: OperatorResponse, location_name: "operator"))
|
16941
|
+
Volume.add_member(:volume_initialization_rate, Shapes::ShapeRef.new(shape: Integer, location_name: "volumeInitializationRate"))
|
16934
16942
|
Volume.add_member(:volume_id, Shapes::ShapeRef.new(shape: String, location_name: "volumeId"))
|
16935
16943
|
Volume.add_member(:size, Shapes::ShapeRef.new(shape: Integer, location_name: "size"))
|
16936
16944
|
Volume.add_member(:snapshot_id, Shapes::ShapeRef.new(shape: String, location_name: "snapshotId"))
|
data/lib/aws-sdk-ec2/instance.rb
CHANGED
data/lib/aws-sdk-ec2/resource.rb
CHANGED
@@ -94,6 +94,7 @@ module Aws::EC2
|
|
94
94
|
# throughput: 1,
|
95
95
|
# outpost_arn: "String",
|
96
96
|
# encrypted: false,
|
97
|
+
# volume_initialization_rate: 1,
|
97
98
|
# },
|
98
99
|
# no_device: "String",
|
99
100
|
# device_name: "String",
|
@@ -1471,6 +1472,7 @@ module Aws::EC2
|
|
1471
1472
|
# multi_attach_enabled: false,
|
1472
1473
|
# throughput: 1,
|
1473
1474
|
# client_token: "String",
|
1475
|
+
# volume_initialization_rate: 1,
|
1474
1476
|
# operator: {
|
1475
1477
|
# principal: "String",
|
1476
1478
|
# },
|
@@ -1622,6 +1624,37 @@ module Aws::EC2
|
|
1622
1624
|
#
|
1623
1625
|
#
|
1624
1626
|
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
1627
|
+
# @option options [Integer] :volume_initialization_rate
|
1628
|
+
# Specifies the Amazon EBS Provisioned Rate for Volume Initialization
|
1629
|
+
# (volume initialization rate), in MiB/s, at which to download the
|
1630
|
+
# snapshot blocks from Amazon S3 to the volume. This is also known as
|
1631
|
+
# *volume initialization*. Specifying a volume initialization rate
|
1632
|
+
# ensures that the volume is initialized at a predictable and consistent
|
1633
|
+
# rate after creation.
|
1634
|
+
#
|
1635
|
+
# This parameter is supported only for volumes created from snapshots.
|
1636
|
+
# Omit this parameter if:
|
1637
|
+
#
|
1638
|
+
# * You want to create the volume using fast snapshot restore. You must
|
1639
|
+
# specify a snapshot that is enabled for fast snapshot restore. In
|
1640
|
+
# this case, the volume is fully initialized at creation.
|
1641
|
+
#
|
1642
|
+
# <note markdown="1"> If you specify a snapshot that is enabled for fast snapshot restore
|
1643
|
+
# and a volume initialization rate, the volume will be initialized at
|
1644
|
+
# the specified rate instead of fast snapshot restore.
|
1645
|
+
#
|
1646
|
+
# </note>
|
1647
|
+
#
|
1648
|
+
# * You want to create a volume that is initialized at the default rate.
|
1649
|
+
#
|
1650
|
+
# For more information, see [ Initialize Amazon EBS volumes][1] in the
|
1651
|
+
# *Amazon EC2 User Guide*.
|
1652
|
+
#
|
1653
|
+
# Valid range: 100 - 300 MiB/s
|
1654
|
+
#
|
1655
|
+
#
|
1656
|
+
#
|
1657
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/initalize-volume.html
|
1625
1658
|
# @option options [Types::OperatorRequest] :operator
|
1626
1659
|
# Reserved for internal use.
|
1627
1660
|
# @option options [Boolean] :dry_run
|
@@ -1918,6 +1951,7 @@ module Aws::EC2
|
|
1918
1951
|
# throughput: 1,
|
1919
1952
|
# outpost_arn: "String",
|
1920
1953
|
# encrypted: false,
|
1954
|
+
# volume_initialization_rate: 1,
|
1921
1955
|
# },
|
1922
1956
|
# no_device: "String",
|
1923
1957
|
# device_name: "String",
|
data/lib/aws-sdk-ec2/subnet.rb
CHANGED
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -6470,7 +6470,7 @@ module Aws::EC2
|
|
6470
6470
|
# Indicates whether the client VPN session is disconnected after the
|
6471
6471
|
# maximum `sessionTimeoutHours` is reached. If `true`, users are
|
6472
6472
|
# prompted to reconnect client VPN. If `false`, client VPN attempts to
|
6473
|
-
# reconnect automatically. The default value is `
|
6473
|
+
# reconnect automatically. The default value is `true`.
|
6474
6474
|
# @return [Boolean]
|
6475
6475
|
#
|
6476
6476
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ClientVpnEndpoint AWS API Documentation
|
@@ -8335,7 +8335,7 @@ module Aws::EC2
|
|
8335
8335
|
# maximum timeout specified in `SessionTimeoutHours` is reached. If
|
8336
8336
|
# `true`, users are prompted to reconnect client VPN. If `false`,
|
8337
8337
|
# client VPN attempts to reconnect automatically. The default value is
|
8338
|
-
# `
|
8338
|
+
# `true`.
|
8339
8339
|
# @return [Boolean]
|
8340
8340
|
#
|
8341
8341
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateClientVpnEndpointRequest AWS API Documentation
|
@@ -11508,6 +11508,40 @@ module Aws::EC2
|
|
11508
11508
|
# manually delete it when you no longer need it.
|
11509
11509
|
# @return [Boolean]
|
11510
11510
|
#
|
11511
|
+
# @!attribute [rw] volume_initialization_rate
|
11512
|
+
# Specifies the Amazon EBS Provisioned Rate for Volume Initialization
|
11513
|
+
# (volume initialization rate), in MiB/s, at which to download the
|
11514
|
+
# snapshot blocks from Amazon S3 to the replacement root volume. This
|
11515
|
+
# is also known as *volume initialization*. Specifying a volume
|
11516
|
+
# initialization rate ensures that the volume is initialized at a
|
11517
|
+
# predictable and consistent rate after creation.
|
11518
|
+
#
|
11519
|
+
# Omit this parameter if:
|
11520
|
+
#
|
11521
|
+
# * You want to create the volume using fast snapshot restore. You
|
11522
|
+
# must specify a snapshot that is enabled for fast snapshot restore.
|
11523
|
+
# In this case, the volume is fully initialized at creation.
|
11524
|
+
#
|
11525
|
+
# <note markdown="1"> If you specify a snapshot that is enabled for fast snapshot
|
11526
|
+
# restore and a volume initialization rate, the volume will be
|
11527
|
+
# initialized at the specified rate instead of fast snapshot
|
11528
|
+
# restore.
|
11529
|
+
#
|
11530
|
+
# </note>
|
11531
|
+
#
|
11532
|
+
# * You want to create a volume that is initialized at the default
|
11533
|
+
# rate.
|
11534
|
+
#
|
11535
|
+
# For more information, see [ Initialize Amazon EBS volumes][1] in the
|
11536
|
+
# *Amazon EC2 User Guide*.
|
11537
|
+
#
|
11538
|
+
# Valid range: 100 - 300 MiB/s
|
11539
|
+
#
|
11540
|
+
#
|
11541
|
+
#
|
11542
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/initalize-volume.html
|
11543
|
+
# @return [Integer]
|
11544
|
+
#
|
11511
11545
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateReplaceRootVolumeTaskRequest AWS API Documentation
|
11512
11546
|
#
|
11513
11547
|
class CreateReplaceRootVolumeTaskRequest < Struct.new(
|
@@ -11517,7 +11551,8 @@ module Aws::EC2
|
|
11517
11551
|
:dry_run,
|
11518
11552
|
:tag_specifications,
|
11519
11553
|
:image_id,
|
11520
|
-
:delete_replaced_root_volume
|
11554
|
+
:delete_replaced_root_volume,
|
11555
|
+
:volume_initialization_rate)
|
11521
11556
|
SENSITIVE = []
|
11522
11557
|
include Aws::Structure
|
11523
11558
|
end
|
@@ -14342,6 +14377,41 @@ module Aws::EC2
|
|
14342
14377
|
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
14343
14378
|
# @return [String]
|
14344
14379
|
#
|
14380
|
+
# @!attribute [rw] volume_initialization_rate
|
14381
|
+
# Specifies the Amazon EBS Provisioned Rate for Volume Initialization
|
14382
|
+
# (volume initialization rate), in MiB/s, at which to download the
|
14383
|
+
# snapshot blocks from Amazon S3 to the volume. This is also known as
|
14384
|
+
# *volume initialization*. Specifying a volume initialization rate
|
14385
|
+
# ensures that the volume is initialized at a predictable and
|
14386
|
+
# consistent rate after creation.
|
14387
|
+
#
|
14388
|
+
# This parameter is supported only for volumes created from snapshots.
|
14389
|
+
# Omit this parameter if:
|
14390
|
+
#
|
14391
|
+
# * You want to create the volume using fast snapshot restore. You
|
14392
|
+
# must specify a snapshot that is enabled for fast snapshot restore.
|
14393
|
+
# In this case, the volume is fully initialized at creation.
|
14394
|
+
#
|
14395
|
+
# <note markdown="1"> If you specify a snapshot that is enabled for fast snapshot
|
14396
|
+
# restore and a volume initialization rate, the volume will be
|
14397
|
+
# initialized at the specified rate instead of fast snapshot
|
14398
|
+
# restore.
|
14399
|
+
#
|
14400
|
+
# </note>
|
14401
|
+
#
|
14402
|
+
# * You want to create a volume that is initialized at the default
|
14403
|
+
# rate.
|
14404
|
+
#
|
14405
|
+
# For more information, see [ Initialize Amazon EBS volumes][1] in the
|
14406
|
+
# *Amazon EC2 User Guide*.
|
14407
|
+
#
|
14408
|
+
# Valid range: 100 - 300 MiB/s
|
14409
|
+
#
|
14410
|
+
#
|
14411
|
+
#
|
14412
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/initalize-volume.html
|
14413
|
+
# @return [Integer]
|
14414
|
+
#
|
14345
14415
|
# @!attribute [rw] operator
|
14346
14416
|
# Reserved for internal use.
|
14347
14417
|
# @return [Types::OperatorRequest]
|
@@ -14368,6 +14438,7 @@ module Aws::EC2
|
|
14368
14438
|
:multi_attach_enabled,
|
14369
14439
|
:throughput,
|
14370
14440
|
:client_token,
|
14441
|
+
:volume_initialization_rate,
|
14371
14442
|
:operator,
|
14372
14443
|
:dry_run)
|
14373
14444
|
SENSITIVE = []
|
@@ -33703,6 +33774,44 @@ module Aws::EC2
|
|
33703
33774
|
# [2]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-encryption-requirements.html#ebs-encryption_supported_instances
|
33704
33775
|
# @return [Boolean]
|
33705
33776
|
#
|
33777
|
+
# @!attribute [rw] volume_initialization_rate
|
33778
|
+
# Specifies the Amazon EBS Provisioned Rate for Volume Initialization
|
33779
|
+
# (volume initialization rate), in MiB/s, at which to download the
|
33780
|
+
# snapshot blocks from Amazon S3 to the volume. This is also known as
|
33781
|
+
# *volume initialization*. Specifying a volume initialization rate
|
33782
|
+
# ensures that the volume is initialized at a predictable and
|
33783
|
+
# consistent rate after creation.
|
33784
|
+
#
|
33785
|
+
# This parameter is supported only for volumes created from snapshots.
|
33786
|
+
# Omit this parameter if:
|
33787
|
+
#
|
33788
|
+
# * You want to create the volume using fast snapshot restore. You
|
33789
|
+
# must specify a snapshot that is enabled for fast snapshot restore.
|
33790
|
+
# In this case, the volume is fully initialized at creation.
|
33791
|
+
#
|
33792
|
+
# <note markdown="1"> If you specify a snapshot that is enabled for fast snapshot
|
33793
|
+
# restore and a volume initialization rate, the volume will be
|
33794
|
+
# initialized at the specified rate instead of fast snapshot
|
33795
|
+
# restore.
|
33796
|
+
#
|
33797
|
+
# </note>
|
33798
|
+
#
|
33799
|
+
# * You want to create a volume that is initialized at the default
|
33800
|
+
# rate.
|
33801
|
+
#
|
33802
|
+
# For more information, see [ Initialize Amazon EBS volumes][1] in the
|
33803
|
+
# *Amazon EC2 User Guide*.
|
33804
|
+
#
|
33805
|
+
# This parameter is not supported when using [CreateImage][2].
|
33806
|
+
#
|
33807
|
+
# Valid range: 100 - 300 MiB/s
|
33808
|
+
#
|
33809
|
+
#
|
33810
|
+
#
|
33811
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/initalize-volume.html
|
33812
|
+
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateImage.html
|
33813
|
+
# @return [Integer]
|
33814
|
+
#
|
33706
33815
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EbsBlockDevice AWS API Documentation
|
33707
33816
|
#
|
33708
33817
|
class EbsBlockDevice < Struct.new(
|
@@ -33714,7 +33823,8 @@ module Aws::EC2
|
|
33714
33823
|
:kms_key_id,
|
33715
33824
|
:throughput,
|
33716
33825
|
:outpost_arn,
|
33717
|
-
:encrypted
|
33826
|
+
:encrypted,
|
33827
|
+
:volume_initialization_rate)
|
33718
33828
|
SENSITIVE = []
|
33719
33829
|
include Aws::Structure
|
33720
33830
|
end
|
@@ -49361,6 +49471,12 @@ module Aws::EC2
|
|
49361
49471
|
# The throughput that the volume supports, in MiB/s.
|
49362
49472
|
# @return [Integer]
|
49363
49473
|
#
|
49474
|
+
# @!attribute [rw] volume_initialization_rate
|
49475
|
+
# The Amazon EBS Provisioned Rate for Volume Initialization (volume
|
49476
|
+
# initialization rate) specified for the volume, in MiB/s. If no
|
49477
|
+
# volume initialization rate was specified, the value is `null`.
|
49478
|
+
# @return [Integer]
|
49479
|
+
#
|
49364
49480
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchTemplateEbsBlockDevice AWS API Documentation
|
49365
49481
|
#
|
49366
49482
|
class LaunchTemplateEbsBlockDevice < Struct.new(
|
@@ -49371,7 +49487,8 @@ module Aws::EC2
|
|
49371
49487
|
:snapshot_id,
|
49372
49488
|
:volume_size,
|
49373
49489
|
:volume_type,
|
49374
|
-
:throughput
|
49490
|
+
:throughput,
|
49491
|
+
:volume_initialization_rate)
|
49375
49492
|
SENSITIVE = []
|
49376
49493
|
include Aws::Structure
|
49377
49494
|
end
|
@@ -49457,6 +49574,41 @@ module Aws::EC2
|
|
49457
49574
|
# Valid Range: Minimum value of 125. Maximum value of 1000.
|
49458
49575
|
# @return [Integer]
|
49459
49576
|
#
|
49577
|
+
# @!attribute [rw] volume_initialization_rate
|
49578
|
+
# Specifies the Amazon EBS Provisioned Rate for Volume Initialization
|
49579
|
+
# (volume initialization rate), in MiB/s, at which to download the
|
49580
|
+
# snapshot blocks from Amazon S3 to the volume. This is also known as
|
49581
|
+
# *volume initialization*. Specifying a volume initialization rate
|
49582
|
+
# ensures that the volume is initialized at a predictable and
|
49583
|
+
# consistent rate after creation.
|
49584
|
+
#
|
49585
|
+
# This parameter is supported only for volumes created from snapshots.
|
49586
|
+
# Omit this parameter if:
|
49587
|
+
#
|
49588
|
+
# * You want to create the volume using fast snapshot restore. You
|
49589
|
+
# must specify a snapshot that is enabled for fast snapshot restore.
|
49590
|
+
# In this case, the volume is fully initialized at creation.
|
49591
|
+
#
|
49592
|
+
# <note markdown="1"> If you specify a snapshot that is enabled for fast snapshot
|
49593
|
+
# restore and a volume initialization rate, the volume will be
|
49594
|
+
# initialized at the specified rate instead of fast snapshot
|
49595
|
+
# restore.
|
49596
|
+
#
|
49597
|
+
# </note>
|
49598
|
+
#
|
49599
|
+
# * You want to create a volume that is initialized at the default
|
49600
|
+
# rate.
|
49601
|
+
#
|
49602
|
+
# For more information, see [ Initialize Amazon EBS volumes][1] in the
|
49603
|
+
# *Amazon EC2 User Guide*.
|
49604
|
+
#
|
49605
|
+
# Valid range: 100 - 300 MiB/s
|
49606
|
+
#
|
49607
|
+
#
|
49608
|
+
#
|
49609
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/initalize-volume.html
|
49610
|
+
# @return [Integer]
|
49611
|
+
#
|
49460
49612
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchTemplateEbsBlockDeviceRequest AWS API Documentation
|
49461
49613
|
#
|
49462
49614
|
class LaunchTemplateEbsBlockDeviceRequest < Struct.new(
|
@@ -49467,7 +49619,8 @@ module Aws::EC2
|
|
49467
49619
|
:snapshot_id,
|
49468
49620
|
:volume_size,
|
49469
49621
|
:volume_type,
|
49470
|
-
:throughput
|
49622
|
+
:throughput,
|
49623
|
+
:volume_initialization_rate)
|
49471
49624
|
SENSITIVE = []
|
49472
49625
|
include Aws::Structure
|
49473
49626
|
end
|
@@ -52422,7 +52575,7 @@ module Aws::EC2
|
|
52422
52575
|
# maximum timeout specified in `sessionTimeoutHours` is reached. If
|
52423
52576
|
# `true`, users are prompted to reconnect client VPN. If `false`,
|
52424
52577
|
# client VPN attempts to reconnect automatically. The default value is
|
52425
|
-
# `
|
52578
|
+
# `true`.
|
52426
52579
|
# @return [Boolean]
|
52427
52580
|
#
|
52428
52581
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyClientVpnEndpointRequest AWS API Documentation
|
@@ -58035,6 +58188,11 @@ module Aws::EC2
|
|
58035
58188
|
# traverse.
|
58036
58189
|
# @return [Array<String>]
|
58037
58190
|
#
|
58191
|
+
# @!attribute [rw] filter_out_arns
|
58192
|
+
# The Amazon Resource Names (ARN) of the resources that the path must
|
58193
|
+
# ignore.
|
58194
|
+
# @return [Array<String>]
|
58195
|
+
#
|
58038
58196
|
# @!attribute [rw] start_date
|
58039
58197
|
# The time the analysis started.
|
58040
58198
|
# @return [Time]
|
@@ -58092,6 +58250,7 @@ module Aws::EC2
|
|
58092
58250
|
:network_insights_path_id,
|
58093
58251
|
:additional_accounts,
|
58094
58252
|
:filter_in_arns,
|
58253
|
+
:filter_out_arns,
|
58095
58254
|
:start_date,
|
58096
58255
|
:status,
|
58097
58256
|
:status_message,
|
@@ -70223,6 +70382,11 @@ module Aws::EC2
|
|
70223
70382
|
# traverse.
|
70224
70383
|
# @return [Array<String>]
|
70225
70384
|
#
|
70385
|
+
# @!attribute [rw] filter_out_arns
|
70386
|
+
# The Amazon Resource Names (ARN) of the resources that the path will
|
70387
|
+
# ignore.
|
70388
|
+
# @return [Array<String>]
|
70389
|
+
#
|
70226
70390
|
# @!attribute [rw] dry_run
|
70227
70391
|
# Checks whether you have the required permissions for the action,
|
70228
70392
|
# without actually making the request, and provides an error response.
|
@@ -70253,6 +70417,7 @@ module Aws::EC2
|
|
70253
70417
|
:network_insights_path_id,
|
70254
70418
|
:additional_accounts,
|
70255
70419
|
:filter_in_arns,
|
70420
|
+
:filter_out_arns,
|
70256
70421
|
:dry_run,
|
70257
70422
|
:tag_specifications,
|
70258
70423
|
:client_token)
|
@@ -75092,6 +75257,13 @@ module Aws::EC2
|
|
75092
75257
|
# The service provider that manages the volume.
|
75093
75258
|
# @return [Types::OperatorResponse]
|
75094
75259
|
#
|
75260
|
+
# @!attribute [rw] volume_initialization_rate
|
75261
|
+
# The Amazon EBS Provisioned Rate for Volume Initialization (volume
|
75262
|
+
# initialization rate) specified for the volume during creation, in
|
75263
|
+
# MiB/s. If no volume initialization rate was specified, the value is
|
75264
|
+
# `null`.
|
75265
|
+
# @return [Integer]
|
75266
|
+
#
|
75095
75267
|
# @!attribute [rw] volume_id
|
75096
75268
|
# The ID of the volume.
|
75097
75269
|
# @return [String]
|
@@ -75145,6 +75317,7 @@ module Aws::EC2
|
|
75145
75317
|
:throughput,
|
75146
75318
|
:sse_type,
|
75147
75319
|
:operator,
|
75320
|
+
:volume_initialization_rate,
|
75148
75321
|
:volume_id,
|
75149
75322
|
:size,
|
75150
75323
|
:snapshot_id,
|
data/lib/aws-sdk-ec2/volume.rb
CHANGED
@@ -101,6 +101,15 @@ module Aws::EC2
|
|
101
101
|
data[:operator]
|
102
102
|
end
|
103
103
|
|
104
|
+
# The Amazon EBS Provisioned Rate for Volume Initialization (volume
|
105
|
+
# initialization rate) specified for the volume during creation, in
|
106
|
+
# MiB/s. If no volume initialization rate was specified, the value is
|
107
|
+
# `null`.
|
108
|
+
# @return [Integer]
|
109
|
+
def volume_initialization_rate
|
110
|
+
data[:volume_initialization_rate]
|
111
|
+
end
|
112
|
+
|
104
113
|
# The size of the volume, in GiBs.
|
105
114
|
# @return [Integer]
|
106
115
|
def size
|
data/lib/aws-sdk-ec2.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -1708,7 +1708,8 @@ module Aws
|
|
1708
1708
|
kms_key_id: ::String?,
|
1709
1709
|
throughput: ::Integer?,
|
1710
1710
|
outpost_arn: ::String?,
|
1711
|
-
encrypted: bool
|
1711
|
+
encrypted: bool?,
|
1712
|
+
volume_initialization_rate: ::Integer?
|
1712
1713
|
}?,
|
1713
1714
|
no_device: ::String?,
|
1714
1715
|
device_name: ::String?,
|
@@ -2035,7 +2036,8 @@ module Aws
|
|
2035
2036
|
snapshot_id: ::String?,
|
2036
2037
|
volume_size: ::Integer?,
|
2037
2038
|
volume_type: ("standard" | "io1" | "io2" | "gp2" | "sc1" | "st1" | "gp3")?,
|
2038
|
-
throughput: ::Integer
|
2039
|
+
throughput: ::Integer?,
|
2040
|
+
volume_initialization_rate: ::Integer?
|
2039
2041
|
}?,
|
2040
2042
|
no_device: ::String?
|
2041
2043
|
},
|
@@ -2307,7 +2309,8 @@ module Aws
|
|
2307
2309
|
snapshot_id: ::String?,
|
2308
2310
|
volume_size: ::Integer?,
|
2309
2311
|
volume_type: ("standard" | "io1" | "io2" | "gp2" | "sc1" | "st1" | "gp3")?,
|
2310
|
-
throughput: ::Integer
|
2312
|
+
throughput: ::Integer?,
|
2313
|
+
volume_initialization_rate: ::Integer?
|
2311
2314
|
}?,
|
2312
2315
|
no_device: ::String?
|
2313
2316
|
},
|
@@ -3081,7 +3084,8 @@ module Aws
|
|
3081
3084
|
},
|
3082
3085
|
],
|
3083
3086
|
?image_id: ::String,
|
3084
|
-
?delete_replaced_root_volume: bool
|
3087
|
+
?delete_replaced_root_volume: bool,
|
3088
|
+
?volume_initialization_rate: ::Integer
|
3085
3089
|
) -> _CreateReplaceRootVolumeTaskResponseSuccess
|
3086
3090
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateReplaceRootVolumeTaskResponseSuccess
|
3087
3091
|
|
@@ -4040,6 +4044,7 @@ module Aws
|
|
4040
4044
|
def throughput: () -> ::Integer
|
4041
4045
|
def sse_type: () -> ("sse-ebs" | "sse-kms" | "none")
|
4042
4046
|
def operator: () -> Types::OperatorResponse
|
4047
|
+
def volume_initialization_rate: () -> ::Integer
|
4043
4048
|
def volume_id: () -> ::String
|
4044
4049
|
def size: () -> ::Integer
|
4045
4050
|
def snapshot_id: () -> ::String
|
@@ -4074,6 +4079,7 @@ module Aws
|
|
4074
4079
|
?multi_attach_enabled: bool,
|
4075
4080
|
?throughput: ::Integer,
|
4076
4081
|
?client_token: ::String,
|
4082
|
+
?volume_initialization_rate: ::Integer,
|
4077
4083
|
?operator: {
|
4078
4084
|
principal: ::String?
|
4079
4085
|
},
|
@@ -12488,7 +12494,8 @@ module Aws
|
|
12488
12494
|
kms_key_id: ::String?,
|
12489
12495
|
throughput: ::Integer?,
|
12490
12496
|
outpost_arn: ::String?,
|
12491
|
-
encrypted: bool
|
12497
|
+
encrypted: bool?,
|
12498
|
+
volume_initialization_rate: ::Integer?
|
12492
12499
|
}?,
|
12493
12500
|
no_device: ::String?,
|
12494
12501
|
device_name: ::String?,
|
@@ -12814,7 +12821,8 @@ module Aws
|
|
12814
12821
|
kms_key_id: ::String?,
|
12815
12822
|
throughput: ::Integer?,
|
12816
12823
|
outpost_arn: ::String?,
|
12817
|
-
encrypted: bool
|
12824
|
+
encrypted: bool?,
|
12825
|
+
volume_initialization_rate: ::Integer?
|
12818
12826
|
}?,
|
12819
12827
|
no_device: ::String?,
|
12820
12828
|
device_name: ::String?,
|
@@ -13124,7 +13132,8 @@ module Aws
|
|
13124
13132
|
kms_key_id: ::String?,
|
13125
13133
|
throughput: ::Integer?,
|
13126
13134
|
outpost_arn: ::String?,
|
13127
|
-
encrypted: bool
|
13135
|
+
encrypted: bool?,
|
13136
|
+
volume_initialization_rate: ::Integer?
|
13128
13137
|
}?,
|
13129
13138
|
no_device: ::String?,
|
13130
13139
|
device_name: ::String?,
|
@@ -13517,7 +13526,8 @@ module Aws
|
|
13517
13526
|
kms_key_id: ::String?,
|
13518
13527
|
throughput: ::Integer?,
|
13519
13528
|
outpost_arn: ::String?,
|
13520
|
-
encrypted: bool
|
13529
|
+
encrypted: bool?,
|
13530
|
+
volume_initialization_rate: ::Integer?
|
13521
13531
|
}?,
|
13522
13532
|
no_device: ::String?,
|
13523
13533
|
device_name: ::String?,
|
@@ -13918,6 +13928,7 @@ module Aws
|
|
13918
13928
|
network_insights_path_id: ::String,
|
13919
13929
|
?additional_accounts: Array[::String],
|
13920
13930
|
?filter_in_arns: Array[::String],
|
13931
|
+
?filter_out_arns: Array[::String],
|
13921
13932
|
?dry_run: bool,
|
13922
13933
|
?tag_specifications: Array[
|
13923
13934
|
{
|
data/sig/instance.rbs
CHANGED
data/sig/resource.rbs
CHANGED
@@ -115,7 +115,8 @@ module Aws
|
|
115
115
|
kms_key_id: ::String?,
|
116
116
|
throughput: ::Integer?,
|
117
117
|
outpost_arn: ::String?,
|
118
|
-
encrypted: bool
|
118
|
+
encrypted: bool?,
|
119
|
+
volume_initialization_rate: ::Integer?
|
119
120
|
}?,
|
120
121
|
no_device: ::String?,
|
121
122
|
device_name: ::String?,
|
@@ -605,6 +606,7 @@ module Aws
|
|
605
606
|
?multi_attach_enabled: bool,
|
606
607
|
?throughput: ::Integer,
|
607
608
|
?client_token: ::String,
|
609
|
+
?volume_initialization_rate: ::Integer,
|
608
610
|
?operator: {
|
609
611
|
principal: ::String?
|
610
612
|
},
|
@@ -723,7 +725,8 @@ module Aws
|
|
723
725
|
kms_key_id: ::String?,
|
724
726
|
throughput: ::Integer?,
|
725
727
|
outpost_arn: ::String?,
|
726
|
-
encrypted: bool
|
728
|
+
encrypted: bool?,
|
729
|
+
volume_initialization_rate: ::Integer?
|
727
730
|
}?,
|
728
731
|
no_device: ::String?,
|
729
732
|
device_name: ::String?,
|
data/sig/subnet.rbs
CHANGED
data/sig/types.rbs
CHANGED
@@ -2536,6 +2536,7 @@ module Aws::EC2
|
|
2536
2536
|
attr_accessor tag_specifications: ::Array[Types::TagSpecification]
|
2537
2537
|
attr_accessor image_id: ::String
|
2538
2538
|
attr_accessor delete_replaced_root_volume: bool
|
2539
|
+
attr_accessor volume_initialization_rate: ::Integer
|
2539
2540
|
SENSITIVE: []
|
2540
2541
|
end
|
2541
2542
|
|
@@ -3189,6 +3190,7 @@ module Aws::EC2
|
|
3189
3190
|
attr_accessor multi_attach_enabled: bool
|
3190
3191
|
attr_accessor throughput: ::Integer
|
3191
3192
|
attr_accessor client_token: ::String
|
3193
|
+
attr_accessor volume_initialization_rate: ::Integer
|
3192
3194
|
attr_accessor operator: Types::OperatorRequest
|
3193
3195
|
attr_accessor dry_run: bool
|
3194
3196
|
SENSITIVE: []
|
@@ -7466,6 +7468,7 @@ module Aws::EC2
|
|
7466
7468
|
attr_accessor throughput: ::Integer
|
7467
7469
|
attr_accessor outpost_arn: ::String
|
7468
7470
|
attr_accessor encrypted: bool
|
7471
|
+
attr_accessor volume_initialization_rate: ::Integer
|
7469
7472
|
SENSITIVE: []
|
7470
7473
|
end
|
7471
7474
|
|
@@ -10735,6 +10738,7 @@ module Aws::EC2
|
|
10735
10738
|
attr_accessor volume_size: ::Integer
|
10736
10739
|
attr_accessor volume_type: ("standard" | "io1" | "io2" | "gp2" | "sc1" | "st1" | "gp3")
|
10737
10740
|
attr_accessor throughput: ::Integer
|
10741
|
+
attr_accessor volume_initialization_rate: ::Integer
|
10738
10742
|
SENSITIVE: []
|
10739
10743
|
end
|
10740
10744
|
|
@@ -10747,6 +10751,7 @@ module Aws::EC2
|
|
10747
10751
|
attr_accessor volume_size: ::Integer
|
10748
10752
|
attr_accessor volume_type: ("standard" | "io1" | "io2" | "gp2" | "sc1" | "st1" | "gp3")
|
10749
10753
|
attr_accessor throughput: ::Integer
|
10754
|
+
attr_accessor volume_initialization_rate: ::Integer
|
10750
10755
|
SENSITIVE: []
|
10751
10756
|
end
|
10752
10757
|
|
@@ -12629,6 +12634,7 @@ module Aws::EC2
|
|
12629
12634
|
attr_accessor network_insights_path_id: ::String
|
12630
12635
|
attr_accessor additional_accounts: ::Array[::String]
|
12631
12636
|
attr_accessor filter_in_arns: ::Array[::String]
|
12637
|
+
attr_accessor filter_out_arns: ::Array[::String]
|
12632
12638
|
attr_accessor start_date: ::Time
|
12633
12639
|
attr_accessor status: ("running" | "succeeded" | "failed")
|
12634
12640
|
attr_accessor status_message: ::String
|
@@ -15166,6 +15172,7 @@ module Aws::EC2
|
|
15166
15172
|
attr_accessor network_insights_path_id: ::String
|
15167
15173
|
attr_accessor additional_accounts: ::Array[::String]
|
15168
15174
|
attr_accessor filter_in_arns: ::Array[::String]
|
15175
|
+
attr_accessor filter_out_arns: ::Array[::String]
|
15169
15176
|
attr_accessor dry_run: bool
|
15170
15177
|
attr_accessor tag_specifications: ::Array[Types::TagSpecification]
|
15171
15178
|
attr_accessor client_token: ::String
|
@@ -16376,6 +16383,7 @@ module Aws::EC2
|
|
16376
16383
|
attr_accessor throughput: ::Integer
|
16377
16384
|
attr_accessor sse_type: ("sse-ebs" | "sse-kms" | "none")
|
16378
16385
|
attr_accessor operator: Types::OperatorResponse
|
16386
|
+
attr_accessor volume_initialization_rate: ::Integer
|
16379
16387
|
attr_accessor volume_id: ::String
|
16380
16388
|
attr_accessor size: ::Integer
|
16381
16389
|
attr_accessor snapshot_id: ::String
|
data/sig/volume.rbs
CHANGED
@@ -45,6 +45,9 @@ module Aws
|
|
45
45
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Volume.html#operator-instance_method
|
46
46
|
def operator: () -> Types::OperatorResponse
|
47
47
|
|
48
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Volume.html#volume_initialization_rate-instance_method
|
49
|
+
def volume_initialization_rate: () -> ::Integer
|
50
|
+
|
48
51
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Volume.html#size-instance_method
|
49
52
|
def size: () -> ::Integer
|
50
53
|
|