@aws-sdk/client-directory-service-data 3.654.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/LICENSE +201 -0
- package/README.md +391 -0
- package/dist-cjs/DirectoryServiceData.js +45 -0
- package/dist-cjs/DirectoryServiceDataClient.js +50 -0
- package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/commands/AddGroupMemberCommand.js +26 -0
- package/dist-cjs/commands/CreateGroupCommand.js +27 -0
- package/dist-cjs/commands/CreateUserCommand.js +27 -0
- package/dist-cjs/commands/DeleteGroupCommand.js +26 -0
- package/dist-cjs/commands/DeleteUserCommand.js +26 -0
- package/dist-cjs/commands/DescribeGroupCommand.js +27 -0
- package/dist-cjs/commands/DescribeUserCommand.js +27 -0
- package/dist-cjs/commands/DisableUserCommand.js +26 -0
- package/dist-cjs/commands/ListGroupMembersCommand.js +27 -0
- package/dist-cjs/commands/ListGroupsCommand.js +27 -0
- package/dist-cjs/commands/ListGroupsForMemberCommand.js +27 -0
- package/dist-cjs/commands/ListUsersCommand.js +27 -0
- package/dist-cjs/commands/RemoveGroupMemberCommand.js +26 -0
- package/dist-cjs/commands/SearchGroupsCommand.js +27 -0
- package/dist-cjs/commands/SearchUsersCommand.js +27 -0
- package/dist-cjs/commands/UpdateGroupCommand.js +27 -0
- package/dist-cjs/commands/UpdateUserCommand.js +27 -0
- package/dist-cjs/commands/index.js +20 -0
- package/dist-cjs/endpoint/EndpointParameters.js +18 -0
- package/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/extensionConfiguration.js +2 -0
- package/dist-cjs/index.js +11 -0
- package/dist-cjs/models/DirectoryServiceDataServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +333 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListGroupMembersPaginator.js +7 -0
- package/dist-cjs/pagination/ListGroupsForMemberPaginator.js +7 -0
- package/dist-cjs/pagination/ListGroupsPaginator.js +7 -0
- package/dist-cjs/pagination/ListUsersPaginator.js +7 -0
- package/dist-cjs/pagination/SearchGroupsPaginator.js +7 -0
- package/dist-cjs/pagination/SearchUsersPaginator.js +7 -0
- package/dist-cjs/pagination/index.js +10 -0
- package/dist-cjs/protocols/Aws_restJson1.js +768 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +49 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +34 -0
- package/dist-cjs/runtimeExtensions.js +25 -0
- package/dist-es/DirectoryServiceData.js +41 -0
- package/dist-es/DirectoryServiceDataClient.js +46 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/commands/AddGroupMemberCommand.js +22 -0
- package/dist-es/commands/CreateGroupCommand.js +23 -0
- package/dist-es/commands/CreateUserCommand.js +23 -0
- package/dist-es/commands/DeleteGroupCommand.js +22 -0
- package/dist-es/commands/DeleteUserCommand.js +22 -0
- package/dist-es/commands/DescribeGroupCommand.js +23 -0
- package/dist-es/commands/DescribeUserCommand.js +23 -0
- package/dist-es/commands/DisableUserCommand.js +22 -0
- package/dist-es/commands/ListGroupMembersCommand.js +23 -0
- package/dist-es/commands/ListGroupsCommand.js +23 -0
- package/dist-es/commands/ListGroupsForMemberCommand.js +23 -0
- package/dist-es/commands/ListUsersCommand.js +23 -0
- package/dist-es/commands/RemoveGroupMemberCommand.js +22 -0
- package/dist-es/commands/SearchGroupsCommand.js +23 -0
- package/dist-es/commands/SearchUsersCommand.js +23 -0
- package/dist-es/commands/UpdateGroupCommand.js +23 -0
- package/dist-es/commands/UpdateUserCommand.js +23 -0
- package/dist-es/commands/index.js +17 -0
- package/dist-es/endpoint/EndpointParameters.js +14 -0
- package/dist-es/endpoint/endpointResolver.js +14 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +6 -0
- package/dist-es/models/DirectoryServiceDataServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +301 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListGroupMembersPaginator.js +4 -0
- package/dist-es/pagination/ListGroupsForMemberPaginator.js +4 -0
- package/dist-es/pagination/ListGroupsPaginator.js +4 -0
- package/dist-es/pagination/ListUsersPaginator.js +4 -0
- package/dist-es/pagination/SearchGroupsPaginator.js +4 -0
- package/dist-es/pagination/SearchUsersPaginator.js +4 -0
- package/dist-es/pagination/index.js +7 -0
- package/dist-es/protocols/Aws_restJson1.js +731 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +44 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +30 -0
- package/dist-es/runtimeExtensions.js +21 -0
- package/dist-types/DirectoryServiceData.d.ts +179 -0
- package/dist-types/DirectoryServiceDataClient.d.ts +236 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
- package/dist-types/commands/AddGroupMemberCommand.d.ts +107 -0
- package/dist-types/commands/CreateGroupCommand.d.ts +118 -0
- package/dist-types/commands/CreateUserCommand.d.ts +119 -0
- package/dist-types/commands/DeleteGroupCommand.d.ts +105 -0
- package/dist-types/commands/DeleteUserCommand.d.ts +105 -0
- package/dist-types/commands/DescribeGroupCommand.d.ts +117 -0
- package/dist-types/commands/DescribeUserCommand.d.ts +120 -0
- package/dist-types/commands/DisableUserCommand.d.ts +107 -0
- package/dist-types/commands/ListGroupMembersCommand.d.ts +117 -0
- package/dist-types/commands/ListGroupsCommand.d.ts +112 -0
- package/dist-types/commands/ListGroupsForMemberCommand.d.ts +118 -0
- package/dist-types/commands/ListUsersCommand.d.ts +113 -0
- package/dist-types/commands/RemoveGroupMemberCommand.d.ts +107 -0
- package/dist-types/commands/SearchGroupsCommand.d.ts +129 -0
- package/dist-types/commands/SearchUsersCommand.d.ts +132 -0
- package/dist-types/commands/UpdateGroupCommand.d.ts +118 -0
- package/dist-types/commands/UpdateUserCommand.d.ts +119 -0
- package/dist-types/commands/index.d.ts +17 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +40 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +64 -0
- package/dist-types/models/DirectoryServiceDataServiceException.d.ts +14 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1639 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListGroupMembersPaginator.d.ts +7 -0
- package/dist-types/pagination/ListGroupsForMemberPaginator.d.ts +7 -0
- package/dist-types/pagination/ListGroupsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListUsersPaginator.d.ts +7 -0
- package/dist-types/pagination/SearchGroupsPaginator.d.ts +7 -0
- package/dist-types/pagination/SearchUsersPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +7 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +155 -0
- package/dist-types/runtimeConfig.browser.d.ts +47 -0
- package/dist-types/runtimeConfig.d.ts +47 -0
- package/dist-types/runtimeConfig.native.d.ts +46 -0
- package/dist-types/runtimeConfig.shared.d.ts +21 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/ts3.4/DirectoryServiceData.d.ts +296 -0
- package/dist-types/ts3.4/DirectoryServiceDataClient.d.ts +223 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
- package/dist-types/ts3.4/commands/AddGroupMemberCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateUserCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteUserCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DescribeGroupCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DescribeUserCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DisableUserCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListGroupMembersCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListGroupsForMemberCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListUsersCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/RemoveGroupMemberCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SearchGroupsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/SearchUsersCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/index.d.ts +17 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +9 -0
- package/dist-types/ts3.4/models/DirectoryServiceDataServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +471 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListGroupMembersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListGroupsForMemberPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListGroupsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListUsersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/SearchGroupsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/SearchUsersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +7 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +209 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +89 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +93 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +83 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +23 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
- package/package.json +103 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.commonParams = exports.resolveClientEndpointParameters = void 0;
|
|
4
|
+
const resolveClientEndpointParameters = (options) => {
|
|
5
|
+
return {
|
|
6
|
+
...options,
|
|
7
|
+
useDualstackEndpoint: options.useDualstackEndpoint ?? false,
|
|
8
|
+
useFipsEndpoint: options.useFipsEndpoint ?? false,
|
|
9
|
+
defaultSigningName: "ds-data",
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
exports.resolveClientEndpointParameters = resolveClientEndpointParameters;
|
|
13
|
+
exports.commonParams = {
|
|
14
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
15
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
16
|
+
Region: { type: "builtInParams", name: "region" },
|
|
17
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
18
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.defaultEndpointResolver = void 0;
|
|
4
|
+
const util_endpoints_1 = require("@aws-sdk/util-endpoints");
|
|
5
|
+
const util_endpoints_2 = require("@smithy/util-endpoints");
|
|
6
|
+
const ruleset_1 = require("./ruleset");
|
|
7
|
+
const cache = new util_endpoints_2.EndpointCache({
|
|
8
|
+
size: 50,
|
|
9
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
10
|
+
});
|
|
11
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
12
|
+
return cache.get(endpointParams, () => (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
13
|
+
endpointParams: endpointParams,
|
|
14
|
+
logger: context.logger,
|
|
15
|
+
}));
|
|
16
|
+
};
|
|
17
|
+
exports.defaultEndpointResolver = defaultEndpointResolver;
|
|
18
|
+
util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ruleSet = void 0;
|
|
4
|
+
const s = "required", t = "fn", u = "argv", v = "ref";
|
|
5
|
+
const a = true, b = "isSet", c = "booleanEquals", d = "error", e = "endpoint", f = "tree", g = "PartitionResult", h = { [s]: false, "type": "String" }, i = { [s]: true, "default": false, "type": "Boolean" }, j = { [v]: "Endpoint" }, k = { [t]: c, [u]: [{ [v]: "UseFIPS" }, true] }, l = { [t]: c, [u]: [{ [v]: "UseDualStack" }, true] }, m = {}, n = { [t]: "getAttr", [u]: [{ [v]: g }, "supportsFIPS"] }, o = { [t]: c, [u]: [true, { [t]: "getAttr", [u]: [{ [v]: g }, "supportsDualStack"] }] }, p = [k], q = [l], r = [{ [v]: "Region" }];
|
|
6
|
+
const _data = { version: "1.0", parameters: { Region: h, UseDualStack: i, UseFIPS: i, Endpoint: h }, rules: [{ conditions: [{ [t]: b, [u]: [j] }], rules: [{ conditions: p, error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: d }, { rules: [{ conditions: q, error: "Invalid Configuration: Dualstack and custom endpoint are not supported", type: d }, { endpoint: { url: j, properties: m, headers: m }, type: e }], type: f }], type: f }, { rules: [{ conditions: [{ [t]: b, [u]: r }], rules: [{ conditions: [{ [t]: "aws.partition", [u]: r, assign: g }], rules: [{ conditions: [k, l], rules: [{ conditions: [{ [t]: c, [u]: [a, n] }, o], rules: [{ rules: [{ endpoint: { url: "https://ds-data-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: m, headers: m }, type: e }], type: f }], type: f }, { error: "FIPS and DualStack are enabled, but this partition does not support one or both", type: d }], type: f }, { conditions: p, rules: [{ conditions: [{ [t]: c, [u]: [n, a] }], rules: [{ rules: [{ endpoint: { url: "https://ds-data-fips.{Region}.{PartitionResult#dnsSuffix}", properties: m, headers: m }, type: e }], type: f }], type: f }, { error: "FIPS is enabled but this partition does not support FIPS", type: d }], type: f }, { conditions: q, rules: [{ conditions: [o], rules: [{ rules: [{ endpoint: { url: "https://ds-data.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: m, headers: m }, type: e }], type: f }], type: f }, { error: "DualStack is enabled but this partition does not support DualStack", type: d }], type: f }, { rules: [{ endpoint: { url: "https://ds-data.{Region}.{PartitionResult#dnsSuffix}", properties: m, headers: m }, type: e }], type: f }], type: f }], type: f }, { error: "Invalid Configuration: Missing Region", type: d }], type: f }] };
|
|
7
|
+
exports.ruleSet = _data;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DirectoryServiceDataServiceException = void 0;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
5
|
+
tslib_1.__exportStar(require("./DirectoryServiceDataClient"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./DirectoryServiceData"), exports);
|
|
7
|
+
tslib_1.__exportStar(require("./commands"), exports);
|
|
8
|
+
tslib_1.__exportStar(require("./pagination"), exports);
|
|
9
|
+
tslib_1.__exportStar(require("./models"), exports);
|
|
10
|
+
var DirectoryServiceDataServiceException_1 = require("./models/DirectoryServiceDataServiceException");
|
|
11
|
+
Object.defineProperty(exports, "DirectoryServiceDataServiceException", { enumerable: true, get: function () { return DirectoryServiceDataServiceException_1.DirectoryServiceDataServiceException; } });
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DirectoryServiceDataServiceException = exports.__ServiceException = void 0;
|
|
4
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
+
Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
|
|
6
|
+
class DirectoryServiceDataServiceException extends smithy_client_1.ServiceException {
|
|
7
|
+
constructor(options) {
|
|
8
|
+
super(options);
|
|
9
|
+
Object.setPrototypeOf(this, DirectoryServiceDataServiceException.prototype);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
exports.DirectoryServiceDataServiceException = DirectoryServiceDataServiceException;
|
|
@@ -0,0 +1,333 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UpdateUserRequestFilterSensitiveLog = exports.UpdateGroupRequestFilterSensitiveLog = exports.SearchUsersResultFilterSensitiveLog = exports.UserFilterSensitiveLog = exports.SearchUsersRequestFilterSensitiveLog = exports.SearchGroupsResultFilterSensitiveLog = exports.GroupFilterSensitiveLog = exports.SearchGroupsRequestFilterSensitiveLog = exports.ListUsersResultFilterSensitiveLog = exports.UserSummaryFilterSensitiveLog = exports.ListUsersRequestFilterSensitiveLog = exports.ListGroupsForMemberResultFilterSensitiveLog = exports.ListGroupsForMemberRequestFilterSensitiveLog = exports.ListGroupsResultFilterSensitiveLog = exports.ListGroupsRequestFilterSensitiveLog = exports.ListGroupMembersResultFilterSensitiveLog = exports.ListGroupMembersRequestFilterSensitiveLog = exports.DescribeUserResultFilterSensitiveLog = exports.DescribeGroupResultFilterSensitiveLog = exports.CreateUserRequestFilterSensitiveLog = exports.CreateGroupRequestFilterSensitiveLog = exports.AttributeValueFilterSensitiveLog = exports.UpdateType = exports.MemberType = exports.GroupType = exports.GroupScope = exports.AttributeValue = exports.ValidationException = exports.ValidationExceptionReason = exports.ThrottlingException = exports.ResourceNotFoundException = exports.InternalServerException = exports.DirectoryUnavailableException = exports.DirectoryUnavailableReason = exports.ConflictException = exports.AccessDeniedException = exports.AccessDeniedReason = void 0;
|
|
4
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
+
const DirectoryServiceDataServiceException_1 = require("./DirectoryServiceDataServiceException");
|
|
6
|
+
exports.AccessDeniedReason = {
|
|
7
|
+
DATA_DISABLED: "DATA_DISABLED",
|
|
8
|
+
DIRECTORY_AUTH: "DIRECTORY_AUTH",
|
|
9
|
+
IAM_AUTH: "IAM_AUTH",
|
|
10
|
+
};
|
|
11
|
+
class AccessDeniedException extends DirectoryServiceDataServiceException_1.DirectoryServiceDataServiceException {
|
|
12
|
+
constructor(opts) {
|
|
13
|
+
super({
|
|
14
|
+
name: "AccessDeniedException",
|
|
15
|
+
$fault: "client",
|
|
16
|
+
...opts,
|
|
17
|
+
});
|
|
18
|
+
this.name = "AccessDeniedException";
|
|
19
|
+
this.$fault = "client";
|
|
20
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
21
|
+
this.Message = opts.Message;
|
|
22
|
+
this.Reason = opts.Reason;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
26
|
+
class ConflictException extends DirectoryServiceDataServiceException_1.DirectoryServiceDataServiceException {
|
|
27
|
+
constructor(opts) {
|
|
28
|
+
super({
|
|
29
|
+
name: "ConflictException",
|
|
30
|
+
$fault: "client",
|
|
31
|
+
...opts,
|
|
32
|
+
});
|
|
33
|
+
this.name = "ConflictException";
|
|
34
|
+
this.$fault = "client";
|
|
35
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
36
|
+
this.Message = opts.Message;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
exports.ConflictException = ConflictException;
|
|
40
|
+
exports.DirectoryUnavailableReason = {
|
|
41
|
+
DIRECTORY_RESOURCES_EXCEEDED: "DIRECTORY_RESOURCES_EXCEEDED",
|
|
42
|
+
DIRECTORY_TIMEOUT: "DIRECTORY_TIMEOUT",
|
|
43
|
+
INVALID_DIRECTORY_STATE: "INVALID_DIRECTORY_STATE",
|
|
44
|
+
NO_DISK_SPACE: "NO_DISK_SPACE",
|
|
45
|
+
TRUST_AUTH_FAILURE: "TRUST_AUTH_FAILURE",
|
|
46
|
+
};
|
|
47
|
+
class DirectoryUnavailableException extends DirectoryServiceDataServiceException_1.DirectoryServiceDataServiceException {
|
|
48
|
+
constructor(opts) {
|
|
49
|
+
super({
|
|
50
|
+
name: "DirectoryUnavailableException",
|
|
51
|
+
$fault: "client",
|
|
52
|
+
...opts,
|
|
53
|
+
});
|
|
54
|
+
this.name = "DirectoryUnavailableException";
|
|
55
|
+
this.$fault = "client";
|
|
56
|
+
this.$retryable = {};
|
|
57
|
+
Object.setPrototypeOf(this, DirectoryUnavailableException.prototype);
|
|
58
|
+
this.Message = opts.Message;
|
|
59
|
+
this.Reason = opts.Reason;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
exports.DirectoryUnavailableException = DirectoryUnavailableException;
|
|
63
|
+
class InternalServerException extends DirectoryServiceDataServiceException_1.DirectoryServiceDataServiceException {
|
|
64
|
+
constructor(opts) {
|
|
65
|
+
super({
|
|
66
|
+
name: "InternalServerException",
|
|
67
|
+
$fault: "server",
|
|
68
|
+
...opts,
|
|
69
|
+
});
|
|
70
|
+
this.name = "InternalServerException";
|
|
71
|
+
this.$fault = "server";
|
|
72
|
+
this.$retryable = {};
|
|
73
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
74
|
+
this.Message = opts.Message;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
exports.InternalServerException = InternalServerException;
|
|
78
|
+
class ResourceNotFoundException extends DirectoryServiceDataServiceException_1.DirectoryServiceDataServiceException {
|
|
79
|
+
constructor(opts) {
|
|
80
|
+
super({
|
|
81
|
+
name: "ResourceNotFoundException",
|
|
82
|
+
$fault: "client",
|
|
83
|
+
...opts,
|
|
84
|
+
});
|
|
85
|
+
this.name = "ResourceNotFoundException";
|
|
86
|
+
this.$fault = "client";
|
|
87
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
88
|
+
this.Message = opts.Message;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
92
|
+
class ThrottlingException extends DirectoryServiceDataServiceException_1.DirectoryServiceDataServiceException {
|
|
93
|
+
constructor(opts) {
|
|
94
|
+
super({
|
|
95
|
+
name: "ThrottlingException",
|
|
96
|
+
$fault: "client",
|
|
97
|
+
...opts,
|
|
98
|
+
});
|
|
99
|
+
this.name = "ThrottlingException";
|
|
100
|
+
this.$fault = "client";
|
|
101
|
+
this.$retryable = {
|
|
102
|
+
throttling: true,
|
|
103
|
+
};
|
|
104
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
105
|
+
this.Message = opts.Message;
|
|
106
|
+
this.RetryAfterSeconds = opts.RetryAfterSeconds;
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
exports.ThrottlingException = ThrottlingException;
|
|
110
|
+
exports.ValidationExceptionReason = {
|
|
111
|
+
ATTRIBUTE_EXISTS: "ATTRIBUTE_EXISTS",
|
|
112
|
+
DUPLICATE_ATTRIBUTE: "DUPLICATE_ATTRIBUTE",
|
|
113
|
+
INVALID_ATTRIBUTE_FOR_GROUP: "INVALID_ATTRIBUTE_FOR_GROUP",
|
|
114
|
+
INVALID_ATTRIBUTE_FOR_MODIFY: "INVALID_ATTRIBUTE_FOR_MODIFY",
|
|
115
|
+
INVALID_ATTRIBUTE_FOR_SEARCH: "INVALID_ATTRIBUTE_FOR_SEARCH",
|
|
116
|
+
INVALID_ATTRIBUTE_FOR_USER: "INVALID_ATTRIBUTE_FOR_USER",
|
|
117
|
+
INVALID_ATTRIBUTE_NAME: "INVALID_ATTRIBUTE_NAME",
|
|
118
|
+
INVALID_ATTRIBUTE_VALUE: "INVALID_ATTRIBUTE_VALUE",
|
|
119
|
+
INVALID_DIRECTORY_TYPE: "INVALID_DIRECTORY_TYPE",
|
|
120
|
+
INVALID_NEXT_TOKEN: "INVALID_NEXT_TOKEN",
|
|
121
|
+
INVALID_REALM: "INVALID_REALM",
|
|
122
|
+
INVALID_SECONDARY_REGION: "INVALID_SECONDARY_REGION",
|
|
123
|
+
LDAP_SIZE_LIMIT_EXCEEDED: "LDAP_SIZE_LIMIT_EXCEEDED",
|
|
124
|
+
LDAP_UNSUPPORTED_OPERATION: "LDAP_UNSUPPORTED_OPERATION",
|
|
125
|
+
MISSING_ATTRIBUTE: "MISSING_ATTRIBUTE",
|
|
126
|
+
};
|
|
127
|
+
class ValidationException extends DirectoryServiceDataServiceException_1.DirectoryServiceDataServiceException {
|
|
128
|
+
constructor(opts) {
|
|
129
|
+
super({
|
|
130
|
+
name: "ValidationException",
|
|
131
|
+
$fault: "client",
|
|
132
|
+
...opts,
|
|
133
|
+
});
|
|
134
|
+
this.name = "ValidationException";
|
|
135
|
+
this.$fault = "client";
|
|
136
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
137
|
+
this.Message = opts.Message;
|
|
138
|
+
this.Reason = opts.Reason;
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
exports.ValidationException = ValidationException;
|
|
142
|
+
var AttributeValue;
|
|
143
|
+
(function (AttributeValue) {
|
|
144
|
+
AttributeValue.visit = (value, visitor) => {
|
|
145
|
+
if (value.S !== undefined)
|
|
146
|
+
return visitor.S(value.S);
|
|
147
|
+
if (value.N !== undefined)
|
|
148
|
+
return visitor.N(value.N);
|
|
149
|
+
if (value.BOOL !== undefined)
|
|
150
|
+
return visitor.BOOL(value.BOOL);
|
|
151
|
+
if (value.SS !== undefined)
|
|
152
|
+
return visitor.SS(value.SS);
|
|
153
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
154
|
+
};
|
|
155
|
+
})(AttributeValue = exports.AttributeValue || (exports.AttributeValue = {}));
|
|
156
|
+
exports.GroupScope = {
|
|
157
|
+
BUILTIN_LOCAL: "BuiltinLocal",
|
|
158
|
+
DOMAIN_LOCAL: "DomainLocal",
|
|
159
|
+
GLOBAL: "Global",
|
|
160
|
+
UNIVERSAL: "Universal",
|
|
161
|
+
};
|
|
162
|
+
exports.GroupType = {
|
|
163
|
+
DISTRIBUTION: "Distribution",
|
|
164
|
+
SECURITY: "Security",
|
|
165
|
+
};
|
|
166
|
+
exports.MemberType = {
|
|
167
|
+
COMPUTER: "COMPUTER",
|
|
168
|
+
GROUP: "GROUP",
|
|
169
|
+
USER: "USER",
|
|
170
|
+
};
|
|
171
|
+
exports.UpdateType = {
|
|
172
|
+
ADD: "ADD",
|
|
173
|
+
REMOVE: "REMOVE",
|
|
174
|
+
REPLACE: "REPLACE",
|
|
175
|
+
};
|
|
176
|
+
const AttributeValueFilterSensitiveLog = (obj) => {
|
|
177
|
+
if (obj.S !== undefined)
|
|
178
|
+
return { S: smithy_client_1.SENSITIVE_STRING };
|
|
179
|
+
if (obj.N !== undefined)
|
|
180
|
+
return { N: smithy_client_1.SENSITIVE_STRING };
|
|
181
|
+
if (obj.BOOL !== undefined)
|
|
182
|
+
return { BOOL: smithy_client_1.SENSITIVE_STRING };
|
|
183
|
+
if (obj.SS !== undefined)
|
|
184
|
+
return { SS: smithy_client_1.SENSITIVE_STRING };
|
|
185
|
+
if (obj.$unknown !== undefined)
|
|
186
|
+
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
187
|
+
};
|
|
188
|
+
exports.AttributeValueFilterSensitiveLog = AttributeValueFilterSensitiveLog;
|
|
189
|
+
const CreateGroupRequestFilterSensitiveLog = (obj) => ({
|
|
190
|
+
...obj,
|
|
191
|
+
...(obj.OtherAttributes && {
|
|
192
|
+
OtherAttributes: Object.entries(obj.OtherAttributes).reduce((acc, [key, value]) => ((acc[key] = (0, exports.AttributeValueFilterSensitiveLog)(value)), acc), {}),
|
|
193
|
+
}),
|
|
194
|
+
});
|
|
195
|
+
exports.CreateGroupRequestFilterSensitiveLog = CreateGroupRequestFilterSensitiveLog;
|
|
196
|
+
const CreateUserRequestFilterSensitiveLog = (obj) => ({
|
|
197
|
+
...obj,
|
|
198
|
+
...(obj.EmailAddress && { EmailAddress: smithy_client_1.SENSITIVE_STRING }),
|
|
199
|
+
...(obj.GivenName && { GivenName: smithy_client_1.SENSITIVE_STRING }),
|
|
200
|
+
...(obj.Surname && { Surname: smithy_client_1.SENSITIVE_STRING }),
|
|
201
|
+
...(obj.OtherAttributes && {
|
|
202
|
+
OtherAttributes: Object.entries(obj.OtherAttributes).reduce((acc, [key, value]) => ((acc[key] = (0, exports.AttributeValueFilterSensitiveLog)(value)), acc), {}),
|
|
203
|
+
}),
|
|
204
|
+
});
|
|
205
|
+
exports.CreateUserRequestFilterSensitiveLog = CreateUserRequestFilterSensitiveLog;
|
|
206
|
+
const DescribeGroupResultFilterSensitiveLog = (obj) => ({
|
|
207
|
+
...obj,
|
|
208
|
+
...(obj.DistinguishedName && { DistinguishedName: smithy_client_1.SENSITIVE_STRING }),
|
|
209
|
+
...(obj.OtherAttributes && {
|
|
210
|
+
OtherAttributes: Object.entries(obj.OtherAttributes).reduce((acc, [key, value]) => ((acc[key] = (0, exports.AttributeValueFilterSensitiveLog)(value)), acc), {}),
|
|
211
|
+
}),
|
|
212
|
+
});
|
|
213
|
+
exports.DescribeGroupResultFilterSensitiveLog = DescribeGroupResultFilterSensitiveLog;
|
|
214
|
+
const DescribeUserResultFilterSensitiveLog = (obj) => ({
|
|
215
|
+
...obj,
|
|
216
|
+
...(obj.DistinguishedName && { DistinguishedName: smithy_client_1.SENSITIVE_STRING }),
|
|
217
|
+
...(obj.UserPrincipalName && { UserPrincipalName: smithy_client_1.SENSITIVE_STRING }),
|
|
218
|
+
...(obj.EmailAddress && { EmailAddress: smithy_client_1.SENSITIVE_STRING }),
|
|
219
|
+
...(obj.GivenName && { GivenName: smithy_client_1.SENSITIVE_STRING }),
|
|
220
|
+
...(obj.Surname && { Surname: smithy_client_1.SENSITIVE_STRING }),
|
|
221
|
+
...(obj.OtherAttributes && {
|
|
222
|
+
OtherAttributes: Object.entries(obj.OtherAttributes).reduce((acc, [key, value]) => ((acc[key] = (0, exports.AttributeValueFilterSensitiveLog)(value)), acc), {}),
|
|
223
|
+
}),
|
|
224
|
+
});
|
|
225
|
+
exports.DescribeUserResultFilterSensitiveLog = DescribeUserResultFilterSensitiveLog;
|
|
226
|
+
const ListGroupMembersRequestFilterSensitiveLog = (obj) => ({
|
|
227
|
+
...obj,
|
|
228
|
+
...(obj.NextToken && { NextToken: smithy_client_1.SENSITIVE_STRING }),
|
|
229
|
+
});
|
|
230
|
+
exports.ListGroupMembersRequestFilterSensitiveLog = ListGroupMembersRequestFilterSensitiveLog;
|
|
231
|
+
const ListGroupMembersResultFilterSensitiveLog = (obj) => ({
|
|
232
|
+
...obj,
|
|
233
|
+
...(obj.NextToken && { NextToken: smithy_client_1.SENSITIVE_STRING }),
|
|
234
|
+
});
|
|
235
|
+
exports.ListGroupMembersResultFilterSensitiveLog = ListGroupMembersResultFilterSensitiveLog;
|
|
236
|
+
const ListGroupsRequestFilterSensitiveLog = (obj) => ({
|
|
237
|
+
...obj,
|
|
238
|
+
...(obj.NextToken && { NextToken: smithy_client_1.SENSITIVE_STRING }),
|
|
239
|
+
});
|
|
240
|
+
exports.ListGroupsRequestFilterSensitiveLog = ListGroupsRequestFilterSensitiveLog;
|
|
241
|
+
const ListGroupsResultFilterSensitiveLog = (obj) => ({
|
|
242
|
+
...obj,
|
|
243
|
+
...(obj.NextToken && { NextToken: smithy_client_1.SENSITIVE_STRING }),
|
|
244
|
+
});
|
|
245
|
+
exports.ListGroupsResultFilterSensitiveLog = ListGroupsResultFilterSensitiveLog;
|
|
246
|
+
const ListGroupsForMemberRequestFilterSensitiveLog = (obj) => ({
|
|
247
|
+
...obj,
|
|
248
|
+
...(obj.NextToken && { NextToken: smithy_client_1.SENSITIVE_STRING }),
|
|
249
|
+
});
|
|
250
|
+
exports.ListGroupsForMemberRequestFilterSensitiveLog = ListGroupsForMemberRequestFilterSensitiveLog;
|
|
251
|
+
const ListGroupsForMemberResultFilterSensitiveLog = (obj) => ({
|
|
252
|
+
...obj,
|
|
253
|
+
...(obj.NextToken && { NextToken: smithy_client_1.SENSITIVE_STRING }),
|
|
254
|
+
});
|
|
255
|
+
exports.ListGroupsForMemberResultFilterSensitiveLog = ListGroupsForMemberResultFilterSensitiveLog;
|
|
256
|
+
const ListUsersRequestFilterSensitiveLog = (obj) => ({
|
|
257
|
+
...obj,
|
|
258
|
+
...(obj.NextToken && { NextToken: smithy_client_1.SENSITIVE_STRING }),
|
|
259
|
+
});
|
|
260
|
+
exports.ListUsersRequestFilterSensitiveLog = ListUsersRequestFilterSensitiveLog;
|
|
261
|
+
const UserSummaryFilterSensitiveLog = (obj) => ({
|
|
262
|
+
...obj,
|
|
263
|
+
...(obj.GivenName && { GivenName: smithy_client_1.SENSITIVE_STRING }),
|
|
264
|
+
...(obj.Surname && { Surname: smithy_client_1.SENSITIVE_STRING }),
|
|
265
|
+
});
|
|
266
|
+
exports.UserSummaryFilterSensitiveLog = UserSummaryFilterSensitiveLog;
|
|
267
|
+
const ListUsersResultFilterSensitiveLog = (obj) => ({
|
|
268
|
+
...obj,
|
|
269
|
+
...(obj.Users && { Users: obj.Users.map((item) => (0, exports.UserSummaryFilterSensitiveLog)(item)) }),
|
|
270
|
+
...(obj.NextToken && { NextToken: smithy_client_1.SENSITIVE_STRING }),
|
|
271
|
+
});
|
|
272
|
+
exports.ListUsersResultFilterSensitiveLog = ListUsersResultFilterSensitiveLog;
|
|
273
|
+
const SearchGroupsRequestFilterSensitiveLog = (obj) => ({
|
|
274
|
+
...obj,
|
|
275
|
+
...(obj.SearchString && { SearchString: smithy_client_1.SENSITIVE_STRING }),
|
|
276
|
+
...(obj.NextToken && { NextToken: smithy_client_1.SENSITIVE_STRING }),
|
|
277
|
+
});
|
|
278
|
+
exports.SearchGroupsRequestFilterSensitiveLog = SearchGroupsRequestFilterSensitiveLog;
|
|
279
|
+
const GroupFilterSensitiveLog = (obj) => ({
|
|
280
|
+
...obj,
|
|
281
|
+
...(obj.DistinguishedName && { DistinguishedName: smithy_client_1.SENSITIVE_STRING }),
|
|
282
|
+
...(obj.OtherAttributes && {
|
|
283
|
+
OtherAttributes: Object.entries(obj.OtherAttributes).reduce((acc, [key, value]) => ((acc[key] = (0, exports.AttributeValueFilterSensitiveLog)(value)), acc), {}),
|
|
284
|
+
}),
|
|
285
|
+
});
|
|
286
|
+
exports.GroupFilterSensitiveLog = GroupFilterSensitiveLog;
|
|
287
|
+
const SearchGroupsResultFilterSensitiveLog = (obj) => ({
|
|
288
|
+
...obj,
|
|
289
|
+
...(obj.Groups && { Groups: obj.Groups.map((item) => (0, exports.GroupFilterSensitiveLog)(item)) }),
|
|
290
|
+
...(obj.NextToken && { NextToken: smithy_client_1.SENSITIVE_STRING }),
|
|
291
|
+
});
|
|
292
|
+
exports.SearchGroupsResultFilterSensitiveLog = SearchGroupsResultFilterSensitiveLog;
|
|
293
|
+
const SearchUsersRequestFilterSensitiveLog = (obj) => ({
|
|
294
|
+
...obj,
|
|
295
|
+
...(obj.SearchString && { SearchString: smithy_client_1.SENSITIVE_STRING }),
|
|
296
|
+
...(obj.NextToken && { NextToken: smithy_client_1.SENSITIVE_STRING }),
|
|
297
|
+
});
|
|
298
|
+
exports.SearchUsersRequestFilterSensitiveLog = SearchUsersRequestFilterSensitiveLog;
|
|
299
|
+
const UserFilterSensitiveLog = (obj) => ({
|
|
300
|
+
...obj,
|
|
301
|
+
...(obj.DistinguishedName && { DistinguishedName: smithy_client_1.SENSITIVE_STRING }),
|
|
302
|
+
...(obj.UserPrincipalName && { UserPrincipalName: smithy_client_1.SENSITIVE_STRING }),
|
|
303
|
+
...(obj.EmailAddress && { EmailAddress: smithy_client_1.SENSITIVE_STRING }),
|
|
304
|
+
...(obj.GivenName && { GivenName: smithy_client_1.SENSITIVE_STRING }),
|
|
305
|
+
...(obj.Surname && { Surname: smithy_client_1.SENSITIVE_STRING }),
|
|
306
|
+
...(obj.OtherAttributes && {
|
|
307
|
+
OtherAttributes: Object.entries(obj.OtherAttributes).reduce((acc, [key, value]) => ((acc[key] = (0, exports.AttributeValueFilterSensitiveLog)(value)), acc), {}),
|
|
308
|
+
}),
|
|
309
|
+
});
|
|
310
|
+
exports.UserFilterSensitiveLog = UserFilterSensitiveLog;
|
|
311
|
+
const SearchUsersResultFilterSensitiveLog = (obj) => ({
|
|
312
|
+
...obj,
|
|
313
|
+
...(obj.Users && { Users: obj.Users.map((item) => (0, exports.UserFilterSensitiveLog)(item)) }),
|
|
314
|
+
...(obj.NextToken && { NextToken: smithy_client_1.SENSITIVE_STRING }),
|
|
315
|
+
});
|
|
316
|
+
exports.SearchUsersResultFilterSensitiveLog = SearchUsersResultFilterSensitiveLog;
|
|
317
|
+
const UpdateGroupRequestFilterSensitiveLog = (obj) => ({
|
|
318
|
+
...obj,
|
|
319
|
+
...(obj.OtherAttributes && {
|
|
320
|
+
OtherAttributes: Object.entries(obj.OtherAttributes).reduce((acc, [key, value]) => ((acc[key] = (0, exports.AttributeValueFilterSensitiveLog)(value)), acc), {}),
|
|
321
|
+
}),
|
|
322
|
+
});
|
|
323
|
+
exports.UpdateGroupRequestFilterSensitiveLog = UpdateGroupRequestFilterSensitiveLog;
|
|
324
|
+
const UpdateUserRequestFilterSensitiveLog = (obj) => ({
|
|
325
|
+
...obj,
|
|
326
|
+
...(obj.EmailAddress && { EmailAddress: smithy_client_1.SENSITIVE_STRING }),
|
|
327
|
+
...(obj.GivenName && { GivenName: smithy_client_1.SENSITIVE_STRING }),
|
|
328
|
+
...(obj.Surname && { Surname: smithy_client_1.SENSITIVE_STRING }),
|
|
329
|
+
...(obj.OtherAttributes && {
|
|
330
|
+
OtherAttributes: Object.entries(obj.OtherAttributes).reduce((acc, [key, value]) => ((acc[key] = (0, exports.AttributeValueFilterSensitiveLog)(value)), acc), {}),
|
|
331
|
+
}),
|
|
332
|
+
});
|
|
333
|
+
exports.UpdateUserRequestFilterSensitiveLog = UpdateUserRequestFilterSensitiveLog;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.paginateListGroupMembers = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
5
|
+
const ListGroupMembersCommand_1 = require("../commands/ListGroupMembersCommand");
|
|
6
|
+
const DirectoryServiceDataClient_1 = require("../DirectoryServiceDataClient");
|
|
7
|
+
exports.paginateListGroupMembers = (0, core_1.createPaginator)(DirectoryServiceDataClient_1.DirectoryServiceDataClient, ListGroupMembersCommand_1.ListGroupMembersCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.paginateListGroupsForMember = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
5
|
+
const ListGroupsForMemberCommand_1 = require("../commands/ListGroupsForMemberCommand");
|
|
6
|
+
const DirectoryServiceDataClient_1 = require("../DirectoryServiceDataClient");
|
|
7
|
+
exports.paginateListGroupsForMember = (0, core_1.createPaginator)(DirectoryServiceDataClient_1.DirectoryServiceDataClient, ListGroupsForMemberCommand_1.ListGroupsForMemberCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.paginateListGroups = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
5
|
+
const ListGroupsCommand_1 = require("../commands/ListGroupsCommand");
|
|
6
|
+
const DirectoryServiceDataClient_1 = require("../DirectoryServiceDataClient");
|
|
7
|
+
exports.paginateListGroups = (0, core_1.createPaginator)(DirectoryServiceDataClient_1.DirectoryServiceDataClient, ListGroupsCommand_1.ListGroupsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.paginateListUsers = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
5
|
+
const ListUsersCommand_1 = require("../commands/ListUsersCommand");
|
|
6
|
+
const DirectoryServiceDataClient_1 = require("../DirectoryServiceDataClient");
|
|
7
|
+
exports.paginateListUsers = (0, core_1.createPaginator)(DirectoryServiceDataClient_1.DirectoryServiceDataClient, ListUsersCommand_1.ListUsersCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.paginateSearchGroups = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
5
|
+
const SearchGroupsCommand_1 = require("../commands/SearchGroupsCommand");
|
|
6
|
+
const DirectoryServiceDataClient_1 = require("../DirectoryServiceDataClient");
|
|
7
|
+
exports.paginateSearchGroups = (0, core_1.createPaginator)(DirectoryServiceDataClient_1.DirectoryServiceDataClient, SearchGroupsCommand_1.SearchGroupsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.paginateSearchUsers = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
5
|
+
const SearchUsersCommand_1 = require("../commands/SearchUsersCommand");
|
|
6
|
+
const DirectoryServiceDataClient_1 = require("../DirectoryServiceDataClient");
|
|
7
|
+
exports.paginateSearchUsers = (0, core_1.createPaginator)(DirectoryServiceDataClient_1.DirectoryServiceDataClient, SearchUsersCommand_1.SearchUsersCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
tslib_1.__exportStar(require("./Interfaces"), exports);
|
|
5
|
+
tslib_1.__exportStar(require("./ListGroupMembersPaginator"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./ListGroupsForMemberPaginator"), exports);
|
|
7
|
+
tslib_1.__exportStar(require("./ListGroupsPaginator"), exports);
|
|
8
|
+
tslib_1.__exportStar(require("./ListUsersPaginator"), exports);
|
|
9
|
+
tslib_1.__exportStar(require("./SearchGroupsPaginator"), exports);
|
|
10
|
+
tslib_1.__exportStar(require("./SearchUsersPaginator"), exports);
|