Skip to content

Commit

Permalink
Merge branch 'release-1.35.22' into develop
Browse files Browse the repository at this point in the history
* release-1.35.22:
  Bumping version to 1.35.22
  Update to latest models
  Merge customizations for Directory Service Data
  • Loading branch information
aws-sdk-python-automation committed Sep 18, 2024
2 parents cdda202 + f3f7252 commit 0cce05f
Show file tree
Hide file tree
Showing 16 changed files with 2,819 additions and 102 deletions.
37 changes: 37 additions & 0 deletions .changes/1.35.22.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
[
{
"category": "``ce``",
"description": "This release extends the GetReservationPurchaseRecommendation API to support recommendations for Amazon DynamoDB reservations.",
"type": "api-change"
},
{
"category": "``ds``",
"description": "Added new APIs for enabling, disabling, and describing access to the AWS Directory Service Data API",
"type": "api-change"
},
{
"category": "``ds-data``",
"description": "Added new AWS Directory Service Data API, enabling you to manage data stored in AWS Directory Service directories. This includes APIs for creating, reading, updating, and deleting directory users, groups, and group memberships.",
"type": "api-change"
},
{
"category": "``guardduty``",
"description": "Add `launchType` and `sourceIPs` fields to GuardDuty findings.",
"type": "api-change"
},
{
"category": "``mailmanager``",
"description": "Introduce a new RuleSet condition evaluation, where customers can set up a StringExpression with a MimeHeader condition. This condition will perform the necessary validation based on the X-header provided by customers.",
"type": "api-change"
},
{
"category": "``rds``",
"description": "Updates Amazon RDS documentation with information upgrading snapshots with unsupported engine versions for RDS for MySQL and RDS for PostgreSQL.",
"type": "api-change"
},
{
"category": "``s3``",
"description": "Added SSE-KMS support for directory buckets.",
"type": "api-change"
}
]
12 changes: 12 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@
CHANGELOG
=========

1.35.22
=======

* api-change:``ce``: This release extends the GetReservationPurchaseRecommendation API to support recommendations for Amazon DynamoDB reservations.
* api-change:``ds``: Added new APIs for enabling, disabling, and describing access to the AWS Directory Service Data API
* api-change:``ds-data``: Added new AWS Directory Service Data API, enabling you to manage data stored in AWS Directory Service directories. This includes APIs for creating, reading, updating, and deleting directory users, groups, and group memberships.
* api-change:``guardduty``: Add `launchType` and `sourceIPs` fields to GuardDuty findings.
* api-change:``mailmanager``: Introduce a new RuleSet condition evaluation, where customers can set up a StringExpression with a MimeHeader condition. This condition will perform the necessary validation based on the X-header provided by customers.
* api-change:``rds``: Updates Amazon RDS documentation with information upgrading snapshots with unsupported engine versions for RDS for MySQL and RDS for PostgreSQL.
* api-change:``s3``: Added SSE-KMS support for directory buckets.


1.35.21
=======

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.35.21'
__version__ = '1.35.22'


class NullHandler(logging.Handler):
Expand Down
66 changes: 56 additions & 10 deletions botocore/data/ce/2017-10-25/service-2.json

Large diffs are not rendered by default.

350 changes: 350 additions & 0 deletions botocore/data/ds-data/2023-05-31/endpoint-rule-set-1.json

Large diffs are not rendered by default.

40 changes: 40 additions & 0 deletions botocore/data/ds-data/2023-05-31/paginators-1.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"pagination": {
"ListGroupMembers": {
"input_token": "NextToken",
"output_token": "NextToken",
"limit_key": "MaxResults",
"result_key": "Members"
},
"ListGroups": {
"input_token": "NextToken",
"output_token": "NextToken",
"limit_key": "MaxResults",
"result_key": "Groups"
},
"ListGroupsForMember": {
"input_token": "NextToken",
"output_token": "NextToken",
"limit_key": "MaxResults",
"result_key": "Groups"
},
"ListUsers": {
"input_token": "NextToken",
"output_token": "NextToken",
"limit_key": "MaxResults",
"result_key": "Users"
},
"SearchGroups": {
"input_token": "NextToken",
"output_token": "NextToken",
"limit_key": "MaxResults",
"result_key": "Groups"
},
"SearchUsers": {
"input_token": "NextToken",
"output_token": "NextToken",
"limit_key": "MaxResults",
"result_key": "Users"
}
}
}
46 changes: 46 additions & 0 deletions botocore/data/ds-data/2023-05-31/paginators-1.sdk-extras.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"version": 1.0,
"merge": {
"pagination": {
"ListGroupMembers": {
"non_aggregate_keys": [
"DirectoryId",
"MemberRealm",
"Realm"
]
},
"ListGroups": {
"non_aggregate_keys": [
"DirectoryId",
"Realm"
]
},
"ListGroupsForMember": {
"non_aggregate_keys": [
"DirectoryId",
"MemberRealm",
"Realm"
]
},
"ListUsers": {
"non_aggregate_keys": [
"DirectoryId",
"Realm"
]
},
"SearchGroups": {
"non_aggregate_keys": [
"DirectoryId",
"Realm"
]
},
"SearchUsers": {
"non_aggregate_keys": [
"DirectoryId",
"Realm"
]
}
}
}
}

Loading

0 comments on commit 0cce05f

Please sign in to comment.