aws-sdk-ec2 1.210.0 → 1.211.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7d623dee4202bc83c97ea9b80cde993324d101686608c349d9ec17104afb74d0
4
- data.tar.gz: 837b49f2bc998e8b13b881dbb5efb7c24b4391d7ac032bfceb28a16bf711dd33
3
+ metadata.gz: 345b6cd4201d5f051fb4b111c2cc9a5f550e67f8294695a0a03ef2afabed5370
4
+ data.tar.gz: 290ecca4cf105014634641f2e8b79109019d335fb599e4d0590404d25f116d6a
5
5
  SHA512:
6
- metadata.gz: bd9b751953313cde98218fd837caace8a948dacf6c4a78a4416cc2a112bd504beef50b09f8f8792b8f941b83ef903ec939861c772aea96767708a2be4dcc68f7
7
- data.tar.gz: 511b8b64f90c0283f20f8c20d8ca3eeb8641c0f48e31618ac9b442832731830f5e9e5d6f4623ce0fbbac53b8b2dab673b1bda7a27eccef2007eaa6a2d6120a78
6
+ metadata.gz: a4f071726e751a1c14329ed91a91633adf969c8ddcba42c35f3781eb4b285b9663975acd06aa00ac6a5c38f8984f035e3b39abbb8a1d924b5b152bb9b79f9977
7
+ data.tar.gz: 943637f87af460c3dc829a3b0be0554c34b5a3635da61ba5ba39f948e8032742493968db2fd8e50b667aa3a4664297e0613b0bde32298218aef86a9194079364
@@ -72,6 +72,6 @@ require_relative 'aws-sdk-ec2/customizations'
72
72
  # @!group service
73
73
  module Aws::EC2
74
74
 
75
- GEM_VERSION = '1.210.0'
75
+ GEM_VERSION = '1.211.0'
76
76
 
77
77
  end
@@ -25694,6 +25694,8 @@ module Aws::EC2
25694
25694
  # resp.service_details[0].base_endpoint_dns_names #=> Array
25695
25695
  # resp.service_details[0].base_endpoint_dns_names[0] #=> String
25696
25696
  # resp.service_details[0].private_dns_name #=> String
25697
+ # resp.service_details[0].private_dns_names #=> Array
25698
+ # resp.service_details[0].private_dns_names[0].private_dns_name #=> String
25697
25699
  # resp.service_details[0].vpc_endpoint_policy_supported #=> Boolean
25698
25700
  # resp.service_details[0].acceptance_required #=> Boolean
25699
25701
  # resp.service_details[0].manages_vpc_endpoints #=> Boolean
@@ -39284,7 +39286,7 @@ module Aws::EC2
39284
39286
  params: params,
39285
39287
  config: config)
39286
39288
  context[:gem_name] = 'aws-sdk-ec2'
39287
- context[:gem_version] = '1.210.0'
39289
+ context[:gem_version] = '1.211.0'
39288
39290
  Seahorse::Client::Request.new(handlers, context)
39289
39291
  end
39290
39292
 
@@ -1576,6 +1576,8 @@ module Aws::EC2
1576
1576
  PrincipalIdFormat = Shapes::StructureShape.new(name: 'PrincipalIdFormat')
1577
1577
  PrincipalIdFormatList = Shapes::ListShape.new(name: 'PrincipalIdFormatList')
1578
1578
  PrincipalType = Shapes::StringShape.new(name: 'PrincipalType')
1579
+ PrivateDnsDetails = Shapes::StructureShape.new(name: 'PrivateDnsDetails')
1580
+ PrivateDnsDetailsSet = Shapes::ListShape.new(name: 'PrivateDnsDetailsSet')
1579
1581
  PrivateDnsNameConfiguration = Shapes::StructureShape.new(name: 'PrivateDnsNameConfiguration')
1580
1582
  PrivateIpAddressConfigSet = Shapes::ListShape.new(name: 'PrivateIpAddressConfigSet')
1581
1583
  PrivateIpAddressSpecification = Shapes::StructureShape.new(name: 'PrivateIpAddressSpecification')
@@ -8221,6 +8223,11 @@ module Aws::EC2
8221
8223
 
