aws-sdk-ec2 1.616.0 → 1.618.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 +337 -124
- data/lib/aws-sdk-ec2/client_api.rb +49 -0
- data/lib/aws-sdk-ec2/instance.rb +1 -1
- data/lib/aws-sdk-ec2/resource.rb +17 -17
- data/lib/aws-sdk-ec2/security_group.rb +2 -2
- data/lib/aws-sdk-ec2/snapshot.rb +1 -1
- data/lib/aws-sdk-ec2/subnet.rb +2 -2
- data/lib/aws-sdk-ec2/types.rb +163 -8
- data/lib/aws-sdk-ec2/volume.rb +1 -1
- data/lib/aws-sdk-ec2/vpc.rb +5 -5
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +721 -2392
- data/sig/dhcp_options.rbs +2 -2
- data/sig/image.rbs +4 -4
- data/sig/instance.rbs +11 -11
- data/sig/internet_gateway.rbs +2 -2
- data/sig/nat_gateway.rbs +2 -2
- data/sig/network_acl.rbs +2 -2
- data/sig/network_interface.rbs +2 -2
- data/sig/params.rbs +628 -0
- data/sig/placement_group.rbs +1 -1
- data/sig/resource.rbs +90 -90
- data/sig/route_table.rbs +2 -2
- data/sig/security_group.rbs +28 -28
- data/sig/snapshot.rbs +7 -7
- data/sig/subnet.rbs +27 -27
- data/sig/tag.rbs +2 -2
- data/sig/types.rbs +35 -5
- data/sig/volume.rbs +7 -7
- data/sig/vpc.rbs +26 -26
- data/sig/waiters.rbs +39 -39
- metadata +2 -1
data/lib/aws-sdk-ec2/types.rb
CHANGED
|
@@ -1385,6 +1385,17 @@ module Aws::EC2
|
|
|
1385
1385
|
# allocation.
|
|
1386
1386
|
# @return [Array<String>]
|
|
1387
1387
|
#
|
|
1388
|
+
# @!attribute [rw] tag_specifications
|
|
1389
|
+
# The key/value combination of a tag assigned to the resource. Use the
|
|
1390
|
+
# tag key in the filter name and the tag value as the filter value.
|
|
1391
|
+
# For example, to find all resources that have a tag with the key
|
|
1392
|
+
# `Owner` and the value `TeamA`, specify `tag:Owner` for the filter
|
|
1393
|
+
# name and `TeamA` for the filter value.
|
|
1394
|
+
#
|
|
1395
|
+
# If you specify tags, the request is authorized against the
|
|
1396
|
+
# allocation resource in addition to the pool resource.
|
|
1397
|
+
# @return [Array<Types::TagSpecification>]
|
|
1398
|
+
#
|
|
1388
1399
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AllocateIpamPoolCidrRequest AWS API Documentation
|
|
1389
1400
|
#
|
|
1390
1401
|
class AllocateIpamPoolCidrRequest < Struct.new(
|
|
@@ -1396,7 +1407,8 @@ module Aws::EC2
|
|
|
1396
1407
|
:description,
|
|
1397
1408
|
:preview_next_cidr,
|
|
1398
1409
|
:allowed_cidrs,
|
|
1399
|
-
:disallowed_cidrs
|
|
1410
|
+
:disallowed_cidrs,
|
|
1411
|
+
:tag_specifications)
|
|
1400
1412
|
SENSITIVE = []
|
|
1401
1413
|
include Aws::Structure
|
|
1402
1414
|
end
|
|
@@ -27496,6 +27508,10 @@ module Aws::EC2
|
|
|
27496
27508
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
27497
27509
|
# @return [Boolean]
|
|
27498
27510
|
#
|
|
27511
|
+
# @!attribute [rw] ipam_pool_allocation_ids
|
|
27512
|
+
# The IDs of the IPAM pool allocations you want to describe.
|
|
27513
|
+
# @return [Array<String>]
|
|
27514
|
+
#
|
|
27499
27515
|
# @!attribute [rw] filters
|
|
27500
27516
|
# One or more filters for the request. For more information about
|
|
27501
27517
|
# filtering, see [Filtering CLI output][1].
|
|
@@ -27506,7 +27522,73 @@ module Aws::EC2
|
|
|
27506
27522
|
# @return [Array<Types::Filter>]
|
|
27507
27523
|
#
|
|
27508
27524
|
# @!attribute [rw] max_results
|
|
27509
|
-
# The maximum number of
|
|
27525
|
+
# The maximum number of items to return for this request. To get the
|
|
27526
|
+
# next page of items, make another request with the token returned in
|
|
27527
|
+
# the output. For more information, see [Pagination][1].
|
|
27528
|
+
#
|
|
27529
|
+
#
|
|
27530
|
+
#
|
|
27531
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
|
27532
|
+
# @return [Integer]
|
|
27533
|
+
#
|
|
27534
|
+
# @!attribute [rw] next_token
|
|
27535
|
+
# The token for the next page of results.
|
|
27536
|
+
# @return [String]
|
|
27537
|
+
#
|
|
27538
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeIpamPoolAllocationsRequest AWS API Documentation
|
|
27539
|
+
#
|
|
27540
|
+
class DescribeIpamPoolAllocationsRequest < Struct.new(
|
|
27541
|
+
:dry_run,
|
|
27542
|
+
:ipam_pool_allocation_ids,
|
|
27543
|
+
:filters,
|
|
27544
|
+
:max_results,
|
|
27545
|
+
:next_token)
|
|
27546
|
+
SENSITIVE = []
|
|
27547
|
+
include Aws::Structure
|
|
27548
|
+
end
|
|
27549
|
+
|
|
27550
|
+
# @!attribute [rw] ipam_pool_allocations
|
|
27551
|
+
# Information about the IPAM pool allocations.
|
|
27552
|
+
# @return [Array<Types::IpamPoolAllocation>]
|
|
27553
|
+
#
|
|
27554
|
+
# @!attribute [rw] next_token
|
|
27555
|
+
# The token to use to retrieve the next page of results. This value is
|
|
27556
|
+
# `null` when there are no more results to return.
|
|
27557
|
+
# @return [String]
|
|
27558
|
+
#
|
|
27559
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeIpamPoolAllocationsResult AWS API Documentation
|
|
27560
|
+
#
|
|
27561
|
+
class DescribeIpamPoolAllocationsResult < Struct.new(
|
|
27562
|
+
:ipam_pool_allocations,
|
|
27563
|
+
:next_token)
|
|
27564
|
+
SENSITIVE = []
|
|
27565
|
+
include Aws::Structure
|
|
27566
|
+
end
|
|
27567
|
+
|
|
27568
|
+
# @!attribute [rw] dry_run
|
|
27569
|
+
# A check for whether you have the required permissions for the action
|
|
27570
|
+
# without actually making the request and provides an error response.
|
|
27571
|
+
# If you have the required permissions, the error response is
|
|
27572
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
27573
|
+
# @return [Boolean]
|
|
27574
|
+
#
|
|
27575
|
+
# @!attribute [rw] filters
|
|
27576
|
+
# One or more filters for the request. For more information about
|
|
27577
|
+
# filtering, see [Filtering CLI output][1].
|
|
27578
|
+
#
|
|
27579
|
+
#
|
|
27580
|
+
#
|
|
27581
|
+
# [1]: https://docs.aws.amazon.com/cli/latest/userguide/cli-usage-filter.html
|
|
27582
|
+
# @return [Array<Types::Filter>]
|
|
27583
|
+
#
|
|
27584
|
+
# @!attribute [rw] max_results
|
|
27585
|
+
# The maximum number of items to return for this request. To get the
|
|
27586
|
+
# next page of items, make another request with the token returned in
|
|
27587
|
+
# the output. For more information, see [Pagination][1].
|
|
27588
|
+
#
|
|
27589
|
+
#
|
|
27590
|
+
#
|
|
27591
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
|
27510
27592
|
# @return [Integer]
|
|
27511
27593
|
#
|
|
27512
27594
|
# @!attribute [rw] next_token
|
|
@@ -27799,7 +27881,13 @@ module Aws::EC2
|
|
|
27799
27881
|
# @return [Array<Types::Filter>]
|
|
27800
27882
|
#
|
|
27801
27883
|
# @!attribute [rw] max_results
|
|
27802
|
-
# The maximum number of
|
|
27884
|
+
# The maximum number of items to return for this request. To get the
|
|
27885
|
+
# next page of items, make another request with the token returned in
|
|
27886
|
+
# the output. For more information, see [Pagination][1].
|
|
27887
|
+
#
|
|
27888
|
+
#
|
|
27889
|
+
#
|
|
27890
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
|
27803
27891
|
# @return [Integer]
|
|
27804
27892
|
#
|
|
27805
27893
|
# @!attribute [rw] next_token
|
|
@@ -27857,7 +27945,13 @@ module Aws::EC2
|
|
|
27857
27945
|
# @return [Array<Types::Filter>]
|
|
27858
27946
|
#
|
|
27859
27947
|
# @!attribute [rw] max_results
|
|
27860
|
-
# The maximum number of
|
|
27948
|
+
# The maximum number of items to return for this request. To get the
|
|
27949
|
+
# next page of items, make another request with the token returned in
|
|
27950
|
+
# the output. For more information, see [Pagination][1].
|
|
27951
|
+
#
|
|
27952
|
+
#
|
|
27953
|
+
#
|
|
27954
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
|
27861
27955
|
# @return [Integer]
|
|
27862
27956
|
#
|
|
27863
27957
|
# @!attribute [rw] next_token
|
|
@@ -45194,7 +45288,13 @@ module Aws::EC2
|
|
|
45194
45288
|
# @return [Array<Types::Filter>]
|
|
45195
45289
|
#
|
|
45196
45290
|
# @!attribute [rw] max_results
|
|
45197
|
-
# The maximum number of
|
|
45291
|
+
# The maximum number of items to return for this request. To get the
|
|
45292
|
+
# next page of items, make another request with the token returned in
|
|
45293
|
+
# the output. For more information, see [Pagination][1].
|
|
45294
|
+
#
|
|
45295
|
+
#
|
|
45296
|
+
#
|
|
45297
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
|
45198
45298
|
# @return [Integer]
|
|
45199
45299
|
#
|
|
45200
45300
|
# @!attribute [rw] next_token
|
|
@@ -45435,7 +45535,13 @@ module Aws::EC2
|
|
|
45435
45535
|
# @return [Array<Types::Filter>]
|
|
45436
45536
|
#
|
|
45437
45537
|
# @!attribute [rw] max_results
|
|
45438
|
-
# The maximum number of
|
|
45538
|
+
# The maximum number of items to return for this request. To get the
|
|
45539
|
+
# next page of items, make another request with the token returned in
|
|
45540
|
+
# the output. For more information, see [Pagination][1].
|
|
45541
|
+
#
|
|
45542
|
+
#
|
|
45543
|
+
#
|
|
45544
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
|
45439
45545
|
# @return [Integer]
|
|
45440
45546
|
#
|
|
45441
45547
|
# @!attribute [rw] next_token
|
|
@@ -55103,6 +55209,10 @@ module Aws::EC2
|
|
|
55103
55209
|
# The owner of the resource.
|
|
55104
55210
|
# @return [String]
|
|
55105
55211
|
#
|
|
55212
|
+
# @!attribute [rw] tags
|
|
55213
|
+
# The tags for the IPAM pool allocation.
|
|
55214
|
+
# @return [Array<Types::Tag>]
|
|
55215
|
+
#
|
|
55106
55216
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpamPoolAllocation AWS API Documentation
|
|
55107
55217
|
#
|
|
55108
55218
|
class IpamPoolAllocation < Struct.new(
|
|
@@ -55112,7 +55222,8 @@ module Aws::EC2
|
|
|
55112
55222
|
:resource_id,
|
|
55113
55223
|
:resource_type,
|
|
55114
55224
|
:resource_region,
|
|
55115
|
-
:resource_owner
|
|
55225
|
+
:resource_owner,
|
|
55226
|
+
:tags)
|
|
55116
55227
|
SENSITIVE = []
|
|
55117
55228
|
include Aws::Structure
|
|
55118
55229
|
end
|
|
@@ -62275,6 +62386,44 @@ module Aws::EC2
|
|
|
62275
62386
|
include Aws::Structure
|
|
62276
62387
|
end
|
|
62277
62388
|
|
|
62389
|
+
# @!attribute [rw] dry_run
|
|
62390
|
+
# A check for whether you have the required permissions for the action
|
|
62391
|
+
# without actually making the request and provides an error response.
|
|
62392
|
+
# If you have the required permissions, the error response is
|
|
62393
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
62394
|
+
# @return [Boolean]
|
|
62395
|
+
#
|
|
62396
|
+
# @!attribute [rw] ipam_pool_allocation_id
|
|
62397
|
+
# The ID of the IPAM pool allocation you want to modify.
|
|
62398
|
+
# @return [String]
|
|
62399
|
+
#
|
|
62400
|
+
# @!attribute [rw] description
|
|
62401
|
+
# The new description for the IPAM pool allocation. If you submit a
|
|
62402
|
+
# `null` value, the description is removed from the allocation.
|
|
62403
|
+
# @return [String]
|
|
62404
|
+
#
|
|
62405
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyIpamPoolAllocationRequest AWS API Documentation
|
|
62406
|
+
#
|
|
62407
|
+
class ModifyIpamPoolAllocationRequest < Struct.new(
|
|
62408
|
+
:dry_run,
|
|
62409
|
+
:ipam_pool_allocation_id,
|
|
62410
|
+
:description)
|
|
62411
|
+
SENSITIVE = []
|
|
62412
|
+
include Aws::Structure
|
|
62413
|
+
end
|
|
62414
|
+
|
|
62415
|
+
# @!attribute [rw] ipam_pool_allocation
|
|
62416
|
+
# The modified IPAM pool allocation.
|
|
62417
|
+
# @return [Types::IpamPoolAllocation]
|
|
62418
|
+
#
|
|
62419
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyIpamPoolAllocationResult AWS API Documentation
|
|
62420
|
+
#
|
|
62421
|
+
class ModifyIpamPoolAllocationResult < Struct.new(
|
|
62422
|
+
:ipam_pool_allocation)
|
|
62423
|
+
SENSITIVE = []
|
|
62424
|
+
include Aws::Structure
|
|
62425
|
+
end
|
|
62426
|
+
|
|
62278
62427
|
# @!attribute [rw] dry_run
|
|
62279
62428
|
# A check for whether you have the required permissions for the action
|
|
62280
62429
|
# without actually making the request and provides an error response.
|
|
@@ -85804,6 +85953,11 @@ module Aws::EC2
|
|
|
85804
85953
|
# The modification completion or failure time.
|
|
85805
85954
|
# @return [Time]
|
|
85806
85955
|
#
|
|
85956
|
+
# @!attribute [rw] operator
|
|
85957
|
+
# Describes whether the resource is managed by a service provider and,
|
|
85958
|
+
# if so, describes the service provider that manages it.
|
|
85959
|
+
# @return [Types::OperatorResponse]
|
|
85960
|
+
#
|
|
85807
85961
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VolumeModification AWS API Documentation
|
|
85808
85962
|
#
|
|
85809
85963
|
class VolumeModification < Struct.new(
|
|
@@ -85822,7 +85976,8 @@ module Aws::EC2
|
|
|
85822
85976
|
:original_multi_attach_enabled,
|
|
85823
85977
|
:progress,
|
|
85824
85978
|
:start_time,
|
|
85825
|
-
:end_time
|
|
85979
|
+
:end_time,
|
|
85980
|
+
:operator)
|
|
85826
85981
|
SENSITIVE = []
|
|
85827
85982
|
include Aws::Structure
|
|
85828
85983
|
end
|
data/lib/aws-sdk-ec2/volume.rb
CHANGED
|
@@ -351,7 +351,7 @@ module Aws::EC2
|
|
|
351
351
|
# outpost_arn: "String",
|
|
352
352
|
# tag_specifications: [
|
|
353
353
|
# {
|
|
354
|
-
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, declarative-policies-report, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, image-usage-report, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, outpost-lag, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, service-link-virtual-interface, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-metering-policy, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, vpc-encryption-control, route-server, route-server-endpoint, route-server-peer, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, verified-access-endpoint-target, ipam-external-resource-verification-token, capacity-block, mac-modification-task, ipam-prefix-list-resolver, ipam-policy, ipam-prefix-list-resolver-target, secondary-interface, secondary-network, secondary-subnet, capacity-manager-data-export, vpn-concentrator
|
|
354
|
+
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, declarative-policies-report, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, image-usage-report, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, outpost-lag, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, service-link-virtual-interface, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-metering-policy, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, vpc-encryption-control, route-server, route-server-endpoint, route-server-peer, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, verified-access-endpoint-target, ipam-external-resource-verification-token, capacity-block, mac-modification-task, ipam-prefix-list-resolver, ipam-policy, ipam-prefix-list-resolver-target, secondary-interface, secondary-network, secondary-subnet, capacity-manager-data-export, vpn-concentrator, ipam-pool-allocation
|
|
355
355
|
# tags: [
|
|
356
356
|
# {
|
|
357
357
|
# key: "String",
|
data/lib/aws-sdk-ec2/vpc.rb
CHANGED
|
@@ -377,7 +377,7 @@ module Aws::EC2
|
|
|
377
377
|
# networkacl = vpc.create_network_acl({
|
|
378
378
|
# tag_specifications: [
|
|
379
379
|
# {
|
|
380
|
-
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, declarative-policies-report, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, image-usage-report, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, outpost-lag, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, service-link-virtual-interface, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-metering-policy, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, vpc-encryption-control, route-server, route-server-endpoint, route-server-peer, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, verified-access-endpoint-target, ipam-external-resource-verification-token, capacity-block, mac-modification-task, ipam-prefix-list-resolver, ipam-policy, ipam-prefix-list-resolver-target, secondary-interface, secondary-network, secondary-subnet, capacity-manager-data-export, vpn-concentrator
|
|
380
|
+
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, declarative-policies-report, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, image-usage-report, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, outpost-lag, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, service-link-virtual-interface, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-metering-policy, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, vpc-encryption-control, route-server, route-server-endpoint, route-server-peer, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, verified-access-endpoint-target, ipam-external-resource-verification-token, capacity-block, mac-modification-task, ipam-prefix-list-resolver, ipam-policy, ipam-prefix-list-resolver-target, secondary-interface, secondary-network, secondary-subnet, capacity-manager-data-export, vpn-concentrator, ipam-pool-allocation
|
|
381
381
|
# tags: [
|
|
382
382
|
# {
|
|
383
383
|
# key: "String",
|
|
@@ -423,7 +423,7 @@ module Aws::EC2
|
|
|
423
423
|
# routetable = vpc.create_route_table({
|
|
424
424
|
# tag_specifications: [
|
|
425
425
|
# {
|
|
426
|
-
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, declarative-policies-report, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, image-usage-report, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, outpost-lag, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, service-link-virtual-interface, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-metering-policy, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, vpc-encryption-control, route-server, route-server-endpoint, route-server-peer, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, verified-access-endpoint-target, ipam-external-resource-verification-token, capacity-block, mac-modification-task, ipam-prefix-list-resolver, ipam-policy, ipam-prefix-list-resolver-target, secondary-interface, secondary-network, secondary-subnet, capacity-manager-data-export, vpn-concentrator
|
|
426
|
+
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, declarative-policies-report, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, image-usage-report, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, outpost-lag, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, service-link-virtual-interface, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-metering-policy, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, vpc-encryption-control, route-server, route-server-endpoint, route-server-peer, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, verified-access-endpoint-target, ipam-external-resource-verification-token, capacity-block, mac-modification-task, ipam-prefix-list-resolver, ipam-policy, ipam-prefix-list-resolver-target, secondary-interface, secondary-network, secondary-subnet, capacity-manager-data-export, vpn-concentrator, ipam-pool-allocation
|
|
427
427
|
# tags: [
|
|
428
428
|
# {
|
|
429
429
|
# key: "String",
|
|
@@ -471,7 +471,7 @@ module Aws::EC2
|
|
|
471
471
|
# group_name: "String", # required
|
|
472
472
|
# tag_specifications: [
|
|
473
473
|
# {
|
|
474
|
-
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, declarative-policies-report, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, image-usage-report, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, outpost-lag, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, service-link-virtual-interface, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-metering-policy, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, vpc-encryption-control, route-server, route-server-endpoint, route-server-peer, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, verified-access-endpoint-target, ipam-external-resource-verification-token, capacity-block, mac-modification-task, ipam-prefix-list-resolver, ipam-policy, ipam-prefix-list-resolver-target, secondary-interface, secondary-network, secondary-subnet, capacity-manager-data-export, vpn-concentrator
|
|
474
|
+
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, declarative-policies-report, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, image-usage-report, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, outpost-lag, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, service-link-virtual-interface, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-metering-policy, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, vpc-encryption-control, route-server, route-server-endpoint, route-server-peer, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, verified-access-endpoint-target, ipam-external-resource-verification-token, capacity-block, mac-modification-task, ipam-prefix-list-resolver, ipam-policy, ipam-prefix-list-resolver-target, secondary-interface, secondary-network, secondary-subnet, capacity-manager-data-export, vpn-concentrator, ipam-pool-allocation
|
|
475
475
|
# tags: [
|
|
476
476
|
# {
|
|
477
477
|
# key: "String",
|
|
@@ -522,7 +522,7 @@ module Aws::EC2
|
|
|
522
522
|
# subnet = vpc.create_subnet({
|
|
523
523
|
# tag_specifications: [
|
|
524
524
|
# {
|
|
525
|
-
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, declarative-policies-report, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, image-usage-report, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, outpost-lag, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, service-link-virtual-interface, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-metering-policy, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, vpc-encryption-control, route-server, route-server-endpoint, route-server-peer, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, verified-access-endpoint-target, ipam-external-resource-verification-token, capacity-block, mac-modification-task, ipam-prefix-list-resolver, ipam-policy, ipam-prefix-list-resolver-target, secondary-interface, secondary-network, secondary-subnet, capacity-manager-data-export, vpn-concentrator
|
|
525
|
+
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, declarative-policies-report, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, image-usage-report, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, outpost-lag, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, service-link-virtual-interface, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-metering-policy, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, vpc-encryption-control, route-server, route-server-endpoint, route-server-peer, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, verified-access-endpoint-target, ipam-external-resource-verification-token, capacity-block, mac-modification-task, ipam-prefix-list-resolver, ipam-policy, ipam-prefix-list-resolver-target, secondary-interface, secondary-network, secondary-subnet, capacity-manager-data-export, vpn-concentrator, ipam-pool-allocation
|
|
526
526
|
# tags: [
|
|
527
527
|
# {
|
|
528
528
|
# key: "String",
|
|
@@ -872,7 +872,7 @@ module Aws::EC2
|
|
|
872
872
|
# peer_region: "String",
|
|
873
873
|
# tag_specifications: [
|
|
874
874
|
# {
|
|
875
|
-
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, declarative-policies-report, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, image-usage-report, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, outpost-lag, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, service-link-virtual-interface, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-metering-policy, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, vpc-encryption-control, route-server, route-server-endpoint, route-server-peer, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, verified-access-endpoint-target, ipam-external-resource-verification-token, capacity-block, mac-modification-task, ipam-prefix-list-resolver, ipam-policy, ipam-prefix-list-resolver-target, secondary-interface, secondary-network, secondary-subnet, capacity-manager-data-export, vpn-concentrator
|
|
875
|
+
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, declarative-policies-report, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, image-usage-report, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, outpost-lag, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, service-link-virtual-interface, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-metering-policy, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, vpc-encryption-control, route-server, route-server-endpoint, route-server-peer, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, verified-access-endpoint-target, ipam-external-resource-verification-token, capacity-block, mac-modification-task, ipam-prefix-list-resolver, ipam-policy, ipam-prefix-list-resolver-target, secondary-interface, secondary-network, secondary-subnet, capacity-manager-data-export, vpn-concentrator, ipam-pool-allocation
|
|
876
876
|
# tags: [
|
|
877
877
|
# {
|
|
878
878
|
# key: "String",
|