aws-sdk-ec2 1.527.0 → 1.531.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/classic_address.rb +6 -0
- data/lib/aws-sdk-ec2/client.rb +182 -64
- data/lib/aws-sdk-ec2/client_api.rb +57 -0
- data/lib/aws-sdk-ec2/image.rb +18 -5
- data/lib/aws-sdk-ec2/network_interface.rb +9 -0
- data/lib/aws-sdk-ec2/resource.rb +11 -10
- data/lib/aws-sdk-ec2/subnet.rb +21 -1
- data/lib/aws-sdk-ec2/types.rb +257 -24
- data/lib/aws-sdk-ec2/vpc.rb +1 -1
- data/lib/aws-sdk-ec2/vpc_address.rb +6 -0
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/classic_address.rbs +3 -0
- data/sig/client.rbs +20 -1
- data/sig/image.rbs +1 -0
- data/sig/network_interface.rbs +4 -0
- data/sig/subnet.rbs +4 -1
- data/sig/types.rbs +45 -2
- data/sig/vpc_address.rbs +3 -0
- metadata +4 -4
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: []
|
@@ -215,6 +228,7 @@ module Aws::EC2
|
|
215
228
|
attr_accessor customer_owned_ip: ::String
|
216
229
|
attr_accessor customer_owned_ipv_4_pool: ::String
|
217
230
|
attr_accessor carrier_ip: ::String
|
231
|
+
attr_accessor subnet_id: ::String
|
218
232
|
attr_accessor service_managed: ("alb" | "nlb" | "rnat")
|
219
233
|
attr_accessor instance_id: ::String
|
220
234
|
attr_accessor public_ip: ::String
|
@@ -3348,6 +3362,7 @@ module Aws::EC2
|
|
3348
3362
|
attr_accessor vpn_gateway_id: ::String
|
3349
3363
|
attr_accessor transit_gateway_id: ::String
|
3350
3364
|
attr_accessor tag_specifications: ::Array[Types::TagSpecification]
|
3365
|
+
attr_accessor pre_shared_key_storage: ::String
|
3351
3366
|
attr_accessor dry_run: bool
|
3352
3367
|
attr_accessor options: Types::VpnConnectionOptionsSpecification
|
3353
3368
|
SENSITIVE: []
|
@@ -3978,6 +3993,12 @@ module Aws::EC2
|
|
3978
3993
|
SENSITIVE: []
|
3979
3994
|
end
|
3980
3995
|
|
3996
|
+
class DeleteSnapshotReturnCode
|
3997
|
+
attr_accessor snapshot_id: ::String
|
3998
|
+
attr_accessor return_code: ("success" | "skipped" | "missing-permissions" | "internal-error" | "client-error")
|
3999
|
+
SENSITIVE: []
|
4000
|
+
end
|
4001
|
+
|
3981
4002
|
class DeleteSpotDatafeedSubscriptionRequest
|
3982
4003
|
attr_accessor dry_run: bool
|
3983
4004
|
SENSITIVE: []
|
@@ -4357,11 +4378,15 @@ module Aws::EC2
|
|
4357
4378
|
|
4358
4379
|
class DeregisterImageRequest
|
4359
4380
|
attr_accessor image_id: ::String
|
4381
|
+
attr_accessor delete_associated_snapshots: bool
|
4360
4382
|
attr_accessor dry_run: bool
|
4361
4383
|
SENSITIVE: []
|
4362
4384
|
end
|
4363
4385
|
|
4364
|
-
class DeregisterImageResult
|
4386
|
+
class DeregisterImageResult
|
4387
|
+
attr_accessor return: bool
|
4388
|
+
attr_accessor delete_snapshot_results: ::Array[Types::DeleteSnapshotReturnCode]
|
4389
|
+
SENSITIVE: []
|
4365
4390
|
end
|
4366
4391
|
|
4367
4392
|
class DeregisterInstanceEventNotificationAttributesRequest
|
@@ -8444,6 +8469,18 @@ module Aws::EC2
|
|
8444
8469
|
SENSITIVE: []
|
8445
8470
|
end
|
8446
8471
|
|
8472
|
+
class GetActiveVpnTunnelStatusRequest
|
8473
|
+
attr_accessor vpn_connection_id: ::String
|
8474
|
+
attr_accessor vpn_tunnel_outside_ip_address: ::String
|
8475
|
+
attr_accessor dry_run: bool
|
8476
|
+
SENSITIVE: []
|
8477
|
+
end
|
8478
|
+
|
8479
|
+
class GetActiveVpnTunnelStatusResult
|
8480
|
+
attr_accessor active_vpn_tunnel_status: Types::ActiveVpnTunnelStatus
|
8481
|
+
SENSITIVE: []
|
8482
|
+
end
|
8483
|
+
|
8447
8484
|
class GetAllowedImagesSettingsRequest
|
8448
8485
|
attr_accessor dry_run: bool
|
8449
8486
|
SENSITIVE: []
|
@@ -9192,6 +9229,7 @@ module Aws::EC2
|
|
9192
9229
|
attr_accessor vpn_connection_id: ::String
|
9193
9230
|
attr_accessor vpn_connection_device_type_id: ::String
|
9194
9231
|
attr_accessor internet_key_exchange_version: ::String
|
9232
|
+
attr_accessor sample_type: ::String
|
9195
9233
|
attr_accessor dry_run: bool
|
9196
9234
|
SENSITIVE: []
|
9197
9235
|
end
|
@@ -11874,6 +11912,7 @@ module Aws::EC2
|
|
11874
11912
|
attr_accessor enable_primary_ipv_6: bool
|
11875
11913
|
attr_accessor connection_tracking_specification: Types::ConnectionTrackingSpecificationRequest
|
11876
11914
|
attr_accessor associate_public_ip_address: bool
|
11915
|
+
attr_accessor associated_subnet_ids: ::Array[::String]
|
11877
11916
|
attr_accessor dry_run: bool
|
11878
11917
|
attr_accessor network_interface_id: ::String
|
11879
11918
|
attr_accessor description: Types::AttributeValue
|
@@ -12499,6 +12538,7 @@ module Aws::EC2
|
|
12499
12538
|
attr_accessor tunnel_options: Types::ModifyVpnTunnelOptionsSpecification
|
12500
12539
|
attr_accessor dry_run: bool
|
12501
12540
|
attr_accessor skip_tunnel_replacement: bool
|
12541
|
+
attr_accessor pre_shared_key_storage: ::String
|
12502
12542
|
SENSITIVE: [:tunnel_options]
|
12503
12543
|
end
|
12504
12544
|
|
@@ -12807,6 +12847,7 @@ module Aws::EC2
|
|
12807
12847
|
attr_accessor ipv_6_native: bool
|
12808
12848
|
attr_accessor ipv_6_address: ::String
|
12809
12849
|
attr_accessor operator: Types::OperatorResponse
|
12850
|
+
attr_accessor associated_subnets: ::Array[::String]
|
12810
12851
|
SENSITIVE: []
|
12811
12852
|
end
|
12812
12853
|
|
@@ -15377,8 +15418,9 @@ module Aws::EC2
|
|
15377
15418
|
attr_accessor ipv_6_native: bool
|
15378
15419
|
attr_accessor private_dns_name_options_on_launch: Types::PrivateDnsNameOptionsOnLaunch
|
15379
15420
|
attr_accessor block_public_access_states: Types::BlockPublicAccessStates
|
15421
|
+
attr_accessor type: ::String
|
15380
15422
|
attr_accessor subnet_id: ::String
|
15381
|
-
attr_accessor state: ("pending" | "available" | "unavailable")
|
15423
|
+
attr_accessor state: ("pending" | "available" | "unavailable" | "failed" | "failed-insufficient-capacity")
|
15382
15424
|
attr_accessor vpc_id: ::String
|
15383
15425
|
attr_accessor cidr_block: ::String
|
15384
15426
|
attr_accessor available_ip_address_count: ::Integer
|
@@ -16816,6 +16858,7 @@ module Aws::EC2
|
|
16816
16858
|
attr_accessor routes: ::Array[Types::VpnStaticRoute]
|
16817
16859
|
attr_accessor tags: ::Array[Types::Tag]
|
16818
16860
|
attr_accessor vgw_telemetry: ::Array[Types::VgwTelemetry]
|
16861
|
+
attr_accessor pre_shared_key_arn: ::String
|
16819
16862
|
attr_accessor vpn_connection_id: ::String
|
16820
16863
|
attr_accessor state: ("pending" | "available" | "deleting" | "deleted")
|
16821
16864
|
attr_accessor customer_gateway_configuration: ::String
|
data/sig/vpc_address.rbs
CHANGED
@@ -50,6 +50,9 @@ module Aws
|
|
50
50
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/VpcAddress.html#carrier_ip-instance_method
|
51
51
|
def carrier_ip: () -> ::String
|
52
52
|
|
53
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/VpcAddress.html#subnet_id-instance_method
|
54
|
+
def subnet_id: () -> ::String
|
55
|
+
|
53
56
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/VpcAddress.html#service_managed-instance_method
|
54
57
|
def service_managed: () -> ("alb" | "nlb" | "rnat")
|
55
58
|
|
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.531.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.225.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.225.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|
@@ -135,7 +135,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
135
135
|
requirements:
|
136
136
|
- - ">="
|
137
137
|
- !ruby/object:Gem::Version
|
138
|
-
version: '2.
|
138
|
+
version: '2.7'
|
139
139
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
140
140
|
requirements:
|
141
141
|
- - ">="
|