aws-sdk-ec2 1.527.0 → 1.529.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 +154 -52
- data/lib/aws-sdk-ec2/client_api.rb +47 -0
- data/lib/aws-sdk-ec2/image.rb +18 -5
- data/lib/aws-sdk-ec2/resource.rb +10 -9
- data/lib/aws-sdk-ec2/types.rb +220 -21
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +19 -1
- data/sig/image.rbs +1 -0
- data/sig/types.rbs +40 -1
- metadata +1 -1
data/sig/client.rbs
CHANGED
@@ -4341,6 +4341,7 @@ module Aws
|
|
4341
4341
|
]?
|
4342
4342
|
},
|
4343
4343
|
],
|
4344
|
+
?pre_shared_key_storage: ::String,
|
4344
4345
|
?dry_run: bool,
|
4345
4346
|
?options: {
|
4346
4347
|
enable_acceleration: bool?,
|
@@ -5351,10 +5352,13 @@ module Aws
|
|
5351
5352
|
|
5352
5353
|
interface _DeregisterImageResponseSuccess
|
5353
5354
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeregisterImageResult]
|
5355
|
+
def return: () -> bool
|
5356
|
+
def delete_snapshot_results: () -> ::Array[Types::DeleteSnapshotReturnCode]
|
5354
5357
|
end
|
5355
5358
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Client.html#deregister_image-instance_method
|
5356
5359
|
def deregister_image: (
|
5357
5360
|
image_id: ::String,
|
5361
|
+
?delete_associated_snapshots: bool,
|
5358
5362
|
?dry_run: bool
|
5359
5363
|
) -> _DeregisterImageResponseSuccess
|
5360
5364
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeregisterImageResponseSuccess
|
@@ -9416,6 +9420,18 @@ module Aws
|
|
9416
9420
|
) -> _ExportVerifiedAccessInstanceClientConfigurationResponseSuccess
|
9417
9421
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ExportVerifiedAccessInstanceClientConfigurationResponseSuccess
|
9418
9422
|
|
9423
|
+
interface _GetActiveVpnTunnelStatusResponseSuccess
|
9424
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetActiveVpnTunnelStatusResult]
|
9425
|
+
def active_vpn_tunnel_status: () -> Types::ActiveVpnTunnelStatus
|
9426
|
+
end
|
9427
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Client.html#get_active_vpn_tunnel_status-instance_method
|
9428
|
+
def get_active_vpn_tunnel_status: (
|
9429
|
+
vpn_connection_id: ::String,
|
9430
|
+
vpn_tunnel_outside_ip_address: ::String,
|
9431
|
+
?dry_run: bool
|
9432
|
+
) -> _GetActiveVpnTunnelStatusResponseSuccess
|
9433
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetActiveVpnTunnelStatusResponseSuccess
|
9434
|
+
|
9419
9435
|
interface _GetAllowedImagesSettingsResponseSuccess
|
9420
9436
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetAllowedImagesSettingsResult]
|
9421
9437
|
def state: () -> ::String
|
@@ -10406,6 +10422,7 @@ module Aws
|
|
10406
10422
|
vpn_connection_id: ::String,
|
10407
10423
|
vpn_connection_device_type_id: ::String,
|
10408
10424
|
?internet_key_exchange_version: ::String,
|
10425
|
+
?sample_type: ::String,
|
10409
10426
|
?dry_run: bool
|
10410
10427
|
) -> _GetVpnConnectionDeviceSampleConfigurationResponseSuccess
|
10411
10428
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetVpnConnectionDeviceSampleConfigurationResponseSuccess
|
@@ -12311,7 +12328,8 @@ module Aws
|
|
12311
12328
|
enable_tunnel_lifecycle_control: bool?
|
12312
12329
|
},
|
12313
12330
|
?dry_run: bool,
|
12314
|
-
?skip_tunnel_replacement: bool
|
12331
|
+
?skip_tunnel_replacement: bool,
|
12332
|
+
?pre_shared_key_storage: ::String
|
12315
12333
|
) -> _ModifyVpnTunnelOptionsResponseSuccess
|
12316
12334
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyVpnTunnelOptionsResponseSuccess
|
12317
12335
|
|
data/sig/image.rbs
CHANGED
@@ -169,6 +169,7 @@ module Aws
|
|
169
169
|
|
170
170
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Image.html#deregister-instance_method
|
171
171
|
def deregister: (
|
172
|
+
?delete_associated_snapshots: bool,
|
172
173
|
?dry_run: bool
|
173
174
|
) -> Types::DeregisterImageResult
|
174
175
|
| (?Hash[Symbol, untyped]) -> Types::DeregisterImageResult
|
data/sig/types.rbs
CHANGED
@@ -166,6 +166,19 @@ module Aws::EC2
|
|
166
166
|
SENSITIVE: []
|
167
167
|
end
|
168
168
|
|
169
|
+
class ActiveVpnTunnelStatus
|
170
|
+
attr_accessor phase_1_encryption_algorithm: ::String
|
171
|
+
attr_accessor phase_2_encryption_algorithm: ::String
|
172
|
+
attr_accessor phase_1_integrity_algorithm: ::String
|
173
|
+
attr_accessor phase_2_integrity_algorithm: ::String
|
174
|
+
attr_accessor phase_1_dh_group: ::Integer
|
175
|
+
attr_accessor phase_2_dh_group: ::Integer
|
176
|
+
attr_accessor ike_version: ::String
|
177
|
+
attr_accessor provisioning_status: ("available" | "pending" | "failed")
|
178
|
+
attr_accessor provisioning_status_reason: ::String
|
179
|
+
SENSITIVE: []
|
180
|
+
end
|
181
|
+
|
169
182
|
class AddIpamOperatingRegion
|
170
183
|
attr_accessor region_name: ::String
|
171
184
|
SENSITIVE: []
|
@@ -3348,6 +3361,7 @@ module Aws::EC2
|
|
3348
3361
|
attr_accessor vpn_gateway_id: ::String
|
3349
3362
|
attr_accessor transit_gateway_id: ::String
|
3350
3363
|
attr_accessor tag_specifications: ::Array[Types::TagSpecification]
|
3364
|
+
attr_accessor pre_shared_key_storage: ::String
|
3351
3365
|
attr_accessor dry_run: bool
|
3352
3366
|
attr_accessor options: Types::VpnConnectionOptionsSpecification
|
3353
3367
|
SENSITIVE: []
|
@@ -3978,6 +3992,12 @@ module Aws::EC2
|
|
3978
3992
|
SENSITIVE: []
|
3979
3993
|
end
|
3980
3994
|
|
3995
|
+
class DeleteSnapshotReturnCode
|
3996
|
+
attr_accessor snapshot_id: ::String
|
3997
|
+
attr_accessor return_code: ("success" | "skipped" | "missing-permissions" | "internal-error" | "client-error")
|
3998
|
+
SENSITIVE: []
|
3999
|
+
end
|
4000
|
+
|
3981
4001
|
class DeleteSpotDatafeedSubscriptionRequest
|
3982
4002
|
attr_accessor dry_run: bool
|
3983
4003
|
SENSITIVE: []
|
@@ -4357,11 +4377,15 @@ module Aws::EC2
|
|
4357
4377
|
|
4358
4378
|
class DeregisterImageRequest
|
4359
4379
|
attr_accessor image_id: ::String
|
4380
|
+
attr_accessor delete_associated_snapshots: bool
|
4360
4381
|
attr_accessor dry_run: bool
|
4361
4382
|
SENSITIVE: []
|
4362
4383
|
end
|
4363
4384
|
|
4364
|
-
class DeregisterImageResult
|
4385
|
+
class DeregisterImageResult
|
4386
|
+
attr_accessor return: bool
|
4387
|
+
attr_accessor delete_snapshot_results: ::Array[Types::DeleteSnapshotReturnCode]
|
4388
|
+
SENSITIVE: []
|
4365
4389
|
end
|
4366
4390
|
|
4367
4391
|
class DeregisterInstanceEventNotificationAttributesRequest
|
@@ -8444,6 +8468,18 @@ module Aws::EC2
|
|
8444
8468
|
SENSITIVE: []
|
8445
8469
|
end
|
8446
8470
|
|
8471
|
+
class GetActiveVpnTunnelStatusRequest
|
8472
|
+
attr_accessor vpn_connection_id: ::String
|
8473
|
+
attr_accessor vpn_tunnel_outside_ip_address: ::String
|
8474
|
+
attr_accessor dry_run: bool
|
8475
|
+
SENSITIVE: []
|
8476
|
+
end
|
8477
|
+
|
8478
|
+
class GetActiveVpnTunnelStatusResult
|
8479
|
+
attr_accessor active_vpn_tunnel_status: Types::ActiveVpnTunnelStatus
|
8480
|
+
SENSITIVE: []
|
8481
|
+
end
|
8482
|
+
|
8447
8483
|
class GetAllowedImagesSettingsRequest
|
8448
8484
|
attr_accessor dry_run: bool
|
8449
8485
|
SENSITIVE: []
|
@@ -9192,6 +9228,7 @@ module Aws::EC2
|
|
9192
9228
|
attr_accessor vpn_connection_id: ::String
|
9193
9229
|
attr_accessor vpn_connection_device_type_id: ::String
|
9194
9230
|
attr_accessor internet_key_exchange_version: ::String
|
9231
|
+
attr_accessor sample_type: ::String
|
9195
9232
|
attr_accessor dry_run: bool
|
9196
9233
|
SENSITIVE: []
|
9197
9234
|
end
|
@@ -12499,6 +12536,7 @@ module Aws::EC2
|
|
12499
12536
|
attr_accessor tunnel_options: Types::ModifyVpnTunnelOptionsSpecification
|
12500
12537
|
attr_accessor dry_run: bool
|
12501
12538
|
attr_accessor skip_tunnel_replacement: bool
|
12539
|
+
attr_accessor pre_shared_key_storage: ::String
|
12502
12540
|
SENSITIVE: [:tunnel_options]
|
12503
12541
|
end
|
12504
12542
|
|
@@ -16816,6 +16854,7 @@ module Aws::EC2
|
|
16816
16854
|
attr_accessor routes: ::Array[Types::VpnStaticRoute]
|
16817
16855
|
attr_accessor tags: ::Array[Types::Tag]
|
16818
16856
|
attr_accessor vgw_telemetry: ::Array[Types::VgwTelemetry]
|
16857
|
+
attr_accessor pre_shared_key_arn: ::String
|
16819
16858
|
attr_accessor vpn_connection_id: ::String
|
16820
16859
|
attr_accessor state: ("pending" | "available" | "deleting" | "deleted")
|
16821
16860
|
attr_accessor customer_gateway_configuration: ::String
|