Skip to content

Commit

Permalink
Updates SDK to v2.1158.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Jun 20, 2022
1 parent 4db6e76 commit 4952220
Show file tree
Hide file tree
Showing 17 changed files with 534 additions and 18 deletions.
12 changes: 12 additions & 0 deletions .changes/2.1158.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[
{
"type": "feature",
"category": "DirectoryService",
"description": "This release adds support for describing and updating AWS Managed Microsoft AD settings"
},
{
"type": "feature",
"category": "Outposts",
"description": "This release adds the AssetLocation structure to the ListAssets response. AssetLocation includes the RackElevation for an Asset."
}
]
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.1157.0-->
<!--LATEST=2.1158.0-->
<!--ENTRYINSERT-->

## 2.1158.0
* feature: DirectoryService: This release adds support for describing and updating AWS Managed Microsoft AD settings
* feature: Outposts: This release adds the AssetLocation structure to the ListAssets response. AssetLocation includes the RackElevation for an Asset.

## 2.1157.0
* feature: Connect: This release updates these APIs: UpdateInstanceAttribute, DescribeInstanceAttribute and ListInstanceAttributes. You can use it to programmatically enable/disable High volume outbound communications using attribute type HIGH_VOLUME_OUTBOUND on the specified Amazon Connect instance.
* feature: ConnectCampaigns: Added Amazon Connect high volume outbound communications SDK.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
To use the SDK in the browser, simply add the following script tag to your
HTML pages:

<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1157.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1158.0.min.js"></script>

You can also build a custom browser SDK with your specified set of AWS services.
This can allow you to reduce the SDK's size, specify different API versions of
Expand Down
78 changes: 78 additions & 0 deletions apis/ds-2015-04-16.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -868,6 +868,52 @@
}
}
},
"DescribeSettings": {
"input": {
"type": "structure",
"required": [
"DirectoryId"
],
"members": {
"DirectoryId": {},
"Status": {},
"NextToken": {}
}
},
"output": {
"type": "structure",
"members": {
"DirectoryId": {},
"SettingEntries": {
"type": "list",
"member": {
"type": "structure",
"members": {
"Type": {},
"Name": {},
"AllowedValues": {},
"AppliedValue": {},
"RequestedValue": {},
"RequestStatus": {},
"RequestDetailedStatus": {
"type": "map",
"key": {},
"value": {}
},
"RequestStatusMessage": {},
"LastUpdatedDateTime": {
"type": "timestamp"
},
"LastRequestedDateTime": {
"type": "timestamp"
}
}
}
},
"NextToken": {}
}
}
},
"DescribeSharedDirectories": {
"input": {
"type": "structure",
Expand Down Expand Up @@ -1660,6 +1706,38 @@
"members": {}
}
},
"UpdateSettings": {
"input": {
"type": "structure",
"required": [
"DirectoryId",
"Settings"
],
"members": {
"DirectoryId": {},
"Settings": {
"type": "list",
"member": {
"type": "structure",
"required": [
"Name",
"Value"
],
"members": {
"Name": {},
"Value": {}
}
}
}
}
},
"output": {
"type": "structure",
"members": {
"DirectoryId": {}
}
}
},
"UpdateTrust": {
"input": {
"type": "structure",
Expand Down
Loading

0 comments on commit 4952220

Please sign in to comment.