aws-sdk-ec2 1.398.0 → 1.399.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 +26 -6
- data/lib/aws-sdk-ec2/client_api.rb +11 -0
- data/lib/aws-sdk-ec2/types.rb +54 -6
- 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: 1a7b52147cc1c38ae22dd42765ab564cba7fbe6aa0cb47ff2ffc1a874250dccf
|
4
|
+
data.tar.gz: eaee461e1afaf7178928ce2774af24e9fda7b060e1754d04d197873f05a405e8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 25f60ff8dde776ccc451baa5bc17c39713ee7b3619618b49cd4621670fcc6d988e9261781d532f64420f5910912e95cc7c72499319db233de21977cd7a91c611
|
7
|
+
data.tar.gz: 6d841d40ecfb7abb985627e05962def6be027a64eb15725b9b2b7bbca4601f2d5c941c822857904841de7582fd57ecf65c4074faba050f306a17b2f8f0559e2b
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.399.0 (2023-08-17)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Adds support for SubnetConfigurations to allow users to select their own IPv4 and IPv6 addresses for Interface VPC endpoints
|
8
|
+
|
4
9
|
1.398.0 (2023-08-15)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.399.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -14272,13 +14272,13 @@ module Aws::EC2
|
|
14272
14272
|
#
|
14273
14273
|
# @option params [Array<String>] :subnet_ids
|
14274
14274
|
# (Interface and Gateway Load Balancer endpoints) The IDs of the subnets
|
14275
|
-
# in which to create
|
14275
|
+
# in which to create endpoint network interfaces. For a Gateway Load
|
14276
14276
|
# Balancer endpoint, you can specify only one subnet.
|
14277
14277
|
#
|
14278
14278
|
# @option params [Array<String>] :security_group_ids
|
14279
14279
|
# (Interface endpoint) The IDs of the security groups to associate with
|
14280
|
-
# the endpoint network
|
14281
|
-
# use the default security group for the VPC.
|
14280
|
+
# the endpoint network interfaces. If this parameter is not specified,
|
14281
|
+
# we use the default security group for the VPC.
|
14282
14282
|
#
|
14283
14283
|
# @option params [String] :ip_address_type
|
14284
14284
|
# The IP address type for the endpoint.
|
@@ -14314,6 +14314,9 @@ module Aws::EC2
|
|
14314
14314
|
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
14315
14315
|
# The tags to associate with the endpoint.
|
14316
14316
|
#
|
14317
|
+
# @option params [Array<Types::SubnetConfiguration>] :subnet_configurations
|
14318
|
+
# The subnet configurations for the endpoint.
|
14319
|
+
#
|
14317
14320
|
# @return [Types::CreateVpcEndpointResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
14318
14321
|
#
|
14319
14322
|
# * {Types::CreateVpcEndpointResult#vpc_endpoint #vpc_endpoint} => Types::VpcEndpoint
|
@@ -14348,6 +14351,13 @@ module Aws::EC2
|
|
14348
14351
|
# ],
|
14349
14352
|
# },
|
14350
14353
|
# ],
|
14354
|
+
# subnet_configurations: [
|
14355
|
+
# {
|
14356
|
+
# subnet_id: "SubnetId",
|
14357
|
+
# ipv_4: "String",
|
14358
|
+
# ipv_6: "String",
|
14359
|
+
# },
|
14360
|
+
# ],
|
14351
14361
|
# })
|
14352
14362
|
#
|
14353
14363
|
# @example Response structure
|
@@ -48435,11 +48445,11 @@ module Aws::EC2
|
|
48435
48445
|
#
|
48436
48446
|
# @option params [Array<String>] :add_security_group_ids
|
48437
48447
|
# (Interface endpoint) The IDs of the security groups to associate with
|
48438
|
-
# the network
|
48448
|
+
# the endpoint network interfaces.
|
48439
48449
|
#
|
48440
48450
|
# @option params [Array<String>] :remove_security_group_ids
|
48441
48451
|
# (Interface endpoint) The IDs of the security groups to disassociate
|
48442
|
-
# from the network
|
48452
|
+
# from the endpoint network interfaces.
|
48443
48453
|
#
|
48444
48454
|
# @option params [String] :ip_address_type
|
48445
48455
|
# The IP address type for the endpoint.
|
@@ -48451,6 +48461,9 @@ module Aws::EC2
|
|
48451
48461
|
# (Interface endpoint) Indicates whether a private hosted zone is
|
48452
48462
|
# associated with the VPC.
|
48453
48463
|
#
|
48464
|
+
# @option params [Array<Types::SubnetConfiguration>] :subnet_configurations
|
48465
|
+
# The subnet configurations for the endpoint.
|
48466
|
+
#
|
48454
48467
|
# @return [Types::ModifyVpcEndpointResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
48455
48468
|
#
|
48456
48469
|
# * {Types::ModifyVpcEndpointResult#return #return} => Boolean
|
@@ -48474,6 +48487,13 @@ module Aws::EC2
|
|
48474
48487
|
# private_dns_only_for_inbound_resolver_endpoint: false,
|
48475
48488
|
# },
|
48476
48489
|
# private_dns_enabled: false,
|
48490
|
+
# subnet_configurations: [
|
48491
|
+
# {
|
48492
|
+
# subnet_id: "SubnetId",
|
48493
|
+
# ipv_4: "String",
|
48494
|
+
# ipv_6: "String",
|
48495
|
+
# },
|
48496
|
+
# ],
|
48477
48497
|
# })
|
48478
48498
|
#
|
48479
48499
|
# @example Response structure
|
@@ -56711,7 +56731,7 @@ module Aws::EC2
|
|
56711
56731
|
params: params,
|
56712
56732
|
config: config)
|
56713
56733
|
context[:gem_name] = 'aws-sdk-ec2'
|
56714
|
-
context[:gem_version] = '1.
|
56734
|
+
context[:gem_version] = '1.399.0'
|
56715
56735
|
Seahorse::Client::Request.new(handlers, context)
|
56716
56736
|
end
|
56717
56737
|
|
@@ -2660,6 +2660,8 @@ module Aws::EC2
|
|
2660
2660
|
SubnetCidrReservationId = Shapes::StringShape.new(name: 'SubnetCidrReservationId')
|
2661
2661
|
SubnetCidrReservationList = Shapes::ListShape.new(name: 'SubnetCidrReservationList')
|
2662
2662
|
SubnetCidrReservationType = Shapes::StringShape.new(name: 'SubnetCidrReservationType')
|
2663
|
+
SubnetConfiguration = Shapes::StructureShape.new(name: 'SubnetConfiguration')
|
2664
|
+
SubnetConfigurationsList = Shapes::ListShape.new(name: 'SubnetConfigurationsList')
|
2663
2665
|
SubnetId = Shapes::StringShape.new(name: 'SubnetId')
|
2664
2666
|
SubnetIdStringList = Shapes::ListShape.new(name: 'SubnetIdStringList')
|
2665
2667
|
SubnetIpv6CidrBlockAssociation = Shapes::StructureShape.new(name: 'SubnetIpv6CidrBlockAssociation')
|
@@ -5243,6 +5245,7 @@ module Aws::EC2
|
|
5243
5245
|
CreateVpcEndpointRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken"))
|
5244
5246
|
CreateVpcEndpointRequest.add_member(:private_dns_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "PrivateDnsEnabled"))
|
5245
5247
|
CreateVpcEndpointRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
|
5248
|
+
CreateVpcEndpointRequest.add_member(:subnet_configurations, Shapes::ShapeRef.new(shape: SubnetConfigurationsList, location_name: "SubnetConfiguration"))
|
5246
5249
|
CreateVpcEndpointRequest.struct_class = Types::CreateVpcEndpointRequest
|
5247
5250
|
|
5248
5251
|
CreateVpcEndpointResult.add_member(:vpc_endpoint, Shapes::ShapeRef.new(shape: VpcEndpoint, location_name: "vpcEndpoint"))
|
@@ -11359,6 +11362,7 @@ module Aws::EC2
|
|
11359
11362
|
ModifyVpcEndpointRequest.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IpAddressType, location_name: "IpAddressType"))
|
11360
11363
|
ModifyVpcEndpointRequest.add_member(:dns_options, Shapes::ShapeRef.new(shape: DnsOptionsSpecification, location_name: "DnsOptions"))
|
11361
11364
|
ModifyVpcEndpointRequest.add_member(:private_dns_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "PrivateDnsEnabled"))
|
11365
|
+
ModifyVpcEndpointRequest.add_member(:subnet_configurations, Shapes::ShapeRef.new(shape: SubnetConfigurationsList, location_name: "SubnetConfiguration"))
|
11362
11366
|
ModifyVpcEndpointRequest.struct_class = Types::ModifyVpcEndpointRequest
|
11363
11367
|
|
11364
11368
|
ModifyVpcEndpointResult.add_member(:return, Shapes::ShapeRef.new(shape: Boolean, location_name: "return"))
|
@@ -13734,6 +13738,13 @@ module Aws::EC2
|
|
13734
13738
|
|
13735
13739
|
SubnetCidrReservationList.member = Shapes::ShapeRef.new(shape: SubnetCidrReservation, location_name: "item")
|
13736
13740
|
|
13741
|
+
SubnetConfiguration.add_member(:subnet_id, Shapes::ShapeRef.new(shape: SubnetId, location_name: "SubnetId"))
|
13742
|
+
SubnetConfiguration.add_member(:ipv_4, Shapes::ShapeRef.new(shape: String, location_name: "Ipv4"))
|
13743
|
+
SubnetConfiguration.add_member(:ipv_6, Shapes::ShapeRef.new(shape: String, location_name: "Ipv6"))
|
13744
|
+
SubnetConfiguration.struct_class = Types::SubnetConfiguration
|
13745
|
+
|
13746
|
+
SubnetConfigurationsList.member = Shapes::ShapeRef.new(shape: SubnetConfiguration, location_name: "item")
|
13747
|
+
|
13737
13748
|
SubnetIdStringList.member = Shapes::ShapeRef.new(shape: SubnetId, location_name: "SubnetId")
|
13738
13749
|
|
13739
13750
|
SubnetIpv6CidrBlockAssociation.add_member(:association_id, Shapes::ShapeRef.new(shape: SubnetCidrAssociationId, location_name: "associationId"))
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -12124,13 +12124,13 @@ module Aws::EC2
|
|
12124
12124
|
#
|
12125
12125
|
# @!attribute [rw] subnet_ids
|
12126
12126
|
# (Interface and Gateway Load Balancer endpoints) The IDs of the
|
12127
|
-
# subnets in which to create
|
12127
|
+
# subnets in which to create endpoint network interfaces. For a
|
12128
12128
|
# Gateway Load Balancer endpoint, you can specify only one subnet.
|
12129
12129
|
# @return [Array<String>]
|
12130
12130
|
#
|
12131
12131
|
# @!attribute [rw] security_group_ids
|
12132
12132
|
# (Interface endpoint) The IDs of the security groups to associate
|
12133
|
-
# with the endpoint network
|
12133
|
+
# with the endpoint network interfaces. If this parameter is not
|
12134
12134
|
# specified, we use the default security group for the VPC.
|
12135
12135
|
# @return [Array<String>]
|
12136
12136
|
#
|
@@ -12173,6 +12173,10 @@ module Aws::EC2
|
|
12173
12173
|
# The tags to associate with the endpoint.
|
12174
12174
|
# @return [Array<Types::TagSpecification>]
|
12175
12175
|
#
|
12176
|
+
# @!attribute [rw] subnet_configurations
|
12177
|
+
# The subnet configurations for the endpoint.
|
12178
|
+
# @return [Array<Types::SubnetConfiguration>]
|
12179
|
+
#
|
12176
12180
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVpcEndpointRequest AWS API Documentation
|
12177
12181
|
#
|
12178
12182
|
class CreateVpcEndpointRequest < Struct.new(
|
@@ -12188,7 +12192,8 @@ module Aws::EC2
|
|
12188
12192
|
:dns_options,
|
12189
12193
|
:client_token,
|
12190
12194
|
:private_dns_enabled,
|
12191
|
-
:tag_specifications
|
12195
|
+
:tag_specifications,
|
12196
|
+
:subnet_configurations)
|
12192
12197
|
SENSITIVE = []
|
12193
12198
|
include Aws::Structure
|
12194
12199
|
end
|
@@ -47508,12 +47513,12 @@ module Aws::EC2
|
|
47508
47513
|
#
|
47509
47514
|
# @!attribute [rw] add_security_group_ids
|
47510
47515
|
# (Interface endpoint) The IDs of the security groups to associate
|
47511
|
-
# with the network
|
47516
|
+
# with the endpoint network interfaces.
|
47512
47517
|
# @return [Array<String>]
|
47513
47518
|
#
|
47514
47519
|
# @!attribute [rw] remove_security_group_ids
|
47515
47520
|
# (Interface endpoint) The IDs of the security groups to disassociate
|
47516
|
-
# from the network
|
47521
|
+
# from the endpoint network interfaces.
|
47517
47522
|
# @return [Array<String>]
|
47518
47523
|
#
|
47519
47524
|
# @!attribute [rw] ip_address_type
|
@@ -47529,6 +47534,10 @@ module Aws::EC2
|
|
47529
47534
|
# associated with the VPC.
|
47530
47535
|
# @return [Boolean]
|
47531
47536
|
#
|
47537
|
+
# @!attribute [rw] subnet_configurations
|
47538
|
+
# The subnet configurations for the endpoint.
|
47539
|
+
# @return [Array<Types::SubnetConfiguration>]
|
47540
|
+
#
|
47532
47541
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVpcEndpointRequest AWS API Documentation
|
47533
47542
|
#
|
47534
47543
|
class ModifyVpcEndpointRequest < Struct.new(
|
@@ -47544,7 +47553,8 @@ module Aws::EC2
|
|
47544
47553
|
:remove_security_group_ids,
|
47545
47554
|
:ip_address_type,
|
47546
47555
|
:dns_options,
|
47547
|
-
:private_dns_enabled
|
47556
|
+
:private_dns_enabled,
|
47557
|
+
:subnet_configurations)
|
47548
47558
|
SENSITIVE = []
|
47549
47559
|
include Aws::Structure
|
47550
47560
|
end
|
@@ -59986,6 +59996,44 @@ module Aws::EC2
|
|
59986
59996
|
include Aws::Structure
|
59987
59997
|
end
|
59988
59998
|
|
59999
|
+
# Describes the configuration of a subnet for a VPC endpoint.
|
60000
|
+
#
|
60001
|
+
# @!attribute [rw] subnet_id
|
60002
|
+
# The ID of the subnet.
|
60003
|
+
# @return [String]
|
60004
|
+
#
|
60005
|
+
# @!attribute [rw] ipv_4
|
60006
|
+
# The IPv4 address to assign to the endpoint network interface in the
|
60007
|
+
# subnet. You must provide an IPv4 address if the VPC endpoint
|
60008
|
+
# supports IPv4.
|
60009
|
+
#
|
60010
|
+
# If you specify an IPv4 address when modifying a VPC endpoint, we
|
60011
|
+
# replace the existing endpoint network interface with a new endpoint
|
60012
|
+
# network interface with this IP address. This process temporarily
|
60013
|
+
# disconnects the subnet and the VPC endpoint.
|
60014
|
+
# @return [String]
|
60015
|
+
#
|
60016
|
+
# @!attribute [rw] ipv_6
|
60017
|
+
# The IPv6 address to assign to the endpoint network interface in the
|
60018
|
+
# subnet. You must provide an IPv6 address if the VPC endpoint
|
60019
|
+
# supports IPv6.
|
60020
|
+
#
|
60021
|
+
# If you specify an IPv6 address when modifying a VPC endpoint, we
|
60022
|
+
# replace the existing endpoint network interface with a new endpoint
|
60023
|
+
# network interface with this IP address. This process temporarily
|
60024
|
+
# disconnects the subnet and the VPC endpoint.
|
60025
|
+
# @return [String]
|
60026
|
+
#
|
60027
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SubnetConfiguration AWS API Documentation
|
60028
|
+
#
|
60029
|
+
class SubnetConfiguration < Struct.new(
|
60030
|
+
:subnet_id,
|
60031
|
+
:ipv_4,
|
60032
|
+
:ipv_6)
|
60033
|
+
SENSITIVE = []
|
60034
|
+
include Aws::Structure
|
60035
|
+
end
|
60036
|
+
|
59989
60037
|
# Describes an association between a subnet and an IPv6 CIDR block.
|
59990
60038
|
#
|
59991
60039
|
# @!attribute [rw] association_id
|
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.399.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: 2023-08-
|
11
|
+
date: 2023-08-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|