aws-sdk-ec2 1.171.0 → 1.172.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/lib/aws-sdk-ec2.rb +1 -1
- data/lib/aws-sdk-ec2/client.rb +512 -32
- data/lib/aws-sdk-ec2/client_api.rb +213 -0
- data/lib/aws-sdk-ec2/network_acl.rb +3 -1
- data/lib/aws-sdk-ec2/resource.rb +10 -9
- data/lib/aws-sdk-ec2/route.rb +6 -0
- data/lib/aws-sdk-ec2/route_table.rb +6 -1
- data/lib/aws-sdk-ec2/subnet.rb +0 -3
- data/lib/aws-sdk-ec2/types.rb +655 -18
- data/lib/aws-sdk-ec2/vpc.rb +7 -8
- metadata +2 -2
data/lib/aws-sdk-ec2/vpc.rb
CHANGED
@@ -459,7 +459,9 @@ module Aws::EC2
|
|
459
459
|
# The AZ ID or the Local Zone ID of the subnet.
|
460
460
|
# @option options [required, String] :cidr_block
|
461
461
|
# The IPv4 network range for the subnet, in CIDR notation. For example,
|
462
|
-
# `10.0.0.0/24`.
|
462
|
+
# `10.0.0.0/24`. We modify the specified CIDR block to its canonical
|
463
|
+
# form; for example, if you specify `100.68.0.18/18`, we modify it to
|
464
|
+
# `100.68.0.0/18`.
|
463
465
|
# @option options [String] :ipv_6_cidr_block
|
464
466
|
# The IPv6 network range for the subnet, in CIDR notation. The subnet
|
465
467
|
# size must use a /64 prefix length.
|
@@ -1400,9 +1402,6 @@ module Aws::EC2
|
|
1400
1402
|
# * `attachment.instance-owner-id` - The owner ID of the instance to
|
1401
1403
|
# which the network interface is attached.
|
1402
1404
|
#
|
1403
|
-
# * `attachment.nat-gateway-id` - The ID of the NAT gateway to which the
|
1404
|
-
# network interface is attached.
|
1405
|
-
#
|
1406
1405
|
# * `attachment.status` - The status of the attachment (`attaching` \|
|
1407
1406
|
# `attached` \| `detaching` \| `detached`).
|
1408
1407
|
#
|
@@ -1733,8 +1732,8 @@ module Aws::EC2
|
|
1733
1732
|
# * `egress.ip-permission.ipv6-cidr` - An IPv6 CIDR block for an
|
1734
1733
|
# outbound security group rule.
|
1735
1734
|
#
|
1736
|
-
# * `egress.ip-permission.prefix-list-id` - The ID
|
1737
|
-
#
|
1735
|
+
# * `egress.ip-permission.prefix-list-id` - The ID of a prefix list to
|
1736
|
+
# which a security group rule allows outbound access.
|
1738
1737
|
#
|
1739
1738
|
# * `egress.ip-permission.protocol` - The IP protocol for an outbound
|
1740
1739
|
# security group rule (`tcp` \| `udp` \| `icmp` or a protocol number).
|
@@ -1764,8 +1763,8 @@ module Aws::EC2
|
|
1764
1763
|
# * `ip-permission.ipv6-cidr` - An IPv6 CIDR block for an inbound
|
1765
1764
|
# security group rule.
|
1766
1765
|
#
|
1767
|
-
# * `ip-permission.prefix-list-id` - The ID
|
1768
|
-
#
|
1766
|
+
# * `ip-permission.prefix-list-id` - The ID of a prefix list from which
|
1767
|
+
# a security group rule allows inbound access.
|
1769
1768
|
#
|
1770
1769
|
# * `ip-permission.protocol` - The IP protocol for an inbound security
|
1771
1770
|
# group rule (`tcp` \| `udp` \| `icmp` or a protocol number).
|
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.172.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: 2020-06-
|
11
|
+
date: 2020-06-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|