aws-sdk-ec2 1.612.0 → 1.613.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +159 -2
- data/lib/aws-sdk-ec2/client_api.rb +54 -1
- data/lib/aws-sdk-ec2/instance.rb +7 -1
- data/lib/aws-sdk-ec2/placement_group.rb +6 -0
- data/lib/aws-sdk-ec2/resource.rb +18 -0
- data/lib/aws-sdk-ec2/subnet.rb +12 -0
- data/lib/aws-sdk-ec2/types.rb +167 -6
- data/lib/aws-sdk-ec2/volume.rb +6 -0
- data/lib/aws-sdk-ec2/vpc.rb +12 -0
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +40 -2
- data/sig/instance.rbs +1 -0
- data/sig/placement_group.rbs +1 -0
- data/sig/resource.rbs +3 -0
- data/sig/subnet.rbs +2 -0
- data/sig/types.rbs +42 -1
- data/sig/volume.rbs +1 -0
- data/sig/vpc.rbs +2 -0
- data/sig/waiters.rbs +10 -0
- metadata +1 -1
data/sig/types.rbs
CHANGED
|
@@ -5956,6 +5956,7 @@ module Aws::EC2
|
|
|
5956
5956
|
attr_accessor instance_ids: ::Array[::String]
|
|
5957
5957
|
attr_accessor max_results: ::Integer
|
|
5958
5958
|
attr_accessor next_token: ::String
|
|
5959
|
+
attr_accessor include_managed_resources: bool
|
|
5959
5960
|
attr_accessor dry_run: bool
|
|
5960
5961
|
attr_accessor filters: ::Array[Types::Filter]
|
|
5961
5962
|
attr_accessor include_all_instances: bool
|
|
@@ -6016,6 +6017,7 @@ module Aws::EC2
|
|
|
6016
6017
|
|
|
6017
6018
|
class DescribeInstancesRequest
|
|
6018
6019
|
attr_accessor instance_ids: ::Array[::String]
|
|
6020
|
+
attr_accessor include_managed_resources: bool
|
|
6019
6021
|
attr_accessor dry_run: bool
|
|
6020
6022
|
attr_accessor filters: ::Array[Types::Filter]
|
|
6021
6023
|
attr_accessor next_token: ::String
|
|
@@ -6233,6 +6235,7 @@ module Aws::EC2
|
|
|
6233
6235
|
attr_accessor max_results: ::Integer
|
|
6234
6236
|
attr_accessor filters: ::Array[Types::Filter]
|
|
6235
6237
|
attr_accessor resolve_alias: bool
|
|
6238
|
+
attr_accessor include_managed_resources: bool
|
|
6236
6239
|
SENSITIVE: []
|
|
6237
6240
|
end
|
|
6238
6241
|
|
|
@@ -6249,6 +6252,7 @@ module Aws::EC2
|
|
|
6249
6252
|
attr_accessor filters: ::Array[Types::Filter]
|
|
6250
6253
|
attr_accessor next_token: ::String
|
|
6251
6254
|
attr_accessor max_results: ::Integer
|
|
6255
|
+
attr_accessor include_managed_resources: bool
|
|
6252
6256
|
SENSITIVE: []
|
|
6253
6257
|
end
|
|
6254
6258
|
|
|
@@ -6552,6 +6556,7 @@ module Aws::EC2
|
|
|
6552
6556
|
class DescribeNetworkInterfacesRequest
|
|
6553
6557
|
attr_accessor next_token: ::String
|
|
6554
6558
|
attr_accessor max_results: ::Integer
|
|
6559
|
+
attr_accessor include_managed_resources: bool
|
|
6555
6560
|
attr_accessor dry_run: bool
|
|
6556
6561
|
attr_accessor network_interface_ids: ::Array[::String]
|
|
6557
6562
|
attr_accessor filters: ::Array[Types::Filter]
|
|
@@ -7471,6 +7476,7 @@ module Aws::EC2
|
|
|
7471
7476
|
attr_accessor max_results: ::Integer
|
|
7472
7477
|
attr_accessor next_token: ::String
|
|
7473
7478
|
attr_accessor volume_ids: ::Array[::String]
|
|
7479
|
+
attr_accessor include_managed_resources: bool
|
|
7474
7480
|
attr_accessor dry_run: bool
|
|
7475
7481
|
attr_accessor filters: ::Array[Types::Filter]
|
|
7476
7482
|
SENSITIVE: []
|
|
@@ -7499,6 +7505,7 @@ module Aws::EC2
|
|
|
7499
7505
|
|
|
7500
7506
|
class DescribeVolumesRequest
|
|
7501
7507
|
attr_accessor volume_ids: ::Array[::String]
|
|
7508
|
+
attr_accessor include_managed_resources: bool
|
|
7502
7509
|
attr_accessor dry_run: bool
|
|
7503
7510
|
attr_accessor filters: ::Array[Types::Filter]
|
|
7504
7511
|
attr_accessor next_token: ::String
|
|
@@ -10047,6 +10054,16 @@ module Aws::EC2
|
|
|
10047
10054
|
SENSITIVE: []
|
|
10048
10055
|
end
|
|
10049
10056
|
|
|
10057
|
+
class GetManagedResourceVisibilityRequest
|
|
10058
|
+
attr_accessor dry_run: bool
|
|
10059
|
+
SENSITIVE: []
|
|
10060
|
+
end
|
|
10061
|
+
|
|
10062
|
+
class GetManagedResourceVisibilityResult
|
|
10063
|
+
attr_accessor visibility: Types::ManagedResourceVisibilitySettings
|
|
10064
|
+
SENSITIVE: []
|
|
10065
|
+
end
|
|
10066
|
+
|
|
10050
10067
|
class GetNetworkInsightsAccessScopeAnalysisFindingsRequest
|
|
10051
10068
|
attr_accessor network_insights_access_scope_analysis_id: ::String
|
|
10052
10069
|
attr_accessor max_results: ::Integer
|
|
@@ -12875,6 +12892,11 @@ module Aws::EC2
|
|
|
12875
12892
|
SENSITIVE: []
|
|
12876
12893
|
end
|
|
12877
12894
|
|
|
12895
|
+
class ManagedResourceVisibilitySettings
|
|
12896
|
+
attr_accessor default_visibility: ("hidden" | "visible")
|
|
12897
|
+
SENSITIVE: []
|
|
12898
|
+
end
|
|
12899
|
+
|
|
12878
12900
|
class MediaAcceleratorInfo
|
|
12879
12901
|
attr_accessor accelerators: ::Array[Types::MediaDeviceInfo]
|
|
12880
12902
|
attr_accessor total_media_memory_in_mi_b: ::Integer
|
|
@@ -13146,7 +13168,12 @@ module Aws::EC2
|
|
|
13146
13168
|
attr_accessor ebs_optimized: Types::AttributeBooleanValue
|
|
13147
13169
|
attr_accessor sriov_net_support: Types::AttributeValue
|
|
13148
13170
|
attr_accessor ena_support: Types::AttributeBooleanValue
|
|
13149
|
-
SENSITIVE: []
|
|
13171
|
+
SENSITIVE: [:value]
|
|
13172
|
+
end
|
|
13173
|
+
|
|
13174
|
+
class ModifyInstanceAttributeUserDataRequest
|
|
13175
|
+
attr_accessor value: ::String
|
|
13176
|
+
SENSITIVE: [:value]
|
|
13150
13177
|
end
|
|
13151
13178
|
|
|
13152
13179
|
class ModifyInstanceCapacityReservationAttributesRequest
|
|
@@ -13478,6 +13505,17 @@ module Aws::EC2
|
|
|
13478
13505
|
SENSITIVE: []
|
|
13479
13506
|
end
|
|
13480
13507
|
|
|
13508
|
+
class ModifyManagedResourceVisibilityRequest
|
|
13509
|
+
attr_accessor dry_run: bool
|
|
13510
|
+
attr_accessor default_visibility: ("hidden" | "visible")
|
|
13511
|
+
SENSITIVE: []
|
|
13512
|
+
end
|
|
13513
|
+
|
|
13514
|
+
class ModifyManagedResourceVisibilityResult
|
|
13515
|
+
attr_accessor visibility: Types::ManagedResourceVisibilitySettings
|
|
13516
|
+
SENSITIVE: []
|
|
13517
|
+
end
|
|
13518
|
+
|
|
13481
13519
|
class ModifyNetworkInterfaceAttributeRequest
|
|
13482
13520
|
attr_accessor ena_srd_specification: Types::EnaSrdSpecification
|
|
13483
13521
|
attr_accessor enable_primary_ipv_6: bool
|
|
@@ -14631,6 +14669,7 @@ module Aws::EC2
|
|
|
14631
14669
|
class OperatorResponse
|
|
14632
14670
|
attr_accessor managed: bool
|
|
14633
14671
|
attr_accessor principal: ::String
|
|
14672
|
+
attr_accessor hidden_by_default: bool
|
|
14634
14673
|
SENSITIVE: []
|
|
14635
14674
|
end
|
|
14636
14675
|
|
|
@@ -18506,6 +18545,7 @@ module Aws::EC2
|
|
|
18506
18545
|
attr_accessor progress: ::Integer
|
|
18507
18546
|
attr_accessor start_time: ::Time
|
|
18508
18547
|
attr_accessor end_time: ::Time
|
|
18548
|
+
attr_accessor operator: Types::OperatorResponse
|
|
18509
18549
|
SENSITIVE: []
|
|
18510
18550
|
end
|
|
18511
18551
|
|
|
@@ -18574,6 +18614,7 @@ module Aws::EC2
|
|
|
18574
18614
|
attr_accessor attachment_statuses: ::Array[Types::VolumeStatusAttachmentStatus]
|
|
18575
18615
|
attr_accessor initialization_status_details: Types::InitializationStatusDetails
|
|
18576
18616
|
attr_accessor availability_zone_id: ::String
|
|
18617
|
+
attr_accessor operator: Types::OperatorResponse
|
|
18577
18618
|
SENSITIVE: []
|
|
18578
18619
|
end
|
|
18579
18620
|
|
data/sig/volume.rbs
CHANGED
data/sig/vpc.rbs
CHANGED
|
@@ -295,6 +295,7 @@ module Aws
|
|
|
295
295
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Vpc.html#instances-instance_method
|
|
296
296
|
def instances: (
|
|
297
297
|
?instance_ids: Array[::String],
|
|
298
|
+
?include_managed_resources: bool,
|
|
298
299
|
?dry_run: bool,
|
|
299
300
|
?filters: Array[
|
|
300
301
|
{
|
|
@@ -333,6 +334,7 @@ module Aws
|
|
|
333
334
|
|
|
334
335
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Vpc.html#network_interfaces-instance_method
|
|
335
336
|
def network_interfaces: (
|
|
337
|
+
?include_managed_resources: bool,
|
|
336
338
|
?dry_run: bool,
|
|
337
339
|
?network_interface_ids: Array[::String],
|
|
338
340
|
?filters: Array[
|
data/sig/waiters.rbs
CHANGED
|
@@ -180,6 +180,7 @@ module Aws
|
|
|
180
180
|
|
|
181
181
|
def wait: (
|
|
182
182
|
?instance_ids: Array[::String],
|
|
183
|
+
?include_managed_resources: bool,
|
|
183
184
|
?dry_run: bool,
|
|
184
185
|
?filters: Array[
|
|
185
186
|
{
|
|
@@ -199,6 +200,7 @@ module Aws
|
|
|
199
200
|
|
|
200
201
|
def wait: (
|
|
201
202
|
?instance_ids: Array[::String],
|
|
203
|
+
?include_managed_resources: bool,
|
|
202
204
|
?dry_run: bool,
|
|
203
205
|
?filters: Array[
|
|
204
206
|
{
|
|
@@ -220,6 +222,7 @@ module Aws
|
|
|
220
222
|
?instance_ids: Array[::String],
|
|
221
223
|
?max_results: ::Integer,
|
|
222
224
|
?next_token: ::String,
|
|
225
|
+
?include_managed_resources: bool,
|
|
223
226
|
?dry_run: bool,
|
|
224
227
|
?filters: Array[
|
|
225
228
|
{
|
|
@@ -238,6 +241,7 @@ module Aws
|
|
|
238
241
|
|
|
239
242
|
def wait: (
|
|
240
243
|
?instance_ids: Array[::String],
|
|
244
|
+
?include_managed_resources: bool,
|
|
241
245
|
?dry_run: bool,
|
|
242
246
|
?filters: Array[
|
|
243
247
|
{
|
|
@@ -257,6 +261,7 @@ module Aws
|
|
|
257
261
|
|
|
258
262
|
def wait: (
|
|
259
263
|
?instance_ids: Array[::String],
|
|
264
|
+
?include_managed_resources: bool,
|
|
260
265
|
?dry_run: bool,
|
|
261
266
|
?filters: Array[
|
|
262
267
|
{
|
|
@@ -353,6 +358,7 @@ module Aws
|
|
|
353
358
|
def wait: (
|
|
354
359
|
?next_token: ::String,
|
|
355
360
|
?max_results: ::Integer,
|
|
361
|
+
?include_managed_resources: bool,
|
|
356
362
|
?dry_run: bool,
|
|
357
363
|
?network_interface_ids: Array[::String],
|
|
358
364
|
?filters: Array[
|
|
@@ -613,6 +619,7 @@ module Aws
|
|
|
613
619
|
?instance_ids: Array[::String],
|
|
614
620
|
?max_results: ::Integer,
|
|
615
621
|
?next_token: ::String,
|
|
622
|
+
?include_managed_resources: bool,
|
|
616
623
|
?dry_run: bool,
|
|
617
624
|
?filters: Array[
|
|
618
625
|
{
|
|
@@ -631,6 +638,7 @@ module Aws
|
|
|
631
638
|
|
|
632
639
|
def wait: (
|
|
633
640
|
?volume_ids: Array[::String],
|
|
641
|
+
?include_managed_resources: bool,
|
|
634
642
|
?dry_run: bool,
|
|
635
643
|
?filters: Array[
|
|
636
644
|
{
|
|
@@ -650,6 +658,7 @@ module Aws
|
|
|
650
658
|
|
|
651
659
|
def wait: (
|
|
652
660
|
?volume_ids: Array[::String],
|
|
661
|
+
?include_managed_resources: bool,
|
|
653
662
|
?dry_run: bool,
|
|
654
663
|
?filters: Array[
|
|
655
664
|
{
|
|
@@ -669,6 +678,7 @@ module Aws
|
|
|
669
678
|
|
|
670
679
|
def wait: (
|
|
671
680
|
?volume_ids: Array[::String],
|
|
681
|
+
?include_managed_resources: bool,
|
|
672
682
|
?dry_run: bool,
|
|
673
683
|
?filters: Array[
|
|
674
684
|
{
|