Skip to content

Commit

Permalink
Merge branch 'release-1.34.27' into develop
Browse files Browse the repository at this point in the history
* release-1.34.27:
  Bumping version to 1.34.27
  Update to latest models
  • Loading branch information
aws-sdk-python-automation committed Jan 24, 2024
2 parents a42c3b5 + 51ad58d commit e7c5b6a
Show file tree
Hide file tree
Showing 11 changed files with 481 additions and 67 deletions.
27 changes: 27 additions & 0 deletions .changes/1.34.27.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[
{
"category": "``ec2``",
"description": "Introduced a new clientToken request parameter on CreateNetworkAcl and CreateRouteTable APIs. The clientToken parameter allows idempotent operations on the APIs.",
"type": "api-change"
},
{
"category": "``ecs``",
"description": "Documentation updates for Amazon ECS.",
"type": "api-change"
},
{
"category": "``outposts``",
"description": "DeviceSerialNumber parameter is now optional in StartConnection API",
"type": "api-change"
},
{
"category": "``rds``",
"description": "This release adds support for Aurora Limitless Database.",
"type": "api-change"
},
{
"category": "``storagegateway``",
"description": "Add DeprecationDate and SoftwareVersion to response of ListGateways.",
"type": "api-change"
}
]
10 changes: 10 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@
CHANGELOG
=========

1.34.27
=======

* api-change:``ec2``: Introduced a new clientToken request parameter on CreateNetworkAcl and CreateRouteTable APIs. The clientToken parameter allows idempotent operations on the APIs.
* api-change:``ecs``: Documentation updates for Amazon ECS.
* api-change:``outposts``: DeviceSerialNumber parameter is now optional in StartConnection API
* api-change:``rds``: This release adds support for Aurora Limitless Database.
* api-change:``storagegateway``: Add DeprecationDate and SoftwareVersion to response of ListGateways.


1.34.26
=======

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.34.26'
__version__ = '1.34.27'


class NullHandler(logging.Handler):
Expand Down
30 changes: 26 additions & 4 deletions botocore/data/ec2/2016-11-15/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -9245,7 +9245,8 @@
"available",
"information",
"impaired",
"unavailable"
"unavailable",
"constrained"
]
},
"AvailabilityZoneStringList":{
Expand Down Expand Up @@ -12595,7 +12596,7 @@
"members":{
"ClientToken":{
"shape":"String",
"documentation":"<p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see <a href=\"https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Run_Instance_Idempotency.html\">How to ensure idempotency</a>.</p>"
"documentation":"<p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see <a href=\"https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Run_Instance_Idempotency.html\">Ensuring idempotency</a>.</p>"
},
"DryRun":{
"shape":"Boolean",
Expand Down Expand Up @@ -13674,7 +13675,7 @@
},
"ClientToken":{
"shape":"String",
"documentation":"<p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see <a href=\"https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html\">How to ensure idempotency</a>.</p> <p>Constraint: Maximum 64 ASCII characters.</p>",
"documentation":"<p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see <a href=\"https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html\">Ensuring idempotency</a>.</p> <p>Constraint: Maximum 64 ASCII characters.</p>",
"idempotencyToken":true
},
"DryRun":{
Expand Down Expand Up @@ -13809,6 +13810,11 @@
"shape":"TagSpecificationList",
"documentation":"<p>The tags to assign to the network ACL.</p>",
"locationName":"TagSpecification"
},
"ClientToken":{
"shape":"String",
"documentation":"<p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see <a href=\"https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Run_Instance_Idempotency.html\">Ensuring idempotency</a>.</p>",
"idempotencyToken":true
}
}
},
Expand All @@ -13819,6 +13825,11 @@
"shape":"NetworkAcl",
"documentation":"<p>Information about the network ACL.</p>",
"locationName":"networkAcl"
},
"ClientToken":{
"shape":"String",
"documentation":"<p>Unique, case-sensitive identifier to ensure the idempotency of the request. Only returned if a client token was provided in the request.</p>",
"locationName":"clientToken"
}
}
},
Expand Down Expand Up @@ -14384,6 +14395,11 @@
"shape":"TagSpecificationList",
"documentation":"<p>The tags to assign to the route table.</p>",
"locationName":"TagSpecification"
},
"ClientToken":{
"shape":"String",
"documentation":"<p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see <a href=\"https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Run_Instance_Idempotency.html\">Ensuring idempotency</a>.</p>",
"idempotencyToken":true
}
}
},
Expand All @@ -14394,6 +14410,11 @@
"shape":"RouteTable",
"documentation":"<p>Information about the route table.</p>",
"locationName":"routeTable"
},
"ClientToken":{
"shape":"String",
"documentation":"<p>Unique, case-sensitive identifier to ensure the idempotency of the request. Only returned if a client token was provided in the request.</p>",
"locationName":"clientToken"
}
}
},
Expand Down Expand Up @@ -54690,7 +54711,8 @@
"type":"string",
"enum":[
"pending",
"available"
"available",
"unavailable"
]
},
"Subscription":{
Expand Down
Loading

0 comments on commit e7c5b6a

Please sign in to comment.