aws-sdk-ec2 1.155.0 → 1.160.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 +167 -42
- data/lib/aws-sdk-ec2/client_api.rb +20 -1
- data/lib/aws-sdk-ec2/resource.rb +7 -2
- data/lib/aws-sdk-ec2/subnet.rb +15 -1
- data/lib/aws-sdk-ec2/types.rb +207 -30
- data/lib/aws-sdk-ec2/vpc.rb +6 -1
- metadata +2 -2
data/lib/aws-sdk-ec2/vpc.rb
CHANGED
|
@@ -447,6 +447,9 @@ module Aws::EC2
|
|
|
447
447
|
# that support Local Zones, see [Available Regions][1] in the *Amazon
|
|
448
448
|
# Elastic Compute Cloud User Guide*.
|
|
449
449
|
#
|
|
450
|
+
# To create a subnet in an Outpost, set this value to the Availability
|
|
451
|
+
# Zone for the Outpost and specify the Outpost ARN.
|
|
452
|
+
#
|
|
450
453
|
#
|
|
451
454
|
#
|
|
452
455
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html#concepts-available-regions
|
|
@@ -459,7 +462,9 @@ module Aws::EC2
|
|
|
459
462
|
# The IPv6 network range for the subnet, in CIDR notation. The subnet
|
|
460
463
|
# size must use a /64 prefix length.
|
|
461
464
|
# @option options [String] :outpost_arn
|
|
462
|
-
# The Amazon Resource Name (ARN) of the Outpost.
|
|
465
|
+
# The Amazon Resource Name (ARN) of the Outpost. If you specify an
|
|
466
|
+
# Outpost ARN, you must also specify the Availability Zone of the
|
|
467
|
+
# Outpost subnet.
|
|
463
468
|
# @option options [Boolean] :dry_run
|
|
464
469
|
# Checks whether you have the required permissions for the action,
|
|
465
470
|
# without actually making the request, and provides an error response.
|
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.160.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-05-
|
|
11
|
+
date: 2020-05-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sigv4
|