aws-sdk-ec2 1.280.0 → 1.281.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/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +12 -1
- data/lib/aws-sdk-ec2/client_api.rb +2 -0
- data/lib/aws-sdk-ec2/subnet.rb +8 -0
- data/lib/aws-sdk-ec2/types.rb +19 -2
- data/lib/aws-sdk-ec2.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 22db1d976485f026a26576c92b6bb030297f89ea29b3a1269293e5951a2d280f
|
4
|
+
data.tar.gz: fa7d97ae7cf94e469ff26e08c74a7b9812b46666c60616ae88d5349961950e00
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '029984b56d8fb43c25a90f9e20eaaf1981dcb8cb158abba9926a434ad65b3dfbe9fbf8ce95ba67f2020573e4354cb6e64328b3a49d25c6fb970feab894f08849'
|
7
|
+
data.tar.gz: 76c9370d3212baea4e56c5e5222159e407b125c25f1385de80fe48d0f02320f13ee93d6157733fc32517bedb88832ab4c71eda3ae411fe738d0195b7a5ae43dd
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.281.0 (2021-11-15)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Adds a new VPC Subnet attribute "EnableDns64." When enabled on IPv6 Subnets, the Amazon-Provided DNS Resolver returns synthetic IPv6 addresses for IPv4-only destinations.
|
8
|
+
|
4
9
|
1.280.0 (2021-11-12)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.281.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -4987,6 +4987,7 @@ module Aws::EC2
|
|
4987
4987
|
# resp.subnet.tags[0].value #=> String
|
4988
4988
|
# resp.subnet.subnet_arn #=> String
|
4989
4989
|
# resp.subnet.outpost_arn #=> String
|
4990
|
+
# resp.subnet.enable_dns_64 #=> Boolean
|
4990
4991
|
#
|
4991
4992
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateDefaultSubnet AWS API Documentation
|
4992
4993
|
#
|
@@ -9641,6 +9642,7 @@ module Aws::EC2
|
|
9641
9642
|
# resp.subnet.tags[0].value #=> String
|
9642
9643
|
# resp.subnet.subnet_arn #=> String
|
9643
9644
|
# resp.subnet.outpost_arn #=> String
|
9645
|
+
# resp.subnet.enable_dns_64 #=> Boolean
|
9644
9646
|
#
|
9645
9647
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateSubnet AWS API Documentation
|
9646
9648
|
#
|
@@ -27039,6 +27041,7 @@ module Aws::EC2
|
|
27039
27041
|
# resp.subnets[0].tags[0].value #=> String
|
27040
27042
|
# resp.subnets[0].subnet_arn #=> String
|
27041
27043
|
# resp.subnets[0].outpost_arn #=> String
|
27044
|
+
# resp.subnets[0].enable_dns_64 #=> Boolean
|
27042
27045
|
# resp.next_token #=> String
|
27043
27046
|
#
|
27044
27047
|
#
|
@@ -37493,6 +37496,11 @@ module Aws::EC2
|
|
37493
37496
|
# You must set this value when you specify `true` for
|
37494
37497
|
# `MapCustomerOwnedIpOnLaunch`.
|
37495
37498
|
#
|
37499
|
+
# @option params [Types::AttributeBooleanValue] :enable_dns_64
|
37500
|
+
# Indicates whether DNS queries made to the Amazon-provided DNS Resolver
|
37501
|
+
# in this subnet should return synthetic IPv6 addresses for IPv4-only
|
37502
|
+
# destinations.
|
37503
|
+
#
|
37496
37504
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
37497
37505
|
#
|
37498
37506
|
#
|
@@ -37522,6 +37530,9 @@ module Aws::EC2
|
|
37522
37530
|
# value: false,
|
37523
37531
|
# },
|
37524
37532
|
# customer_owned_ipv_4_pool: "CoipPoolId",
|
37533
|
+
# enable_dns_64: {
|
37534
|
+
# value: false,
|
37535
|
+
# },
|
37525
37536
|
# })
|
37526
37537
|
#
|
37527
37538
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifySubnetAttribute AWS API Documentation
|
@@ -45236,7 +45247,7 @@ module Aws::EC2
|
|
45236
45247
|
params: params,
|
45237
45248
|
config: config)
|
45238
45249
|
context[:gem_name] = 'aws-sdk-ec2'
|
45239
|
-
context[:gem_version] = '1.
|
45250
|
+
context[:gem_version] = '1.281.0'
|
45240
45251
|
Seahorse::Client::Request.new(handlers, context)
|
45241
45252
|
end
|
45242
45253
|
|
@@ -8909,6 +8909,7 @@ module Aws::EC2
|
|
8909
8909
|
ModifySubnetAttributeRequest.add_member(:subnet_id, Shapes::ShapeRef.new(shape: SubnetId, required: true, location_name: "subnetId"))
|
8910
8910
|
ModifySubnetAttributeRequest.add_member(:map_customer_owned_ip_on_launch, Shapes::ShapeRef.new(shape: AttributeBooleanValue, location_name: "MapCustomerOwnedIpOnLaunch"))
|
8911
8911
|
ModifySubnetAttributeRequest.add_member(:customer_owned_ipv_4_pool, Shapes::ShapeRef.new(shape: CoipPoolId, location_name: "CustomerOwnedIpv4Pool"))
|
8912
|
+
ModifySubnetAttributeRequest.add_member(:enable_dns_64, Shapes::ShapeRef.new(shape: AttributeBooleanValue, location_name: "EnableDns64"))
|
8912
8913
|
ModifySubnetAttributeRequest.struct_class = Types::ModifySubnetAttributeRequest
|
8913
8914
|
|
8914
8915
|
ModifyTrafficMirrorFilterNetworkServicesRequest.add_member(:traffic_mirror_filter_id, Shapes::ShapeRef.new(shape: TrafficMirrorFilterId, required: true, location_name: "TrafficMirrorFilterId"))
|
@@ -11038,6 +11039,7 @@ module Aws::EC2
|
|
11038
11039
|
Subnet.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
|
11039
11040
|
Subnet.add_member(:subnet_arn, Shapes::ShapeRef.new(shape: String, location_name: "subnetArn"))
|
11040
11041
|
Subnet.add_member(:outpost_arn, Shapes::ShapeRef.new(shape: String, location_name: "outpostArn"))
|
11042
|
+
Subnet.add_member(:enable_dns_64, Shapes::ShapeRef.new(shape: Boolean, location_name: "enableDns64"))
|
11041
11043
|
Subnet.struct_class = Types::Subnet
|
11042
11044
|
|
11043
11045
|
SubnetAssociation.add_member(:subnet_id, Shapes::ShapeRef.new(shape: String, location_name: "subnetId"))
|
data/lib/aws-sdk-ec2/subnet.rb
CHANGED
@@ -138,6 +138,14 @@ module Aws::EC2
|
|
138
138
|
data[:outpost_arn]
|
139
139
|
end
|
140
140
|
|
141
|
+
# Indicates whether DNS queries made to the Amazon-provided DNS Resolver
|
142
|
+
# in this subnet should return synthetic IPv6 addresses for IPv4-only
|
143
|
+
# destinations.
|
144
|
+
# @return [Boolean]
|
145
|
+
def enable_dns_64
|
146
|
+
data[:enable_dns_64]
|
147
|
+
end
|
148
|
+
|
141
149
|
# @!endgroup
|
142
150
|
|
143
151
|
# @return [Client]
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -44432,6 +44432,9 @@ module Aws::EC2
|
|
44432
44432
|
# value: false,
|
44433
44433
|
# },
|
44434
44434
|
# customer_owned_ipv_4_pool: "CoipPoolId",
|
44435
|
+
# enable_dns_64: {
|
44436
|
+
# value: false,
|
44437
|
+
# },
|
44435
44438
|
# }
|
44436
44439
|
#
|
44437
44440
|
# @!attribute [rw] assign_ipv_6_address_on_creation
|
@@ -44471,6 +44474,12 @@ module Aws::EC2
|
|
44471
44474
|
# `MapCustomerOwnedIpOnLaunch`.
|
44472
44475
|
# @return [String]
|
44473
44476
|
#
|
44477
|
+
# @!attribute [rw] enable_dns_64
|
44478
|
+
# Indicates whether DNS queries made to the Amazon-provided DNS
|
44479
|
+
# Resolver in this subnet should return synthetic IPv6 addresses for
|
44480
|
+
# IPv4-only destinations.
|
44481
|
+
# @return [Types::AttributeBooleanValue]
|
44482
|
+
#
|
44474
44483
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifySubnetAttributeRequest AWS API Documentation
|
44475
44484
|
#
|
44476
44485
|
class ModifySubnetAttributeRequest < Struct.new(
|
@@ -44478,7 +44487,8 @@ module Aws::EC2
|
|
44478
44487
|
:map_public_ip_on_launch,
|
44479
44488
|
:subnet_id,
|
44480
44489
|
:map_customer_owned_ip_on_launch,
|
44481
|
-
:customer_owned_ipv_4_pool
|
44490
|
+
:customer_owned_ipv_4_pool,
|
44491
|
+
:enable_dns_64)
|
44482
44492
|
SENSITIVE = []
|
44483
44493
|
include Aws::Structure
|
44484
44494
|
end
|
@@ -58341,6 +58351,12 @@ module Aws::EC2
|
|
58341
58351
|
# The Amazon Resource Name (ARN) of the Outpost.
|
58342
58352
|
# @return [String]
|
58343
58353
|
#
|
58354
|
+
# @!attribute [rw] enable_dns_64
|
58355
|
+
# Indicates whether DNS queries made to the Amazon-provided DNS
|
58356
|
+
# Resolver in this subnet should return synthetic IPv6 addresses for
|
58357
|
+
# IPv4-only destinations.
|
58358
|
+
# @return [Boolean]
|
58359
|
+
#
|
58344
58360
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Subnet AWS API Documentation
|
58345
58361
|
#
|
58346
58362
|
class Subnet < Struct.new(
|
@@ -58360,7 +58376,8 @@ module Aws::EC2
|
|
58360
58376
|
:ipv_6_cidr_block_association_set,
|
58361
58377
|
:tags,
|
58362
58378
|
:subnet_arn,
|
58363
|
-
:outpost_arn
|
58379
|
+
:outpost_arn,
|
58380
|
+
:enable_dns_64)
|
58364
58381
|
SENSITIVE = []
|
58365
58382
|
include Aws::Structure
|
58366
58383
|
end
|
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.281.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: 2021-11-
|
11
|
+
date: 2021-11-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|