aws-sdk-ec2 1.514.0 → 1.517.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +259 -149
- data/lib/aws-sdk-ec2/client_api.rb +16 -1
- data/lib/aws-sdk-ec2/instance.rb +36 -8
- data/lib/aws-sdk-ec2/types.rb +252 -45
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/classic_address.rbs +1 -1
- data/sig/client.rbs +10 -2
- data/sig/types.rbs +17 -1
- data/sig/vpc_address.rbs +1 -1
- metadata +2 -2
data/sig/types.rbs
CHANGED
@@ -215,7 +215,7 @@ module Aws::EC2
|
|
215
215
|
attr_accessor customer_owned_ip: ::String
|
216
216
|
attr_accessor customer_owned_ipv_4_pool: ::String
|
217
217
|
attr_accessor carrier_ip: ::String
|
218
|
-
attr_accessor service_managed: ("alb" | "nlb")
|
218
|
+
attr_accessor service_managed: ("alb" | "nlb" | "rnat")
|
219
219
|
attr_accessor instance_id: ::String
|
220
220
|
attr_accessor public_ip: ::String
|
221
221
|
SENSITIVE: []
|
@@ -1458,6 +1458,16 @@ module Aws::EC2
|
|
1458
1458
|
SENSITIVE: []
|
1459
1459
|
end
|
1460
1460
|
|
1461
|
+
class ClientRouteEnforcementOptions
|
1462
|
+
attr_accessor enforced: bool
|
1463
|
+
SENSITIVE: []
|
1464
|
+
end
|
1465
|
+
|
1466
|
+
class ClientRouteEnforcementResponseOptions
|
1467
|
+
attr_accessor enforced: bool
|
1468
|
+
SENSITIVE: []
|
1469
|
+
end
|
1470
|
+
|
1461
1471
|
class ClientVpnAuthentication
|
1462
1472
|
attr_accessor type: ("certificate-authentication" | "directory-service-authentication" | "federated-authentication")
|
1463
1473
|
attr_accessor active_directory: Types::DirectoryServiceAuthentication
|
@@ -1528,6 +1538,7 @@ module Aws::EC2
|
|
1528
1538
|
attr_accessor client_connect_options: Types::ClientConnectResponseOptions
|
1529
1539
|
attr_accessor session_timeout_hours: ::Integer
|
1530
1540
|
attr_accessor client_login_banner_options: Types::ClientLoginBannerResponseOptions
|
1541
|
+
attr_accessor client_route_enforcement_options: Types::ClientRouteEnforcementResponseOptions
|
1531
1542
|
attr_accessor disconnect_on_session_timeout: bool
|
1532
1543
|
SENSITIVE: []
|
1533
1544
|
end
|
@@ -1862,6 +1873,7 @@ module Aws::EC2
|
|
1862
1873
|
attr_accessor client_connect_options: Types::ClientConnectOptions
|
1863
1874
|
attr_accessor session_timeout_hours: ::Integer
|
1864
1875
|
attr_accessor client_login_banner_options: Types::ClientLoginBannerOptions
|
1876
|
+
attr_accessor client_route_enforcement_options: Types::ClientRouteEnforcementOptions
|
1865
1877
|
attr_accessor disconnect_on_session_timeout: bool
|
1866
1878
|
SENSITIVE: []
|
1867
1879
|
end
|
@@ -2180,6 +2192,7 @@ module Aws::EC2
|
|
2180
2192
|
attr_accessor client_token: ::String
|
2181
2193
|
attr_accessor tier: ("free" | "advanced")
|
2182
2194
|
attr_accessor enable_private_gua: bool
|
2195
|
+
attr_accessor metered_account: ("ipam-owner" | "resource-owner")
|
2183
2196
|
SENSITIVE: []
|
2184
2197
|
end
|
2185
2198
|
|
@@ -10185,6 +10198,7 @@ module Aws::EC2
|
|
10185
10198
|
attr_accessor state_message: ::String
|
10186
10199
|
attr_accessor tier: ("free" | "advanced")
|
10187
10200
|
attr_accessor enable_private_gua: bool
|
10201
|
+
attr_accessor metered_account: ("ipam-owner" | "resource-owner")
|
10188
10202
|
SENSITIVE: []
|
10189
10203
|
end
|
10190
10204
|
|
@@ -11264,6 +11278,7 @@ module Aws::EC2
|
|
11264
11278
|
attr_accessor client_connect_options: Types::ClientConnectOptions
|
11265
11279
|
attr_accessor session_timeout_hours: ::Integer
|
11266
11280
|
attr_accessor client_login_banner_options: Types::ClientLoginBannerOptions
|
11281
|
+
attr_accessor client_route_enforcement_options: Types::ClientRouteEnforcementOptions
|
11267
11282
|
attr_accessor disconnect_on_session_timeout: bool
|
11268
11283
|
SENSITIVE: []
|
11269
11284
|
end
|
@@ -11565,6 +11580,7 @@ module Aws::EC2
|
|
11565
11580
|
attr_accessor remove_operating_regions: ::Array[Types::RemoveIpamOperatingRegion]
|
11566
11581
|
attr_accessor tier: ("free" | "advanced")
|
11567
11582
|
attr_accessor enable_private_gua: bool
|
11583
|
+
attr_accessor metered_account: ("ipam-owner" | "resource-owner")
|
11568
11584
|
SENSITIVE: []
|
11569
11585
|
end
|
11570
11586
|
|
data/sig/vpc_address.rbs
CHANGED
@@ -51,7 +51,7 @@ module Aws
|
|
51
51
|
def carrier_ip: () -> ::String
|
52
52
|
|
53
53
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/VpcAddress.html#service_managed-instance_method
|
54
|
-
def service_managed: () -> ("alb" | "nlb")
|
54
|
+
def service_managed: () -> ("alb" | "nlb" | "rnat")
|
55
55
|
|
56
56
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/VpcAddress.html#instance_id-instance_method
|
57
57
|
def instance_id: () -> ::String
|
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.517.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: 2025-
|
11
|
+
date: 2025-04-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|