aws-sdk-ec2 1.334.0 → 1.336.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +855 -85
- data/lib/aws-sdk-ec2/client_api.rb +17 -0
- data/lib/aws-sdk-ec2/resource.rb +34 -0
- data/lib/aws-sdk-ec2/types.rb +229 -156
- data/lib/aws-sdk-ec2/vpc.rb +34 -0
- data/lib/aws-sdk-ec2.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-ec2/vpc.rb
CHANGED
@@ -1955,10 +1955,22 @@ module Aws::EC2
|
|
1955
1955
|
# to be returned for the subnet. You can also use `cidr` or
|
1956
1956
|
# `cidrBlock` as the filter names.
|
1957
1957
|
#
|
1958
|
+
# * `customer-owned-ipv4-pool` - The customer-owned IPv4 address pool
|
1959
|
+
# associated with the subnet.
|
1960
|
+
#
|
1958
1961
|
# * `default-for-az` - Indicates whether this is the default subnet for
|
1959
1962
|
# the Availability Zone (`true` \| `false`). You can also use
|
1960
1963
|
# `defaultForAz` as the filter name.
|
1961
1964
|
#
|
1965
|
+
# * `enable-dns64` - Indicates whether DNS queries made to the
|
1966
|
+
# Amazon-provided DNS Resolver in this subnet should return synthetic
|
1967
|
+
# IPv6 addresses for IPv4-only destinations.
|
1968
|
+
#
|
1969
|
+
# * `enable-lni-at-device-index` - Indicates the device position for
|
1970
|
+
# local network interfaces in this subnet. For example, `1` indicates
|
1971
|
+
# local network interfaces in this subnet are the secondary network
|
1972
|
+
# interface (eth1).
|
1973
|
+
#
|
1962
1974
|
# * `ipv6-cidr-block-association.ipv6-cidr-block` - An IPv6 CIDR block
|
1963
1975
|
# associated with the subnet.
|
1964
1976
|
#
|
@@ -1971,11 +1983,33 @@ module Aws::EC2
|
|
1971
1983
|
# * `ipv6-native` - Indicates whether this is an IPv6 only subnet
|
1972
1984
|
# (`true` \| `false`).
|
1973
1985
|
#
|
1986
|
+
# * `map-customer-owned-ip-on-launch` - Indicates whether a network
|
1987
|
+
# interface created in this subnet (including a network interface
|
1988
|
+
# created by RunInstances) receives a customer-owned IPv4 address.
|
1989
|
+
#
|
1990
|
+
# * `map-public-ip-on-launch` - Indicates whether instances launched in
|
1991
|
+
# this subnet receive a public IPv4 address.
|
1992
|
+
#
|
1974
1993
|
# * `outpost-arn` - The Amazon Resource Name (ARN) of the Outpost.
|
1975
1994
|
#
|
1976
1995
|
# * `owner-id` - The ID of the Amazon Web Services account that owns the
|
1977
1996
|
# subnet.
|
1978
1997
|
#
|
1998
|
+
# * `private-dns-name-options-on-launch.hostname-type` - The type of
|
1999
|
+
# hostname to assign to instances in the subnet at launch. For
|
2000
|
+
# IPv4-only and dual-stack (IPv4 and IPv6) subnets, an instance DNS
|
2001
|
+
# name can be based on the instance IPv4 address (ip-name) or the
|
2002
|
+
# instance ID (resource-name). For IPv6 only subnets, an instance DNS
|
2003
|
+
# name must be based on the instance ID (resource-name).
|
2004
|
+
#
|
2005
|
+
# * `private-dns-name-options-on-launch.enable-resource-name-dns-a-record`
|
2006
|
+
# - Indicates whether to respond to DNS queries for instance hostnames
|
2007
|
+
# with DNS A records.
|
2008
|
+
#
|
2009
|
+
# * `private-dns-name-options-on-launch.enable-resource-name-dns-aaaa-record`
|
2010
|
+
# - Indicates whether to respond to DNS queries for instance hostnames
|
2011
|
+
# with DNS AAAA records.
|
2012
|
+
#
|
1979
2013
|
# * `state` - The state of the subnet (`pending` \| `available`).
|
1980
2014
|
#
|
1981
2015
|
# * `subnet-arn` - The Amazon Resource Name (ARN) of the subnet.
|
data/lib/aws-sdk-ec2.rb
CHANGED
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.336.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: 2022-09-
|
11
|
+
date: 2022-09-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|