8222
8224
  PrincipalIdFormatList.member = Shapes::ShapeRef.new(shape: PrincipalIdFormat, location_name: "item")
8223
8225
 
8226
+ PrivateDnsDetails.add_member(:private_dns_name, Shapes::ShapeRef.new(shape: String, location_name: "privateDnsName"))
8227
+ PrivateDnsDetails.struct_class = Types::PrivateDnsDetails
8228
+
8229
+ PrivateDnsDetailsSet.member = Shapes::ShapeRef.new(shape: PrivateDnsDetails, location_name: "item")
8230
+
8224
8231
  PrivateDnsNameConfiguration.add_member(:state, Shapes::ShapeRef.new(shape: DnsNameState, location_name: "state"))
8225
8232
  PrivateDnsNameConfiguration.add_member(:type, Shapes::ShapeRef.new(shape: String, location_name: "type"))
8226
8233
  PrivateDnsNameConfiguration.add_member(:value, Shapes::ShapeRef.new(shape: String, location_name: "value"))
@@ -9191,6 +9198,7 @@ module Aws::EC2
9191
9198
  ServiceDetail.add_member(:owner, Shapes::ShapeRef.new(shape: String, location_name: "owner"))
9192
9199
  ServiceDetail.add_member(:base_endpoint_dns_names, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "baseEndpointDnsNameSet"))
9193
9200
  ServiceDetail.add_member(:private_dns_name, Shapes::ShapeRef.new(shape: String, location_name: "privateDnsName"))
9201
+ ServiceDetail.add_member(:private_dns_names, Shapes::ShapeRef.new(shape: PrivateDnsDetailsSet, location_name: "privateDnsNameSet"))
9194
9202
  ServiceDetail.add_member(:vpc_endpoint_policy_supported, Shapes::ShapeRef.new(shape: Boolean, location_name: "vpcEndpointPolicySupported"))
9195
9203
  ServiceDetail.add_member(:acceptance_required, Shapes::ShapeRef.new(shape: Boolean, location_name: "acceptanceRequired"))
9196
9204
  ServiceDetail.add_member(:manages_vpc_endpoints, Shapes::ShapeRef.new(shape: Boolean, location_name: "managesVpcEndpoints"))
@@ -40271,6 +40271,20 @@ module Aws::EC2
40271
40271
  include Aws::Structure
40272
40272
  end
40273
40273
 
40274
+ # Information about the Private DNS name for interface endpoints.
40275
+ #
40276
+ # @!attribute [rw] private_dns_name
40277
+ # The private DNS name assigned to the VPC endpoint service.
40278
+ # @return [String]
40279
+ #
40280
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PrivateDnsDetails AWS API Documentation
40281
+ #
40282
+ class PrivateDnsDetails < Struct.new(
40283
+ :private_dns_name)
40284
+ SENSITIVE = []
40285
+ include Aws::Structure
40286
+ end
40287
+
40274
40288
  # Information about the private DNS name for the service endpoint. For
40275
40289
  # more information about these parameters, see [VPC Endpoint Service
40276
40290
  # Private DNS Name Verification][1] in the *Amazon Virtual Private Cloud
@@ -46806,6 +46820,10 @@ module Aws::EC2
46806
46820
  # The private DNS name for the service.
46807
46821
  # @return [String]
46808
46822
  #
46823
+ # @!attribute [rw] private_dns_names
46824
+ # The private DNS names assigned to the VPC endpoint service.
46825
+ # @return [Array<Types::PrivateDnsDetails>]
46826
+ #
46809
46827
  # @!attribute [rw] vpc_endpoint_policy_supported
46810
46828
  # Indicates whether the service supports endpoint policies.
46811
46829
  # @return [Boolean]
@@ -46842,6 +46860,7 @@ module Aws::EC2
46842
46860
  :owner,
46843
46861
  :base_endpoint_dns_names,
46844
46862
  :private_dns_name,
46863
+ :private_dns_names,
46845
46864
  :vpc_endpoint_policy_supported,
46846
46865
  :acceptance_required,
46847
46866
  :manages_vpc_endpoints,
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.210.0
4
+ version: 1.211.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-11-18 00:00:00.000000000 Z
11
+ date: 2020-11-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4