@aws-sdk/client-identitystore 3.490.0 → 3.496.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.
Files changed (37) hide show
  1. package/dist-cjs/Identitystore.js +1 -49
  2. package/dist-cjs/IdentitystoreClient.js +1 -43
  3. package/dist-cjs/commands/CreateGroupCommand.js +1 -29
  4. package/dist-cjs/commands/CreateGroupMembershipCommand.js +1 -28
  5. package/dist-cjs/commands/CreateUserCommand.js +1 -29
  6. package/dist-cjs/commands/DeleteGroupCommand.js +1 -28
  7. package/dist-cjs/commands/DeleteGroupMembershipCommand.js +1 -28
  8. package/dist-cjs/commands/DeleteUserCommand.js +1 -28
  9. package/dist-cjs/commands/DescribeGroupCommand.js +1 -29
  10. package/dist-cjs/commands/DescribeGroupMembershipCommand.js +1 -28
  11. package/dist-cjs/commands/DescribeUserCommand.js +1 -29
  12. package/dist-cjs/commands/GetGroupIdCommand.js +1 -29
  13. package/dist-cjs/commands/GetGroupMembershipIdCommand.js +1 -28
  14. package/dist-cjs/commands/GetUserIdCommand.js +1 -29
  15. package/dist-cjs/commands/IsMemberInGroupsCommand.js +1 -29
  16. package/dist-cjs/commands/ListGroupMembershipsCommand.js +1 -28
  17. package/dist-cjs/commands/ListGroupMembershipsForMemberCommand.js +1 -28
  18. package/dist-cjs/commands/ListGroupsCommand.js +1 -29
  19. package/dist-cjs/commands/ListUsersCommand.js +1 -29
  20. package/dist-cjs/commands/UpdateGroupCommand.js +1 -28
  21. package/dist-cjs/commands/UpdateUserCommand.js +1 -28
  22. package/dist-cjs/commands/index.js +1 -22
  23. package/dist-cjs/endpoint/EndpointParameters.js +1 -18
  24. package/dist-cjs/extensionConfiguration.js +1 -2
  25. package/dist-cjs/index.js +2131 -11
  26. package/dist-cjs/models/IdentitystoreServiceException.js +1 -12
  27. package/dist-cjs/models/index.js +1 -4
  28. package/dist-cjs/models/models_0.js +1 -321
  29. package/dist-cjs/pagination/Interfaces.js +1 -2
  30. package/dist-cjs/pagination/ListGroupMembershipsForMemberPaginator.js +1 -7
  31. package/dist-cjs/pagination/ListGroupMembershipsPaginator.js +1 -7
  32. package/dist-cjs/pagination/ListGroupsPaginator.js +1 -7
  33. package/dist-cjs/pagination/ListUsersPaginator.js +1 -7
  34. package/dist-cjs/pagination/index.js +1 -8
  35. package/dist-cjs/protocols/Aws_json1_1.js +1 -1224
  36. package/dist-cjs/runtimeExtensions.js +1 -22
  37. package/package.json +40 -40
