@aws-sdk/client-chime-sdk-identity 3.489.0 → 3.495.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 (49) hide show
  1. package/dist-cjs/ChimeSDKIdentity.js +1 -71
  2. package/dist-cjs/ChimeSDKIdentityClient.js +1 -43
  3. package/dist-cjs/commands/CreateAppInstanceAdminCommand.js +1 -29
  4. package/dist-cjs/commands/CreateAppInstanceBotCommand.js +1 -29
  5. package/dist-cjs/commands/CreateAppInstanceCommand.js +1 -29
  6. package/dist-cjs/commands/CreateAppInstanceUserCommand.js +1 -29
  7. package/dist-cjs/commands/DeleteAppInstanceAdminCommand.js +1 -28
  8. package/dist-cjs/commands/DeleteAppInstanceBotCommand.js +1 -28
  9. package/dist-cjs/commands/DeleteAppInstanceCommand.js +1 -28
  10. package/dist-cjs/commands/DeleteAppInstanceUserCommand.js +1 -28
  11. package/dist-cjs/commands/DeregisterAppInstanceUserEndpointCommand.js +1 -28
  12. package/dist-cjs/commands/DescribeAppInstanceAdminCommand.js +1 -29
  13. package/dist-cjs/commands/DescribeAppInstanceBotCommand.js +1 -29
  14. package/dist-cjs/commands/DescribeAppInstanceCommand.js +1 -29
  15. package/dist-cjs/commands/DescribeAppInstanceUserCommand.js +1 -29
  16. package/dist-cjs/commands/DescribeAppInstanceUserEndpointCommand.js +1 -29
  17. package/dist-cjs/commands/GetAppInstanceRetentionSettingsCommand.js +1 -28
  18. package/dist-cjs/commands/ListAppInstanceAdminsCommand.js +1 -29
  19. package/dist-cjs/commands/ListAppInstanceBotsCommand.js +1 -29
  20. package/dist-cjs/commands/ListAppInstanceUserEndpointsCommand.js +1 -29
  21. package/dist-cjs/commands/ListAppInstanceUsersCommand.js +1 -29
  22. package/dist-cjs/commands/ListAppInstancesCommand.js +1 -29
  23. package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -29
  24. package/dist-cjs/commands/PutAppInstanceRetentionSettingsCommand.js +1 -28
  25. package/dist-cjs/commands/PutAppInstanceUserExpirationSettingsCommand.js +1 -28
  26. package/dist-cjs/commands/RegisterAppInstanceUserEndpointCommand.js +1 -29
  27. package/dist-cjs/commands/TagResourceCommand.js +1 -29
  28. package/dist-cjs/commands/UntagResourceCommand.js +1 -29
  29. package/dist-cjs/commands/UpdateAppInstanceBotCommand.js +1 -29
  30. package/dist-cjs/commands/UpdateAppInstanceCommand.js +1 -29
  31. package/dist-cjs/commands/UpdateAppInstanceUserCommand.js +1 -29
  32. package/dist-cjs/commands/UpdateAppInstanceUserEndpointCommand.js +1 -29
  33. package/dist-cjs/commands/index.js +1 -33
  34. package/dist-cjs/endpoint/EndpointParameters.js +1 -18
  35. package/dist-cjs/extensionConfiguration.js +1 -2
  36. package/dist-cjs/index.js +3484 -11
  37. package/dist-cjs/models/ChimeSDKIdentityServiceException.js +1 -12
  38. package/dist-cjs/models/index.js +1 -4
  39. package/dist-cjs/models/models_0.js +1 -428
  40. package/dist-cjs/pagination/Interfaces.js +1 -2
  41. package/dist-cjs/pagination/ListAppInstanceAdminsPaginator.js +1 -7
  42. package/dist-cjs/pagination/ListAppInstanceBotsPaginator.js +1 -7
  43. package/dist-cjs/pagination/ListAppInstanceUserEndpointsPaginator.js +1 -7
  44. package/dist-cjs/pagination/ListAppInstanceUsersPaginator.js +1 -7
  45. package/dist-cjs/pagination/ListAppInstancesPaginator.js +1 -7
  46. package/dist-cjs/pagination/index.js +1 -9
  47. package/dist-cjs/protocols/Aws_restJson1.js +1 -2205
  48. package/dist-cjs/runtimeExtensions.js +1 -22
  49. package/package.json +40 -40
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListAppInstanceBotsCommand = 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_restJson1_1 = require("../protocols/Aws_restJson1");
11
- class ListAppInstanceBotsCommand 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("ChimeIdentityService", "ListAppInstanceBots", {})
23
- .n("ChimeSDKIdentityClient", "ListAppInstanceBotsCommand")
24
- .f(models_0_1.ListAppInstanceBotsRequestFilterSensitiveLog, models_0_1.ListAppInstanceBotsResponseFilterSensitiveLog)
25
- .ser(Aws_restJson1_1.se_ListAppInstanceBotsCommand)
26
- .de(Aws_restJson1_1.de_ListAppInstanceBotsCommand)
27
- .build() {
28
- }
29
- exports.ListAppInstanceBotsCommand = ListAppInstanceBotsCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListAppInstanceUserEndpointsCommand = 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_restJson1_1 = require("../protocols/Aws_restJson1");
11
- class ListAppInstanceUserEndpointsCommand 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("ChimeIdentityService", "ListAppInstanceUserEndpoints", {})
23
- .n("ChimeSDKIdentityClient", "ListAppInstanceUserEndpointsCommand")
24
- .f(models_0_1.ListAppInstanceUserEndpointsRequestFilterSensitiveLog, models_0_1.ListAppInstanceUserEndpointsResponseFilterSensitiveLog)
25
- .ser(Aws_restJson1_1.se_ListAppInstanceUserEndpointsCommand)
26
- .de(Aws_restJson1_1.de_ListAppInstanceUserEndpointsCommand)
27
- .build() {
28
- }
29
- exports.ListAppInstanceUserEndpointsCommand = ListAppInstanceUserEndpointsCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListAppInstanceUsersCommand = 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_restJson1_1 = require("../protocols/Aws_restJson1");
11
- class ListAppInstanceUsersCommand 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("ChimeIdentityService", "ListAppInstanceUsers", {})
23
- .n("ChimeSDKIdentityClient", "ListAppInstanceUsersCommand")
24
- .f(models_0_1.ListAppInstanceUsersRequestFilterSensitiveLog, models_0_1.ListAppInstanceUsersResponseFilterSensitiveLog)
25
- .ser(Aws_restJson1_1.se_ListAppInstanceUsersCommand)
26
- .de(Aws_restJson1_1.de_ListAppInstanceUsersCommand)
27
- .build() {
28
- }
29
- exports.ListAppInstanceUsersCommand = ListAppInstanceUsersCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListAppInstancesCommand = 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_restJson1_1 = require("../protocols/Aws_restJson1");
11
- class ListAppInstancesCommand 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("ChimeIdentityService", "ListAppInstances", {})
23
- .n("ChimeSDKIdentityClient", "ListAppInstancesCommand")
24
- .f(models_0_1.ListAppInstancesRequestFilterSensitiveLog, models_0_1.ListAppInstancesResponseFilterSensitiveLog)
25
- .ser(Aws_restJson1_1.se_ListAppInstancesCommand)
26
- .de(Aws_restJson1_1.de_ListAppInstancesCommand)
27
- .build() {
28
- }
29
- exports.ListAppInstancesCommand = ListAppInstancesCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListTagsForResourceCommand = 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_restJson1_1 = require("../protocols/Aws_restJson1");
11
- class ListTagsForResourceCommand 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("ChimeIdentityService", "ListTagsForResource", {})
23
- .n("ChimeSDKIdentityClient", "ListTagsForResourceCommand")
24
- .f(void 0, models_0_1.ListTagsForResourceResponseFilterSensitiveLog)
25
- .ser(Aws_restJson1_1.se_ListTagsForResourceCommand)
26
- .de(Aws_restJson1_1.de_ListTagsForResourceCommand)
27
- .build() {
28
- }
29
- exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PutAppInstanceRetentionSettingsCommand = 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_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class PutAppInstanceRetentionSettingsCommand 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("ChimeIdentityService", "PutAppInstanceRetentionSettings", {})
22
- .n("ChimeSDKIdentityClient", "PutAppInstanceRetentionSettingsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_PutAppInstanceRetentionSettingsCommand)
25
- .de(Aws_restJson1_1.de_PutAppInstanceRetentionSettingsCommand)
26
- .build() {
27
- }
28
- exports.PutAppInstanceRetentionSettingsCommand = PutAppInstanceRetentionSettingsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PutAppInstanceUserExpirationSettingsCommand = 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_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class PutAppInstanceUserExpirationSettingsCommand 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("ChimeIdentityService", "PutAppInstanceUserExpirationSettings", {})
22
- .n("ChimeSDKIdentityClient", "PutAppInstanceUserExpirationSettingsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_PutAppInstanceUserExpirationSettingsCommand)
25
- .de(Aws_restJson1_1.de_PutAppInstanceUserExpirationSettingsCommand)
26
- .build() {
27
- }
28
- exports.PutAppInstanceUserExpirationSettingsCommand = PutAppInstanceUserExpirationSettingsCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.RegisterAppInstanceUserEndpointCommand = 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_restJson1_1 = require("../protocols/Aws_restJson1");
11
- class RegisterAppInstanceUserEndpointCommand 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("ChimeIdentityService", "RegisterAppInstanceUserEndpoint", {})
23
- .n("ChimeSDKIdentityClient", "RegisterAppInstanceUserEndpointCommand")
24
- .f(models_0_1.RegisterAppInstanceUserEndpointRequestFilterSensitiveLog, void 0)
25
- .ser(Aws_restJson1_1.se_RegisterAppInstanceUserEndpointCommand)
26
- .de(Aws_restJson1_1.de_RegisterAppInstanceUserEndpointCommand)
27
- .build() {
28
- }
29
- exports.RegisterAppInstanceUserEndpointCommand = RegisterAppInstanceUserEndpointCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.TagResourceCommand = 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_restJson1_1 = require("../protocols/Aws_restJson1");
11
- class TagResourceCommand 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("ChimeIdentityService", "TagResource", {})
23
- .n("ChimeSDKIdentityClient", "TagResourceCommand")
24
- .f(models_0_1.TagResourceRequestFilterSensitiveLog, void 0)
25
- .ser(Aws_restJson1_1.se_TagResourceCommand)
26
- .de(Aws_restJson1_1.de_TagResourceCommand)
27
- .build() {
28
- }
29
- exports.TagResourceCommand = TagResourceCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UntagResourceCommand = 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_restJson1_1 = require("../protocols/Aws_restJson1");
11
- class UntagResourceCommand 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("ChimeIdentityService", "UntagResource", {})
23
- .n("ChimeSDKIdentityClient", "UntagResourceCommand")
24
- .f(models_0_1.UntagResourceRequestFilterSensitiveLog, void 0)
25
- .ser(Aws_restJson1_1.se_UntagResourceCommand)
26
- .de(Aws_restJson1_1.de_UntagResourceCommand)
27
- .build() {
28
- }
29
- exports.UntagResourceCommand = UntagResourceCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateAppInstanceBotCommand = 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_restJson1_1 = require("../protocols/Aws_restJson1");
11
- class UpdateAppInstanceBotCommand 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("ChimeIdentityService", "UpdateAppInstanceBot", {})
23
- .n("ChimeSDKIdentityClient", "UpdateAppInstanceBotCommand")
24
- .f(models_0_1.UpdateAppInstanceBotRequestFilterSensitiveLog, void 0)
25
- .ser(Aws_restJson1_1.se_UpdateAppInstanceBotCommand)
26
- .de(Aws_restJson1_1.de_UpdateAppInstanceBotCommand)
27
- .build() {
28
- }
29
- exports.UpdateAppInstanceBotCommand = UpdateAppInstanceBotCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateAppInstanceCommand = 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_restJson1_1 = require("../protocols/Aws_restJson1");
11
- class UpdateAppInstanceCommand 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("ChimeIdentityService", "UpdateAppInstance", {})
23
- .n("ChimeSDKIdentityClient", "UpdateAppInstanceCommand")
24
- .f(models_0_1.UpdateAppInstanceRequestFilterSensitiveLog, void 0)
25
- .ser(Aws_restJson1_1.se_UpdateAppInstanceCommand)
26
- .de(Aws_restJson1_1.de_UpdateAppInstanceCommand)
27
- .build() {
28
- }
29
- exports.UpdateAppInstanceCommand = UpdateAppInstanceCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateAppInstanceUserCommand = 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_restJson1_1 = require("../protocols/Aws_restJson1");
11
- class UpdateAppInstanceUserCommand 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("ChimeIdentityService", "UpdateAppInstanceUser", {})
23
- .n("ChimeSDKIdentityClient", "UpdateAppInstanceUserCommand")
24
- .f(models_0_1.UpdateAppInstanceUserRequestFilterSensitiveLog, void 0)
25
- .ser(Aws_restJson1_1.se_UpdateAppInstanceUserCommand)
26
- .de(Aws_restJson1_1.de_UpdateAppInstanceUserCommand)
27
- .build() {
28
- }
29
- exports.UpdateAppInstanceUserCommand = UpdateAppInstanceUserCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateAppInstanceUserEndpointCommand = 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_restJson1_1 = require("../protocols/Aws_restJson1");
11
- class UpdateAppInstanceUserEndpointCommand 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("ChimeIdentityService", "UpdateAppInstanceUserEndpoint", {})
23
- .n("ChimeSDKIdentityClient", "UpdateAppInstanceUserEndpointCommand")
24
- .f(models_0_1.UpdateAppInstanceUserEndpointRequestFilterSensitiveLog, void 0)
25
- .ser(Aws_restJson1_1.se_UpdateAppInstanceUserEndpointCommand)
26
- .de(Aws_restJson1_1.de_UpdateAppInstanceUserEndpointCommand)
27
- .build() {
28
- }
29
- exports.UpdateAppInstanceUserEndpointCommand = UpdateAppInstanceUserEndpointCommand;
1
+ module.exports = require("../index.js");
@@ -1,33 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./CreateAppInstanceAdminCommand"), exports);
5
- tslib_1.__exportStar(require("./CreateAppInstanceBotCommand"), exports);
6
- tslib_1.__exportStar(require("./CreateAppInstanceCommand"), exports);
7
- tslib_1.__exportStar(require("./CreateAppInstanceUserCommand"), exports);
8
- tslib_1.__exportStar(require("./DeleteAppInstanceAdminCommand"), exports);
9
- tslib_1.__exportStar(require("./DeleteAppInstanceBotCommand"), exports);
10
- tslib_1.__exportStar(require("./DeleteAppInstanceCommand"), exports);
11
- tslib_1.__exportStar(require("./DeleteAppInstanceUserCommand"), exports);
12
- tslib_1.__exportStar(require("./DeregisterAppInstanceUserEndpointCommand"), exports);
13
- tslib_1.__exportStar(require("./DescribeAppInstanceAdminCommand"), exports);
14
- tslib_1.__exportStar(require("./DescribeAppInstanceBotCommand"), exports);
15
- tslib_1.__exportStar(require("./DescribeAppInstanceCommand"), exports);
16
- tslib_1.__exportStar(require("./DescribeAppInstanceUserCommand"), exports);
17
- tslib_1.__exportStar(require("./DescribeAppInstanceUserEndpointCommand"), exports);
18
- tslib_1.__exportStar(require("./GetAppInstanceRetentionSettingsCommand"), exports);
19
- tslib_1.__exportStar(require("./ListAppInstanceAdminsCommand"), exports);
20
- tslib_1.__exportStar(require("./ListAppInstanceBotsCommand"), exports);
21
- tslib_1.__exportStar(require("./ListAppInstanceUserEndpointsCommand"), exports);
22
- tslib_1.__exportStar(require("./ListAppInstanceUsersCommand"), exports);
23
- tslib_1.__exportStar(require("./ListAppInstancesCommand"), exports);
24
- tslib_1.__exportStar(require("./ListTagsForResourceCommand"), exports);
25
- tslib_1.__exportStar(require("./PutAppInstanceRetentionSettingsCommand"), exports);
26
- tslib_1.__exportStar(require("./PutAppInstanceUserExpirationSettingsCommand"), exports);
27
- tslib_1.__exportStar(require("./RegisterAppInstanceUserEndpointCommand"), exports);
28
- tslib_1.__exportStar(require("./TagResourceCommand"), exports);
29
- tslib_1.__exportStar(require("./UntagResourceCommand"), exports);
30
- tslib_1.__exportStar(require("./UpdateAppInstanceBotCommand"), exports);
31
- tslib_1.__exportStar(require("./UpdateAppInstanceCommand"), exports);
32
- tslib_1.__exportStar(require("./UpdateAppInstanceUserCommand"), exports);
33
- tslib_1.__exportStar(require("./UpdateAppInstanceUserEndpointCommand"), exports);
1
+ module.exports = require("../index.js");
@@ -1,18 +1 @@
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: "chime",
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
- };
1
+ module.exports = require("../index.js");
@@ -1,2 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ module.exports = require("./index.js");