aws-sdk-ec2 1.15.0 → 1.16.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-ec2.rb +1 -1
- data/lib/aws-sdk-ec2/client.rb +244 -91
- data/lib/aws-sdk-ec2/client_api.rb +72 -15
- data/lib/aws-sdk-ec2/resource.rb +49 -22
- data/lib/aws-sdk-ec2/subnet.rb +5 -8
- data/lib/aws-sdk-ec2/types.rb +392 -118
- data/lib/aws-sdk-ec2/vpc.rb +41 -14
- metadata +2 -2
data/lib/aws-sdk-ec2/vpc.rb
CHANGED
@@ -1649,36 +1649,63 @@ module Aws::EC2
|
|
1649
1649
|
#
|
1650
1650
|
# * `description` - The description of the security group.
|
1651
1651
|
#
|
1652
|
+
# * `egress.ip-permission.cidr` - An IPv4 CIDR block for an outbound
|
1653
|
+
# security group rule.
|
1654
|
+
#
|
1655
|
+
# * `egress.ip-permission.from-port` - For an outbound rule, the start
|
1656
|
+
# of port range for the TCP and UDP protocols, or an ICMP type number.
|
1657
|
+
#
|
1658
|
+
# * `egress.ip-permission.group-id` - The ID of a security group that
|
1659
|
+
# has been referenced in an outbound security group rule.
|
1660
|
+
#
|
1661
|
+
# * `egress.ip-permission.group-name` - The name of a security group
|
1662
|
+
# that has been referenced in an outbound security group rule.
|
1663
|
+
#
|
1664
|
+
# * `egress.ip-permission.ipv6-cidr` - An IPv6 CIDR block for an
|
1665
|
+
# outbound security group rule.
|
1666
|
+
#
|
1652
1667
|
# * `egress.ip-permission.prefix-list-id` - The ID (prefix) of the AWS
|
1653
|
-
# service to which
|
1668
|
+
# service to which a security group rule allows outbound access.
|
1669
|
+
#
|
1670
|
+
# * `egress.ip-permission.protocol` - The IP protocol for an outbound
|
1671
|
+
# security group rule (`tcp` \| `udp` \| `icmp` or a protocol number).
|
1672
|
+
#
|
1673
|
+
# * `egress.ip-permission.to-port` - For an outbound rule, the end of
|
1674
|
+
# port range for the TCP and UDP protocols, or an ICMP code.
|
1675
|
+
#
|
1676
|
+
# * `egress.ip-permission.user-id` - The ID of an AWS account that has
|
1677
|
+
# been referenced in an outbound security group rule.
|
1654
1678
|
#
|
1655
1679
|
# * `group-id` - The ID of the security group.
|
1656
1680
|
#
|
1657
1681
|
# * `group-name` - The name of the security group.
|
1658
1682
|
#
|
1659
|
-
# * `ip-permission.cidr` - An IPv4 CIDR
|
1660
|
-
#
|
1683
|
+
# * `ip-permission.cidr` - An IPv4 CIDR block for an inbound security
|
1684
|
+
# group rule.
|
1661
1685
|
#
|
1662
|
-
# * `ip-permission.from-port` -
|
1663
|
-
# UDP protocols, or an ICMP type number.
|
1686
|
+
# * `ip-permission.from-port` - For an inbound rule, the start of port
|
1687
|
+
# range for the TCP and UDP protocols, or an ICMP type number.
|
1664
1688
|
#
|
1665
1689
|
# * `ip-permission.group-id` - The ID of a security group that has been
|
1666
|
-
#
|
1690
|
+
# referenced in an inbound security group rule.
|
1667
1691
|
#
|
1668
1692
|
# * `ip-permission.group-name` - The name of a security group that has
|
1669
|
-
# been
|
1693
|
+
# been referenced in an inbound security group rule.
|
1694
|
+
#
|
1695
|
+
# * `ip-permission.ipv6-cidr` - An IPv6 CIDR block for an inbound
|
1696
|
+
# security group rule.
|
1670
1697
|
#
|
1671
|
-
# * `ip-permission.
|
1672
|
-
#
|
1698
|
+
# * `ip-permission.prefix-list-id` - The ID (prefix) of the AWS service
|
1699
|
+
# from which a security group rule allows inbound access.
|
1673
1700
|
#
|
1674
|
-
# * `ip-permission.protocol` - The IP protocol for
|
1675
|
-
# \| `udp` \| `icmp` or a protocol number).
|
1701
|
+
# * `ip-permission.protocol` - The IP protocol for an inbound security
|
1702
|
+
# group rule (`tcp` \| `udp` \| `icmp` or a protocol number).
|
1676
1703
|
#
|
1677
|
-
# * `ip-permission.to-port` -
|
1678
|
-
# protocols, or an ICMP code.
|
1704
|
+
# * `ip-permission.to-port` - For an inbound rule, the end of port range
|
1705
|
+
# for the TCP and UDP protocols, or an ICMP code.
|
1679
1706
|
#
|
1680
1707
|
# * `ip-permission.user-id` - The ID of an AWS account that has been
|
1681
|
-
#
|
1708
|
+
# referenced in an inbound security group rule.
|
1682
1709
|
#
|
1683
1710
|
# * `owner-id` - The AWS account ID of the owner of the security group.
|
1684
1711
|
#
|
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.16.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: 2017-11-
|
11
|
+
date: 2017-11-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|