aws-sdk 2.1157.0 → 2.1158.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +5 -1
- package/README.md +1 -1
- package/apis/ds-2015-04-16.min.json +78 -0
- package/apis/outposts-2019-12-03.min.json +8 -0
- package/clients/directoryservice.d.ts +124 -1
- package/clients/kafka.d.ts +1 -1
- package/clients/outposts.d.ts +11 -0
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +3 -3
- package/dist/aws-sdk.js +3 -3
- package/dist/aws-sdk.min.js +2 -2
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
|
2
|
-
<!--LATEST=2.
|
|
2
|
+
<!--LATEST=2.1158.0-->
|
|
3
3
|
<!--ENTRYINSERT-->
|
|
4
4
|
|
|
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
|
+
|
|
5
9
|
## 2.1157.0
|
|
6
10
|
* 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.
|
|
7
11
|
* feature: ConnectCampaigns: Added Amazon Connect high volume outbound communications SDK.
|
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
|
|
|
29
29
|
To use the SDK in the browser, simply add the following script tag to your
|
|
30
30
|
HTML pages:
|
|
31
31
|
|
|
32
|
-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.
|
|
32
|
+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1158.0.min.js"></script>
|
|
33
33
|
|
|
34
34
|
You can also build a custom browser SDK with your specified set of AWS services.
|
|
35
35
|
This can allow you to reduce the SDK's size, specify different API versions of
|
|
@@ -868,6 +868,52 @@
|
|
|
868
868
|
}
|
|
869
869
|
}
|
|
870
870
|
},
|
|
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
|
+
},
|
|
871
917
|
"DescribeSharedDirectories": {
|
|
872
918
|
"input": {
|
|
873
919
|
"type": "structure",
|
|
@@ -1660,6 +1706,38 @@
|
|
|
1660
1706
|
"members": {}
|
|
1661
1707
|
}
|
|
1662
1708
|
},
|
|
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
|
+
},
|
|
1663
1741
|
"UpdateTrust": {
|
|
1664
1742
|
"input": {
|
|
1665
1743
|
"type": "structure",
|
|
@@ -243,6 +243,14 @@ declare class DirectoryService extends Service {
|
|
|
243
243
|
* Provides information about the Regions that are configured for multi-Region replication.
|
|
244
244
|
*/
|
|
245
245
|
describeRegions(callback?: (err: AWSError, data: DirectoryService.Types.DescribeRegionsResult) => void): Request<DirectoryService.Types.DescribeRegionsResult, AWSError>;
|
|
246
|
+
/**
|
|
247
|
+
* Retrieves information about the configurable settings for the specified directory.
|
|
248
|
+
*/
|
|
249
|
+
describeSettings(params: DirectoryService.Types.DescribeSettingsRequest, callback?: (err: AWSError, data: DirectoryService.Types.DescribeSettingsResult) => void): Request<DirectoryService.Types.DescribeSettingsResult, AWSError>;
|
|
250
|
+
/**
|
|
251
|
+
* Retrieves information about the configurable settings for the specified directory.
|
|
252
|
+
*/
|
|
253
|
+
describeSettings(callback?: (err: AWSError, data: DirectoryService.Types.DescribeSettingsResult) => void): Request<DirectoryService.Types.DescribeSettingsResult, AWSError>;
|
|
246
254
|
/**
|
|
247
255
|
* Returns the shared directories in your account.
|
|
248
256
|
*/
|
|
@@ -499,6 +507,14 @@ declare class DirectoryService extends Service {
|
|
|
499
507
|
* Updates the Remote Authentication Dial In User Service (RADIUS) server information for an AD Connector or Microsoft AD directory.
|
|
500
508
|
*/
|
|
501
509
|
updateRadius(callback?: (err: AWSError, data: DirectoryService.Types.UpdateRadiusResult) => void): Request<DirectoryService.Types.UpdateRadiusResult, AWSError>;
|
|
510
|
+
/**
|
|
511
|
+
* Updates the configurable settings for the specified directory.
|
|
512
|
+
*/
|
|
513
|
+
updateSettings(params: DirectoryService.Types.UpdateSettingsRequest, callback?: (err: AWSError, data: DirectoryService.Types.UpdateSettingsResult) => void): Request<DirectoryService.Types.UpdateSettingsResult, AWSError>;
|
|
514
|
+
/**
|
|
515
|
+
* Updates the configurable settings for the specified directory.
|
|
516
|
+
*/
|
|
517
|
+
updateSettings(callback?: (err: AWSError, data: DirectoryService.Types.UpdateSettingsResult) => void): Request<DirectoryService.Types.UpdateSettingsResult, AWSError>;
|
|
502
518
|
/**
|
|
503
519
|
* Updates the trust that has been set up between your Managed Microsoft AD directory and an self-managed Active Directory.
|
|
504
520
|
*/
|
|
@@ -684,7 +700,7 @@ declare namespace DirectoryService {
|
|
|
684
700
|
}
|
|
685
701
|
export type ClientAuthenticationSettingsInfo = ClientAuthenticationSettingInfo[];
|
|
686
702
|
export type ClientAuthenticationStatus = "Enabled"|"Disabled"|string;
|
|
687
|
-
export type ClientAuthenticationType = "SmartCard"|string;
|
|
703
|
+
export type ClientAuthenticationType = "SmartCard"|"SmartCardOrPassword"|string;
|
|
688
704
|
export interface ClientCertAuthSettings {
|
|
689
705
|
/**
|
|
690
706
|
* Specifies the URL of the default OCSP server used to check for revocation status. A secondary value to any OCSP address found in the AIA extension of the user certificate.
|
|
@@ -1230,6 +1246,34 @@ declare namespace DirectoryService {
|
|
|
1230
1246
|
*/
|
|
1231
1247
|
NextToken?: NextToken;
|
|
1232
1248
|
}
|
|
1249
|
+
export interface DescribeSettingsRequest {
|
|
1250
|
+
/**
|
|
1251
|
+
* The identifier of the directory for which to retrieve information.
|
|
1252
|
+
*/
|
|
1253
|
+
DirectoryId: DirectoryId;
|
|
1254
|
+
/**
|
|
1255
|
+
* The status of the directory settings for which to retrieve information.
|
|
1256
|
+
*/
|
|
1257
|
+
Status?: DirectoryConfigurationStatus;
|
|
1258
|
+
/**
|
|
1259
|
+
* The DescribeSettingsResult.NextToken value from a previous call to DescribeSettings. Pass null if this is the first call.
|
|
1260
|
+
*/
|
|
1261
|
+
NextToken?: NextToken;
|
|
1262
|
+
}
|
|
1263
|
+
export interface DescribeSettingsResult {
|
|
1264
|
+
/**
|
|
1265
|
+
* The identifier of the directory.
|
|
1266
|
+
*/
|
|
1267
|
+
DirectoryId?: DirectoryId;
|
|
1268
|
+
/**
|
|
1269
|
+
* The list of SettingEntry objects that were retrieved. It is possible that this list contains less than the number of items specified in the Limit member of the request. This occurs if there are less than the requested number of items left to retrieve, or if the limitations of the operation have been exceeded.
|
|
1270
|
+
*/
|
|
1271
|
+
SettingEntries?: SettingEntries;
|
|
1272
|
+
/**
|
|
1273
|
+
* If not null, token that indicates that more results are available. Pass this value for the NextToken parameter in a subsequent call to DescribeSettings to retrieve the next set of items.
|
|
1274
|
+
*/
|
|
1275
|
+
NextToken?: NextToken;
|
|
1276
|
+
}
|
|
1233
1277
|
export interface DescribeSharedDirectoriesRequest {
|
|
1234
1278
|
/**
|
|
1235
1279
|
* Returns the identifier of the directory in the directory owner account.
|
|
@@ -1316,6 +1360,15 @@ declare namespace DirectoryService {
|
|
|
1316
1360
|
}
|
|
1317
1361
|
export type Description = string;
|
|
1318
1362
|
export type DesiredNumberOfDomainControllers = number;
|
|
1363
|
+
export type DirectoryConfigurationSettingAllowedValues = string;
|
|
1364
|
+
export type DirectoryConfigurationSettingLastRequestedDateTime = Date;
|
|
1365
|
+
export type DirectoryConfigurationSettingLastUpdatedDateTime = Date;
|
|
1366
|
+
export type DirectoryConfigurationSettingName = string;
|
|
1367
|
+
export type DirectoryConfigurationSettingRequestDetailedStatus = {[key: string]: DirectoryConfigurationStatus};
|
|
1368
|
+
export type DirectoryConfigurationSettingRequestStatusMessage = string;
|
|
1369
|
+
export type DirectoryConfigurationSettingType = string;
|
|
1370
|
+
export type DirectoryConfigurationSettingValue = string;
|
|
1371
|
+
export type DirectoryConfigurationStatus = "Requested"|"Updating"|"Updated"|"Failed"|"Default"|string;
|
|
1319
1372
|
export interface DirectoryConnectSettings {
|
|
1320
1373
|
/**
|
|
1321
1374
|
* The identifier of the VPC in which the AD Connector is created.
|
|
@@ -2199,6 +2252,60 @@ declare namespace DirectoryService {
|
|
|
2199
2252
|
export type SelectiveAuth = "Enabled"|"Disabled"|string;
|
|
2200
2253
|
export type Server = string;
|
|
2201
2254
|
export type Servers = Server[];
|
|
2255
|
+
export interface Setting {
|
|
2256
|
+
/**
|
|
2257
|
+
* The name of the directory setting. For example: TLS_1_0
|
|
2258
|
+
*/
|
|
2259
|
+
Name: DirectoryConfigurationSettingName;
|
|
2260
|
+
/**
|
|
2261
|
+
* The value of the directory setting for which to retrieve information. For example, for TLS_1_0, the valid values are: Enable and Disable.
|
|
2262
|
+
*/
|
|
2263
|
+
Value: DirectoryConfigurationSettingValue;
|
|
2264
|
+
}
|
|
2265
|
+
export type SettingEntries = SettingEntry[];
|
|
2266
|
+
export interface SettingEntry {
|
|
2267
|
+
/**
|
|
2268
|
+
* The type of directory setting. For example, Protocol or Cipher.
|
|
2269
|
+
*/
|
|
2270
|
+
Type?: DirectoryConfigurationSettingType;
|
|
2271
|
+
/**
|
|
2272
|
+
* The name of the directory setting. For example: TLS_1_0
|
|
2273
|
+
*/
|
|
2274
|
+
Name?: DirectoryConfigurationSettingName;
|
|
2275
|
+
/**
|
|
2276
|
+
* The valid range of values for the directory setting.
|
|
2277
|
+
*/
|
|
2278
|
+
AllowedValues?: DirectoryConfigurationSettingAllowedValues;
|
|
2279
|
+
/**
|
|
2280
|
+
* The value of the directory setting that is applied to the directory.
|
|
2281
|
+
*/
|
|
2282
|
+
AppliedValue?: DirectoryConfigurationSettingValue;
|
|
2283
|
+
/**
|
|
2284
|
+
* The value that was last requested for the directory setting.
|
|
2285
|
+
*/
|
|
2286
|
+
RequestedValue?: DirectoryConfigurationSettingValue;
|
|
2287
|
+
/**
|
|
2288
|
+
* The overall status of the request to update the directory setting request. If the directory setting is deployed in more than one region, and the request fails in any region, the overall status is Failed.
|
|
2289
|
+
*/
|
|
2290
|
+
RequestStatus?: DirectoryConfigurationStatus;
|
|
2291
|
+
/**
|
|
2292
|
+
* Details about the status of the request to update the directory setting. If the directory setting is deployed in more than one region, status is returned for the request in each region where the setting is deployed.
|
|
2293
|
+
*/
|
|
2294
|
+
RequestDetailedStatus?: DirectoryConfigurationSettingRequestDetailedStatus;
|
|
2295
|
+
/**
|
|
2296
|
+
* The last status message for the directory status request.
|
|
2297
|
+
*/
|
|
2298
|
+
RequestStatusMessage?: DirectoryConfigurationSettingRequestStatusMessage;
|
|
2299
|
+
/**
|
|
2300
|
+
* The date and time when the directory setting was last updated.
|
|
2301
|
+
*/
|
|
2302
|
+
LastUpdatedDateTime?: DirectoryConfigurationSettingLastUpdatedDateTime;
|
|
2303
|
+
/**
|
|
2304
|
+
* The date and time when the request to update a directory setting was last submitted.
|
|
2305
|
+
*/
|
|
2306
|
+
LastRequestedDateTime?: DirectoryConfigurationSettingLastRequestedDateTime;
|
|
2307
|
+
}
|
|
2308
|
+
export type Settings = Setting[];
|
|
2202
2309
|
export interface ShareDirectoryRequest {
|
|
2203
2310
|
/**
|
|
2204
2311
|
* Identifier of the Managed Microsoft AD directory that you want to share with other Amazon Web Services accounts.
|
|
@@ -2493,6 +2600,22 @@ declare namespace DirectoryService {
|
|
|
2493
2600
|
export interface UpdateRadiusResult {
|
|
2494
2601
|
}
|
|
2495
2602
|
export type UpdateSecurityGroupForDirectoryControllers = boolean;
|
|
2603
|
+
export interface UpdateSettingsRequest {
|
|
2604
|
+
/**
|
|
2605
|
+
* The identifier of the directory for which to update settings.
|
|
2606
|
+
*/
|
|
2607
|
+
DirectoryId: DirectoryId;
|
|
2608
|
+
/**
|
|
2609
|
+
* The list of Setting objects.
|
|
2610
|
+
*/
|
|
2611
|
+
Settings: Settings;
|
|
2612
|
+
}
|
|
2613
|
+
export interface UpdateSettingsResult {
|
|
2614
|
+
/**
|
|
2615
|
+
* The identifier of the directory.
|
|
2616
|
+
*/
|
|
2617
|
+
DirectoryId?: DirectoryId;
|
|
2618
|
+
}
|
|
2496
2619
|
export interface UpdateTrustRequest {
|
|
2497
2620
|
/**
|
|
2498
2621
|
* Identifier of the trust relationship.
|
package/clients/kafka.d.ts
CHANGED
|
@@ -491,7 +491,7 @@ declare namespace Kafka {
|
|
|
491
491
|
BrokerAZDistribution?: BrokerAZDistribution;
|
|
492
492
|
/**
|
|
493
493
|
*
|
|
494
|
-
The list of subnets to connect to in the client virtual private cloud (VPC). AWS creates elastic network interfaces inside these subnets. Client applications use elastic network interfaces to produce and consume data. Client subnets can't
|
|
494
|
+
The list of subnets to connect to in the client virtual private cloud (VPC). AWS creates elastic network interfaces inside these subnets. Client applications use elastic network interfaces to produce and consume data. Client subnets can't occupy the Availability Zone with ID use use1-az3.
|
|
495
495
|
|
|
496
496
|
*/
|
|
497
497
|
ClientSubnets: __listOf__string;
|
package/clients/outposts.d.ts
CHANGED
|
@@ -291,8 +291,18 @@ declare namespace Outposts {
|
|
|
291
291
|
* Information about compute hardware assets.
|
|
292
292
|
*/
|
|
293
293
|
ComputeAttributes?: ComputeAttributes;
|
|
294
|
+
/**
|
|
295
|
+
* The position of an asset in a rack.
|
|
296
|
+
*/
|
|
297
|
+
AssetLocation?: AssetLocation;
|
|
294
298
|
}
|
|
295
299
|
export type AssetListDefinition = AssetInfo[];
|
|
300
|
+
export interface AssetLocation {
|
|
301
|
+
/**
|
|
302
|
+
* The position of an asset in a rack measured in rack units.
|
|
303
|
+
*/
|
|
304
|
+
RackElevation?: RackElevation;
|
|
305
|
+
}
|
|
296
306
|
export type AssetType = "COMPUTE"|string;
|
|
297
307
|
export type AvailabilityZone = string;
|
|
298
308
|
export type AvailabilityZoneId = string;
|
|
@@ -845,6 +855,7 @@ declare namespace Outposts {
|
|
|
845
855
|
export type PowerFeedDrop = "ABOVE_RACK"|"BELOW_RACK"|string;
|
|
846
856
|
export type PowerPhase = "SINGLE_PHASE"|"THREE_PHASE"|string;
|
|
847
857
|
export type Quantity = string;
|
|
858
|
+
export type RackElevation = number;
|
|
848
859
|
export type RackId = string;
|
|
849
860
|
export interface RackPhysicalProperties {
|
|
850
861
|
/**
|