aws-sdk-ec2 1.498.0 → 1.500.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 +73 -9
- data/lib/aws-sdk-ec2/client_api.rb +3 -0
- data/lib/aws-sdk-ec2/resource.rb +7 -0
- data/lib/aws-sdk-ec2/subnet.rb +7 -0
- data/lib/aws-sdk-ec2/types.rb +41 -13
- data/lib/aws-sdk-ec2/vpc.rb +7 -0
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +6 -2
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +3 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1dd701e630837be0c67d6a04d59cf3b586db6daa78a7fb0ea4edc81a8aca2c88
|
4
|
+
data.tar.gz: f4f846b35faf8fe68da811b9bbeae0fce4dc7c9e37a24e73773578e671cfd038
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1b0b7bfdb33e384c728a14c2b21ced0cbebc8791caed504eb81cad358a752eb0d86a8572c601247b88d1daf593e50431ea3eadc93e3b8b9f00b199c7f28ed20c
|
7
|
+
data.tar.gz: c86279383f9bad66ff0f1f1a2e2f89ea3ce4488ac1cb4a7cab5cb6bcfec002f0827ba517d98c82ca2435a7a32032adbd62aa40793827944585bcd0b5e7be970e
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.500.0 (2025-01-15)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.499.0 (2025-01-13)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Add support for DisconnectOnSessionTimeout flag in CreateClientVpnEndpoint and ModifyClientVpnEndpoint requests and DescribeClientVpnEndpoints responses
|
13
|
+
|
4
14
|
1.498.0 (2024-12-16)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.500.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -261,11 +261,34 @@ module Aws::EC2
|
|
261
261
|
# Used when loading credentials from the shared credentials file
|
262
262
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
263
263
|
#
|
264
|
+
# @option options [String] :request_checksum_calculation ("when_supported")
|
265
|
+
# Determines when a checksum will be calculated for request payloads. Values are:
|
266
|
+
#
|
267
|
+
# * `when_supported` - (default) When set, a checksum will be
|
268
|
+
# calculated for all request payloads of operations modeled with the
|
269
|
+
# `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
|
270
|
+
# `requestAlgorithmMember` is modeled.
|
271
|
+
# * `when_required` - When set, a checksum will only be calculated for
|
272
|
+
# request payloads of operations modeled with the `httpChecksum` trait where
|
273
|
+
# `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
|
274
|
+
# is modeled and supplied.
|
275
|
+
#
|
264
276
|
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
265
277
|
# The minimum size in bytes that triggers compression for request
|
266
278
|
# bodies. The value must be non-negative integer value between 0
|
267
279
|
# and 10485780 bytes inclusive.
|
268
280
|
#
|
281
|
+
# @option options [String] :response_checksum_validation ("when_supported")
|
282
|
+
# Determines when checksum validation will be performed on response payloads. Values are:
|
283
|
+
#
|
284
|
+
# * `when_supported` - (default) When set, checksum validation is performed on all
|
285
|
+
# response payloads of operations modeled with the `httpChecksum` trait where
|
286
|
+
# `responseAlgorithms` is modeled, except when no modeled checksum algorithms
|
287
|
+
# are supported.
|
288
|
+
# * `when_required` - When set, checksum validation is not performed on
|
289
|
+
# response payloads of operations unless the checksum algorithm is supported and
|
290
|
+
# the `requestValidationModeMember` member is set to `ENABLED`.
|
291
|
+
#
|
269
292
|
# @option options [Proc] :retry_backoff
|
270
293
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
271
294
|
# This option is only used in the `legacy` retry mode.
|
@@ -4084,6 +4107,11 @@ module Aws::EC2
|
|
4084
4107
|
# duration has elapsed. You can't cancel a future-dated Capacity
|
4085
4108
|
# Reservation during the commitment duration.
|
4086
4109
|
#
|
4110
|
+
# <note markdown="1"> You can't modify or cancel a Capacity Block. For more information,
|
4111
|
+
# see [Capacity Blocks for ML][1].
|
4112
|
+
#
|
4113
|
+
# </note>
|
4114
|
+
#
|
4087
4115
|
# If a future-dated Capacity Reservation enters the `delayed` state, the
|
4088
4116
|
# commitment duration is waived, and you can cancel it as soon as it
|
4089
4117
|
# enters the `active` state.
|
@@ -4095,6 +4123,10 @@ module Aws::EC2
|
|
4095
4123
|
# any open Capacity Reservation that has matching attributes and
|
4096
4124
|
# sufficient capacity.
|
4097
4125
|
#
|
4126
|
+
#
|
4127
|
+
#
|
4128
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-capacity-blocks.html
|
4129
|
+
#
|
4098
4130
|
# @option params [required, String] :capacity_reservation_id
|
4099
4131
|
# The ID of the Capacity Reservation to be cancelled.
|
4100
4132
|
#
|
@@ -4937,7 +4969,7 @@ module Aws::EC2
|
|
4937
4969
|
# Snapshots copied to an Outpost are encrypted by default using the
|
4938
4970
|
# default encryption key for the Region, or a different key that you
|
4939
4971
|
# specify in the request using **KmsKeyId**. Outposts do not support
|
4940
|
-
# unencrypted snapshots. For more information, [
|
4972
|
+
# unencrypted snapshots. For more information, see [Amazon EBS local
|
4941
4973
|
# snapshots on Outposts][1] in the *Amazon EBS User Guide*.
|
4942
4974
|
#
|
4943
4975
|
# Snapshots created by copying another snapshot have an arbitrary volume
|
@@ -5971,6 +6003,12 @@ module Aws::EC2
|
|
5971
6003
|
# on Amazon Web Services provided clients when a VPN session is
|
5972
6004
|
# established.
|
5973
6005
|
#
|
6006
|
+
# @option params [Boolean] :disconnect_on_session_timeout
|
6007
|
+
# Indicates whether the client VPN session is disconnected after the
|
6008
|
+
# maximum timeout specified in `SessionTimeoutHours` is reached. If
|
6009
|
+
# `true`, users are prompted to reconnect client VPN. If `false`, client
|
6010
|
+
# VPN attempts to reconnect automatically. The default value is `false`.
|
6011
|
+
#
|
5974
6012
|
# @return [Types::CreateClientVpnEndpointResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5975
6013
|
#
|
5976
6014
|
# * {Types::CreateClientVpnEndpointResult#client_vpn_endpoint_id #client_vpn_endpoint_id} => String
|
@@ -6032,6 +6070,7 @@ module Aws::EC2
|
|
6032
6070
|
# enabled: false,
|
6033
6071
|
# banner_text: "String",
|
6034
6072
|
# },
|
6073
|
+
# disconnect_on_session_timeout: false,
|
6035
6074
|
# })
|
6036
6075
|
#
|
6037
6076
|
# @example Response structure
|
@@ -12176,7 +12215,7 @@ module Aws::EC2
|
|
12176
12215
|
# the same Region as the volume.
|
12177
12216
|
#
|
12178
12217
|
# * If the source volume is in a Local Zone, you can create the snapshot
|
12179
|
-
# in the same Local Zone or in parent Amazon Web Services Region.
|
12218
|
+
# in the same Local Zone or in its parent Amazon Web Services Region.
|
12180
12219
|
#
|
12181
12220
|
# * If the source volume is on an Outpost, you can create the snapshot
|
12182
12221
|
# on the same Outpost or in its parent Amazon Web Services Region.
|
@@ -12204,8 +12243,8 @@ module Aws::EC2
|
|
12204
12243
|
# Snapshots that are taken from encrypted volumes are automatically
|
12205
12244
|
# encrypted. Volumes that are created from encrypted snapshots are also
|
12206
12245
|
# automatically encrypted. Your encrypted volumes and any associated
|
12207
|
-
# snapshots always remain protected. For more information, [Amazon
|
12208
|
-
# encryption][1] in the *Amazon EBS User Guide*.
|
12246
|
+
# snapshots always remain protected. For more information, see [Amazon
|
12247
|
+
# EBS encryption][1] in the *Amazon EBS User Guide*.
|
12209
12248
|
#
|
12210
12249
|
#
|
12211
12250
|
#
|
@@ -12381,8 +12420,8 @@ module Aws::EC2
|
|
12381
12420
|
# in the same Region as the instance.
|
12382
12421
|
#
|
12383
12422
|
# * If the source instance is in a Local Zone, you can create the
|
12384
|
-
# snapshots in the same Local Zone or in parent Amazon Web
|
12385
|
-
# Region.
|
12423
|
+
# snapshots in the same Local Zone or in its parent Amazon Web
|
12424
|
+
# Services Region.
|
12386
12425
|
#
|
12387
12426
|
# * If the source instance is on an Outpost, you can create the
|
12388
12427
|
# snapshots on the same Outpost or in its parent Amazon Web Services
|
@@ -18481,7 +18520,7 @@ module Aws::EC2
|
|
18481
18520
|
# the volume.
|
18482
18521
|
#
|
18483
18522
|
# You cannot delete a snapshot of the root device of an EBS volume used
|
18484
|
-
# by a registered AMI. You must first
|
18523
|
+
# by a registered AMI. You must first deregister the AMI before you can
|
18485
18524
|
# delete the snapshot.
|
18486
18525
|
#
|
18487
18526
|
# For more information, see [Delete an Amazon EBS snapshot][1] in the
|
@@ -21536,6 +21575,15 @@ module Aws::EC2
|
|
21536
21575
|
# Amazon Web Services Region that you're currently using. With Capacity
|
21537
21576
|
# Blocks, you purchase a specific instance type for a period of time.
|
21538
21577
|
#
|
21578
|
+
# To search for an available Capacity Block offering, you specify a
|
21579
|
+
# reservation duration and instance count. You must select one of the
|
21580
|
+
# following options.
|
21581
|
+
#
|
21582
|
+
# * For reservation durations<b> 1-day increments up 14 days and 7-day
|
21583
|
+
# increments up to 182 days total</b>
|
21584
|
+
#
|
21585
|
+
# * For instance count<b> 1, 2, 4, 8, 16, 32, or 64 instances</b>
|
21586
|
+
#
|
21539
21587
|
# @option params [Boolean] :dry_run
|
21540
21588
|
# Checks whether you have the required permissions for the action,
|
21541
21589
|
# without actually making the request, and provides an error response.
|
@@ -22420,6 +22468,7 @@ module Aws::EC2
|
|
22420
22468
|
# resp.client_vpn_endpoints[0].session_timeout_hours #=> Integer
|
22421
22469
|
# resp.client_vpn_endpoints[0].client_login_banner_options.enabled #=> Boolean
|
22422
22470
|
# resp.client_vpn_endpoints[0].client_login_banner_options.banner_text #=> String
|
22471
|
+
# resp.client_vpn_endpoints[0].disconnect_on_session_timeout #=> Boolean
|
22423
22472
|
# resp.next_token #=> String
|
22424
22473
|
#
|
22425
22474
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeClientVpnEndpoints AWS API Documentation
|
@@ -26406,7 +26455,8 @@ module Aws::EC2
|
|
26406
26455
|
# * `p3dn.24xlarge` \| `p4d.24xlarge` \| `p4de.24xlarge` \|
|
26407
26456
|
# `p5.48xlarge` \| `p5e.48xlarge` \| `p5en.48xlarge`
|
26408
26457
|
#
|
26409
|
-
# * `trn1.2xlarge` \| `trn1.32xlarge` \| `trn1n.32xlarge`
|
26458
|
+
# * `trn1.2xlarge` \| `trn1.32xlarge` \| `trn1n.32xlarge` \|
|
26459
|
+
# `trn2.48xlarge` \| `trn2u.48xlarge`
|
26410
26460
|
#
|
26411
26461
|
# For more information, see [Amazon EC2 instance topology][1] in the
|
26412
26462
|
# *Amazon EC2 User Guide*.
|
@@ -31750,6 +31800,13 @@ module Aws::EC2
|
|
31750
31800
|
#
|
31751
31801
|
# * `network-interface-id` - The ID of the network interface.
|
31752
31802
|
#
|
31803
|
+
# * `operator.managed` - A Boolean that indicates whether this is a
|
31804
|
+
# managed network interface.
|
31805
|
+
#
|
31806
|
+
# * `operator.principal` - The principal that manages the network
|
31807
|
+
# interface. Only valid for managed network interfaces, where
|
31808
|
+
# `managed` is `true`.
|
31809
|
+
#
|
31753
31810
|
# * `owner-id` - The Amazon Web Services account ID of the network
|
31754
31811
|
# interface owner.
|
31755
31812
|
#
|
@@ -49015,6 +49072,12 @@ module Aws::EC2
|
|
49015
49072
|
# on Amazon Web Services provided clients when a VPN session is
|
49016
49073
|
# established.
|
49017
49074
|
#
|
49075
|
+
# @option params [Boolean] :disconnect_on_session_timeout
|
49076
|
+
# Indicates whether the client VPN session is disconnected after the
|
49077
|
+
# maximum timeout specified in `sessionTimeoutHours` is reached. If
|
49078
|
+
# `true`, users are prompted to reconnect client VPN. If `false`, client
|
49079
|
+
# VPN attempts to reconnect automatically. The default value is `false`.
|
49080
|
+
#
|
49018
49081
|
# @return [Types::ModifyClientVpnEndpointResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
49019
49082
|
#
|
49020
49083
|
# * {Types::ModifyClientVpnEndpointResult#return #return} => Boolean
|
@@ -49049,6 +49112,7 @@ module Aws::EC2
|
|
49049
49112
|
# enabled: false,
|
49050
49113
|
# banner_text: "String",
|
49051
49114
|
# },
|
49115
|
+
# disconnect_on_session_timeout: false,
|
49052
49116
|
# })
|
49053
49117
|
#
|
49054
49118
|
# @example Response structure
|
@@ -63115,7 +63179,7 @@ module Aws::EC2
|
|
63115
63179
|
tracer: tracer
|
63116
63180
|
)
|
63117
63181
|
context[:gem_name] = 'aws-sdk-ec2'
|
63118
|
-
context[:gem_version] = '1.
|
63182
|
+
context[:gem_version] = '1.500.0'
|
63119
63183
|
Seahorse::Client::Request.new(handlers, context)
|
63120
63184
|
end
|
63121
63185
|
|
@@ -4652,6 +4652,7 @@ module Aws::EC2
|
|
4652
4652
|
ClientVpnEndpoint.add_member(:client_connect_options, Shapes::ShapeRef.new(shape: ClientConnectResponseOptions, location_name: "clientConnectOptions"))
|
4653
4653
|
ClientVpnEndpoint.add_member(:session_timeout_hours, Shapes::ShapeRef.new(shape: Integer, location_name: "sessionTimeoutHours"))
|
4654
4654
|
ClientVpnEndpoint.add_member(:client_login_banner_options, Shapes::ShapeRef.new(shape: ClientLoginBannerResponseOptions, location_name: "clientLoginBannerOptions"))
|
4655
|
+
ClientVpnEndpoint.add_member(:disconnect_on_session_timeout, Shapes::ShapeRef.new(shape: Boolean, location_name: "disconnectOnSessionTimeout"))
|
4655
4656
|
ClientVpnEndpoint.struct_class = Types::ClientVpnEndpoint
|
4656
4657
|
|
4657
4658
|
ClientVpnEndpointAttributeStatus.add_member(:code, Shapes::ShapeRef.new(shape: ClientVpnEndpointAttributeStatusCode, location_name: "code"))
|
@@ -4930,6 +4931,7 @@ module Aws::EC2
|
|
4930
4931
|
CreateClientVpnEndpointRequest.add_member(:client_connect_options, Shapes::ShapeRef.new(shape: ClientConnectOptions, location_name: "ClientConnectOptions"))
|
4931
4932
|
CreateClientVpnEndpointRequest.add_member(:session_timeout_hours, Shapes::ShapeRef.new(shape: Integer, location_name: "SessionTimeoutHours"))
|
4932
4933
|
CreateClientVpnEndpointRequest.add_member(:client_login_banner_options, Shapes::ShapeRef.new(shape: ClientLoginBannerOptions, location_name: "ClientLoginBannerOptions"))
|
4934
|
+
CreateClientVpnEndpointRequest.add_member(:disconnect_on_session_timeout, Shapes::ShapeRef.new(shape: Boolean, location_name: "DisconnectOnSessionTimeout"))
|
4933
4935
|
CreateClientVpnEndpointRequest.struct_class = Types::CreateClientVpnEndpointRequest
|
4934
4936
|
|
4935
4937
|
CreateClientVpnEndpointResult.add_member(:client_vpn_endpoint_id, Shapes::ShapeRef.new(shape: String, location_name: "clientVpnEndpointId"))
|
@@ -12161,6 +12163,7 @@ module Aws::EC2
|
|
12161
12163
|
ModifyClientVpnEndpointRequest.add_member(:client_connect_options, Shapes::ShapeRef.new(shape: ClientConnectOptions, location_name: "ClientConnectOptions"))
|
12162
12164
|
ModifyClientVpnEndpointRequest.add_member(:session_timeout_hours, Shapes::ShapeRef.new(shape: Integer, location_name: "SessionTimeoutHours"))
|
12163
12165
|
ModifyClientVpnEndpointRequest.add_member(:client_login_banner_options, Shapes::ShapeRef.new(shape: ClientLoginBannerOptions, location_name: "ClientLoginBannerOptions"))
|
12166
|
+
ModifyClientVpnEndpointRequest.add_member(:disconnect_on_session_timeout, Shapes::ShapeRef.new(shape: Boolean, location_name: "DisconnectOnSessionTimeout"))
|
12164
12167
|
ModifyClientVpnEndpointRequest.struct_class = Types::ModifyClientVpnEndpointRequest
|
12165
12168
|
|
12166
12169
|
ModifyClientVpnEndpointResult.add_member(:return, Shapes::ShapeRef.new(shape: Boolean, location_name: "return"))
|
data/lib/aws-sdk-ec2/resource.rb
CHANGED
@@ -3380,6 +3380,13 @@ module Aws::EC2
|
|
3380
3380
|
#
|
3381
3381
|
# * `network-interface-id` - The ID of the network interface.
|
3382
3382
|
#
|
3383
|
+
# * `operator.managed` - A Boolean that indicates whether this is a
|
3384
|
+
# managed network interface.
|
3385
|
+
#
|
3386
|
+
# * `operator.principal` - The principal that manages the network
|
3387
|
+
# interface. Only valid for managed network interfaces, where
|
3388
|
+
# `managed` is `true`.
|
3389
|
+
#
|
3383
3390
|
# * `owner-id` - The Amazon Web Services account ID of the network
|
3384
3391
|
# interface owner.
|
3385
3392
|
#
|
data/lib/aws-sdk-ec2/subnet.rb
CHANGED
@@ -1818,6 +1818,13 @@ module Aws::EC2
|
|
1818
1818
|
#
|
1819
1819
|
# * `network-interface-id` - The ID of the network interface.
|
1820
1820
|
#
|
1821
|
+
# * `operator.managed` - A Boolean that indicates whether this is a
|
1822
|
+
# managed network interface.
|
1823
|
+
#
|
1824
|
+
# * `operator.principal` - The principal that manages the network
|
1825
|
+
# interface. Only valid for managed network interfaces, where
|
1826
|
+
# `managed` is `true`.
|
1827
|
+
#
|
1821
1828
|
# * `owner-id` - The Amazon Web Services account ID of the network
|
1822
1829
|
# interface owner.
|
1823
1830
|
#
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -6295,6 +6295,13 @@ module Aws::EC2
|
|
6295
6295
|
# is established.
|
6296
6296
|
# @return [Types::ClientLoginBannerResponseOptions]
|
6297
6297
|
#
|
6298
|
+
# @!attribute [rw] disconnect_on_session_timeout
|
6299
|
+
# Indicates whether the client VPN session is disconnected after the
|
6300
|
+
# maximum `sessionTimeoutHours` is reached. If `true`, users are
|
6301
|
+
# prompted to reconnect client VPN. If `false`, client VPN attempts to
|
6302
|
+
# reconnect automatically. The default value is `false`.
|
6303
|
+
# @return [Boolean]
|
6304
|
+
#
|
6298
6305
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ClientVpnEndpoint AWS API Documentation
|
6299
6306
|
#
|
6300
6307
|
class ClientVpnEndpoint < Struct.new(
|
@@ -6320,7 +6327,8 @@ module Aws::EC2
|
|
6320
6327
|
:self_service_portal_url,
|
6321
6328
|
:client_connect_options,
|
6322
6329
|
:session_timeout_hours,
|
6323
|
-
:client_login_banner_options
|
6330
|
+
:client_login_banner_options,
|
6331
|
+
:disconnect_on_session_timeout)
|
6324
6332
|
SENSITIVE = []
|
6325
6333
|
include Aws::Structure
|
6326
6334
|
end
|
@@ -8115,6 +8123,14 @@ module Aws::EC2
|
|
8115
8123
|
# is established.
|
8116
8124
|
# @return [Types::ClientLoginBannerOptions]
|
8117
8125
|
#
|
8126
|
+
# @!attribute [rw] disconnect_on_session_timeout
|
8127
|
+
# Indicates whether the client VPN session is disconnected after the
|
8128
|
+
# maximum timeout specified in `SessionTimeoutHours` is reached. If
|
8129
|
+
# `true`, users are prompted to reconnect client VPN. If `false`,
|
8130
|
+
# client VPN attempts to reconnect automatically. The default value is
|
8131
|
+
# `false`.
|
8132
|
+
# @return [Boolean]
|
8133
|
+
#
|
8118
8134
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateClientVpnEndpointRequest AWS API Documentation
|
8119
8135
|
#
|
8120
8136
|
class CreateClientVpnEndpointRequest < Struct.new(
|
@@ -8135,7 +8151,8 @@ module Aws::EC2
|
|
8135
8151
|
:self_service_portal,
|
8136
8152
|
:client_connect_options,
|
8137
8153
|
:session_timeout_hours,
|
8138
|
-
:client_login_banner_options
|
8154
|
+
:client_login_banner_options,
|
8155
|
+
:disconnect_on_session_timeout)
|
8139
8156
|
SENSITIVE = []
|
8140
8157
|
include Aws::Structure
|
8141
8158
|
end
|
@@ -24967,6 +24984,13 @@ module Aws::EC2
|
|
24967
24984
|
#
|
24968
24985
|
# * `network-interface-id` - The ID of the network interface.
|
24969
24986
|
#
|
24987
|
+
# * `operator.managed` - A Boolean that indicates whether this is a
|
24988
|
+
# managed network interface.
|
24989
|
+
#
|
24990
|
+
# * `operator.principal` - The principal that manages the network
|
24991
|
+
# interface. Only valid for managed network interfaces, where
|
24992
|
+
# `managed` is `true`.
|
24993
|
+
#
|
24970
24994
|
# * `owner-id` - The Amazon Web Services account ID of the network
|
24971
24995
|
# interface owner.
|
24972
24996
|
#
|
@@ -42360,7 +42384,8 @@ module Aws::EC2
|
|
42360
42384
|
# @return [String]
|
42361
42385
|
#
|
42362
42386
|
# @!attribute [rw] no_device
|
42363
|
-
#
|
42387
|
+
# Suppresses the specified device included in the block device
|
42388
|
+
# mapping.
|
42364
42389
|
# @return [String]
|
42365
42390
|
#
|
42366
42391
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceBlockDeviceMappingSpecification AWS API Documentation
|
@@ -43411,15 +43436,9 @@ module Aws::EC2
|
|
43411
43436
|
# @return [Array<Types::PrivateIpAddressSpecification>]
|
43412
43437
|
#
|
43413
43438
|
# @!attribute [rw] secondary_private_ip_address_count
|
43414
|
-
# The number of secondary private IPv4 addresses. You can
|
43415
|
-
# this
|
43416
|
-
#
|
43417
|
-
# you're launching more than one instance in a [RunInstances][1]
|
43418
|
-
# request.
|
43419
|
-
#
|
43420
|
-
#
|
43421
|
-
#
|
43422
|
-
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RunInstances.html
|
43439
|
+
# The number of secondary private IPv4 addresses. You can’t specify
|
43440
|
+
# this parameter and also specify a secondary private IP address using
|
43441
|
+
# the `PrivateIpAddress` parameter.
|
43423
43442
|
# @return [Integer]
|
43424
43443
|
#
|
43425
43444
|
# @!attribute [rw] subnet_id
|
@@ -50658,6 +50677,14 @@ module Aws::EC2
|
|
50658
50677
|
# is established.
|
50659
50678
|
# @return [Types::ClientLoginBannerOptions]
|
50660
50679
|
#
|
50680
|
+
# @!attribute [rw] disconnect_on_session_timeout
|
50681
|
+
# Indicates whether the client VPN session is disconnected after the
|
50682
|
+
# maximum timeout specified in `sessionTimeoutHours` is reached. If
|
50683
|
+
# `true`, users are prompted to reconnect client VPN. If `false`,
|
50684
|
+
# client VPN attempts to reconnect automatically. The default value is
|
50685
|
+
# `false`.
|
50686
|
+
# @return [Boolean]
|
50687
|
+
#
|
50661
50688
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyClientVpnEndpointRequest AWS API Documentation
|
50662
50689
|
#
|
50663
50690
|
class ModifyClientVpnEndpointRequest < Struct.new(
|
@@ -50674,7 +50701,8 @@ module Aws::EC2
|
|
50674
50701
|
:self_service_portal,
|
50675
50702
|
:client_connect_options,
|
50676
50703
|
:session_timeout_hours,
|
50677
|
-
:client_login_banner_options
|
50704
|
+
:client_login_banner_options,
|
50705
|
+
:disconnect_on_session_timeout)
|
50678
50706
|
SENSITIVE = []
|
50679
50707
|
include Aws::Structure
|
50680
50708
|
end
|
data/lib/aws-sdk-ec2/vpc.rb
CHANGED
@@ -1766,6 +1766,13 @@ module Aws::EC2
|
|
1766
1766
|
#
|
1767
1767
|
# * `network-interface-id` - The ID of the network interface.
|
1768
1768
|
#
|
1769
|
+
# * `operator.managed` - A Boolean that indicates whether this is a
|
1770
|
+
# managed network interface.
|
1771
|
+
#
|
1772
|
+
# * `operator.principal` - The principal that manages the network
|
1773
|
+
# interface. Only valid for managed network interfaces, where
|
1774
|
+
# `managed` is `true`.
|
1775
|
+
#
|
1769
1776
|
# * `owner-id` - The Amazon Web Services account ID of the network
|
1770
1777
|
# interface owner.
|
1771
1778
|
#
|
data/lib/aws-sdk-ec2.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
@@ -1257,7 +1259,8 @@ module Aws
|
|
1257
1259
|
?client_login_banner_options: {
|
1258
1260
|
enabled: bool?,
|
1259
1261
|
banner_text: ::String?
|
1260
|
-
}
|
1262
|
+
},
|
1263
|
+
?disconnect_on_session_timeout: bool
|
1261
1264
|
) -> _CreateClientVpnEndpointResponseSuccess
|
1262
1265
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateClientVpnEndpointResponseSuccess
|
1263
1266
|
|
@@ -10306,7 +10309,8 @@ module Aws
|
|
10306
10309
|
?client_login_banner_options: {
|
10307
10310
|
enabled: bool?,
|
10308
10311
|
banner_text: ::String?
|
10309
|
-
}
|
10312
|
+
},
|
10313
|
+
?disconnect_on_session_timeout: bool
|
10310
10314
|
) -> _ModifyClientVpnEndpointResponseSuccess
|
10311
10315
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyClientVpnEndpointResponseSuccess
|
10312
10316
|
|
data/sig/resource.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
data/sig/types.rbs
CHANGED
@@ -1506,6 +1506,7 @@ module Aws::EC2
|
|
1506
1506
|
attr_accessor client_connect_options: Types::ClientConnectResponseOptions
|
1507
1507
|
attr_accessor session_timeout_hours: ::Integer
|
1508
1508
|
attr_accessor client_login_banner_options: Types::ClientLoginBannerResponseOptions
|
1509
|
+
attr_accessor disconnect_on_session_timeout: bool
|
1509
1510
|
SENSITIVE: []
|
1510
1511
|
end
|
1511
1512
|
|
@@ -1838,6 +1839,7 @@ module Aws::EC2
|
|
1838
1839
|
attr_accessor client_connect_options: Types::ClientConnectOptions
|
1839
1840
|
attr_accessor session_timeout_hours: ::Integer
|
1840
1841
|
attr_accessor client_login_banner_options: Types::ClientLoginBannerOptions
|
1842
|
+
attr_accessor disconnect_on_session_timeout: bool
|
1841
1843
|
SENSITIVE: []
|
1842
1844
|
end
|
1843
1845
|
|
@@ -11005,6 +11007,7 @@ module Aws::EC2
|
|
11005
11007
|
attr_accessor client_connect_options: Types::ClientConnectOptions
|
11006
11008
|
attr_accessor session_timeout_hours: ::Integer
|
11007
11009
|
attr_accessor client_login_banner_options: Types::ClientLoginBannerOptions
|
11010
|
+
attr_accessor disconnect_on_session_timeout: bool
|
11008
11011
|
SENSITIVE: []
|
11009
11012
|
end
|
11010
11013
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.500.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-01-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.216.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.216.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|