aws-sdk-ec2 1.644.0 → 1.646.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 +32 -3
- data/lib/aws-sdk-ec2/client_api.rb +9 -0
- data/lib/aws-sdk-ec2/types.rb +38 -2
- data/lib/aws-sdk-ec2/volume.rb +12 -0
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +5 -1
- data/sig/types.rbs +5 -0
- data/sig/volume.rbs +6 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cbe557a6feb61abc94c7d16acde1e2311955bfa096681df3c1bd0ae58189565b
|
|
4
|
+
data.tar.gz: 96f254ca5b1acf8a371d99530272aa5cece647a6948a35db75196338b666fc89
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: aff88d07222e104e74bffa434d647bb3f68697ef04e852d837df3dfc0061ab43bd3ca754e1d281d0b945355728bab6b3fcc6df0b5ff54821ce746bdf3127818c
|
|
7
|
+
data.tar.gz: 034a74304e5a4968483ff1c78cc1a408788297bd99245ab90dcf98cc3bcfce7051b15f573b361767d4fe429ae40191bc847b38d7e3ca12a83af50b0984ac3d97
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.646.0 (2026-09-09)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release adds support for sharing Amazon EBS volumes across AWS accounts using AWS Resource Access Manager (RAM). Consuming accounts can view shared volume metadata and create copies of shared volumes within the same Availability Zone, with optional re-encryption using their own KMS key.
|
|
8
|
+
|
|
9
|
+
1.645.0 (2026-09-08)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Adds the InterfaceTypes field to NetworkCardInfo in the DescribeInstanceTypes response. This field identifies the network interface types supported by each network card.
|
|
13
|
+
|
|
4
14
|
1.644.0 (2026-09-04)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.646.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
|
@@ -5926,6 +5926,23 @@ module Aws::EC2
|
|
|
5926
5926
|
#
|
|
5927
5927
|
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
|
5928
5928
|
#
|
|
5929
|
+
# @option params [Boolean] :encrypted
|
|
5930
|
+
# Indicates whether to encrypt the volume copy. If the source volume is
|
|
5931
|
+
# encrypted, the service always encrypts the copy regardless of this
|
|
5932
|
+
# value. Set to `true` to encrypt a copy of an unencrypted source volume
|
|
5933
|
+
# during the copy operation. If you set `Encrypted` to `true` but do not
|
|
5934
|
+
# specify `KmsKeyId`, the service uses the default KMS key for EBS
|
|
5935
|
+
# encryption in your account.
|
|
5936
|
+
#
|
|
5937
|
+
# @option params [String] :kms_key_id
|
|
5938
|
+
# The identifier of the KMS key to use for encryption of the volume
|
|
5939
|
+
# copy. Specify a symmetric encryption KMS key. You can specify a KMS
|
|
5940
|
+
# key using the key ID, key ARN, alias name, or alias ARN. If you set
|
|
5941
|
+
# `Encrypted` to `true` but do not specify this parameter, the service
|
|
5942
|
+
# uses the default KMS key for EBS encryption in your account. For
|
|
5943
|
+
# cross-account volume copies, this must be a KMS key in the calling
|
|
5944
|
+
# account.
|
|
5945
|
+
#
|
|
5929
5946
|
# @return [Types::CopyVolumesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5930
5947
|
#
|
|
5931
5948
|
# * {Types::CopyVolumesResult#volumes #volumes} => Array<Types::Volume>
|
|
@@ -5952,6 +5969,8 @@ module Aws::EC2
|
|
|
5952
5969
|
# multi_attach_enabled: false,
|
|
5953
5970
|
# throughput: 1,
|
|
5954
5971
|
# client_token: "String",
|
|
5972
|
+
# encrypted: false,
|
|
5973
|
+
# kms_key_id: "KmsKeyId",
|
|
5955
5974
|
# })
|
|
5956
5975
|
#
|
|
5957
5976
|
# @example Response structure
|
|
@@ -5973,6 +5992,8 @@ module Aws::EC2
|
|
|
5973
5992
|
# resp.volumes[0].operator.principal #=> String
|
|
5974
5993
|
# resp.volumes[0].operator.hidden_by_default #=> Boolean
|
|
5975
5994
|
# resp.volumes[0].volume_initialization_rate #=> Integer
|
|
5995
|
+
# resp.volumes[0].volume_arn #=> String
|
|
5996
|
+
# resp.volumes[0].owner_id #=> String
|
|
5976
5997
|
# resp.volumes[0].volume_id #=> String
|
|
5977
5998
|
# resp.volumes[0].size #=> Integer
|
|
5978
5999
|
# resp.volumes[0].snapshot_id #=> String
|
|
@@ -18896,6 +18917,8 @@ module Aws::EC2
|
|
|
18896
18917
|
# * {Types::Volume#sse_type #sse_type} => String
|
|
18897
18918
|
# * {Types::Volume#operator #operator} => Types::OperatorResponse
|
|
18898
18919
|
# * {Types::Volume#volume_initialization_rate #volume_initialization_rate} => Integer
|
|
18920
|
+
# * {Types::Volume#volume_arn #volume_arn} => String
|
|
18921
|
+
# * {Types::Volume#owner_id #owner_id} => String
|
|
18899
18922
|
# * {Types::Volume#volume_id #volume_id} => String
|
|
18900
18923
|
# * {Types::Volume#size #size} => Integer
|
|
18901
18924
|
# * {Types::Volume#snapshot_id #snapshot_id} => String
|
|
@@ -19009,6 +19032,8 @@ module Aws::EC2
|
|
|
19009
19032
|
# resp.operator.principal #=> String
|
|
19010
19033
|
# resp.operator.hidden_by_default #=> Boolean
|
|
19011
19034
|
# resp.volume_initialization_rate #=> Integer
|
|
19035
|
+
# resp.volume_arn #=> String
|
|
19036
|
+
# resp.owner_id #=> String
|
|
19012
19037
|
# resp.volume_id #=> String
|
|
19013
19038
|
# resp.size #=> Integer
|
|
19014
19039
|
# resp.snapshot_id #=> String
|
|
@@ -32562,8 +32587,8 @@ module Aws::EC2
|
|
|
32562
32587
|
#
|
|
32563
32588
|
# If you specify one or more instance IDs, Amazon EC2 returns the credit
|
|
32564
32589
|
# option (`standard` or `unlimited`) of those instances. If you specify
|
|
32565
|
-
# an instance ID that is not
|
|
32566
|
-
#
|
|
32590
|
+
# an instance ID that is not a burstable performance instance, Amazon
|
|
32591
|
+
# EC2 returns the `standard` credit option.
|
|
32567
32592
|
#
|
|
32568
32593
|
# Recently terminated instances might appear in the returned results.
|
|
32569
32594
|
# This interval is usually less than one hour.
|
|
@@ -33968,6 +33993,8 @@ module Aws::EC2
|
|
|
33968
33993
|
# resp.instance_types[0].network_info.network_cards[0].default_ena_queue_count_per_interface #=> Integer
|
|
33969
33994
|
# resp.instance_types[0].network_info.network_cards[0].maximum_ena_queue_count #=> Integer
|
|
33970
33995
|
# resp.instance_types[0].network_info.network_cards[0].maximum_ena_queue_count_per_interface #=> Integer
|
|
33996
|
+
# resp.instance_types[0].network_info.network_cards[0].interface_types #=> Array
|
|
33997
|
+
# resp.instance_types[0].network_info.network_cards[0].interface_types[0] #=> String, one of "interface", "efa", "efa-only", "secondary"
|
|
33971
33998
|
# resp.instance_types[0].network_info.ipv_4_addresses_per_interface #=> Integer
|
|
33972
33999
|
# resp.instance_types[0].network_info.ipv_6_addresses_per_interface #=> Integer
|
|
33973
34000
|
# resp.instance_types[0].network_info.ipv_6_supported #=> Boolean
|
|
@@ -47390,6 +47417,8 @@ module Aws::EC2
|
|
|
47390
47417
|
# resp.volumes[0].operator.principal #=> String
|
|
47391
47418
|
# resp.volumes[0].operator.hidden_by_default #=> Boolean
|
|
47392
47419
|
# resp.volumes[0].volume_initialization_rate #=> Integer
|
|
47420
|
+
# resp.volumes[0].volume_arn #=> String
|
|
47421
|
+
# resp.volumes[0].owner_id #=> String
|
|
47393
47422
|
# resp.volumes[0].volume_id #=> String
|
|
47394
47423
|
# resp.volumes[0].size #=> Integer
|
|
47395
47424
|
# resp.volumes[0].snapshot_id #=> String
|
|
@@ -77378,7 +77407,7 @@ module Aws::EC2
|
|
|
77378
77407
|
tracer: tracer
|
|
77379
77408
|
)
|
|
77380
77409
|
context[:gem_name] = 'aws-sdk-ec2'
|
|
77381
|
-
context[:gem_version] = '1.
|
|
77410
|
+
context[:gem_version] = '1.646.0'
|
|
77382
77411
|
Seahorse::Client::Request.new(handlers, context)
|
|
77383
77412
|
end
|
|
77384
77413
|
|
|
@@ -3025,6 +3025,8 @@ module Aws::EC2
|
|
|
3025
3025
|
NetworkCardIndex = Shapes::IntegerShape.new(name: 'NetworkCardIndex')
|
|
3026
3026
|
NetworkCardInfo = Shapes::StructureShape.new(name: 'NetworkCardInfo')
|
|
3027
3027
|
NetworkCardInfoList = Shapes::ListShape.new(name: 'NetworkCardInfoList')
|
|
3028
|
+
NetworkCardInterfaceType = Shapes::StringShape.new(name: 'NetworkCardInterfaceType')
|
|
3029
|
+
NetworkCardInterfaceTypeList = Shapes::ListShape.new(name: 'NetworkCardInterfaceTypeList')
|
|
3028
3030
|
NetworkInfo = Shapes::StructureShape.new(name: 'NetworkInfo')
|
|
3029
3031
|
NetworkInsightsAccessScope = Shapes::StructureShape.new(name: 'NetworkInsightsAccessScope')
|
|
3030
3032
|
NetworkInsightsAccessScopeAnalysis = Shapes::StructureShape.new(name: 'NetworkInsightsAccessScopeAnalysis')
|
|
@@ -6035,6 +6037,8 @@ module Aws::EC2
|
|
|
6035
6037
|
CopyVolumesRequest.add_member(:multi_attach_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "MultiAttachEnabled"))
|
|
6036
6038
|
CopyVolumesRequest.add_member(:throughput, Shapes::ShapeRef.new(shape: Integer, location_name: "Throughput"))
|
|
6037
6039
|
CopyVolumesRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
|
|
6040
|
+
CopyVolumesRequest.add_member(:encrypted, Shapes::ShapeRef.new(shape: Boolean, location_name: "Encrypted"))
|
|
6041
|
+
CopyVolumesRequest.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "KmsKeyId"))
|
|
6038
6042
|
CopyVolumesRequest.struct_class = Types::CopyVolumesRequest
|
|
6039
6043
|
|
|
6040
6044
|
CopyVolumesResult.add_member(:volumes, Shapes::ShapeRef.new(shape: VolumeList, location_name: "volumeSet"))
|
|
@@ -16465,10 +16469,13 @@ module Aws::EC2
|
|
|
16465
16469
|
NetworkCardInfo.add_member(:default_ena_queue_count_per_interface, Shapes::ShapeRef.new(shape: DefaultEnaQueueCountPerInterface, location_name: "defaultEnaQueueCountPerInterface"))
|
|
16466
16470
|
NetworkCardInfo.add_member(:maximum_ena_queue_count, Shapes::ShapeRef.new(shape: MaximumEnaQueueCount, location_name: "maximumEnaQueueCount"))
|
|
16467
16471
|
NetworkCardInfo.add_member(:maximum_ena_queue_count_per_interface, Shapes::ShapeRef.new(shape: MaximumEnaQueueCountPerInterface, location_name: "maximumEnaQueueCountPerInterface"))
|
|
16472
|
+
NetworkCardInfo.add_member(:interface_types, Shapes::ShapeRef.new(shape: NetworkCardInterfaceTypeList, location_name: "interfaceTypeSet"))
|
|
16468
16473
|
NetworkCardInfo.struct_class = Types::NetworkCardInfo
|
|
16469
16474
|
|
|
16470
16475
|
NetworkCardInfoList.member = Shapes::ShapeRef.new(shape: NetworkCardInfo, location_name: "item")
|
|
16471
16476
|
|
|
16477
|
+
NetworkCardInterfaceTypeList.member = Shapes::ShapeRef.new(shape: NetworkCardInterfaceType, location_name: "item")
|
|
16478
|
+
|
|
16472
16479
|
NetworkInfo.add_member(:network_performance, Shapes::ShapeRef.new(shape: NetworkPerformance, location_name: "networkPerformance"))
|
|
16473
16480
|
NetworkInfo.add_member(:maximum_network_interfaces, Shapes::ShapeRef.new(shape: MaxNetworkInterfaces, location_name: "maximumNetworkInterfaces"))
|
|
16474
16481
|
NetworkInfo.add_member(:maximum_network_cards, Shapes::ShapeRef.new(shape: MaximumNetworkCards, location_name: "maximumNetworkCards"))
|
|
@@ -20330,6 +20337,8 @@ module Aws::EC2
|
|
|
20330
20337
|
Volume.add_member(:sse_type, Shapes::ShapeRef.new(shape: SSEType, location_name: "sseType"))
|
|
20331
20338
|
Volume.add_member(:operator, Shapes::ShapeRef.new(shape: OperatorResponse, location_name: "operator"))
|
|
20332
20339
|
Volume.add_member(:volume_initialization_rate, Shapes::ShapeRef.new(shape: Integer, location_name: "volumeInitializationRate"))
|
|
20340
|
+
Volume.add_member(:volume_arn, Shapes::ShapeRef.new(shape: String, location_name: "volumeArn"))
|
|
20341
|
+
Volume.add_member(:owner_id, Shapes::ShapeRef.new(shape: String, location_name: "ownerId"))
|
|
20333
20342
|
Volume.add_member(:volume_id, Shapes::ShapeRef.new(shape: String, location_name: "volumeId"))
|
|
20334
20343
|
Volume.add_member(:size, Shapes::ShapeRef.new(shape: Integer, location_name: "size"))
|
|
20335
20344
|
Volume.add_member(:snapshot_id, Shapes::ShapeRef.new(shape: String, location_name: "snapshotId"))
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
|
@@ -9434,6 +9434,25 @@ module Aws::EC2
|
|
|
9434
9434
|
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
|
9435
9435
|
# @return [String]
|
|
9436
9436
|
#
|
|
9437
|
+
# @!attribute [rw] encrypted
|
|
9438
|
+
# Indicates whether to encrypt the volume copy. If the source volume
|
|
9439
|
+
# is encrypted, the service always encrypts the copy regardless of
|
|
9440
|
+
# this value. Set to `true` to encrypt a copy of an unencrypted source
|
|
9441
|
+
# volume during the copy operation. If you set `Encrypted` to `true`
|
|
9442
|
+
# but do not specify `KmsKeyId`, the service uses the default KMS key
|
|
9443
|
+
# for EBS encryption in your account.
|
|
9444
|
+
# @return [Boolean]
|
|
9445
|
+
#
|
|
9446
|
+
# @!attribute [rw] kms_key_id
|
|
9447
|
+
# The identifier of the KMS key to use for encryption of the volume
|
|
9448
|
+
# copy. Specify a symmetric encryption KMS key. You can specify a KMS
|
|
9449
|
+
# key using the key ID, key ARN, alias name, or alias ARN. If you set
|
|
9450
|
+
# `Encrypted` to `true` but do not specify this parameter, the service
|
|
9451
|
+
# uses the default KMS key for EBS encryption in your account. For
|
|
9452
|
+
# cross-account volume copies, this must be a KMS key in the calling
|
|
9453
|
+
# account.
|
|
9454
|
+
# @return [String]
|
|
9455
|
+
#
|
|
9437
9456
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CopyVolumesRequest AWS API Documentation
|
|
9438
9457
|
#
|
|
9439
9458
|
class CopyVolumesRequest < Struct.new(
|
|
@@ -9445,7 +9464,9 @@ module Aws::EC2
|
|
|
9445
9464
|
:tag_specifications,
|
|
9446
9465
|
:multi_attach_enabled,
|
|
9447
9466
|
:throughput,
|
|
9448
|
-
:client_token
|
|
9467
|
+
:client_token,
|
|
9468
|
+
:encrypted,
|
|
9469
|
+
:kms_key_id)
|
|
9449
9470
|
SENSITIVE = []
|
|
9450
9471
|
include Aws::Structure
|
|
9451
9472
|
end
|
|
@@ -71205,6 +71226,10 @@ module Aws::EC2
|
|
|
71205
71226
|
# The maximum number of the ENA queues for each interface.
|
|
71206
71227
|
# @return [Integer]
|
|
71207
71228
|
#
|
|
71229
|
+
# @!attribute [rw] interface_types
|
|
71230
|
+
# The supported interface types for the network card.
|
|
71231
|
+
# @return [Array<String>]
|
|
71232
|
+
#
|
|
71208
71233
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/NetworkCardInfo AWS API Documentation
|
|
71209
71234
|
#
|
|
71210
71235
|
class NetworkCardInfo < Struct.new(
|
|
@@ -71216,7 +71241,8 @@ module Aws::EC2
|
|
|
71216
71241
|
:peak_bandwidth_in_gbps,
|
|
71217
71242
|
:default_ena_queue_count_per_interface,
|
|
71218
71243
|
:maximum_ena_queue_count,
|
|
71219
|
-
:maximum_ena_queue_count_per_interface
|
|
71244
|
+
:maximum_ena_queue_count_per_interface,
|
|
71245
|
+
:interface_types)
|
|
71220
71246
|
SENSITIVE = []
|
|
71221
71247
|
include Aws::Structure
|
|
71222
71248
|
end
|
|
@@ -90377,6 +90403,14 @@ module Aws::EC2
|
|
|
90377
90403
|
# `null`.
|
|
90378
90404
|
# @return [Integer]
|
|
90379
90405
|
#
|
|
90406
|
+
# @!attribute [rw] volume_arn
|
|
90407
|
+
# The Amazon Resource Name (ARN) of the volume.
|
|
90408
|
+
# @return [String]
|
|
90409
|
+
#
|
|
90410
|
+
# @!attribute [rw] owner_id
|
|
90411
|
+
# The ID of the Amazon Web Services account that owns the volume.
|
|
90412
|
+
# @return [String]
|
|
90413
|
+
#
|
|
90380
90414
|
# @!attribute [rw] volume_id
|
|
90381
90415
|
# The ID of the volume.
|
|
90382
90416
|
# @return [String]
|
|
@@ -90433,6 +90467,8 @@ module Aws::EC2
|
|
|
90433
90467
|
:sse_type,
|
|
90434
90468
|
:operator,
|
|
90435
90469
|
:volume_initialization_rate,
|
|
90470
|
+
:volume_arn,
|
|
90471
|
+
:owner_id,
|
|
90436
90472
|
:volume_id,
|
|
90437
90473
|
:size,
|
|
90438
90474
|
:snapshot_id,
|
data/lib/aws-sdk-ec2/volume.rb
CHANGED
|
@@ -123,6 +123,18 @@ module Aws::EC2
|
|
|
123
123
|
data[:volume_initialization_rate]
|
|
124
124
|
end
|
|
125
125
|
|
|
126
|
+
# The Amazon Resource Name (ARN) of the volume.
|
|
127
|
+
# @return [String]
|
|
128
|
+
def volume_arn
|
|
129
|
+
data[:volume_arn]
|
|
130
|
+
end
|
|
131
|
+
|
|
132
|
+
# The ID of the Amazon Web Services account that owns the volume.
|
|
133
|
+
# @return [String]
|
|
134
|
+
def owner_id
|
|
135
|
+
data[:owner_id]
|
|
136
|
+
end
|
|
137
|
+
|
|
126
138
|
# The size of the volume, in GiBs.
|
|
127
139
|
# @return [Integer]
|
|
128
140
|
def size
|
data/lib/aws-sdk-ec2.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -1122,7 +1122,9 @@ module Aws
|
|
|
1122
1122
|
],
|
|
1123
1123
|
?multi_attach_enabled: bool,
|
|
1124
1124
|
?throughput: ::Integer,
|
|
1125
|
-
?client_token: ::String
|
|
1125
|
+
?client_token: ::String,
|
|
1126
|
+
?encrypted: bool,
|
|
1127
|
+
?kms_key_id: ::String
|
|
1126
1128
|
) -> _CopyVolumesResponseSuccess
|
|
1127
1129
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CopyVolumesResponseSuccess
|
|
1128
1130
|
|
|
@@ -3876,6 +3878,8 @@ module Aws
|
|
|
3876
3878
|
def sse_type: () -> ("sse-ebs" | "sse-kms" | "none")
|
|
3877
3879
|
def operator: () -> Types::OperatorResponse
|
|
3878
3880
|
def volume_initialization_rate: () -> ::Integer
|
|
3881
|
+
def volume_arn: () -> ::String
|
|
3882
|
+
def owner_id: () -> ::String
|
|
3879
3883
|
def volume_id: () -> ::String
|
|
3880
3884
|
def size: () -> ::Integer
|
|
3881
3885
|
def snapshot_id: () -> ::String
|
data/sig/types.rbs
CHANGED
|
@@ -2109,6 +2109,8 @@ module Aws::EC2
|
|
|
2109
2109
|
attr_accessor multi_attach_enabled: bool
|
|
2110
2110
|
attr_accessor throughput: ::Integer
|
|
2111
2111
|
attr_accessor client_token: ::String
|
|
2112
|
+
attr_accessor encrypted: bool
|
|
2113
|
+
attr_accessor kms_key_id: ::String
|
|
2112
2114
|
SENSITIVE: []
|
|
2113
2115
|
end
|
|
2114
2116
|
|
|
@@ -15337,6 +15339,7 @@ module Aws::EC2
|
|
|
15337
15339
|
attr_accessor default_ena_queue_count_per_interface: ::Integer
|
|
15338
15340
|
attr_accessor maximum_ena_queue_count: ::Integer
|
|
15339
15341
|
attr_accessor maximum_ena_queue_count_per_interface: ::Integer
|
|
15342
|
+
attr_accessor interface_types: ::Array[("interface" | "efa" | "efa-only" | "secondary")]
|
|
15340
15343
|
SENSITIVE: []
|
|
15341
15344
|
end
|
|
15342
15345
|
|
|
@@ -19560,6 +19563,8 @@ module Aws::EC2
|
|
|
19560
19563
|
attr_accessor sse_type: ("sse-ebs" | "sse-kms" | "none")
|
|
19561
19564
|
attr_accessor operator: Types::OperatorResponse
|
|
19562
19565
|
attr_accessor volume_initialization_rate: ::Integer
|
|
19566
|
+
attr_accessor volume_arn: ::String
|
|
19567
|
+
attr_accessor owner_id: ::String
|
|
19563
19568
|
attr_accessor volume_id: ::String
|
|
19564
19569
|
attr_accessor size: ::Integer
|
|
19565
19570
|
attr_accessor snapshot_id: ::String
|
data/sig/volume.rbs
CHANGED
|
@@ -54,6 +54,12 @@ module Aws
|
|
|
54
54
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Volume.html#volume_initialization_rate-instance_method
|
|
55
55
|
def volume_initialization_rate: () -> ::Integer
|
|
56
56
|
|
|
57
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Volume.html#volume_arn-instance_method
|
|
58
|
+
def volume_arn: () -> ::String
|
|
59
|
+
|
|
60
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Volume.html#owner_id-instance_method
|
|
61
|
+
def owner_id: () -> ::String
|
|
62
|
+
|
|
57
63
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Volume.html#size-instance_method
|
|
58
64
|
def size: () -> ::Integer
|
|
59
65
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-ec2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.646.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.255.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.255.0
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|