aws-sdk-ec2 1.537.0 → 1.538.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +36 -5
- data/lib/aws-sdk-ec2/client_api.rb +10 -0
- data/lib/aws-sdk-ec2/types.rb +105 -2
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +2 -1
- data/sig/types.rbs +11 -1
- 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: bc54bb4559548f3dceeb3df438eb872141c6e3fa90c1806402c411fdf6e1ec15
|
4
|
+
data.tar.gz: 0edabe0e8f35adbf0e1ce5b0a760c2a1841b3bc3a99a988afe1b95f3a827339c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ba2eafc710dd83abbf70914a95ed40b0a7053308c911e5af5412240250f8848c407b193469339d2d41cf59f5fc0393f1e353283b81734ddbd4980b44a5703221
|
7
|
+
data.tar.gz: e945d4623ef0a07ac54dd16c448ba1cdd505d1b03fc81bcca67709806046ede16b0db599efc98c6d101f72d371cae6af71aad700989a5b21cb027d5bb4704d6c
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.538.0 (2025-07-15)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds support for volume initialization status, which enables you to monitor when the initialization process for an EBS volume is completed. This release also adds IPv6 support to EC2 Instance Connect Endpoints, allowing you to connect to your EC2 Instance via a private IPv6 address.
|
8
|
+
|
4
9
|
1.537.0 (2025-07-09)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.538.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -7971,9 +7971,9 @@ module Aws::EC2
|
|
7971
7971
|
# Creates an EC2 Instance Connect Endpoint.
|
7972
7972
|
#
|
7973
7973
|
# An EC2 Instance Connect Endpoint allows you to connect to an instance,
|
7974
|
-
# without requiring the instance to have a public IPv4
|
7975
|
-
# information, see [Connect to your instances using
|
7976
|
-
# Endpoint][1] in the *Amazon EC2 User Guide*.
|
7974
|
+
# without requiring the instance to have a public IPv4 or public IPv6
|
7975
|
+
# address. For more information, see [Connect to your instances using
|
7976
|
+
# EC2 Instance Connect Endpoint][1] in the *Amazon EC2 User Guide*.
|
7977
7977
|
#
|
7978
7978
|
#
|
7979
7979
|
#
|
@@ -8002,6 +8002,12 @@ module Aws::EC2
|
|
8002
8002
|
#
|
8003
8003
|
# * `false` - Use the network interface IP address as the source.
|
8004
8004
|
#
|
8005
|
+
# <note markdown="1"> `PreserveClientIp` is only supported on IPv4 EC2 Instance Connect
|
8006
|
+
# Endpoints. To use `PreserveClientIp`, the value for `IpAddressType`
|
8007
|
+
# must be `ipv4`.
|
8008
|
+
#
|
8009
|
+
# </note>
|
8010
|
+
#
|
8005
8011
|
# Default: `false`
|
8006
8012
|
#
|
8007
8013
|
# @option params [String] :client_token
|
@@ -8015,6 +8021,24 @@ module Aws::EC2
|
|
8015
8021
|
# The tags to apply to the EC2 Instance Connect Endpoint during
|
8016
8022
|
# creation.
|
8017
8023
|
#
|
8024
|
+
# @option params [String] :ip_address_type
|
8025
|
+
# The IP address type of the endpoint.
|
8026
|
+
#
|
8027
|
+
# If no value is specified, the default value is determined by the IP
|
8028
|
+
# address type of the subnet:
|
8029
|
+
#
|
8030
|
+
# * `dualstack` - If the subnet has both IPv4 and IPv6 CIDRs
|
8031
|
+
#
|
8032
|
+
# * `ipv4` - If the subnet has only IPv4 CIDRs
|
8033
|
+
#
|
8034
|
+
# * `ipv6` - If the subnet has only IPv6 CIDRs
|
8035
|
+
#
|
8036
|
+
# <note markdown="1"> `PreserveClientIp` is only supported on IPv4 EC2 Instance Connect
|
8037
|
+
# Endpoints. To use `PreserveClientIp`, the value for `IpAddressType`
|
8038
|
+
# must be `ipv4`.
|
8039
|
+
#
|
8040
|
+
# </note>
|
8041
|
+
#
|
8018
8042
|
# @return [Types::CreateInstanceConnectEndpointResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8019
8043
|
#
|
8020
8044
|
# * {Types::CreateInstanceConnectEndpointResult#instance_connect_endpoint #instance_connect_endpoint} => Types::Ec2InstanceConnectEndpoint
|
@@ -8039,6 +8063,7 @@ module Aws::EC2
|
|
8039
8063
|
# ],
|
8040
8064
|
# },
|
8041
8065
|
# ],
|
8066
|
+
# ip_address_type: "ipv4", # accepts ipv4, dualstack, ipv6
|
8042
8067
|
# })
|
8043
8068
|
#
|
8044
8069
|
# @example Response structure
|
@@ -8062,6 +8087,7 @@ module Aws::EC2
|
|
8062
8087
|
# resp.instance_connect_endpoint.tags #=> Array
|
8063
8088
|
# resp.instance_connect_endpoint.tags[0].key #=> String
|
8064
8089
|
# resp.instance_connect_endpoint.tags[0].value #=> String
|
8090
|
+
# resp.instance_connect_endpoint.ip_address_type #=> String, one of "ipv4", "dualstack", "ipv6"
|
8065
8091
|
# resp.client_token #=> String
|
8066
8092
|
#
|
8067
8093
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateInstanceConnectEndpoint AWS API Documentation
|
@@ -18054,6 +18080,7 @@ module Aws::EC2
|
|
18054
18080
|
# resp.instance_connect_endpoint.tags #=> Array
|
18055
18081
|
# resp.instance_connect_endpoint.tags[0].key #=> String
|
18056
18082
|
# resp.instance_connect_endpoint.tags[0].value #=> String
|
18083
|
+
# resp.instance_connect_endpoint.ip_address_type #=> String, one of "ipv4", "dualstack", "ipv6"
|
18057
18084
|
#
|
18058
18085
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteInstanceConnectEndpoint AWS API Documentation
|
18059
18086
|
#
|
@@ -27415,6 +27442,7 @@ module Aws::EC2
|
|
27415
27442
|
# resp.instance_connect_endpoints[0].tags #=> Array
|
27416
27443
|
# resp.instance_connect_endpoints[0].tags[0].key #=> String
|
27417
27444
|
# resp.instance_connect_endpoints[0].tags[0].value #=> String
|
27445
|
+
# resp.instance_connect_endpoints[0].ip_address_type #=> String, one of "ipv4", "dualstack", "ipv6"
|
27418
27446
|
# resp.next_token #=> String
|
27419
27447
|
#
|
27420
27448
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeInstanceConnectEndpoints AWS API Documentation
|
@@ -40503,12 +40531,15 @@ module Aws::EC2
|
|
40503
40531
|
# resp.volume_statuses[0].events[0].instance_id #=> String
|
40504
40532
|
# resp.volume_statuses[0].volume_id #=> String
|
40505
40533
|
# resp.volume_statuses[0].volume_status.details #=> Array
|
40506
|
-
# resp.volume_statuses[0].volume_status.details[0].name #=> String, one of "io-enabled", "io-performance"
|
40534
|
+
# resp.volume_statuses[0].volume_status.details[0].name #=> String, one of "io-enabled", "io-performance", "initialization-state"
|
40507
40535
|
# resp.volume_statuses[0].volume_status.details[0].status #=> String
|
40508
40536
|
# resp.volume_statuses[0].volume_status.status #=> String, one of "ok", "impaired", "insufficient-data"
|
40509
40537
|
# resp.volume_statuses[0].attachment_statuses #=> Array
|
40510
40538
|
# resp.volume_statuses[0].attachment_statuses[0].io_performance #=> String
|
40511
40539
|
# resp.volume_statuses[0].attachment_statuses[0].instance_id #=> String
|
40540
|
+
# resp.volume_statuses[0].initialization_status_details.initialization_type #=> String, one of "default", "provisioned-rate"
|
40541
|
+
# resp.volume_statuses[0].initialization_status_details.progress #=> Integer
|
40542
|
+
# resp.volume_statuses[0].initialization_status_details.estimated_time_to_complete_in_seconds #=> Integer
|
40512
40543
|
# resp.volume_statuses[0].availability_zone_id #=> String
|
40513
40544
|
#
|
40514
40545
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVolumeStatus AWS API Documentation
|
@@ -66362,7 +66393,7 @@ module Aws::EC2
|
|
66362
66393
|
tracer: tracer
|
66363
66394
|
)
|
66364
66395
|
context[:gem_name] = 'aws-sdk-ec2'
|
66365
|
-
context[:gem_version] = '1.
|
66396
|
+
context[:gem_version] = '1.538.0'
|
66366
66397
|
Seahorse::Client::Request.new(handlers, context)
|
66367
66398
|
end
|
66368
66399
|
|
@@ -1856,6 +1856,8 @@ module Aws::EC2
|
|
1856
1856
|
InferenceDeviceMemoryInfo = Shapes::StructureShape.new(name: 'InferenceDeviceMemoryInfo')
|
1857
1857
|
InferenceDeviceMemorySize = Shapes::IntegerShape.new(name: 'InferenceDeviceMemorySize')
|
1858
1858
|
InferenceDeviceName = Shapes::StringShape.new(name: 'InferenceDeviceName')
|
1859
|
+
InitializationStatusDetails = Shapes::StructureShape.new(name: 'InitializationStatusDetails')
|
1860
|
+
InitializationType = Shapes::StringShape.new(name: 'InitializationType')
|
1859
1861
|
InsideCidrBlocksStringList = Shapes::ListShape.new(name: 'InsideCidrBlocksStringList')
|
1860
1862
|
Instance = Shapes::StructureShape.new(name: 'Instance')
|
1861
1863
|
InstanceAttachmentEnaSrdSpecification = Shapes::StructureShape.new(name: 'InstanceAttachmentEnaSrdSpecification')
|
@@ -5366,6 +5368,7 @@ module Aws::EC2
|
|
5366
5368
|
CreateInstanceConnectEndpointRequest.add_member(:preserve_client_ip, Shapes::ShapeRef.new(shape: Boolean, location_name: "PreserveClientIp"))
|
5367
5369
|
CreateInstanceConnectEndpointRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
|
5368
5370
|
CreateInstanceConnectEndpointRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
|
5371
|
+
CreateInstanceConnectEndpointRequest.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IpAddressType, location_name: "IpAddressType"))
|
5369
5372
|
CreateInstanceConnectEndpointRequest.struct_class = Types::CreateInstanceConnectEndpointRequest
|
5370
5373
|
|
5371
5374
|
CreateInstanceConnectEndpointResult.add_member(:instance_connect_endpoint, Shapes::ShapeRef.new(shape: Ec2InstanceConnectEndpoint, location_name: "instanceConnectEndpoint"))
|
@@ -9415,6 +9418,7 @@ module Aws::EC2
|
|
9415
9418
|
Ec2InstanceConnectEndpoint.add_member(:preserve_client_ip, Shapes::ShapeRef.new(shape: Boolean, location_name: "preserveClientIp"))
|
9416
9419
|
Ec2InstanceConnectEndpoint.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIdSet, location_name: "securityGroupIdSet"))
|
9417
9420
|
Ec2InstanceConnectEndpoint.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
|
9421
|
+
Ec2InstanceConnectEndpoint.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IpAddressType, location_name: "ipAddressType"))
|
9418
9422
|
Ec2InstanceConnectEndpoint.struct_class = Types::Ec2InstanceConnectEndpoint
|
9419
9423
|
|
9420
9424
|
EfaInfo.add_member(:maximum_efa_interfaces, Shapes::ShapeRef.new(shape: MaximumEfaInterfaces, location_name: "maximumEfaInterfaces"))
|
@@ -11151,6 +11155,11 @@ module Aws::EC2
|
|
11151
11155
|
InferenceDeviceMemoryInfo.add_member(:size_in_mi_b, Shapes::ShapeRef.new(shape: InferenceDeviceMemorySize, location_name: "sizeInMiB"))
|
11152
11156
|
InferenceDeviceMemoryInfo.struct_class = Types::InferenceDeviceMemoryInfo
|
11153
11157
|
|
11158
|
+
InitializationStatusDetails.add_member(:initialization_type, Shapes::ShapeRef.new(shape: InitializationType, location_name: "initializationType"))
|
11159
|
+
InitializationStatusDetails.add_member(:progress, Shapes::ShapeRef.new(shape: Long, location_name: "progress"))
|
11160
|
+
InitializationStatusDetails.add_member(:estimated_time_to_complete_in_seconds, Shapes::ShapeRef.new(shape: Long, location_name: "estimatedTimeToCompleteInSeconds"))
|
11161
|
+
InitializationStatusDetails.struct_class = Types::InitializationStatusDetails
|
11162
|
+
|
11154
11163
|
InsideCidrBlocksStringList.member = Shapes::ShapeRef.new(shape: String, location_name: "item")
|
11155
11164
|
|
11156
11165
|
Instance.add_member(:architecture, Shapes::ShapeRef.new(shape: ArchitectureValues, location_name: "architecture"))
|
@@ -17300,6 +17309,7 @@ module Aws::EC2
|
|
17300
17309
|
VolumeStatusItem.add_member(:volume_id, Shapes::ShapeRef.new(shape: String, location_name: "volumeId"))
|
17301
17310
|
VolumeStatusItem.add_member(:volume_status, Shapes::ShapeRef.new(shape: VolumeStatusInfo, location_name: "volumeStatus"))
|
17302
17311
|
VolumeStatusItem.add_member(:attachment_statuses, Shapes::ShapeRef.new(shape: VolumeStatusAttachmentStatusList, location_name: "attachmentStatuses"))
|
17312
|
+
VolumeStatusItem.add_member(:initialization_status_details, Shapes::ShapeRef.new(shape: InitializationStatusDetails, location_name: "initializationStatusDetails"))
|
17303
17313
|
VolumeStatusItem.add_member(:availability_zone_id, Shapes::ShapeRef.new(shape: String, location_name: "availabilityZoneId"))
|
17304
17314
|
VolumeStatusItem.struct_class = Types::VolumeStatusItem
|
17305
17315
|
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -9769,6 +9769,12 @@ module Aws::EC2
|
|
9769
9769
|
#
|
9770
9770
|
# * `false` - Use the network interface IP address as the source.
|
9771
9771
|
#
|
9772
|
+
# <note markdown="1"> `PreserveClientIp` is only supported on IPv4 EC2 Instance Connect
|
9773
|
+
# Endpoints. To use `PreserveClientIp`, the value for `IpAddressType`
|
9774
|
+
# must be `ipv4`.
|
9775
|
+
#
|
9776
|
+
# </note>
|
9777
|
+
#
|
9772
9778
|
# Default: `false`
|
9773
9779
|
# @return [Boolean]
|
9774
9780
|
#
|
@@ -9785,6 +9791,25 @@ module Aws::EC2
|
|
9785
9791
|
# creation.
|
9786
9792
|
# @return [Array<Types::TagSpecification>]
|
9787
9793
|
#
|
9794
|
+
# @!attribute [rw] ip_address_type
|
9795
|
+
# The IP address type of the endpoint.
|
9796
|
+
#
|
9797
|
+
# If no value is specified, the default value is determined by the IP
|
9798
|
+
# address type of the subnet:
|
9799
|
+
#
|
9800
|
+
# * `dualstack` - If the subnet has both IPv4 and IPv6 CIDRs
|
9801
|
+
#
|
9802
|
+
# * `ipv4` - If the subnet has only IPv4 CIDRs
|
9803
|
+
#
|
9804
|
+
# * `ipv6` - If the subnet has only IPv6 CIDRs
|
9805
|
+
#
|
9806
|
+
# <note markdown="1"> `PreserveClientIp` is only supported on IPv4 EC2 Instance Connect
|
9807
|
+
# Endpoints. To use `PreserveClientIp`, the value for `IpAddressType`
|
9808
|
+
# must be `ipv4`.
|
9809
|
+
#
|
9810
|
+
# </note>
|
9811
|
+
# @return [String]
|
9812
|
+
#
|
9788
9813
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateInstanceConnectEndpointRequest AWS API Documentation
|
9789
9814
|
#
|
9790
9815
|
class CreateInstanceConnectEndpointRequest < Struct.new(
|
@@ -9793,7 +9818,8 @@ module Aws::EC2
|
|
9793
9818
|
:security_group_ids,
|
9794
9819
|
:preserve_client_ip,
|
9795
9820
|
:client_token,
|
9796
|
-
:tag_specifications
|
9821
|
+
:tag_specifications,
|
9822
|
+
:ip_address_type)
|
9797
9823
|
SENSITIVE = []
|
9798
9824
|
include Aws::Structure
|
9799
9825
|
end
|
@@ -34932,6 +34958,8 @@ module Aws::EC2
|
|
34932
34958
|
# @return [String]
|
34933
34959
|
#
|
34934
34960
|
# @!attribute [rw] fips_dns_name
|
34961
|
+
# The Federal Information Processing Standards (FIPS) compliant DNS
|
34962
|
+
# name of the EC2 Instance Connect Endpoint.
|
34935
34963
|
# @return [String]
|
34936
34964
|
#
|
34937
34965
|
# @!attribute [rw] network_interface_ids
|
@@ -34982,6 +35010,10 @@ module Aws::EC2
|
|
34982
35010
|
# The tags assigned to the EC2 Instance Connect Endpoint.
|
34983
35011
|
# @return [Array<Types::Tag>]
|
34984
35012
|
#
|
35013
|
+
# @!attribute [rw] ip_address_type
|
35014
|
+
# The IP address type of the endpoint.
|
35015
|
+
# @return [String]
|
35016
|
+
#
|
34985
35017
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Ec2InstanceConnectEndpoint AWS API Documentation
|
34986
35018
|
#
|
34987
35019
|
class Ec2InstanceConnectEndpoint < Struct.new(
|
@@ -34999,7 +35031,8 @@ module Aws::EC2
|
|
34999
35031
|
:subnet_id,
|
35000
35032
|
:preserve_client_ip,
|
35001
35033
|
:security_group_ids,
|
35002
|
-
:tags
|
35034
|
+
:tags,
|
35035
|
+
:ip_address_type)
|
35003
35036
|
SENSITIVE = []
|
35004
35037
|
include Aws::Structure
|
35005
35038
|
end
|
@@ -44403,6 +44436,46 @@ module Aws::EC2
|
|
44403
44436
|
include Aws::Structure
|
44404
44437
|
end
|
44405
44438
|
|
44439
|
+
# Information about the volume initialization. For more information, see
|
44440
|
+
# [Initialize Amazon EBS volumes][1].
|
44441
|
+
#
|
44442
|
+
#
|
44443
|
+
#
|
44444
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/initalize-volume.html
|
44445
|
+
#
|
44446
|
+
# @!attribute [rw] initialization_type
|
44447
|
+
# The method used for volume initialization. Possible values include:
|
44448
|
+
#
|
44449
|
+
# * `default` - Volume initialized using the default volume
|
44450
|
+
# initialization rate or fast snapshot restore.
|
44451
|
+
#
|
44452
|
+
# * `provisioned-rate` - Volume initialized using an Amazon EBS
|
44453
|
+
# Provisioned Rate for Volume Initialization.
|
44454
|
+
# @return [String]
|
44455
|
+
#
|
44456
|
+
# @!attribute [rw] progress
|
44457
|
+
# The current volume initialization progress as a percentage (0-100).
|
44458
|
+
# Returns `100` when volume initialization has completed.
|
44459
|
+
# @return [Integer]
|
44460
|
+
#
|
44461
|
+
# @!attribute [rw] estimated_time_to_complete_in_seconds
|
44462
|
+
# The estimated remaining time, in seconds, for volume initialization
|
44463
|
+
# to complete. Returns `0` when volume initialization has completed.
|
44464
|
+
#
|
44465
|
+
# Only available for volumes created with Amazon EBS Provisioned Rate
|
44466
|
+
# for Volume Initialization.
|
44467
|
+
# @return [Integer]
|
44468
|
+
#
|
44469
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InitializationStatusDetails AWS API Documentation
|
44470
|
+
#
|
44471
|
+
class InitializationStatusDetails < Struct.new(
|
44472
|
+
:initialization_type,
|
44473
|
+
:progress,
|
44474
|
+
:estimated_time_to_complete_in_seconds)
|
44475
|
+
SENSITIVE = []
|
44476
|
+
include Aws::Structure
|
44477
|
+
end
|
44478
|
+
|
44406
44479
|
# Describes an instance.
|
44407
44480
|
#
|
44408
44481
|
# @!attribute [rw] architecture
|
@@ -76956,6 +77029,21 @@ module Aws::EC2
|
|
76956
77029
|
#
|
76957
77030
|
# @!attribute [rw] name
|
76958
77031
|
# The name of the volume status.
|
77032
|
+
#
|
77033
|
+
# * `io-enabled` - Indicates the volume I/O status. For more
|
77034
|
+
# information, see [Amazon EBS volume status checks][1].
|
77035
|
+
#
|
77036
|
+
# * `io-performance` - Indicates the volume performance status. For
|
77037
|
+
# more information, see [Amazon EBS volume status checks][1].
|
77038
|
+
#
|
77039
|
+
# * `initialization-state` - Indicates the status of the volume
|
77040
|
+
# initialization process. For more information, see [Initialize
|
77041
|
+
# Amazon EBS volumes][2].
|
77042
|
+
#
|
77043
|
+
#
|
77044
|
+
#
|
77045
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/monitoring-volume-checks.html
|
77046
|
+
# [2]: https://docs.aws.amazon.com/ebs/latest/userguide/initalize-volume.html
|
76959
77047
|
# @return [String]
|
76960
77048
|
#
|
76961
77049
|
# @!attribute [rw] status
|
@@ -77059,6 +77147,20 @@ module Aws::EC2
|
|
77059
77147
|
# Information about the instances to which the volume is attached.
|
77060
77148
|
# @return [Array<Types::VolumeStatusAttachmentStatus>]
|
77061
77149
|
#
|
77150
|
+
# @!attribute [rw] initialization_status_details
|
77151
|
+
# Information about the volume initialization. It can take up to 5
|
77152
|
+
# minutes for the volume initialization information to be updated.
|
77153
|
+
#
|
77154
|
+
# Only available for volumes created from snapshots. Not available for
|
77155
|
+
# empty volumes created without a snapshot.
|
77156
|
+
#
|
77157
|
+
# For more information, see [ Initialize Amazon EBS volumes][1].
|
77158
|
+
#
|
77159
|
+
#
|
77160
|
+
#
|
77161
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/initalize-volume.html
|
77162
|
+
# @return [Types::InitializationStatusDetails]
|
77163
|
+
#
|
77062
77164
|
# @!attribute [rw] availability_zone_id
|
77063
77165
|
# The ID of the Availability Zone.
|
77064
77166
|
# @return [String]
|
@@ -77073,6 +77175,7 @@ module Aws::EC2
|
|
77073
77175
|
:volume_id,
|
77074
77176
|
:volume_status,
|
77075
77177
|
:attachment_statuses,
|
77178
|
+
:initialization_status_details,
|
77076
77179
|
:availability_zone_id)
|
77077
77180
|
SENSITIVE = []
|
77078
77181
|
include Aws::Structure
|
data/lib/aws-sdk-ec2.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -1770,7 +1770,8 @@ module Aws
|
|
1770
1770
|
},
|
1771
1771
|
]?
|
1772
1772
|
},
|
1773
|
-
]
|
1773
|
+
],
|
1774
|
+
?ip_address_type: ("ipv4" | "dualstack" | "ipv6")
|
1774
1775
|
) -> _CreateInstanceConnectEndpointResponseSuccess
|
1775
1776
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateInstanceConnectEndpointResponseSuccess
|
1776
1777
|
|
data/sig/types.rbs
CHANGED
@@ -2165,6 +2165,7 @@ module Aws::EC2
|
|
2165
2165
|
attr_accessor preserve_client_ip: bool
|
2166
2166
|
attr_accessor client_token: ::String
|
2167
2167
|
attr_accessor tag_specifications: ::Array[Types::TagSpecification]
|
2168
|
+
attr_accessor ip_address_type: ("ipv4" | "dualstack" | "ipv6")
|
2168
2169
|
SENSITIVE: []
|
2169
2170
|
end
|
2170
2171
|
|
@@ -7694,6 +7695,7 @@ module Aws::EC2
|
|
7694
7695
|
attr_accessor preserve_client_ip: bool
|
7695
7696
|
attr_accessor security_group_ids: ::Array[::String]
|
7696
7697
|
attr_accessor tags: ::Array[Types::Tag]
|
7698
|
+
attr_accessor ip_address_type: ("ipv4" | "dualstack" | "ipv6")
|
7697
7699
|
SENSITIVE: []
|
7698
7700
|
end
|
7699
7701
|
|
@@ -9821,6 +9823,13 @@ module Aws::EC2
|
|
9821
9823
|
SENSITIVE: []
|
9822
9824
|
end
|
9823
9825
|
|
9826
|
+
class InitializationStatusDetails
|
9827
|
+
attr_accessor initialization_type: ("default" | "provisioned-rate")
|
9828
|
+
attr_accessor progress: ::Integer
|
9829
|
+
attr_accessor estimated_time_to_complete_in_seconds: ::Integer
|
9830
|
+
SENSITIVE: []
|
9831
|
+
end
|
9832
|
+
|
9824
9833
|
class Instance
|
9825
9834
|
attr_accessor architecture: ("i386" | "x86_64" | "arm64" | "x86_64_mac" | "arm64_mac")
|
9826
9835
|
attr_accessor block_device_mappings: ::Array[Types::InstanceBlockDeviceMapping]
|
@@ -16694,7 +16703,7 @@ module Aws::EC2
|
|
16694
16703
|
end
|
16695
16704
|
|
16696
16705
|
class VolumeStatusDetails
|
16697
|
-
attr_accessor name: ("io-enabled" | "io-performance")
|
16706
|
+
attr_accessor name: ("io-enabled" | "io-performance" | "initialization-state")
|
16698
16707
|
attr_accessor status: ::String
|
16699
16708
|
SENSITIVE: []
|
16700
16709
|
end
|
@@ -16723,6 +16732,7 @@ module Aws::EC2
|
|
16723
16732
|
attr_accessor volume_id: ::String
|
16724
16733
|
attr_accessor volume_status: Types::VolumeStatusInfo
|
16725
16734
|
attr_accessor attachment_statuses: ::Array[Types::VolumeStatusAttachmentStatus]
|
16735
|
+
attr_accessor initialization_status_details: Types::InitializationStatusDetails
|
16726
16736
|
attr_accessor availability_zone_id: ::String
|
16727
16737
|
SENSITIVE: []
|
16728
16738
|
end
|