@aws-sdk/client-chatbot 3.987.0 → 3.989.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 +53 -1641
- package/dist-cjs/models/ChatbotServiceException.js +12 -0
- package/dist-cjs/models/errors.js +470 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1001 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +202 -196
- package/dist-types/schemas/schemas_0.d.ts +40 -33
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +35 -33
- package/package.json +13 -13
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ChatbotServiceException = exports.__ServiceException = void 0;
|
|
4
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
+
Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
|
|
6
|
+
class ChatbotServiceException extends smithy_client_1.ServiceException {
|
|
7
|
+
constructor(options) {
|
|
8
|
+
super(options);
|
|
9
|
+
Object.setPrototypeOf(this, ChatbotServiceException.prototype);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
exports.ChatbotServiceException = ChatbotServiceException;
|
|
@@ -0,0 +1,470 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UpdateSlackChannelConfigurationException = exports.UpdateTeamsChannelConfigurationException = exports.UpdateChimeWebhookConfigurationException = exports.UpdateAccountPreferencesException = exports.TooManyTagsException = exports.ServiceUnavailableException = exports.ListMicrosoftTeamsUserIdentitiesException = exports.ListMicrosoftTeamsConfiguredTeamsException = exports.ListTeamsChannelConfigurationsException = exports.GetTeamsChannelConfigurationException = exports.GetAccountPreferencesException = exports.DescribeSlackWorkspacesException = exports.DescribeSlackUserIdentitiesException = exports.DescribeSlackChannelConfigurationsException = exports.DescribeChimeWebhookConfigurationsException = exports.DeleteSlackWorkspaceAuthorizationFault = exports.DeleteSlackUserIdentityException = exports.DeleteSlackChannelConfigurationException = exports.DeleteMicrosoftTeamsUserIdentityException = exports.DeleteTeamsConfiguredTeamException = exports.DeleteTeamsChannelConfigurationException = exports.DeleteChimeWebhookConfigurationException = exports.ResourceNotFoundException = exports.CreateSlackChannelConfigurationException = exports.CreateTeamsChannelConfigurationException = exports.LimitExceededException = exports.InvalidParameterException = exports.CreateChimeWebhookConfigurationException = exports.ConflictException = exports.UnauthorizedException = exports.InvalidRequestException = exports.InternalServiceError = void 0;
|
|
4
|
+
const ChatbotServiceException_1 = require("./ChatbotServiceException");
|
|
5
|
+
class InternalServiceError extends ChatbotServiceException_1.ChatbotServiceException {
|
|
6
|
+
name = "InternalServiceError";
|
|
7
|
+
$fault = "server";
|
|
8
|
+
Message;
|
|
9
|
+
constructor(opts) {
|
|
10
|
+
super({
|
|
11
|
+
name: "InternalServiceError",
|
|
12
|
+
$fault: "server",
|
|
13
|
+
...opts,
|
|
14
|
+
});
|
|
15
|
+
Object.setPrototypeOf(this, InternalServiceError.prototype);
|
|
16
|
+
this.Message = opts.Message;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
exports.InternalServiceError = InternalServiceError;
|
|
20
|
+
class InvalidRequestException extends ChatbotServiceException_1.ChatbotServiceException {
|
|
21
|
+
name = "InvalidRequestException";
|
|
22
|
+
$fault = "client";
|
|
23
|
+
constructor(opts) {
|
|
24
|
+
super({
|
|
25
|
+
name: "InvalidRequestException",
|
|
26
|
+
$fault: "client",
|
|
27
|
+
...opts,
|
|
28
|
+
});
|
|
29
|
+
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
exports.InvalidRequestException = InvalidRequestException;
|
|
33
|
+
class UnauthorizedException extends ChatbotServiceException_1.ChatbotServiceException {
|
|
34
|
+
name = "UnauthorizedException";
|
|
35
|
+
$fault = "client";
|
|
36
|
+
constructor(opts) {
|
|
37
|
+
super({
|
|
38
|
+
name: "UnauthorizedException",
|
|
39
|
+
$fault: "client",
|
|
40
|
+
...opts,
|
|
41
|
+
});
|
|
42
|
+
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
exports.UnauthorizedException = UnauthorizedException;
|
|
46
|
+
class ConflictException extends ChatbotServiceException_1.ChatbotServiceException {
|
|
47
|
+
name = "ConflictException";
|
|
48
|
+
$fault = "client";
|
|
49
|
+
constructor(opts) {
|
|
50
|
+
super({
|
|
51
|
+
name: "ConflictException",
|
|
52
|
+
$fault: "client",
|
|
53
|
+
...opts,
|
|
54
|
+
});
|
|
55
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
exports.ConflictException = ConflictException;
|
|
59
|
+
class CreateChimeWebhookConfigurationException extends ChatbotServiceException_1.ChatbotServiceException {
|
|
60
|
+
name = "CreateChimeWebhookConfigurationException";
|
|
61
|
+
$fault = "server";
|
|
62
|
+
Message;
|
|
63
|
+
constructor(opts) {
|
|
64
|
+
super({
|
|
65
|
+
name: "CreateChimeWebhookConfigurationException",
|
|
66
|
+
$fault: "server",
|
|
67
|
+
...opts,
|
|
68
|
+
});
|
|
69
|
+
Object.setPrototypeOf(this, CreateChimeWebhookConfigurationException.prototype);
|
|
70
|
+
this.Message = opts.Message;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
exports.CreateChimeWebhookConfigurationException = CreateChimeWebhookConfigurationException;
|
|
74
|
+
class InvalidParameterException extends ChatbotServiceException_1.ChatbotServiceException {
|
|
75
|
+
name = "InvalidParameterException";
|
|
76
|
+
$fault = "client";
|
|
77
|
+
constructor(opts) {
|
|
78
|
+
super({
|
|
79
|
+
name: "InvalidParameterException",
|
|
80
|
+
$fault: "client",
|
|
81
|
+
...opts,
|
|
82
|
+
});
|
|
83
|
+
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
exports.InvalidParameterException = InvalidParameterException;
|
|
87
|
+
class LimitExceededException extends ChatbotServiceException_1.ChatbotServiceException {
|
|
88
|
+
name = "LimitExceededException";
|
|
89
|
+
$fault = "client";
|
|
90
|
+
constructor(opts) {
|
|
91
|
+
super({
|
|
92
|
+
name: "LimitExceededException",
|
|
93
|
+
$fault: "client",
|
|
94
|
+
...opts,
|
|
95
|
+
});
|
|
96
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
exports.LimitExceededException = LimitExceededException;
|
|
100
|
+
class CreateTeamsChannelConfigurationException extends ChatbotServiceException_1.ChatbotServiceException {
|
|
101
|
+
name = "CreateTeamsChannelConfigurationException";
|
|
102
|
+
$fault = "server";
|
|
103
|
+
Message;
|
|
104
|
+
constructor(opts) {
|
|
105
|
+
super({
|
|
106
|
+
name: "CreateTeamsChannelConfigurationException",
|
|
107
|
+
$fault: "server",
|
|
108
|
+
...opts,
|
|
109
|
+
});
|
|
110
|
+
Object.setPrototypeOf(this, CreateTeamsChannelConfigurationException.prototype);
|
|
111
|
+
this.Message = opts.Message;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
exports.CreateTeamsChannelConfigurationException = CreateTeamsChannelConfigurationException;
|
|
115
|
+
class CreateSlackChannelConfigurationException extends ChatbotServiceException_1.ChatbotServiceException {
|
|
116
|
+
name = "CreateSlackChannelConfigurationException";
|
|
117
|
+
$fault = "server";
|
|
118
|
+
Message;
|
|
119
|
+
constructor(opts) {
|
|
120
|
+
super({
|
|
121
|
+
name: "CreateSlackChannelConfigurationException",
|
|
122
|
+
$fault: "server",
|
|
123
|
+
...opts,
|
|
124
|
+
});
|
|
125
|
+
Object.setPrototypeOf(this, CreateSlackChannelConfigurationException.prototype);
|
|
126
|
+
this.Message = opts.Message;
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
exports.CreateSlackChannelConfigurationException = CreateSlackChannelConfigurationException;
|
|
130
|
+
class ResourceNotFoundException extends ChatbotServiceException_1.ChatbotServiceException {
|
|
131
|
+
name = "ResourceNotFoundException";
|
|
132
|
+
$fault = "client";
|
|
133
|
+
Message;
|
|
134
|
+
constructor(opts) {
|
|
135
|
+
super({
|
|
136
|
+
name: "ResourceNotFoundException",
|
|
137
|
+
$fault: "client",
|
|
138
|
+
...opts,
|
|
139
|
+
});
|
|
140
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
141
|
+
this.Message = opts.Message;
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
145
|
+
class DeleteChimeWebhookConfigurationException extends ChatbotServiceException_1.ChatbotServiceException {
|
|
146
|
+
name = "DeleteChimeWebhookConfigurationException";
|
|
147
|
+
$fault = "server";
|
|
148
|
+
Message;
|
|
149
|
+
constructor(opts) {
|
|
150
|
+
super({
|
|
151
|
+
name: "DeleteChimeWebhookConfigurationException",
|
|
152
|
+
$fault: "server",
|
|
153
|
+
...opts,
|
|
154
|
+
});
|
|
155
|
+
Object.setPrototypeOf(this, DeleteChimeWebhookConfigurationException.prototype);
|
|
156
|
+
this.Message = opts.Message;
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
exports.DeleteChimeWebhookConfigurationException = DeleteChimeWebhookConfigurationException;
|
|
160
|
+
class DeleteTeamsChannelConfigurationException extends ChatbotServiceException_1.ChatbotServiceException {
|
|
161
|
+
name = "DeleteTeamsChannelConfigurationException";
|
|
162
|
+
$fault = "server";
|
|
163
|
+
Message;
|
|
164
|
+
constructor(opts) {
|
|
165
|
+
super({
|
|
166
|
+
name: "DeleteTeamsChannelConfigurationException",
|
|
167
|
+
$fault: "server",
|
|
168
|
+
...opts,
|
|
169
|
+
});
|
|
170
|
+
Object.setPrototypeOf(this, DeleteTeamsChannelConfigurationException.prototype);
|
|
171
|
+
this.Message = opts.Message;
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
exports.DeleteTeamsChannelConfigurationException = DeleteTeamsChannelConfigurationException;
|
|
175
|
+
class DeleteTeamsConfiguredTeamException extends ChatbotServiceException_1.ChatbotServiceException {
|
|
176
|
+
name = "DeleteTeamsConfiguredTeamException";
|
|
177
|
+
$fault = "server";
|
|
178
|
+
Message;
|
|
179
|
+
constructor(opts) {
|
|
180
|
+
super({
|
|
181
|
+
name: "DeleteTeamsConfiguredTeamException",
|
|
182
|
+
$fault: "server",
|
|
183
|
+
...opts,
|
|
184
|
+
});
|
|
185
|
+
Object.setPrototypeOf(this, DeleteTeamsConfiguredTeamException.prototype);
|
|
186
|
+
this.Message = opts.Message;
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
exports.DeleteTeamsConfiguredTeamException = DeleteTeamsConfiguredTeamException;
|
|
190
|
+
class DeleteMicrosoftTeamsUserIdentityException extends ChatbotServiceException_1.ChatbotServiceException {
|
|
191
|
+
name = "DeleteMicrosoftTeamsUserIdentityException";
|
|
192
|
+
$fault = "server";
|
|
193
|
+
Message;
|
|
194
|
+
constructor(opts) {
|
|
195
|
+
super({
|
|
196
|
+
name: "DeleteMicrosoftTeamsUserIdentityException",
|
|
197
|
+
$fault: "server",
|
|
198
|
+
...opts,
|
|
199
|
+
});
|
|
200
|
+
Object.setPrototypeOf(this, DeleteMicrosoftTeamsUserIdentityException.prototype);
|
|
201
|
+
this.Message = opts.Message;
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
exports.DeleteMicrosoftTeamsUserIdentityException = DeleteMicrosoftTeamsUserIdentityException;
|
|
205
|
+
class DeleteSlackChannelConfigurationException extends ChatbotServiceException_1.ChatbotServiceException {
|
|
206
|
+
name = "DeleteSlackChannelConfigurationException";
|
|
207
|
+
$fault = "server";
|
|
208
|
+
Message;
|
|
209
|
+
constructor(opts) {
|
|
210
|
+
super({
|
|
211
|
+
name: "DeleteSlackChannelConfigurationException",
|
|
212
|
+
$fault: "server",
|
|
213
|
+
...opts,
|
|
214
|
+
});
|
|
215
|
+
Object.setPrototypeOf(this, DeleteSlackChannelConfigurationException.prototype);
|
|
216
|
+
this.Message = opts.Message;
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
exports.DeleteSlackChannelConfigurationException = DeleteSlackChannelConfigurationException;
|
|
220
|
+
class DeleteSlackUserIdentityException extends ChatbotServiceException_1.ChatbotServiceException {
|
|
221
|
+
name = "DeleteSlackUserIdentityException";
|
|
222
|
+
$fault = "server";
|
|
223
|
+
Message;
|
|
224
|
+
constructor(opts) {
|
|
225
|
+
super({
|
|
226
|
+
name: "DeleteSlackUserIdentityException",
|
|
227
|
+
$fault: "server",
|
|
228
|
+
...opts,
|
|
229
|
+
});
|
|
230
|
+
Object.setPrototypeOf(this, DeleteSlackUserIdentityException.prototype);
|
|
231
|
+
this.Message = opts.Message;
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
exports.DeleteSlackUserIdentityException = DeleteSlackUserIdentityException;
|
|
235
|
+
class DeleteSlackWorkspaceAuthorizationFault extends ChatbotServiceException_1.ChatbotServiceException {
|
|
236
|
+
name = "DeleteSlackWorkspaceAuthorizationFault";
|
|
237
|
+
$fault = "server";
|
|
238
|
+
Message;
|
|
239
|
+
constructor(opts) {
|
|
240
|
+
super({
|
|
241
|
+
name: "DeleteSlackWorkspaceAuthorizationFault",
|
|
242
|
+
$fault: "server",
|
|
243
|
+
...opts,
|
|
244
|
+
});
|
|
245
|
+
Object.setPrototypeOf(this, DeleteSlackWorkspaceAuthorizationFault.prototype);
|
|
246
|
+
this.Message = opts.Message;
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
exports.DeleteSlackWorkspaceAuthorizationFault = DeleteSlackWorkspaceAuthorizationFault;
|
|
250
|
+
class DescribeChimeWebhookConfigurationsException extends ChatbotServiceException_1.ChatbotServiceException {
|
|
251
|
+
name = "DescribeChimeWebhookConfigurationsException";
|
|
252
|
+
$fault = "server";
|
|
253
|
+
Message;
|
|
254
|
+
constructor(opts) {
|
|
255
|
+
super({
|
|
256
|
+
name: "DescribeChimeWebhookConfigurationsException",
|
|
257
|
+
$fault: "server",
|
|
258
|
+
...opts,
|
|
259
|
+
});
|
|
260
|
+
Object.setPrototypeOf(this, DescribeChimeWebhookConfigurationsException.prototype);
|
|
261
|
+
this.Message = opts.Message;
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
exports.DescribeChimeWebhookConfigurationsException = DescribeChimeWebhookConfigurationsException;
|
|
265
|
+
class DescribeSlackChannelConfigurationsException extends ChatbotServiceException_1.ChatbotServiceException {
|
|
266
|
+
name = "DescribeSlackChannelConfigurationsException";
|
|
267
|
+
$fault = "server";
|
|
268
|
+
Message;
|
|
269
|
+
constructor(opts) {
|
|
270
|
+
super({
|
|
271
|
+
name: "DescribeSlackChannelConfigurationsException",
|
|
272
|
+
$fault: "server",
|
|
273
|
+
...opts,
|
|
274
|
+
});
|
|
275
|
+
Object.setPrototypeOf(this, DescribeSlackChannelConfigurationsException.prototype);
|
|
276
|
+
this.Message = opts.Message;
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
exports.DescribeSlackChannelConfigurationsException = DescribeSlackChannelConfigurationsException;
|
|
280
|
+
class DescribeSlackUserIdentitiesException extends ChatbotServiceException_1.ChatbotServiceException {
|
|
281
|
+
name = "DescribeSlackUserIdentitiesException";
|
|
282
|
+
$fault = "server";
|
|
283
|
+
Message;
|
|
284
|
+
constructor(opts) {
|
|
285
|
+
super({
|
|
286
|
+
name: "DescribeSlackUserIdentitiesException",
|
|
287
|
+
$fault: "server",
|
|
288
|
+
...opts,
|
|
289
|
+
});
|
|
290
|
+
Object.setPrototypeOf(this, DescribeSlackUserIdentitiesException.prototype);
|
|
291
|
+
this.Message = opts.Message;
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
|
+
exports.DescribeSlackUserIdentitiesException = DescribeSlackUserIdentitiesException;
|
|
295
|
+
class DescribeSlackWorkspacesException extends ChatbotServiceException_1.ChatbotServiceException {
|
|
296
|
+
name = "DescribeSlackWorkspacesException";
|
|
297
|
+
$fault = "server";
|
|
298
|
+
Message;
|
|
299
|
+
constructor(opts) {
|
|
300
|
+
super({
|
|
301
|
+
name: "DescribeSlackWorkspacesException",
|
|
302
|
+
$fault: "server",
|
|
303
|
+
...opts,
|
|
304
|
+
});
|
|
305
|
+
Object.setPrototypeOf(this, DescribeSlackWorkspacesException.prototype);
|
|
306
|
+
this.Message = opts.Message;
|
|
307
|
+
}
|
|
308
|
+
}
|
|
309
|
+
exports.DescribeSlackWorkspacesException = DescribeSlackWorkspacesException;
|
|
310
|
+
class GetAccountPreferencesException extends ChatbotServiceException_1.ChatbotServiceException {
|
|
311
|
+
name = "GetAccountPreferencesException";
|
|
312
|
+
$fault = "server";
|
|
313
|
+
Message;
|
|
314
|
+
constructor(opts) {
|
|
315
|
+
super({
|
|
316
|
+
name: "GetAccountPreferencesException",
|
|
317
|
+
$fault: "server",
|
|
318
|
+
...opts,
|
|
319
|
+
});
|
|
320
|
+
Object.setPrototypeOf(this, GetAccountPreferencesException.prototype);
|
|
321
|
+
this.Message = opts.Message;
|
|
322
|
+
}
|
|
323
|
+
}
|
|
324
|
+
exports.GetAccountPreferencesException = GetAccountPreferencesException;
|
|
325
|
+
class GetTeamsChannelConfigurationException extends ChatbotServiceException_1.ChatbotServiceException {
|
|
326
|
+
name = "GetTeamsChannelConfigurationException";
|
|
327
|
+
$fault = "server";
|
|
328
|
+
Message;
|
|
329
|
+
constructor(opts) {
|
|
330
|
+
super({
|
|
331
|
+
name: "GetTeamsChannelConfigurationException",
|
|
332
|
+
$fault: "server",
|
|
333
|
+
...opts,
|
|
334
|
+
});
|
|
335
|
+
Object.setPrototypeOf(this, GetTeamsChannelConfigurationException.prototype);
|
|
336
|
+
this.Message = opts.Message;
|
|
337
|
+
}
|
|
338
|
+
}
|
|
339
|
+
exports.GetTeamsChannelConfigurationException = GetTeamsChannelConfigurationException;
|
|
340
|
+
class ListTeamsChannelConfigurationsException extends ChatbotServiceException_1.ChatbotServiceException {
|
|
341
|
+
name = "ListTeamsChannelConfigurationsException";
|
|
342
|
+
$fault = "server";
|
|
343
|
+
Message;
|
|
344
|
+
constructor(opts) {
|
|
345
|
+
super({
|
|
346
|
+
name: "ListTeamsChannelConfigurationsException",
|
|
347
|
+
$fault: "server",
|
|
348
|
+
...opts,
|
|
349
|
+
});
|
|
350
|
+
Object.setPrototypeOf(this, ListTeamsChannelConfigurationsException.prototype);
|
|
351
|
+
this.Message = opts.Message;
|
|
352
|
+
}
|
|
353
|
+
}
|
|
354
|
+
exports.ListTeamsChannelConfigurationsException = ListTeamsChannelConfigurationsException;
|
|
355
|
+
class ListMicrosoftTeamsConfiguredTeamsException extends ChatbotServiceException_1.ChatbotServiceException {
|
|
356
|
+
name = "ListMicrosoftTeamsConfiguredTeamsException";
|
|
357
|
+
$fault = "server";
|
|
358
|
+
Message;
|
|
359
|
+
constructor(opts) {
|
|
360
|
+
super({
|
|
361
|
+
name: "ListMicrosoftTeamsConfiguredTeamsException",
|
|
362
|
+
$fault: "server",
|
|
363
|
+
...opts,
|
|
364
|
+
});
|
|
365
|
+
Object.setPrototypeOf(this, ListMicrosoftTeamsConfiguredTeamsException.prototype);
|
|
366
|
+
this.Message = opts.Message;
|
|
367
|
+
}
|
|
368
|
+
}
|
|
369
|
+
exports.ListMicrosoftTeamsConfiguredTeamsException = ListMicrosoftTeamsConfiguredTeamsException;
|
|
370
|
+
class ListMicrosoftTeamsUserIdentitiesException extends ChatbotServiceException_1.ChatbotServiceException {
|
|
371
|
+
name = "ListMicrosoftTeamsUserIdentitiesException";
|
|
372
|
+
$fault = "server";
|
|
373
|
+
Message;
|
|
374
|
+
constructor(opts) {
|
|
375
|
+
super({
|
|
376
|
+
name: "ListMicrosoftTeamsUserIdentitiesException",
|
|
377
|
+
$fault: "server",
|
|
378
|
+
...opts,
|
|
379
|
+
});
|
|
380
|
+
Object.setPrototypeOf(this, ListMicrosoftTeamsUserIdentitiesException.prototype);
|
|
381
|
+
this.Message = opts.Message;
|
|
382
|
+
}
|
|
383
|
+
}
|
|
384
|
+
exports.ListMicrosoftTeamsUserIdentitiesException = ListMicrosoftTeamsUserIdentitiesException;
|
|
385
|
+
class ServiceUnavailableException extends ChatbotServiceException_1.ChatbotServiceException {
|
|
386
|
+
name = "ServiceUnavailableException";
|
|
387
|
+
$fault = "client";
|
|
388
|
+
constructor(opts) {
|
|
389
|
+
super({
|
|
390
|
+
name: "ServiceUnavailableException",
|
|
391
|
+
$fault: "client",
|
|
392
|
+
...opts,
|
|
393
|
+
});
|
|
394
|
+
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
395
|
+
}
|
|
396
|
+
}
|
|
397
|
+
exports.ServiceUnavailableException = ServiceUnavailableException;
|
|
398
|
+
class TooManyTagsException extends ChatbotServiceException_1.ChatbotServiceException {
|
|
399
|
+
name = "TooManyTagsException";
|
|
400
|
+
$fault = "client";
|
|
401
|
+
constructor(opts) {
|
|
402
|
+
super({
|
|
403
|
+
name: "TooManyTagsException",
|
|
404
|
+
$fault: "client",
|
|
405
|
+
...opts,
|
|
406
|
+
});
|
|
407
|
+
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
408
|
+
}
|
|
409
|
+
}
|
|
410
|
+
exports.TooManyTagsException = TooManyTagsException;
|
|
411
|
+
class UpdateAccountPreferencesException extends ChatbotServiceException_1.ChatbotServiceException {
|
|
412
|
+
name = "UpdateAccountPreferencesException";
|
|
413
|
+
$fault = "server";
|
|
414
|
+
Message;
|
|
415
|
+
constructor(opts) {
|
|
416
|
+
super({
|
|
417
|
+
name: "UpdateAccountPreferencesException",
|
|
418
|
+
$fault: "server",
|
|
419
|
+
...opts,
|
|
420
|
+
});
|
|
421
|
+
Object.setPrototypeOf(this, UpdateAccountPreferencesException.prototype);
|
|
422
|
+
this.Message = opts.Message;
|
|
423
|
+
}
|
|
424
|
+
}
|
|
425
|
+
exports.UpdateAccountPreferencesException = UpdateAccountPreferencesException;
|
|
426
|
+
class UpdateChimeWebhookConfigurationException extends ChatbotServiceException_1.ChatbotServiceException {
|
|
427
|
+
name = "UpdateChimeWebhookConfigurationException";
|
|
428
|
+
$fault = "server";
|
|
429
|
+
Message;
|
|
430
|
+
constructor(opts) {
|
|
431
|
+
super({
|
|
432
|
+
name: "UpdateChimeWebhookConfigurationException",
|
|
433
|
+
$fault: "server",
|
|
434
|
+
...opts,
|
|
435
|
+
});
|
|
436
|
+
Object.setPrototypeOf(this, UpdateChimeWebhookConfigurationException.prototype);
|
|
437
|
+
this.Message = opts.Message;
|
|
438
|
+
}
|
|
439
|
+
}
|
|
440
|
+
exports.UpdateChimeWebhookConfigurationException = UpdateChimeWebhookConfigurationException;
|
|
441
|
+
class UpdateTeamsChannelConfigurationException extends ChatbotServiceException_1.ChatbotServiceException {
|
|
442
|
+
name = "UpdateTeamsChannelConfigurationException";
|
|
443
|
+
$fault = "server";
|
|
444
|
+
Message;
|
|
445
|
+
constructor(opts) {
|
|
446
|
+
super({
|
|
447
|
+
name: "UpdateTeamsChannelConfigurationException",
|
|
448
|
+
$fault: "server",
|
|
449
|
+
...opts,
|
|
450
|
+
});
|
|
451
|
+
Object.setPrototypeOf(this, UpdateTeamsChannelConfigurationException.prototype);
|
|
452
|
+
this.Message = opts.Message;
|
|
453
|
+
}
|
|
454
|
+
}
|
|
455
|
+
exports.UpdateTeamsChannelConfigurationException = UpdateTeamsChannelConfigurationException;
|
|
456
|
+
class UpdateSlackChannelConfigurationException extends ChatbotServiceException_1.ChatbotServiceException {
|
|
457
|
+
name = "UpdateSlackChannelConfigurationException";
|
|
458
|
+
$fault = "server";
|
|
459
|
+
Message;
|
|
460
|
+
constructor(opts) {
|
|
461
|
+
super({
|
|
462
|
+
name: "UpdateSlackChannelConfigurationException",
|
|
463
|
+
$fault: "server",
|
|
464
|
+
...opts,
|
|
465
|
+
});
|
|
466
|
+
Object.setPrototypeOf(this, UpdateSlackChannelConfigurationException.prototype);
|
|
467
|
+
this.Message = opts.Message;
|
|
468
|
+
}
|
|
469
|
+
}
|
|
470
|
+
exports.UpdateSlackChannelConfigurationException = UpdateSlackChannelConfigurationException;
|
|
@@ -9,6 +9,7 @@ const util_base64_1 = require("@smithy/util-base64");
|
|
|
9
9
|
const util_utf8_1 = require("@smithy/util-utf8");
|
|
10
10
|
const httpAuthSchemeProvider_1 = require("./auth/httpAuthSchemeProvider");
|
|
11
11
|
const endpointResolver_1 = require("./endpoint/endpointResolver");
|
|
12
|
+
const schemas_0_1 = require("./schemas/schemas_0");
|
|
12
13
|
const getRuntimeConfig = (config) => {
|
|
13
14
|
return {
|
|
14
15
|
apiVersion: "2017-10-11",
|
|
@@ -29,6 +30,7 @@ const getRuntimeConfig = (config) => {
|
|
|
29
30
|
protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
|
|
30
31
|
protocolSettings: config?.protocolSettings ?? {
|
|
31
32
|
defaultNamespace: "com.amazonaws.chatbot",
|
|
33
|
+
errorTypeRegistries: schemas_0_1.errorTypeRegistries,
|
|
32
34
|
xmlNamespace: "http://wheatley.amazonaws.com/orchestration/2017-10-11/",
|
|
33
35
|
version: "2017-10-11",
|
|
34
36
|
serviceTarget: "WheatleyOrchestration_20171011",
|