-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release-1.35.22' into develop
* release-1.35.22: Bumping version to 1.35.22 Update to latest models Merge customizations for Directory Service Data
- Loading branch information
Showing
16 changed files
with
2,819 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
350 changes: 350 additions & 0 deletions
350
botocore/data/ds-data/2023-05-31/endpoint-rule-set-1.json
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
46
botocore/data/ds-data/2023-05-31/paginators-1.sdk-extras.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
] | ||
} | ||
} | ||
} | ||
} | ||
|
Oops, something went wrong.