aws-sdk-ec2 1.626.0 → 1.628.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 +248 -14
- data/lib/aws-sdk-ec2/client_api.rb +108 -0
- data/lib/aws-sdk-ec2/types.rb +363 -5
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +49 -1
- data/sig/types.rbs +88 -1
- metadata +1 -1
data/sig/types.rbs
CHANGED
|
@@ -169,6 +169,27 @@ module Aws::EC2
|
|
|
169
169
|
SENSITIVE: []
|
|
170
170
|
end
|
|
171
171
|
|
|
172
|
+
class AccountVpcEncryptionControl
|
|
173
|
+
attr_accessor state: ("default-state" | "transitions-in-progress" | "transitions-partially-successful" | "transitions-successful" | "transitions-failed")
|
|
174
|
+
attr_accessor mode: ("unmanaged" | "attempt-monitor" | "attempt-enforce")
|
|
175
|
+
attr_accessor exclusions: Types::AccountVpcEncryptionControlExclusions
|
|
176
|
+
attr_accessor managed_by: ("account" | "declarative-policy")
|
|
177
|
+
attr_accessor last_update_timestamp: ::Time
|
|
178
|
+
SENSITIVE: []
|
|
179
|
+
end
|
|
180
|
+
|
|
181
|
+
class AccountVpcEncryptionControlExclusions
|
|
182
|
+
attr_accessor internet_gateway: ("enabling" | "enabled" | "disabling" | "disabled")
|
|
183
|
+
attr_accessor egress_only_internet_gateway: ("enabling" | "enabled" | "disabling" | "disabled")
|
|
184
|
+
attr_accessor nat_gateway: ("enabling" | "enabled" | "disabling" | "disabled")
|
|
185
|
+
attr_accessor virtual_private_gateway: ("enabling" | "enabled" | "disabling" | "disabled")
|
|
186
|
+
attr_accessor vpc_peering: ("enabling" | "enabled" | "disabling" | "disabled")
|
|
187
|
+
attr_accessor lambda: ("enabling" | "enabled" | "disabling" | "disabled")
|
|
188
|
+
attr_accessor vpc_lattice: ("enabling" | "enabled" | "disabling" | "disabled")
|
|
189
|
+
attr_accessor elastic_file_system: ("enabling" | "enabled" | "disabling" | "disabled")
|
|
190
|
+
SENSITIVE: []
|
|
191
|
+
end
|
|
192
|
+
|
|
172
193
|
class ActiveInstance
|
|
173
194
|
attr_accessor instance_id: ::String
|
|
174
195
|
attr_accessor instance_type: ::String
|
|
@@ -309,6 +330,7 @@ module Aws::EC2
|
|
|
309
330
|
attr_accessor host_maintenance: ("on" | "off")
|
|
310
331
|
attr_accessor asset_ids: ::Array[::String]
|
|
311
332
|
attr_accessor availability_zone_id: ::String
|
|
333
|
+
attr_accessor cpu_options: Types::HostCpuOptionsRequest
|
|
312
334
|
attr_accessor auto_placement: ("on" | "off")
|
|
313
335
|
attr_accessor client_token: ::String
|
|
314
336
|
attr_accessor instance_type: ::String
|
|
@@ -5056,6 +5078,16 @@ module Aws::EC2
|
|
|
5056
5078
|
SENSITIVE: []
|
|
5057
5079
|
end
|
|
5058
5080
|
|
|
5081
|
+
class DescribeAccountVpcEncryptionControlRequest
|
|
5082
|
+
attr_accessor dry_run: bool
|
|
5083
|
+
SENSITIVE: []
|
|
5084
|
+
end
|
|
5085
|
+
|
|
5086
|
+
class DescribeAccountVpcEncryptionControlResult
|
|
5087
|
+
attr_accessor account_vpc_encryption_control: Types::AccountVpcEncryptionControl
|
|
5088
|
+
SENSITIVE: []
|
|
5089
|
+
end
|
|
5090
|
+
|
|
5059
5091
|
class DescribeAddressTransfersRequest
|
|
5060
5092
|
attr_accessor allocation_ids: ::Array[::String]
|
|
5061
5093
|
attr_accessor next_token: ::String
|
|
@@ -7582,6 +7614,7 @@ module Aws::EC2
|
|
|
7582
7614
|
attr_accessor filters: ::Array[Types::Filter]
|
|
7583
7615
|
attr_accessor next_token: ::String
|
|
7584
7616
|
attr_accessor max_results: ::Integer
|
|
7617
|
+
attr_accessor include_managed_resources: bool
|
|
7585
7618
|
SENSITIVE: []
|
|
7586
7619
|
end
|
|
7587
7620
|
|
|
@@ -10612,7 +10645,7 @@ module Aws::EC2
|
|
|
10612
10645
|
attr_accessor host_properties: Types::HostProperties
|
|
10613
10646
|
attr_accessor host_reservation_id: ::String
|
|
10614
10647
|
attr_accessor instances: ::Array[Types::HostInstance]
|
|
10615
|
-
attr_accessor state: ("available" | "under-assessment" | "permanent-failure" | "released" | "released-permanent-failure" | "pending")
|
|
10648
|
+
attr_accessor state: ("available" | "under-assessment" | "permanent-failure" | "released" | "released-permanent-failure" | "pending" | "configuring")
|
|
10616
10649
|
attr_accessor allocation_time: ::Time
|
|
10617
10650
|
attr_accessor release_time: ::Time
|
|
10618
10651
|
attr_accessor tags: ::Array[Types::Tag]
|
|
@@ -10624,6 +10657,17 @@ module Aws::EC2
|
|
|
10624
10657
|
attr_accessor outpost_arn: ::String
|
|
10625
10658
|
attr_accessor host_maintenance: ("on" | "off")
|
|
10626
10659
|
attr_accessor asset_id: ::String
|
|
10660
|
+
attr_accessor cpu_options: Types::HostCpuOptions
|
|
10661
|
+
SENSITIVE: []
|
|
10662
|
+
end
|
|
10663
|
+
|
|
10664
|
+
class HostCpuOptions
|
|
10665
|
+
attr_accessor amd_sev_snp: ("enabled" | "disabled")
|
|
10666
|
+
SENSITIVE: []
|
|
10667
|
+
end
|
|
10668
|
+
|
|
10669
|
+
class HostCpuOptionsRequest
|
|
10670
|
+
attr_accessor amd_sev_snp: ("enabled" | "disabled")
|
|
10627
10671
|
SENSITIVE: []
|
|
10628
10672
|
end
|
|
10629
10673
|
|
|
@@ -13098,6 +13142,25 @@ module Aws::EC2
|
|
|
13098
13142
|
SENSITIVE: []
|
|
13099
13143
|
end
|
|
13100
13144
|
|
|
13145
|
+
class ModifyAccountVpcEncryptionControlRequest
|
|
13146
|
+
attr_accessor dry_run: bool
|
|
13147
|
+
attr_accessor mode: ("unmanaged" | "attempt-monitor" | "attempt-enforce")
|
|
13148
|
+
attr_accessor internet_gateway: ("enable" | "disable")
|
|
13149
|
+
attr_accessor egress_only_internet_gateway: ("enable" | "disable")
|
|
13150
|
+
attr_accessor nat_gateway: ("enable" | "disable")
|
|
13151
|
+
attr_accessor virtual_private_gateway: ("enable" | "disable")
|
|
13152
|
+
attr_accessor vpc_peering: ("enable" | "disable")
|
|
13153
|
+
attr_accessor lambda: ("enable" | "disable")
|
|
13154
|
+
attr_accessor vpc_lattice: ("enable" | "disable")
|
|
13155
|
+
attr_accessor elastic_file_system: ("enable" | "disable")
|
|
13156
|
+
SENSITIVE: []
|
|
13157
|
+
end
|
|
13158
|
+
|
|
13159
|
+
class ModifyAccountVpcEncryptionControlResult
|
|
13160
|
+
attr_accessor account_vpc_encryption_control: Types::AccountVpcEncryptionControl
|
|
13161
|
+
SENSITIVE: []
|
|
13162
|
+
end
|
|
13163
|
+
|
|
13101
13164
|
class ModifyAddressAttributeRequest
|
|
13102
13165
|
attr_accessor allocation_id: ::String
|
|
13103
13166
|
attr_accessor domain_name: ::String
|
|
@@ -14182,6 +14245,21 @@ module Aws::EC2
|
|
|
14182
14245
|
SENSITIVE: []
|
|
14183
14246
|
end
|
|
14184
14247
|
|
|
14248
|
+
class ModifyVpcEndpointPayerResponsibilityRequest
|
|
14249
|
+
attr_accessor dry_run: bool
|
|
14250
|
+
attr_accessor service_id: ::String
|
|
14251
|
+
attr_accessor vpc_endpoint_id: ::String
|
|
14252
|
+
attr_accessor payer_responsibility: ("vpc-endpoint-account" | "vpc-endpoint-service-account")
|
|
14253
|
+
attr_accessor scope: ("vpc-endpoint-charges")
|
|
14254
|
+
SENSITIVE: []
|
|
14255
|
+
end
|
|
14256
|
+
|
|
14257
|
+
class ModifyVpcEndpointPayerResponsibilityResult
|
|
14258
|
+
attr_accessor vpc_endpoint_id: ::String
|
|
14259
|
+
attr_accessor payer_responsibilities: ::Array[Types::PayerResponsibilityEntry]
|
|
14260
|
+
SENSITIVE: []
|
|
14261
|
+
end
|
|
14262
|
+
|
|
14185
14263
|
class ModifyVpcEndpointRequest
|
|
14186
14264
|
attr_accessor dry_run: bool
|
|
14187
14265
|
attr_accessor vpc_endpoint_id: ::String
|
|
@@ -14904,6 +14982,12 @@ module Aws::EC2
|
|
|
14904
14982
|
SENSITIVE: []
|
|
14905
14983
|
end
|
|
14906
14984
|
|
|
14985
|
+
class PayerResponsibilityEntry
|
|
14986
|
+
attr_accessor scope: ("vpc-endpoint-charges")
|
|
14987
|
+
attr_accessor payer_responsibility_type: ("vpc-endpoint-account" | "vpc-endpoint-service-account")
|
|
14988
|
+
SENSITIVE: []
|
|
14989
|
+
end
|
|
14990
|
+
|
|
14907
14991
|
class PciId
|
|
14908
14992
|
attr_accessor device_id: ::String
|
|
14909
14993
|
attr_accessor vendor_id: ::String
|
|
@@ -18709,6 +18793,7 @@ module Aws::EC2
|
|
|
18709
18793
|
attr_accessor progress: ::Integer
|
|
18710
18794
|
attr_accessor start_time: ::Time
|
|
18711
18795
|
attr_accessor end_time: ::Time
|
|
18796
|
+
attr_accessor operator: Types::OperatorResponse
|
|
18712
18797
|
SENSITIVE: []
|
|
18713
18798
|
end
|
|
18714
18799
|
|
|
@@ -18924,6 +19009,7 @@ module Aws::EC2
|
|
|
18924
19009
|
attr_accessor service_network_arn: ::String
|
|
18925
19010
|
attr_accessor resource_configuration_arn: ::String
|
|
18926
19011
|
attr_accessor service_region: ::String
|
|
19012
|
+
attr_accessor payer_responsibilities: ::Array[Types::PayerResponsibilityEntry]
|
|
18927
19013
|
SENSITIVE: []
|
|
18928
19014
|
end
|
|
18929
19015
|
|
|
@@ -18956,6 +19042,7 @@ module Aws::EC2
|
|
|
18956
19042
|
attr_accessor vpc_endpoint_connection_id: ::String
|
|
18957
19043
|
attr_accessor tags: ::Array[Types::Tag]
|
|
18958
19044
|
attr_accessor vpc_endpoint_region: ::String
|
|
19045
|
+
attr_accessor payer_responsibilities: ::Array[Types::PayerResponsibilityEntry]
|
|
18959
19046
|
SENSITIVE: []
|
|
18960
19047
|
end
|
|
18961
19048
|
|