@aws-sdk/client-chime-sdk-messaging 3.928.0 → 3.929.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/dist-cjs/index.js +2588 -2622
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/ChimeSDKMessagingClient.js +2 -0
- package/dist-es/commands/AssociateChannelFlowCommand.js +3 -9
- package/dist-es/commands/BatchCreateChannelMembershipCommand.js +3 -10
- package/dist-es/commands/ChannelFlowCallbackCommand.js +3 -10
- package/dist-es/commands/CreateChannelBanCommand.js +3 -10
- package/dist-es/commands/CreateChannelCommand.js +3 -10
- package/dist-es/commands/CreateChannelFlowCommand.js +3 -10
- package/dist-es/commands/CreateChannelMembershipCommand.js +3 -10
- package/dist-es/commands/CreateChannelModeratorCommand.js +3 -10
- package/dist-es/commands/DeleteChannelBanCommand.js +3 -9
- package/dist-es/commands/DeleteChannelCommand.js +3 -9
- package/dist-es/commands/DeleteChannelFlowCommand.js +3 -9
- package/dist-es/commands/DeleteChannelMembershipCommand.js +3 -9
- package/dist-es/commands/DeleteChannelMessageCommand.js +3 -9
- package/dist-es/commands/DeleteChannelModeratorCommand.js +3 -9
- package/dist-es/commands/DeleteMessagingStreamingConfigurationsCommand.js +3 -9
- package/dist-es/commands/DescribeChannelBanCommand.js +3 -10
- package/dist-es/commands/DescribeChannelCommand.js +3 -10
- package/dist-es/commands/DescribeChannelFlowCommand.js +3 -10
- package/dist-es/commands/DescribeChannelMembershipCommand.js +3 -10
- package/dist-es/commands/DescribeChannelMembershipForAppInstanceUserCommand.js +3 -10
- package/dist-es/commands/DescribeChannelModeratedByAppInstanceUserCommand.js +3 -10
- package/dist-es/commands/DescribeChannelModeratorCommand.js +3 -10
- package/dist-es/commands/DisassociateChannelFlowCommand.js +3 -9
- package/dist-es/commands/GetChannelMembershipPreferencesCommand.js +3 -10
- package/dist-es/commands/GetChannelMessageCommand.js +3 -10
- package/dist-es/commands/GetChannelMessageStatusCommand.js +3 -9
- package/dist-es/commands/GetMessagingSessionEndpointCommand.js +3 -9
- package/dist-es/commands/GetMessagingStreamingConfigurationsCommand.js +3 -9
- package/dist-es/commands/ListChannelBansCommand.js +3 -10
- package/dist-es/commands/ListChannelFlowsCommand.js +3 -10
- package/dist-es/commands/ListChannelMembershipsCommand.js +3 -10
- package/dist-es/commands/ListChannelMembershipsForAppInstanceUserCommand.js +3 -10
- package/dist-es/commands/ListChannelMessagesCommand.js +3 -10
- package/dist-es/commands/ListChannelModeratorsCommand.js +3 -10
- package/dist-es/commands/ListChannelsAssociatedWithChannelFlowCommand.js +3 -10
- package/dist-es/commands/ListChannelsCommand.js +3 -10
- package/dist-es/commands/ListChannelsModeratedByAppInstanceUserCommand.js +3 -10
- package/dist-es/commands/ListSubChannelsCommand.js +3 -10
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -10
- package/dist-es/commands/PutChannelExpirationSettingsCommand.js +3 -9
- package/dist-es/commands/PutChannelMembershipPreferencesCommand.js +3 -10
- package/dist-es/commands/PutMessagingStreamingConfigurationsCommand.js +3 -9
- package/dist-es/commands/RedactChannelMessageCommand.js +3 -9
- package/dist-es/commands/SearchChannelsCommand.js +3 -10
- package/dist-es/commands/SendChannelMessageCommand.js +3 -10
- package/dist-es/commands/TagResourceCommand.js +3 -10
- package/dist-es/commands/UntagResourceCommand.js +3 -10
- package/dist-es/commands/UpdateChannelCommand.js +3 -10
- package/dist-es/commands/UpdateChannelFlowCommand.js +3 -10
- package/dist-es/commands/UpdateChannelMessageCommand.js +3 -10
- package/dist-es/commands/UpdateChannelReadMarkerCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -367
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +2487 -0
- package/dist-types/ChimeSDKMessagingClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -284
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +230 -0
- package/dist-types/ts3.4/ChimeSDKMessagingClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -201
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +237 -0
- package/package.json +2 -3
- package/dist-es/protocols/Aws_restJson1.js +0 -1828
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -461
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -617
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { DisassociateChannelFlow } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class DisassociateChannelFlowCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("ChimeMessagingService", "DisassociateChannelFlow", {})
|
|
17
13
|
.n("ChimeSDKMessagingClient", "DisassociateChannelFlowCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_DisassociateChannelFlowCommand)
|
|
20
|
-
.de(de_DisassociateChannelFlowCommand)
|
|
14
|
+
.sc(DisassociateChannelFlow)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,23 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
6
|
-
import { de_GetChannelMembershipPreferencesCommand, se_GetChannelMembershipPreferencesCommand, } from "../protocols/Aws_restJson1";
|
|
4
|
+
import { GetChannelMembershipPreferences } from "../schemas/schemas_0";
|
|
7
5
|
export { $Command };
|
|
8
6
|
export class GetChannelMembershipPreferencesCommand extends $Command
|
|
9
7
|
.classBuilder()
|
|
10
8
|
.ep(commonParams)
|
|
11
9
|
.m(function (Command, cs, config, o) {
|
|
12
|
-
return [
|
|
13
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
16
11
|
})
|
|
17
12
|
.s("ChimeMessagingService", "GetChannelMembershipPreferences", {})
|
|
18
13
|
.n("ChimeSDKMessagingClient", "GetChannelMembershipPreferencesCommand")
|
|
19
|
-
.
|
|
20
|
-
.ser(se_GetChannelMembershipPreferencesCommand)
|
|
21
|
-
.de(de_GetChannelMembershipPreferencesCommand)
|
|
14
|
+
.sc(GetChannelMembershipPreferences)
|
|
22
15
|
.build() {
|
|
23
16
|
}
|
|
@@ -1,23 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
6
|
-
import { de_GetChannelMessageCommand, se_GetChannelMessageCommand } from "../protocols/Aws_restJson1";
|
|
4
|
+
import { GetChannelMessage } from "../schemas/schemas_0";
|
|
7
5
|
export { $Command };
|
|
8
6
|
export class GetChannelMessageCommand extends $Command
|
|
9
7
|
.classBuilder()
|
|
10
8
|
.ep(commonParams)
|
|
11
9
|
.m(function (Command, cs, config, o) {
|
|
12
|
-
return [
|
|
13
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
16
11
|
})
|
|
17
12
|
.s("ChimeMessagingService", "GetChannelMessage", {})
|
|
18
13
|
.n("ChimeSDKMessagingClient", "GetChannelMessageCommand")
|
|
19
|
-
.
|
|
20
|
-
.ser(se_GetChannelMessageCommand)
|
|
21
|
-
.de(de_GetChannelMessageCommand)
|
|
14
|
+
.sc(GetChannelMessage)
|
|
22
15
|
.build() {
|
|
23
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { GetChannelMessageStatus } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class GetChannelMessageStatusCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("ChimeMessagingService", "GetChannelMessageStatus", {})
|
|
17
13
|
.n("ChimeSDKMessagingClient", "GetChannelMessageStatusCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_GetChannelMessageStatusCommand)
|
|
20
|
-
.de(de_GetChannelMessageStatusCommand)
|
|
14
|
+
.sc(GetChannelMessageStatus)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { GetMessagingSessionEndpoint } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class GetMessagingSessionEndpointCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("ChimeMessagingService", "GetMessagingSessionEndpoint", {})
|
|
17
13
|
.n("ChimeSDKMessagingClient", "GetMessagingSessionEndpointCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_GetMessagingSessionEndpointCommand)
|
|
20
|
-
.de(de_GetMessagingSessionEndpointCommand)
|
|
14
|
+
.sc(GetMessagingSessionEndpoint)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { GetMessagingStreamingConfigurations } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class GetMessagingStreamingConfigurationsCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("ChimeMessagingService", "GetMessagingStreamingConfigurations", {})
|
|
17
13
|
.n("ChimeSDKMessagingClient", "GetMessagingStreamingConfigurationsCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_GetMessagingStreamingConfigurationsCommand)
|
|
20
|
-
.de(de_GetMessagingStreamingConfigurationsCommand)
|
|
14
|
+
.sc(GetMessagingStreamingConfigurations)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,23 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
6
|
-
import { de_ListChannelBansCommand, se_ListChannelBansCommand } from "../protocols/Aws_restJson1";
|
|
4
|
+
import { ListChannelBans } from "../schemas/schemas_0";
|
|
7
5
|
export { $Command };
|
|
8
6
|
export class ListChannelBansCommand extends $Command
|
|
9
7
|
.classBuilder()
|
|
10
8
|
.ep(commonParams)
|
|
11
9
|
.m(function (Command, cs, config, o) {
|
|
12
|
-
return [
|
|
13
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
16
11
|
})
|
|
17
12
|
.s("ChimeMessagingService", "ListChannelBans", {})
|
|
18
13
|
.n("ChimeSDKMessagingClient", "ListChannelBansCommand")
|
|
19
|
-
.
|
|
20
|
-
.ser(se_ListChannelBansCommand)
|
|
21
|
-
.de(de_ListChannelBansCommand)
|
|
14
|
+
.sc(ListChannelBans)
|
|
22
15
|
.build() {
|
|
23
16
|
}
|
|
@@ -1,23 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
6
|
-
import { de_ListChannelFlowsCommand, se_ListChannelFlowsCommand } from "../protocols/Aws_restJson1";
|
|
4
|
+
import { ListChannelFlows } from "../schemas/schemas_0";
|
|
7
5
|
export { $Command };
|
|
8
6
|
export class ListChannelFlowsCommand extends $Command
|
|
9
7
|
.classBuilder()
|
|
10
8
|
.ep(commonParams)
|
|
11
9
|
.m(function (Command, cs, config, o) {
|
|
12
|
-
return [
|
|
13
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
16
11
|
})
|
|
17
12
|
.s("ChimeMessagingService", "ListChannelFlows", {})
|
|
18
13
|
.n("ChimeSDKMessagingClient", "ListChannelFlowsCommand")
|
|
19
|
-
.
|
|
20
|
-
.ser(se_ListChannelFlowsCommand)
|
|
21
|
-
.de(de_ListChannelFlowsCommand)
|
|
14
|
+
.sc(ListChannelFlows)
|
|
22
15
|
.build() {
|
|
23
16
|
}
|
|
@@ -1,23 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
6
|
-
import { de_ListChannelMembershipsCommand, se_ListChannelMembershipsCommand } from "../protocols/Aws_restJson1";
|
|
4
|
+
import { ListChannelMemberships } from "../schemas/schemas_0";
|
|
7
5
|
export { $Command };
|
|
8
6
|
export class ListChannelMembershipsCommand extends $Command
|
|
9
7
|
.classBuilder()
|
|
10
8
|
.ep(commonParams)
|
|
11
9
|
.m(function (Command, cs, config, o) {
|
|
12
|
-
return [
|
|
13
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
16
11
|
})
|
|
17
12
|
.s("ChimeMessagingService", "ListChannelMemberships", {})
|
|
18
13
|
.n("ChimeSDKMessagingClient", "ListChannelMembershipsCommand")
|
|
19
|
-
.
|
|
20
|
-
.ser(se_ListChannelMembershipsCommand)
|
|
21
|
-
.de(de_ListChannelMembershipsCommand)
|
|
14
|
+
.sc(ListChannelMemberships)
|
|
22
15
|
.build() {
|
|
23
16
|
}
|
|
@@ -1,23 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
6
|
-
import { de_ListChannelMembershipsForAppInstanceUserCommand, se_ListChannelMembershipsForAppInstanceUserCommand, } from "../protocols/Aws_restJson1";
|
|
4
|
+
import { ListChannelMembershipsForAppInstanceUser } from "../schemas/schemas_0";
|
|
7
5
|
export { $Command };
|
|
8
6
|
export class ListChannelMembershipsForAppInstanceUserCommand extends $Command
|
|
9
7
|
.classBuilder()
|
|
10
8
|
.ep(commonParams)
|
|
11
9
|
.m(function (Command, cs, config, o) {
|
|
12
|
-
return [
|
|
13
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
16
11
|
})
|
|
17
12
|
.s("ChimeMessagingService", "ListChannelMembershipsForAppInstanceUser", {})
|
|
18
13
|
.n("ChimeSDKMessagingClient", "ListChannelMembershipsForAppInstanceUserCommand")
|
|
19
|
-
.
|
|
20
|
-
.ser(se_ListChannelMembershipsForAppInstanceUserCommand)
|
|
21
|
-
.de(de_ListChannelMembershipsForAppInstanceUserCommand)
|
|
14
|
+
.sc(ListChannelMembershipsForAppInstanceUser)
|
|
22
15
|
.build() {
|
|
23
16
|
}
|
|
@@ -1,23 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
6
|
-
import { de_ListChannelMessagesCommand, se_ListChannelMessagesCommand } from "../protocols/Aws_restJson1";
|
|
4
|
+
import { ListChannelMessages } from "../schemas/schemas_0";
|
|
7
5
|
export { $Command };
|
|
8
6
|
export class ListChannelMessagesCommand extends $Command
|
|
9
7
|
.classBuilder()
|
|
10
8
|
.ep(commonParams)
|
|
11
9
|
.m(function (Command, cs, config, o) {
|
|
12
|
-
return [
|
|
13
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
16
11
|
})
|
|
17
12
|
.s("ChimeMessagingService", "ListChannelMessages", {})
|
|
18
13
|
.n("ChimeSDKMessagingClient", "ListChannelMessagesCommand")
|
|
19
|
-
.
|
|
20
|
-
.ser(se_ListChannelMessagesCommand)
|
|
21
|
-
.de(de_ListChannelMessagesCommand)
|
|
14
|
+
.sc(ListChannelMessages)
|
|
22
15
|
.build() {
|
|
23
16
|
}
|
|
@@ -1,23 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
6
|
-
import { de_ListChannelModeratorsCommand, se_ListChannelModeratorsCommand } from "../protocols/Aws_restJson1";
|
|
4
|
+
import { ListChannelModerators } from "../schemas/schemas_0";
|
|
7
5
|
export { $Command };
|
|
8
6
|
export class ListChannelModeratorsCommand extends $Command
|
|
9
7
|
.classBuilder()
|
|
10
8
|
.ep(commonParams)
|
|
11
9
|
.m(function (Command, cs, config, o) {
|
|
12
|
-
return [
|
|
13
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
16
11
|
})
|
|
17
12
|
.s("ChimeMessagingService", "ListChannelModerators", {})
|
|
18
13
|
.n("ChimeSDKMessagingClient", "ListChannelModeratorsCommand")
|
|
19
|
-
.
|
|
20
|
-
.ser(se_ListChannelModeratorsCommand)
|
|
21
|
-
.de(de_ListChannelModeratorsCommand)
|
|
14
|
+
.sc(ListChannelModerators)
|
|
22
15
|
.build() {
|
|
23
16
|
}
|
|
@@ -1,23 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
6
|
-
import { de_ListChannelsAssociatedWithChannelFlowCommand, se_ListChannelsAssociatedWithChannelFlowCommand, } from "../protocols/Aws_restJson1";
|
|
4
|
+
import { ListChannelsAssociatedWithChannelFlow } from "../schemas/schemas_0";
|
|
7
5
|
export { $Command };
|
|
8
6
|
export class ListChannelsAssociatedWithChannelFlowCommand extends $Command
|
|
9
7
|
.classBuilder()
|
|
10
8
|
.ep(commonParams)
|
|
11
9
|
.m(function (Command, cs, config, o) {
|
|
12
|
-
return [
|
|
13
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
16
11
|
})
|
|
17
12
|
.s("ChimeMessagingService", "ListChannelsAssociatedWithChannelFlow", {})
|
|
18
13
|
.n("ChimeSDKMessagingClient", "ListChannelsAssociatedWithChannelFlowCommand")
|
|
19
|
-
.
|
|
20
|
-
.ser(se_ListChannelsAssociatedWithChannelFlowCommand)
|
|
21
|
-
.de(de_ListChannelsAssociatedWithChannelFlowCommand)
|
|
14
|
+
.sc(ListChannelsAssociatedWithChannelFlow)
|
|
22
15
|
.build() {
|
|
23
16
|
}
|
|
@@ -1,23 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
6
|
-
import { de_ListChannelsCommand, se_ListChannelsCommand } from "../protocols/Aws_restJson1";
|
|
4
|
+
import { ListChannels } from "../schemas/schemas_0";
|
|
7
5
|
export { $Command };
|
|
8
6
|
export class ListChannelsCommand extends $Command
|
|
9
7
|
.classBuilder()
|
|
10
8
|
.ep(commonParams)
|
|
11
9
|
.m(function (Command, cs, config, o) {
|
|
12
|
-
return [
|
|
13
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
16
11
|
})
|
|
17
12
|
.s("ChimeMessagingService", "ListChannels", {})
|
|
18
13
|
.n("ChimeSDKMessagingClient", "ListChannelsCommand")
|
|
19
|
-
.
|
|
20
|
-
.ser(se_ListChannelsCommand)
|
|
21
|
-
.de(de_ListChannelsCommand)
|
|
14
|
+
.sc(ListChannels)
|
|
22
15
|
.build() {
|
|
23
16
|
}
|
|
@@ -1,23 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
6
|
-
import { de_ListChannelsModeratedByAppInstanceUserCommand, se_ListChannelsModeratedByAppInstanceUserCommand, } from "../protocols/Aws_restJson1";
|
|
4
|
+
import { ListChannelsModeratedByAppInstanceUser } from "../schemas/schemas_0";
|
|
7
5
|
export { $Command };
|
|
8
6
|
export class ListChannelsModeratedByAppInstanceUserCommand extends $Command
|
|
9
7
|
.classBuilder()
|
|
10
8
|
.ep(commonParams)
|
|
11
9
|
.m(function (Command, cs, config, o) {
|
|
12
|
-
return [
|
|
13
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
16
11
|
})
|
|
17
12
|
.s("ChimeMessagingService", "ListChannelsModeratedByAppInstanceUser", {})
|
|
18
13
|
.n("ChimeSDKMessagingClient", "ListChannelsModeratedByAppInstanceUserCommand")
|
|
19
|
-
.
|
|
20
|
-
.ser(se_ListChannelsModeratedByAppInstanceUserCommand)
|
|
21
|
-
.de(de_ListChannelsModeratedByAppInstanceUserCommand)
|
|
14
|
+
.sc(ListChannelsModeratedByAppInstanceUser)
|
|
22
15
|
.build() {
|
|
23
16
|
}
|
|
@@ -1,23 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
6
|
-
import { de_ListSubChannelsCommand, se_ListSubChannelsCommand } from "../protocols/Aws_restJson1";
|
|
4
|
+
import { ListSubChannels } from "../schemas/schemas_0";
|
|
7
5
|
export { $Command };
|
|
8
6
|
export class ListSubChannelsCommand extends $Command
|
|
9
7
|
.classBuilder()
|
|
10
8
|
.ep(commonParams)
|
|
11
9
|
.m(function (Command, cs, config, o) {
|
|
12
|
-
return [
|
|
13
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
16
11
|
})
|
|
17
12
|
.s("ChimeMessagingService", "ListSubChannels", {})
|
|
18
13
|
.n("ChimeSDKMessagingClient", "ListSubChannelsCommand")
|
|
19
|
-
.
|
|
20
|
-
.ser(se_ListSubChannelsCommand)
|
|
21
|
-
.de(de_ListSubChannelsCommand)
|
|
14
|
+
.sc(ListSubChannels)
|
|
22
15
|
.build() {
|
|
23
16
|
}
|
|
@@ -1,23 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
6
|
-
import { de_ListTagsForResourceCommand, se_ListTagsForResourceCommand } from "../protocols/Aws_restJson1";
|
|
4
|
+
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
7
5
|
export { $Command };
|
|
8
6
|
export class ListTagsForResourceCommand extends $Command
|
|
9
7
|
.classBuilder()
|
|
10
8
|
.ep(commonParams)
|
|
11
9
|
.m(function (Command, cs, config, o) {
|
|
12
|
-
return [
|
|
13
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
16
11
|
})
|
|
17
12
|
.s("ChimeMessagingService", "ListTagsForResource", {})
|
|
18
13
|
.n("ChimeSDKMessagingClient", "ListTagsForResourceCommand")
|
|
19
|
-
.
|
|
20
|
-
.ser(se_ListTagsForResourceCommand)
|
|
21
|
-
.de(de_ListTagsForResourceCommand)
|
|
14
|
+
.sc(ListTagsForResource)
|
|
22
15
|
.build() {
|
|
23
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { PutChannelExpirationSettings } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class PutChannelExpirationSettingsCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("ChimeMessagingService", "PutChannelExpirationSettings", {})
|
|
17
13
|
.n("ChimeSDKMessagingClient", "PutChannelExpirationSettingsCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_PutChannelExpirationSettingsCommand)
|
|
20
|
-
.de(de_PutChannelExpirationSettingsCommand)
|
|
14
|
+
.sc(PutChannelExpirationSettings)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,23 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
6
|
-
import { de_PutChannelMembershipPreferencesCommand, se_PutChannelMembershipPreferencesCommand, } from "../protocols/Aws_restJson1";
|
|
4
|
+
import { PutChannelMembershipPreferences } from "../schemas/schemas_0";
|
|
7
5
|
export { $Command };
|
|
8
6
|
export class PutChannelMembershipPreferencesCommand extends $Command
|
|
9
7
|
.classBuilder()
|
|
10
8
|
.ep(commonParams)
|
|
11
9
|
.m(function (Command, cs, config, o) {
|
|
12
|
-
return [
|
|
13
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
16
11
|
})
|
|
17
12
|
.s("ChimeMessagingService", "PutChannelMembershipPreferences", {})
|
|
18
13
|
.n("ChimeSDKMessagingClient", "PutChannelMembershipPreferencesCommand")
|
|
19
|
-
.
|
|
20
|
-
.ser(se_PutChannelMembershipPreferencesCommand)
|
|
21
|
-
.de(de_PutChannelMembershipPreferencesCommand)
|
|
14
|
+
.sc(PutChannelMembershipPreferences)
|
|
22
15
|
.build() {
|
|
23
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { PutMessagingStreamingConfigurations } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class PutMessagingStreamingConfigurationsCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("ChimeMessagingService", "PutMessagingStreamingConfigurations", {})
|
|
17
13
|
.n("ChimeSDKMessagingClient", "PutMessagingStreamingConfigurationsCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_PutMessagingStreamingConfigurationsCommand)
|
|
20
|
-
.de(de_PutMessagingStreamingConfigurationsCommand)
|
|
14
|
+
.sc(PutMessagingStreamingConfigurations)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { RedactChannelMessage } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class RedactChannelMessageCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("ChimeMessagingService", "RedactChannelMessage", {})
|
|
17
13
|
.n("ChimeSDKMessagingClient", "RedactChannelMessageCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_RedactChannelMessageCommand)
|
|
20
|
-
.de(de_RedactChannelMessageCommand)
|
|
14
|
+
.sc(RedactChannelMessage)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,23 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
6
|
-
import { de_SearchChannelsCommand, se_SearchChannelsCommand } from "../protocols/Aws_restJson1";
|
|
4
|
+
import { SearchChannels } from "../schemas/schemas_0";
|
|
7
5
|
export { $Command };
|
|
8
6
|
export class SearchChannelsCommand extends $Command
|
|
9
7
|
.classBuilder()
|
|
10
8
|
.ep(commonParams)
|
|
11
9
|
.m(function (Command, cs, config, o) {
|
|
12
|
-
return [
|
|
13
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
16
11
|
})
|
|
17
12
|
.s("ChimeMessagingService", "SearchChannels", {})
|
|
18
13
|
.n("ChimeSDKMessagingClient", "SearchChannelsCommand")
|
|
19
|
-
.
|
|
20
|
-
.ser(se_SearchChannelsCommand)
|
|
21
|
-
.de(de_SearchChannelsCommand)
|
|
14
|
+
.sc(SearchChannels)
|
|
22
15
|
.build() {
|
|
23
16
|
}
|
|
@@ -1,23 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
6
|
-
import { de_SendChannelMessageCommand, se_SendChannelMessageCommand } from "../protocols/Aws_restJson1";
|
|
4
|
+
import { SendChannelMessage } from "../schemas/schemas_0";
|
|
7
5
|
export { $Command };
|
|
8
6
|
export class SendChannelMessageCommand extends $Command
|
|
9
7
|
.classBuilder()
|
|
10
8
|
.ep(commonParams)
|
|
11
9
|
.m(function (Command, cs, config, o) {
|
|
12
|
-
return [
|
|
13
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
16
11
|
})
|
|
17
12
|
.s("ChimeMessagingService", "SendChannelMessage", {})
|
|
18
13
|
.n("ChimeSDKMessagingClient", "SendChannelMessageCommand")
|
|
19
|
-
.
|
|
20
|
-
.ser(se_SendChannelMessageCommand)
|
|
21
|
-
.de(de_SendChannelMessageCommand)
|
|
14
|
+
.sc(SendChannelMessage)
|
|
22
15
|
.build() {
|
|
23
16
|
}
|