@@ -1,49 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.Identitystore = void 0;
4
- const smithy_client_1 = require("@smithy/smithy-client");
5
- const CreateGroupCommand_1 = require("./commands/CreateGroupCommand");
6
- const CreateGroupMembershipCommand_1 = require("./commands/CreateGroupMembershipCommand");
7
- const CreateUserCommand_1 = require("./commands/CreateUserCommand");
8
- const DeleteGroupCommand_1 = require("./commands/DeleteGroupCommand");
9
- const DeleteGroupMembershipCommand_1 = require("./commands/DeleteGroupMembershipCommand");
10
- const DeleteUserCommand_1 = require("./commands/DeleteUserCommand");
11
- const DescribeGroupCommand_1 = require("./commands/DescribeGroupCommand");
12
- const DescribeGroupMembershipCommand_1 = require("./commands/DescribeGroupMembershipCommand");
13
- const DescribeUserCommand_1 = require("./commands/DescribeUserCommand");
14
- const GetGroupIdCommand_1 = require("./commands/GetGroupIdCommand");
15
- const GetGroupMembershipIdCommand_1 = require("./commands/GetGroupMembershipIdCommand");
16
- const GetUserIdCommand_1 = require("./commands/GetUserIdCommand");
17
- const IsMemberInGroupsCommand_1 = require("./commands/IsMemberInGroupsCommand");
18
- const ListGroupMembershipsCommand_1 = require("./commands/ListGroupMembershipsCommand");
19
- const ListGroupMembershipsForMemberCommand_1 = require("./commands/ListGroupMembershipsForMemberCommand");
20
- const ListGroupsCommand_1 = require("./commands/ListGroupsCommand");
21
- const ListUsersCommand_1 = require("./commands/ListUsersCommand");
22
- const UpdateGroupCommand_1 = require("./commands/UpdateGroupCommand");
23
- const UpdateUserCommand_1 = require("./commands/UpdateUserCommand");
24
- const IdentitystoreClient_1 = require("./IdentitystoreClient");
25
- const commands = {
26
- CreateGroupCommand: CreateGroupCommand_1.CreateGroupCommand,
27
- CreateGroupMembershipCommand: CreateGroupMembershipCommand_1.CreateGroupMembershipCommand,
28
- CreateUserCommand: CreateUserCommand_1.CreateUserCommand,
29
- DeleteGroupCommand: DeleteGroupCommand_1.DeleteGroupCommand,
30
- DeleteGroupMembershipCommand: DeleteGroupMembershipCommand_1.DeleteGroupMembershipCommand,
31
- DeleteUserCommand: DeleteUserCommand_1.DeleteUserCommand,
32
- DescribeGroupCommand: DescribeGroupCommand_1.DescribeGroupCommand,
33
- DescribeGroupMembershipCommand: DescribeGroupMembershipCommand_1.DescribeGroupMembershipCommand,
34
- DescribeUserCommand: DescribeUserCommand_1.DescribeUserCommand,
35
- GetGroupIdCommand: GetGroupIdCommand_1.GetGroupIdCommand,
36
- GetGroupMembershipIdCommand: GetGroupMembershipIdCommand_1.GetGroupMembershipIdCommand,
37
- GetUserIdCommand: GetUserIdCommand_1.GetUserIdCommand,
38
- IsMemberInGroupsCommand: IsMemberInGroupsCommand_1.IsMemberInGroupsCommand,
39
- ListGroupMembershipsCommand: ListGroupMembershipsCommand_1.ListGroupMembershipsCommand,
40
- ListGroupMembershipsForMemberCommand: ListGroupMembershipsForMemberCommand_1.ListGroupMembershipsForMemberCommand,
41
- ListGroupsCommand: ListGroupsCommand_1.ListGroupsCommand,
42
- ListUsersCommand: ListUsersCommand_1.ListUsersCommand,
43
- UpdateGroupCommand: UpdateGroupCommand_1.UpdateGroupCommand,
44
- UpdateUserCommand: UpdateUserCommand_1.UpdateUserCommand,
45
- };
46
- class Identitystore extends IdentitystoreClient_1.IdentitystoreClient {
47
- }
48
- exports.Identitystore = Identitystore;
49
- (0, smithy_client_1.createAggregatedClient)(commands, Identitystore);
1
+ module.exports = require("./index.js");
@@ -1,43 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.IdentitystoreClient = exports.__Client = void 0;
4
- const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
5
- const middleware_logger_1 = require("@aws-sdk/middleware-logger");
6
- const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
7
- const middleware_signing_1 = require("@aws-sdk/middleware-signing");
8
- const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
9
- const config_resolver_1 = require("@smithy/config-resolver");
10
- const middleware_content_length_1 = require("@smithy/middleware-content-length");
11
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
12
- const middleware_retry_1 = require("@smithy/middleware-retry");
13
- const smithy_client_1 = require("@smithy/smithy-client");
14
- Object.defineProperty(exports, "__Client", { enumerable: true, get: function () { return smithy_client_1.Client; } });
15
- const EndpointParameters_1 = require("./endpoint/EndpointParameters");
16
- const runtimeConfig_1 = require("./runtimeConfig");
17
- const runtimeExtensions_1 = require("./runtimeExtensions");
18
- class IdentitystoreClient extends smithy_client_1.Client {
19
- constructor(...[configuration]) {
20
- const _config_0 = (0, runtimeConfig_1.getRuntimeConfig)(configuration || {});
21
- const _config_1 = (0, EndpointParameters_1.resolveClientEndpointParameters)(_config_0);
22
- const _config_2 = (0, config_resolver_1.resolveRegionConfig)(_config_1);
23
- const _config_3 = (0, middleware_endpoint_1.resolveEndpointConfig)(_config_2);
24
- const _config_4 = (0, middleware_retry_1.resolveRetryConfig)(_config_3);
25
- const _config_5 = (0, middleware_host_header_1.resolveHostHeaderConfig)(_config_4);
26
- const _config_6 = (0, middleware_signing_1.resolveAwsAuthConfig)(_config_5);
27
- const _config_7 = (0, middleware_user_agent_1.resolveUserAgentConfig)(_config_6);
28
- const _config_8 = (0, runtimeExtensions_1.resolveRuntimeExtensions)(_config_7, configuration?.extensions || []);
29
- super(_config_8);
30
- this.config = _config_8;
31
- this.middlewareStack.use((0, middleware_retry_1.getRetryPlugin)(this.config));
32
- this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
33
- this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
34
- this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
35
- this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
36
- this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
37
- this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
38
- }
39
- destroy() {
40
- super.destroy();
41
- }
42
- }
43
- exports.IdentitystoreClient = IdentitystoreClient;
1
+ module.exports = require("./index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CreateGroupCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const models_0_1 = require("../models/models_0");
10
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
11
- class CreateGroupCommand extends smithy_client_1.Command
12
- .classBuilder()
13
- .ep({
14
- ...EndpointParameters_1.commonParams,
15
- })
16
- .m(function (Command, cs, config, o) {
17
- return [
18
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
19
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
20
- ];
21
- })
22
- .s("AWSIdentityStore", "CreateGroup", {})
23
- .n("IdentitystoreClient", "CreateGroupCommand")
24
- .f(models_0_1.CreateGroupRequestFilterSensitiveLog, void 0)
25
- .ser(Aws_json1_1_1.se_CreateGroupCommand)
26
- .de(Aws_json1_1_1.de_CreateGroupCommand)
27
- .build() {
28
- }
29
- exports.CreateGroupCommand = CreateGroupCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CreateGroupMembershipCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class CreateGroupMembershipCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AWSIdentityStore", "CreateGroupMembership", {})
22
- .n("IdentitystoreClient", "CreateGroupMembershipCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_CreateGroupMembershipCommand)
25
- .de(Aws_json1_1_1.de_CreateGroupMembershipCommand)
26
- .build() {
27
- }
28
- exports.CreateGroupMembershipCommand = CreateGroupMembershipCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CreateUserCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const models_0_1 = require("../models/models_0");
10
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
11
- class CreateUserCommand extends smithy_client_1.Command
12
- .classBuilder()
13
- .ep({
14
- ...EndpointParameters_1.commonParams,
15
- })
16
- .m(function (Command, cs, config, o) {
17
- return [
18
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
19
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
20
- ];
21
- })
22
- .s("AWSIdentityStore", "CreateUser", {})
23
- .n("IdentitystoreClient", "CreateUserCommand")
24
- .f(models_0_1.CreateUserRequestFilterSensitiveLog, void 0)
25
- .ser(Aws_json1_1_1.se_CreateUserCommand)
26
- .de(Aws_json1_1_1.de_CreateUserCommand)
27
- .build() {
28
- }
29
- exports.CreateUserCommand = CreateUserCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DeleteGroupCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class DeleteGroupCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AWSIdentityStore", "DeleteGroup", {})
22
- .n("IdentitystoreClient", "DeleteGroupCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_DeleteGroupCommand)
25
- .de(Aws_json1_1_1.de_DeleteGroupCommand)
26
- .build() {
27
- }
28
- exports.DeleteGroupCommand = DeleteGroupCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DeleteGroupMembershipCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class DeleteGroupMembershipCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AWSIdentityStore", "DeleteGroupMembership", {})
22
- .n("IdentitystoreClient", "DeleteGroupMembershipCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_DeleteGroupMembershipCommand)
25
- .de(Aws_json1_1_1.de_DeleteGroupMembershipCommand)
26
- .build() {
27
- }
28
- exports.DeleteGroupMembershipCommand = DeleteGroupMembershipCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DeleteUserCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class DeleteUserCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AWSIdentityStore", "DeleteUser", {})
22
- .n("IdentitystoreClient", "DeleteUserCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_DeleteUserCommand)
25
- .de(Aws_json1_1_1.de_DeleteUserCommand)
26
- .build() {
27
- }
28
- exports.DeleteUserCommand = DeleteUserCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DescribeGroupCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const models_0_1 = require("../models/models_0");
10
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
11
- class DescribeGroupCommand extends smithy_client_1.Command
12
- .classBuilder()
13
- .ep({
14
- ...EndpointParameters_1.commonParams,
15
- })
16
- .m(function (Command, cs, config, o) {
17
- return [
18
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
19
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
20
- ];
21
- })
22
- .s("AWSIdentityStore", "DescribeGroup", {})
23
- .n("IdentitystoreClient", "DescribeGroupCommand")
24
- .f(void 0, models_0_1.DescribeGroupResponseFilterSensitiveLog)
25
- .ser(Aws_json1_1_1.se_DescribeGroupCommand)
26
- .de(Aws_json1_1_1.de_DescribeGroupCommand)
27
- .build() {
28
- }
29
- exports.DescribeGroupCommand = DescribeGroupCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DescribeGroupMembershipCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class DescribeGroupMembershipCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AWSIdentityStore", "DescribeGroupMembership", {})
22
- .n("IdentitystoreClient", "DescribeGroupMembershipCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_DescribeGroupMembershipCommand)
25
- .de(Aws_json1_1_1.de_DescribeGroupMembershipCommand)
26
- .build() {
27
- }
28
- exports.DescribeGroupMembershipCommand = DescribeGroupMembershipCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DescribeUserCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const models_0_1 = require("../models/models_0");
10
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
11
- class DescribeUserCommand extends smithy_client_1.Command
12
- .classBuilder()
13
- .ep({
14
- ...EndpointParameters_1.commonParams,
15
- })
16
- .m(function (Command, cs, config, o) {
17
- return [
18
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
19
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
20
- ];
21
- })
22
- .s("AWSIdentityStore", "DescribeUser", {})
23
- .n("IdentitystoreClient", "DescribeUserCommand")
24
- .f(void 0, models_0_1.DescribeUserResponseFilterSensitiveLog)
25
- .ser(Aws_json1_1_1.se_DescribeUserCommand)
26
- .de(Aws_json1_1_1.de_DescribeUserCommand)
27
- .build() {
28
- }
29
- exports.DescribeUserCommand = DescribeUserCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetGroupIdCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const models_0_1 = require("../models/models_0");
10
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
11
- class GetGroupIdCommand extends smithy_client_1.Command
12
- .classBuilder()
13
- .ep({
14
- ...EndpointParameters_1.commonParams,
15
- })
16
- .m(function (Command, cs, config, o) {
17
- return [
18
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
19
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
20
- ];
21
- })
22
- .s("AWSIdentityStore", "GetGroupId", {})
23
- .n("IdentitystoreClient", "GetGroupIdCommand")
24
- .f(models_0_1.GetGroupIdRequestFilterSensitiveLog, void 0)
25
- .ser(Aws_json1_1_1.se_GetGroupIdCommand)
26
- .de(Aws_json1_1_1.de_GetGroupIdCommand)
27
- .build() {
28
- }
29
- exports.GetGroupIdCommand = GetGroupIdCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetGroupMembershipIdCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class GetGroupMembershipIdCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AWSIdentityStore", "GetGroupMembershipId", {})
22
- .n("IdentitystoreClient", "GetGroupMembershipIdCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_GetGroupMembershipIdCommand)
25
- .de(Aws_json1_1_1.de_GetGroupMembershipIdCommand)
26
- .build() {
27
- }
28
- exports.GetGroupMembershipIdCommand = GetGroupMembershipIdCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetUserIdCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const models_0_1 = require("../models/models_0");
10
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
11
- class GetUserIdCommand extends smithy_client_1.Command
12
- .classBuilder()
13
- .ep({
14
- ...EndpointParameters_1.commonParams,
15
- })
16
- .m(function (Command, cs, config, o) {
17
- return [
18
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
19
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
20
- ];
21
- })
22
- .s("AWSIdentityStore", "GetUserId", {})
23
- .n("IdentitystoreClient", "GetUserIdCommand")
24
- .f(models_0_1.GetUserIdRequestFilterSensitiveLog, void 0)
25
- .ser(Aws_json1_1_1.se_GetUserIdCommand)
26
- .de(Aws_json1_1_1.de_GetUserIdCommand)
27
- .build() {
28
- }
29
- exports.GetUserIdCommand = GetUserIdCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.IsMemberInGroupsCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const models_0_1 = require("../models/models_0");
10
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
11
- class IsMemberInGroupsCommand extends smithy_client_1.Command
12
- .classBuilder()
13
- .ep({
14
- ...EndpointParameters_1.commonParams,
15
- })
16
- .m(function (Command, cs, config, o) {
17
- return [
18
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
19
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
20
- ];
21
- })
22
- .s("AWSIdentityStore", "IsMemberInGroups", {})
23
- .n("IdentitystoreClient", "IsMemberInGroupsCommand")
24
- .f(void 0, models_0_1.IsMemberInGroupsResponseFilterSensitiveLog)
25
- .ser(Aws_json1_1_1.se_IsMemberInGroupsCommand)
26
- .de(Aws_json1_1_1.de_IsMemberInGroupsCommand)
27
- .build() {
28
- }
29
- exports.IsMemberInGroupsCommand = IsMemberInGroupsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListGroupMembershipsCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class ListGroupMembershipsCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AWSIdentityStore", "ListGroupMemberships", {})
22
- .n("IdentitystoreClient", "ListGroupMembershipsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_ListGroupMembershipsCommand)
25
- .de(Aws_json1_1_1.de_ListGroupMembershipsCommand)
26
- .build() {
27
- }
28
- exports.ListGroupMembershipsCommand = ListGroupMembershipsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListGroupMembershipsForMemberCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class ListGroupMembershipsForMemberCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AWSIdentityStore", "ListGroupMembershipsForMember", {})
22
- .n("IdentitystoreClient", "ListGroupMembershipsForMemberCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_ListGroupMembershipsForMemberCommand)
25
- .de(Aws_json1_1_1.de_ListGroupMembershipsForMemberCommand)
26
- .build() {
27
- }
28
- exports.ListGroupMembershipsForMemberCommand = ListGroupMembershipsForMemberCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListGroupsCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const models_0_1 = require("../models/models_0");
10
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
11
- class ListGroupsCommand extends smithy_client_1.Command
12
- .classBuilder()
13
- .ep({
14
- ...EndpointParameters_1.commonParams,
15
- })
16
- .m(function (Command, cs, config, o) {
17
- return [
18
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
19
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
20
- ];
21
- })
22
- .s("AWSIdentityStore", "ListGroups", {})
23
- .n("IdentitystoreClient", "ListGroupsCommand")
24
- .f(models_0_1.ListGroupsRequestFilterSensitiveLog, models_0_1.ListGroupsResponseFilterSensitiveLog)
25
- .ser(Aws_json1_1_1.se_ListGroupsCommand)
26
- .de(Aws_json1_1_1.de_ListGroupsCommand)
27
- .build() {
28
- }
29
- exports.ListGroupsCommand = ListGroupsCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListUsersCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const models_0_1 = require("../models/models_0");
10
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
11
- class ListUsersCommand extends smithy_client_1.Command
12
- .classBuilder()
13
- .ep({
14
- ...EndpointParameters_1.commonParams,
15
- })
16
- .m(function (Command, cs, config, o) {
17
- return [
18
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
19
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
20
- ];
21
- })
22
- .s("AWSIdentityStore", "ListUsers", {})
23
- .n("IdentitystoreClient", "ListUsersCommand")
24
- .f(models_0_1.ListUsersRequestFilterSensitiveLog, models_0_1.ListUsersResponseFilterSensitiveLog)
25
- .ser(Aws_json1_1_1.se_ListUsersCommand)
26
- .de(Aws_json1_1_1.de_ListUsersCommand)
27
- .build() {
28
- }
29
- exports.ListUsersCommand = ListUsersCommand;
1
+ module.exports = require("../index.js");