Skip to content

Commit

Permalink
Merge branch 'release-1.31.29'
Browse files Browse the repository at this point in the history
* release-1.31.29:
  Bumping version to 1.31.29
  Update to latest partitions and endpoints
  Update to latest models
  • Loading branch information
aws-sdk-python-automation committed Aug 17, 2023
2 parents b61f46a + 2145cc6 commit 03e4983
Show file tree
Hide file tree
Showing 8 changed files with 369 additions and 283 deletions.
12 changes: 12 additions & 0 deletions .changes/1.31.29.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[
{
"category": "``ec2``",
"description": "Adds support for SubnetConfigurations to allow users to select their own IPv4 and IPv6 addresses for Interface VPC endpoints",
"type": "api-change"
},
{
"category": "``gamelift``",
"description": "Amazon GameLift updates its instance types support.",
"type": "api-change"
}
]
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
CHANGELOG
=========

1.31.29
=======

* api-change:``ec2``: Adds support for SubnetConfigurations to allow users to select their own IPv4 and IPv6 addresses for Interface VPC endpoints
* api-change:``gamelift``: Amazon GameLift updates its instance types support.


1.31.28
=======

Expand Down
2 changes: 1 addition & 1 deletion botocore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import os
import re

__version__ = '1.31.28'
__version__ = '1.31.29'


class NullHandler(logging.Handler):
Expand Down
43 changes: 39 additions & 4 deletions botocore/data/ec2/2016-11-15/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -15342,12 +15342,12 @@
},
"SubnetIds":{
"shape":"VpcEndpointSubnetIdList",
"documentation":"<p>(Interface and Gateway Load Balancer endpoints) The IDs of the subnets in which to create an endpoint network interface. For a Gateway Load Balancer endpoint, you can specify only one subnet.</p>",
"documentation":"<p>(Interface and Gateway Load Balancer endpoints) The IDs of the subnets in which to create endpoint network interfaces. For a Gateway Load Balancer endpoint, you can specify only one subnet.</p>",
"locationName":"SubnetId"
},
"SecurityGroupIds":{
"shape":"VpcEndpointSecurityGroupIdList",
"documentation":"<p>(Interface endpoint) The IDs of the security groups to associate with the endpoint network interface. If this parameter is not specified, we use the default security group for the VPC.</p>",
"documentation":"<p>(Interface endpoint) The IDs of the security groups to associate with the endpoint network interfaces. If this parameter is not specified, we use the default security group for the VPC.</p>",
"locationName":"SecurityGroupId"
},
"IpAddressType":{
Expand All @@ -15370,6 +15370,11 @@
"shape":"TagSpecificationList",
"documentation":"<p>The tags to associate with the endpoint.</p>",
"locationName":"TagSpecification"
},
"SubnetConfigurations":{
"shape":"SubnetConfigurationsList",
"documentation":"<p>The subnet configurations for the endpoint.</p>",
"locationName":"SubnetConfiguration"
}
}
},
Expand Down Expand Up @@ -41856,12 +41861,12 @@
},
"AddSecurityGroupIds":{
"shape":"VpcEndpointSecurityGroupIdList",
"documentation":"<p>(Interface endpoint) The IDs of the security groups to associate with the network interface.</p>",
"documentation":"<p>(Interface endpoint) The IDs of the security groups to associate with the endpoint network interfaces.</p>",
"locationName":"AddSecurityGroupId"
},
"RemoveSecurityGroupIds":{
"shape":"VpcEndpointSecurityGroupIdList",
"documentation":"<p>(Interface endpoint) The IDs of the security groups to disassociate from the network interface.</p>",
"documentation":"<p>(Interface endpoint) The IDs of the security groups to disassociate from the endpoint network interfaces.</p>",
"locationName":"RemoveSecurityGroupId"
},
"IpAddressType":{
Expand All @@ -41875,6 +41880,11 @@
"PrivateDnsEnabled":{
"shape":"Boolean",
"documentation":"<p>(Interface endpoint) Indicates whether a private hosted zone is associated with the VPC.</p>"
},
"SubnetConfigurations":{
"shape":"SubnetConfigurationsList",
"documentation":"<p>The subnet configurations for the endpoint.</p>",
"locationName":"SubnetConfiguration"
}
}
},
Expand Down Expand Up @@ -52493,6 +52503,31 @@
"explicit"
]
},
"SubnetConfiguration":{
"type":"structure",
"members":{
"SubnetId":{
"shape":"SubnetId",
"documentation":"<p>The ID of the subnet.</p>"
},
"Ipv4":{
"shape":"String",
"documentation":"<p>The IPv4 address to assign to the endpoint network interface in the subnet. You must provide an IPv4 address if the VPC endpoint supports IPv4.</p> <p>If you specify an IPv4 address when modifying a VPC endpoint, we replace the existing endpoint network interface with a new endpoint network interface with this IP address. This process temporarily disconnects the subnet and the VPC endpoint.</p>"
},
"Ipv6":{
"shape":"String",
"documentation":"<p>The IPv6 address to assign to the endpoint network interface in the subnet. You must provide an IPv6 address if the VPC endpoint supports IPv6.</p> <p>If you specify an IPv6 address when modifying a VPC endpoint, we replace the existing endpoint network interface with a new endpoint network interface with this IP address. This process temporarily disconnects the subnet and the VPC endpoint.</p>"
}
},
"documentation":"<p>Describes the configuration of a subnet for a VPC endpoint.</p>"
},
"SubnetConfigurationsList":{
"type":"list",
"member":{
"shape":"SubnetConfiguration",
"locationName":"item"
}
},
"SubnetId":{"type":"string"},
"SubnetIdStringList":{
"type":"list",
Expand Down
9 changes: 8 additions & 1 deletion botocore/data/endpoints.json
Original file line number Diff line number Diff line change
Expand Up @@ -24168,7 +24168,8 @@
"protocols" : [ "http", "https" ]
},
"endpoints" : {
"us-iso-east-1" : { }
"us-iso-east-1" : { },
"us-iso-west-1" : { }
}
},
"elasticache" : {
Expand Down Expand Up @@ -24406,6 +24407,12 @@
"us-iso-west-1" : { }
}
},
"resource-groups" : {
"endpoints" : {
"us-iso-east-1" : { },
"us-iso-west-1" : { }
}
},
"route53" : {
"endpoints" : {
"aws-iso-global" : {
Expand Down
Loading

0 comments on commit 03e4983

Please sign in to comment.