aws-sdk-ec2 1.301.0 → 1.304.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 +149 -11
- data/lib/aws-sdk-ec2/client_api.rb +32 -5
- data/lib/aws-sdk-ec2/types.rb +170 -17
- data/lib/aws-sdk-ec2.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9a951c1658ef7910387e10baaacc762e1fb12c34244a70e967f1cad4eed0a835
|
4
|
+
data.tar.gz: feac1bdfca6e5573d736fb4a3d935925610e5cdece01fca9a4c47c5181dce557
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 701bf365700ac7dd9ceaf16f551c65fb55d71127701697f3d6bb7455caca58a64131465fdff98cb5cdb4436ecd957660f7b7f3a77f1cc427fdfb5f8516852451
|
7
|
+
data.tar.gz: d4afcc11f16f3d64c4e65c4ac264f493b572b3cff64cf5bc16666bb0d50e411916897ff4ed4ba02121e3591a206841eca338c5966a5c97db5a20f690d321e314
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.304.0 (2022-03-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This is release adds support for Amazon VPC Reachability Analyzer to analyze path through a Transit Gateway.
|
8
|
+
|
9
|
+
1.303.0 (2022-03-15)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Adds the Cascade parameter to the DeleteIpam API. Customers can use this parameter to automatically delete their IPAM, including non-default scopes, pools, cidrs, and allocations. There mustn't be any pools provisioned in the default public scope to use this parameter.
|
13
|
+
|
14
|
+
1.302.0 (2022-03-04)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Documentation updates for Amazon EC2.
|
18
|
+
|
4
19
|
1.301.0 (2022-02-28)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.304.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -5539,7 +5539,7 @@ module Aws::EC2
|
|
5539
5539
|
#
|
5540
5540
|
#
|
5541
5541
|
#
|
5542
|
-
# [1]: https://docs.aws.amazon.com/
|
5542
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-fleet-request-type.html
|
5543
5543
|
#
|
5544
5544
|
# @option params [Time,DateTime,Date,Integer,String] :valid_from
|
5545
5545
|
# The start date and time of the request, in UTC format (for example,
|
@@ -6721,7 +6721,7 @@ module Aws::EC2
|
|
6721
6721
|
# @option params [String] :description
|
6722
6722
|
# A description for the IPAM pool.
|
6723
6723
|
#
|
6724
|
-
# @option params [String] :address_family
|
6724
|
+
# @option params [required, String] :address_family
|
6725
6725
|
# The IP protocol assigned to this IPAM pool. You must choose either
|
6726
6726
|
# IPv4 or IPv6 protocol for a pool.
|
6727
6727
|
#
|
@@ -6805,7 +6805,7 @@ module Aws::EC2
|
|
6805
6805
|
# locale: "String",
|
6806
6806
|
# source_ipam_pool_id: "IpamPoolId",
|
6807
6807
|
# description: "String",
|
6808
|
-
# address_family: "ipv4", # accepts ipv4, ipv6
|
6808
|
+
# address_family: "ipv4", # required, accepts ipv4, ipv6
|
6809
6809
|
# auto_import: false,
|
6810
6810
|
# publicly_advertisable: false,
|
6811
6811
|
# allocation_min_netmask_length: 1,
|
@@ -13721,6 +13721,30 @@ module Aws::EC2
|
|
13721
13721
|
# @option params [required, String] :ipam_id
|
13722
13722
|
# The ID of the IPAM to delete.
|
13723
13723
|
#
|
13724
|
+
# @option params [Boolean] :cascade
|
13725
|
+
# Enables you to quickly delete an IPAM, private scopes, pools in
|
13726
|
+
# private scopes, and any allocations in the pools in private scopes.
|
13727
|
+
# You cannot delete the IPAM with this option if there is a pool in your
|
13728
|
+
# public scope. If you use this option, IPAM does the following:
|
13729
|
+
#
|
13730
|
+
# * Deallocates any CIDRs allocated to VPC resources (such as VPCs) in
|
13731
|
+
# pools in private scopes.
|
13732
|
+
#
|
13733
|
+
# <note markdown="1"> No VPC resources are deleted as a result of enabling this option.
|
13734
|
+
# The CIDR associated with the resource will no longer be allocated
|
13735
|
+
# from an IPAM pool, but the CIDR itself will remain unchanged.
|
13736
|
+
#
|
13737
|
+
# </note>
|
13738
|
+
#
|
13739
|
+
# * Deprovisions all IPv4 CIDRs provisioned to IPAM pools in private
|
13740
|
+
# scopes.
|
13741
|
+
#
|
13742
|
+
# * Deletes all IPAM pools in private scopes.
|
13743
|
+
#
|
13744
|
+
# * Deletes all non-default private scopes in the IPAM.
|
13745
|
+
#
|
13746
|
+
# * Deletes the default public and private scopes and the IPAM.
|
13747
|
+
#
|
13724
13748
|
# @return [Types::DeleteIpamResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
13725
13749
|
#
|
13726
13750
|
# * {Types::DeleteIpamResult#ipam #ipam} => Types::Ipam
|
@@ -13730,6 +13754,7 @@ module Aws::EC2
|
|
13730
13754
|
# resp = client.delete_ipam({
|
13731
13755
|
# dry_run: false,
|
13732
13756
|
# ipam_id: "IpamId", # required
|
13757
|
+
# cascade: false,
|
13733
13758
|
# })
|
13734
13759
|
#
|
13735
13760
|
# @example Response structure
|
@@ -18054,7 +18079,7 @@ module Aws::EC2
|
|
18054
18079
|
# @example Request syntax with placeholder values
|
18055
18080
|
#
|
18056
18081
|
# resp = client.describe_coip_pools({
|
18057
|
-
# pool_ids: ["
|
18082
|
+
# pool_ids: ["Ipv4PoolCoipId"],
|
18058
18083
|
# filters: [
|
18059
18084
|
# {
|
18060
18085
|
# name: "String",
|
@@ -24340,7 +24365,7 @@ module Aws::EC2
|
|
24340
24365
|
# The time when the network insights analyses ended.
|
24341
24366
|
#
|
24342
24367
|
# @option params [Array<Types::Filter>] :filters
|
24343
|
-
# The filters. The following are possible values:
|
24368
|
+
# The filters. The following are the possible values:
|
24344
24369
|
#
|
24345
24370
|
# * PathFound - A Boolean value that indicates whether a feasible path
|
24346
24371
|
# is found.
|
@@ -24466,6 +24491,21 @@ module Aws::EC2
|
|
24466
24491
|
# resp.network_insights_analyses[0].forward_path_components[0].vpc.id #=> String
|
24467
24492
|
# resp.network_insights_analyses[0].forward_path_components[0].vpc.arn #=> String
|
24468
24493
|
# resp.network_insights_analyses[0].forward_path_components[0].vpc.name #=> String
|
24494
|
+
# resp.network_insights_analyses[0].forward_path_components[0].additional_details #=> Array
|
24495
|
+
# resp.network_insights_analyses[0].forward_path_components[0].additional_details[0].additional_detail_type #=> String
|
24496
|
+
# resp.network_insights_analyses[0].forward_path_components[0].additional_details[0].component.id #=> String
|
24497
|
+
# resp.network_insights_analyses[0].forward_path_components[0].additional_details[0].component.arn #=> String
|
24498
|
+
# resp.network_insights_analyses[0].forward_path_components[0].additional_details[0].component.name #=> String
|
24499
|
+
# resp.network_insights_analyses[0].forward_path_components[0].transit_gateway.id #=> String
|
24500
|
+
# resp.network_insights_analyses[0].forward_path_components[0].transit_gateway.arn #=> String
|
24501
|
+
# resp.network_insights_analyses[0].forward_path_components[0].transit_gateway.name #=> String
|
24502
|
+
# resp.network_insights_analyses[0].forward_path_components[0].transit_gateway_route_table_route.destination_cidr #=> String
|
24503
|
+
# resp.network_insights_analyses[0].forward_path_components[0].transit_gateway_route_table_route.state #=> String
|
24504
|
+
# resp.network_insights_analyses[0].forward_path_components[0].transit_gateway_route_table_route.route_origin #=> String
|
24505
|
+
# resp.network_insights_analyses[0].forward_path_components[0].transit_gateway_route_table_route.prefix_list_id #=> String
|
24506
|
+
# resp.network_insights_analyses[0].forward_path_components[0].transit_gateway_route_table_route.attachment_id #=> String
|
24507
|
+
# resp.network_insights_analyses[0].forward_path_components[0].transit_gateway_route_table_route.resource_id #=> String
|
24508
|
+
# resp.network_insights_analyses[0].forward_path_components[0].transit_gateway_route_table_route.resource_type #=> String
|
24469
24509
|
# resp.network_insights_analyses[0].return_path_components #=> Array
|
24470
24510
|
# resp.network_insights_analyses[0].return_path_components[0].sequence_number #=> Integer
|
24471
24511
|
# resp.network_insights_analyses[0].return_path_components[0].acl_rule.cidr #=> String
|
@@ -24532,6 +24572,21 @@ module Aws::EC2
|
|
24532
24572
|
# resp.network_insights_analyses[0].return_path_components[0].vpc.id #=> String
|
24533
24573
|
# resp.network_insights_analyses[0].return_path_components[0].vpc.arn #=> String
|
24534
24574
|
# resp.network_insights_analyses[0].return_path_components[0].vpc.name #=> String
|
24575
|
+
# resp.network_insights_analyses[0].return_path_components[0].additional_details #=> Array
|
24576
|
+
# resp.network_insights_analyses[0].return_path_components[0].additional_details[0].additional_detail_type #=> String
|
24577
|
+
# resp.network_insights_analyses[0].return_path_components[0].additional_details[0].component.id #=> String
|
24578
|
+
# resp.network_insights_analyses[0].return_path_components[0].additional_details[0].component.arn #=> String
|
24579
|
+
# resp.network_insights_analyses[0].return_path_components[0].additional_details[0].component.name #=> String
|
24580
|
+
# resp.network_insights_analyses[0].return_path_components[0].transit_gateway.id #=> String
|
24581
|
+
# resp.network_insights_analyses[0].return_path_components[0].transit_gateway.arn #=> String
|
24582
|
+
# resp.network_insights_analyses[0].return_path_components[0].transit_gateway.name #=> String
|
24583
|
+
# resp.network_insights_analyses[0].return_path_components[0].transit_gateway_route_table_route.destination_cidr #=> String
|
24584
|
+
# resp.network_insights_analyses[0].return_path_components[0].transit_gateway_route_table_route.state #=> String
|
24585
|
+
# resp.network_insights_analyses[0].return_path_components[0].transit_gateway_route_table_route.route_origin #=> String
|
24586
|
+
# resp.network_insights_analyses[0].return_path_components[0].transit_gateway_route_table_route.prefix_list_id #=> String
|
24587
|
+
# resp.network_insights_analyses[0].return_path_components[0].transit_gateway_route_table_route.attachment_id #=> String
|
24588
|
+
# resp.network_insights_analyses[0].return_path_components[0].transit_gateway_route_table_route.resource_id #=> String
|
24589
|
+
# resp.network_insights_analyses[0].return_path_components[0].transit_gateway_route_table_route.resource_type #=> String
|
24535
24590
|
# resp.network_insights_analyses[0].explanations #=> Array
|
24536
24591
|
# resp.network_insights_analyses[0].explanations[0].acl.id #=> String
|
24537
24592
|
# resp.network_insights_analyses[0].explanations[0].acl.arn #=> String
|
@@ -24663,6 +24718,22 @@ module Aws::EC2
|
|
24663
24718
|
# resp.network_insights_analyses[0].explanations[0].vpn_gateway.id #=> String
|
24664
24719
|
# resp.network_insights_analyses[0].explanations[0].vpn_gateway.arn #=> String
|
24665
24720
|
# resp.network_insights_analyses[0].explanations[0].vpn_gateway.name #=> String
|
24721
|
+
# resp.network_insights_analyses[0].explanations[0].transit_gateway.id #=> String
|
24722
|
+
# resp.network_insights_analyses[0].explanations[0].transit_gateway.arn #=> String
|
24723
|
+
# resp.network_insights_analyses[0].explanations[0].transit_gateway.name #=> String
|
24724
|
+
# resp.network_insights_analyses[0].explanations[0].transit_gateway_route_table.id #=> String
|
24725
|
+
# resp.network_insights_analyses[0].explanations[0].transit_gateway_route_table.arn #=> String
|
24726
|
+
# resp.network_insights_analyses[0].explanations[0].transit_gateway_route_table.name #=> String
|
24727
|
+
# resp.network_insights_analyses[0].explanations[0].transit_gateway_route_table_route.destination_cidr #=> String
|
24728
|
+
# resp.network_insights_analyses[0].explanations[0].transit_gateway_route_table_route.state #=> String
|
24729
|
+
# resp.network_insights_analyses[0].explanations[0].transit_gateway_route_table_route.route_origin #=> String
|
24730
|
+
# resp.network_insights_analyses[0].explanations[0].transit_gateway_route_table_route.prefix_list_id #=> String
|
24731
|
+
# resp.network_insights_analyses[0].explanations[0].transit_gateway_route_table_route.attachment_id #=> String
|
24732
|
+
# resp.network_insights_analyses[0].explanations[0].transit_gateway_route_table_route.resource_id #=> String
|
24733
|
+
# resp.network_insights_analyses[0].explanations[0].transit_gateway_route_table_route.resource_type #=> String
|
24734
|
+
# resp.network_insights_analyses[0].explanations[0].transit_gateway_attachment.id #=> String
|
24735
|
+
# resp.network_insights_analyses[0].explanations[0].transit_gateway_attachment.arn #=> String
|
24736
|
+
# resp.network_insights_analyses[0].explanations[0].transit_gateway_attachment.name #=> String
|
24666
24737
|
# resp.network_insights_analyses[0].alternate_path_hints #=> Array
|
24667
24738
|
# resp.network_insights_analyses[0].alternate_path_hints[0].component_id #=> String
|
24668
24739
|
# resp.network_insights_analyses[0].alternate_path_hints[0].component_arn #=> String
|
@@ -24686,7 +24757,7 @@ module Aws::EC2
|
|
24686
24757
|
# The IDs of the paths.
|
24687
24758
|
#
|
24688
24759
|
# @option params [Array<Types::Filter>] :filters
|
24689
|
-
# The filters. The following are possible values:
|
24760
|
+
# The filters. The following are the possible values:
|
24690
24761
|
#
|
24691
24762
|
# * Destination - The ID of the resource.
|
24692
24763
|
#
|
@@ -34602,7 +34673,7 @@ module Aws::EC2
|
|
34602
34673
|
# @example Request syntax with placeholder values
|
34603
34674
|
#
|
34604
34675
|
# resp = client.get_coip_pool_usage({
|
34605
|
-
# pool_id: "
|
34676
|
+
# pool_id: "Ipv4PoolCoipId", # required
|
34606
34677
|
# filters: [
|
34607
34678
|
# {
|
34608
34679
|
# name: "String",
|
@@ -35963,6 +36034,21 @@ module Aws::EC2
|
|
35963
36034
|
# resp.analysis_findings[0].finding_components[0].vpc.id #=> String
|
35964
36035
|
# resp.analysis_findings[0].finding_components[0].vpc.arn #=> String
|
35965
36036
|
# resp.analysis_findings[0].finding_components[0].vpc.name #=> String
|
36037
|
+
# resp.analysis_findings[0].finding_components[0].additional_details #=> Array
|
36038
|
+
# resp.analysis_findings[0].finding_components[0].additional_details[0].additional_detail_type #=> String
|
36039
|
+
# resp.analysis_findings[0].finding_components[0].additional_details[0].component.id #=> String
|
36040
|
+
# resp.analysis_findings[0].finding_components[0].additional_details[0].component.arn #=> String
|
36041
|
+
# resp.analysis_findings[0].finding_components[0].additional_details[0].component.name #=> String
|
36042
|
+
# resp.analysis_findings[0].finding_components[0].transit_gateway.id #=> String
|
36043
|
+
# resp.analysis_findings[0].finding_components[0].transit_gateway.arn #=> String
|
36044
|
+
# resp.analysis_findings[0].finding_components[0].transit_gateway.name #=> String
|
36045
|
+
# resp.analysis_findings[0].finding_components[0].transit_gateway_route_table_route.destination_cidr #=> String
|
36046
|
+
# resp.analysis_findings[0].finding_components[0].transit_gateway_route_table_route.state #=> String
|
36047
|
+
# resp.analysis_findings[0].finding_components[0].transit_gateway_route_table_route.route_origin #=> String
|
36048
|
+
# resp.analysis_findings[0].finding_components[0].transit_gateway_route_table_route.prefix_list_id #=> String
|
36049
|
+
# resp.analysis_findings[0].finding_components[0].transit_gateway_route_table_route.attachment_id #=> String
|
36050
|
+
# resp.analysis_findings[0].finding_components[0].transit_gateway_route_table_route.resource_id #=> String
|
36051
|
+
# resp.analysis_findings[0].finding_components[0].transit_gateway_route_table_route.resource_type #=> String
|
35966
36052
|
# resp.next_token #=> String
|
35967
36053
|
#
|
35968
36054
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetNetworkInsightsAccessScopeAnalysisFindings AWS API Documentation
|
@@ -42888,6 +42974,12 @@ module Aws::EC2
|
|
42888
42974
|
|
42889
42975
|
# Move an BYOIP IPv4 CIDR to IPAM from a public IPv4 pool.
|
42890
42976
|
#
|
42977
|
+
# If you already have an IPv4 BYOIP CIDR with Amazon Web Services, you
|
42978
|
+
# can move the CIDR to IPAM from a public IPv4 pool. You cannot move an
|
42979
|
+
# IPv6 CIDR to IPAM. If you are bringing a new IP address to Amazon Web
|
42980
|
+
# Services for the first time, complete the steps in [Tutorial: BYOIP
|
42981
|
+
# address CIDRs to IPAM](/vpc/latest/ipam/tutorials-byoip-ipam.html).
|
42982
|
+
#
|
42891
42983
|
# @option params [Boolean] :dry_run
|
42892
42984
|
# A check for whether you have the required permissions for the action
|
42893
42985
|
# without actually making the request and provides an error response. If
|
@@ -43033,7 +43125,7 @@ module Aws::EC2
|
|
43033
43125
|
req.send_request(options)
|
43034
43126
|
end
|
43035
43127
|
|
43036
|
-
# Provision a CIDR to an IPAM pool. You can use
|
43128
|
+
# Provision a CIDR to an IPAM pool. You can use this action to provision
|
43037
43129
|
# new CIDRs to a top-level pool or to transfer a CIDR from a top-level
|
43038
43130
|
# pool to a pool within it.
|
43039
43131
|
#
|
@@ -44258,7 +44350,7 @@ module Aws::EC2
|
|
44258
44350
|
# @option params [required, String] :cidr
|
44259
44351
|
# The CIDR of the allocation you want to release.
|
44260
44352
|
#
|
44261
|
-
# @option params [String] :ipam_pool_allocation_id
|
44353
|
+
# @option params [required, String] :ipam_pool_allocation_id
|
44262
44354
|
# The ID of the allocation.
|
44263
44355
|
#
|
44264
44356
|
# @return [Types::ReleaseIpamPoolAllocationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -44271,7 +44363,7 @@ module Aws::EC2
|
|
44271
44363
|
# dry_run: false,
|
44272
44364
|
# ipam_pool_id: "IpamPoolId", # required
|
44273
44365
|
# cidr: "String", # required
|
44274
|
-
# ipam_pool_allocation_id: "IpamPoolAllocationId",
|
44366
|
+
# ipam_pool_allocation_id: "IpamPoolAllocationId", # required
|
44275
44367
|
# })
|
44276
44368
|
#
|
44277
44369
|
# @example Response structure
|
@@ -48288,6 +48380,21 @@ module Aws::EC2
|
|
48288
48380
|
# resp.network_insights_analysis.forward_path_components[0].vpc.id #=> String
|
48289
48381
|
# resp.network_insights_analysis.forward_path_components[0].vpc.arn #=> String
|
48290
48382
|
# resp.network_insights_analysis.forward_path_components[0].vpc.name #=> String
|
48383
|
+
# resp.network_insights_analysis.forward_path_components[0].additional_details #=> Array
|
48384
|
+
# resp.network_insights_analysis.forward_path_components[0].additional_details[0].additional_detail_type #=> String
|
48385
|
+
# resp.network_insights_analysis.forward_path_components[0].additional_details[0].component.id #=> String
|
48386
|
+
# resp.network_insights_analysis.forward_path_components[0].additional_details[0].component.arn #=> String
|
48387
|
+
# resp.network_insights_analysis.forward_path_components[0].additional_details[0].component.name #=> String
|
48388
|
+
# resp.network_insights_analysis.forward_path_components[0].transit_gateway.id #=> String
|
48389
|
+
# resp.network_insights_analysis.forward_path_components[0].transit_gateway.arn #=> String
|
48390
|
+
# resp.network_insights_analysis.forward_path_components[0].transit_gateway.name #=> String
|
48391
|
+
# resp.network_insights_analysis.forward_path_components[0].transit_gateway_route_table_route.destination_cidr #=> String
|
48392
|
+
# resp.network_insights_analysis.forward_path_components[0].transit_gateway_route_table_route.state #=> String
|
48393
|
+
# resp.network_insights_analysis.forward_path_components[0].transit_gateway_route_table_route.route_origin #=> String
|
48394
|
+
# resp.network_insights_analysis.forward_path_components[0].transit_gateway_route_table_route.prefix_list_id #=> String
|
48395
|
+
# resp.network_insights_analysis.forward_path_components[0].transit_gateway_route_table_route.attachment_id #=> String
|
48396
|
+
# resp.network_insights_analysis.forward_path_components[0].transit_gateway_route_table_route.resource_id #=> String
|
48397
|
+
# resp.network_insights_analysis.forward_path_components[0].transit_gateway_route_table_route.resource_type #=> String
|
48291
48398
|
# resp.network_insights_analysis.return_path_components #=> Array
|
48292
48399
|
# resp.network_insights_analysis.return_path_components[0].sequence_number #=> Integer
|
48293
48400
|
# resp.network_insights_analysis.return_path_components[0].acl_rule.cidr #=> String
|
@@ -48354,6 +48461,21 @@ module Aws::EC2
|
|
48354
48461
|
# resp.network_insights_analysis.return_path_components[0].vpc.id #=> String
|
48355
48462
|
# resp.network_insights_analysis.return_path_components[0].vpc.arn #=> String
|
48356
48463
|
# resp.network_insights_analysis.return_path_components[0].vpc.name #=> String
|
48464
|
+
# resp.network_insights_analysis.return_path_components[0].additional_details #=> Array
|
48465
|
+
# resp.network_insights_analysis.return_path_components[0].additional_details[0].additional_detail_type #=> String
|
48466
|
+
# resp.network_insights_analysis.return_path_components[0].additional_details[0].component.id #=> String
|
48467
|
+
# resp.network_insights_analysis.return_path_components[0].additional_details[0].component.arn #=> String
|
48468
|
+
# resp.network_insights_analysis.return_path_components[0].additional_details[0].component.name #=> String
|
48469
|
+
# resp.network_insights_analysis.return_path_components[0].transit_gateway.id #=> String
|
48470
|
+
# resp.network_insights_analysis.return_path_components[0].transit_gateway.arn #=> String
|
48471
|
+
# resp.network_insights_analysis.return_path_components[0].transit_gateway.name #=> String
|
48472
|
+
# resp.network_insights_analysis.return_path_components[0].transit_gateway_route_table_route.destination_cidr #=> String
|
48473
|
+
# resp.network_insights_analysis.return_path_components[0].transit_gateway_route_table_route.state #=> String
|
48474
|
+
# resp.network_insights_analysis.return_path_components[0].transit_gateway_route_table_route.route_origin #=> String
|
48475
|
+
# resp.network_insights_analysis.return_path_components[0].transit_gateway_route_table_route.prefix_list_id #=> String
|
48476
|
+
# resp.network_insights_analysis.return_path_components[0].transit_gateway_route_table_route.attachment_id #=> String
|
48477
|
+
# resp.network_insights_analysis.return_path_components[0].transit_gateway_route_table_route.resource_id #=> String
|
48478
|
+
# resp.network_insights_analysis.return_path_components[0].transit_gateway_route_table_route.resource_type #=> String
|
48357
48479
|
# resp.network_insights_analysis.explanations #=> Array
|
48358
48480
|
# resp.network_insights_analysis.explanations[0].acl.id #=> String
|
48359
48481
|
# resp.network_insights_analysis.explanations[0].acl.arn #=> String
|
@@ -48485,6 +48607,22 @@ module Aws::EC2
|
|
48485
48607
|
# resp.network_insights_analysis.explanations[0].vpn_gateway.id #=> String
|
48486
48608
|
# resp.network_insights_analysis.explanations[0].vpn_gateway.arn #=> String
|
48487
48609
|
# resp.network_insights_analysis.explanations[0].vpn_gateway.name #=> String
|
48610
|
+
# resp.network_insights_analysis.explanations[0].transit_gateway.id #=> String
|
48611
|
+
# resp.network_insights_analysis.explanations[0].transit_gateway.arn #=> String
|
48612
|
+
# resp.network_insights_analysis.explanations[0].transit_gateway.name #=> String
|
48613
|
+
# resp.network_insights_analysis.explanations[0].transit_gateway_route_table.id #=> String
|
48614
|
+
# resp.network_insights_analysis.explanations[0].transit_gateway_route_table.arn #=> String
|
48615
|
+
# resp.network_insights_analysis.explanations[0].transit_gateway_route_table.name #=> String
|
48616
|
+
# resp.network_insights_analysis.explanations[0].transit_gateway_route_table_route.destination_cidr #=> String
|
48617
|
+
# resp.network_insights_analysis.explanations[0].transit_gateway_route_table_route.state #=> String
|
48618
|
+
# resp.network_insights_analysis.explanations[0].transit_gateway_route_table_route.route_origin #=> String
|
48619
|
+
# resp.network_insights_analysis.explanations[0].transit_gateway_route_table_route.prefix_list_id #=> String
|
48620
|
+
# resp.network_insights_analysis.explanations[0].transit_gateway_route_table_route.attachment_id #=> String
|
48621
|
+
# resp.network_insights_analysis.explanations[0].transit_gateway_route_table_route.resource_id #=> String
|
48622
|
+
# resp.network_insights_analysis.explanations[0].transit_gateway_route_table_route.resource_type #=> String
|
48623
|
+
# resp.network_insights_analysis.explanations[0].transit_gateway_attachment.id #=> String
|
48624
|
+
# resp.network_insights_analysis.explanations[0].transit_gateway_attachment.arn #=> String
|
48625
|
+
# resp.network_insights_analysis.explanations[0].transit_gateway_attachment.name #=> String
|
48488
48626
|
# resp.network_insights_analysis.alternate_path_hints #=> Array
|
48489
48627
|
# resp.network_insights_analysis.alternate_path_hints[0].component_id #=> String
|
48490
48628
|
# resp.network_insights_analysis.alternate_path_hints[0].component_arn #=> String
|
@@ -49312,7 +49450,7 @@ module Aws::EC2
|
|
49312
49450
|
params: params,
|
49313
49451
|
config: config)
|
49314
49452
|
context[:gem_name] = 'aws-sdk-ec2'
|
49315
|
-
context[:gem_version] = '1.
|
49453
|
+
context[:gem_version] = '1.304.0'
|
49316
49454
|
Seahorse::Client::Request.new(handlers, context)
|
49317
49455
|
end
|
49318
49456
|
|
@@ -54,6 +54,8 @@ module Aws::EC2
|
|
54
54
|
AddIpamOperatingRegionSet = Shapes::ListShape.new(name: 'AddIpamOperatingRegionSet')
|
55
55
|
AddPrefixListEntries = Shapes::ListShape.new(name: 'AddPrefixListEntries')
|
56
56
|
AddPrefixListEntry = Shapes::StructureShape.new(name: 'AddPrefixListEntry')
|
57
|
+
AdditionalDetail = Shapes::StructureShape.new(name: 'AdditionalDetail')
|
58
|
+
AdditionalDetailList = Shapes::ListShape.new(name: 'AdditionalDetailList')
|
57
59
|
Address = Shapes::StructureShape.new(name: 'Address')
|
58
60
|
AddressAttribute = Shapes::StructureShape.new(name: 'AddressAttribute')
|
59
61
|
AddressAttributeName = Shapes::StringShape.new(name: 'AddressAttributeName')
|
@@ -1546,6 +1548,7 @@ module Aws::EC2
|
|
1546
1548
|
IpamScopeType = Shapes::StringShape.new(name: 'IpamScopeType')
|
1547
1549
|
IpamSet = Shapes::ListShape.new(name: 'IpamSet')
|
1548
1550
|
IpamState = Shapes::StringShape.new(name: 'IpamState')
|
1551
|
+
Ipv4PoolCoipId = Shapes::StringShape.new(name: 'Ipv4PoolCoipId')
|
1549
1552
|
Ipv4PoolEc2Id = Shapes::StringShape.new(name: 'Ipv4PoolEc2Id')
|
1550
1553
|
Ipv4PrefixList = Shapes::ListShape.new(name: 'Ipv4PrefixList')
|
1551
1554
|
Ipv4PrefixListResponse = Shapes::ListShape.new(name: 'Ipv4PrefixListResponse')
|
@@ -2514,6 +2517,7 @@ module Aws::EC2
|
|
2514
2517
|
TransitGatewayRouteTableList = Shapes::ListShape.new(name: 'TransitGatewayRouteTableList')
|
2515
2518
|
TransitGatewayRouteTablePropagation = Shapes::StructureShape.new(name: 'TransitGatewayRouteTablePropagation')
|
2516
2519
|
TransitGatewayRouteTablePropagationList = Shapes::ListShape.new(name: 'TransitGatewayRouteTablePropagationList')
|
2520
|
+
TransitGatewayRouteTableRoute = Shapes::StructureShape.new(name: 'TransitGatewayRouteTableRoute')
|
2517
2521
|
TransitGatewayRouteTableState = Shapes::StringShape.new(name: 'TransitGatewayRouteTableState')
|
2518
2522
|
TransitGatewayRouteType = Shapes::StringShape.new(name: 'TransitGatewayRouteType')
|
2519
2523
|
TransitGatewayState = Shapes::StringShape.new(name: 'TransitGatewayState')
|
@@ -2792,6 +2796,12 @@ module Aws::EC2
|
|
2792
2796
|
AddPrefixListEntry.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
|
2793
2797
|
AddPrefixListEntry.struct_class = Types::AddPrefixListEntry
|
2794
2798
|
|
2799
|
+
AdditionalDetail.add_member(:additional_detail_type, Shapes::ShapeRef.new(shape: String, location_name: "additionalDetailType"))
|
2800
|
+
AdditionalDetail.add_member(:component, Shapes::ShapeRef.new(shape: AnalysisComponent, location_name: "component"))
|
2801
|
+
AdditionalDetail.struct_class = Types::AdditionalDetail
|
2802
|
+
|
2803
|
+
AdditionalDetailList.member = Shapes::ShapeRef.new(shape: AdditionalDetail, location_name: "item")
|
2804
|
+
|
2795
2805
|
Address.add_member(:instance_id, Shapes::ShapeRef.new(shape: String, location_name: "instanceId"))
|
2796
2806
|
Address.add_member(:public_ip, Shapes::ShapeRef.new(shape: String, location_name: "publicIp"))
|
2797
2807
|
Address.add_member(:allocation_id, Shapes::ShapeRef.new(shape: String, location_name: "allocationId"))
|
@@ -3661,14 +3671,14 @@ module Aws::EC2
|
|
3661
3671
|
|
3662
3672
|
CoipAddressUsageSet.member = Shapes::ShapeRef.new(shape: CoipAddressUsage, location_name: "item")
|
3663
3673
|
|
3664
|
-
CoipPool.add_member(:pool_id, Shapes::ShapeRef.new(shape:
|
3674
|
+
CoipPool.add_member(:pool_id, Shapes::ShapeRef.new(shape: Ipv4PoolCoipId, location_name: "poolId"))
|
3665
3675
|
CoipPool.add_member(:pool_cidrs, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "poolCidrSet"))
|
3666
3676
|
CoipPool.add_member(:local_gateway_route_table_id, Shapes::ShapeRef.new(shape: LocalGatewayRoutetableId, location_name: "localGatewayRouteTableId"))
|
3667
3677
|
CoipPool.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
|
3668
3678
|
CoipPool.add_member(:pool_arn, Shapes::ShapeRef.new(shape: ResourceArn, location_name: "poolArn"))
|
3669
3679
|
CoipPool.struct_class = Types::CoipPool
|
3670
3680
|
|
3671
|
-
CoipPoolIdSet.member = Shapes::ShapeRef.new(shape:
|
3681
|
+
CoipPoolIdSet.member = Shapes::ShapeRef.new(shape: Ipv4PoolCoipId, location_name: "item")
|
3672
3682
|
|
3673
3683
|
CoipPoolSet.member = Shapes::ShapeRef.new(shape: CoipPool, location_name: "item")
|
3674
3684
|
|
@@ -4017,7 +4027,7 @@ module Aws::EC2
|
|
4017
4027
|
CreateIpamPoolRequest.add_member(:locale, Shapes::ShapeRef.new(shape: String, location_name: "Locale"))
|
4018
4028
|
CreateIpamPoolRequest.add_member(:source_ipam_pool_id, Shapes::ShapeRef.new(shape: IpamPoolId, location_name: "SourceIpamPoolId"))
|
4019
4029
|
CreateIpamPoolRequest.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
|
4020
|
-
CreateIpamPoolRequest.add_member(:address_family, Shapes::ShapeRef.new(shape: AddressFamily, location_name: "AddressFamily"))
|
4030
|
+
CreateIpamPoolRequest.add_member(:address_family, Shapes::ShapeRef.new(shape: AddressFamily, required: true, location_name: "AddressFamily"))
|
4021
4031
|
CreateIpamPoolRequest.add_member(:auto_import, Shapes::ShapeRef.new(shape: Boolean, location_name: "AutoImport"))
|
4022
4032
|
CreateIpamPoolRequest.add_member(:publicly_advertisable, Shapes::ShapeRef.new(shape: Boolean, location_name: "PubliclyAdvertisable"))
|
4023
4033
|
CreateIpamPoolRequest.add_member(:allocation_min_netmask_length, Shapes::ShapeRef.new(shape: IpamNetmaskLength, location_name: "AllocationMinNetmaskLength"))
|
@@ -4753,6 +4763,7 @@ module Aws::EC2
|
|
4753
4763
|
|
4754
4764
|
DeleteIpamRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
4755
4765
|
DeleteIpamRequest.add_member(:ipam_id, Shapes::ShapeRef.new(shape: IpamId, required: true, location_name: "IpamId"))
|
4766
|
+
DeleteIpamRequest.add_member(:cascade, Shapes::ShapeRef.new(shape: Boolean, location_name: "Cascade"))
|
4756
4767
|
DeleteIpamRequest.struct_class = Types::DeleteIpamRequest
|
4757
4768
|
|
4758
4769
|
DeleteIpamResult.add_member(:ipam, Shapes::ShapeRef.new(shape: Ipam, location_name: "ipam"))
|
@@ -7170,6 +7181,10 @@ module Aws::EC2
|
|
7170
7181
|
Explanation.add_member(:vpc_endpoint, Shapes::ShapeRef.new(shape: AnalysisComponent, location_name: "vpcEndpoint"))
|
7171
7182
|
Explanation.add_member(:vpn_connection, Shapes::ShapeRef.new(shape: AnalysisComponent, location_name: "vpnConnection"))
|
7172
7183
|
Explanation.add_member(:vpn_gateway, Shapes::ShapeRef.new(shape: AnalysisComponent, location_name: "vpnGateway"))
|
7184
|
+
Explanation.add_member(:transit_gateway, Shapes::ShapeRef.new(shape: AnalysisComponent, location_name: "transitGateway"))
|
7185
|
+
Explanation.add_member(:transit_gateway_route_table, Shapes::ShapeRef.new(shape: AnalysisComponent, location_name: "transitGatewayRouteTable"))
|
7186
|
+
Explanation.add_member(:transit_gateway_route_table_route, Shapes::ShapeRef.new(shape: TransitGatewayRouteTableRoute, location_name: "transitGatewayRouteTableRoute"))
|
7187
|
+
Explanation.add_member(:transit_gateway_attachment, Shapes::ShapeRef.new(shape: AnalysisComponent, location_name: "transitGatewayAttachment"))
|
7173
7188
|
Explanation.struct_class = Types::Explanation
|
7174
7189
|
|
7175
7190
|
ExplanationList.member = Shapes::ShapeRef.new(shape: Explanation, location_name: "item")
|
@@ -7515,7 +7530,7 @@ module Aws::EC2
|
|
7515
7530
|
GetCapacityReservationUsageResult.add_member(:instance_usages, Shapes::ShapeRef.new(shape: InstanceUsageSet, location_name: "instanceUsageSet"))
|
7516
7531
|
GetCapacityReservationUsageResult.struct_class = Types::GetCapacityReservationUsageResult
|
7517
7532
|
|
7518
|
-
GetCoipPoolUsageRequest.add_member(:pool_id, Shapes::ShapeRef.new(shape:
|
7533
|
+
GetCoipPoolUsageRequest.add_member(:pool_id, Shapes::ShapeRef.new(shape: Ipv4PoolCoipId, required: true, location_name: "PoolId"))
|
7519
7534
|
GetCoipPoolUsageRequest.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filter"))
|
7520
7535
|
GetCoipPoolUsageRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: CoipPoolMaxResults, location_name: "MaxResults"))
|
7521
7536
|
GetCoipPoolUsageRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
@@ -10359,6 +10374,9 @@ module Aws::EC2
|
|
10359
10374
|
PathComponent.add_member(:source_vpc, Shapes::ShapeRef.new(shape: AnalysisComponent, location_name: "sourceVpc"))
|
10360
10375
|
PathComponent.add_member(:subnet, Shapes::ShapeRef.new(shape: AnalysisComponent, location_name: "subnet"))
|
10361
10376
|
PathComponent.add_member(:vpc, Shapes::ShapeRef.new(shape: AnalysisComponent, location_name: "vpc"))
|
10377
|
+
PathComponent.add_member(:additional_details, Shapes::ShapeRef.new(shape: AdditionalDetailList, location_name: "additionalDetailSet"))
|
10378
|
+
PathComponent.add_member(:transit_gateway, Shapes::ShapeRef.new(shape: AnalysisComponent, location_name: "transitGateway"))
|
10379
|
+
PathComponent.add_member(:transit_gateway_route_table_route, Shapes::ShapeRef.new(shape: TransitGatewayRouteTableRoute, location_name: "transitGatewayRouteTableRoute"))
|
10362
10380
|
PathComponent.struct_class = Types::PathComponent
|
10363
10381
|
|
10364
10382
|
PathComponentList.member = Shapes::ShapeRef.new(shape: PathComponent, location_name: "item")
|
@@ -10864,7 +10882,7 @@ module Aws::EC2
|
|
10864
10882
|
ReleaseIpamPoolAllocationRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
10865
10883
|
ReleaseIpamPoolAllocationRequest.add_member(:ipam_pool_id, Shapes::ShapeRef.new(shape: IpamPoolId, required: true, location_name: "IpamPoolId"))
|
10866
10884
|
ReleaseIpamPoolAllocationRequest.add_member(:cidr, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Cidr"))
|
10867
|
-
ReleaseIpamPoolAllocationRequest.add_member(:ipam_pool_allocation_id, Shapes::ShapeRef.new(shape: IpamPoolAllocationId, location_name: "IpamPoolAllocationId"))
|
10885
|
+
ReleaseIpamPoolAllocationRequest.add_member(:ipam_pool_allocation_id, Shapes::ShapeRef.new(shape: IpamPoolAllocationId, required: true, location_name: "IpamPoolAllocationId"))
|
10868
10886
|
ReleaseIpamPoolAllocationRequest.struct_class = Types::ReleaseIpamPoolAllocationRequest
|
10869
10887
|
|
10870
10888
|
ReleaseIpamPoolAllocationResult.add_member(:success, Shapes::ShapeRef.new(shape: Boolean, location_name: "success"))
|
@@ -12629,6 +12647,15 @@ module Aws::EC2
|
|
12629
12647
|
|
12630
12648
|
TransitGatewayRouteTablePropagationList.member = Shapes::ShapeRef.new(shape: TransitGatewayRouteTablePropagation, location_name: "item")
|
12631
12649
|
|
12650
|
+
TransitGatewayRouteTableRoute.add_member(:destination_cidr, Shapes::ShapeRef.new(shape: String, location_name: "destinationCidr"))
|
12651
|
+
TransitGatewayRouteTableRoute.add_member(:state, Shapes::ShapeRef.new(shape: String, location_name: "state"))
|
12652
|
+
TransitGatewayRouteTableRoute.add_member(:route_origin, Shapes::ShapeRef.new(shape: String, location_name: "routeOrigin"))
|
12653
|
+
TransitGatewayRouteTableRoute.add_member(:prefix_list_id, Shapes::ShapeRef.new(shape: String, location_name: "prefixListId"))
|
12654
|
+
TransitGatewayRouteTableRoute.add_member(:attachment_id, Shapes::ShapeRef.new(shape: String, location_name: "attachmentId"))
|
12655
|
+
TransitGatewayRouteTableRoute.add_member(:resource_id, Shapes::ShapeRef.new(shape: String, location_name: "resourceId"))
|
12656
|
+
TransitGatewayRouteTableRoute.add_member(:resource_type, Shapes::ShapeRef.new(shape: String, location_name: "resourceType"))
|
12657
|
+
TransitGatewayRouteTableRoute.struct_class = Types::TransitGatewayRouteTableRoute
|
12658
|
+
|
12632
12659
|
TransitGatewaySubnetIdList.member = Shapes::ShapeRef.new(shape: SubnetId, location_name: "item")
|
12633
12660
|
|
12634
12661
|
TransitGatewayVpcAttachment.add_member(:transit_gateway_attachment_id, Shapes::ShapeRef.new(shape: String, location_name: "transitGatewayAttachmentId"))
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -651,6 +651,25 @@ module Aws::EC2
|
|
651
651
|
include Aws::Structure
|
652
652
|
end
|
653
653
|
|
654
|
+
# Describes an additional detail for a path analysis.
|
655
|
+
#
|
656
|
+
# @!attribute [rw] additional_detail_type
|
657
|
+
# The information type.
|
658
|
+
# @return [String]
|
659
|
+
#
|
660
|
+
# @!attribute [rw] component
|
661
|
+
# The path component.
|
662
|
+
# @return [Types::AnalysisComponent]
|
663
|
+
#
|
664
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AdditionalDetail AWS API Documentation
|
665
|
+
#
|
666
|
+
class AdditionalDetail < Struct.new(
|
667
|
+
:additional_detail_type,
|
668
|
+
:component)
|
669
|
+
SENSITIVE = []
|
670
|
+
include Aws::Structure
|
671
|
+
end
|
672
|
+
|
654
673
|
# Describes an Elastic IP address, or a carrier IP address.
|
655
674
|
#
|
656
675
|
# @!attribute [rw] instance_id
|
@@ -1403,15 +1422,15 @@ module Aws::EC2
|
|
1403
1422
|
# @return [String]
|
1404
1423
|
#
|
1405
1424
|
# @!attribute [rw] origin
|
1406
|
-
# Describes how the route was created. The following are possible
|
1425
|
+
# Describes how the route was created. The following are the possible
|
1407
1426
|
# values:
|
1408
1427
|
#
|
1409
|
-
# *
|
1428
|
+
# * CreateRouteTable - The route was automatically created when the
|
1410
1429
|
# route table was created.
|
1411
1430
|
#
|
1412
|
-
# *
|
1431
|
+
# * CreateRoute - The route was manually added to the route table.
|
1413
1432
|
#
|
1414
|
-
# *
|
1433
|
+
# * EnableVgwRoutePropagation - The route was propagated by route
|
1415
1434
|
# propagation.
|
1416
1435
|
# @return [String]
|
1417
1436
|
#
|
@@ -1447,7 +1466,7 @@ module Aws::EC2
|
|
1447
1466
|
# @return [String]
|
1448
1467
|
#
|
1449
1468
|
# @!attribute [rw] direction
|
1450
|
-
# The direction. The following are possible values:
|
1469
|
+
# The direction. The following are the possible values:
|
1451
1470
|
#
|
1452
1471
|
# * egress
|
1453
1472
|
#
|
@@ -7850,7 +7869,7 @@ module Aws::EC2
|
|
7850
7869
|
#
|
7851
7870
|
#
|
7852
7871
|
#
|
7853
|
-
# [1]: https://docs.aws.amazon.com/
|
7872
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-fleet-request-type.html
|
7854
7873
|
# @return [String]
|
7855
7874
|
#
|
7856
7875
|
# @!attribute [rw] valid_from
|
@@ -8602,7 +8621,7 @@ module Aws::EC2
|
|
8602
8621
|
# locale: "String",
|
8603
8622
|
# source_ipam_pool_id: "IpamPoolId",
|
8604
8623
|
# description: "String",
|
8605
|
-
# address_family: "ipv4", # accepts ipv4, ipv6
|
8624
|
+
# address_family: "ipv4", # required, accepts ipv4, ipv6
|
8606
8625
|
# auto_import: false,
|
8607
8626
|
# publicly_advertisable: false,
|
8608
8627
|
# allocation_min_netmask_length: 1,
|
@@ -14675,6 +14694,7 @@ module Aws::EC2
|
|
14675
14694
|
# {
|
14676
14695
|
# dry_run: false,
|
14677
14696
|
# ipam_id: "IpamId", # required
|
14697
|
+
# cascade: false,
|
14678
14698
|
# }
|
14679
14699
|
#
|
14680
14700
|
# @!attribute [rw] dry_run
|
@@ -14688,11 +14708,37 @@ module Aws::EC2
|
|
14688
14708
|
# The ID of the IPAM to delete.
|
14689
14709
|
# @return [String]
|
14690
14710
|
#
|
14711
|
+
# @!attribute [rw] cascade
|
14712
|
+
# Enables you to quickly delete an IPAM, private scopes, pools in
|
14713
|
+
# private scopes, and any allocations in the pools in private scopes.
|
14714
|
+
# You cannot delete the IPAM with this option if there is a pool in
|
14715
|
+
# your public scope. If you use this option, IPAM does the following:
|
14716
|
+
#
|
14717
|
+
# * Deallocates any CIDRs allocated to VPC resources (such as VPCs) in
|
14718
|
+
# pools in private scopes.
|
14719
|
+
#
|
14720
|
+
# <note markdown="1"> No VPC resources are deleted as a result of enabling this option.
|
14721
|
+
# The CIDR associated with the resource will no longer be allocated
|
14722
|
+
# from an IPAM pool, but the CIDR itself will remain unchanged.
|
14723
|
+
#
|
14724
|
+
# </note>
|
14725
|
+
#
|
14726
|
+
# * Deprovisions all IPv4 CIDRs provisioned to IPAM pools in private
|
14727
|
+
# scopes.
|
14728
|
+
#
|
14729
|
+
# * Deletes all IPAM pools in private scopes.
|
14730
|
+
#
|
14731
|
+
# * Deletes all non-default private scopes in the IPAM.
|
14732
|
+
#
|
14733
|
+
# * Deletes the default public and private scopes and the IPAM.
|
14734
|
+
# @return [Boolean]
|
14735
|
+
#
|
14691
14736
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteIpamRequest AWS API Documentation
|
14692
14737
|
#
|
14693
14738
|
class DeleteIpamRequest < Struct.new(
|
14694
14739
|
:dry_run,
|
14695
|
-
:ipam_id
|
14740
|
+
:ipam_id,
|
14741
|
+
:cascade)
|
14696
14742
|
SENSITIVE = []
|
14697
14743
|
include Aws::Structure
|
14698
14744
|
end
|
@@ -18335,7 +18381,7 @@ module Aws::EC2
|
|
18335
18381
|
# data as a hash:
|
18336
18382
|
#
|
18337
18383
|
# {
|
18338
|
-
# pool_ids: ["
|
18384
|
+
# pool_ids: ["Ipv4PoolCoipId"],
|
18339
18385
|
# filters: [
|
18340
18386
|
# {
|
18341
18387
|
# name: "String",
|
@@ -23465,7 +23511,7 @@ module Aws::EC2
|
|
23465
23511
|
# @return [Time]
|
23466
23512
|
#
|
23467
23513
|
# @!attribute [rw] filters
|
23468
|
-
# The filters. The following are possible values:
|
23514
|
+
# The filters. The following are the possible values:
|
23469
23515
|
#
|
23470
23516
|
# * PathFound - A Boolean value that indicates whether a feasible path
|
23471
23517
|
# is found.
|
@@ -23545,7 +23591,7 @@ module Aws::EC2
|
|
23545
23591
|
# @return [Array<String>]
|
23546
23592
|
#
|
23547
23593
|
# @!attribute [rw] filters
|
23548
|
-
# The filters. The following are possible values:
|
23594
|
+
# The filters. The following are the possible values:
|
23549
23595
|
#
|
23550
23596
|
# * Destination - The ID of the resource.
|
23551
23597
|
#
|
@@ -32405,7 +32451,7 @@ module Aws::EC2
|
|
32405
32451
|
# @return [Types::AnalysisComponent]
|
32406
32452
|
#
|
32407
32453
|
# @!attribute [rw] direction
|
32408
|
-
# The direction. The following are possible values:
|
32454
|
+
# The direction. The following are the possible values:
|
32409
32455
|
#
|
32410
32456
|
# * egress
|
32411
32457
|
#
|
@@ -32544,6 +32590,22 @@ module Aws::EC2
|
|
32544
32590
|
# The VPN gateway.
|
32545
32591
|
# @return [Types::AnalysisComponent]
|
32546
32592
|
#
|
32593
|
+
# @!attribute [rw] transit_gateway
|
32594
|
+
# The transit gateway.
|
32595
|
+
# @return [Types::AnalysisComponent]
|
32596
|
+
#
|
32597
|
+
# @!attribute [rw] transit_gateway_route_table
|
32598
|
+
# The transit gateway route table.
|
32599
|
+
# @return [Types::AnalysisComponent]
|
32600
|
+
#
|
32601
|
+
# @!attribute [rw] transit_gateway_route_table_route
|
32602
|
+
# The transit gateway route table route.
|
32603
|
+
# @return [Types::TransitGatewayRouteTableRoute]
|
32604
|
+
#
|
32605
|
+
# @!attribute [rw] transit_gateway_attachment
|
32606
|
+
# The transit gateway attachment.
|
32607
|
+
# @return [Types::AnalysisComponent]
|
32608
|
+
#
|
32547
32609
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Explanation AWS API Documentation
|
32548
32610
|
#
|
32549
32611
|
class Explanation < Struct.new(
|
@@ -32591,7 +32653,11 @@ module Aws::EC2
|
|
32591
32653
|
:vpc,
|
32592
32654
|
:vpc_endpoint,
|
32593
32655
|
:vpn_connection,
|
32594
|
-
:vpn_gateway
|
32656
|
+
:vpn_gateway,
|
32657
|
+
:transit_gateway,
|
32658
|
+
:transit_gateway_route_table,
|
32659
|
+
:transit_gateway_route_table_route,
|
32660
|
+
:transit_gateway_attachment)
|
32595
32661
|
SENSITIVE = []
|
32596
32662
|
include Aws::Structure
|
32597
32663
|
end
|
@@ -34730,7 +34796,7 @@ module Aws::EC2
|
|
34730
34796
|
# data as a hash:
|
34731
34797
|
#
|
34732
34798
|
# {
|
34733
|
-
# pool_id: "
|
34799
|
+
# pool_id: "Ipv4PoolCoipId", # required
|
34734
34800
|
# filters: [
|
34735
34801
|
# {
|
34736
34802
|
# name: "String",
|
@@ -40885,6 +40951,12 @@ module Aws::EC2
|
|
40885
40951
|
# This parameter is not supported for [GetSpotPlacementScores][1] and
|
40886
40952
|
# [GetInstanceTypesFromInstanceRequirements][2].
|
40887
40953
|
#
|
40954
|
+
# <note markdown="1"> If you set `TargetCapacityUnitType` to `vcpu` or `memory-mib`, the
|
40955
|
+
# price protection threshold is applied based on the per-vCPU or
|
40956
|
+
# per-memory price instead of the per-instance price.
|
40957
|
+
#
|
40958
|
+
# </note>
|
40959
|
+
#
|
40888
40960
|
# Default: `100`
|
40889
40961
|
#
|
40890
40962
|
#
|
@@ -40910,6 +40982,12 @@ module Aws::EC2
|
|
40910
40982
|
# This parameter is not supported for [GetSpotPlacementScores][1] and
|
40911
40983
|
# [GetInstanceTypesFromInstanceRequirements][2].
|
40912
40984
|
#
|
40985
|
+
# <note markdown="1"> If you set `TargetCapacityUnitType` to `vcpu` or `memory-mib`, the
|
40986
|
+
# price protection threshold is applied based on the per-vCPU or
|
40987
|
+
# per-memory price instead of the per-instance price.
|
40988
|
+
#
|
40989
|
+
# </note>
|
40990
|
+
#
|
40913
40991
|
# Default: `20`
|
40914
40992
|
#
|
40915
40993
|
#
|
@@ -41273,6 +41351,12 @@ module Aws::EC2
|
|
41273
41351
|
# This parameter is not supported for [GetSpotPlacementScores][1] and
|
41274
41352
|
# [GetInstanceTypesFromInstanceRequirements][2].
|
41275
41353
|
#
|
41354
|
+
# <note markdown="1"> If you set `TargetCapacityUnitType` to `vcpu` or `memory-mib`, the
|
41355
|
+
# price protection threshold is applied based on the per-vCPU or
|
41356
|
+
# per-memory price instead of the per-instance price.
|
41357
|
+
#
|
41358
|
+
# </note>
|
41359
|
+
#
|
41276
41360
|
# Default: `100`
|
41277
41361
|
#
|
41278
41362
|
#
|
@@ -41298,6 +41382,12 @@ module Aws::EC2
|
|
41298
41382
|
# This parameter is not supported for [GetSpotPlacementScores][1] and
|
41299
41383
|
# [GetInstanceTypesFromInstanceRequirements][2].
|
41300
41384
|
#
|
41385
|
+
# <note markdown="1"> If you set `TargetCapacityUnitType` to `vcpu` or `memory-mib`, the
|
41386
|
+
# price protection threshold is applied based on the per-vCPU or
|
41387
|
+
# per-memory price instead of the per-instance price.
|
41388
|
+
#
|
41389
|
+
# </note>
|
41390
|
+
#
|
41301
41391
|
# Default: `20`
|
41302
41392
|
#
|
41303
41393
|
#
|
@@ -42903,7 +42993,7 @@ module Aws::EC2
|
|
42903
42993
|
#
|
42904
42994
|
# For more information, see [How IPAM
|
42905
42995
|
# works](/vpc/latest/ipam/how-it-works-ipam.html) in the *Amazon VPC
|
42906
|
-
# IPAM User Guide
|
42996
|
+
# IPAM User Guide*.
|
42907
42997
|
#
|
42908
42998
|
# @!attribute [rw] owner_id
|
42909
42999
|
# The Amazon Web Services account ID of the owner of the scope.
|
@@ -52288,6 +52378,18 @@ module Aws::EC2
|
|
52288
52378
|
# The component VPC.
|
52289
52379
|
# @return [Types::AnalysisComponent]
|
52290
52380
|
#
|
52381
|
+
# @!attribute [rw] additional_details
|
52382
|
+
# The additional details.
|
52383
|
+
# @return [Array<Types::AdditionalDetail>]
|
52384
|
+
#
|
52385
|
+
# @!attribute [rw] transit_gateway
|
52386
|
+
# Describes a path component.
|
52387
|
+
# @return [Types::AnalysisComponent]
|
52388
|
+
#
|
52389
|
+
# @!attribute [rw] transit_gateway_route_table_route
|
52390
|
+
# The route in a transit gateway route table.
|
52391
|
+
# @return [Types::TransitGatewayRouteTableRoute]
|
52392
|
+
#
|
52291
52393
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PathComponent AWS API Documentation
|
52292
52394
|
#
|
52293
52395
|
class PathComponent < Struct.new(
|
@@ -52302,7 +52404,10 @@ module Aws::EC2
|
|
52302
52404
|
:security_group_rule,
|
52303
52405
|
:source_vpc,
|
52304
52406
|
:subnet,
|
52305
|
-
:vpc
|
52407
|
+
:vpc,
|
52408
|
+
:additional_details,
|
52409
|
+
:transit_gateway,
|
52410
|
+
:transit_gateway_route_table_route)
|
52306
52411
|
SENSITIVE = []
|
52307
52412
|
include Aws::Structure
|
52308
52413
|
end
|
@@ -54889,7 +54994,7 @@ module Aws::EC2
|
|
54889
54994
|
# dry_run: false,
|
54890
54995
|
# ipam_pool_id: "IpamPoolId", # required
|
54891
54996
|
# cidr: "String", # required
|
54892
|
-
# ipam_pool_allocation_id: "IpamPoolAllocationId",
|
54997
|
+
# ipam_pool_allocation_id: "IpamPoolAllocationId", # required
|
54893
54998
|
# }
|
54894
54999
|
#
|
54895
55000
|
# @!attribute [rw] dry_run
|
@@ -66336,6 +66441,54 @@ module Aws::EC2
|
|
66336
66441
|
include Aws::Structure
|
66337
66442
|
end
|
66338
66443
|
|
66444
|
+
# Describes a route in a transit gateway route table.
|
66445
|
+
#
|
66446
|
+
# @!attribute [rw] destination_cidr
|
66447
|
+
# The CIDR block used for destination matches.
|
66448
|
+
# @return [String]
|
66449
|
+
#
|
66450
|
+
# @!attribute [rw] state
|
66451
|
+
# The state of the route.
|
66452
|
+
# @return [String]
|
66453
|
+
#
|
66454
|
+
# @!attribute [rw] route_origin
|
66455
|
+
# The route origin. The following are the possible values:
|
66456
|
+
#
|
66457
|
+
# * static
|
66458
|
+
#
|
66459
|
+
# * propagated
|
66460
|
+
# @return [String]
|
66461
|
+
#
|
66462
|
+
# @!attribute [rw] prefix_list_id
|
66463
|
+
# The ID of the prefix list.
|
66464
|
+
# @return [String]
|
66465
|
+
#
|
66466
|
+
# @!attribute [rw] attachment_id
|
66467
|
+
# The ID of the route attachment.
|
66468
|
+
# @return [String]
|
66469
|
+
#
|
66470
|
+
# @!attribute [rw] resource_id
|
66471
|
+
# The ID of the resource for the route attachment.
|
66472
|
+
# @return [String]
|
66473
|
+
#
|
66474
|
+
# @!attribute [rw] resource_type
|
66475
|
+
# The resource type for the route attachment.
|
66476
|
+
# @return [String]
|
66477
|
+
#
|
66478
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/TransitGatewayRouteTableRoute AWS API Documentation
|
66479
|
+
#
|
66480
|
+
class TransitGatewayRouteTableRoute < Struct.new(
|
66481
|
+
:destination_cidr,
|
66482
|
+
:state,
|
66483
|
+
:route_origin,
|
66484
|
+
:prefix_list_id,
|
66485
|
+
:attachment_id,
|
66486
|
+
:resource_id,
|
66487
|
+
:resource_type)
|
66488
|
+
SENSITIVE = []
|
66489
|
+
include Aws::Structure
|
66490
|
+
end
|
66491
|
+
|
66339
66492
|
# Describes a VPC attachment.
|
66340
66493
|
#
|
66341
66494
|
# @!attribute [rw] transit_gateway_attachment_id
|
data/lib/aws-sdk-ec2.rb
CHANGED
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.304.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: 2022-
|
11
|
+
date: 2022-03-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|