aws-sdk-ec2 1.40.0 → 1.41.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 +224 -148
- data/lib/aws-sdk-ec2/client_api.rb +10 -2
- data/lib/aws-sdk-ec2/internet_gateway.rb +2 -2
- data/lib/aws-sdk-ec2/network_acl.rb +9 -9
- data/lib/aws-sdk-ec2/resource.rb +2 -2
- data/lib/aws-sdk-ec2/route.rb +5 -4
- data/lib/aws-sdk-ec2/route_table.rb +2 -2
- data/lib/aws-sdk-ec2/subnet.rb +2 -3
- data/lib/aws-sdk-ec2/types.rb +151 -69
- data/lib/aws-sdk-ec2/vpc.rb +7 -7
- metadata +2 -2
data/lib/aws-sdk-ec2/vpc.rb
CHANGED
@@ -321,7 +321,7 @@ module Aws::EC2
|
|
321
321
|
# If you have the required permissions, the error response is
|
322
322
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
323
323
|
# @option options [required, String] :internet_gateway_id
|
324
|
-
# The ID of the
|
324
|
+
# The ID of the internet gateway.
|
325
325
|
# @return [EmptyStructure]
|
326
326
|
def attach_internet_gateway(options = {})
|
327
327
|
options = options.merge(vpc_id: @id)
|
@@ -561,7 +561,7 @@ module Aws::EC2
|
|
561
561
|
# If you have the required permissions, the error response is
|
562
562
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
563
563
|
# @option options [required, String] :internet_gateway_id
|
564
|
-
# The ID of the
|
564
|
+
# The ID of the internet gateway.
|
565
565
|
# @return [EmptyStructure]
|
566
566
|
def detach_internet_gateway(options = {})
|
567
567
|
options = options.merge(vpc_id: @id)
|
@@ -628,9 +628,9 @@ module Aws::EC2
|
|
628
628
|
# Indicates whether the DNS resolution is supported for the VPC. If
|
629
629
|
# enabled, queries to the Amazon provided DNS server at the
|
630
630
|
# 169.254.169.253 IP address, or the reserved IP address at the base of
|
631
|
-
# the VPC network range "plus two"
|
632
|
-
#
|
633
|
-
#
|
631
|
+
# the VPC network range "plus two" succeed. If disabled, the Amazon
|
632
|
+
# provided DNS service in the VPC that resolves public DNS hostnames to
|
633
|
+
# IP addresses is not enabled.
|
634
634
|
#
|
635
635
|
# You cannot modify the DNS resolution and DNS hostnames attributes in
|
636
636
|
# the same request. Use separate requests for each attribute.
|
@@ -1116,9 +1116,9 @@ module Aws::EC2
|
|
1116
1116
|
# If you have the required permissions, the error response is
|
1117
1117
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
1118
1118
|
# @option options [Array<String>] :internet_gateway_ids
|
1119
|
-
# One or more
|
1119
|
+
# One or more internet gateway IDs.
|
1120
1120
|
#
|
1121
|
-
# Default: Describes all your
|
1121
|
+
# Default: Describes all your internet gateways.
|
1122
1122
|
# @return [InternetGateway::Collection]
|
1123
1123
|
def internet_gateways(options = {})
|
1124
1124
|
batches = Enumerator.new do |y|
|
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.41.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: 2018-07
|
11
|
+
date: 2018-08-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|