@aws-sdk/client-directory-service 3.112.0 → 3.114.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 +11 -0
- package/dist-cjs/DirectoryService.js +30 -0
- package/dist-cjs/commands/DescribeSettingsCommand.js +36 -0
- package/dist-cjs/commands/UpdateSettingsCommand.js +36 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/models/models_0.js +78 -3
- package/dist-cjs/protocols/Aws_json1_1.js +247 -3
- package/dist-es/DirectoryService.js +30 -0
- package/dist-es/commands/DescribeSettingsCommand.js +39 -0
- package/dist-es/commands/UpdateSettingsCommand.js +39 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +61 -0
- package/dist-es/protocols/Aws_json1_1.js +277 -2
- package/dist-types/DirectoryService.d.ts +14 -0
- package/dist-types/DirectoryServiceClient.d.ts +4 -2
- package/dist-types/commands/DescribeSettingsCommand.d.ts +35 -0
- package/dist-types/commands/UpdateSettingsCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +195 -1
- package/dist-types/protocols/Aws_json1_1.d.ts +6 -0
- package/dist-types/ts3.4/DirectoryService.d.ts +10 -0
- package/dist-types/ts3.4/DirectoryServiceClient.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +111 -1
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +6 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.114.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.113.0...v3.114.0) (2022-06-20)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **client-directory-service:** This release adds support for describing and updating AWS Managed Microsoft AD settings ([64f990a](https://github.com/aws/aws-sdk-js-v3/commit/64f990ab6be784ac46dd5d296c0c2e0227ea7a21))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [3.112.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.111.0...v3.112.0) (2022-06-16)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @aws-sdk/client-directory-service
|
|
@@ -30,6 +30,7 @@ const DescribeDomainControllersCommand_1 = require("./commands/DescribeDomainCon
|
|
|
30
30
|
const DescribeEventTopicsCommand_1 = require("./commands/DescribeEventTopicsCommand");
|
|
31
31
|
const DescribeLDAPSSettingsCommand_1 = require("./commands/DescribeLDAPSSettingsCommand");
|
|
32
32
|
const DescribeRegionsCommand_1 = require("./commands/DescribeRegionsCommand");
|
|
33
|
+
const DescribeSettingsCommand_1 = require("./commands/DescribeSettingsCommand");
|
|
33
34
|
const DescribeSharedDirectoriesCommand_1 = require("./commands/DescribeSharedDirectoriesCommand");
|
|
34
35
|
const DescribeSnapshotsCommand_1 = require("./commands/DescribeSnapshotsCommand");
|
|
35
36
|
const DescribeTrustsCommand_1 = require("./commands/DescribeTrustsCommand");
|
|
@@ -62,6 +63,7 @@ const UnshareDirectoryCommand_1 = require("./commands/UnshareDirectoryCommand");
|
|
|
62
63
|
const UpdateConditionalForwarderCommand_1 = require("./commands/UpdateConditionalForwarderCommand");
|
|
63
64
|
const UpdateNumberOfDomainControllersCommand_1 = require("./commands/UpdateNumberOfDomainControllersCommand");
|
|
64
65
|
const UpdateRadiusCommand_1 = require("./commands/UpdateRadiusCommand");
|
|
66
|
+
const UpdateSettingsCommand_1 = require("./commands/UpdateSettingsCommand");
|
|
65
67
|
const UpdateTrustCommand_1 = require("./commands/UpdateTrustCommand");
|
|
66
68
|
const VerifyTrustCommand_1 = require("./commands/VerifyTrustCommand");
|
|
67
69
|
const DirectoryServiceClient_1 = require("./DirectoryServiceClient");
|
|
@@ -472,6 +474,20 @@ class DirectoryService extends DirectoryServiceClient_1.DirectoryServiceClient {
|
|
|
472
474
|
return this.send(command, optionsOrCb);
|
|
473
475
|
}
|
|
474
476
|
}
|
|
477
|
+
describeSettings(args, optionsOrCb, cb) {
|
|
478
|
+
const command = new DescribeSettingsCommand_1.DescribeSettingsCommand(args);
|
|
479
|
+
if (typeof optionsOrCb === "function") {
|
|
480
|
+
this.send(command, optionsOrCb);
|
|
481
|
+
}
|
|
482
|
+
else if (typeof cb === "function") {
|
|
483
|
+
if (typeof optionsOrCb !== "object")
|
|
484
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
485
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
486
|
+
}
|
|
487
|
+
else {
|
|
488
|
+
return this.send(command, optionsOrCb);
|
|
489
|
+
}
|
|
490
|
+
}
|
|
475
491
|
describeSharedDirectories(args, optionsOrCb, cb) {
|
|
476
492
|
const command = new DescribeSharedDirectoriesCommand_1.DescribeSharedDirectoriesCommand(args);
|
|
477
493
|
if (typeof optionsOrCb === "function") {
|
|
@@ -920,6 +936,20 @@ class DirectoryService extends DirectoryServiceClient_1.DirectoryServiceClient {
|
|
|
920
936
|
return this.send(command, optionsOrCb);
|
|
921
937
|
}
|
|
922
938
|
}
|
|
939
|
+
updateSettings(args, optionsOrCb, cb) {
|
|
940
|
+
const command = new UpdateSettingsCommand_1.UpdateSettingsCommand(args);
|
|
941
|
+
if (typeof optionsOrCb === "function") {
|
|
942
|
+
this.send(command, optionsOrCb);
|
|
943
|
+
}
|
|
944
|
+
else if (typeof cb === "function") {
|
|
945
|
+
if (typeof optionsOrCb !== "object")
|
|
946
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
947
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
948
|
+
}
|
|
949
|
+
else {
|
|
950
|
+
return this.send(command, optionsOrCb);
|
|
951
|
+
}
|
|
952
|
+
}
|
|
923
953
|
updateTrust(args, optionsOrCb, cb) {
|
|
924
954
|
const command = new UpdateTrustCommand_1.UpdateTrustCommand(args);
|
|
925
955
|
if (typeof optionsOrCb === "function") {
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DescribeSettingsCommand = void 0;
|
|
4
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
+
const models_0_1 = require("../models/models_0");
|
|
7
|
+
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
8
|
+
class DescribeSettingsCommand extends smithy_client_1.Command {
|
|
9
|
+
constructor(input) {
|
|
10
|
+
super();
|
|
11
|
+
this.input = input;
|
|
12
|
+
}
|
|
13
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
const { logger } = configuration;
|
|
17
|
+
const clientName = "DirectoryServiceClient";
|
|
18
|
+
const commandName = "DescribeSettingsCommand";
|
|
19
|
+
const handlerExecutionContext = {
|
|
20
|
+
logger,
|
|
21
|
+
clientName,
|
|
22
|
+
commandName,
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.DescribeSettingsRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.DescribeSettingsResult.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
const { requestHandler } = configuration;
|
|
27
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
|
+
}
|
|
29
|
+
serialize(input, context) {
|
|
30
|
+
return (0, Aws_json1_1_1.serializeAws_json1_1DescribeSettingsCommand)(input, context);
|
|
31
|
+
}
|
|
32
|
+
deserialize(output, context) {
|
|
33
|
+
return (0, Aws_json1_1_1.deserializeAws_json1_1DescribeSettingsCommand)(output, context);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
exports.DescribeSettingsCommand = DescribeSettingsCommand;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UpdateSettingsCommand = void 0;
|
|
4
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
+
const models_0_1 = require("../models/models_0");
|
|
7
|
+
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
8
|
+
class UpdateSettingsCommand extends smithy_client_1.Command {
|
|
9
|
+
constructor(input) {
|
|
10
|
+
super();
|
|
11
|
+
this.input = input;
|
|
12
|
+
}
|
|
13
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
const { logger } = configuration;
|
|
17
|
+
const clientName = "DirectoryServiceClient";
|
|
18
|
+
const commandName = "UpdateSettingsCommand";
|
|
19
|
+
const handlerExecutionContext = {
|
|
20
|
+
logger,
|
|
21
|
+
clientName,
|
|
22
|
+
commandName,
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.UpdateSettingsRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.UpdateSettingsResult.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
const { requestHandler } = configuration;
|
|
27
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
|
+
}
|
|
29
|
+
serialize(input, context) {
|
|
30
|
+
return (0, Aws_json1_1_1.serializeAws_json1_1UpdateSettingsCommand)(input, context);
|
|
31
|
+
}
|
|
32
|
+
deserialize(output, context) {
|
|
33
|
+
return (0, Aws_json1_1_1.deserializeAws_json1_1UpdateSettingsCommand)(output, context);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
exports.UpdateSettingsCommand = UpdateSettingsCommand;
|
|
@@ -30,6 +30,7 @@ tslib_1.__exportStar(require("./DescribeDomainControllersCommand"), exports);
|
|
|
30
30
|
tslib_1.__exportStar(require("./DescribeEventTopicsCommand"), exports);
|
|
31
31
|
tslib_1.__exportStar(require("./DescribeLDAPSSettingsCommand"), exports);
|
|
32
32
|
tslib_1.__exportStar(require("./DescribeRegionsCommand"), exports);
|
|
33
|
+
tslib_1.__exportStar(require("./DescribeSettingsCommand"), exports);
|
|
33
34
|
tslib_1.__exportStar(require("./DescribeSharedDirectoriesCommand"), exports);
|
|
34
35
|
tslib_1.__exportStar(require("./DescribeSnapshotsCommand"), exports);
|
|
35
36
|
tslib_1.__exportStar(require("./DescribeTrustsCommand"), exports);
|
|
@@ -62,5 +63,6 @@ tslib_1.__exportStar(require("./UnshareDirectoryCommand"), exports);
|
|
|
62
63
|
tslib_1.__exportStar(require("./UpdateConditionalForwarderCommand"), exports);
|
|
63
64
|
tslib_1.__exportStar(require("./UpdateNumberOfDomainControllersCommand"), exports);
|
|
64
65
|
tslib_1.__exportStar(require("./UpdateRadiusCommand"), exports);
|
|
66
|
+
tslib_1.__exportStar(require("./UpdateSettingsCommand"), exports);
|
|
65
67
|
tslib_1.__exportStar(require("./UpdateTrustCommand"), exports);
|
|
66
68
|
tslib_1.__exportStar(require("./VerifyTrustCommand"), exports);
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.ConnectDirectoryRequest = exports.DirectorySize = exports.DirectoryConnectSettings = exports.ConditionalForwarder = exports.ReplicationScope = exports.Computer = exports.ClientAuthenticationSettingInfo = exports.ClientAuthenticationType = exports.ClientAuthenticationStatus = exports.CertificateLimitExceededException = exports.CertificateInUseException = exports.CertificateInfo = exports.CertificateDoesNotExistException = exports.CertificateAlreadyExistsException = exports.Certificate = exports.CertificateType = exports.CertificateState = exports.ClientCertAuthSettings = exports.CancelSchemaExtensionResult = exports.CancelSchemaExtensionRequest = exports.AuthenticationFailedException = exports.Attribute = exports.TagLimitExceededException = exports.AddTagsToResourceResult = exports.AddTagsToResourceRequest = exports.Tag = exports.UnsupportedOperationException = exports.RegionLimitExceededException = exports.DirectoryDoesNotExistException = exports.DirectoryAlreadyInRegionException = exports.AddRegionResult = exports.AddRegionRequest = exports.DirectoryVpcSettings = exports.IpRouteLimitExceededException = exports.EntityAlreadyExistsException = exports.DirectoryUnavailableException = exports.AddIpRoutesResult = exports.AddIpRoutesRequest = exports.IpRoute = exports.AccessDeniedException = exports.ServiceException = exports.InvalidParameterException = exports.EntityDoesNotExistException = exports.DirectoryAlreadySharedException = exports.ClientException = exports.AcceptSharedDirectoryResult = exports.SharedDirectory = exports.ShareStatus = exports.ShareMethod = exports.AcceptSharedDirectoryRequest = void 0;
|
|
4
4
|
exports.DirectoryVpcSettingsDescription = exports.RadiusStatus = exports.RadiusSettings = exports.RadiusAuthenticationProtocol = exports.DirectoryConnectSettingsDescription = exports.DescribeDirectoriesRequest = exports.DescribeConditionalForwardersResult = exports.DescribeConditionalForwardersRequest = exports.DescribeClientAuthenticationSettingsResult = exports.DescribeClientAuthenticationSettingsRequest = exports.DescribeCertificateResult = exports.DescribeCertificateRequest = exports.DeregisterEventTopicResult = exports.DeregisterEventTopicRequest = exports.DeregisterCertificateResult = exports.DeregisterCertificateRequest = exports.DeleteTrustResult = exports.DeleteTrustRequest = exports.DeleteSnapshotResult = exports.DeleteSnapshotRequest = exports.DeleteLogSubscriptionResult = exports.DeleteLogSubscriptionRequest = exports.DeleteDirectoryResult = exports.DeleteDirectoryRequest = exports.DeleteConditionalForwarderResult = exports.DeleteConditionalForwarderRequest = exports.CreateTrustResult = exports.CreateTrustRequest = exports.TrustType = exports.TrustDirection = exports.SelectiveAuth = exports.SnapshotLimitExceededException = exports.CreateSnapshotResult = exports.CreateSnapshotRequest = exports.CreateMicrosoftADResult = exports.CreateMicrosoftADRequest = exports.DirectoryEdition = exports.InsufficientPermissionsException = exports.CreateLogSubscriptionResult = exports.CreateLogSubscriptionRequest = exports.CreateDirectoryResult = exports.CreateDirectoryRequest = exports.CreateConditionalForwarderResult = exports.CreateConditionalForwarderRequest = exports.CreateComputerResult = exports.CreateComputerRequest = exports.CreateAliasResult = exports.CreateAliasRequest = exports.DirectoryLimitExceededException = exports.ConnectDirectoryResult = void 0;
|
|
5
|
-
exports.
|
|
6
|
-
exports.
|
|
7
|
-
exports.VerifyTrustResult = exports.VerifyTrustRequest = exports.UpdateTrustResult = exports.UpdateTrustRequest = exports.UpdateRadiusResult = exports.UpdateRadiusRequest = exports.UpdateNumberOfDomainControllersResult = exports.UpdateNumberOfDomainControllersRequest = exports.DomainControllerLimitExceededException = exports.UpdateConditionalForwarderResult = exports.UpdateConditionalForwarderRequest = exports.UnshareDirectoryResult = exports.UnshareDirectoryRequest = exports.UnshareTarget = exports.StartSchemaExtensionResult = exports.StartSchemaExtensionRequest = exports.ShareLimitExceededException = exports.ShareDirectoryResult = void 0;
|
|
5
|
+
exports.DisableSsoRequest = exports.DisableRadiusResult = exports.DisableRadiusRequest = exports.InvalidLDAPSStatusException = exports.DisableLDAPSResult = exports.DisableLDAPSRequest = exports.InvalidClientAuthStatusException = exports.DisableClientAuthenticationResult = exports.DisableClientAuthenticationRequest = exports.DirectoryNotSharedException = exports.DirectoryLimits = exports.DescribeTrustsResult = exports.Trust = exports.TrustState = exports.DescribeTrustsRequest = exports.DescribeSnapshotsResult = exports.Snapshot = exports.SnapshotType = exports.SnapshotStatus = exports.DescribeSnapshotsRequest = exports.DescribeSharedDirectoriesResult = exports.DescribeSharedDirectoriesRequest = exports.DescribeSettingsResult = exports.SettingEntry = exports.DescribeSettingsRequest = exports.DirectoryConfigurationStatus = exports.DescribeRegionsResult = exports.RegionDescription = exports.RegionType = exports.DescribeRegionsRequest = exports.DescribeLDAPSSettingsResult = exports.LDAPSSettingInfo = exports.LDAPSStatus = exports.DescribeLDAPSSettingsRequest = exports.LDAPSType = exports.DescribeEventTopicsResult = exports.EventTopic = exports.TopicStatus = exports.DescribeEventTopicsRequest = exports.DescribeDomainControllersResult = exports.DomainController = exports.DomainControllerStatus = exports.DescribeDomainControllersRequest = exports.InvalidNextTokenException = exports.DescribeDirectoriesResult = exports.DirectoryDescription = exports.DirectoryType = exports.DirectoryStage = exports.RegionsInfo = exports.OwnerDirectoryDescription = void 0;
|
|
6
|
+
exports.InvalidTargetException = exports.RestoreFromSnapshotResult = exports.RestoreFromSnapshotRequest = exports.UserDoesNotExistException = exports.ResetUserPasswordResult = exports.ResetUserPasswordRequest = exports.InvalidPasswordException = exports.RemoveTagsFromResourceResult = exports.RemoveTagsFromResourceRequest = exports.RemoveRegionResult = exports.RemoveRegionRequest = exports.RemoveIpRoutesResult = exports.RemoveIpRoutesRequest = exports.RejectSharedDirectoryResult = exports.RejectSharedDirectoryRequest = exports.RegisterEventTopicResult = exports.RegisterEventTopicRequest = exports.RegisterCertificateResult = exports.RegisterCertificateRequest = exports.InvalidCertificateException = exports.ListTagsForResourceResult = exports.ListTagsForResourceRequest = exports.ListSchemaExtensionsResult = exports.SchemaExtensionInfo = exports.SchemaExtensionStatus = exports.ListSchemaExtensionsRequest = exports.ListLogSubscriptionsResult = exports.LogSubscription = exports.ListLogSubscriptionsRequest = exports.ListIpRoutesResult = exports.IpRouteInfo = exports.IpRouteStatusMsg = exports.ListIpRoutesRequest = exports.ListCertificatesResult = exports.ListCertificatesRequest = exports.GetSnapshotLimitsResult = exports.SnapshotLimits = exports.GetSnapshotLimitsRequest = exports.GetDirectoryLimitsResult = exports.GetDirectoryLimitsRequest = exports.EnableSsoResult = exports.EnableSsoRequest = exports.EnableRadiusResult = exports.EnableRadiusRequest = exports.EnableLDAPSResult = exports.EnableLDAPSRequest = exports.NoAvailableCertificateException = exports.EnableClientAuthenticationResult = exports.EnableClientAuthenticationRequest = exports.DisableSsoResult = void 0;
|
|
7
|
+
exports.VerifyTrustResult = exports.VerifyTrustRequest = exports.UpdateTrustResult = exports.UpdateTrustRequest = exports.UpdateSettingsResult = exports.UpdateSettingsRequest = exports.Setting = exports.UnsupportedSettingsException = exports.IncompatibleSettingsException = exports.UpdateRadiusResult = exports.UpdateRadiusRequest = exports.UpdateNumberOfDomainControllersResult = exports.UpdateNumberOfDomainControllersRequest = exports.DomainControllerLimitExceededException = exports.UpdateConditionalForwarderResult = exports.UpdateConditionalForwarderRequest = exports.UnshareDirectoryResult = exports.UnshareDirectoryRequest = exports.UnshareTarget = exports.StartSchemaExtensionResult = exports.StartSchemaExtensionRequest = exports.ShareLimitExceededException = exports.ShareDirectoryResult = exports.ShareDirectoryRequest = exports.ShareTarget = exports.TargetType = exports.OrganizationsException = void 0;
|
|
8
8
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
9
9
|
const DirectoryServiceServiceException_1 = require("./DirectoryServiceServiceException");
|
|
10
10
|
var AcceptSharedDirectoryRequest;
|
|
@@ -441,6 +441,7 @@ var ClientAuthenticationStatus;
|
|
|
441
441
|
var ClientAuthenticationType;
|
|
442
442
|
(function (ClientAuthenticationType) {
|
|
443
443
|
ClientAuthenticationType["SMART_CARD"] = "SmartCard";
|
|
444
|
+
ClientAuthenticationType["SMART_CARD_OR_PASSWORD"] = "SmartCardOrPassword";
|
|
444
445
|
})(ClientAuthenticationType = exports.ClientAuthenticationType || (exports.ClientAuthenticationType = {}));
|
|
445
446
|
var ClientAuthenticationSettingInfo;
|
|
446
447
|
(function (ClientAuthenticationSettingInfo) {
|
|
@@ -986,6 +987,32 @@ var DescribeRegionsResult;
|
|
|
986
987
|
...obj,
|
|
987
988
|
});
|
|
988
989
|
})(DescribeRegionsResult = exports.DescribeRegionsResult || (exports.DescribeRegionsResult = {}));
|
|
990
|
+
var DirectoryConfigurationStatus;
|
|
991
|
+
(function (DirectoryConfigurationStatus) {
|
|
992
|
+
DirectoryConfigurationStatus["DEFAULT"] = "Default";
|
|
993
|
+
DirectoryConfigurationStatus["FAILED"] = "Failed";
|
|
994
|
+
DirectoryConfigurationStatus["REQUESTED"] = "Requested";
|
|
995
|
+
DirectoryConfigurationStatus["UPDATED"] = "Updated";
|
|
996
|
+
DirectoryConfigurationStatus["UPDATING"] = "Updating";
|
|
997
|
+
})(DirectoryConfigurationStatus = exports.DirectoryConfigurationStatus || (exports.DirectoryConfigurationStatus = {}));
|
|
998
|
+
var DescribeSettingsRequest;
|
|
999
|
+
(function (DescribeSettingsRequest) {
|
|
1000
|
+
DescribeSettingsRequest.filterSensitiveLog = (obj) => ({
|
|
1001
|
+
...obj,
|
|
1002
|
+
});
|
|
1003
|
+
})(DescribeSettingsRequest = exports.DescribeSettingsRequest || (exports.DescribeSettingsRequest = {}));
|
|
1004
|
+
var SettingEntry;
|
|
1005
|
+
(function (SettingEntry) {
|
|
1006
|
+
SettingEntry.filterSensitiveLog = (obj) => ({
|
|
1007
|
+
...obj,
|
|
1008
|
+
});
|
|
1009
|
+
})(SettingEntry = exports.SettingEntry || (exports.SettingEntry = {}));
|
|
1010
|
+
var DescribeSettingsResult;
|
|
1011
|
+
(function (DescribeSettingsResult) {
|
|
1012
|
+
DescribeSettingsResult.filterSensitiveLog = (obj) => ({
|
|
1013
|
+
...obj,
|
|
1014
|
+
});
|
|
1015
|
+
})(DescribeSettingsResult = exports.DescribeSettingsResult || (exports.DescribeSettingsResult = {}));
|
|
989
1016
|
var DescribeSharedDirectoriesRequest;
|
|
990
1017
|
(function (DescribeSharedDirectoriesRequest) {
|
|
991
1018
|
DescribeSharedDirectoriesRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -1648,6 +1675,54 @@ var UpdateRadiusResult;
|
|
|
1648
1675
|
...obj,
|
|
1649
1676
|
});
|
|
1650
1677
|
})(UpdateRadiusResult = exports.UpdateRadiusResult || (exports.UpdateRadiusResult = {}));
|
|
1678
|
+
class IncompatibleSettingsException extends DirectoryServiceServiceException_1.DirectoryServiceServiceException {
|
|
1679
|
+
constructor(opts) {
|
|
1680
|
+
super({
|
|
1681
|
+
name: "IncompatibleSettingsException",
|
|
1682
|
+
$fault: "client",
|
|
1683
|
+
...opts,
|
|
1684
|
+
});
|
|
1685
|
+
this.name = "IncompatibleSettingsException";
|
|
1686
|
+
this.$fault = "client";
|
|
1687
|
+
Object.setPrototypeOf(this, IncompatibleSettingsException.prototype);
|
|
1688
|
+
this.Message = opts.Message;
|
|
1689
|
+
this.RequestId = opts.RequestId;
|
|
1690
|
+
}
|
|
1691
|
+
}
|
|
1692
|
+
exports.IncompatibleSettingsException = IncompatibleSettingsException;
|
|
1693
|
+
class UnsupportedSettingsException extends DirectoryServiceServiceException_1.DirectoryServiceServiceException {
|
|
1694
|
+
constructor(opts) {
|
|
1695
|
+
super({
|
|
1696
|
+
name: "UnsupportedSettingsException",
|
|
1697
|
+
$fault: "client",
|
|
1698
|
+
...opts,
|
|
1699
|
+
});
|
|
1700
|
+
this.name = "UnsupportedSettingsException";
|
|
1701
|
+
this.$fault = "client";
|
|
1702
|
+
Object.setPrototypeOf(this, UnsupportedSettingsException.prototype);
|
|
1703
|
+
this.Message = opts.Message;
|
|
1704
|
+
this.RequestId = opts.RequestId;
|
|
1705
|
+
}
|
|
1706
|
+
}
|
|
1707
|
+
exports.UnsupportedSettingsException = UnsupportedSettingsException;
|
|
1708
|
+
var Setting;
|
|
1709
|
+
(function (Setting) {
|
|
1710
|
+
Setting.filterSensitiveLog = (obj) => ({
|
|
1711
|
+
...obj,
|
|
1712
|
+
});
|
|
1713
|
+
})(Setting = exports.Setting || (exports.Setting = {}));
|
|
1714
|
+
var UpdateSettingsRequest;
|
|
1715
|
+
(function (UpdateSettingsRequest) {
|
|
1716
|
+
UpdateSettingsRequest.filterSensitiveLog = (obj) => ({
|
|
1717
|
+
...obj,
|
|
1718
|
+
});
|
|
1719
|
+
})(UpdateSettingsRequest = exports.UpdateSettingsRequest || (exports.UpdateSettingsRequest = {}));
|
|
1720
|
+
var UpdateSettingsResult;
|
|
1721
|
+
(function (UpdateSettingsResult) {
|
|
1722
|
+
UpdateSettingsResult.filterSensitiveLog = (obj) => ({
|
|
1723
|
+
...obj,
|
|
1724
|
+
});
|
|
1725
|
+
})(UpdateSettingsResult = exports.UpdateSettingsResult || (exports.UpdateSettingsResult = {}));
|
|
1651
1726
|
var UpdateTrustRequest;
|
|
1652
1727
|
(function (UpdateTrustRequest) {
|
|
1653
1728
|
UpdateTrustRequest.filterSensitiveLog = (obj) => ({
|