@aws-sdk/client-ivschat 3.987.0 → 3.988.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 +36 -660
- package/dist-cjs/models/IvschatServiceException.js +12 -0
- package/dist-cjs/models/errors.js +132 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +457 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +59 -53
- package/dist-types/schemas/schemas_0.d.ts +15 -8
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +10 -8
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var IvschatServiceException = require('./models/IvschatServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,574 +113,6 @@ class IvschatClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class IvschatServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, IvschatServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccessDeniedException extends IvschatServiceException {
|
|
121
|
-
name = "AccessDeniedException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "AccessDeniedException",
|
|
126
|
-
$fault: "client",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
class PendingVerification extends IvschatServiceException {
|
|
133
|
-
name = "PendingVerification";
|
|
134
|
-
$fault = "client";
|
|
135
|
-
constructor(opts) {
|
|
136
|
-
super({
|
|
137
|
-
name: "PendingVerification",
|
|
138
|
-
$fault: "client",
|
|
139
|
-
...opts,
|
|
140
|
-
});
|
|
141
|
-
Object.setPrototypeOf(this, PendingVerification.prototype);
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
class ResourceNotFoundException extends IvschatServiceException {
|
|
145
|
-
name = "ResourceNotFoundException";
|
|
146
|
-
$fault = "client";
|
|
147
|
-
resourceId;
|
|
148
|
-
resourceType;
|
|
149
|
-
constructor(opts) {
|
|
150
|
-
super({
|
|
151
|
-
name: "ResourceNotFoundException",
|
|
152
|
-
$fault: "client",
|
|
153
|
-
...opts,
|
|
154
|
-
});
|
|
155
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
156
|
-
this.resourceId = opts.resourceId;
|
|
157
|
-
this.resourceType = opts.resourceType;
|
|
158
|
-
}
|
|
159
|
-
}
|
|
160
|
-
class ValidationException extends IvschatServiceException {
|
|
161
|
-
name = "ValidationException";
|
|
162
|
-
$fault = "client";
|
|
163
|
-
reason;
|
|
164
|
-
fieldList;
|
|
165
|
-
constructor(opts) {
|
|
166
|
-
super({
|
|
167
|
-
name: "ValidationException",
|
|
168
|
-
$fault: "client",
|
|
169
|
-
...opts,
|
|
170
|
-
});
|
|
171
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
172
|
-
this.reason = opts.reason;
|
|
173
|
-
this.fieldList = opts.fieldList;
|
|
174
|
-
}
|
|
175
|
-
}
|
|
176
|
-
class ConflictException extends IvschatServiceException {
|
|
177
|
-
name = "ConflictException";
|
|
178
|
-
$fault = "client";
|
|
179
|
-
resourceId;
|
|
180
|
-
resourceType;
|
|
181
|
-
constructor(opts) {
|
|
182
|
-
super({
|
|
183
|
-
name: "ConflictException",
|
|
184
|
-
$fault: "client",
|
|
185
|
-
...opts,
|
|
186
|
-
});
|
|
187
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
188
|
-
this.resourceId = opts.resourceId;
|
|
189
|
-
this.resourceType = opts.resourceType;
|
|
190
|
-
}
|
|
191
|
-
}
|
|
192
|
-
class ServiceQuotaExceededException extends IvschatServiceException {
|
|
193
|
-
name = "ServiceQuotaExceededException";
|
|
194
|
-
$fault = "client";
|
|
195
|
-
resourceId;
|
|
196
|
-
resourceType;
|
|
197
|
-
limit;
|
|
198
|
-
constructor(opts) {
|
|
199
|
-
super({
|
|
200
|
-
name: "ServiceQuotaExceededException",
|
|
201
|
-
$fault: "client",
|
|
202
|
-
...opts,
|
|
203
|
-
});
|
|
204
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
205
|
-
this.resourceId = opts.resourceId;
|
|
206
|
-
this.resourceType = opts.resourceType;
|
|
207
|
-
this.limit = opts.limit;
|
|
208
|
-
}
|
|
209
|
-
}
|
|
210
|
-
class ThrottlingException extends IvschatServiceException {
|
|
211
|
-
name = "ThrottlingException";
|
|
212
|
-
$fault = "client";
|
|
213
|
-
resourceId;
|
|
214
|
-
resourceType;
|
|
215
|
-
limit;
|
|
216
|
-
constructor(opts) {
|
|
217
|
-
super({
|
|
218
|
-
name: "ThrottlingException",
|
|
219
|
-
$fault: "client",
|
|
220
|
-
...opts,
|
|
221
|
-
});
|
|
222
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
223
|
-
this.resourceId = opts.resourceId;
|
|
224
|
-
this.resourceType = opts.resourceType;
|
|
225
|
-
this.limit = opts.limit;
|
|
226
|
-
}
|
|
227
|
-
}
|
|
228
|
-
class InternalServerException extends IvschatServiceException {
|
|
229
|
-
name = "InternalServerException";
|
|
230
|
-
$fault = "server";
|
|
231
|
-
constructor(opts) {
|
|
232
|
-
super({
|
|
233
|
-
name: "InternalServerException",
|
|
234
|
-
$fault: "server",
|
|
235
|
-
...opts,
|
|
236
|
-
});
|
|
237
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
238
|
-
}
|
|
239
|
-
}
|
|
240
|
-
|
|
241
|
-
const _ADE = "AccessDeniedException";
|
|
242
|
-
const _CCT = "CreateChatToken";
|
|
243
|
-
const _CCTR = "CreateChatTokenRequest";
|
|
244
|
-
const _CCTRr = "CreateChatTokenResponse";
|
|
245
|
-
const _CE = "ConflictException";
|
|
246
|
-
const _CLC = "CreateLoggingConfiguration";
|
|
247
|
-
const _CLCR = "CreateLoggingConfigurationRequest";
|
|
248
|
-
const _CLCRr = "CreateLoggingConfigurationResponse";
|
|
249
|
-
const _CR = "CreateRoom";
|
|
250
|
-
const _CRR = "CreateRoomRequest";
|
|
251
|
-
const _CRRr = "CreateRoomResponse";
|
|
252
|
-
const _CT = "ChatToken";
|
|
253
|
-
const _CTA = "ChatTokenAttributes";
|
|
254
|
-
const _CWLDC = "CloudWatchLogsDestinationConfiguration";
|
|
255
|
-
const _DC = "DestinationConfiguration";
|
|
256
|
-
const _DLC = "DeleteLoggingConfiguration";
|
|
257
|
-
const _DLCR = "DeleteLoggingConfigurationRequest";
|
|
258
|
-
const _DM = "DeleteMessage";
|
|
259
|
-
const _DMR = "DeleteMessageRequest";
|
|
260
|
-
const _DMRe = "DeleteMessageResponse";
|
|
261
|
-
const _DR = "DeleteRoom";
|
|
262
|
-
const _DRR = "DeleteRoomRequest";
|
|
263
|
-
const _DU = "DisconnectUser";
|
|
264
|
-
const _DUR = "DisconnectUserRequest";
|
|
265
|
-
const _DURi = "DisconnectUserResponse";
|
|
266
|
-
const _FDC = "FirehoseDestinationConfiguration";
|
|
267
|
-
const _GLC = "GetLoggingConfiguration";
|
|
268
|
-
const _GLCR = "GetLoggingConfigurationRequest";
|
|
269
|
-
const _GLCRe = "GetLoggingConfigurationResponse";
|
|
270
|
-
const _GR = "GetRoom";
|
|
271
|
-
const _GRR = "GetRoomRequest";
|
|
272
|
-
const _GRRe = "GetRoomResponse";
|
|
273
|
-
const _ISE = "InternalServerException";
|
|
274
|
-
const _LCL = "LoggingConfigurationList";
|
|
275
|
-
const _LCS = "LoggingConfigurationSummary";
|
|
276
|
-
const _LLC = "ListLoggingConfigurations";
|
|
277
|
-
const _LLCR = "ListLoggingConfigurationsRequest";
|
|
278
|
-
const _LLCRi = "ListLoggingConfigurationsResponse";
|
|
279
|
-
const _LR = "ListRooms";
|
|
280
|
-
const _LRR = "ListRoomsRequest";
|
|
281
|
-
const _LRRi = "ListRoomsResponse";
|
|
282
|
-
const _LTFR = "ListTagsForResource";
|
|
283
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
284
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
285
|
-
const _MRH = "MessageReviewHandler";
|
|
286
|
-
const _PV = "PendingVerification";
|
|
287
|
-
const _RL = "RoomList";
|
|
288
|
-
const _RNFE = "ResourceNotFoundException";
|
|
289
|
-
const _RS = "RoomSummary";
|
|
290
|
-
const _SDC = "S3DestinationConfiguration";
|
|
291
|
-
const _SE = "SendEvent";
|
|
292
|
-
const _SER = "SendEventRequest";
|
|
293
|
-
const _SERe = "SendEventResponse";
|
|
294
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
295
|
-
const _TE = "ThrottlingException";
|
|
296
|
-
const _TR = "TagResource";
|
|
297
|
-
const _TRR = "TagResourceRequest";
|
|
298
|
-
const _TRRa = "TagResourceResponse";
|
|
299
|
-
const _UID = "UserID";
|
|
300
|
-
const _ULC = "UpdateLoggingConfiguration";
|
|
301
|
-
const _ULCR = "UpdateLoggingConfigurationRequest";
|
|
302
|
-
const _ULCRp = "UpdateLoggingConfigurationResponse";
|
|
303
|
-
const _UR = "UntagResource";
|
|
304
|
-
const _URR = "UntagResourceRequest";
|
|
305
|
-
const _URRn = "UntagResourceResponse";
|
|
306
|
-
const _URRp = "UpdateRoomRequest";
|
|
307
|
-
const _URRpd = "UpdateRoomResponse";
|
|
308
|
-
const _URp = "UpdateRoom";
|
|
309
|
-
const _VE = "ValidationException";
|
|
310
|
-
const _VEF = "ValidationExceptionField";
|
|
311
|
-
const _VEFL = "ValidationExceptionFieldList";
|
|
312
|
-
const _a = "attributes";
|
|
313
|
-
const _ar = "arn";
|
|
314
|
-
const _bN = "bucketName";
|
|
315
|
-
const _c = "client";
|
|
316
|
-
const _cT = "createTime";
|
|
317
|
-
const _cWL = "cloudWatchLogs";
|
|
318
|
-
const _ca = "capabilities";
|
|
319
|
-
const _dC = "destinationConfiguration";
|
|
320
|
-
const _dSN = "deliveryStreamName";
|
|
321
|
-
const _e = "error";
|
|
322
|
-
const _eN = "eventName";
|
|
323
|
-
const _f = "firehose";
|
|
324
|
-
const _fL = "fieldList";
|
|
325
|
-
const _fR = "fallbackResult";
|
|
326
|
-
const _h = "http";
|
|
327
|
-
const _hE = "httpError";
|
|
328
|
-
const _hQ = "httpQuery";
|
|
329
|
-
const _i = "id";
|
|
330
|
-
const _id = "identifier";
|
|
331
|
-
const _l = "limit";
|
|
332
|
-
const _lC = "loggingConfigurations";
|
|
333
|
-
const _lCI = "loggingConfigurationIdentifiers";
|
|
334
|
-
const _lCIo = "loggingConfigurationIdentifier";
|
|
335
|
-
const _lGN = "logGroupName";
|
|
336
|
-
const _m = "message";
|
|
337
|
-
const _mML = "maximumMessageLength";
|
|
338
|
-
const _mMRPS = "maximumMessageRatePerSecond";
|
|
339
|
-
const _mR = "maxResults";
|
|
340
|
-
const _mRH = "messageReviewHandler";
|
|
341
|
-
const _mRHU = "messageReviewHandlerUri";
|
|
342
|
-
const _n = "name";
|
|
343
|
-
const _nT = "nextToken";
|
|
344
|
-
const _r = "reason";
|
|
345
|
-
const _rA = "resourceArn";
|
|
346
|
-
const _rI = "resourceId";
|
|
347
|
-
const _rIo = "roomIdentifier";
|
|
348
|
-
const _rT = "resourceType";
|
|
349
|
-
const _ro = "rooms";
|
|
350
|
-
const _s = "state";
|
|
351
|
-
const _sDIM = "sessionDurationInMinutes";
|
|
352
|
-
const _sET = "sessionExpirationTime";
|
|
353
|
-
const _s_ = "s3";
|
|
354
|
-
const _se = "server";
|
|
355
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.ivschat";
|
|
356
|
-
const _t = "token";
|
|
357
|
-
const _tET = "tokenExpirationTime";
|
|
358
|
-
const _tK = "tagKeys";
|
|
359
|
-
const _ta = "tags";
|
|
360
|
-
const _u = "uri";
|
|
361
|
-
const _uI = "userId";
|
|
362
|
-
const _uT = "updateTime";
|
|
363
|
-
const n0 = "com.amazonaws.ivschat";
|
|
364
|
-
var ChatToken = [0, n0, _CT, 8, 0];
|
|
365
|
-
var UserID = [0, n0, _UID, 8, 0];
|
|
366
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
367
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
368
|
-
[_m],
|
|
369
|
-
[0], 1
|
|
370
|
-
];
|
|
371
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
372
|
-
var CloudWatchLogsDestinationConfiguration$ = [3, n0, _CWLDC,
|
|
373
|
-
0,
|
|
374
|
-
[_lGN],
|
|
375
|
-
[0], 1
|
|
376
|
-
];
|
|
377
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
378
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
379
|
-
[_m, _rI, _rT],
|
|
380
|
-
[0, 0, 0], 3
|
|
381
|
-
];
|
|
382
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
383
|
-
var CreateChatTokenRequest$ = [3, n0, _CCTR,
|
|
384
|
-
0,
|
|
385
|
-
[_rIo, _uI, _ca, _sDIM, _a],
|
|
386
|
-
[0, [() => UserID, 0], 64 | 0, 1, [() => ChatTokenAttributes, 0]], 2
|
|
387
|
-
];
|
|
388
|
-
var CreateChatTokenResponse$ = [3, n0, _CCTRr,
|
|
389
|
-
0,
|
|
390
|
-
[_t, _tET, _sET],
|
|
391
|
-
[[() => ChatToken, 0], 5, 5]
|
|
392
|
-
];
|
|
393
|
-
var CreateLoggingConfigurationRequest$ = [3, n0, _CLCR,
|
|
394
|
-
0,
|
|
395
|
-
[_dC, _n, _ta],
|
|
396
|
-
[() => DestinationConfiguration$, 0, 128 | 0], 1
|
|
397
|
-
];
|
|
398
|
-
var CreateLoggingConfigurationResponse$ = [3, n0, _CLCRr,
|
|
399
|
-
0,
|
|
400
|
-
[_ar, _i, _cT, _uT, _n, _dC, _s, _ta],
|
|
401
|
-
[0, 0, 5, 5, 0, () => DestinationConfiguration$, 0, 128 | 0]
|
|
402
|
-
];
|
|
403
|
-
var CreateRoomRequest$ = [3, n0, _CRR,
|
|
404
|
-
0,
|
|
405
|
-
[_n, _mMRPS, _mML, _mRH, _ta, _lCI],
|
|
406
|
-
[0, 1, 1, () => MessageReviewHandler$, 128 | 0, 64 | 0]
|
|
407
|
-
];
|
|
408
|
-
var CreateRoomResponse$ = [3, n0, _CRRr,
|
|
409
|
-
0,
|
|
410
|
-
[_ar, _i, _n, _cT, _uT, _mMRPS, _mML, _mRH, _ta, _lCI],
|
|
411
|
-
[0, 0, 0, 5, 5, 1, 1, () => MessageReviewHandler$, 128 | 0, 64 | 0]
|
|
412
|
-
];
|
|
413
|
-
var DeleteLoggingConfigurationRequest$ = [3, n0, _DLCR,
|
|
414
|
-
0,
|
|
415
|
-
[_id],
|
|
416
|
-
[0], 1
|
|
417
|
-
];
|
|
418
|
-
var DeleteMessageRequest$ = [3, n0, _DMR,
|
|
419
|
-
0,
|
|
420
|
-
[_rIo, _i, _r],
|
|
421
|
-
[0, 0, 0], 2
|
|
422
|
-
];
|
|
423
|
-
var DeleteMessageResponse$ = [3, n0, _DMRe,
|
|
424
|
-
0,
|
|
425
|
-
[_i],
|
|
426
|
-
[0]
|
|
427
|
-
];
|
|
428
|
-
var DeleteRoomRequest$ = [3, n0, _DRR,
|
|
429
|
-
0,
|
|
430
|
-
[_id],
|
|
431
|
-
[0], 1
|
|
432
|
-
];
|
|
433
|
-
var DisconnectUserRequest$ = [3, n0, _DUR,
|
|
434
|
-
0,
|
|
435
|
-
[_rIo, _uI, _r],
|
|
436
|
-
[0, [() => UserID, 0], 0], 2
|
|
437
|
-
];
|
|
438
|
-
var DisconnectUserResponse$ = [3, n0, _DURi,
|
|
439
|
-
0,
|
|
440
|
-
[],
|
|
441
|
-
[]
|
|
442
|
-
];
|
|
443
|
-
var FirehoseDestinationConfiguration$ = [3, n0, _FDC,
|
|
444
|
-
0,
|
|
445
|
-
[_dSN],
|
|
446
|
-
[0], 1
|
|
447
|
-
];
|
|
448
|
-
var GetLoggingConfigurationRequest$ = [3, n0, _GLCR,
|
|
449
|
-
0,
|
|
450
|
-
[_id],
|
|
451
|
-
[0], 1
|
|
452
|
-
];
|
|
453
|
-
var GetLoggingConfigurationResponse$ = [3, n0, _GLCRe,
|
|
454
|
-
0,
|
|
455
|
-
[_ar, _i, _cT, _uT, _n, _dC, _s, _ta],
|
|
456
|
-
[0, 0, 5, 5, 0, () => DestinationConfiguration$, 0, 128 | 0]
|
|
457
|
-
];
|
|
458
|
-
var GetRoomRequest$ = [3, n0, _GRR,
|
|
459
|
-
0,
|
|
460
|
-
[_id],
|
|
461
|
-
[0], 1
|
|
462
|
-
];
|
|
463
|
-
var GetRoomResponse$ = [3, n0, _GRRe,
|
|
464
|
-
0,
|
|
465
|
-
[_ar, _i, _n, _cT, _uT, _mMRPS, _mML, _mRH, _ta, _lCI],
|
|
466
|
-
[0, 0, 0, 5, 5, 1, 1, () => MessageReviewHandler$, 128 | 0, 64 | 0]
|
|
467
|
-
];
|
|
468
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
469
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
470
|
-
[_m],
|
|
471
|
-
[0], 1
|
|
472
|
-
];
|
|
473
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
474
|
-
var ListLoggingConfigurationsRequest$ = [3, n0, _LLCR,
|
|
475
|
-
0,
|
|
476
|
-
[_nT, _mR],
|
|
477
|
-
[0, 1]
|
|
478
|
-
];
|
|
479
|
-
var ListLoggingConfigurationsResponse$ = [3, n0, _LLCRi,
|
|
480
|
-
0,
|
|
481
|
-
[_lC, _nT],
|
|
482
|
-
[() => LoggingConfigurationList, 0], 1
|
|
483
|
-
];
|
|
484
|
-
var ListRoomsRequest$ = [3, n0, _LRR,
|
|
485
|
-
0,
|
|
486
|
-
[_n, _nT, _mR, _mRHU, _lCIo],
|
|
487
|
-
[0, 0, 1, 0, 0]
|
|
488
|
-
];
|
|
489
|
-
var ListRoomsResponse$ = [3, n0, _LRRi,
|
|
490
|
-
0,
|
|
491
|
-
[_ro, _nT],
|
|
492
|
-
[() => RoomList, 0], 1
|
|
493
|
-
];
|
|
494
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
495
|
-
0,
|
|
496
|
-
[_rA],
|
|
497
|
-
[[0, 1]], 1
|
|
498
|
-
];
|
|
499
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
500
|
-
0,
|
|
501
|
-
[_ta],
|
|
502
|
-
[128 | 0], 1
|
|
503
|
-
];
|
|
504
|
-
var LoggingConfigurationSummary$ = [3, n0, _LCS,
|
|
505
|
-
0,
|
|
506
|
-
[_ar, _i, _cT, _uT, _n, _dC, _s, _ta],
|
|
507
|
-
[0, 0, 5, 5, 0, () => DestinationConfiguration$, 0, 128 | 0]
|
|
508
|
-
];
|
|
509
|
-
var MessageReviewHandler$ = [3, n0, _MRH,
|
|
510
|
-
0,
|
|
511
|
-
[_u, _fR],
|
|
512
|
-
[0, 0]
|
|
513
|
-
];
|
|
514
|
-
var PendingVerification$ = [-3, n0, _PV,
|
|
515
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
516
|
-
[_m],
|
|
517
|
-
[0], 1
|
|
518
|
-
];
|
|
519
|
-
schema.TypeRegistry.for(n0).registerError(PendingVerification$, PendingVerification);
|
|
520
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
521
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
522
|
-
[_m, _rI, _rT],
|
|
523
|
-
[0, 0, 0], 3
|
|
524
|
-
];
|
|
525
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
526
|
-
var RoomSummary$ = [3, n0, _RS,
|
|
527
|
-
0,
|
|
528
|
-
[_ar, _i, _n, _mRH, _cT, _uT, _ta, _lCI],
|
|
529
|
-
[0, 0, 0, () => MessageReviewHandler$, 5, 5, 128 | 0, 64 | 0]
|
|
530
|
-
];
|
|
531
|
-
var S3DestinationConfiguration$ = [3, n0, _SDC,
|
|
532
|
-
0,
|
|
533
|
-
[_bN],
|
|
534
|
-
[0], 1
|
|
535
|
-
];
|
|
536
|
-
var SendEventRequest$ = [3, n0, _SER,
|
|
537
|
-
0,
|
|
538
|
-
[_rIo, _eN, _a],
|
|
539
|
-
[0, 0, 128 | 0], 2
|
|
540
|
-
];
|
|
541
|
-
var SendEventResponse$ = [3, n0, _SERe,
|
|
542
|
-
0,
|
|
543
|
-
[_i],
|
|
544
|
-
[0]
|
|
545
|
-
];
|
|
546
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
547
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
548
|
-
[_m, _rI, _rT, _l],
|
|
549
|
-
[0, 0, 0, 1], 4
|
|
550
|
-
];
|
|
551
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
552
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
553
|
-
0,
|
|
554
|
-
[_rA, _ta],
|
|
555
|
-
[[0, 1], 128 | 0], 2
|
|
556
|
-
];
|
|
557
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
558
|
-
0,
|
|
559
|
-
[],
|
|
560
|
-
[]
|
|
561
|
-
];
|
|
562
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
563
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
564
|
-
[_m, _rI, _rT, _l],
|
|
565
|
-
[0, 0, 0, 1], 4
|
|
566
|
-
];
|
|
567
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
568
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
569
|
-
0,
|
|
570
|
-
[_rA, _tK],
|
|
571
|
-
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
572
|
-
];
|
|
573
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
574
|
-
0,
|
|
575
|
-
[],
|
|
576
|
-
[]
|
|
577
|
-
];
|
|
578
|
-
var UpdateLoggingConfigurationRequest$ = [3, n0, _ULCR,
|
|
579
|
-
0,
|
|
580
|
-
[_id, _n, _dC],
|
|
581
|
-
[0, 0, () => DestinationConfiguration$], 1
|
|
582
|
-
];
|
|
583
|
-
var UpdateLoggingConfigurationResponse$ = [3, n0, _ULCRp,
|
|
584
|
-
0,
|
|
585
|
-
[_ar, _i, _cT, _uT, _n, _dC, _s, _ta],
|
|
586
|
-
[0, 0, 5, 5, 0, () => DestinationConfiguration$, 0, 128 | 0]
|
|
587
|
-
];
|
|
588
|
-
var UpdateRoomRequest$ = [3, n0, _URRp,
|
|
589
|
-
0,
|
|
590
|
-
[_id, _n, _mMRPS, _mML, _mRH, _lCI],
|
|
591
|
-
[0, 0, 1, 1, () => MessageReviewHandler$, 64 | 0], 1
|
|
592
|
-
];
|
|
593
|
-
var UpdateRoomResponse$ = [3, n0, _URRpd,
|
|
594
|
-
0,
|
|
595
|
-
[_ar, _i, _n, _cT, _uT, _mMRPS, _mML, _mRH, _ta, _lCI],
|
|
596
|
-
[0, 0, 0, 5, 5, 1, 1, () => MessageReviewHandler$, 128 | 0, 64 | 0]
|
|
597
|
-
];
|
|
598
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
599
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
600
|
-
[_m, _r, _fL],
|
|
601
|
-
[0, 0, () => ValidationExceptionFieldList], 2
|
|
602
|
-
];
|
|
603
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
604
|
-
var ValidationExceptionField$ = [3, n0, _VEF,
|
|
605
|
-
0,
|
|
606
|
-
[_n, _m],
|
|
607
|
-
[0, 0], 2
|
|
608
|
-
];
|
|
609
|
-
var __Unit = "unit";
|
|
610
|
-
var IvschatServiceException$ = [-3, _sm, "IvschatServiceException", 0, [], []];
|
|
611
|
-
schema.TypeRegistry.for(_sm).registerError(IvschatServiceException$, IvschatServiceException);
|
|
612
|
-
var LoggingConfigurationList = [1, n0, _LCL,
|
|
613
|
-
0, () => LoggingConfigurationSummary$
|
|
614
|
-
];
|
|
615
|
-
var RoomList = [1, n0, _RL,
|
|
616
|
-
0, () => RoomSummary$
|
|
617
|
-
];
|
|
618
|
-
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
619
|
-
0, () => ValidationExceptionField$
|
|
620
|
-
];
|
|
621
|
-
var ChatTokenAttributes = [2, n0, _CTA,
|
|
622
|
-
8, 0, 0
|
|
623
|
-
];
|
|
624
|
-
var DestinationConfiguration$ = [4, n0, _DC,
|
|
625
|
-
0,
|
|
626
|
-
[_s_, _cWL, _f],
|
|
627
|
-
[() => S3DestinationConfiguration$, () => CloudWatchLogsDestinationConfiguration$, () => FirehoseDestinationConfiguration$]
|
|
628
|
-
];
|
|
629
|
-
var CreateChatToken$ = [9, n0, _CCT,
|
|
630
|
-
{ [_h]: ["POST", "/CreateChatToken", 200] }, () => CreateChatTokenRequest$, () => CreateChatTokenResponse$
|
|
631
|
-
];
|
|
632
|
-
var CreateLoggingConfiguration$ = [9, n0, _CLC,
|
|
633
|
-
{ [_h]: ["POST", "/CreateLoggingConfiguration", 200] }, () => CreateLoggingConfigurationRequest$, () => CreateLoggingConfigurationResponse$
|
|
634
|
-
];
|
|
635
|
-
var CreateRoom$ = [9, n0, _CR,
|
|
636
|
-
{ [_h]: ["POST", "/CreateRoom", 200] }, () => CreateRoomRequest$, () => CreateRoomResponse$
|
|
637
|
-
];
|
|
638
|
-
var DeleteLoggingConfiguration$ = [9, n0, _DLC,
|
|
639
|
-
{ [_h]: ["POST", "/DeleteLoggingConfiguration", 204] }, () => DeleteLoggingConfigurationRequest$, () => __Unit
|
|
640
|
-
];
|
|
641
|
-
var DeleteMessage$ = [9, n0, _DM,
|
|
642
|
-
{ [_h]: ["POST", "/DeleteMessage", 200] }, () => DeleteMessageRequest$, () => DeleteMessageResponse$
|
|
643
|
-
];
|
|
644
|
-
var DeleteRoom$ = [9, n0, _DR,
|
|
645
|
-
{ [_h]: ["POST", "/DeleteRoom", 204] }, () => DeleteRoomRequest$, () => __Unit
|
|
646
|
-
];
|
|
647
|
-
var DisconnectUser$ = [9, n0, _DU,
|
|
648
|
-
{ [_h]: ["POST", "/DisconnectUser", 200] }, () => DisconnectUserRequest$, () => DisconnectUserResponse$
|
|
649
|
-
];
|
|
650
|
-
var GetLoggingConfiguration$ = [9, n0, _GLC,
|
|
651
|
-
{ [_h]: ["POST", "/GetLoggingConfiguration", 200] }, () => GetLoggingConfigurationRequest$, () => GetLoggingConfigurationResponse$
|
|
652
|
-
];
|
|
653
|
-
var GetRoom$ = [9, n0, _GR,
|
|
654
|
-
{ [_h]: ["POST", "/GetRoom", 200] }, () => GetRoomRequest$, () => GetRoomResponse$
|
|
655
|
-
];
|
|
656
|
-
var ListLoggingConfigurations$ = [9, n0, _LLC,
|
|
657
|
-
{ [_h]: ["POST", "/ListLoggingConfigurations", 200] }, () => ListLoggingConfigurationsRequest$, () => ListLoggingConfigurationsResponse$
|
|
658
|
-
];
|
|
659
|
-
var ListRooms$ = [9, n0, _LR,
|
|
660
|
-
{ [_h]: ["POST", "/ListRooms", 200] }, () => ListRoomsRequest$, () => ListRoomsResponse$
|
|
661
|
-
];
|
|
662
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
663
|
-
{ [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
664
|
-
];
|
|
665
|
-
var SendEvent$ = [9, n0, _SE,
|
|
666
|
-
{ [_h]: ["POST", "/SendEvent", 200] }, () => SendEventRequest$, () => SendEventResponse$
|
|
667
|
-
];
|
|
668
|
-
var TagResource$ = [9, n0, _TR,
|
|
669
|
-
{ [_h]: ["POST", "/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
670
|
-
];
|
|
671
|
-
var UntagResource$ = [9, n0, _UR,
|
|
672
|
-
{ [_h]: ["DELETE", "/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
673
|
-
];
|
|
674
|
-
var UpdateLoggingConfiguration$ = [9, n0, _ULC,
|
|
675
|
-
{ [_h]: ["POST", "/UpdateLoggingConfiguration", 200] }, () => UpdateLoggingConfigurationRequest$, () => UpdateLoggingConfigurationResponse$
|
|
676
|
-
];
|
|
677
|
-
var UpdateRoom$ = [9, n0, _URp,
|
|
678
|
-
{ [_h]: ["POST", "/UpdateRoom", 200] }, () => UpdateRoomRequest$, () => UpdateRoomResponse$
|
|
679
|
-
];
|
|
680
|
-
|
|
681
116
|
class CreateChatTokenCommand extends smithyClient.Command
|
|
682
117
|
.classBuilder()
|
|
683
118
|
.ep(commonParams)
|
|
@@ -686,7 +121,7 @@ class CreateChatTokenCommand extends smithyClient.Command
|
|
|
686
121
|
})
|
|
687
122
|
.s("AmazonInteractiveVideoServiceChat", "CreateChatToken", {})
|
|
688
123
|
.n("IvschatClient", "CreateChatTokenCommand")
|
|
689
|
-
.sc(CreateChatToken$)
|
|
124
|
+
.sc(schemas_0.CreateChatToken$)
|
|
690
125
|
.build() {
|
|
691
126
|
}
|
|
692
127
|
|
|
@@ -698,7 +133,7 @@ class CreateLoggingConfigurationCommand extends smithyClient.Command
|
|
|
698
133
|
})
|
|
699
134
|
.s("AmazonInteractiveVideoServiceChat", "CreateLoggingConfiguration", {})
|
|
700
135
|
.n("IvschatClient", "CreateLoggingConfigurationCommand")
|
|
701
|
-
.sc(CreateLoggingConfiguration$)
|
|
136
|
+
.sc(schemas_0.CreateLoggingConfiguration$)
|
|
702
137
|
.build() {
|
|
703
138
|
}
|
|
704
139
|
|
|
@@ -710,7 +145,7 @@ class CreateRoomCommand extends smithyClient.Command
|
|
|
710
145
|
})
|
|
711
146
|
.s("AmazonInteractiveVideoServiceChat", "CreateRoom", {})
|
|
712
147
|
.n("IvschatClient", "CreateRoomCommand")
|
|
713
|
-
.sc(CreateRoom$)
|
|
148
|
+
.sc(schemas_0.CreateRoom$)
|
|
714
149
|
.build() {
|
|
715
150
|
}
|
|
716
151
|
|
|
@@ -722,7 +157,7 @@ class DeleteLoggingConfigurationCommand extends smithyClient.Command
|
|
|
722
157
|
})
|
|
723
158
|
.s("AmazonInteractiveVideoServiceChat", "DeleteLoggingConfiguration", {})
|
|
724
159
|
.n("IvschatClient", "DeleteLoggingConfigurationCommand")
|
|
725
|
-
.sc(DeleteLoggingConfiguration$)
|
|
160
|
+
.sc(schemas_0.DeleteLoggingConfiguration$)
|
|
726
161
|
.build() {
|
|
727
162
|
}
|
|
728
163
|
|
|
@@ -734,7 +169,7 @@ class DeleteMessageCommand extends smithyClient.Command
|
|
|
734
169
|
})
|
|
735
170
|
.s("AmazonInteractiveVideoServiceChat", "DeleteMessage", {})
|
|
736
171
|
.n("IvschatClient", "DeleteMessageCommand")
|
|
737
|
-
.sc(DeleteMessage$)
|
|
172
|
+
.sc(schemas_0.DeleteMessage$)
|
|
738
173
|
.build() {
|
|
739
174
|
}
|
|
740
175
|
|
|
@@ -746,7 +181,7 @@ class DeleteRoomCommand extends smithyClient.Command
|
|
|
746
181
|
})
|
|
747
182
|
.s("AmazonInteractiveVideoServiceChat", "DeleteRoom", {})
|
|
748
183
|
.n("IvschatClient", "DeleteRoomCommand")
|
|
749
|
-
.sc(DeleteRoom$)
|
|
184
|
+
.sc(schemas_0.DeleteRoom$)
|
|
750
185
|
.build() {
|
|
751
186
|
}
|
|
752
187
|
|
|
@@ -758,7 +193,7 @@ class DisconnectUserCommand extends smithyClient.Command
|
|
|
758
193
|
})
|
|
759
194
|
.s("AmazonInteractiveVideoServiceChat", "DisconnectUser", {})
|
|
760
195
|
.n("IvschatClient", "DisconnectUserCommand")
|
|
761
|
-
.sc(DisconnectUser$)
|
|
196
|
+
.sc(schemas_0.DisconnectUser$)
|
|
762
197
|
.build() {
|
|
763
198
|
}
|
|
764
199
|
|
|
@@ -770,7 +205,7 @@ class GetLoggingConfigurationCommand extends smithyClient.Command
|
|
|
770
205
|
})
|
|
771
206
|
.s("AmazonInteractiveVideoServiceChat", "GetLoggingConfiguration", {})
|
|
772
207
|
.n("IvschatClient", "GetLoggingConfigurationCommand")
|
|
773
|
-
.sc(GetLoggingConfiguration$)
|
|
208
|
+
.sc(schemas_0.GetLoggingConfiguration$)
|
|
774
209
|
.build() {
|
|
775
210
|
}
|
|
776
211
|
|
|
@@ -782,7 +217,7 @@ class GetRoomCommand extends smithyClient.Command
|
|
|
782
217
|
})
|
|
783
218
|
.s("AmazonInteractiveVideoServiceChat", "GetRoom", {})
|
|
784
219
|
.n("IvschatClient", "GetRoomCommand")
|
|
785
|
-
.sc(GetRoom$)
|
|
220
|
+
.sc(schemas_0.GetRoom$)
|
|
786
221
|
.build() {
|
|
787
222
|
}
|
|
788
223
|
|
|
@@ -794,7 +229,7 @@ class ListLoggingConfigurationsCommand extends smithyClient.Command
|
|
|
794
229
|
})
|
|
795
230
|
.s("AmazonInteractiveVideoServiceChat", "ListLoggingConfigurations", {})
|
|
796
231
|
.n("IvschatClient", "ListLoggingConfigurationsCommand")
|
|
797
|
-
.sc(ListLoggingConfigurations$)
|
|
232
|
+
.sc(schemas_0.ListLoggingConfigurations$)
|
|
798
233
|
.build() {
|
|
799
234
|
}
|
|
800
235
|
|
|
@@ -806,7 +241,7 @@ class ListRoomsCommand extends smithyClient.Command
|
|
|
806
241
|
})
|
|
807
242
|
.s("AmazonInteractiveVideoServiceChat", "ListRooms", {})
|
|
808
243
|
.n("IvschatClient", "ListRoomsCommand")
|
|
809
|
-
.sc(ListRooms$)
|
|
244
|
+
.sc(schemas_0.ListRooms$)
|
|
810
245
|
.build() {
|
|
811
246
|
}
|
|
812
247
|
|
|
@@ -818,7 +253,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
818
253
|
})
|
|
819
254
|
.s("AmazonInteractiveVideoServiceChat", "ListTagsForResource", {})
|
|
820
255
|
.n("IvschatClient", "ListTagsForResourceCommand")
|
|
821
|
-
.sc(ListTagsForResource$)
|
|
256
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
822
257
|
.build() {
|
|
823
258
|
}
|
|
824
259
|
|
|
@@ -830,7 +265,7 @@ class SendEventCommand extends smithyClient.Command
|
|
|
830
265
|
})
|
|
831
266
|
.s("AmazonInteractiveVideoServiceChat", "SendEvent", {})
|
|
832
267
|
.n("IvschatClient", "SendEventCommand")
|
|
833
|
-
.sc(SendEvent$)
|
|
268
|
+
.sc(schemas_0.SendEvent$)
|
|
834
269
|
.build() {
|
|
835
270
|
}
|
|
836
271
|
|
|
@@ -842,7 +277,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
842
277
|
})
|
|
843
278
|
.s("AmazonInteractiveVideoServiceChat", "TagResource", {})
|
|
844
279
|
.n("IvschatClient", "TagResourceCommand")
|
|
845
|
-
.sc(TagResource$)
|
|
280
|
+
.sc(schemas_0.TagResource$)
|
|
846
281
|
.build() {
|
|
847
282
|
}
|
|
848
283
|
|
|
@@ -854,7 +289,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
854
289
|
})
|
|
855
290
|
.s("AmazonInteractiveVideoServiceChat", "UntagResource", {})
|
|
856
291
|
.n("IvschatClient", "UntagResourceCommand")
|
|
857
|
-
.sc(UntagResource$)
|
|
292
|
+
.sc(schemas_0.UntagResource$)
|
|
858
293
|
.build() {
|
|
859
294
|
}
|
|
860
295
|
|
|
@@ -866,7 +301,7 @@ class UpdateLoggingConfigurationCommand extends smithyClient.Command
|
|
|
866
301
|
})
|
|
867
302
|
.s("AmazonInteractiveVideoServiceChat", "UpdateLoggingConfiguration", {})
|
|
868
303
|
.n("IvschatClient", "UpdateLoggingConfigurationCommand")
|
|
869
|
-
.sc(UpdateLoggingConfiguration$)
|
|
304
|
+
.sc(schemas_0.UpdateLoggingConfiguration$)
|
|
870
305
|
.build() {
|
|
871
306
|
}
|
|
872
307
|
|
|
@@ -878,7 +313,7 @@ class UpdateRoomCommand extends smithyClient.Command
|
|
|
878
313
|
})
|
|
879
314
|
.s("AmazonInteractiveVideoServiceChat", "UpdateRoom", {})
|
|
880
315
|
.n("IvschatClient", "UpdateRoomCommand")
|
|
881
|
-
.sc(UpdateRoom$)
|
|
316
|
+
.sc(schemas_0.UpdateRoom$)
|
|
882
317
|
.build() {
|
|
883
318
|
}
|
|
884
319
|
|
|
@@ -954,106 +389,47 @@ Object.defineProperty(exports, "__Client", {
|
|
|
954
389
|
enumerable: true,
|
|
955
390
|
get: function () { return smithyClient.Client; }
|
|
956
391
|
});
|
|
957
|
-
exports
|
|
958
|
-
|
|
392
|
+
Object.defineProperty(exports, "IvschatServiceException", {
|
|
393
|
+
enumerable: true,
|
|
394
|
+
get: function () { return IvschatServiceException.IvschatServiceException; }
|
|
395
|
+
});
|
|
959
396
|
exports.ChatTokenCapability = ChatTokenCapability;
|
|
960
|
-
exports.CloudWatchLogsDestinationConfiguration$ = CloudWatchLogsDestinationConfiguration$;
|
|
961
|
-
exports.ConflictException = ConflictException;
|
|
962
|
-
exports.ConflictException$ = ConflictException$;
|
|
963
|
-
exports.CreateChatToken$ = CreateChatToken$;
|
|
964
397
|
exports.CreateChatTokenCommand = CreateChatTokenCommand;
|
|
965
|
-
exports.CreateChatTokenRequest$ = CreateChatTokenRequest$;
|
|
966
|
-
exports.CreateChatTokenResponse$ = CreateChatTokenResponse$;
|
|
967
|
-
exports.CreateLoggingConfiguration$ = CreateLoggingConfiguration$;
|
|
968
398
|
exports.CreateLoggingConfigurationCommand = CreateLoggingConfigurationCommand;
|
|
969
|
-
exports.CreateLoggingConfigurationRequest$ = CreateLoggingConfigurationRequest$;
|
|
970
|
-
exports.CreateLoggingConfigurationResponse$ = CreateLoggingConfigurationResponse$;
|
|
971
399
|
exports.CreateLoggingConfigurationState = CreateLoggingConfigurationState;
|
|
972
|
-
exports.CreateRoom$ = CreateRoom$;
|
|
973
400
|
exports.CreateRoomCommand = CreateRoomCommand;
|
|
974
|
-
exports.CreateRoomRequest$ = CreateRoomRequest$;
|
|
975
|
-
exports.CreateRoomResponse$ = CreateRoomResponse$;
|
|
976
|
-
exports.DeleteLoggingConfiguration$ = DeleteLoggingConfiguration$;
|
|
977
401
|
exports.DeleteLoggingConfigurationCommand = DeleteLoggingConfigurationCommand;
|
|
978
|
-
exports.DeleteLoggingConfigurationRequest$ = DeleteLoggingConfigurationRequest$;
|
|
979
|
-
exports.DeleteMessage$ = DeleteMessage$;
|
|
980
402
|
exports.DeleteMessageCommand = DeleteMessageCommand;
|
|
981
|
-
exports.DeleteMessageRequest$ = DeleteMessageRequest$;
|
|
982
|
-
exports.DeleteMessageResponse$ = DeleteMessageResponse$;
|
|
983
|
-
exports.DeleteRoom$ = DeleteRoom$;
|
|
984
403
|
exports.DeleteRoomCommand = DeleteRoomCommand;
|
|
985
|
-
exports.DeleteRoomRequest$ = DeleteRoomRequest$;
|
|
986
|
-
exports.DestinationConfiguration$ = DestinationConfiguration$;
|
|
987
|
-
exports.DisconnectUser$ = DisconnectUser$;
|
|
988
404
|
exports.DisconnectUserCommand = DisconnectUserCommand;
|
|
989
|
-
exports.DisconnectUserRequest$ = DisconnectUserRequest$;
|
|
990
|
-
exports.DisconnectUserResponse$ = DisconnectUserResponse$;
|
|
991
405
|
exports.FallbackResult = FallbackResult;
|
|
992
|
-
exports.FirehoseDestinationConfiguration$ = FirehoseDestinationConfiguration$;
|
|
993
|
-
exports.GetLoggingConfiguration$ = GetLoggingConfiguration$;
|
|
994
406
|
exports.GetLoggingConfigurationCommand = GetLoggingConfigurationCommand;
|
|
995
|
-
exports.GetLoggingConfigurationRequest$ = GetLoggingConfigurationRequest$;
|
|
996
|
-
exports.GetLoggingConfigurationResponse$ = GetLoggingConfigurationResponse$;
|
|
997
|
-
exports.GetRoom$ = GetRoom$;
|
|
998
407
|
exports.GetRoomCommand = GetRoomCommand;
|
|
999
|
-
exports.GetRoomRequest$ = GetRoomRequest$;
|
|
1000
|
-
exports.GetRoomResponse$ = GetRoomResponse$;
|
|
1001
|
-
exports.InternalServerException = InternalServerException;
|
|
1002
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
1003
408
|
exports.Ivschat = Ivschat;
|
|
1004
409
|
exports.IvschatClient = IvschatClient;
|
|
1005
|
-
exports.IvschatServiceException = IvschatServiceException;
|
|
1006
|
-
exports.IvschatServiceException$ = IvschatServiceException$;
|
|
1007
|
-
exports.ListLoggingConfigurations$ = ListLoggingConfigurations$;
|
|
1008
410
|
exports.ListLoggingConfigurationsCommand = ListLoggingConfigurationsCommand;
|
|
1009
|
-
exports.ListLoggingConfigurationsRequest$ = ListLoggingConfigurationsRequest$;
|
|
1010
|
-
exports.ListLoggingConfigurationsResponse$ = ListLoggingConfigurationsResponse$;
|
|
1011
|
-
exports.ListRooms$ = ListRooms$;
|
|
1012
411
|
exports.ListRoomsCommand = ListRoomsCommand;
|
|
1013
|
-
exports.ListRoomsRequest$ = ListRoomsRequest$;
|
|
1014
|
-
exports.ListRoomsResponse$ = ListRoomsResponse$;
|
|
1015
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1016
412
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1017
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1018
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1019
413
|
exports.LoggingConfigurationState = LoggingConfigurationState;
|
|
1020
|
-
exports.LoggingConfigurationSummary$ = LoggingConfigurationSummary$;
|
|
1021
|
-
exports.MessageReviewHandler$ = MessageReviewHandler$;
|
|
1022
|
-
exports.PendingVerification = PendingVerification;
|
|
1023
|
-
exports.PendingVerification$ = PendingVerification$;
|
|
1024
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1025
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1026
414
|
exports.ResourceType = ResourceType;
|
|
1027
|
-
exports.RoomSummary$ = RoomSummary$;
|
|
1028
|
-
exports.S3DestinationConfiguration$ = S3DestinationConfiguration$;
|
|
1029
|
-
exports.SendEvent$ = SendEvent$;
|
|
1030
415
|
exports.SendEventCommand = SendEventCommand;
|
|
1031
|
-
exports.SendEventRequest$ = SendEventRequest$;
|
|
1032
|
-
exports.SendEventResponse$ = SendEventResponse$;
|
|
1033
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1034
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1035
|
-
exports.TagResource$ = TagResource$;
|
|
1036
416
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1037
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1038
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1039
|
-
exports.ThrottlingException = ThrottlingException;
|
|
1040
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
1041
|
-
exports.UntagResource$ = UntagResource$;
|
|
1042
417
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1043
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1044
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1045
|
-
exports.UpdateLoggingConfiguration$ = UpdateLoggingConfiguration$;
|
|
1046
418
|
exports.UpdateLoggingConfigurationCommand = UpdateLoggingConfigurationCommand;
|
|
1047
|
-
exports.UpdateLoggingConfigurationRequest$ = UpdateLoggingConfigurationRequest$;
|
|
1048
|
-
exports.UpdateLoggingConfigurationResponse$ = UpdateLoggingConfigurationResponse$;
|
|
1049
419
|
exports.UpdateLoggingConfigurationState = UpdateLoggingConfigurationState;
|
|
1050
|
-
exports.UpdateRoom$ = UpdateRoom$;
|
|
1051
420
|
exports.UpdateRoomCommand = UpdateRoomCommand;
|
|
1052
|
-
exports.UpdateRoomRequest$ = UpdateRoomRequest$;
|
|
1053
|
-
exports.UpdateRoomResponse$ = UpdateRoomResponse$;
|
|
1054
|
-
exports.ValidationException = ValidationException;
|
|
1055
|
-
exports.ValidationException$ = ValidationException$;
|
|
1056
|
-
exports.ValidationExceptionField$ = ValidationExceptionField$;
|
|
1057
421
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
1058
422
|
exports.paginateListLoggingConfigurations = paginateListLoggingConfigurations;
|
|
1059
423
|
exports.paginateListRooms = paginateListRooms;
|
|
424
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
425
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
426
|
+
enumerable: true,
|
|
427
|
+
get: function () { return schemas_0[k]; }
|
|
428
|
+
});
|
|
429
|
+
});
|
|
430
|
+
Object.keys(errors).forEach(function (k) {
|
|
431
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
432
|
+
enumerable: true,
|
|
433
|
+
get: function () { return errors[k]; }
|
|
434
|
+
});
|
|
435
|
+
});
|