aws-sdk-ec2 1.498.0 → 1.499.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +50 -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 +4 -2
- data/sig/types.rbs +3 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a1be685ded0fbe33769d4047ab1b9d66a81ee21710adf5a0c787e195b546d1ec
|
4
|
+
data.tar.gz: 66d824a801a3619ba1b1309918318239978ca42326f2ea3aad2f8bc1e8c12fb4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a4d9ec3c60f09c629ffc8b7ed4087da99f9ddd91e58de0a97b0e073c536b42241af7218aa74495188d27292dda762d3340727b08d61c33cc649a6e62d38f1aaf
|
7
|
+
data.tar.gz: c0aadda9218610f81db06ebc7fe77a163784be24491961a4daaf091666412edc3b9fc05ae2d2a24d99aee209d2e490ffd251f6ac09f1f31f7f281c6742c5ae85
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.499.0 (2025-01-13)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Add support for DisconnectOnSessionTimeout flag in CreateClientVpnEndpoint and ModifyClientVpnEndpoint requests and DescribeClientVpnEndpoints responses
|
8
|
+
|
4
9
|
1.498.0 (2024-12-16)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.499.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -4084,6 +4084,11 @@ module Aws::EC2
|
|
4084
4084
|
# duration has elapsed. You can't cancel a future-dated Capacity
|
4085
4085
|
# Reservation during the commitment duration.
|
4086
4086
|
#
|
4087
|
+
# <note markdown="1"> You can't modify or cancel a Capacity Block. For more information,
|
4088
|
+
# see [Capacity Blocks for ML][1].
|
4089
|
+
#
|
4090
|
+
# </note>
|
4091
|
+
#
|
4087
4092
|
# If a future-dated Capacity Reservation enters the `delayed` state, the
|
4088
4093
|
# commitment duration is waived, and you can cancel it as soon as it
|
4089
4094
|
# enters the `active` state.
|
@@ -4095,6 +4100,10 @@ module Aws::EC2
|
|
4095
4100
|
# any open Capacity Reservation that has matching attributes and
|
4096
4101
|
# sufficient capacity.
|
4097
4102
|
#
|
4103
|
+
#
|
4104
|
+
#
|
4105
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-capacity-blocks.html
|
4106
|
+
#
|
4098
4107
|
# @option params [required, String] :capacity_reservation_id
|
4099
4108
|
# The ID of the Capacity Reservation to be cancelled.
|
4100
4109
|
#
|
@@ -4937,7 +4946,7 @@ module Aws::EC2
|
|
4937
4946
|
# Snapshots copied to an Outpost are encrypted by default using the
|
4938
4947
|
# default encryption key for the Region, or a different key that you
|
4939
4948
|
# specify in the request using **KmsKeyId**. Outposts do not support
|
4940
|
-
# unencrypted snapshots. For more information, [
|
4949
|
+
# unencrypted snapshots. For more information, see [Amazon EBS local
|
4941
4950
|
# snapshots on Outposts][1] in the *Amazon EBS User Guide*.
|
4942
4951
|
#
|
4943
4952
|
# Snapshots created by copying another snapshot have an arbitrary volume
|
@@ -5971,6 +5980,12 @@ module Aws::EC2
|
|
5971
5980
|
# on Amazon Web Services provided clients when a VPN session is
|
5972
5981
|
# established.
|
5973
5982
|
#
|
5983
|
+
# @option params [Boolean] :disconnect_on_session_timeout
|
5984
|
+
# Indicates whether the client VPN session is disconnected after the
|
5985
|
+
# maximum timeout specified in `SessionTimeoutHours` is reached. If
|
5986
|
+
# `true`, users are prompted to reconnect client VPN. If `false`, client
|
5987
|
+
# VPN attempts to reconnect automatically. The default value is `false`.
|
5988
|
+
#
|
5974
5989
|
# @return [Types::CreateClientVpnEndpointResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5975
5990
|
#
|
5976
5991
|
# * {Types::CreateClientVpnEndpointResult#client_vpn_endpoint_id #client_vpn_endpoint_id} => String
|
@@ -6032,6 +6047,7 @@ module Aws::EC2
|
|
6032
6047
|
# enabled: false,
|
6033
6048
|
# banner_text: "String",
|
6034
6049
|
# },
|
6050
|
+
# disconnect_on_session_timeout: false,
|
6035
6051
|
# })
|
6036
6052
|
#
|
6037
6053
|
# @example Response structure
|
@@ -12176,7 +12192,7 @@ module Aws::EC2
|
|
12176
12192
|
# the same Region as the volume.
|
12177
12193
|
#
|
12178
12194
|
# * 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.
|
12195
|
+
# in the same Local Zone or in its parent Amazon Web Services Region.
|
12180
12196
|
#
|
12181
12197
|
# * If the source volume is on an Outpost, you can create the snapshot
|
12182
12198
|
# on the same Outpost or in its parent Amazon Web Services Region.
|
@@ -12204,8 +12220,8 @@ module Aws::EC2
|
|
12204
12220
|
# Snapshots that are taken from encrypted volumes are automatically
|
12205
12221
|
# encrypted. Volumes that are created from encrypted snapshots are also
|
12206
12222
|
# 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*.
|
12223
|
+
# snapshots always remain protected. For more information, see [Amazon
|
12224
|
+
# EBS encryption][1] in the *Amazon EBS User Guide*.
|
12209
12225
|
#
|
12210
12226
|
#
|
12211
12227
|
#
|
@@ -12381,8 +12397,8 @@ module Aws::EC2
|
|
12381
12397
|
# in the same Region as the instance.
|
12382
12398
|
#
|
12383
12399
|
# * 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.
|
12400
|
+
# snapshots in the same Local Zone or in its parent Amazon Web
|
12401
|
+
# Services Region.
|
12386
12402
|
#
|
12387
12403
|
# * If the source instance is on an Outpost, you can create the
|
12388
12404
|
# snapshots on the same Outpost or in its parent Amazon Web Services
|
@@ -18481,7 +18497,7 @@ module Aws::EC2
|
|
18481
18497
|
# the volume.
|
18482
18498
|
#
|
18483
18499
|
# You cannot delete a snapshot of the root device of an EBS volume used
|
18484
|
-
# by a registered AMI. You must first
|
18500
|
+
# by a registered AMI. You must first deregister the AMI before you can
|
18485
18501
|
# delete the snapshot.
|
18486
18502
|
#
|
18487
18503
|
# For more information, see [Delete an Amazon EBS snapshot][1] in the
|
@@ -21536,6 +21552,15 @@ module Aws::EC2
|
|
21536
21552
|
# Amazon Web Services Region that you're currently using. With Capacity
|
21537
21553
|
# Blocks, you purchase a specific instance type for a period of time.
|
21538
21554
|
#
|
21555
|
+
# To search for an available Capacity Block offering, you specify a
|
21556
|
+
# reservation duration and instance count. You must select one of the
|
21557
|
+
# following options.
|
21558
|
+
#
|
21559
|
+
# * For reservation durations<b> 1-day increments up 14 days and 7-day
|
21560
|
+
# increments up to 182 days total</b>
|
21561
|
+
#
|
21562
|
+
# * For instance count<b> 1, 2, 4, 8, 16, 32, or 64 instances</b>
|
21563
|
+
#
|
21539
21564
|
# @option params [Boolean] :dry_run
|
21540
21565
|
# Checks whether you have the required permissions for the action,
|
21541
21566
|
# without actually making the request, and provides an error response.
|
@@ -22420,6 +22445,7 @@ module Aws::EC2
|
|
22420
22445
|
# resp.client_vpn_endpoints[0].session_timeout_hours #=> Integer
|
22421
22446
|
# resp.client_vpn_endpoints[0].client_login_banner_options.enabled #=> Boolean
|
22422
22447
|
# resp.client_vpn_endpoints[0].client_login_banner_options.banner_text #=> String
|
22448
|
+
# resp.client_vpn_endpoints[0].disconnect_on_session_timeout #=> Boolean
|
22423
22449
|
# resp.next_token #=> String
|
22424
22450
|
#
|
22425
22451
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeClientVpnEndpoints AWS API Documentation
|
@@ -26406,7 +26432,8 @@ module Aws::EC2
|
|
26406
26432
|
# * `p3dn.24xlarge` \| `p4d.24xlarge` \| `p4de.24xlarge` \|
|
26407
26433
|
# `p5.48xlarge` \| `p5e.48xlarge` \| `p5en.48xlarge`
|
26408
26434
|
#
|
26409
|
-
# * `trn1.2xlarge` \| `trn1.32xlarge` \| `trn1n.32xlarge`
|
26435
|
+
# * `trn1.2xlarge` \| `trn1.32xlarge` \| `trn1n.32xlarge` \|
|
26436
|
+
# `trn2.48xlarge` \| `trn2u.48xlarge`
|
26410
26437
|
#
|
26411
26438
|
# For more information, see [Amazon EC2 instance topology][1] in the
|
26412
26439
|
# *Amazon EC2 User Guide*.
|
@@ -31750,6 +31777,13 @@ module Aws::EC2
|
|
31750
31777
|
#
|
31751
31778
|
# * `network-interface-id` - The ID of the network interface.
|
31752
31779
|
#
|
31780
|
+
# * `operator.managed` - A Boolean that indicates whether this is a
|
31781
|
+
# managed network interface.
|
31782
|
+
#
|
31783
|
+
# * `operator.principal` - The principal that manages the network
|
31784
|
+
# interface. Only valid for managed network interfaces, where
|
31785
|
+
# `managed` is `true`.
|
31786
|
+
#
|
31753
31787
|
# * `owner-id` - The Amazon Web Services account ID of the network
|
31754
31788
|
# interface owner.
|
31755
31789
|
#
|
@@ -49015,6 +49049,12 @@ module Aws::EC2
|
|
49015
49049
|
# on Amazon Web Services provided clients when a VPN session is
|
49016
49050
|
# established.
|
49017
49051
|
#
|
49052
|
+
# @option params [Boolean] :disconnect_on_session_timeout
|
49053
|
+
# Indicates whether the client VPN session is disconnected after the
|
49054
|
+
# maximum timeout specified in `sessionTimeoutHours` is reached. If
|
49055
|
+
# `true`, users are prompted to reconnect client VPN. If `false`, client
|
49056
|
+
# VPN attempts to reconnect automatically. The default value is `false`.
|
49057
|
+
#
|
49018
49058
|
# @return [Types::ModifyClientVpnEndpointResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
49019
49059
|
#
|
49020
49060
|
# * {Types::ModifyClientVpnEndpointResult#return #return} => Boolean
|
@@ -49049,6 +49089,7 @@ module Aws::EC2
|
|
49049
49089
|
# enabled: false,
|
49050
49090
|
# banner_text: "String",
|
49051
49091
|
# },
|
49092
|
+
# disconnect_on_session_timeout: false,
|
49052
49093
|
# })
|
49053
49094
|
#
|
49054
49095
|
# @example Response structure
|
@@ -63115,7 +63156,7 @@ module Aws::EC2
|
|
63115
63156
|
tracer: tracer
|
63116
63157
|
)
|
63117
63158
|
context[:gem_name] = 'aws-sdk-ec2'
|
63118
|
-
context[:gem_version] = '1.
|
63159
|
+
context[:gem_version] = '1.499.0'
|
63119
63160
|
Seahorse::Client::Request.new(handlers, context)
|
63120
63161
|
end
|
63121
63162
|
|
@@ -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
@@ -1257,7 +1257,8 @@ module Aws
|
|
1257
1257
|
?client_login_banner_options: {
|
1258
1258
|
enabled: bool?,
|
1259
1259
|
banner_text: ::String?
|
1260
|
-
}
|
1260
|
+
},
|
1261
|
+
?disconnect_on_session_timeout: bool
|
1261
1262
|
) -> _CreateClientVpnEndpointResponseSuccess
|
1262
1263
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateClientVpnEndpointResponseSuccess
|
1263
1264
|
|
@@ -10306,7 +10307,8 @@ module Aws
|
|
10306
10307
|
?client_login_banner_options: {
|
10307
10308
|
enabled: bool?,
|
10308
10309
|
banner_text: ::String?
|
10309
|
-
}
|
10310
|
+
},
|
10311
|
+
?disconnect_on_session_timeout: bool
|
10310
10312
|
) -> _ModifyClientVpnEndpointResponseSuccess
|
10311
10313
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyClientVpnEndpointResponseSuccess
|
10312
10314
|
|
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.499.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-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|