@aws-sdk/client-chatbot 3.1074.0 → 3.1076.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 +1794 -15
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
- package/package.json +8 -8
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/ChatbotServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -435
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -39
- package/dist-cjs/schemas/schemas_0.js +0 -1111
|
@@ -14,7 +14,7 @@ export declare const getRuntimeConfig: (config: ChatbotClientConfig) => {
|
|
|
14
14
|
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
15
15
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
16
16
|
sha256: import("@smithy/types").HashConstructor;
|
|
17
|
-
streamCollector: import("
|
|
17
|
+
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
18
18
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
19
19
|
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
20
20
|
cacheMiddleware?: boolean | undefined;
|
|
@@ -15,7 +15,7 @@ export declare const getRuntimeConfig: (config: ChatbotClientConfig) => {
|
|
|
15
15
|
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
16
16
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
17
17
|
sha256: import("@smithy/types").HashConstructor;
|
|
18
|
-
streamCollector: import("
|
|
18
|
+
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
19
19
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
20
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
21
|
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -15,7 +15,7 @@ export declare const getRuntimeConfig: (config: ChatbotClientConfig) => {
|
|
|
15
15
|
apiVersion: string;
|
|
16
16
|
urlParser: import("@smithy/types").UrlParser;
|
|
17
17
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
18
|
-
streamCollector: import("
|
|
18
|
+
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
19
19
|
base64Decoder: import("@smithy/types").Decoder;
|
|
20
20
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
21
21
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -21,7 +21,13 @@ export declare const getRuntimeConfig: (config: ChatbotClientConfig) => {
|
|
|
21
21
|
| RequestHandler;
|
|
22
22
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
23
23
|
sha256: import("@smithy/types").HashConstructor;
|
|
24
|
-
streamCollector:
|
|
24
|
+
streamCollector: (
|
|
25
|
+
stream:
|
|
26
|
+
| import("stream").Readable
|
|
27
|
+
| import("stream/web").ReadableStream
|
|
28
|
+
| ReadableStream
|
|
29
|
+
| Blob
|
|
30
|
+
) => Promise<Uint8Array>;
|
|
25
31
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
26
32
|
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
27
33
|
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
@@ -22,7 +22,13 @@ export declare const getRuntimeConfig: (config: ChatbotClientConfig) => {
|
|
|
22
22
|
| import("@smithy/core/protocols").HttpHandler<any>;
|
|
23
23
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
24
24
|
sha256: import("@smithy/types").HashConstructor;
|
|
25
|
-
streamCollector:
|
|
25
|
+
streamCollector: (
|
|
26
|
+
stream:
|
|
27
|
+
| import("stream").Readable
|
|
28
|
+
| import("stream/web").ReadableStream
|
|
29
|
+
| ReadableStream
|
|
30
|
+
| Blob
|
|
31
|
+
) => Promise<Uint8Array>;
|
|
26
32
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
27
33
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
28
34
|
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -20,7 +20,13 @@ export declare const getRuntimeConfig: (config: ChatbotClientConfig) => {
|
|
|
20
20
|
apiVersion: string;
|
|
21
21
|
urlParser: import("@smithy/types").UrlParser;
|
|
22
22
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
23
|
-
streamCollector:
|
|
23
|
+
streamCollector: (
|
|
24
|
+
stream:
|
|
25
|
+
| import("stream").Readable
|
|
26
|
+
| import("stream/web").ReadableStream
|
|
27
|
+
| ReadableStream
|
|
28
|
+
| Blob
|
|
29
|
+
) => Promise<Uint8Array>;
|
|
24
30
|
base64Decoder: import("@smithy/types").Decoder;
|
|
25
31
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
26
32
|
utf8Decoder: import("@smithy/types").Decoder;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-chatbot",
|
|
3
3
|
"description": "AWS SDK for JavaScript Chatbot Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1076.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
@@ -21,13 +21,13 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.974.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/types": "^3.973.
|
|
27
|
-
"@smithy/core": "^3.
|
|
28
|
-
"@smithy/fetch-http-handler": "^5.
|
|
29
|
-
"@smithy/node-http-handler": "^4.
|
|
30
|
-
"@smithy/types": "^4.
|
|
24
|
+
"@aws-sdk/core": "^3.974.24",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.59",
|
|
26
|
+
"@aws-sdk/types": "^3.973.14",
|
|
27
|
+
"@smithy/core": "^3.27.0",
|
|
28
|
+
"@smithy/fetch-http-handler": "^5.6.0",
|
|
29
|
+
"@smithy/node-http-handler": "^4.9.0",
|
|
30
|
+
"@smithy/types": "^4.15.0",
|
|
31
31
|
"tslib": "^2.6.2"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
const { resolveAwsSdkSigV4Config } = require("@aws-sdk/core/httpAuthSchemes");
|
|
2
|
-
const { getSmithyContext, normalizeProvider } = require("@smithy/core/client");
|
|
3
|
-
exports.defaultChatbotHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
4
|
-
return {
|
|
5
|
-
operation: getSmithyContext(context).operation,
|
|
6
|
-
region: await normalizeProvider(config.region)() || (() => {
|
|
7
|
-
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
8
|
-
})(),
|
|
9
|
-
};
|
|
10
|
-
};
|
|
11
|
-
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
12
|
-
return {
|
|
13
|
-
schemeId: "aws.auth#sigv4",
|
|
14
|
-
signingProperties: {
|
|
15
|
-
name: "chatbot",
|
|
16
|
-
region: authParameters.region,
|
|
17
|
-
},
|
|
18
|
-
propertiesExtractor: (config, context) => ({
|
|
19
|
-
signingProperties: {
|
|
20
|
-
config,
|
|
21
|
-
context,
|
|
22
|
-
},
|
|
23
|
-
}),
|
|
24
|
-
};
|
|
25
|
-
}
|
|
26
|
-
exports.defaultChatbotHttpAuthSchemeProvider = (authParameters) => {
|
|
27
|
-
const options = [];
|
|
28
|
-
switch (authParameters.operation) {
|
|
29
|
-
default: {
|
|
30
|
-
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
return options;
|
|
34
|
-
};
|
|
35
|
-
exports.resolveHttpAuthSchemeConfig = (config) => {
|
|
36
|
-
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
37
|
-
return Object.assign(config_0, {
|
|
38
|
-
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
39
|
-
});
|
|
40
|
-
};
|
package/dist-cjs/endpoint/bdd.js
DELETED
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
const { BinaryDecisionDiagram } = require("@smithy/core/endpoints");
|
|
2
|
-
const k = "ref";
|
|
3
|
-
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
4
|
-
const _data = {
|
|
5
|
-
conditions: [
|
|
6
|
-
[c, [g]],
|
|
7
|
-
[c, j],
|
|
8
|
-
["aws.partition", j, d],
|
|
9
|
-
[e, [{ [k]: "UseFIPS" }, b]],
|
|
10
|
-
[e, [{ [k]: "UseDualStack" }, b]],
|
|
11
|
-
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
12
|
-
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
13
|
-
],
|
|
14
|
-
results: [
|
|
15
|
-
[a],
|
|
16
|
-
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
17
|
-
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
18
|
-
[g, i],
|
|
19
|
-
["https://chatbot-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
20
|
-
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
21
|
-
["https://chatbot-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
22
|
-
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
23
|
-
["https://chatbot.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
24
|
-
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
25
|
-
["https://chatbot.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
26
|
-
[a, "Invalid Configuration: Missing Region"]
|
|
27
|
-
]
|
|
28
|
-
};
|
|
29
|
-
const root = 2;
|
|
30
|
-
const r = 100_000_000;
|
|
31
|
-
const nodes = new Int32Array([
|
|
32
|
-
-1, 1, -1,
|
|
33
|
-
0, 12, 3,
|
|
34
|
-
1, 4, r + 11,
|
|
35
|
-
2, 5, r + 11,
|
|
36
|
-
3, 8, 6,
|
|
37
|
-
4, 7, r + 10,
|
|
38
|
-
5, r + 8, r + 9,
|
|
39
|
-
4, 10, 9,
|
|
40
|
-
6, r + 6, r + 7,
|
|
41
|
-
5, 11, r + 5,
|
|
42
|
-
6, r + 4, r + 5,
|
|
43
|
-
3, r + 1, 13,
|
|
44
|
-
4, r + 2, r + 3,
|
|
45
|
-
]);
|
|
46
|
-
exports.bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
const { awsEndpointFunctions } = require("@aws-sdk/core/client");
|
|
2
|
-
const { customEndpointFunctions, decideEndpoint, EndpointCache } = require("@smithy/core/endpoints");
|
|
3
|
-
const { bdd } = require("./bdd");
|
|
4
|
-
const cache = new EndpointCache({
|
|
5
|
-
size: 50,
|
|
6
|
-
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
7
|
-
});
|
|
8
|
-
exports.defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
9
|
-
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
10
|
-
endpointParams: endpointParams,
|
|
11
|
-
logger: context.logger,
|
|
12
|
-
}));
|
|
13
|
-
};
|
|
14
|
-
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
const { ServiceException: __ServiceException } = require("@smithy/core/client");
|
|
2
|
-
exports.__ServiceException = __ServiceException;
|
|
3
|
-
exports.ChatbotServiceException = class ChatbotServiceException extends __ServiceException {
|
|
4
|
-
constructor(options) {
|
|
5
|
-
super(options);
|
|
6
|
-
Object.setPrototypeOf(this, ChatbotServiceException.prototype);
|
|
7
|
-
}
|
|
8
|
-
};
|
|
@@ -1,435 +0,0 @@
|
|
|
1
|
-
const { ChatbotServiceException: __BaseException } = require("./ChatbotServiceException");
|
|
2
|
-
exports.InternalServiceError = class InternalServiceError extends __BaseException {
|
|
3
|
-
name = "InternalServiceError";
|
|
4
|
-
$fault = "server";
|
|
5
|
-
Message;
|
|
6
|
-
constructor(opts) {
|
|
7
|
-
super({
|
|
8
|
-
name: "InternalServiceError",
|
|
9
|
-
$fault: "server",
|
|
10
|
-
...opts,
|
|
11
|
-
});
|
|
12
|
-
Object.setPrototypeOf(this, InternalServiceError.prototype);
|
|
13
|
-
this.Message = opts.Message;
|
|
14
|
-
}
|
|
15
|
-
};
|
|
16
|
-
exports.InvalidRequestException = class InvalidRequestException extends __BaseException {
|
|
17
|
-
name = "InvalidRequestException";
|
|
18
|
-
$fault = "client";
|
|
19
|
-
constructor(opts) {
|
|
20
|
-
super({
|
|
21
|
-
name: "InvalidRequestException",
|
|
22
|
-
$fault: "client",
|
|
23
|
-
...opts,
|
|
24
|
-
});
|
|
25
|
-
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
26
|
-
}
|
|
27
|
-
};
|
|
28
|
-
exports.UnauthorizedException = class UnauthorizedException extends __BaseException {
|
|
29
|
-
name = "UnauthorizedException";
|
|
30
|
-
$fault = "client";
|
|
31
|
-
constructor(opts) {
|
|
32
|
-
super({
|
|
33
|
-
name: "UnauthorizedException",
|
|
34
|
-
$fault: "client",
|
|
35
|
-
...opts,
|
|
36
|
-
});
|
|
37
|
-
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
38
|
-
}
|
|
39
|
-
};
|
|
40
|
-
exports.ConflictException = class ConflictException extends __BaseException {
|
|
41
|
-
name = "ConflictException";
|
|
42
|
-
$fault = "client";
|
|
43
|
-
constructor(opts) {
|
|
44
|
-
super({
|
|
45
|
-
name: "ConflictException",
|
|
46
|
-
$fault: "client",
|
|
47
|
-
...opts,
|
|
48
|
-
});
|
|
49
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
50
|
-
}
|
|
51
|
-
};
|
|
52
|
-
exports.CreateChimeWebhookConfigurationException = class CreateChimeWebhookConfigurationException extends __BaseException {
|
|
53
|
-
name = "CreateChimeWebhookConfigurationException";
|
|
54
|
-
$fault = "server";
|
|
55
|
-
Message;
|
|
56
|
-
constructor(opts) {
|
|
57
|
-
super({
|
|
58
|
-
name: "CreateChimeWebhookConfigurationException",
|
|
59
|
-
$fault: "server",
|
|
60
|
-
...opts,
|
|
61
|
-
});
|
|
62
|
-
Object.setPrototypeOf(this, CreateChimeWebhookConfigurationException.prototype);
|
|
63
|
-
this.Message = opts.Message;
|
|
64
|
-
}
|
|
65
|
-
};
|
|
66
|
-
exports.InvalidParameterException = class InvalidParameterException extends __BaseException {
|
|
67
|
-
name = "InvalidParameterException";
|
|
68
|
-
$fault = "client";
|
|
69
|
-
constructor(opts) {
|
|
70
|
-
super({
|
|
71
|
-
name: "InvalidParameterException",
|
|
72
|
-
$fault: "client",
|
|
73
|
-
...opts,
|
|
74
|
-
});
|
|
75
|
-
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
76
|
-
}
|
|
77
|
-
};
|
|
78
|
-
exports.LimitExceededException = class LimitExceededException extends __BaseException {
|
|
79
|
-
name = "LimitExceededException";
|
|
80
|
-
$fault = "client";
|
|
81
|
-
constructor(opts) {
|
|
82
|
-
super({
|
|
83
|
-
name: "LimitExceededException",
|
|
84
|
-
$fault: "client",
|
|
85
|
-
...opts,
|
|
86
|
-
});
|
|
87
|
-
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
88
|
-
}
|
|
89
|
-
};
|
|
90
|
-
exports.CreateTeamsChannelConfigurationException = class CreateTeamsChannelConfigurationException extends __BaseException {
|
|
91
|
-
name = "CreateTeamsChannelConfigurationException";
|
|
92
|
-
$fault = "server";
|
|
93
|
-
Message;
|
|
94
|
-
constructor(opts) {
|
|
95
|
-
super({
|
|
96
|
-
name: "CreateTeamsChannelConfigurationException",
|
|
97
|
-
$fault: "server",
|
|
98
|
-
...opts,
|
|
99
|
-
});
|
|
100
|
-
Object.setPrototypeOf(this, CreateTeamsChannelConfigurationException.prototype);
|
|
101
|
-
this.Message = opts.Message;
|
|
102
|
-
}
|
|
103
|
-
};
|
|
104
|
-
exports.CreateSlackChannelConfigurationException = class CreateSlackChannelConfigurationException extends __BaseException {
|
|
105
|
-
name = "CreateSlackChannelConfigurationException";
|
|
106
|
-
$fault = "server";
|
|
107
|
-
Message;
|
|
108
|
-
constructor(opts) {
|
|
109
|
-
super({
|
|
110
|
-
name: "CreateSlackChannelConfigurationException",
|
|
111
|
-
$fault: "server",
|
|
112
|
-
...opts,
|
|
113
|
-
});
|
|
114
|
-
Object.setPrototypeOf(this, CreateSlackChannelConfigurationException.prototype);
|
|
115
|
-
this.Message = opts.Message;
|
|
116
|
-
}
|
|
117
|
-
};
|
|
118
|
-
exports.ResourceNotFoundException = class ResourceNotFoundException extends __BaseException {
|
|
119
|
-
name = "ResourceNotFoundException";
|
|
120
|
-
$fault = "client";
|
|
121
|
-
Message;
|
|
122
|
-
constructor(opts) {
|
|
123
|
-
super({
|
|
124
|
-
name: "ResourceNotFoundException",
|
|
125
|
-
$fault: "client",
|
|
126
|
-
...opts,
|
|
127
|
-
});
|
|
128
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
129
|
-
this.Message = opts.Message;
|
|
130
|
-
}
|
|
131
|
-
};
|
|
132
|
-
exports.DeleteChimeWebhookConfigurationException = class DeleteChimeWebhookConfigurationException extends __BaseException {
|
|
133
|
-
name = "DeleteChimeWebhookConfigurationException";
|
|
134
|
-
$fault = "server";
|
|
135
|
-
Message;
|
|
136
|
-
constructor(opts) {
|
|
137
|
-
super({
|
|
138
|
-
name: "DeleteChimeWebhookConfigurationException",
|
|
139
|
-
$fault: "server",
|
|
140
|
-
...opts,
|
|
141
|
-
});
|
|
142
|
-
Object.setPrototypeOf(this, DeleteChimeWebhookConfigurationException.prototype);
|
|
143
|
-
this.Message = opts.Message;
|
|
144
|
-
}
|
|
145
|
-
};
|
|
146
|
-
exports.DeleteTeamsChannelConfigurationException = class DeleteTeamsChannelConfigurationException extends __BaseException {
|
|
147
|
-
name = "DeleteTeamsChannelConfigurationException";
|
|
148
|
-
$fault = "server";
|
|
149
|
-
Message;
|
|
150
|
-
constructor(opts) {
|
|
151
|
-
super({
|
|
152
|
-
name: "DeleteTeamsChannelConfigurationException",
|
|
153
|
-
$fault: "server",
|
|
154
|
-
...opts,
|
|
155
|
-
});
|
|
156
|
-
Object.setPrototypeOf(this, DeleteTeamsChannelConfigurationException.prototype);
|
|
157
|
-
this.Message = opts.Message;
|
|
158
|
-
}
|
|
159
|
-
};
|
|
160
|
-
exports.DeleteTeamsConfiguredTeamException = class DeleteTeamsConfiguredTeamException extends __BaseException {
|
|
161
|
-
name = "DeleteTeamsConfiguredTeamException";
|
|
162
|
-
$fault = "server";
|
|
163
|
-
Message;
|
|
164
|
-
constructor(opts) {
|
|
165
|
-
super({
|
|
166
|
-
name: "DeleteTeamsConfiguredTeamException",
|
|
167
|
-
$fault: "server",
|
|
168
|
-
...opts,
|
|
169
|
-
});
|
|
170
|
-
Object.setPrototypeOf(this, DeleteTeamsConfiguredTeamException.prototype);
|
|
171
|
-
this.Message = opts.Message;
|
|
172
|
-
}
|
|
173
|
-
};
|
|
174
|
-
exports.DeleteMicrosoftTeamsUserIdentityException = class DeleteMicrosoftTeamsUserIdentityException extends __BaseException {
|
|
175
|
-
name = "DeleteMicrosoftTeamsUserIdentityException";
|
|
176
|
-
$fault = "server";
|
|
177
|
-
Message;
|
|
178
|
-
constructor(opts) {
|
|
179
|
-
super({
|
|
180
|
-
name: "DeleteMicrosoftTeamsUserIdentityException",
|
|
181
|
-
$fault: "server",
|
|
182
|
-
...opts,
|
|
183
|
-
});
|
|
184
|
-
Object.setPrototypeOf(this, DeleteMicrosoftTeamsUserIdentityException.prototype);
|
|
185
|
-
this.Message = opts.Message;
|
|
186
|
-
}
|
|
187
|
-
};
|
|
188
|
-
exports.DeleteSlackChannelConfigurationException = class DeleteSlackChannelConfigurationException extends __BaseException {
|
|
189
|
-
name = "DeleteSlackChannelConfigurationException";
|
|
190
|
-
$fault = "server";
|
|
191
|
-
Message;
|
|
192
|
-
constructor(opts) {
|
|
193
|
-
super({
|
|
194
|
-
name: "DeleteSlackChannelConfigurationException",
|
|
195
|
-
$fault: "server",
|
|
196
|
-
...opts,
|
|
197
|
-
});
|
|
198
|
-
Object.setPrototypeOf(this, DeleteSlackChannelConfigurationException.prototype);
|
|
199
|
-
this.Message = opts.Message;
|
|
200
|
-
}
|
|
201
|
-
};
|
|
202
|
-
exports.DeleteSlackUserIdentityException = class DeleteSlackUserIdentityException extends __BaseException {
|
|
203
|
-
name = "DeleteSlackUserIdentityException";
|
|
204
|
-
$fault = "server";
|
|
205
|
-
Message;
|
|
206
|
-
constructor(opts) {
|
|
207
|
-
super({
|
|
208
|
-
name: "DeleteSlackUserIdentityException",
|
|
209
|
-
$fault: "server",
|
|
210
|
-
...opts,
|
|
211
|
-
});
|
|
212
|
-
Object.setPrototypeOf(this, DeleteSlackUserIdentityException.prototype);
|
|
213
|
-
this.Message = opts.Message;
|
|
214
|
-
}
|
|
215
|
-
};
|
|
216
|
-
exports.DeleteSlackWorkspaceAuthorizationFault = class DeleteSlackWorkspaceAuthorizationFault extends __BaseException {
|
|
217
|
-
name = "DeleteSlackWorkspaceAuthorizationFault";
|
|
218
|
-
$fault = "server";
|
|
219
|
-
Message;
|
|
220
|
-
constructor(opts) {
|
|
221
|
-
super({
|
|
222
|
-
name: "DeleteSlackWorkspaceAuthorizationFault",
|
|
223
|
-
$fault: "server",
|
|
224
|
-
...opts,
|
|
225
|
-
});
|
|
226
|
-
Object.setPrototypeOf(this, DeleteSlackWorkspaceAuthorizationFault.prototype);
|
|
227
|
-
this.Message = opts.Message;
|
|
228
|
-
}
|
|
229
|
-
};
|
|
230
|
-
exports.DescribeChimeWebhookConfigurationsException = class DescribeChimeWebhookConfigurationsException extends __BaseException {
|
|
231
|
-
name = "DescribeChimeWebhookConfigurationsException";
|
|
232
|
-
$fault = "server";
|
|
233
|
-
Message;
|
|
234
|
-
constructor(opts) {
|
|
235
|
-
super({
|
|
236
|
-
name: "DescribeChimeWebhookConfigurationsException",
|
|
237
|
-
$fault: "server",
|
|
238
|
-
...opts,
|
|
239
|
-
});
|
|
240
|
-
Object.setPrototypeOf(this, DescribeChimeWebhookConfigurationsException.prototype);
|
|
241
|
-
this.Message = opts.Message;
|
|
242
|
-
}
|
|
243
|
-
};
|
|
244
|
-
exports.DescribeSlackChannelConfigurationsException = class DescribeSlackChannelConfigurationsException extends __BaseException {
|
|
245
|
-
name = "DescribeSlackChannelConfigurationsException";
|
|
246
|
-
$fault = "server";
|
|
247
|
-
Message;
|
|
248
|
-
constructor(opts) {
|
|
249
|
-
super({
|
|
250
|
-
name: "DescribeSlackChannelConfigurationsException",
|
|
251
|
-
$fault: "server",
|
|
252
|
-
...opts,
|
|
253
|
-
});
|
|
254
|
-
Object.setPrototypeOf(this, DescribeSlackChannelConfigurationsException.prototype);
|
|
255
|
-
this.Message = opts.Message;
|
|
256
|
-
}
|
|
257
|
-
};
|
|
258
|
-
exports.DescribeSlackUserIdentitiesException = class DescribeSlackUserIdentitiesException extends __BaseException {
|
|
259
|
-
name = "DescribeSlackUserIdentitiesException";
|
|
260
|
-
$fault = "server";
|
|
261
|
-
Message;
|
|
262
|
-
constructor(opts) {
|
|
263
|
-
super({
|
|
264
|
-
name: "DescribeSlackUserIdentitiesException",
|
|
265
|
-
$fault: "server",
|
|
266
|
-
...opts,
|
|
267
|
-
});
|
|
268
|
-
Object.setPrototypeOf(this, DescribeSlackUserIdentitiesException.prototype);
|
|
269
|
-
this.Message = opts.Message;
|
|
270
|
-
}
|
|
271
|
-
};
|
|
272
|
-
exports.DescribeSlackWorkspacesException = class DescribeSlackWorkspacesException extends __BaseException {
|
|
273
|
-
name = "DescribeSlackWorkspacesException";
|
|
274
|
-
$fault = "server";
|
|
275
|
-
Message;
|
|
276
|
-
constructor(opts) {
|
|
277
|
-
super({
|
|
278
|
-
name: "DescribeSlackWorkspacesException",
|
|
279
|
-
$fault: "server",
|
|
280
|
-
...opts,
|
|
281
|
-
});
|
|
282
|
-
Object.setPrototypeOf(this, DescribeSlackWorkspacesException.prototype);
|
|
283
|
-
this.Message = opts.Message;
|
|
284
|
-
}
|
|
285
|
-
};
|
|
286
|
-
exports.GetAccountPreferencesException = class GetAccountPreferencesException extends __BaseException {
|
|
287
|
-
name = "GetAccountPreferencesException";
|
|
288
|
-
$fault = "server";
|
|
289
|
-
Message;
|
|
290
|
-
constructor(opts) {
|
|
291
|
-
super({
|
|
292
|
-
name: "GetAccountPreferencesException",
|
|
293
|
-
$fault: "server",
|
|
294
|
-
...opts,
|
|
295
|
-
});
|
|
296
|
-
Object.setPrototypeOf(this, GetAccountPreferencesException.prototype);
|
|
297
|
-
this.Message = opts.Message;
|
|
298
|
-
}
|
|
299
|
-
};
|
|
300
|
-
exports.GetTeamsChannelConfigurationException = class GetTeamsChannelConfigurationException extends __BaseException {
|
|
301
|
-
name = "GetTeamsChannelConfigurationException";
|
|
302
|
-
$fault = "server";
|
|
303
|
-
Message;
|
|
304
|
-
constructor(opts) {
|
|
305
|
-
super({
|
|
306
|
-
name: "GetTeamsChannelConfigurationException",
|
|
307
|
-
$fault: "server",
|
|
308
|
-
...opts,
|
|
309
|
-
});
|
|
310
|
-
Object.setPrototypeOf(this, GetTeamsChannelConfigurationException.prototype);
|
|
311
|
-
this.Message = opts.Message;
|
|
312
|
-
}
|
|
313
|
-
};
|
|
314
|
-
exports.ListTeamsChannelConfigurationsException = class ListTeamsChannelConfigurationsException extends __BaseException {
|
|
315
|
-
name = "ListTeamsChannelConfigurationsException";
|
|
316
|
-
$fault = "server";
|
|
317
|
-
Message;
|
|
318
|
-
constructor(opts) {
|
|
319
|
-
super({
|
|
320
|
-
name: "ListTeamsChannelConfigurationsException",
|
|
321
|
-
$fault: "server",
|
|
322
|
-
...opts,
|
|
323
|
-
});
|
|
324
|
-
Object.setPrototypeOf(this, ListTeamsChannelConfigurationsException.prototype);
|
|
325
|
-
this.Message = opts.Message;
|
|
326
|
-
}
|
|
327
|
-
};
|
|
328
|
-
exports.ListMicrosoftTeamsConfiguredTeamsException = class ListMicrosoftTeamsConfiguredTeamsException extends __BaseException {
|
|
329
|
-
name = "ListMicrosoftTeamsConfiguredTeamsException";
|
|
330
|
-
$fault = "server";
|
|
331
|
-
Message;
|
|
332
|
-
constructor(opts) {
|
|
333
|
-
super({
|
|
334
|
-
name: "ListMicrosoftTeamsConfiguredTeamsException",
|
|
335
|
-
$fault: "server",
|
|
336
|
-
...opts,
|
|
337
|
-
});
|
|
338
|
-
Object.setPrototypeOf(this, ListMicrosoftTeamsConfiguredTeamsException.prototype);
|
|
339
|
-
this.Message = opts.Message;
|
|
340
|
-
}
|
|
341
|
-
};
|
|
342
|
-
exports.ListMicrosoftTeamsUserIdentitiesException = class ListMicrosoftTeamsUserIdentitiesException extends __BaseException {
|
|
343
|
-
name = "ListMicrosoftTeamsUserIdentitiesException";
|
|
344
|
-
$fault = "server";
|
|
345
|
-
Message;
|
|
346
|
-
constructor(opts) {
|
|
347
|
-
super({
|
|
348
|
-
name: "ListMicrosoftTeamsUserIdentitiesException",
|
|
349
|
-
$fault: "server",
|
|
350
|
-
...opts,
|
|
351
|
-
});
|
|
352
|
-
Object.setPrototypeOf(this, ListMicrosoftTeamsUserIdentitiesException.prototype);
|
|
353
|
-
this.Message = opts.Message;
|
|
354
|
-
}
|
|
355
|
-
};
|
|
356
|
-
exports.ServiceUnavailableException = class ServiceUnavailableException extends __BaseException {
|
|
357
|
-
name = "ServiceUnavailableException";
|
|
358
|
-
$fault = "client";
|
|
359
|
-
constructor(opts) {
|
|
360
|
-
super({
|
|
361
|
-
name: "ServiceUnavailableException",
|
|
362
|
-
$fault: "client",
|
|
363
|
-
...opts,
|
|
364
|
-
});
|
|
365
|
-
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
366
|
-
}
|
|
367
|
-
};
|
|
368
|
-
exports.TooManyTagsException = class TooManyTagsException extends __BaseException {
|
|
369
|
-
name = "TooManyTagsException";
|
|
370
|
-
$fault = "client";
|
|
371
|
-
constructor(opts) {
|
|
372
|
-
super({
|
|
373
|
-
name: "TooManyTagsException",
|
|
374
|
-
$fault: "client",
|
|
375
|
-
...opts,
|
|
376
|
-
});
|
|
377
|
-
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
378
|
-
}
|
|
379
|
-
};
|
|
380
|
-
exports.UpdateAccountPreferencesException = class UpdateAccountPreferencesException extends __BaseException {
|
|
381
|
-
name = "UpdateAccountPreferencesException";
|
|
382
|
-
$fault = "server";
|
|
383
|
-
Message;
|
|
384
|
-
constructor(opts) {
|
|
385
|
-
super({
|
|
386
|
-
name: "UpdateAccountPreferencesException",
|
|
387
|
-
$fault: "server",
|
|
388
|
-
...opts,
|
|
389
|
-
});
|
|
390
|
-
Object.setPrototypeOf(this, UpdateAccountPreferencesException.prototype);
|
|
391
|
-
this.Message = opts.Message;
|
|
392
|
-
}
|
|
393
|
-
};
|
|
394
|
-
exports.UpdateChimeWebhookConfigurationException = class UpdateChimeWebhookConfigurationException extends __BaseException {
|
|
395
|
-
name = "UpdateChimeWebhookConfigurationException";
|
|
396
|
-
$fault = "server";
|
|
397
|
-
Message;
|
|
398
|
-
constructor(opts) {
|
|
399
|
-
super({
|
|
400
|
-
name: "UpdateChimeWebhookConfigurationException",
|
|
401
|
-
$fault: "server",
|
|
402
|
-
...opts,
|
|
403
|
-
});
|
|
404
|
-
Object.setPrototypeOf(this, UpdateChimeWebhookConfigurationException.prototype);
|
|
405
|
-
this.Message = opts.Message;
|
|
406
|
-
}
|
|
407
|
-
};
|
|
408
|
-
exports.UpdateTeamsChannelConfigurationException = class UpdateTeamsChannelConfigurationException extends __BaseException {
|
|
409
|
-
name = "UpdateTeamsChannelConfigurationException";
|
|
410
|
-
$fault = "server";
|
|
411
|
-
Message;
|
|
412
|
-
constructor(opts) {
|
|
413
|
-
super({
|
|
414
|
-
name: "UpdateTeamsChannelConfigurationException",
|
|
415
|
-
$fault: "server",
|
|
416
|
-
...opts,
|
|
417
|
-
});
|
|
418
|
-
Object.setPrototypeOf(this, UpdateTeamsChannelConfigurationException.prototype);
|
|
419
|
-
this.Message = opts.Message;
|
|
420
|
-
}
|
|
421
|
-
};
|
|
422
|
-
exports.UpdateSlackChannelConfigurationException = class UpdateSlackChannelConfigurationException extends __BaseException {
|
|
423
|
-
name = "UpdateSlackChannelConfigurationException";
|
|
424
|
-
$fault = "server";
|
|
425
|
-
Message;
|
|
426
|
-
constructor(opts) {
|
|
427
|
-
super({
|
|
428
|
-
name: "UpdateSlackChannelConfigurationException",
|
|
429
|
-
$fault: "server",
|
|
430
|
-
...opts,
|
|
431
|
-
});
|
|
432
|
-
Object.setPrototypeOf(this, UpdateSlackChannelConfigurationException.prototype);
|
|
433
|
-
this.Message = opts.Message;
|
|
434
|
-
}
|
|
435
|
-
};
|