Skip to content

Commit 4952220

Browse files
author
awstools
committed
Updates SDK to v2.1158.0
1 parent 4db6e76 commit 4952220

17 files changed

+534
-18
lines changed

.changes/2.1158.0.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[
2+
{
3+
"type": "feature",
4+
"category": "DirectoryService",
5+
"description": "This release adds support for describing and updating AWS Managed Microsoft AD settings"
6+
},
7+
{
8+
"type": "feature",
9+
"category": "Outposts",
10+
"description": "This release adds the AssetLocation structure to the ListAssets response. AssetLocation includes the RackElevation for an Asset."
11+
}
12+
]

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
# Changelog for AWS SDK for JavaScript
2-
<!--LATEST=2.1157.0-->
2+
<!--LATEST=2.1158.0-->
33
<!--ENTRYINSERT-->
44

5+
## 2.1158.0
6+
* feature: DirectoryService: This release adds support for describing and updating AWS Managed Microsoft AD settings
7+
* feature: Outposts: This release adds the AssetLocation structure to the ListAssets response. AssetLocation includes the RackElevation for an Asset.
8+
59
## 2.1157.0
610
* 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.
711
* feature: ConnectCampaigns: Added Amazon Connect high volume outbound communications SDK.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
2929
To use the SDK in the browser, simply add the following script tag to your
3030
HTML pages:
3131

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

3434
You can also build a custom browser SDK with your specified set of AWS services.
3535
This can allow you to reduce the SDK's size, specify different API versions of

apis/ds-2015-04-16.min.json

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -868,6 +868,52 @@
868868
}
869869
}
870870
},
871+
"DescribeSettings": {
872+
"input": {
873+
"type": "structure",
874+
"required": [
875+
"DirectoryId"
876+
],
877+
"members": {
878+
"DirectoryId": {},
879+
"Status": {},
880+
"NextToken": {}
881+
}
882+
},
883+
"output": {
884+
"type": "structure",
885+
"members": {
886+
"DirectoryId": {},
887+
"SettingEntries": {
888+
"type": "list",
889+
"member": {
890+
"type": "structure",
891+
"members": {
892+
"Type": {},
893+
"Name": {},
894+
"AllowedValues": {},
895+
"AppliedValue": {},
896+
"RequestedValue": {},
897+
"RequestStatus": {},
898+
"RequestDetailedStatus": {
899+
"type": "map",
900+
"key": {},
901+
"value": {}
902+
},
903+
"RequestStatusMessage": {},
904+
"LastUpdatedDateTime": {
905+
"type": "timestamp"
906+
},
907+
"LastRequestedDateTime": {
908+
"type": "timestamp"
909+
}
910+
}
911+
}
912+
},
913+
"NextToken": {}
914+
}
915+
}
916+
},
871917
"DescribeSharedDirectories": {
872918
"input": {
873919
"type": "structure",
@@ -1660,6 +1706,38 @@
16601706
"members": {}
16611707
}
16621708
},
1709+
"UpdateSettings": {
1710+
"input": {
1711+
"type": "structure",
1712+
"required": [
1713+
"DirectoryId",
1714+
"Settings"
1715+
],
1716+
"members": {
1717+
"DirectoryId": {},
1718+
"Settings": {
1719+
"type": "list",
1720+
"member": {
1721+
"type": "structure",
1722+
"required": [
1723+
"Name",
1724+
"Value"
1725+
],
1726+
"members": {
1727+
"Name": {},
1728+
"Value": {}
1729+
}
1730+
}
1731+
}
1732+
}
1733+
},
1734+
"output": {
1735+
"type": "structure",
1736+
"members": {
1737+
"DirectoryId": {}
1738+
}
1739+
}
1740+
},
16631741
"UpdateTrust": {
16641742
"input": {
16651743
"type": "structure",

0 commit comments

Comments
 (0)