aws-sdk-ec2 1.247.0 → 1.251.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2.rb +1 -1
- data/lib/aws-sdk-ec2/client.rb +1694 -435
- data/lib/aws-sdk-ec2/client_api.rb +484 -7
- data/lib/aws-sdk-ec2/dhcp_options.rb +3 -3
- data/lib/aws-sdk-ec2/image.rb +2 -2
- data/lib/aws-sdk-ec2/instance.rb +5 -5
- data/lib/aws-sdk-ec2/internet_gateway.rb +3 -3
- data/lib/aws-sdk-ec2/key_pair_info.rb +2 -2
- data/lib/aws-sdk-ec2/nat_gateway.rb +2 -2
- data/lib/aws-sdk-ec2/network_acl.rb +3 -3
- data/lib/aws-sdk-ec2/network_interface.rb +32 -4
- data/lib/aws-sdk-ec2/resource.rb +124 -76
- data/lib/aws-sdk-ec2/route.rb +2 -2
- data/lib/aws-sdk-ec2/route_table.rb +3 -3
- data/lib/aws-sdk-ec2/security_group.rb +52 -18
- data/lib/aws-sdk-ec2/snapshot.rb +40 -37
- data/lib/aws-sdk-ec2/subnet.rb +45 -5
- data/lib/aws-sdk-ec2/tag.rb +2 -2
- data/lib/aws-sdk-ec2/types.rb +2339 -358
- data/lib/aws-sdk-ec2/volume.rb +15 -16
- data/lib/aws-sdk-ec2/vpc.rb +41 -41
- metadata +2 -2
data/lib/aws-sdk-ec2/volume.rb
CHANGED
@@ -59,9 +59,8 @@ module Aws::EC2
|
|
59
59
|
data[:encrypted]
|
60
60
|
end
|
61
61
|
|
62
|
-
# The Amazon Resource Name (ARN) of the
|
63
|
-
#
|
64
|
-
# encryption key for the volume.
|
62
|
+
# The Amazon Resource Name (ARN) of the Key Management Service (KMS) KMS
|
63
|
+
# key that was used to protect the volume encryption key for the volume.
|
65
64
|
# @return [String]
|
66
65
|
def kms_key_id
|
67
66
|
data[:kms_key_id]
|
@@ -296,7 +295,7 @@ module Aws::EC2
|
|
296
295
|
# outpost_arn: "String",
|
297
296
|
# tag_specifications: [
|
298
297
|
# {
|
299
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
298
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
300
299
|
# tags: [
|
301
300
|
# {
|
302
301
|
# key: "String",
|
@@ -311,7 +310,7 @@ module Aws::EC2
|
|
311
310
|
# @option options [String] :description
|
312
311
|
# A description for the snapshot.
|
313
312
|
# @option options [String] :outpost_arn
|
314
|
-
# The Amazon Resource Name (ARN) of the
|
313
|
+
# The Amazon Resource Name (ARN) of the Outpost on which to create a
|
315
314
|
# local snapshot.
|
316
315
|
#
|
317
316
|
# * To create a snapshot of a volume in a Region, omit this parameter.
|
@@ -325,8 +324,8 @@ module Aws::EC2
|
|
325
324
|
# snapshot on an Outpost, specify the ARN of the destination Outpost.
|
326
325
|
# The snapshot must be created on the same Outpost as the volume.
|
327
326
|
#
|
328
|
-
# For more information, see [
|
329
|
-
#
|
327
|
+
# For more information, see [Create local snapshots from volumes on an
|
328
|
+
# Outpost][1] in the *Amazon Elastic Compute Cloud User Guide*.
|
330
329
|
#
|
331
330
|
#
|
332
331
|
#
|
@@ -411,8 +410,8 @@ module Aws::EC2
|
|
411
410
|
# if its value is an empty string.
|
412
411
|
#
|
413
412
|
# If you omit this parameter, we delete all user-defined tags for the
|
414
|
-
# specified resources. We do not delete
|
415
|
-
# have the `aws:` prefix).
|
413
|
+
# specified resources. We do not delete Amazon Web Services-generated
|
414
|
+
# tags (tags that have the `aws:` prefix).
|
416
415
|
# @return [Tag::Collection]
|
417
416
|
def delete_tags(options = {})
|
418
417
|
batch = []
|
@@ -647,12 +646,12 @@ module Aws::EC2
|
|
647
646
|
# `false`)
|
648
647
|
#
|
649
648
|
# * `owner-alias` - The owner alias, from an Amazon-maintained list
|
650
|
-
# (`amazon`). This is not the user-configured
|
651
|
-
#
|
652
|
-
#
|
649
|
+
# (`amazon`). This is not the user-configured account alias set using
|
650
|
+
# the IAM console. We recommend that you use the related parameter
|
651
|
+
# instead of this filter.
|
653
652
|
#
|
654
|
-
# * `owner-id` - The
|
655
|
-
#
|
653
|
+
# * `owner-id` - The account ID of the owner. We recommend that you use
|
654
|
+
# the related parameter instead of this filter.
|
656
655
|
#
|
657
656
|
# * `progress` - The progress of the snapshot, as a percentage (for
|
658
657
|
# example, 80%).
|
@@ -679,9 +678,9 @@ module Aws::EC2
|
|
679
678
|
# * `volume-size` - The size of the volume, in GiB.
|
680
679
|
# @option options [Array<String>] :owner_ids
|
681
680
|
# Scopes the results to snapshots with the specified owners. You can
|
682
|
-
# specify a combination of
|
681
|
+
# specify a combination of account IDs, `self`, and `amazon`.
|
683
682
|
# @option options [Array<String>] :restorable_by_user_ids
|
684
|
-
# The IDs of the
|
683
|
+
# The IDs of the accounts that can create volumes from the snapshot.
|
685
684
|
# @option options [Array<String>] :snapshot_ids
|
686
685
|
# The snapshot IDs.
|
687
686
|
#
|
data/lib/aws-sdk-ec2/vpc.rb
CHANGED
@@ -53,7 +53,7 @@ module Aws::EC2
|
|
53
53
|
data[:state]
|
54
54
|
end
|
55
55
|
|
56
|
-
# The ID of the
|
56
|
+
# The ID of the account that owns the VPC.
|
57
57
|
# @return [String]
|
58
58
|
def owner_id
|
59
59
|
data[:owner_id]
|
@@ -346,7 +346,7 @@ module Aws::EC2
|
|
346
346
|
# dry_run: false,
|
347
347
|
# tag_specifications: [
|
348
348
|
# {
|
349
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
349
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
350
350
|
# tags: [
|
351
351
|
# {
|
352
352
|
# key: "String",
|
@@ -381,7 +381,7 @@ module Aws::EC2
|
|
381
381
|
# dry_run: false,
|
382
382
|
# tag_specifications: [
|
383
383
|
# {
|
384
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
384
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
385
385
|
# tags: [
|
386
386
|
# {
|
387
387
|
# key: "String",
|
@@ -417,7 +417,7 @@ module Aws::EC2
|
|
417
417
|
# group_name: "String", # required
|
418
418
|
# tag_specifications: [
|
419
419
|
# {
|
420
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
420
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
421
421
|
# tags: [
|
422
422
|
# {
|
423
423
|
# key: "String",
|
@@ -469,7 +469,7 @@ module Aws::EC2
|
|
469
469
|
# subnet = vpc.create_subnet({
|
470
470
|
# tag_specifications: [
|
471
471
|
# {
|
472
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
472
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
473
473
|
# tags: [
|
474
474
|
# {
|
475
475
|
# key: "String",
|
@@ -480,10 +480,10 @@ module Aws::EC2
|
|
480
480
|
# ],
|
481
481
|
# availability_zone: "String",
|
482
482
|
# availability_zone_id: "String",
|
483
|
-
# cidr_block: "String", # required
|
484
483
|
# ipv_6_cidr_block: "String",
|
485
484
|
# outpost_arn: "String",
|
486
485
|
# dry_run: false,
|
486
|
+
# cidr_block: "String", # required
|
487
487
|
# })
|
488
488
|
# @param [Hash] options ({})
|
489
489
|
# @option options [Array<Types::TagSpecification>] :tag_specifications
|
@@ -491,9 +491,9 @@ module Aws::EC2
|
|
491
491
|
# @option options [String] :availability_zone
|
492
492
|
# The Availability Zone or Local Zone for the subnet.
|
493
493
|
#
|
494
|
-
# Default:
|
495
|
-
# in your VPC, we do not necessarily select a different
|
496
|
-
# subnet.
|
494
|
+
# Default: Amazon Web Services selects one for you. If you create more
|
495
|
+
# than one subnet in your VPC, we do not necessarily select a different
|
496
|
+
# zone for each subnet.
|
497
497
|
#
|
498
498
|
# To create a subnet in a Local Zone, set this value to the Local Zone
|
499
499
|
# ID, for example `us-west-2-lax-1a`. For information about the Regions
|
@@ -508,11 +508,6 @@ module Aws::EC2
|
|
508
508
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html#concepts-available-regions
|
509
509
|
# @option options [String] :availability_zone_id
|
510
510
|
# The AZ ID or the Local Zone ID of the subnet.
|
511
|
-
# @option options [required, String] :cidr_block
|
512
|
-
# The IPv4 network range for the subnet, in CIDR notation. For example,
|
513
|
-
# `10.0.0.0/24`. We modify the specified CIDR block to its canonical
|
514
|
-
# form; for example, if you specify `100.68.0.18/18`, we modify it to
|
515
|
-
# `100.68.0.0/18`.
|
516
511
|
# @option options [String] :ipv_6_cidr_block
|
517
512
|
# The IPv6 network range for the subnet, in CIDR notation. The subnet
|
518
513
|
# size must use a /64 prefix length.
|
@@ -525,6 +520,11 @@ module Aws::EC2
|
|
525
520
|
# without actually making the request, and provides an error response.
|
526
521
|
# If you have the required permissions, the error response is
|
527
522
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
523
|
+
# @option options [required, String] :cidr_block
|
524
|
+
# The IPv4 network range for the subnet, in CIDR notation. For example,
|
525
|
+
# `10.0.0.0/24`. We modify the specified CIDR block to its canonical
|
526
|
+
# form; for example, if you specify `100.68.0.18/18`, we modify it to
|
527
|
+
# `100.68.0.0/18`.
|
528
528
|
# @return [Subnet]
|
529
529
|
def create_subnet(options = {})
|
530
530
|
options = options.merge(vpc_id: @id)
|
@@ -598,8 +598,8 @@ module Aws::EC2
|
|
598
598
|
# if its value is an empty string.
|
599
599
|
#
|
600
600
|
# If you omit this parameter, we delete all user-defined tags for the
|
601
|
-
# specified resources. We do not delete
|
602
|
-
# have the `aws:` prefix).
|
601
|
+
# specified resources. We do not delete Amazon Web Services-generated
|
602
|
+
# tags (tags that have the `aws:` prefix).
|
603
603
|
# @return [Tag::Collection]
|
604
604
|
def delete_tags(options = {})
|
605
605
|
batch = []
|
@@ -778,7 +778,7 @@ module Aws::EC2
|
|
778
778
|
# peer_region: "String",
|
779
779
|
# tag_specifications: [
|
780
780
|
# {
|
781
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
781
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
782
782
|
# tags: [
|
783
783
|
# {
|
784
784
|
# key: "String",
|
@@ -795,9 +795,9 @@ module Aws::EC2
|
|
795
795
|
# If you have the required permissions, the error response is
|
796
796
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
797
797
|
# @option options [String] :peer_owner_id
|
798
|
-
# The
|
798
|
+
# The account ID of the owner of the accepter VPC.
|
799
799
|
#
|
800
|
-
# Default: Your
|
800
|
+
# Default: Your account ID
|
801
801
|
# @option options [String] :peer_vpc_id
|
802
802
|
# The ID of the VPC with which you are creating the VPC peering
|
803
803
|
# connection. You must specify this parameter in the request.
|
@@ -840,8 +840,8 @@ module Aws::EC2
|
|
840
840
|
# * `accepter-vpc-info.cidr-block` - The IPv4 CIDR block of the accepter
|
841
841
|
# VPC.
|
842
842
|
#
|
843
|
-
# * `accepter-vpc-info.owner-id` - The
|
844
|
-
#
|
843
|
+
# * `accepter-vpc-info.owner-id` - The ID of the account that owns the
|
844
|
+
# accepter VPC.
|
845
845
|
#
|
846
846
|
# * `accepter-vpc-info.vpc-id` - The ID of the accepter VPC.
|
847
847
|
#
|
@@ -851,8 +851,8 @@ module Aws::EC2
|
|
851
851
|
# * `requester-vpc-info.cidr-block` - The IPv4 CIDR block of the
|
852
852
|
# requester's VPC.
|
853
853
|
#
|
854
|
-
# * `requester-vpc-info.owner-id` - The
|
855
|
-
#
|
854
|
+
# * `requester-vpc-info.owner-id` - The ID of the account that owns the
|
855
|
+
# requester VPC.
|
856
856
|
#
|
857
857
|
# * `requester-vpc-info.vpc-id` - The ID of the requester VPC.
|
858
858
|
#
|
@@ -1265,8 +1265,7 @@ module Aws::EC2
|
|
1265
1265
|
#
|
1266
1266
|
# * `internet-gateway-id` - The ID of the Internet gateway.
|
1267
1267
|
#
|
1268
|
-
# * `owner-id` - The ID of the
|
1269
|
-
# gateway.
|
1268
|
+
# * `owner-id` - The ID of the account that owns the internet gateway.
|
1270
1269
|
#
|
1271
1270
|
# * `tag`\:<key> - The key/value combination of a tag assigned to
|
1272
1271
|
# the resource. Use the tag key in the filter name and the tag value
|
@@ -1362,7 +1361,7 @@ module Aws::EC2
|
|
1362
1361
|
#
|
1363
1362
|
# * `network-acl-id` - The ID of the network ACL.
|
1364
1363
|
#
|
1365
|
-
# * `owner-id` - The ID of the
|
1364
|
+
# * `owner-id` - The ID of the account that owns the network ACL.
|
1366
1365
|
#
|
1367
1366
|
# * `tag`\:<key> - The key/value combination of a tag assigned to
|
1368
1367
|
# the resource. Use the tag key in the filter name and the tag value
|
@@ -1579,8 +1578,8 @@ module Aws::EC2
|
|
1579
1578
|
# * `accepter-vpc-info.cidr-block` - The IPv4 CIDR block of the accepter
|
1580
1579
|
# VPC.
|
1581
1580
|
#
|
1582
|
-
# * `accepter-vpc-info.owner-id` - The
|
1583
|
-
#
|
1581
|
+
# * `accepter-vpc-info.owner-id` - The ID of the account that owns the
|
1582
|
+
# accepter VPC.
|
1584
1583
|
#
|
1585
1584
|
# * `accepter-vpc-info.vpc-id` - The ID of the accepter VPC.
|
1586
1585
|
#
|
@@ -1590,8 +1589,8 @@ module Aws::EC2
|
|
1590
1589
|
# * `requester-vpc-info.cidr-block` - The IPv4 CIDR block of the
|
1591
1590
|
# requester's VPC.
|
1592
1591
|
#
|
1593
|
-
# * `requester-vpc-info.owner-id` - The
|
1594
|
-
#
|
1592
|
+
# * `requester-vpc-info.owner-id` - The ID of the account that owns the
|
1593
|
+
# requester VPC.
|
1595
1594
|
#
|
1596
1595
|
# * `requester-vpc-info.vpc-id` - The ID of the requester VPC.
|
1597
1596
|
#
|
@@ -1674,7 +1673,7 @@ module Aws::EC2
|
|
1674
1673
|
# route table for the VPC (`true` \| `false`). Route tables that do
|
1675
1674
|
# not have an association ID are not returned in the response.
|
1676
1675
|
#
|
1677
|
-
# * `owner-id` - The ID of the
|
1676
|
+
# * `owner-id` - The ID of the account that owns the route table.
|
1678
1677
|
#
|
1679
1678
|
# * `route-table-id` - The ID of the route table.
|
1680
1679
|
#
|
@@ -1684,8 +1683,8 @@ module Aws::EC2
|
|
1684
1683
|
# * `route.destination-ipv6-cidr-block` - The IPv6 CIDR range specified
|
1685
1684
|
# in a route in the route table.
|
1686
1685
|
#
|
1687
|
-
# * `route.destination-prefix-list-id` - The ID (prefix) of the
|
1688
|
-
#
|
1686
|
+
# * `route.destination-prefix-list-id` - The ID (prefix) of the Amazon
|
1687
|
+
# Web Service specified in a route in the table.
|
1689
1688
|
#
|
1690
1689
|
# * `route.egress-only-internet-gateway-id` - The ID of an egress-only
|
1691
1690
|
# Internet gateway specified in a route in the route table.
|
@@ -1805,8 +1804,8 @@ module Aws::EC2
|
|
1805
1804
|
# * `egress.ip-permission.to-port` - For an outbound rule, the end of
|
1806
1805
|
# port range for the TCP and UDP protocols, or an ICMP code.
|
1807
1806
|
#
|
1808
|
-
# * `egress.ip-permission.user-id` - The ID of an
|
1809
|
-
# been referenced in an outbound security group rule.
|
1807
|
+
# * `egress.ip-permission.user-id` - The ID of an Amazon Web Services
|
1808
|
+
# account that has been referenced in an outbound security group rule.
|
1810
1809
|
#
|
1811
1810
|
# * `group-id` - The ID of the security group.
|
1812
1811
|
#
|
@@ -1837,10 +1836,11 @@ module Aws::EC2
|
|
1837
1836
|
# * `ip-permission.to-port` - For an inbound rule, the end of port range
|
1838
1837
|
# for the TCP and UDP protocols, or an ICMP code.
|
1839
1838
|
#
|
1840
|
-
# * `ip-permission.user-id` - The ID of an
|
1841
|
-
# referenced in an inbound security group rule.
|
1839
|
+
# * `ip-permission.user-id` - The ID of an Amazon Web Services account
|
1840
|
+
# that has been referenced in an inbound security group rule.
|
1842
1841
|
#
|
1843
|
-
# * `owner-id` - The
|
1842
|
+
# * `owner-id` - The Amazon Web Services account ID of the owner of the
|
1843
|
+
# security group.
|
1844
1844
|
#
|
1845
1845
|
# * `tag`\:<key> - The key/value combination of a tag assigned to
|
1846
1846
|
# the resource. Use the tag key in the filter name and the tag value
|
@@ -1858,14 +1858,14 @@ module Aws::EC2
|
|
1858
1858
|
# The IDs of the security groups. Required for security groups in a
|
1859
1859
|
# nondefault VPC.
|
1860
1860
|
#
|
1861
|
-
# Default: Describes all your security groups.
|
1861
|
+
# Default: Describes all of your security groups.
|
1862
1862
|
# @option options [Array<String>] :group_names
|
1863
1863
|
# \[EC2-Classic and default VPC only\] The names of the security groups.
|
1864
1864
|
# You can specify either the security group name or the security group
|
1865
1865
|
# ID. For security groups in a nondefault VPC, use the `group-name`
|
1866
1866
|
# filter to describe security groups by name.
|
1867
1867
|
#
|
1868
|
-
# Default: Describes all your security groups.
|
1868
|
+
# Default: Describes all of your security groups.
|
1869
1869
|
# @option options [Boolean] :dry_run
|
1870
1870
|
# Checks whether you have the required permissions for the action,
|
1871
1871
|
# without actually making the request, and provides an error response.
|
@@ -1939,7 +1939,7 @@ module Aws::EC2
|
|
1939
1939
|
#
|
1940
1940
|
# * `outpost-arn` - The Amazon Resource Name (ARN) of the Outpost.
|
1941
1941
|
#
|
1942
|
-
# * `owner-id` - The ID of the
|
1942
|
+
# * `owner-id` - The ID of the account that owns the subnet.
|
1943
1943
|
#
|
1944
1944
|
# * `state` - The state of the subnet (`pending` \| `available`).
|
1945
1945
|
#
|
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.251.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: 2021-07-
|
11
|
+
date: 2021-07-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|