aws-sdk-ec2 1.612.0 → 1.614.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 +167 -2
- data/lib/aws-sdk-ec2/client_api.rb +55 -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 +176 -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 +41 -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 +43 -1
- data/sig/volume.rbs +1 -0
- data/sig/vpc.rbs +2 -0
- data/sig/waiters.rbs +10 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7b9c91731385c013a109218c69639a4a34e355cf24fcc9c91567f0493fb1bcf0
|
|
4
|
+
data.tar.gz: db2f8010edddbecf797d27c0207fbfc06df70efdb6dcde7c1df37dd6375837e8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9897a13927f6c51070d7a49ceda9946cd0c98c41296eed8f7ffbb2c551b8fe6844d15daddee65b54d5abaf10485e3e7cbafe0e8650b5d66c368333ec7fa6328e
|
|
7
|
+
data.tar.gz: 1100a50012fe57145cce2750d5678d158d58fb06ca969d2245c4fabb34b3dae67c1498217216787b231f0d1ad932d368a1a4e1997fbe9865521dd366103b7df5
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.614.0 (2026-05-04)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This feature allows customers to change the tunnel bandwidth on existing VPN connections using the ModifyVpnConnectionOptions API
|
|
8
|
+
|
|
9
|
+
1.613.0 (2026-04-22)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Managed resource visibility settings control whether resources that AWS services provision on your behalf within your AWS account appear in your Amazon console views and API list operations.
|
|
13
|
+
|
|
4
14
|
1.612.0 (2026-04-20)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.614.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
|
@@ -5660,6 +5660,7 @@ module Aws::EC2
|
|
|
5660
5660
|
# resp.volumes[0].sse_type #=> String, one of "sse-ebs", "sse-kms", "none"
|
|
5661
5661
|
# resp.volumes[0].operator.managed #=> Boolean
|
|
5662
5662
|
# resp.volumes[0].operator.principal #=> String
|
|
5663
|
+
# resp.volumes[0].operator.hidden_by_default #=> Boolean
|
|
5663
5664
|
# resp.volumes[0].volume_initialization_rate #=> Integer
|
|
5664
5665
|
# resp.volumes[0].volume_id #=> String
|
|
5665
5666
|
# resp.volumes[0].size #=> Integer
|
|
@@ -10660,6 +10661,7 @@ module Aws::EC2
|
|
|
10660
10661
|
# resp.launch_template.tags[0].value #=> String
|
|
10661
10662
|
# resp.launch_template.operator.managed #=> Boolean
|
|
10662
10663
|
# resp.launch_template.operator.principal #=> String
|
|
10664
|
+
# resp.launch_template.operator.hidden_by_default #=> Boolean
|
|
10663
10665
|
# resp.warning.errors #=> Array
|
|
10664
10666
|
# resp.warning.errors[0].code #=> String
|
|
10665
10667
|
# resp.warning.errors[0].message #=> String
|
|
@@ -11250,6 +11252,7 @@ module Aws::EC2
|
|
|
11250
11252
|
# resp.launch_template_version.launch_template_data.disable_api_stop #=> Boolean
|
|
11251
11253
|
# resp.launch_template_version.launch_template_data.operator.managed #=> Boolean
|
|
11252
11254
|
# resp.launch_template_version.launch_template_data.operator.principal #=> String
|
|
11255
|
+
# resp.launch_template_version.launch_template_data.operator.hidden_by_default #=> Boolean
|
|
11253
11256
|
# resp.launch_template_version.launch_template_data.network_performance_options.bandwidth_weighting #=> String, one of "default", "vpc-1", "ebs-1"
|
|
11254
11257
|
# resp.launch_template_version.launch_template_data.secondary_interfaces #=> Array
|
|
11255
11258
|
# resp.launch_template_version.launch_template_data.secondary_interfaces[0].delete_on_termination #=> Boolean
|
|
@@ -11262,6 +11265,7 @@ module Aws::EC2
|
|
|
11262
11265
|
# resp.launch_template_version.launch_template_data.secondary_interfaces[0].network_card_index #=> Integer
|
|
11263
11266
|
# resp.launch_template_version.operator.managed #=> Boolean
|
|
11264
11267
|
# resp.launch_template_version.operator.principal #=> String
|
|
11268
|
+
# resp.launch_template_version.operator.hidden_by_default #=> Boolean
|
|
11265
11269
|
# resp.warning.errors #=> Array
|
|
11266
11270
|
# resp.warning.errors[0].code #=> String
|
|
11267
11271
|
# resp.warning.errors[0].message #=> String
|
|
@@ -13225,6 +13229,7 @@ module Aws::EC2
|
|
|
13225
13229
|
# resp.network_interface.ipv_6_address #=> String
|
|
13226
13230
|
# resp.network_interface.operator.managed #=> Boolean
|
|
13227
13231
|
# resp.network_interface.operator.principal #=> String
|
|
13232
|
+
# resp.network_interface.operator.hidden_by_default #=> Boolean
|
|
13228
13233
|
# resp.network_interface.associated_subnets #=> Array
|
|
13229
13234
|
# resp.network_interface.associated_subnets[0] #=> String
|
|
13230
13235
|
# resp.network_interface.availability_zone_id #=> String
|
|
@@ -13407,6 +13412,7 @@ module Aws::EC2
|
|
|
13407
13412
|
# resp.placement_group.linked_group_id #=> String
|
|
13408
13413
|
# resp.placement_group.operator.managed #=> Boolean
|
|
13409
13414
|
# resp.placement_group.operator.principal #=> String
|
|
13415
|
+
# resp.placement_group.operator.hidden_by_default #=> Boolean
|
|
13410
13416
|
#
|
|
13411
13417
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreatePlacementGroup AWS API Documentation
|
|
13412
13418
|
#
|
|
@@ -18040,6 +18046,7 @@ module Aws::EC2
|
|
|
18040
18046
|
# resp.sse_type #=> String, one of "sse-ebs", "sse-kms", "none"
|
|
18041
18047
|
# resp.operator.managed #=> Boolean
|
|
18042
18048
|
# resp.operator.principal #=> String
|
|
18049
|
+
# resp.operator.hidden_by_default #=> Boolean
|
|
18043
18050
|
# resp.volume_initialization_rate #=> Integer
|
|
18044
18051
|
# resp.volume_id #=> String
|
|
18045
18052
|
# resp.size #=> Integer
|
|
@@ -20806,6 +20813,7 @@ module Aws::EC2
|
|
|
20806
20813
|
# resp.launch_template.tags[0].value #=> String
|
|
20807
20814
|
# resp.launch_template.operator.managed #=> Boolean
|
|
20808
20815
|
# resp.launch_template.operator.principal #=> String
|
|
20816
|
+
# resp.launch_template.operator.hidden_by_default #=> Boolean
|
|
20809
20817
|
#
|
|
20810
20818
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteLaunchTemplate AWS API Documentation
|
|
20811
20819
|
#
|
|
@@ -30503,6 +30511,7 @@ module Aws::EC2
|
|
|
30503
30511
|
# resp.block_device_mappings[0].ebs.volume_owner_id #=> String
|
|
30504
30512
|
# resp.block_device_mappings[0].ebs.operator.managed #=> Boolean
|
|
30505
30513
|
# resp.block_device_mappings[0].ebs.operator.principal #=> String
|
|
30514
|
+
# resp.block_device_mappings[0].ebs.operator.hidden_by_default #=> Boolean
|
|
30506
30515
|
# resp.block_device_mappings[0].ebs.ebs_card_index #=> Integer
|
|
30507
30516
|
# resp.disable_api_termination.value #=> Boolean
|
|
30508
30517
|
# resp.ena_support.value #=> Boolean
|
|
@@ -31064,6 +31073,7 @@ module Aws::EC2
|
|
|
31064
31073
|
# resp.instance_image_metadata[0].image_metadata.is_public #=> Boolean
|
|
31065
31074
|
# resp.instance_image_metadata[0].operator.managed #=> Boolean
|
|
31066
31075
|
# resp.instance_image_metadata[0].operator.principal #=> String
|
|
31076
|
+
# resp.instance_image_metadata[0].operator.hidden_by_default #=> Boolean
|
|
31067
31077
|
# resp.next_token #=> String
|
|
31068
31078
|
#
|
|
31069
31079
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeInstanceImageMetadata AWS API Documentation
|
|
@@ -31329,6 +31339,12 @@ module Aws::EC2
|
|
|
31329
31339
|
# The token returned from a previous paginated request. Pagination
|
|
31330
31340
|
# continues from the end of the items returned by the previous request.
|
|
31331
31341
|
#
|
|
31342
|
+
# @option params [Boolean] :include_managed_resources
|
|
31343
|
+
# Indicates whether to include managed resources in the output. If this
|
|
31344
|
+
# parameter is set to `true`, the output includes resources that are
|
|
31345
|
+
# managed by Amazon Web Services services, even if managed resource
|
|
31346
|
+
# visibility is set to hidden.
|
|
31347
|
+
#
|
|
31332
31348
|
# @option params [Boolean] :dry_run
|
|
31333
31349
|
# Checks whether you have the required permissions for the operation,
|
|
31334
31350
|
# without actually making the request, and provides an error response.
|
|
@@ -31459,6 +31475,7 @@ module Aws::EC2
|
|
|
31459
31475
|
# instance_ids: ["InstanceId"],
|
|
31460
31476
|
# max_results: 1,
|
|
31461
31477
|
# next_token: "String",
|
|
31478
|
+
# include_managed_resources: false,
|
|
31462
31479
|
# dry_run: false,
|
|
31463
31480
|
# filters: [
|
|
31464
31481
|
# {
|
|
@@ -31477,6 +31494,7 @@ module Aws::EC2
|
|
|
31477
31494
|
# resp.instance_statuses[0].outpost_arn #=> String
|
|
31478
31495
|
# resp.instance_statuses[0].operator.managed #=> Boolean
|
|
31479
31496
|
# resp.instance_statuses[0].operator.principal #=> String
|
|
31497
|
+
# resp.instance_statuses[0].operator.hidden_by_default #=> Boolean
|
|
31480
31498
|
# resp.instance_statuses[0].events #=> Array
|
|
31481
31499
|
# resp.instance_statuses[0].events[0].instance_event_id #=> String
|
|
31482
31500
|
# resp.instance_statuses[0].events[0].code #=> String, one of "instance-reboot", "system-reboot", "system-maintenance", "instance-retirement", "instance-stop"
|
|
@@ -32166,6 +32184,12 @@ module Aws::EC2
|
|
|
32166
32184
|
#
|
|
32167
32185
|
# Default: Describes all your instances.
|
|
32168
32186
|
#
|
|
32187
|
+
# @option params [Boolean] :include_managed_resources
|
|
32188
|
+
# Indicates whether to include managed resources in the output. If this
|
|
32189
|
+
# parameter is set to `true`, the output includes resources that are
|
|
32190
|
+
# managed by Amazon Web Services services, even if managed resource
|
|
32191
|
+
# visibility is set to hidden.
|
|
32192
|
+
#
|
|
32169
32193
|
# @option params [Boolean] :dry_run
|
|
32170
32194
|
# Checks whether you have the required permissions for the operation,
|
|
32171
32195
|
# without actually making the request, and provides an error response.
|
|
@@ -32710,6 +32734,7 @@ module Aws::EC2
|
|
|
32710
32734
|
#
|
|
32711
32735
|
# resp = client.describe_instances({
|
|
32712
32736
|
# instance_ids: ["InstanceId"],
|
|
32737
|
+
# include_managed_resources: false,
|
|
32713
32738
|
# dry_run: false,
|
|
32714
32739
|
# filters: [
|
|
32715
32740
|
# {
|
|
@@ -32743,6 +32768,7 @@ module Aws::EC2
|
|
|
32743
32768
|
# resp.reservations[0].instances[0].block_device_mappings[0].ebs.volume_owner_id #=> String
|
|
32744
32769
|
# resp.reservations[0].instances[0].block_device_mappings[0].ebs.operator.managed #=> Boolean
|
|
32745
32770
|
# resp.reservations[0].instances[0].block_device_mappings[0].ebs.operator.principal #=> String
|
|
32771
|
+
# resp.reservations[0].instances[0].block_device_mappings[0].ebs.operator.hidden_by_default #=> Boolean
|
|
32746
32772
|
# resp.reservations[0].instances[0].block_device_mappings[0].ebs.ebs_card_index #=> Integer
|
|
32747
32773
|
# resp.reservations[0].instances[0].client_token #=> String
|
|
32748
32774
|
# resp.reservations[0].instances[0].ebs_optimized #=> Boolean
|
|
@@ -32811,6 +32837,7 @@ module Aws::EC2
|
|
|
32811
32837
|
# resp.reservations[0].instances[0].network_interfaces[0].connection_tracking_configuration.udp_timeout #=> Integer
|
|
32812
32838
|
# resp.reservations[0].instances[0].network_interfaces[0].operator.managed #=> Boolean
|
|
32813
32839
|
# resp.reservations[0].instances[0].network_interfaces[0].operator.principal #=> String
|
|
32840
|
+
# resp.reservations[0].instances[0].network_interfaces[0].operator.hidden_by_default #=> Boolean
|
|
32814
32841
|
# resp.reservations[0].instances[0].outpost_arn #=> String
|
|
32815
32842
|
# resp.reservations[0].instances[0].root_device_name #=> String
|
|
32816
32843
|
# resp.reservations[0].instances[0].root_device_type #=> String, one of "ebs", "instance-store"
|
|
@@ -32860,6 +32887,7 @@ module Aws::EC2
|
|
|
32860
32887
|
# resp.reservations[0].instances[0].network_performance_options.bandwidth_weighting #=> String, one of "default", "vpc-1", "ebs-1"
|
|
32861
32888
|
# resp.reservations[0].instances[0].operator.managed #=> Boolean
|
|
32862
32889
|
# resp.reservations[0].instances[0].operator.principal #=> String
|
|
32890
|
+
# resp.reservations[0].instances[0].operator.hidden_by_default #=> Boolean
|
|
32863
32891
|
# resp.reservations[0].instances[0].secondary_interfaces #=> Array
|
|
32864
32892
|
# resp.reservations[0].instances[0].secondary_interfaces[0].attachment.attach_time #=> Time
|
|
32865
32893
|
# resp.reservations[0].instances[0].secondary_interfaces[0].attachment.attachment_id #=> String
|
|
@@ -34152,6 +34180,12 @@ module Aws::EC2
|
|
|
34152
34180
|
#
|
|
34153
34181
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/create-launch-template.html#use-an-ssm-parameter-instead-of-an-ami-id
|
|
34154
34182
|
#
|
|
34183
|
+
# @option params [Boolean] :include_managed_resources
|
|
34184
|
+
# Indicates whether to include managed resources in the output. If this
|
|
34185
|
+
# parameter is set to `true`, the output includes resources that are
|
|
34186
|
+
# managed by Amazon Web Services services, even if managed resource
|
|
34187
|
+
# visibility is set to hidden.
|
|
34188
|
+
#
|
|
34155
34189
|
# @return [Types::DescribeLaunchTemplateVersionsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
34156
34190
|
#
|
|
34157
34191
|
# * {Types::DescribeLaunchTemplateVersionsResult#launch_template_versions #launch_template_versions} => Array<Types::LaunchTemplateVersion>
|
|
@@ -34239,6 +34273,7 @@ module Aws::EC2
|
|
|
34239
34273
|
# },
|
|
34240
34274
|
# ],
|
|
34241
34275
|
# resolve_alias: false,
|
|
34276
|
+
# include_managed_resources: false,
|
|
34242
34277
|
# })
|
|
34243
34278
|
#
|
|
34244
34279
|
# @example Response structure
|
|
@@ -34410,6 +34445,7 @@ module Aws::EC2
|
|
|
34410
34445
|
# resp.launch_template_versions[0].launch_template_data.disable_api_stop #=> Boolean
|
|
34411
34446
|
# resp.launch_template_versions[0].launch_template_data.operator.managed #=> Boolean
|
|
34412
34447
|
# resp.launch_template_versions[0].launch_template_data.operator.principal #=> String
|
|
34448
|
+
# resp.launch_template_versions[0].launch_template_data.operator.hidden_by_default #=> Boolean
|
|
34413
34449
|
# resp.launch_template_versions[0].launch_template_data.network_performance_options.bandwidth_weighting #=> String, one of "default", "vpc-1", "ebs-1"
|
|
34414
34450
|
# resp.launch_template_versions[0].launch_template_data.secondary_interfaces #=> Array
|
|
34415
34451
|
# resp.launch_template_versions[0].launch_template_data.secondary_interfaces[0].delete_on_termination #=> Boolean
|
|
@@ -34422,6 +34458,7 @@ module Aws::EC2
|
|
|
34422
34458
|
# resp.launch_template_versions[0].launch_template_data.secondary_interfaces[0].network_card_index #=> Integer
|
|
34423
34459
|
# resp.launch_template_versions[0].operator.managed #=> Boolean
|
|
34424
34460
|
# resp.launch_template_versions[0].operator.principal #=> String
|
|
34461
|
+
# resp.launch_template_versions[0].operator.hidden_by_default #=> Boolean
|
|
34425
34462
|
# resp.next_token #=> String
|
|
34426
34463
|
#
|
|
34427
34464
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeLaunchTemplateVersions AWS API Documentation
|
|
@@ -34472,6 +34509,12 @@ module Aws::EC2
|
|
|
34472
34509
|
# the remaining results, make another call with the returned `NextToken`
|
|
34473
34510
|
# value. This value can be between 1 and 200.
|
|
34474
34511
|
#
|
|
34512
|
+
# @option params [Boolean] :include_managed_resources
|
|
34513
|
+
# Indicates whether to include managed resources in the output. If this
|
|
34514
|
+
# parameter is set to `true`, the output includes resources that are
|
|
34515
|
+
# managed by Amazon Web Services services, even if managed resource
|
|
34516
|
+
# visibility is set to hidden.
|
|
34517
|
+
#
|
|
34475
34518
|
# @return [Types::DescribeLaunchTemplatesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
34476
34519
|
#
|
|
34477
34520
|
# * {Types::DescribeLaunchTemplatesResult#launch_templates #launch_templates} => Array<Types::LaunchTemplate>
|
|
@@ -34518,6 +34561,7 @@ module Aws::EC2
|
|
|
34518
34561
|
# ],
|
|
34519
34562
|
# next_token: "String",
|
|
34520
34563
|
# max_results: 1,
|
|
34564
|
+
# include_managed_resources: false,
|
|
34521
34565
|
# })
|
|
34522
34566
|
#
|
|
34523
34567
|
# @example Response structure
|
|
@@ -34534,6 +34578,7 @@ module Aws::EC2
|
|
|
34534
34578
|
# resp.launch_templates[0].tags[0].value #=> String
|
|
34535
34579
|
# resp.launch_templates[0].operator.managed #=> Boolean
|
|
34536
34580
|
# resp.launch_templates[0].operator.principal #=> String
|
|
34581
|
+
# resp.launch_templates[0].operator.hidden_by_default #=> Boolean
|
|
34537
34582
|
# resp.next_token #=> String
|
|
34538
34583
|
#
|
|
34539
34584
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeLaunchTemplates AWS API Documentation
|
|
@@ -37269,6 +37314,12 @@ module Aws::EC2
|
|
|
37269
37314
|
#
|
|
37270
37315
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
|
37271
37316
|
#
|
|
37317
|
+
# @option params [Boolean] :include_managed_resources
|
|
37318
|
+
# Indicates whether to include managed resources in the output. If this
|
|
37319
|
+
# parameter is set to `true`, the output includes resources that are
|
|
37320
|
+
# managed by Amazon Web Services services, even if managed resource
|
|
37321
|
+
# visibility is set to hidden.
|
|
37322
|
+
#
|
|
37272
37323
|
# @option params [Boolean] :dry_run
|
|
37273
37324
|
# Checks whether you have the required permissions for the action,
|
|
37274
37325
|
# without actually making the request, and provides an error response.
|
|
@@ -37483,6 +37534,7 @@ module Aws::EC2
|
|
|
37483
37534
|
# resp = client.describe_network_interfaces({
|
|
37484
37535
|
# next_token: "String",
|
|
37485
37536
|
# max_results: 1,
|
|
37537
|
+
# include_managed_resources: false,
|
|
37486
37538
|
# dry_run: false,
|
|
37487
37539
|
# network_interface_ids: ["NetworkInterfaceId"],
|
|
37488
37540
|
# filters: [
|
|
@@ -37567,6 +37619,7 @@ module Aws::EC2
|
|
|
37567
37619
|
# resp.network_interfaces[0].ipv_6_address #=> String
|
|
37568
37620
|
# resp.network_interfaces[0].operator.managed #=> Boolean
|
|
37569
37621
|
# resp.network_interfaces[0].operator.principal #=> String
|
|
37622
|
+
# resp.network_interfaces[0].operator.hidden_by_default #=> Boolean
|
|
37570
37623
|
# resp.network_interfaces[0].associated_subnets #=> Array
|
|
37571
37624
|
# resp.network_interfaces[0].associated_subnets[0] #=> String
|
|
37572
37625
|
# resp.network_interfaces[0].availability_zone_id #=> String
|
|
@@ -37783,6 +37836,7 @@ module Aws::EC2
|
|
|
37783
37836
|
# resp.placement_groups[0].linked_group_id #=> String
|
|
37784
37837
|
# resp.placement_groups[0].operator.managed #=> Boolean
|
|
37785
37838
|
# resp.placement_groups[0].operator.principal #=> String
|
|
37839
|
+
# resp.placement_groups[0].operator.hidden_by_default #=> Boolean
|
|
37786
37840
|
#
|
|
37787
37841
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribePlacementGroups AWS API Documentation
|
|
37788
37842
|
#
|
|
@@ -44821,6 +44875,12 @@ module Aws::EC2
|
|
|
44821
44875
|
#
|
|
44822
44876
|
# Default: Describes all your volumes.
|
|
44823
44877
|
#
|
|
44878
|
+
# @option params [Boolean] :include_managed_resources
|
|
44879
|
+
# Indicates whether to include managed resources in the output. If this
|
|
44880
|
+
# parameter is set to `true`, the output includes resources that are
|
|
44881
|
+
# managed by Amazon Web Services services, even if managed resource
|
|
44882
|
+
# visibility is set to hidden.
|
|
44883
|
+
#
|
|
44824
44884
|
# @option params [Boolean] :dry_run
|
|
44825
44885
|
# Checks whether you have the required permissions for the action,
|
|
44826
44886
|
# without actually making the request, and provides an error response.
|
|
@@ -44935,6 +44995,7 @@ module Aws::EC2
|
|
|
44935
44995
|
# max_results: 1,
|
|
44936
44996
|
# next_token: "String",
|
|
44937
44997
|
# volume_ids: ["VolumeId"],
|
|
44998
|
+
# include_managed_resources: false,
|
|
44938
44999
|
# dry_run: false,
|
|
44939
45000
|
# filters: [
|
|
44940
45001
|
# {
|
|
@@ -44974,6 +45035,9 @@ module Aws::EC2
|
|
|
44974
45035
|
# resp.volume_statuses[0].initialization_status_details.progress #=> Integer
|
|
44975
45036
|
# resp.volume_statuses[0].initialization_status_details.estimated_time_to_complete_in_seconds #=> Integer
|
|
44976
45037
|
# resp.volume_statuses[0].availability_zone_id #=> String
|
|
45038
|
+
# resp.volume_statuses[0].operator.managed #=> Boolean
|
|
45039
|
+
# resp.volume_statuses[0].operator.principal #=> String
|
|
45040
|
+
# resp.volume_statuses[0].operator.hidden_by_default #=> Boolean
|
|
44977
45041
|
#
|
|
44978
45042
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVolumeStatus AWS API Documentation
|
|
44979
45043
|
#
|
|
@@ -45011,6 +45075,12 @@ module Aws::EC2
|
|
|
45011
45075
|
# The volume IDs. If not specified, then all volumes are included in the
|
|
45012
45076
|
# response.
|
|
45013
45077
|
#
|
|
45078
|
+
# @option params [Boolean] :include_managed_resources
|
|
45079
|
+
# Indicates whether to include managed resources in the output. If this
|
|
45080
|
+
# parameter is set to `true`, the output includes resources that are
|
|
45081
|
+
# managed by Amazon Web Services services, even if managed resource
|
|
45082
|
+
# visibility is set to hidden.
|
|
45083
|
+
#
|
|
45014
45084
|
# @option params [Boolean] :dry_run
|
|
45015
45085
|
# Checks whether you have the required permissions for the action,
|
|
45016
45086
|
# without actually making the request, and provides an error response.
|
|
@@ -45186,6 +45256,7 @@ module Aws::EC2
|
|
|
45186
45256
|
#
|
|
45187
45257
|
# resp = client.describe_volumes({
|
|
45188
45258
|
# volume_ids: ["VolumeId"],
|
|
45259
|
+
# include_managed_resources: false,
|
|
45189
45260
|
# dry_run: false,
|
|
45190
45261
|
# filters: [
|
|
45191
45262
|
# {
|
|
@@ -45215,6 +45286,7 @@ module Aws::EC2
|
|
|
45215
45286
|
# resp.volumes[0].sse_type #=> String, one of "sse-ebs", "sse-kms", "none"
|
|
45216
45287
|
# resp.volumes[0].operator.managed #=> Boolean
|
|
45217
45288
|
# resp.volumes[0].operator.principal #=> String
|
|
45289
|
+
# resp.volumes[0].operator.hidden_by_default #=> Boolean
|
|
45218
45290
|
# resp.volumes[0].volume_initialization_rate #=> Integer
|
|
45219
45291
|
# resp.volumes[0].volume_id #=> String
|
|
45220
45292
|
# resp.volumes[0].size #=> Integer
|
|
@@ -45354,6 +45426,9 @@ module Aws::EC2
|
|
|
45354
45426
|
# resp.volumes_modifications[0].progress #=> Integer
|
|
45355
45427
|
# resp.volumes_modifications[0].start_time #=> Time
|
|
45356
45428
|
# resp.volumes_modifications[0].end_time #=> Time
|
|
45429
|
+
# resp.volumes_modifications[0].operator.managed #=> Boolean
|
|
45430
|
+
# resp.volumes_modifications[0].operator.principal #=> String
|
|
45431
|
+
# resp.volumes_modifications[0].operator.hidden_by_default #=> Boolean
|
|
45357
45432
|
#
|
|
45358
45433
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVolumesModifications AWS API Documentation
|
|
45359
45434
|
#
|
|
@@ -54095,6 +54170,7 @@ module Aws::EC2
|
|
|
54095
54170
|
# resp.launch_template_data.disable_api_stop #=> Boolean
|
|
54096
54171
|
# resp.launch_template_data.operator.managed #=> Boolean
|
|
54097
54172
|
# resp.launch_template_data.operator.principal #=> String
|
|
54173
|
+
# resp.launch_template_data.operator.hidden_by_default #=> Boolean
|
|
54098
54174
|
# resp.launch_template_data.network_performance_options.bandwidth_weighting #=> String, one of "default", "vpc-1", "ebs-1"
|
|
54099
54175
|
# resp.launch_template_data.secondary_interfaces #=> Array
|
|
54100
54176
|
# resp.launch_template_data.secondary_interfaces[0].delete_on_termination #=> Boolean
|
|
@@ -54224,6 +54300,39 @@ module Aws::EC2
|
|
|
54224
54300
|
req.send_request(options)
|
|
54225
54301
|
end
|
|
54226
54302
|
|
|
54303
|
+
# Retrieves the managed resource visibility configuration for the
|
|
54304
|
+
# account. The response indicates whether managed resources are hidden
|
|
54305
|
+
# or visible by default.
|
|
54306
|
+
#
|
|
54307
|
+
# @option params [Boolean] :dry_run
|
|
54308
|
+
# Checks whether you have the required permissions for the operation,
|
|
54309
|
+
# without actually making the request, and provides an error response.
|
|
54310
|
+
# If you have the required permissions, the error response is
|
|
54311
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
54312
|
+
#
|
|
54313
|
+
# @return [Types::GetManagedResourceVisibilityResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
54314
|
+
#
|
|
54315
|
+
# * {Types::GetManagedResourceVisibilityResult#visibility #visibility} => Types::ManagedResourceVisibilitySettings
|
|
54316
|
+
#
|
|
54317
|
+
# @example Request syntax with placeholder values
|
|
54318
|
+
#
|
|
54319
|
+
# resp = client.get_managed_resource_visibility({
|
|
54320
|
+
# dry_run: false,
|
|
54321
|
+
# })
|
|
54322
|
+
#
|
|
54323
|
+
# @example Response structure
|
|
54324
|
+
#
|
|
54325
|
+
# resp.visibility.default_visibility #=> String, one of "hidden", "visible"
|
|
54326
|
+
#
|
|
54327
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetManagedResourceVisibility AWS API Documentation
|
|
54328
|
+
#
|
|
54329
|
+
# @overload get_managed_resource_visibility(params = {})
|
|
54330
|
+
# @param [Hash] params ({})
|
|
54331
|
+
def get_managed_resource_visibility(params = {}, options = {})
|
|
54332
|
+
req = build_request(:get_managed_resource_visibility, params)
|
|
54333
|
+
req.send_request(options)
|
|
54334
|
+
end
|
|
54335
|
+
|
|
54227
54336
|
# Gets the findings for the specified Network Access Scope analysis.
|
|
54228
54337
|
#
|
|
54229
54338
|
# @option params [required, String] :network_insights_access_scope_analysis_id
|
|
@@ -57431,6 +57540,7 @@ module Aws::EC2
|
|
|
57431
57540
|
# resp.volumes[0].snapshot_id #=> String
|
|
57432
57541
|
# resp.volumes[0].operator.managed #=> Boolean
|
|
57433
57542
|
# resp.volumes[0].operator.principal #=> String
|
|
57543
|
+
# resp.volumes[0].operator.hidden_by_default #=> Boolean
|
|
57434
57544
|
# resp.volumes[0].create_time #=> Time
|
|
57435
57545
|
# resp.volumes[0].recycle_bin_enter_time #=> Time
|
|
57436
57546
|
# resp.volumes[0].recycle_bin_exit_time #=> Time
|
|
@@ -59078,7 +59188,7 @@ module Aws::EC2
|
|
|
59078
59188
|
# dry_run: false,
|
|
59079
59189
|
# instance_id: "InstanceId", # required
|
|
59080
59190
|
# attribute: "instanceType", # accepts instanceType, kernel, ramdisk, userData, disableApiTermination, instanceInitiatedShutdownBehavior, rootDeviceName, blockDeviceMapping, productCodes, sourceDestCheck, groupSet, ebsOptimized, sriovNetSupport, enaSupport, enclaveOptions, disableApiStop
|
|
59081
|
-
# value: "
|
|
59191
|
+
# value: "ModifyInstanceAttributeValue",
|
|
59082
59192
|
# block_device_mappings: [
|
|
59083
59193
|
# {
|
|
59084
59194
|
# device_name: "String",
|
|
@@ -60860,6 +60970,7 @@ module Aws::EC2
|
|
|
60860
60970
|
# resp.launch_template.tags[0].value #=> String
|
|
60861
60971
|
# resp.launch_template.operator.managed #=> Boolean
|
|
60862
60972
|
# resp.launch_template.operator.principal #=> String
|
|
60973
|
+
# resp.launch_template.operator.hidden_by_default #=> Boolean
|
|
60863
60974
|
#
|
|
60864
60975
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyLaunchTemplate AWS API Documentation
|
|
60865
60976
|
#
|
|
@@ -61032,6 +61143,46 @@ module Aws::EC2
|
|
|
61032
61143
|
req.send_request(options)
|
|
61033
61144
|
end
|
|
61034
61145
|
|
|
61146
|
+
# Modifies the managed resource visibility configuration for the
|
|
61147
|
+
# account. Use this operation to control whether managed resources are
|
|
61148
|
+
# hidden or visible by default. Visibility settings are account-wide and
|
|
61149
|
+
# affect all IAM principals uniformly. Hidden resources remain fully
|
|
61150
|
+
# operational and billable.
|
|
61151
|
+
#
|
|
61152
|
+
# @option params [Boolean] :dry_run
|
|
61153
|
+
# Checks whether you have the required permissions for the operation,
|
|
61154
|
+
# without actually making the request, and provides an error response.
|
|
61155
|
+
# If you have the required permissions, the error response is
|
|
61156
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
61157
|
+
#
|
|
61158
|
+
# @option params [required, String] :default_visibility
|
|
61159
|
+
# The default visibility setting for managed resources. Valid values:
|
|
61160
|
+
# `hidden` \| `visible`.
|
|
61161
|
+
#
|
|
61162
|
+
# @return [Types::ModifyManagedResourceVisibilityResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
61163
|
+
#
|
|
61164
|
+
# * {Types::ModifyManagedResourceVisibilityResult#visibility #visibility} => Types::ManagedResourceVisibilitySettings
|
|
61165
|
+
#
|
|
61166
|
+
# @example Request syntax with placeholder values
|
|
61167
|
+
#
|
|
61168
|
+
# resp = client.modify_managed_resource_visibility({
|
|
61169
|
+
# dry_run: false,
|
|
61170
|
+
# default_visibility: "hidden", # required, accepts hidden, visible
|
|
61171
|
+
# })
|
|
61172
|
+
#
|
|
61173
|
+
# @example Response structure
|
|
61174
|
+
#
|
|
61175
|
+
# resp.visibility.default_visibility #=> String, one of "hidden", "visible"
|
|
61176
|
+
#
|
|
61177
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyManagedResourceVisibility AWS API Documentation
|
|
61178
|
+
#
|
|
61179
|
+
# @overload modify_managed_resource_visibility(params = {})
|
|
61180
|
+
# @param [Hash] params ({})
|
|
61181
|
+
def modify_managed_resource_visibility(params = {}, options = {})
|
|
61182
|
+
req = build_request(:modify_managed_resource_visibility, params)
|
|
61183
|
+
req.send_request(options)
|
|
61184
|
+
end
|
|
61185
|
+
|
|
61035
61186
|
# Modifies the specified network interface attribute. You can specify
|
|
61036
61187
|
# only one attribute at a time. You can use this action to attach and
|
|
61037
61188
|
# detach security groups from an existing EC2 instance.
|
|
@@ -63395,6 +63546,9 @@ module Aws::EC2
|
|
|
63395
63546
|
# resp.volume_modification.progress #=> Integer
|
|
63396
63547
|
# resp.volume_modification.start_time #=> Time
|
|
63397
63548
|
# resp.volume_modification.end_time #=> Time
|
|
63549
|
+
# resp.volume_modification.operator.managed #=> Boolean
|
|
63550
|
+
# resp.volume_modification.operator.principal #=> String
|
|
63551
|
+
# resp.volume_modification.operator.hidden_by_default #=> Boolean
|
|
63398
63552
|
#
|
|
63399
63553
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVolume AWS API Documentation
|
|
63400
63554
|
#
|
|
@@ -64458,6 +64612,13 @@ module Aws::EC2
|
|
|
64458
64612
|
#
|
|
64459
64613
|
# Default: `::/0`
|
|
64460
64614
|
#
|
|
64615
|
+
# @option params [String] :tunnel_bandwidth
|
|
64616
|
+
# The desired bandwidth specification for the VPN connection. `standard`
|
|
64617
|
+
# supports up to 1.25 Gbps per tunnel, while `large` supports up to 5
|
|
64618
|
+
# Gbps per tunnel. Large bandwidth is only available for VPN connections
|
|
64619
|
+
# attached to a transit gateway or to Cloud WAN. The default value is
|
|
64620
|
+
# `standard`.
|
|
64621
|
+
#
|
|
64461
64622
|
# @option params [Boolean] :dry_run
|
|
64462
64623
|
# Checks whether you have the required permissions for the action,
|
|
64463
64624
|
# without actually making the request, and provides an error response.
|
|
@@ -64476,6 +64637,7 @@ module Aws::EC2
|
|
|
64476
64637
|
# remote_ipv_4_network_cidr: "String",
|
|
64477
64638
|
# local_ipv_6_network_cidr: "String",
|
|
64478
64639
|
# remote_ipv_6_network_cidr: "String",
|
|
64640
|
+
# tunnel_bandwidth: "standard", # accepts standard, large
|
|
64479
64641
|
# dry_run: false,
|
|
64480
64642
|
# })
|
|
64481
64643
|
#
|
|
@@ -70373,6 +70535,7 @@ module Aws::EC2
|
|
|
70373
70535
|
# resp.instances[0].block_device_mappings[0].ebs.volume_owner_id #=> String
|
|
70374
70536
|
# resp.instances[0].block_device_mappings[0].ebs.operator.managed #=> Boolean
|
|
70375
70537
|
# resp.instances[0].block_device_mappings[0].ebs.operator.principal #=> String
|
|
70538
|
+
# resp.instances[0].block_device_mappings[0].ebs.operator.hidden_by_default #=> Boolean
|
|
70376
70539
|
# resp.instances[0].block_device_mappings[0].ebs.ebs_card_index #=> Integer
|
|
70377
70540
|
# resp.instances[0].client_token #=> String
|
|
70378
70541
|
# resp.instances[0].ebs_optimized #=> Boolean
|
|
@@ -70441,6 +70604,7 @@ module Aws::EC2
|
|
|
70441
70604
|
# resp.instances[0].network_interfaces[0].connection_tracking_configuration.udp_timeout #=> Integer
|
|
70442
70605
|
# resp.instances[0].network_interfaces[0].operator.managed #=> Boolean
|
|
70443
70606
|
# resp.instances[0].network_interfaces[0].operator.principal #=> String
|
|
70607
|
+
# resp.instances[0].network_interfaces[0].operator.hidden_by_default #=> Boolean
|
|
70444
70608
|
# resp.instances[0].outpost_arn #=> String
|
|
70445
70609
|
# resp.instances[0].root_device_name #=> String
|
|
70446
70610
|
# resp.instances[0].root_device_type #=> String, one of "ebs", "instance-store"
|
|
@@ -70490,6 +70654,7 @@ module Aws::EC2
|
|
|
70490
70654
|
# resp.instances[0].network_performance_options.bandwidth_weighting #=> String, one of "default", "vpc-1", "ebs-1"
|
|
70491
70655
|
# resp.instances[0].operator.managed #=> Boolean
|
|
70492
70656
|
# resp.instances[0].operator.principal #=> String
|
|
70657
|
+
# resp.instances[0].operator.hidden_by_default #=> Boolean
|
|
70493
70658
|
# resp.instances[0].secondary_interfaces #=> Array
|
|
70494
70659
|
# resp.instances[0].secondary_interfaces[0].attachment.attach_time #=> Time
|
|
70495
70660
|
# resp.instances[0].secondary_interfaces[0].attachment.attachment_id #=> String
|
|
@@ -73390,7 +73555,7 @@ module Aws::EC2
|
|
|
73390
73555
|
tracer: tracer
|
|
73391
73556
|
)
|
|
73392
73557
|
context[:gem_name] = 'aws-sdk-ec2'
|
|
73393
|
-
context[:gem_version] = '1.
|
|
73558
|
+
context[:gem_version] = '1.614.0'
|
|
73394
73559
|
Seahorse::Client::Request.new(handlers, context)
|
|
73395
73560
|
end
|
|
73396
73561
|
|