@aws-sdk/client-chatbot 3.948.0 → 3.953.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 +557 -414
- package/dist-cjs/runtimeConfig.shared.js +7 -1
- package/dist-es/commands/AssociateToConfigurationCommand.js +2 -2
- package/dist-es/commands/CreateChimeWebhookConfigurationCommand.js +2 -2
- package/dist-es/commands/CreateCustomActionCommand.js +2 -2
- package/dist-es/commands/CreateMicrosoftTeamsChannelConfigurationCommand.js +2 -2
- package/dist-es/commands/CreateSlackChannelConfigurationCommand.js +2 -2
- package/dist-es/commands/DeleteChimeWebhookConfigurationCommand.js +2 -2
- package/dist-es/commands/DeleteCustomActionCommand.js +2 -2
- package/dist-es/commands/DeleteMicrosoftTeamsChannelConfigurationCommand.js +2 -2
- package/dist-es/commands/DeleteMicrosoftTeamsConfiguredTeamCommand.js +2 -2
- package/dist-es/commands/DeleteMicrosoftTeamsUserIdentityCommand.js +2 -2
- package/dist-es/commands/DeleteSlackChannelConfigurationCommand.js +2 -2
- package/dist-es/commands/DeleteSlackUserIdentityCommand.js +2 -2
- package/dist-es/commands/DeleteSlackWorkspaceAuthorizationCommand.js +2 -2
- package/dist-es/commands/DescribeChimeWebhookConfigurationsCommand.js +2 -2
- package/dist-es/commands/DescribeSlackChannelConfigurationsCommand.js +2 -2
- package/dist-es/commands/DescribeSlackUserIdentitiesCommand.js +2 -2
- package/dist-es/commands/DescribeSlackWorkspacesCommand.js +2 -2
- package/dist-es/commands/DisassociateFromConfigurationCommand.js +2 -2
- package/dist-es/commands/GetAccountPreferencesCommand.js +2 -2
- package/dist-es/commands/GetCustomActionCommand.js +2 -2
- package/dist-es/commands/GetMicrosoftTeamsChannelConfigurationCommand.js +2 -2
- package/dist-es/commands/ListAssociationsCommand.js +2 -2
- package/dist-es/commands/ListCustomActionsCommand.js +2 -2
- package/dist-es/commands/ListMicrosoftTeamsChannelConfigurationsCommand.js +2 -2
- package/dist-es/commands/ListMicrosoftTeamsConfiguredTeamsCommand.js +2 -2
- package/dist-es/commands/ListMicrosoftTeamsUserIdentitiesCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateAccountPreferencesCommand.js +2 -2
- package/dist-es/commands/UpdateChimeWebhookConfigurationCommand.js +2 -2
- package/dist-es/commands/UpdateCustomActionCommand.js +2 -2
- package/dist-es/commands/UpdateMicrosoftTeamsChannelConfigurationCommand.js +2 -2
- package/dist-es/commands/UpdateSlackChannelConfigurationCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +7 -1
- package/dist-es/schemas/schemas_0.js +287 -293
- package/dist-types/ChatbotClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +150 -172
- package/dist-types/ts3.4/ChatbotClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +149 -173
- package/package.json +34 -34
|
@@ -26,7 +26,13 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.chatbot",
|
|
32
|
+
xmlNamespace: "http://wheatley.amazonaws.com/orchestration/2017-10-11/",
|
|
33
|
+
version: "2017-10-11",
|
|
34
|
+
serviceTarget: "WheatleyOrchestration_20171011",
|
|
35
|
+
},
|
|
30
36
|
serviceId: config?.serviceId ?? "chatbot",
|
|
31
37
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
32
38
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { AssociateToConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { AssociateToConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AssociateToConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AssociateToConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("WheatleyOrchestration_20171011", "AssociateToConfiguration", {})
|
|
13
13
|
.n("ChatbotClient", "AssociateToConfigurationCommand")
|
|
14
|
-
.sc(AssociateToConfiguration)
|
|
14
|
+
.sc(AssociateToConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateChimeWebhookConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateChimeWebhookConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateChimeWebhookConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateChimeWebhookConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("WheatleyOrchestration_20171011", "CreateChimeWebhookConfiguration", {})
|
|
13
13
|
.n("ChatbotClient", "CreateChimeWebhookConfigurationCommand")
|
|
14
|
-
.sc(CreateChimeWebhookConfiguration)
|
|
14
|
+
.sc(CreateChimeWebhookConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateCustomAction } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateCustomAction$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateCustomActionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateCustomActionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("WheatleyOrchestration_20171011", "CreateCustomAction", {})
|
|
13
13
|
.n("ChatbotClient", "CreateCustomActionCommand")
|
|
14
|
-
.sc(CreateCustomAction)
|
|
14
|
+
.sc(CreateCustomAction$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateMicrosoftTeamsChannelConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateMicrosoftTeamsChannelConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateMicrosoftTeamsChannelConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateMicrosoftTeamsChannelConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("WheatleyOrchestration_20171011", "CreateMicrosoftTeamsChannelConfiguration", {})
|
|
13
13
|
.n("ChatbotClient", "CreateMicrosoftTeamsChannelConfigurationCommand")
|
|
14
|
-
.sc(CreateMicrosoftTeamsChannelConfiguration)
|
|
14
|
+
.sc(CreateMicrosoftTeamsChannelConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateSlackChannelConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateSlackChannelConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateSlackChannelConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateSlackChannelConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("WheatleyOrchestration_20171011", "CreateSlackChannelConfiguration", {})
|
|
13
13
|
.n("ChatbotClient", "CreateSlackChannelConfigurationCommand")
|
|
14
|
-
.sc(CreateSlackChannelConfiguration)
|
|
14
|
+
.sc(CreateSlackChannelConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteChimeWebhookConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteChimeWebhookConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteChimeWebhookConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteChimeWebhookConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("WheatleyOrchestration_20171011", "DeleteChimeWebhookConfiguration", {})
|
|
13
13
|
.n("ChatbotClient", "DeleteChimeWebhookConfigurationCommand")
|
|
14
|
-
.sc(DeleteChimeWebhookConfiguration)
|
|
14
|
+
.sc(DeleteChimeWebhookConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteCustomAction } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteCustomAction$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteCustomActionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteCustomActionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("WheatleyOrchestration_20171011", "DeleteCustomAction", {})
|
|
13
13
|
.n("ChatbotClient", "DeleteCustomActionCommand")
|
|
14
|
-
.sc(DeleteCustomAction)
|
|
14
|
+
.sc(DeleteCustomAction$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteMicrosoftTeamsChannelConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteMicrosoftTeamsChannelConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteMicrosoftTeamsChannelConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteMicrosoftTeamsChannelConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("WheatleyOrchestration_20171011", "DeleteMicrosoftTeamsChannelConfiguration", {})
|
|
13
13
|
.n("ChatbotClient", "DeleteMicrosoftTeamsChannelConfigurationCommand")
|
|
14
|
-
.sc(DeleteMicrosoftTeamsChannelConfiguration)
|
|
14
|
+
.sc(DeleteMicrosoftTeamsChannelConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteMicrosoftTeamsConfiguredTeam } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteMicrosoftTeamsConfiguredTeam$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteMicrosoftTeamsConfiguredTeamCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteMicrosoftTeamsConfiguredTeamCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("WheatleyOrchestration_20171011", "DeleteMicrosoftTeamsConfiguredTeam", {})
|
|
13
13
|
.n("ChatbotClient", "DeleteMicrosoftTeamsConfiguredTeamCommand")
|
|
14
|
-
.sc(DeleteMicrosoftTeamsConfiguredTeam)
|
|
14
|
+
.sc(DeleteMicrosoftTeamsConfiguredTeam$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteMicrosoftTeamsUserIdentity } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteMicrosoftTeamsUserIdentity$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteMicrosoftTeamsUserIdentityCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteMicrosoftTeamsUserIdentityCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("WheatleyOrchestration_20171011", "DeleteMicrosoftTeamsUserIdentity", {})
|
|
13
13
|
.n("ChatbotClient", "DeleteMicrosoftTeamsUserIdentityCommand")
|
|
14
|
-
.sc(DeleteMicrosoftTeamsUserIdentity)
|
|
14
|
+
.sc(DeleteMicrosoftTeamsUserIdentity$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteSlackChannelConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteSlackChannelConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteSlackChannelConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteSlackChannelConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("WheatleyOrchestration_20171011", "DeleteSlackChannelConfiguration", {})
|
|
13
13
|
.n("ChatbotClient", "DeleteSlackChannelConfigurationCommand")
|
|
14
|
-
.sc(DeleteSlackChannelConfiguration)
|
|
14
|
+
.sc(DeleteSlackChannelConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteSlackUserIdentity } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteSlackUserIdentity$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteSlackUserIdentityCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteSlackUserIdentityCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("WheatleyOrchestration_20171011", "DeleteSlackUserIdentity", {})
|
|
13
13
|
.n("ChatbotClient", "DeleteSlackUserIdentityCommand")
|
|
14
|
-
.sc(DeleteSlackUserIdentity)
|
|
14
|
+
.sc(DeleteSlackUserIdentity$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteSlackWorkspaceAuthorization } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteSlackWorkspaceAuthorization$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteSlackWorkspaceAuthorizationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteSlackWorkspaceAuthorizationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("WheatleyOrchestration_20171011", "DeleteSlackWorkspaceAuthorization", {})
|
|
13
13
|
.n("ChatbotClient", "DeleteSlackWorkspaceAuthorizationCommand")
|
|
14
|
-
.sc(DeleteSlackWorkspaceAuthorization)
|
|
14
|
+
.sc(DeleteSlackWorkspaceAuthorization$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeChimeWebhookConfigurations } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeChimeWebhookConfigurations$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeChimeWebhookConfigurationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeChimeWebhookConfigurationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("WheatleyOrchestration_20171011", "DescribeChimeWebhookConfigurations", {})
|
|
13
13
|
.n("ChatbotClient", "DescribeChimeWebhookConfigurationsCommand")
|
|
14
|
-
.sc(DescribeChimeWebhookConfigurations)
|
|
14
|
+
.sc(DescribeChimeWebhookConfigurations$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeSlackChannelConfigurations } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeSlackChannelConfigurations$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeSlackChannelConfigurationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeSlackChannelConfigurationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("WheatleyOrchestration_20171011", "DescribeSlackChannelConfigurations", {})
|
|
13
13
|
.n("ChatbotClient", "DescribeSlackChannelConfigurationsCommand")
|
|
14
|
-
.sc(DescribeSlackChannelConfigurations)
|
|
14
|
+
.sc(DescribeSlackChannelConfigurations$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeSlackUserIdentities } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeSlackUserIdentities$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeSlackUserIdentitiesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeSlackUserIdentitiesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("WheatleyOrchestration_20171011", "DescribeSlackUserIdentities", {})
|
|
13
13
|
.n("ChatbotClient", "DescribeSlackUserIdentitiesCommand")
|
|
14
|
-
.sc(DescribeSlackUserIdentities)
|
|
14
|
+
.sc(DescribeSlackUserIdentities$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeSlackWorkspaces } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeSlackWorkspaces$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeSlackWorkspacesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeSlackWorkspacesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("WheatleyOrchestration_20171011", "DescribeSlackWorkspaces", {})
|
|
13
13
|
.n("ChatbotClient", "DescribeSlackWorkspacesCommand")
|
|
14
|
-
.sc(DescribeSlackWorkspaces)
|
|
14
|
+
.sc(DescribeSlackWorkspaces$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DisassociateFromConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { DisassociateFromConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DisassociateFromConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DisassociateFromConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("WheatleyOrchestration_20171011", "DisassociateFromConfiguration", {})
|
|
13
13
|
.n("ChatbotClient", "DisassociateFromConfigurationCommand")
|
|
14
|
-
.sc(DisassociateFromConfiguration)
|
|
14
|
+
.sc(DisassociateFromConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetAccountPreferences } from "../schemas/schemas_0";
|
|
4
|
+
import { GetAccountPreferences$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetAccountPreferencesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetAccountPreferencesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("WheatleyOrchestration_20171011", "GetAccountPreferences", {})
|
|
13
13
|
.n("ChatbotClient", "GetAccountPreferencesCommand")
|
|
14
|
-
.sc(GetAccountPreferences)
|
|
14
|
+
.sc(GetAccountPreferences$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetCustomAction } from "../schemas/schemas_0";
|
|
4
|
+
import { GetCustomAction$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetCustomActionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetCustomActionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("WheatleyOrchestration_20171011", "GetCustomAction", {})
|
|
13
13
|
.n("ChatbotClient", "GetCustomActionCommand")
|
|
14
|
-
.sc(GetCustomAction)
|
|
14
|
+
.sc(GetCustomAction$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetMicrosoftTeamsChannelConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { GetMicrosoftTeamsChannelConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetMicrosoftTeamsChannelConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetMicrosoftTeamsChannelConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("WheatleyOrchestration_20171011", "GetMicrosoftTeamsChannelConfiguration", {})
|
|
13
13
|
.n("ChatbotClient", "GetMicrosoftTeamsChannelConfigurationCommand")
|
|
14
|
-
.sc(GetMicrosoftTeamsChannelConfiguration)
|
|
14
|
+
.sc(GetMicrosoftTeamsChannelConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListAssociations } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAssociations$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAssociationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAssociationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("WheatleyOrchestration_20171011", "ListAssociations", {})
|
|
13
13
|
.n("ChatbotClient", "ListAssociationsCommand")
|
|
14
|
-
.sc(ListAssociations)
|
|
14
|
+
.sc(ListAssociations$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListCustomActions } from "../schemas/schemas_0";
|
|
4
|
+
import { ListCustomActions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListCustomActionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListCustomActionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("WheatleyOrchestration_20171011", "ListCustomActions", {})
|
|
13
13
|
.n("ChatbotClient", "ListCustomActionsCommand")
|
|
14
|
-
.sc(ListCustomActions)
|
|
14
|
+
.sc(ListCustomActions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListMicrosoftTeamsChannelConfigurations } from "../schemas/schemas_0";
|
|
4
|
+
import { ListMicrosoftTeamsChannelConfigurations$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListMicrosoftTeamsChannelConfigurationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListMicrosoftTeamsChannelConfigurationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("WheatleyOrchestration_20171011", "ListMicrosoftTeamsChannelConfigurations", {})
|
|
13
13
|
.n("ChatbotClient", "ListMicrosoftTeamsChannelConfigurationsCommand")
|
|
14
|
-
.sc(ListMicrosoftTeamsChannelConfigurations)
|
|
14
|
+
.sc(ListMicrosoftTeamsChannelConfigurations$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListMicrosoftTeamsConfiguredTeams } from "../schemas/schemas_0";
|
|
4
|
+
import { ListMicrosoftTeamsConfiguredTeams$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListMicrosoftTeamsConfiguredTeamsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListMicrosoftTeamsConfiguredTeamsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("WheatleyOrchestration_20171011", "ListMicrosoftTeamsConfiguredTeams", {})
|
|
13
13
|
.n("ChatbotClient", "ListMicrosoftTeamsConfiguredTeamsCommand")
|
|
14
|
-
.sc(ListMicrosoftTeamsConfiguredTeams)
|
|
14
|
+
.sc(ListMicrosoftTeamsConfiguredTeams$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListMicrosoftTeamsUserIdentities } from "../schemas/schemas_0";
|
|
4
|
+
import { ListMicrosoftTeamsUserIdentities$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListMicrosoftTeamsUserIdentitiesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListMicrosoftTeamsUserIdentitiesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("WheatleyOrchestration_20171011", "ListMicrosoftTeamsUserIdentities", {})
|
|
13
13
|
.n("ChatbotClient", "ListMicrosoftTeamsUserIdentitiesCommand")
|
|
14
|
-
.sc(ListMicrosoftTeamsUserIdentities)
|
|
14
|
+
.sc(ListMicrosoftTeamsUserIdentities$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("WheatleyOrchestration_20171011", "ListTagsForResource", {})
|
|
13
13
|
.n("ChatbotClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("WheatleyOrchestration_20171011", "TagResource", {})
|
|
13
13
|
.n("ChatbotClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("WheatleyOrchestration_20171011", "UntagResource", {})
|
|
13
13
|
.n("ChatbotClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateAccountPreferences } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateAccountPreferences$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateAccountPreferencesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateAccountPreferencesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("WheatleyOrchestration_20171011", "UpdateAccountPreferences", {})
|
|
13
13
|
.n("ChatbotClient", "UpdateAccountPreferencesCommand")
|
|
14
|
-
.sc(UpdateAccountPreferences)
|
|
14
|
+
.sc(UpdateAccountPreferences$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateChimeWebhookConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateChimeWebhookConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateChimeWebhookConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateChimeWebhookConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("WheatleyOrchestration_20171011", "UpdateChimeWebhookConfiguration", {})
|
|
13
13
|
.n("ChatbotClient", "UpdateChimeWebhookConfigurationCommand")
|
|
14
|
-
.sc(UpdateChimeWebhookConfiguration)
|
|
14
|
+
.sc(UpdateChimeWebhookConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateCustomAction } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateCustomAction$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateCustomActionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateCustomActionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("WheatleyOrchestration_20171011", "UpdateCustomAction", {})
|
|
13
13
|
.n("ChatbotClient", "UpdateCustomActionCommand")
|
|
14
|
-
.sc(UpdateCustomAction)
|
|
14
|
+
.sc(UpdateCustomAction$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateMicrosoftTeamsChannelConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateMicrosoftTeamsChannelConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateMicrosoftTeamsChannelConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateMicrosoftTeamsChannelConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("WheatleyOrchestration_20171011", "UpdateMicrosoftTeamsChannelConfiguration", {})
|
|
13
13
|
.n("ChatbotClient", "UpdateMicrosoftTeamsChannelConfigurationCommand")
|
|
14
|
-
.sc(UpdateMicrosoftTeamsChannelConfiguration)
|
|
14
|
+
.sc(UpdateMicrosoftTeamsChannelConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateSlackChannelConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateSlackChannelConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateSlackChannelConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateSlackChannelConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("WheatleyOrchestration_20171011", "UpdateSlackChannelConfiguration", {})
|
|
13
13
|
.n("ChatbotClient", "UpdateSlackChannelConfigurationCommand")
|
|
14
|
-
.sc(UpdateSlackChannelConfiguration)
|
|
14
|
+
.sc(UpdateSlackChannelConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|