@aws-sdk/client-connectcases 3.928.0 → 3.930.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 +1928 -2515
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/ConnectCasesClient.js +2 -0
- package/dist-es/commands/BatchGetCaseRuleCommand.js +3 -9
- package/dist-es/commands/BatchGetFieldCommand.js +3 -9
- package/dist-es/commands/BatchPutFieldOptionsCommand.js +3 -9
- package/dist-es/commands/CreateCaseCommand.js +3 -10
- package/dist-es/commands/CreateCaseRuleCommand.js +3 -9
- package/dist-es/commands/CreateDomainCommand.js +3 -9
- package/dist-es/commands/CreateFieldCommand.js +3 -9
- package/dist-es/commands/CreateLayoutCommand.js +3 -9
- package/dist-es/commands/CreateRelatedItemCommand.js +3 -10
- package/dist-es/commands/CreateTemplateCommand.js +3 -9
- package/dist-es/commands/DeleteCaseCommand.js +3 -9
- package/dist-es/commands/DeleteCaseRuleCommand.js +3 -9
- package/dist-es/commands/DeleteDomainCommand.js +3 -9
- package/dist-es/commands/DeleteFieldCommand.js +3 -9
- package/dist-es/commands/DeleteLayoutCommand.js +3 -9
- package/dist-es/commands/DeleteRelatedItemCommand.js +3 -9
- package/dist-es/commands/DeleteTemplateCommand.js +3 -9
- package/dist-es/commands/GetCaseAuditEventsCommand.js +3 -10
- package/dist-es/commands/GetCaseCommand.js +3 -9
- package/dist-es/commands/GetCaseEventConfigurationCommand.js +3 -9
- package/dist-es/commands/GetDomainCommand.js +3 -9
- package/dist-es/commands/GetLayoutCommand.js +3 -9
- package/dist-es/commands/GetTemplateCommand.js +3 -9
- package/dist-es/commands/ListCaseRulesCommand.js +3 -9
- package/dist-es/commands/ListCasesForContactCommand.js +3 -9
- package/dist-es/commands/ListDomainsCommand.js +3 -9
- package/dist-es/commands/ListFieldOptionsCommand.js +3 -9
- package/dist-es/commands/ListFieldsCommand.js +3 -9
- package/dist-es/commands/ListLayoutsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/ListTemplatesCommand.js +3 -9
- package/dist-es/commands/PutCaseEventConfigurationCommand.js +3 -9
- package/dist-es/commands/SearchAllRelatedItemsCommand.js +3 -10
- package/dist-es/commands/SearchCasesCommand.js +3 -9
- package/dist-es/commands/SearchRelatedItemsCommand.js +3 -10
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateCaseCommand.js +3 -10
- package/dist-es/commands/UpdateCaseRuleCommand.js +3 -9
- package/dist-es/commands/UpdateFieldCommand.js +3 -9
- package/dist-es/commands/UpdateLayoutCommand.js +3 -9
- package/dist-es/commands/UpdateTemplateCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -349
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1832 -0
- package/dist-types/ConnectCasesClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +64 -100
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +250 -0
- package/dist-types/ts3.4/ConnectCasesClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -71
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +257 -0
- package/package.json +33 -34
- package/dist-es/protocols/Aws_restJson1.js +0 -1837
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -380
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -509
package/dist-cjs/index.js
CHANGED
|
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
|
|
|
6
6
|
var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
|
|
7
7
|
var configResolver = require('@smithy/config-resolver');
|
|
8
8
|
var core = require('@smithy/core');
|
|
9
|
+
var schema = require('@smithy/core/schema');
|
|
9
10
|
var middlewareContentLength = require('@smithy/middleware-content-length');
|
|
10
11
|
var middlewareEndpoint = require('@smithy/middleware-endpoint');
|
|
11
12
|
var middlewareRetry = require('@smithy/middleware-retry');
|
|
@@ -14,9 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
14
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
15
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
16
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
17
|
-
var middlewareSerde = require('@smithy/middleware-serde');
|
|
18
|
-
var core$1 = require('@aws-sdk/core');
|
|
19
|
-
var uuid = require('@smithy/uuid');
|
|
20
18
|
|
|
21
19
|
const resolveClientEndpointParameters = (options) => {
|
|
22
20
|
return Object.assign(options, {
|
|
@@ -92,6 +90,7 @@ class ConnectCasesClient extends smithyClient.Client {
|
|
|
92
90
|
const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
|
|
93
91
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
94
92
|
this.config = _config_8;
|
|
93
|
+
this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
|
|
95
94
|
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
96
95
|
this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
|
|
97
96
|
this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
|
|
@@ -111,14 +110,14 @@ class ConnectCasesClient extends smithyClient.Client {
|
|
|
111
110
|
}
|
|
112
111
|
}
|
|
113
112
|
|
|
114
|
-
class ConnectCasesServiceException extends smithyClient.ServiceException {
|
|
113
|
+
let ConnectCasesServiceException$1 = class ConnectCasesServiceException extends smithyClient.ServiceException {
|
|
115
114
|
constructor(options) {
|
|
116
115
|
super(options);
|
|
117
116
|
Object.setPrototypeOf(this, ConnectCasesServiceException.prototype);
|
|
118
117
|
}
|
|
119
|
-
}
|
|
118
|
+
};
|
|
120
119
|
|
|
121
|
-
class AccessDeniedException extends ConnectCasesServiceException {
|
|
120
|
+
let AccessDeniedException$1 = class AccessDeniedException extends ConnectCasesServiceException$1 {
|
|
122
121
|
name = "AccessDeniedException";
|
|
123
122
|
$fault = "client";
|
|
124
123
|
constructor(opts) {
|
|
@@ -129,8 +128,8 @@ class AccessDeniedException extends ConnectCasesServiceException {
|
|
|
129
128
|
});
|
|
130
129
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
131
130
|
}
|
|
132
|
-
}
|
|
133
|
-
class ConflictException extends ConnectCasesServiceException {
|
|
131
|
+
};
|
|
132
|
+
let ConflictException$1 = class ConflictException extends ConnectCasesServiceException$1 {
|
|
134
133
|
name = "ConflictException";
|
|
135
134
|
$fault = "client";
|
|
136
135
|
constructor(opts) {
|
|
@@ -141,34 +140,8 @@ class ConflictException extends ConnectCasesServiceException {
|
|
|
141
140
|
});
|
|
142
141
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
143
142
|
}
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
(function (FieldValueUnion) {
|
|
147
|
-
FieldValueUnion.visit = (value, visitor) => {
|
|
148
|
-
if (value.stringValue !== undefined)
|
|
149
|
-
return visitor.stringValue(value.stringValue);
|
|
150
|
-
if (value.doubleValue !== undefined)
|
|
151
|
-
return visitor.doubleValue(value.doubleValue);
|
|
152
|
-
if (value.booleanValue !== undefined)
|
|
153
|
-
return visitor.booleanValue(value.booleanValue);
|
|
154
|
-
if (value.emptyValue !== undefined)
|
|
155
|
-
return visitor.emptyValue(value.emptyValue);
|
|
156
|
-
if (value.userArnValue !== undefined)
|
|
157
|
-
return visitor.userArnValue(value.userArnValue);
|
|
158
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
159
|
-
};
|
|
160
|
-
})(exports.FieldValueUnion || (exports.FieldValueUnion = {}));
|
|
161
|
-
exports.UserUnion = void 0;
|
|
162
|
-
(function (UserUnion) {
|
|
163
|
-
UserUnion.visit = (value, visitor) => {
|
|
164
|
-
if (value.userArn !== undefined)
|
|
165
|
-
return visitor.userArn(value.userArn);
|
|
166
|
-
if (value.customEntity !== undefined)
|
|
167
|
-
return visitor.customEntity(value.customEntity);
|
|
168
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
169
|
-
};
|
|
170
|
-
})(exports.UserUnion || (exports.UserUnion = {}));
|
|
171
|
-
class InternalServerException extends ConnectCasesServiceException {
|
|
143
|
+
};
|
|
144
|
+
let InternalServerException$1 = class InternalServerException extends ConnectCasesServiceException$1 {
|
|
172
145
|
name = "InternalServerException";
|
|
173
146
|
$fault = "server";
|
|
174
147
|
$retryable = {};
|
|
@@ -182,8 +155,8 @@ class InternalServerException extends ConnectCasesServiceException {
|
|
|
182
155
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
183
156
|
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
184
157
|
}
|
|
185
|
-
}
|
|
186
|
-
class ResourceNotFoundException extends ConnectCasesServiceException {
|
|
158
|
+
};
|
|
159
|
+
let ResourceNotFoundException$1 = class ResourceNotFoundException extends ConnectCasesServiceException$1 {
|
|
187
160
|
name = "ResourceNotFoundException";
|
|
188
161
|
$fault = "client";
|
|
189
162
|
resourceId;
|
|
@@ -198,8 +171,8 @@ class ResourceNotFoundException extends ConnectCasesServiceException {
|
|
|
198
171
|
this.resourceId = opts.resourceId;
|
|
199
172
|
this.resourceType = opts.resourceType;
|
|
200
173
|
}
|
|
201
|
-
}
|
|
202
|
-
class ThrottlingException extends ConnectCasesServiceException {
|
|
174
|
+
};
|
|
175
|
+
let ThrottlingException$1 = class ThrottlingException extends ConnectCasesServiceException$1 {
|
|
203
176
|
name = "ThrottlingException";
|
|
204
177
|
$fault = "client";
|
|
205
178
|
$retryable = {};
|
|
@@ -211,8 +184,8 @@ class ThrottlingException extends ConnectCasesServiceException {
|
|
|
211
184
|
});
|
|
212
185
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
213
186
|
}
|
|
214
|
-
}
|
|
215
|
-
class ValidationException extends ConnectCasesServiceException {
|
|
187
|
+
};
|
|
188
|
+
let ValidationException$1 = class ValidationException extends ConnectCasesServiceException$1 {
|
|
216
189
|
name = "ValidationException";
|
|
217
190
|
$fault = "client";
|
|
218
191
|
constructor(opts) {
|
|
@@ -223,23 +196,7 @@ class ValidationException extends ConnectCasesServiceException {
|
|
|
223
196
|
});
|
|
224
197
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
225
198
|
}
|
|
226
|
-
}
|
|
227
|
-
exports.AuditEventFieldValueUnion = void 0;
|
|
228
|
-
(function (AuditEventFieldValueUnion) {
|
|
229
|
-
AuditEventFieldValueUnion.visit = (value, visitor) => {
|
|
230
|
-
if (value.stringValue !== undefined)
|
|
231
|
-
return visitor.stringValue(value.stringValue);
|
|
232
|
-
if (value.doubleValue !== undefined)
|
|
233
|
-
return visitor.doubleValue(value.doubleValue);
|
|
234
|
-
if (value.booleanValue !== undefined)
|
|
235
|
-
return visitor.booleanValue(value.booleanValue);
|
|
236
|
-
if (value.emptyValue !== undefined)
|
|
237
|
-
return visitor.emptyValue(value.emptyValue);
|
|
238
|
-
if (value.userArnValue !== undefined)
|
|
239
|
-
return visitor.userArnValue(value.userArnValue);
|
|
240
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
241
|
-
};
|
|
242
|
-
})(exports.AuditEventFieldValueUnion || (exports.AuditEventFieldValueUnion = {}));
|
|
199
|
+
};
|
|
243
200
|
const RelatedItemType = {
|
|
244
201
|
COMMENT: "Comment",
|
|
245
202
|
CONNECT_CASE: "ConnectCase",
|
|
@@ -259,33 +216,7 @@ const CommentBodyTextType = {
|
|
|
259
216
|
const SlaType = {
|
|
260
217
|
CASE_FIELD: "CaseField",
|
|
261
218
|
};
|
|
262
|
-
|
|
263
|
-
(function (SlaInputContent) {
|
|
264
|
-
SlaInputContent.visit = (value, visitor) => {
|
|
265
|
-
if (value.slaInputConfiguration !== undefined)
|
|
266
|
-
return visitor.slaInputConfiguration(value.slaInputConfiguration);
|
|
267
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
268
|
-
};
|
|
269
|
-
})(exports.SlaInputContent || (exports.SlaInputContent = {}));
|
|
270
|
-
exports.RelatedItemInputContent = void 0;
|
|
271
|
-
(function (RelatedItemInputContent) {
|
|
272
|
-
RelatedItemInputContent.visit = (value, visitor) => {
|
|
273
|
-
if (value.contact !== undefined)
|
|
274
|
-
return visitor.contact(value.contact);
|
|
275
|
-
if (value.comment !== undefined)
|
|
276
|
-
return visitor.comment(value.comment);
|
|
277
|
-
if (value.file !== undefined)
|
|
278
|
-
return visitor.file(value.file);
|
|
279
|
-
if (value.sla !== undefined)
|
|
280
|
-
return visitor.sla(value.sla);
|
|
281
|
-
if (value.connectCase !== undefined)
|
|
282
|
-
return visitor.connectCase(value.connectCase);
|
|
283
|
-
if (value.custom !== undefined)
|
|
284
|
-
return visitor.custom(value.custom);
|
|
285
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
286
|
-
};
|
|
287
|
-
})(exports.RelatedItemInputContent || (exports.RelatedItemInputContent = {}));
|
|
288
|
-
class ServiceQuotaExceededException extends ConnectCasesServiceException {
|
|
219
|
+
let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends ConnectCasesServiceException$1 {
|
|
289
220
|
name = "ServiceQuotaExceededException";
|
|
290
221
|
$fault = "client";
|
|
291
222
|
constructor(opts) {
|
|
@@ -296,97 +227,17 @@ class ServiceQuotaExceededException extends ConnectCasesServiceException {
|
|
|
296
227
|
});
|
|
297
228
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
298
229
|
}
|
|
299
|
-
}
|
|
300
|
-
exports.FieldFilter = void 0;
|
|
301
|
-
(function (FieldFilter) {
|
|
302
|
-
FieldFilter.visit = (value, visitor) => {
|
|
303
|
-
if (value.equalTo !== undefined)
|
|
304
|
-
return visitor.equalTo(value.equalTo);
|
|
305
|
-
if (value.contains !== undefined)
|
|
306
|
-
return visitor.contains(value.contains);
|
|
307
|
-
if (value.greaterThan !== undefined)
|
|
308
|
-
return visitor.greaterThan(value.greaterThan);
|
|
309
|
-
if (value.greaterThanOrEqualTo !== undefined)
|
|
310
|
-
return visitor.greaterThanOrEqualTo(value.greaterThanOrEqualTo);
|
|
311
|
-
if (value.lessThan !== undefined)
|
|
312
|
-
return visitor.lessThan(value.lessThan);
|
|
313
|
-
if (value.lessThanOrEqualTo !== undefined)
|
|
314
|
-
return visitor.lessThanOrEqualTo(value.lessThanOrEqualTo);
|
|
315
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
316
|
-
};
|
|
317
|
-
})(exports.FieldFilter || (exports.FieldFilter = {}));
|
|
230
|
+
};
|
|
318
231
|
const SlaStatus = {
|
|
319
232
|
ACTIVE: "Active",
|
|
320
233
|
MET: "Met",
|
|
321
234
|
NOT_MET: "NotMet",
|
|
322
235
|
OVERDUE: "Overdue",
|
|
323
236
|
};
|
|
324
|
-
exports.RelatedItemContent = void 0;
|
|
325
|
-
(function (RelatedItemContent) {
|
|
326
|
-
RelatedItemContent.visit = (value, visitor) => {
|
|
327
|
-
if (value.contact !== undefined)
|
|
328
|
-
return visitor.contact(value.contact);
|
|
329
|
-
if (value.comment !== undefined)
|
|
330
|
-
return visitor.comment(value.comment);
|
|
331
|
-
if (value.file !== undefined)
|
|
332
|
-
return visitor.file(value.file);
|
|
333
|
-
if (value.sla !== undefined)
|
|
334
|
-
return visitor.sla(value.sla);
|
|
335
|
-
if (value.connectCase !== undefined)
|
|
336
|
-
return visitor.connectCase(value.connectCase);
|
|
337
|
-
if (value.custom !== undefined)
|
|
338
|
-
return visitor.custom(value.custom);
|
|
339
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
340
|
-
};
|
|
341
|
-
})(exports.RelatedItemContent || (exports.RelatedItemContent = {}));
|
|
342
237
|
const Order = {
|
|
343
238
|
ASCENDING: "Asc",
|
|
344
239
|
DESCENDING: "Desc",
|
|
345
240
|
};
|
|
346
|
-
exports.OperandOne = void 0;
|
|
347
|
-
(function (OperandOne) {
|
|
348
|
-
OperandOne.visit = (value, visitor) => {
|
|
349
|
-
if (value.fieldId !== undefined)
|
|
350
|
-
return visitor.fieldId(value.fieldId);
|
|
351
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
352
|
-
};
|
|
353
|
-
})(exports.OperandOne || (exports.OperandOne = {}));
|
|
354
|
-
exports.OperandTwo = void 0;
|
|
355
|
-
(function (OperandTwo) {
|
|
356
|
-
OperandTwo.visit = (value, visitor) => {
|
|
357
|
-
if (value.stringValue !== undefined)
|
|
358
|
-
return visitor.stringValue(value.stringValue);
|
|
359
|
-
if (value.booleanValue !== undefined)
|
|
360
|
-
return visitor.booleanValue(value.booleanValue);
|
|
361
|
-
if (value.doubleValue !== undefined)
|
|
362
|
-
return visitor.doubleValue(value.doubleValue);
|
|
363
|
-
if (value.emptyValue !== undefined)
|
|
364
|
-
return visitor.emptyValue(value.emptyValue);
|
|
365
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
366
|
-
};
|
|
367
|
-
})(exports.OperandTwo || (exports.OperandTwo = {}));
|
|
368
|
-
exports.BooleanCondition = void 0;
|
|
369
|
-
(function (BooleanCondition) {
|
|
370
|
-
BooleanCondition.visit = (value, visitor) => {
|
|
371
|
-
if (value.equalTo !== undefined)
|
|
372
|
-
return visitor.equalTo(value.equalTo);
|
|
373
|
-
if (value.notEqualTo !== undefined)
|
|
374
|
-
return visitor.notEqualTo(value.notEqualTo);
|
|
375
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
376
|
-
};
|
|
377
|
-
})(exports.BooleanCondition || (exports.BooleanCondition = {}));
|
|
378
|
-
exports.CaseRuleDetails = void 0;
|
|
379
|
-
(function (CaseRuleDetails) {
|
|
380
|
-
CaseRuleDetails.visit = (value, visitor) => {
|
|
381
|
-
if (value.required !== undefined)
|
|
382
|
-
return visitor.required(value.required);
|
|
383
|
-
if (value.fieldOptions !== undefined)
|
|
384
|
-
return visitor.fieldOptions(value.fieldOptions);
|
|
385
|
-
if (value.hidden !== undefined)
|
|
386
|
-
return visitor.hidden(value.hidden);
|
|
387
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
388
|
-
};
|
|
389
|
-
})(exports.CaseRuleDetails || (exports.CaseRuleDetails = {}));
|
|
390
241
|
const RuleType = {
|
|
391
242
|
FIELD_OPTIONS: "FieldOptions",
|
|
392
243
|
HIDDEN: "Hidden",
|
|
@@ -414,2056 +265,1844 @@ const FieldType = {
|
|
|
414
265
|
URL: "Url",
|
|
415
266
|
USER: "User",
|
|
416
267
|
};
|
|
417
|
-
exports.Section = void 0;
|
|
418
|
-
(function (Section) {
|
|
419
|
-
Section.visit = (value, visitor) => {
|
|
420
|
-
if (value.fieldGroup !== undefined)
|
|
421
|
-
return visitor.fieldGroup(value.fieldGroup);
|
|
422
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
423
|
-
};
|
|
424
|
-
})(exports.Section || (exports.Section = {}));
|
|
425
|
-
exports.LayoutContent = void 0;
|
|
426
|
-
(function (LayoutContent) {
|
|
427
|
-
LayoutContent.visit = (value, visitor) => {
|
|
428
|
-
if (value.basic !== undefined)
|
|
429
|
-
return visitor.basic(value.basic);
|
|
430
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
431
|
-
};
|
|
432
|
-
})(exports.LayoutContent || (exports.LayoutContent = {}));
|
|
433
268
|
const TemplateStatus = {
|
|
434
269
|
ACTIVE: "Active",
|
|
435
270
|
INACTIVE: "Inactive",
|
|
436
271
|
};
|
|
437
|
-
exports.CaseFilter = void 0;
|
|
438
|
-
(function (CaseFilter) {
|
|
439
|
-
CaseFilter.visit = (value, visitor) => {
|
|
440
|
-
if (value.field !== undefined)
|
|
441
|
-
return visitor.field(value.field);
|
|
442
|
-
if (value.not !== undefined)
|
|
443
|
-
return visitor.not(value.not);
|
|
444
|
-
if (value.andAll !== undefined)
|
|
445
|
-
return visitor.andAll(value.andAll);
|
|
446
|
-
if (value.orAll !== undefined)
|
|
447
|
-
return visitor.orAll(value.orAll);
|
|
448
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
449
|
-
};
|
|
450
|
-
})(exports.CaseFilter || (exports.CaseFilter = {}));
|
|
451
|
-
exports.CustomFieldsFilter = void 0;
|
|
452
|
-
(function (CustomFieldsFilter) {
|
|
453
|
-
CustomFieldsFilter.visit = (value, visitor) => {
|
|
454
|
-
if (value.field !== undefined)
|
|
455
|
-
return visitor.field(value.field);
|
|
456
|
-
if (value.not !== undefined)
|
|
457
|
-
return visitor.not(value.not);
|
|
458
|
-
if (value.andAll !== undefined)
|
|
459
|
-
return visitor.andAll(value.andAll);
|
|
460
|
-
if (value.orAll !== undefined)
|
|
461
|
-
return visitor.orAll(value.orAll);
|
|
462
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
463
|
-
};
|
|
464
|
-
})(exports.CustomFieldsFilter || (exports.CustomFieldsFilter = {}));
|
|
465
|
-
exports.RelatedItemTypeFilter = void 0;
|
|
466
|
-
(function (RelatedItemTypeFilter) {
|
|
467
|
-
RelatedItemTypeFilter.visit = (value, visitor) => {
|
|
468
|
-
if (value.contact !== undefined)
|
|
469
|
-
return visitor.contact(value.contact);
|
|
470
|
-
if (value.comment !== undefined)
|
|
471
|
-
return visitor.comment(value.comment);
|
|
472
|
-
if (value.file !== undefined)
|
|
473
|
-
return visitor.file(value.file);
|
|
474
|
-
if (value.sla !== undefined)
|
|
475
|
-
return visitor.sla(value.sla);
|
|
476
|
-
if (value.connectCase !== undefined)
|
|
477
|
-
return visitor.connectCase(value.connectCase);
|
|
478
|
-
if (value.custom !== undefined)
|
|
479
|
-
return visitor.custom(value.custom);
|
|
480
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
481
|
-
};
|
|
482
|
-
})(exports.RelatedItemTypeFilter || (exports.RelatedItemTypeFilter = {}));
|
|
483
|
-
const UserUnionFilterSensitiveLog = (obj) => {
|
|
484
|
-
if (obj.userArn !== undefined)
|
|
485
|
-
return { userArn: obj.userArn };
|
|
486
|
-
if (obj.customEntity !== undefined)
|
|
487
|
-
return { customEntity: smithyClient.SENSITIVE_STRING };
|
|
488
|
-
if (obj.$unknown !== undefined)
|
|
489
|
-
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
490
|
-
};
|
|
491
|
-
const CreateCaseRequestFilterSensitiveLog = (obj) => ({
|
|
492
|
-
...obj,
|
|
493
|
-
...(obj.fields && { fields: obj.fields.map((item) => item) }),
|
|
494
|
-
...(obj.performedBy && { performedBy: UserUnionFilterSensitiveLog(obj.performedBy) }),
|
|
495
|
-
});
|
|
496
|
-
const AuditEventPerformedByFilterSensitiveLog = (obj) => ({
|
|
497
|
-
...obj,
|
|
498
|
-
...(obj.user && { user: UserUnionFilterSensitiveLog(obj.user) }),
|
|
499
|
-
});
|
|
500
|
-
const AuditEventFilterSensitiveLog = (obj) => ({
|
|
501
|
-
...obj,
|
|
502
|
-
...(obj.fields && { fields: obj.fields.map((item) => item) }),
|
|
503
|
-
...(obj.performedBy && { performedBy: AuditEventPerformedByFilterSensitiveLog(obj.performedBy) }),
|
|
504
|
-
});
|
|
505
|
-
const GetCaseAuditEventsResponseFilterSensitiveLog = (obj) => ({
|
|
506
|
-
...obj,
|
|
507
|
-
...(obj.auditEvents && { auditEvents: obj.auditEvents.map((item) => AuditEventFilterSensitiveLog(item)) }),
|
|
508
|
-
});
|
|
509
|
-
const SlaInputConfigurationFilterSensitiveLog = (obj) => ({
|
|
510
|
-
...obj,
|
|
511
|
-
...(obj.name && { name: smithyClient.SENSITIVE_STRING }),
|
|
512
|
-
...(obj.targetFieldValues && { targetFieldValues: obj.targetFieldValues.map((item) => item) }),
|
|
513
|
-
});
|
|
514
|
-
const SlaInputContentFilterSensitiveLog = (obj) => {
|
|
515
|
-
if (obj.slaInputConfiguration !== undefined)
|
|
516
|
-
return { slaInputConfiguration: SlaInputConfigurationFilterSensitiveLog(obj.slaInputConfiguration) };
|
|
517
|
-
if (obj.$unknown !== undefined)
|
|
518
|
-
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
519
|
-
};
|
|
520
|
-
const RelatedItemInputContentFilterSensitiveLog = (obj) => {
|
|
521
|
-
if (obj.contact !== undefined)
|
|
522
|
-
return { contact: obj.contact };
|
|
523
|
-
if (obj.comment !== undefined)
|
|
524
|
-
return { comment: obj.comment };
|
|
525
|
-
if (obj.file !== undefined)
|
|
526
|
-
return { file: obj.file };
|
|
527
|
-
if (obj.sla !== undefined)
|
|
528
|
-
return { sla: SlaInputContentFilterSensitiveLog(obj.sla) };
|
|
529
|
-
if (obj.connectCase !== undefined)
|
|
530
|
-
return { connectCase: obj.connectCase };
|
|
531
|
-
if (obj.custom !== undefined)
|
|
532
|
-
return { custom: obj.custom };
|
|
533
|
-
if (obj.$unknown !== undefined)
|
|
534
|
-
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
535
|
-
};
|
|
536
|
-
const CreateRelatedItemRequestFilterSensitiveLog = (obj) => ({
|
|
537
|
-
...obj,
|
|
538
|
-
...(obj.content && { content: RelatedItemInputContentFilterSensitiveLog(obj.content) }),
|
|
539
|
-
...(obj.performedBy && { performedBy: UserUnionFilterSensitiveLog(obj.performedBy) }),
|
|
540
|
-
});
|
|
541
|
-
const SlaFilterFilterSensitiveLog = (obj) => ({
|
|
542
|
-
...obj,
|
|
543
|
-
...(obj.name && { name: smithyClient.SENSITIVE_STRING }),
|
|
544
|
-
});
|
|
545
|
-
const SlaConfigurationFilterSensitiveLog = (obj) => ({
|
|
546
|
-
...obj,
|
|
547
|
-
...(obj.name && { name: smithyClient.SENSITIVE_STRING }),
|
|
548
|
-
...(obj.targetFieldValues && { targetFieldValues: obj.targetFieldValues.map((item) => item) }),
|
|
549
|
-
});
|
|
550
|
-
const SlaContentFilterSensitiveLog = (obj) => ({
|
|
551
|
-
...obj,
|
|
552
|
-
...(obj.slaConfiguration && { slaConfiguration: SlaConfigurationFilterSensitiveLog(obj.slaConfiguration) }),
|
|
553
|
-
});
|
|
554
|
-
const RelatedItemContentFilterSensitiveLog = (obj) => {
|
|
555
|
-
if (obj.contact !== undefined)
|
|
556
|
-
return { contact: obj.contact };
|
|
557
|
-
if (obj.comment !== undefined)
|
|
558
|
-
return { comment: obj.comment };
|
|
559
|
-
if (obj.file !== undefined)
|
|
560
|
-
return { file: obj.file };
|
|
561
|
-
if (obj.sla !== undefined)
|
|
562
|
-
return { sla: SlaContentFilterSensitiveLog(obj.sla) };
|
|
563
|
-
if (obj.connectCase !== undefined)
|
|
564
|
-
return { connectCase: obj.connectCase };
|
|
565
|
-
if (obj.custom !== undefined)
|
|
566
|
-
return { custom: obj.custom };
|
|
567
|
-
if (obj.$unknown !== undefined)
|
|
568
|
-
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
569
|
-
};
|
|
570
|
-
const SearchRelatedItemsResponseItemFilterSensitiveLog = (obj) => ({
|
|
571
|
-
...obj,
|
|
572
|
-
...(obj.content && { content: RelatedItemContentFilterSensitiveLog(obj.content) }),
|
|
573
|
-
...(obj.performedBy && { performedBy: UserUnionFilterSensitiveLog(obj.performedBy) }),
|
|
574
|
-
});
|
|
575
|
-
const SearchRelatedItemsResponseFilterSensitiveLog = (obj) => ({
|
|
576
|
-
...obj,
|
|
577
|
-
...(obj.relatedItems && {
|
|
578
|
-
relatedItems: obj.relatedItems.map((item) => SearchRelatedItemsResponseItemFilterSensitiveLog(item)),
|
|
579
|
-
}),
|
|
580
|
-
});
|
|
581
|
-
const UpdateCaseRequestFilterSensitiveLog = (obj) => ({
|
|
582
|
-
...obj,
|
|
583
|
-
...(obj.fields && { fields: obj.fields.map((item) => item) }),
|
|
584
|
-
...(obj.performedBy && { performedBy: UserUnionFilterSensitiveLog(obj.performedBy) }),
|
|
585
|
-
});
|
|
586
|
-
const SearchAllRelatedItemsResponseItemFilterSensitiveLog = (obj) => ({
|
|
587
|
-
...obj,
|
|
588
|
-
...(obj.content && { content: RelatedItemContentFilterSensitiveLog(obj.content) }),
|
|
589
|
-
...(obj.performedBy && { performedBy: UserUnionFilterSensitiveLog(obj.performedBy) }),
|
|
590
|
-
});
|
|
591
|
-
const SearchAllRelatedItemsResponseFilterSensitiveLog = (obj) => ({
|
|
592
|
-
...obj,
|
|
593
|
-
...(obj.relatedItems && {
|
|
594
|
-
relatedItems: obj.relatedItems.map((item) => SearchAllRelatedItemsResponseItemFilterSensitiveLog(item)),
|
|
595
|
-
}),
|
|
596
|
-
});
|
|
597
|
-
const RelatedItemTypeFilterFilterSensitiveLog = (obj) => {
|
|
598
|
-
if (obj.contact !== undefined)
|
|
599
|
-
return { contact: obj.contact };
|
|
600
|
-
if (obj.comment !== undefined)
|
|
601
|
-
return { comment: obj.comment };
|
|
602
|
-
if (obj.file !== undefined)
|
|
603
|
-
return { file: obj.file };
|
|
604
|
-
if (obj.sla !== undefined)
|
|
605
|
-
return { sla: SlaFilterFilterSensitiveLog(obj.sla) };
|
|
606
|
-
if (obj.connectCase !== undefined)
|
|
607
|
-
return { connectCase: obj.connectCase };
|
|
608
|
-
if (obj.custom !== undefined)
|
|
609
|
-
return { custom: obj.custom };
|
|
610
|
-
if (obj.$unknown !== undefined)
|
|
611
|
-
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
612
|
-
};
|
|
613
|
-
const SearchAllRelatedItemsRequestFilterSensitiveLog = (obj) => ({
|
|
614
|
-
...obj,
|
|
615
|
-
...(obj.filters && { filters: obj.filters.map((item) => RelatedItemTypeFilterFilterSensitiveLog(item)) }),
|
|
616
|
-
});
|
|
617
|
-
const SearchRelatedItemsRequestFilterSensitiveLog = (obj) => ({
|
|
618
|
-
...obj,
|
|
619
|
-
...(obj.filters && { filters: obj.filters.map((item) => RelatedItemTypeFilterFilterSensitiveLog(item)) }),
|
|
620
|
-
});
|
|
621
272
|
|
|
622
|
-
const
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
const
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
const
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
const
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
const
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
const
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
const
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
const
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
const
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
const
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
const
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
const
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
const
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
const
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
const
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
const
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
const
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
const
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
const
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
const
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
const
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
const
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
const
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
const
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
const
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
return b.build();
|
|
946
|
-
};
|
|
947
|
-
const se_ListDomainsCommand = async (input, context) => {
|
|
948
|
-
const b = core.requestBuilder(input, context);
|
|
949
|
-
const headers = {};
|
|
950
|
-
b.bp("/domains-list");
|
|
951
|
-
const query = smithyClient.map({
|
|
952
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
953
|
-
[_nT]: [, input[_nT]],
|
|
954
|
-
});
|
|
955
|
-
let body;
|
|
956
|
-
b.m("POST").h(headers).q(query).b(body);
|
|
957
|
-
return b.build();
|
|
958
|
-
};
|
|
959
|
-
const se_ListFieldOptionsCommand = async (input, context) => {
|
|
960
|
-
const b = core.requestBuilder(input, context);
|
|
961
|
-
const headers = {};
|
|
962
|
-
b.bp("/domains/{domainId}/fields/{fieldId}/options-list");
|
|
963
|
-
b.p("domainId", () => input.domainId, "{domainId}", false);
|
|
964
|
-
b.p("fieldId", () => input.fieldId, "{fieldId}", false);
|
|
965
|
-
const query = smithyClient.map({
|
|
966
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
967
|
-
[_nT]: [, input[_nT]],
|
|
968
|
-
[_v]: [() => input.values !== void 0, () => input[_v] || []],
|
|
969
|
-
});
|
|
970
|
-
let body;
|
|
971
|
-
b.m("POST").h(headers).q(query).b(body);
|
|
972
|
-
return b.build();
|
|
973
|
-
};
|
|
974
|
-
const se_ListFieldsCommand = async (input, context) => {
|
|
975
|
-
const b = core.requestBuilder(input, context);
|
|
976
|
-
const headers = {};
|
|
977
|
-
b.bp("/domains/{domainId}/fields-list");
|
|
978
|
-
b.p("domainId", () => input.domainId, "{domainId}", false);
|
|
979
|
-
const query = smithyClient.map({
|
|
980
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
981
|
-
[_nT]: [, input[_nT]],
|
|
982
|
-
});
|
|
983
|
-
let body;
|
|
984
|
-
b.m("POST").h(headers).q(query).b(body);
|
|
985
|
-
return b.build();
|
|
986
|
-
};
|
|
987
|
-
const se_ListLayoutsCommand = async (input, context) => {
|
|
988
|
-
const b = core.requestBuilder(input, context);
|
|
989
|
-
const headers = {};
|
|
990
|
-
b.bp("/domains/{domainId}/layouts-list");
|
|
991
|
-
b.p("domainId", () => input.domainId, "{domainId}", false);
|
|
992
|
-
const query = smithyClient.map({
|
|
993
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
994
|
-
[_nT]: [, input[_nT]],
|
|
995
|
-
});
|
|
996
|
-
let body;
|
|
997
|
-
b.m("POST").h(headers).q(query).b(body);
|
|
998
|
-
return b.build();
|
|
999
|
-
};
|
|
1000
|
-
const se_ListTagsForResourceCommand = async (input, context) => {
|
|
1001
|
-
const b = core.requestBuilder(input, context);
|
|
1002
|
-
const headers = {};
|
|
1003
|
-
b.bp("/tags/{arn}");
|
|
1004
|
-
b.p("arn", () => input.arn, "{arn}", false);
|
|
1005
|
-
let body;
|
|
1006
|
-
b.m("GET").h(headers).b(body);
|
|
1007
|
-
return b.build();
|
|
1008
|
-
};
|
|
1009
|
-
const se_ListTemplatesCommand = async (input, context) => {
|
|
1010
|
-
const b = core.requestBuilder(input, context);
|
|
1011
|
-
const headers = {};
|
|
1012
|
-
b.bp("/domains/{domainId}/templates-list");
|
|
1013
|
-
b.p("domainId", () => input.domainId, "{domainId}", false);
|
|
1014
|
-
const query = smithyClient.map({
|
|
1015
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
1016
|
-
[_nT]: [, input[_nT]],
|
|
1017
|
-
[_s]: [() => input.status !== void 0, () => input[_s] || []],
|
|
1018
|
-
});
|
|
1019
|
-
let body;
|
|
1020
|
-
b.m("POST").h(headers).q(query).b(body);
|
|
1021
|
-
return b.build();
|
|
1022
|
-
};
|
|
1023
|
-
const se_PutCaseEventConfigurationCommand = async (input, context) => {
|
|
1024
|
-
const b = core.requestBuilder(input, context);
|
|
1025
|
-
const headers = {
|
|
1026
|
-
"content-type": "application/json",
|
|
1027
|
-
};
|
|
1028
|
-
b.bp("/domains/{domainId}/case-event-configuration");
|
|
1029
|
-
b.p("domainId", () => input.domainId, "{domainId}", false);
|
|
1030
|
-
let body;
|
|
1031
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
1032
|
-
eventBridge: (_) => smithyClient._json(_),
|
|
1033
|
-
}));
|
|
1034
|
-
b.m("PUT").h(headers).b(body);
|
|
1035
|
-
return b.build();
|
|
1036
|
-
};
|
|
1037
|
-
const se_SearchAllRelatedItemsCommand = async (input, context) => {
|
|
1038
|
-
const b = core.requestBuilder(input, context);
|
|
1039
|
-
const headers = {
|
|
1040
|
-
"content-type": "application/json",
|
|
1041
|
-
};
|
|
1042
|
-
b.bp("/domains/{domainId}/related-items-search");
|
|
1043
|
-
b.p("domainId", () => input.domainId, "{domainId}", false);
|
|
1044
|
-
let body;
|
|
1045
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
1046
|
-
filters: (_) => se_RelatedItemFilterList(_),
|
|
1047
|
-
maxResults: [],
|
|
1048
|
-
nextToken: [],
|
|
1049
|
-
sorts: (_) => smithyClient._json(_),
|
|
1050
|
-
}));
|
|
1051
|
-
b.m("POST").h(headers).b(body);
|
|
1052
|
-
return b.build();
|
|
1053
|
-
};
|
|
1054
|
-
const se_SearchCasesCommand = async (input, context) => {
|
|
1055
|
-
const b = core.requestBuilder(input, context);
|
|
1056
|
-
const headers = {
|
|
1057
|
-
"content-type": "application/json",
|
|
1058
|
-
};
|
|
1059
|
-
b.bp("/domains/{domainId}/cases-search");
|
|
1060
|
-
b.p("domainId", () => input.domainId, "{domainId}", false);
|
|
1061
|
-
let body;
|
|
1062
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
1063
|
-
fields: (_) => smithyClient._json(_),
|
|
1064
|
-
filter: (_) => se_CaseFilter(_),
|
|
1065
|
-
maxResults: [],
|
|
1066
|
-
nextToken: [],
|
|
1067
|
-
searchTerm: [],
|
|
1068
|
-
sorts: (_) => smithyClient._json(_),
|
|
1069
|
-
}));
|
|
1070
|
-
b.m("POST").h(headers).b(body);
|
|
1071
|
-
return b.build();
|
|
1072
|
-
};
|
|
1073
|
-
const se_SearchRelatedItemsCommand = async (input, context) => {
|
|
1074
|
-
const b = core.requestBuilder(input, context);
|
|
1075
|
-
const headers = {
|
|
1076
|
-
"content-type": "application/json",
|
|
1077
|
-
};
|
|
1078
|
-
b.bp("/domains/{domainId}/cases/{caseId}/related-items-search");
|
|
1079
|
-
b.p("domainId", () => input.domainId, "{domainId}", false);
|
|
1080
|
-
b.p("caseId", () => input.caseId, "{caseId}", false);
|
|
1081
|
-
let body;
|
|
1082
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
1083
|
-
filters: (_) => se_RelatedItemFilterList(_),
|
|
1084
|
-
maxResults: [],
|
|
1085
|
-
nextToken: [],
|
|
1086
|
-
}));
|
|
1087
|
-
b.m("POST").h(headers).b(body);
|
|
1088
|
-
return b.build();
|
|
1089
|
-
};
|
|
1090
|
-
const se_TagResourceCommand = async (input, context) => {
|
|
1091
|
-
const b = core.requestBuilder(input, context);
|
|
1092
|
-
const headers = {
|
|
1093
|
-
"content-type": "application/json",
|
|
1094
|
-
};
|
|
1095
|
-
b.bp("/tags/{arn}");
|
|
1096
|
-
b.p("arn", () => input.arn, "{arn}", false);
|
|
1097
|
-
let body;
|
|
1098
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
1099
|
-
tags: (_) => se_Tags(_),
|
|
1100
|
-
}));
|
|
1101
|
-
b.m("POST").h(headers).b(body);
|
|
1102
|
-
return b.build();
|
|
1103
|
-
};
|
|
1104
|
-
const se_UntagResourceCommand = async (input, context) => {
|
|
1105
|
-
const b = core.requestBuilder(input, context);
|
|
1106
|
-
const headers = {};
|
|
1107
|
-
b.bp("/tags/{arn}");
|
|
1108
|
-
b.p("arn", () => input.arn, "{arn}", false);
|
|
1109
|
-
const query = smithyClient.map({
|
|
1110
|
-
[_tK]: [smithyClient.expectNonNull(input.tagKeys, `tagKeys`) != null, () => input[_tK] || []],
|
|
1111
|
-
});
|
|
1112
|
-
let body;
|
|
1113
|
-
b.m("DELETE").h(headers).q(query).b(body);
|
|
1114
|
-
return b.build();
|
|
1115
|
-
};
|
|
1116
|
-
const se_UpdateCaseCommand = async (input, context) => {
|
|
1117
|
-
const b = core.requestBuilder(input, context);
|
|
1118
|
-
const headers = {
|
|
1119
|
-
"content-type": "application/json",
|
|
1120
|
-
};
|
|
1121
|
-
b.bp("/domains/{domainId}/cases/{caseId}");
|
|
1122
|
-
b.p("domainId", () => input.domainId, "{domainId}", false);
|
|
1123
|
-
b.p("caseId", () => input.caseId, "{caseId}", false);
|
|
1124
|
-
let body;
|
|
1125
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
1126
|
-
fields: (_) => se_FieldValueList(_),
|
|
1127
|
-
performedBy: (_) => smithyClient._json(_),
|
|
1128
|
-
}));
|
|
1129
|
-
b.m("PUT").h(headers).b(body);
|
|
1130
|
-
return b.build();
|
|
1131
|
-
};
|
|
1132
|
-
const se_UpdateCaseRuleCommand = async (input, context) => {
|
|
1133
|
-
const b = core.requestBuilder(input, context);
|
|
1134
|
-
const headers = {
|
|
1135
|
-
"content-type": "application/json",
|
|
1136
|
-
};
|
|
1137
|
-
b.bp("/domains/{domainId}/case-rules/{caseRuleId}");
|
|
1138
|
-
b.p("domainId", () => input.domainId, "{domainId}", false);
|
|
1139
|
-
b.p("caseRuleId", () => input.caseRuleId, "{caseRuleId}", false);
|
|
1140
|
-
let body;
|
|
1141
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
1142
|
-
description: [],
|
|
1143
|
-
name: [],
|
|
1144
|
-
rule: (_) => se_CaseRuleDetails(_),
|
|
1145
|
-
}));
|
|
1146
|
-
b.m("PUT").h(headers).b(body);
|
|
1147
|
-
return b.build();
|
|
1148
|
-
};
|
|
1149
|
-
const se_UpdateFieldCommand = async (input, context) => {
|
|
1150
|
-
const b = core.requestBuilder(input, context);
|
|
1151
|
-
const headers = {
|
|
1152
|
-
"content-type": "application/json",
|
|
1153
|
-
};
|
|
1154
|
-
b.bp("/domains/{domainId}/fields/{fieldId}");
|
|
1155
|
-
b.p("domainId", () => input.domainId, "{domainId}", false);
|
|
1156
|
-
b.p("fieldId", () => input.fieldId, "{fieldId}", false);
|
|
1157
|
-
let body;
|
|
1158
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
1159
|
-
description: [],
|
|
1160
|
-
name: [],
|
|
1161
|
-
}));
|
|
1162
|
-
b.m("PUT").h(headers).b(body);
|
|
1163
|
-
return b.build();
|
|
1164
|
-
};
|
|
1165
|
-
const se_UpdateLayoutCommand = async (input, context) => {
|
|
1166
|
-
const b = core.requestBuilder(input, context);
|
|
1167
|
-
const headers = {
|
|
1168
|
-
"content-type": "application/json",
|
|
1169
|
-
};
|
|
1170
|
-
b.bp("/domains/{domainId}/layouts/{layoutId}");
|
|
1171
|
-
b.p("domainId", () => input.domainId, "{domainId}", false);
|
|
1172
|
-
b.p("layoutId", () => input.layoutId, "{layoutId}", false);
|
|
1173
|
-
let body;
|
|
1174
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
1175
|
-
content: (_) => smithyClient._json(_),
|
|
1176
|
-
name: [],
|
|
1177
|
-
}));
|
|
1178
|
-
b.m("PUT").h(headers).b(body);
|
|
1179
|
-
return b.build();
|
|
1180
|
-
};
|
|
1181
|
-
const se_UpdateTemplateCommand = async (input, context) => {
|
|
1182
|
-
const b = core.requestBuilder(input, context);
|
|
1183
|
-
const headers = {
|
|
1184
|
-
"content-type": "application/json",
|
|
1185
|
-
};
|
|
1186
|
-
b.bp("/domains/{domainId}/templates/{templateId}");
|
|
1187
|
-
b.p("domainId", () => input.domainId, "{domainId}", false);
|
|
1188
|
-
b.p("templateId", () => input.templateId, "{templateId}", false);
|
|
1189
|
-
let body;
|
|
1190
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
1191
|
-
description: [],
|
|
1192
|
-
layoutConfiguration: (_) => smithyClient._json(_),
|
|
1193
|
-
name: [],
|
|
1194
|
-
requiredFields: (_) => smithyClient._json(_),
|
|
1195
|
-
rules: (_) => smithyClient._json(_),
|
|
1196
|
-
status: [],
|
|
1197
|
-
}));
|
|
1198
|
-
b.m("PUT").h(headers).b(body);
|
|
1199
|
-
return b.build();
|
|
1200
|
-
};
|
|
1201
|
-
const de_BatchGetCaseRuleCommand = async (output, context) => {
|
|
1202
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1203
|
-
return de_CommandError(output, context);
|
|
1204
|
-
}
|
|
1205
|
-
const contents = smithyClient.map({
|
|
1206
|
-
$metadata: deserializeMetadata(output),
|
|
1207
|
-
});
|
|
1208
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1209
|
-
const doc = smithyClient.take(data, {
|
|
1210
|
-
caseRules: (_) => de_BatchGetCaseRuleList(_),
|
|
1211
|
-
errors: smithyClient._json,
|
|
1212
|
-
unprocessedCaseRules: smithyClient._json,
|
|
1213
|
-
});
|
|
1214
|
-
Object.assign(contents, doc);
|
|
1215
|
-
return contents;
|
|
1216
|
-
};
|
|
1217
|
-
const de_BatchGetFieldCommand = async (output, context) => {
|
|
1218
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1219
|
-
return de_CommandError(output, context);
|
|
1220
|
-
}
|
|
1221
|
-
const contents = smithyClient.map({
|
|
1222
|
-
$metadata: deserializeMetadata(output),
|
|
1223
|
-
});
|
|
1224
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1225
|
-
const doc = smithyClient.take(data, {
|
|
1226
|
-
errors: smithyClient._json,
|
|
1227
|
-
fields: (_) => de_BatchGetFieldList(_),
|
|
1228
|
-
});
|
|
1229
|
-
Object.assign(contents, doc);
|
|
1230
|
-
return contents;
|
|
1231
|
-
};
|
|
1232
|
-
const de_BatchPutFieldOptionsCommand = async (output, context) => {
|
|
1233
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1234
|
-
return de_CommandError(output, context);
|
|
1235
|
-
}
|
|
1236
|
-
const contents = smithyClient.map({
|
|
1237
|
-
$metadata: deserializeMetadata(output),
|
|
1238
|
-
});
|
|
1239
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1240
|
-
const doc = smithyClient.take(data, {
|
|
1241
|
-
errors: smithyClient._json,
|
|
1242
|
-
});
|
|
1243
|
-
Object.assign(contents, doc);
|
|
1244
|
-
return contents;
|
|
1245
|
-
};
|
|
1246
|
-
const de_CreateCaseCommand = async (output, context) => {
|
|
1247
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1248
|
-
return de_CommandError(output, context);
|
|
1249
|
-
}
|
|
1250
|
-
const contents = smithyClient.map({
|
|
1251
|
-
$metadata: deserializeMetadata(output),
|
|
1252
|
-
});
|
|
1253
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1254
|
-
const doc = smithyClient.take(data, {
|
|
1255
|
-
caseArn: smithyClient.expectString,
|
|
1256
|
-
caseId: smithyClient.expectString,
|
|
1257
|
-
});
|
|
1258
|
-
Object.assign(contents, doc);
|
|
1259
|
-
return contents;
|
|
1260
|
-
};
|
|
1261
|
-
const de_CreateCaseRuleCommand = async (output, context) => {
|
|
1262
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1263
|
-
return de_CommandError(output, context);
|
|
1264
|
-
}
|
|
1265
|
-
const contents = smithyClient.map({
|
|
1266
|
-
$metadata: deserializeMetadata(output),
|
|
1267
|
-
});
|
|
1268
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1269
|
-
const doc = smithyClient.take(data, {
|
|
1270
|
-
caseRuleArn: smithyClient.expectString,
|
|
1271
|
-
caseRuleId: smithyClient.expectString,
|
|
1272
|
-
});
|
|
1273
|
-
Object.assign(contents, doc);
|
|
1274
|
-
return contents;
|
|
1275
|
-
};
|
|
1276
|
-
const de_CreateDomainCommand = async (output, context) => {
|
|
1277
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1278
|
-
return de_CommandError(output, context);
|
|
1279
|
-
}
|
|
1280
|
-
const contents = smithyClient.map({
|
|
1281
|
-
$metadata: deserializeMetadata(output),
|
|
1282
|
-
});
|
|
1283
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1284
|
-
const doc = smithyClient.take(data, {
|
|
1285
|
-
domainArn: smithyClient.expectString,
|
|
1286
|
-
domainId: smithyClient.expectString,
|
|
1287
|
-
domainStatus: smithyClient.expectString,
|
|
1288
|
-
});
|
|
1289
|
-
Object.assign(contents, doc);
|
|
1290
|
-
return contents;
|
|
1291
|
-
};
|
|
1292
|
-
const de_CreateFieldCommand = async (output, context) => {
|
|
1293
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1294
|
-
return de_CommandError(output, context);
|
|
1295
|
-
}
|
|
1296
|
-
const contents = smithyClient.map({
|
|
1297
|
-
$metadata: deserializeMetadata(output),
|
|
1298
|
-
});
|
|
1299
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1300
|
-
const doc = smithyClient.take(data, {
|
|
1301
|
-
fieldArn: smithyClient.expectString,
|
|
1302
|
-
fieldId: smithyClient.expectString,
|
|
1303
|
-
});
|
|
1304
|
-
Object.assign(contents, doc);
|
|
1305
|
-
return contents;
|
|
1306
|
-
};
|
|
1307
|
-
const de_CreateLayoutCommand = async (output, context) => {
|
|
1308
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1309
|
-
return de_CommandError(output, context);
|
|
1310
|
-
}
|
|
1311
|
-
const contents = smithyClient.map({
|
|
1312
|
-
$metadata: deserializeMetadata(output),
|
|
1313
|
-
});
|
|
1314
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1315
|
-
const doc = smithyClient.take(data, {
|
|
1316
|
-
layoutArn: smithyClient.expectString,
|
|
1317
|
-
layoutId: smithyClient.expectString,
|
|
1318
|
-
});
|
|
1319
|
-
Object.assign(contents, doc);
|
|
1320
|
-
return contents;
|
|
1321
|
-
};
|
|
1322
|
-
const de_CreateRelatedItemCommand = async (output, context) => {
|
|
1323
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1324
|
-
return de_CommandError(output, context);
|
|
1325
|
-
}
|
|
1326
|
-
const contents = smithyClient.map({
|
|
1327
|
-
$metadata: deserializeMetadata(output),
|
|
1328
|
-
});
|
|
1329
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1330
|
-
const doc = smithyClient.take(data, {
|
|
1331
|
-
relatedItemArn: smithyClient.expectString,
|
|
1332
|
-
relatedItemId: smithyClient.expectString,
|
|
1333
|
-
});
|
|
1334
|
-
Object.assign(contents, doc);
|
|
1335
|
-
return contents;
|
|
1336
|
-
};
|
|
1337
|
-
const de_CreateTemplateCommand = async (output, context) => {
|
|
1338
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1339
|
-
return de_CommandError(output, context);
|
|
1340
|
-
}
|
|
1341
|
-
const contents = smithyClient.map({
|
|
1342
|
-
$metadata: deserializeMetadata(output),
|
|
1343
|
-
});
|
|
1344
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1345
|
-
const doc = smithyClient.take(data, {
|
|
1346
|
-
templateArn: smithyClient.expectString,
|
|
1347
|
-
templateId: smithyClient.expectString,
|
|
1348
|
-
});
|
|
1349
|
-
Object.assign(contents, doc);
|
|
1350
|
-
return contents;
|
|
1351
|
-
};
|
|
1352
|
-
const de_DeleteCaseCommand = async (output, context) => {
|
|
1353
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1354
|
-
return de_CommandError(output, context);
|
|
1355
|
-
}
|
|
1356
|
-
const contents = smithyClient.map({
|
|
1357
|
-
$metadata: deserializeMetadata(output),
|
|
1358
|
-
});
|
|
1359
|
-
await smithyClient.collectBody(output.body, context);
|
|
1360
|
-
return contents;
|
|
1361
|
-
};
|
|
1362
|
-
const de_DeleteCaseRuleCommand = async (output, context) => {
|
|
1363
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1364
|
-
return de_CommandError(output, context);
|
|
1365
|
-
}
|
|
1366
|
-
const contents = smithyClient.map({
|
|
1367
|
-
$metadata: deserializeMetadata(output),
|
|
1368
|
-
});
|
|
1369
|
-
await smithyClient.collectBody(output.body, context);
|
|
1370
|
-
return contents;
|
|
1371
|
-
};
|
|
1372
|
-
const de_DeleteDomainCommand = async (output, context) => {
|
|
1373
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1374
|
-
return de_CommandError(output, context);
|
|
1375
|
-
}
|
|
1376
|
-
const contents = smithyClient.map({
|
|
1377
|
-
$metadata: deserializeMetadata(output),
|
|
1378
|
-
});
|
|
1379
|
-
await smithyClient.collectBody(output.body, context);
|
|
1380
|
-
return contents;
|
|
1381
|
-
};
|
|
1382
|
-
const de_DeleteFieldCommand = async (output, context) => {
|
|
1383
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1384
|
-
return de_CommandError(output, context);
|
|
1385
|
-
}
|
|
1386
|
-
const contents = smithyClient.map({
|
|
1387
|
-
$metadata: deserializeMetadata(output),
|
|
1388
|
-
});
|
|
1389
|
-
await smithyClient.collectBody(output.body, context);
|
|
1390
|
-
return contents;
|
|
1391
|
-
};
|
|
1392
|
-
const de_DeleteLayoutCommand = async (output, context) => {
|
|
1393
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1394
|
-
return de_CommandError(output, context);
|
|
1395
|
-
}
|
|
1396
|
-
const contents = smithyClient.map({
|
|
1397
|
-
$metadata: deserializeMetadata(output),
|
|
1398
|
-
});
|
|
1399
|
-
await smithyClient.collectBody(output.body, context);
|
|
1400
|
-
return contents;
|
|
1401
|
-
};
|
|
1402
|
-
const de_DeleteRelatedItemCommand = async (output, context) => {
|
|
1403
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1404
|
-
return de_CommandError(output, context);
|
|
1405
|
-
}
|
|
1406
|
-
const contents = smithyClient.map({
|
|
1407
|
-
$metadata: deserializeMetadata(output),
|
|
1408
|
-
});
|
|
1409
|
-
await smithyClient.collectBody(output.body, context);
|
|
1410
|
-
return contents;
|
|
1411
|
-
};
|
|
1412
|
-
const de_DeleteTemplateCommand = async (output, context) => {
|
|
1413
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1414
|
-
return de_CommandError(output, context);
|
|
1415
|
-
}
|
|
1416
|
-
const contents = smithyClient.map({
|
|
1417
|
-
$metadata: deserializeMetadata(output),
|
|
1418
|
-
});
|
|
1419
|
-
await smithyClient.collectBody(output.body, context);
|
|
1420
|
-
return contents;
|
|
1421
|
-
};
|
|
1422
|
-
const de_GetCaseCommand = async (output, context) => {
|
|
1423
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1424
|
-
return de_CommandError(output, context);
|
|
1425
|
-
}
|
|
1426
|
-
const contents = smithyClient.map({
|
|
1427
|
-
$metadata: deserializeMetadata(output),
|
|
1428
|
-
});
|
|
1429
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1430
|
-
const doc = smithyClient.take(data, {
|
|
1431
|
-
fields: (_) => de_FieldValueList(_),
|
|
1432
|
-
nextToken: smithyClient.expectString,
|
|
1433
|
-
tags: (_) => de_Tags(_),
|
|
1434
|
-
templateId: smithyClient.expectString,
|
|
1435
|
-
});
|
|
1436
|
-
Object.assign(contents, doc);
|
|
1437
|
-
return contents;
|
|
1438
|
-
};
|
|
1439
|
-
const de_GetCaseAuditEventsCommand = async (output, context) => {
|
|
1440
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1441
|
-
return de_CommandError(output, context);
|
|
1442
|
-
}
|
|
1443
|
-
const contents = smithyClient.map({
|
|
1444
|
-
$metadata: deserializeMetadata(output),
|
|
1445
|
-
});
|
|
1446
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1447
|
-
const doc = smithyClient.take(data, {
|
|
1448
|
-
auditEvents: (_) => de_AuditEventsList(_),
|
|
1449
|
-
nextToken: smithyClient.expectString,
|
|
1450
|
-
});
|
|
1451
|
-
Object.assign(contents, doc);
|
|
1452
|
-
return contents;
|
|
1453
|
-
};
|
|
1454
|
-
const de_GetCaseEventConfigurationCommand = async (output, context) => {
|
|
1455
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1456
|
-
return de_CommandError(output, context);
|
|
1457
|
-
}
|
|
1458
|
-
const contents = smithyClient.map({
|
|
1459
|
-
$metadata: deserializeMetadata(output),
|
|
1460
|
-
});
|
|
1461
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1462
|
-
const doc = smithyClient.take(data, {
|
|
1463
|
-
eventBridge: smithyClient._json,
|
|
1464
|
-
});
|
|
1465
|
-
Object.assign(contents, doc);
|
|
1466
|
-
return contents;
|
|
1467
|
-
};
|
|
1468
|
-
const de_GetDomainCommand = async (output, context) => {
|
|
1469
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1470
|
-
return de_CommandError(output, context);
|
|
1471
|
-
}
|
|
1472
|
-
const contents = smithyClient.map({
|
|
1473
|
-
$metadata: deserializeMetadata(output),
|
|
1474
|
-
});
|
|
1475
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1476
|
-
const doc = smithyClient.take(data, {
|
|
1477
|
-
createdTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1478
|
-
domainArn: smithyClient.expectString,
|
|
1479
|
-
domainId: smithyClient.expectString,
|
|
1480
|
-
domainStatus: smithyClient.expectString,
|
|
1481
|
-
name: smithyClient.expectString,
|
|
1482
|
-
tags: (_) => de_Tags(_),
|
|
1483
|
-
});
|
|
1484
|
-
Object.assign(contents, doc);
|
|
1485
|
-
return contents;
|
|
1486
|
-
};
|
|
1487
|
-
const de_GetLayoutCommand = async (output, context) => {
|
|
1488
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1489
|
-
return de_CommandError(output, context);
|
|
1490
|
-
}
|
|
1491
|
-
const contents = smithyClient.map({
|
|
1492
|
-
$metadata: deserializeMetadata(output),
|
|
1493
|
-
});
|
|
1494
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1495
|
-
const doc = smithyClient.take(data, {
|
|
1496
|
-
content: (_) => smithyClient._json(core$1.awsExpectUnion(_)),
|
|
1497
|
-
createdTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1498
|
-
deleted: smithyClient.expectBoolean,
|
|
1499
|
-
lastModifiedTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1500
|
-
layoutArn: smithyClient.expectString,
|
|
1501
|
-
layoutId: smithyClient.expectString,
|
|
1502
|
-
name: smithyClient.expectString,
|
|
1503
|
-
tags: (_) => de_Tags(_),
|
|
1504
|
-
});
|
|
1505
|
-
Object.assign(contents, doc);
|
|
1506
|
-
return contents;
|
|
1507
|
-
};
|
|
1508
|
-
const de_GetTemplateCommand = async (output, context) => {
|
|
1509
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1510
|
-
return de_CommandError(output, context);
|
|
1511
|
-
}
|
|
1512
|
-
const contents = smithyClient.map({
|
|
1513
|
-
$metadata: deserializeMetadata(output),
|
|
1514
|
-
});
|
|
1515
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1516
|
-
const doc = smithyClient.take(data, {
|
|
1517
|
-
createdTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1518
|
-
deleted: smithyClient.expectBoolean,
|
|
1519
|
-
description: smithyClient.expectString,
|
|
1520
|
-
lastModifiedTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1521
|
-
layoutConfiguration: smithyClient._json,
|
|
1522
|
-
name: smithyClient.expectString,
|
|
1523
|
-
requiredFields: smithyClient._json,
|
|
1524
|
-
rules: smithyClient._json,
|
|
1525
|
-
status: smithyClient.expectString,
|
|
1526
|
-
tags: (_) => de_Tags(_),
|
|
1527
|
-
templateArn: smithyClient.expectString,
|
|
1528
|
-
templateId: smithyClient.expectString,
|
|
1529
|
-
});
|
|
1530
|
-
Object.assign(contents, doc);
|
|
1531
|
-
return contents;
|
|
1532
|
-
};
|
|
1533
|
-
const de_ListCaseRulesCommand = async (output, context) => {
|
|
1534
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1535
|
-
return de_CommandError(output, context);
|
|
1536
|
-
}
|
|
1537
|
-
const contents = smithyClient.map({
|
|
1538
|
-
$metadata: deserializeMetadata(output),
|
|
1539
|
-
});
|
|
1540
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1541
|
-
const doc = smithyClient.take(data, {
|
|
1542
|
-
caseRules: smithyClient._json,
|
|
1543
|
-
nextToken: smithyClient.expectString,
|
|
1544
|
-
});
|
|
1545
|
-
Object.assign(contents, doc);
|
|
1546
|
-
return contents;
|
|
1547
|
-
};
|
|
1548
|
-
const de_ListCasesForContactCommand = async (output, context) => {
|
|
1549
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1550
|
-
return de_CommandError(output, context);
|
|
1551
|
-
}
|
|
1552
|
-
const contents = smithyClient.map({
|
|
1553
|
-
$metadata: deserializeMetadata(output),
|
|
1554
|
-
});
|
|
1555
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1556
|
-
const doc = smithyClient.take(data, {
|
|
1557
|
-
cases: smithyClient._json,
|
|
1558
|
-
nextToken: smithyClient.expectString,
|
|
1559
|
-
});
|
|
1560
|
-
Object.assign(contents, doc);
|
|
1561
|
-
return contents;
|
|
1562
|
-
};
|
|
1563
|
-
const de_ListDomainsCommand = async (output, context) => {
|
|
1564
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1565
|
-
return de_CommandError(output, context);
|
|
1566
|
-
}
|
|
1567
|
-
const contents = smithyClient.map({
|
|
1568
|
-
$metadata: deserializeMetadata(output),
|
|
1569
|
-
});
|
|
1570
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1571
|
-
const doc = smithyClient.take(data, {
|
|
1572
|
-
domains: smithyClient._json,
|
|
1573
|
-
nextToken: smithyClient.expectString,
|
|
1574
|
-
});
|
|
1575
|
-
Object.assign(contents, doc);
|
|
1576
|
-
return contents;
|
|
1577
|
-
};
|
|
1578
|
-
const de_ListFieldOptionsCommand = async (output, context) => {
|
|
1579
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1580
|
-
return de_CommandError(output, context);
|
|
1581
|
-
}
|
|
1582
|
-
const contents = smithyClient.map({
|
|
1583
|
-
$metadata: deserializeMetadata(output),
|
|
1584
|
-
});
|
|
1585
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1586
|
-
const doc = smithyClient.take(data, {
|
|
1587
|
-
nextToken: smithyClient.expectString,
|
|
1588
|
-
options: smithyClient._json,
|
|
1589
|
-
});
|
|
1590
|
-
Object.assign(contents, doc);
|
|
1591
|
-
return contents;
|
|
1592
|
-
};
|
|
1593
|
-
const de_ListFieldsCommand = async (output, context) => {
|
|
1594
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1595
|
-
return de_CommandError(output, context);
|
|
1596
|
-
}
|
|
1597
|
-
const contents = smithyClient.map({
|
|
1598
|
-
$metadata: deserializeMetadata(output),
|
|
1599
|
-
});
|
|
1600
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1601
|
-
const doc = smithyClient.take(data, {
|
|
1602
|
-
fields: smithyClient._json,
|
|
1603
|
-
nextToken: smithyClient.expectString,
|
|
1604
|
-
});
|
|
1605
|
-
Object.assign(contents, doc);
|
|
1606
|
-
return contents;
|
|
1607
|
-
};
|
|
1608
|
-
const de_ListLayoutsCommand = async (output, context) => {
|
|
1609
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1610
|
-
return de_CommandError(output, context);
|
|
1611
|
-
}
|
|
1612
|
-
const contents = smithyClient.map({
|
|
1613
|
-
$metadata: deserializeMetadata(output),
|
|
1614
|
-
});
|
|
1615
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1616
|
-
const doc = smithyClient.take(data, {
|
|
1617
|
-
layouts: smithyClient._json,
|
|
1618
|
-
nextToken: smithyClient.expectString,
|
|
1619
|
-
});
|
|
1620
|
-
Object.assign(contents, doc);
|
|
1621
|
-
return contents;
|
|
1622
|
-
};
|
|
1623
|
-
const de_ListTagsForResourceCommand = async (output, context) => {
|
|
1624
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1625
|
-
return de_CommandError(output, context);
|
|
1626
|
-
}
|
|
1627
|
-
const contents = smithyClient.map({
|
|
1628
|
-
$metadata: deserializeMetadata(output),
|
|
1629
|
-
});
|
|
1630
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1631
|
-
const doc = smithyClient.take(data, {
|
|
1632
|
-
tags: (_) => de_Tags(_),
|
|
1633
|
-
});
|
|
1634
|
-
Object.assign(contents, doc);
|
|
1635
|
-
return contents;
|
|
1636
|
-
};
|
|
1637
|
-
const de_ListTemplatesCommand = async (output, context) => {
|
|
1638
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1639
|
-
return de_CommandError(output, context);
|
|
1640
|
-
}
|
|
1641
|
-
const contents = smithyClient.map({
|
|
1642
|
-
$metadata: deserializeMetadata(output),
|
|
1643
|
-
});
|
|
1644
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1645
|
-
const doc = smithyClient.take(data, {
|
|
1646
|
-
nextToken: smithyClient.expectString,
|
|
1647
|
-
templates: smithyClient._json,
|
|
1648
|
-
});
|
|
1649
|
-
Object.assign(contents, doc);
|
|
1650
|
-
return contents;
|
|
1651
|
-
};
|
|
1652
|
-
const de_PutCaseEventConfigurationCommand = async (output, context) => {
|
|
1653
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1654
|
-
return de_CommandError(output, context);
|
|
1655
|
-
}
|
|
1656
|
-
const contents = smithyClient.map({
|
|
1657
|
-
$metadata: deserializeMetadata(output),
|
|
1658
|
-
});
|
|
1659
|
-
await smithyClient.collectBody(output.body, context);
|
|
1660
|
-
return contents;
|
|
1661
|
-
};
|
|
1662
|
-
const de_SearchAllRelatedItemsCommand = async (output, context) => {
|
|
1663
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1664
|
-
return de_CommandError(output, context);
|
|
1665
|
-
}
|
|
1666
|
-
const contents = smithyClient.map({
|
|
1667
|
-
$metadata: deserializeMetadata(output),
|
|
1668
|
-
});
|
|
1669
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1670
|
-
const doc = smithyClient.take(data, {
|
|
1671
|
-
nextToken: smithyClient.expectString,
|
|
1672
|
-
relatedItems: (_) => de_SearchAllRelatedItemsResponseItemList(_),
|
|
1673
|
-
});
|
|
1674
|
-
Object.assign(contents, doc);
|
|
1675
|
-
return contents;
|
|
1676
|
-
};
|
|
1677
|
-
const de_SearchCasesCommand = async (output, context) => {
|
|
1678
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1679
|
-
return de_CommandError(output, context);
|
|
1680
|
-
}
|
|
1681
|
-
const contents = smithyClient.map({
|
|
1682
|
-
$metadata: deserializeMetadata(output),
|
|
1683
|
-
});
|
|
1684
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1685
|
-
const doc = smithyClient.take(data, {
|
|
1686
|
-
cases: (_) => de_SearchCasesResponseItemList(_),
|
|
1687
|
-
nextToken: smithyClient.expectString,
|
|
1688
|
-
});
|
|
1689
|
-
Object.assign(contents, doc);
|
|
1690
|
-
return contents;
|
|
1691
|
-
};
|
|
1692
|
-
const de_SearchRelatedItemsCommand = async (output, context) => {
|
|
1693
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1694
|
-
return de_CommandError(output, context);
|
|
1695
|
-
}
|
|
1696
|
-
const contents = smithyClient.map({
|
|
1697
|
-
$metadata: deserializeMetadata(output),
|
|
1698
|
-
});
|
|
1699
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1700
|
-
const doc = smithyClient.take(data, {
|
|
1701
|
-
nextToken: smithyClient.expectString,
|
|
1702
|
-
relatedItems: (_) => de_SearchRelatedItemsResponseItemList(_),
|
|
1703
|
-
});
|
|
1704
|
-
Object.assign(contents, doc);
|
|
1705
|
-
return contents;
|
|
1706
|
-
};
|
|
1707
|
-
const de_TagResourceCommand = async (output, context) => {
|
|
1708
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1709
|
-
return de_CommandError(output, context);
|
|
1710
|
-
}
|
|
1711
|
-
const contents = smithyClient.map({
|
|
1712
|
-
$metadata: deserializeMetadata(output),
|
|
1713
|
-
});
|
|
1714
|
-
await smithyClient.collectBody(output.body, context);
|
|
1715
|
-
return contents;
|
|
1716
|
-
};
|
|
1717
|
-
const de_UntagResourceCommand = async (output, context) => {
|
|
1718
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1719
|
-
return de_CommandError(output, context);
|
|
1720
|
-
}
|
|
1721
|
-
const contents = smithyClient.map({
|
|
1722
|
-
$metadata: deserializeMetadata(output),
|
|
1723
|
-
});
|
|
1724
|
-
await smithyClient.collectBody(output.body, context);
|
|
1725
|
-
return contents;
|
|
1726
|
-
};
|
|
1727
|
-
const de_UpdateCaseCommand = async (output, context) => {
|
|
1728
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1729
|
-
return de_CommandError(output, context);
|
|
1730
|
-
}
|
|
1731
|
-
const contents = smithyClient.map({
|
|
1732
|
-
$metadata: deserializeMetadata(output),
|
|
1733
|
-
});
|
|
1734
|
-
await smithyClient.collectBody(output.body, context);
|
|
1735
|
-
return contents;
|
|
1736
|
-
};
|
|
1737
|
-
const de_UpdateCaseRuleCommand = async (output, context) => {
|
|
1738
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1739
|
-
return de_CommandError(output, context);
|
|
1740
|
-
}
|
|
1741
|
-
const contents = smithyClient.map({
|
|
1742
|
-
$metadata: deserializeMetadata(output),
|
|
1743
|
-
});
|
|
1744
|
-
await smithyClient.collectBody(output.body, context);
|
|
1745
|
-
return contents;
|
|
1746
|
-
};
|
|
1747
|
-
const de_UpdateFieldCommand = async (output, context) => {
|
|
1748
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1749
|
-
return de_CommandError(output, context);
|
|
1750
|
-
}
|
|
1751
|
-
const contents = smithyClient.map({
|
|
1752
|
-
$metadata: deserializeMetadata(output),
|
|
1753
|
-
});
|
|
1754
|
-
await smithyClient.collectBody(output.body, context);
|
|
1755
|
-
return contents;
|
|
1756
|
-
};
|
|
1757
|
-
const de_UpdateLayoutCommand = async (output, context) => {
|
|
1758
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1759
|
-
return de_CommandError(output, context);
|
|
1760
|
-
}
|
|
1761
|
-
const contents = smithyClient.map({
|
|
1762
|
-
$metadata: deserializeMetadata(output),
|
|
1763
|
-
});
|
|
1764
|
-
await smithyClient.collectBody(output.body, context);
|
|
1765
|
-
return contents;
|
|
1766
|
-
};
|
|
1767
|
-
const de_UpdateTemplateCommand = async (output, context) => {
|
|
1768
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1769
|
-
return de_CommandError(output, context);
|
|
1770
|
-
}
|
|
1771
|
-
const contents = smithyClient.map({
|
|
1772
|
-
$metadata: deserializeMetadata(output),
|
|
1773
|
-
});
|
|
1774
|
-
await smithyClient.collectBody(output.body, context);
|
|
1775
|
-
return contents;
|
|
1776
|
-
};
|
|
1777
|
-
const de_CommandError = async (output, context) => {
|
|
1778
|
-
const parsedOutput = {
|
|
1779
|
-
...output,
|
|
1780
|
-
body: await core$1.parseJsonErrorBody(output.body, context),
|
|
1781
|
-
};
|
|
1782
|
-
const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1783
|
-
switch (errorCode) {
|
|
1784
|
-
case "AccessDeniedException":
|
|
1785
|
-
case "com.amazonaws.connectcases#AccessDeniedException":
|
|
1786
|
-
throw await de_AccessDeniedExceptionRes(parsedOutput);
|
|
1787
|
-
case "InternalServerException":
|
|
1788
|
-
case "com.amazonaws.connectcases#InternalServerException":
|
|
1789
|
-
throw await de_InternalServerExceptionRes(parsedOutput);
|
|
1790
|
-
case "ResourceNotFoundException":
|
|
1791
|
-
case "com.amazonaws.connectcases#ResourceNotFoundException":
|
|
1792
|
-
throw await de_ResourceNotFoundExceptionRes(parsedOutput);
|
|
1793
|
-
case "ThrottlingException":
|
|
1794
|
-
case "com.amazonaws.connectcases#ThrottlingException":
|
|
1795
|
-
throw await de_ThrottlingExceptionRes(parsedOutput);
|
|
1796
|
-
case "ValidationException":
|
|
1797
|
-
case "com.amazonaws.connectcases#ValidationException":
|
|
1798
|
-
throw await de_ValidationExceptionRes(parsedOutput);
|
|
1799
|
-
case "ServiceQuotaExceededException":
|
|
1800
|
-
case "com.amazonaws.connectcases#ServiceQuotaExceededException":
|
|
1801
|
-
throw await de_ServiceQuotaExceededExceptionRes(parsedOutput);
|
|
1802
|
-
case "ConflictException":
|
|
1803
|
-
case "com.amazonaws.connectcases#ConflictException":
|
|
1804
|
-
throw await de_ConflictExceptionRes(parsedOutput);
|
|
1805
|
-
default:
|
|
1806
|
-
const parsedBody = parsedOutput.body;
|
|
1807
|
-
return throwDefaultError({
|
|
1808
|
-
output,
|
|
1809
|
-
parsedBody,
|
|
1810
|
-
errorCode,
|
|
1811
|
-
});
|
|
1812
|
-
}
|
|
1813
|
-
};
|
|
1814
|
-
const throwDefaultError = smithyClient.withBaseException(ConnectCasesServiceException);
|
|
1815
|
-
const de_AccessDeniedExceptionRes = async (parsedOutput, context) => {
|
|
1816
|
-
const contents = smithyClient.map({});
|
|
1817
|
-
const data = parsedOutput.body;
|
|
1818
|
-
const doc = smithyClient.take(data, {
|
|
1819
|
-
message: smithyClient.expectString,
|
|
1820
|
-
});
|
|
1821
|
-
Object.assign(contents, doc);
|
|
1822
|
-
const exception = new AccessDeniedException({
|
|
1823
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1824
|
-
...contents,
|
|
1825
|
-
});
|
|
1826
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1827
|
-
};
|
|
1828
|
-
const de_ConflictExceptionRes = async (parsedOutput, context) => {
|
|
1829
|
-
const contents = smithyClient.map({});
|
|
1830
|
-
const data = parsedOutput.body;
|
|
1831
|
-
const doc = smithyClient.take(data, {
|
|
1832
|
-
message: smithyClient.expectString,
|
|
1833
|
-
});
|
|
1834
|
-
Object.assign(contents, doc);
|
|
1835
|
-
const exception = new ConflictException({
|
|
1836
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1837
|
-
...contents,
|
|
1838
|
-
});
|
|
1839
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1840
|
-
};
|
|
1841
|
-
const de_InternalServerExceptionRes = async (parsedOutput, context) => {
|
|
1842
|
-
const contents = smithyClient.map({
|
|
1843
|
-
[_rAS]: [() => void 0 !== parsedOutput.headers[_ra], () => smithyClient.strictParseInt32(parsedOutput.headers[_ra])],
|
|
1844
|
-
});
|
|
1845
|
-
const data = parsedOutput.body;
|
|
1846
|
-
const doc = smithyClient.take(data, {
|
|
1847
|
-
message: smithyClient.expectString,
|
|
1848
|
-
});
|
|
1849
|
-
Object.assign(contents, doc);
|
|
1850
|
-
const exception = new InternalServerException({
|
|
1851
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1852
|
-
...contents,
|
|
1853
|
-
});
|
|
1854
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1855
|
-
};
|
|
1856
|
-
const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
|
|
1857
|
-
const contents = smithyClient.map({});
|
|
1858
|
-
const data = parsedOutput.body;
|
|
1859
|
-
const doc = smithyClient.take(data, {
|
|
1860
|
-
message: smithyClient.expectString,
|
|
1861
|
-
resourceId: smithyClient.expectString,
|
|
1862
|
-
resourceType: smithyClient.expectString,
|
|
1863
|
-
});
|
|
1864
|
-
Object.assign(contents, doc);
|
|
1865
|
-
const exception = new ResourceNotFoundException({
|
|
1866
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1867
|
-
...contents,
|
|
1868
|
-
});
|
|
1869
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1870
|
-
};
|
|
1871
|
-
const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => {
|
|
1872
|
-
const contents = smithyClient.map({});
|
|
1873
|
-
const data = parsedOutput.body;
|
|
1874
|
-
const doc = smithyClient.take(data, {
|
|
1875
|
-
message: smithyClient.expectString,
|
|
1876
|
-
});
|
|
1877
|
-
Object.assign(contents, doc);
|
|
1878
|
-
const exception = new ServiceQuotaExceededException({
|
|
1879
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1880
|
-
...contents,
|
|
1881
|
-
});
|
|
1882
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1883
|
-
};
|
|
1884
|
-
const de_ThrottlingExceptionRes = async (parsedOutput, context) => {
|
|
1885
|
-
const contents = smithyClient.map({});
|
|
1886
|
-
const data = parsedOutput.body;
|
|
1887
|
-
const doc = smithyClient.take(data, {
|
|
1888
|
-
message: smithyClient.expectString,
|
|
1889
|
-
});
|
|
1890
|
-
Object.assign(contents, doc);
|
|
1891
|
-
const exception = new ThrottlingException({
|
|
1892
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1893
|
-
...contents,
|
|
1894
|
-
});
|
|
1895
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1896
|
-
};
|
|
1897
|
-
const de_ValidationExceptionRes = async (parsedOutput, context) => {
|
|
1898
|
-
const contents = smithyClient.map({});
|
|
1899
|
-
const data = parsedOutput.body;
|
|
1900
|
-
const doc = smithyClient.take(data, {
|
|
1901
|
-
message: smithyClient.expectString,
|
|
1902
|
-
});
|
|
1903
|
-
Object.assign(contents, doc);
|
|
1904
|
-
const exception = new ValidationException({
|
|
1905
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1906
|
-
...contents,
|
|
1907
|
-
});
|
|
1908
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1909
|
-
};
|
|
1910
|
-
const se_BooleanCondition = (input, context) => {
|
|
1911
|
-
return exports.BooleanCondition.visit(input, {
|
|
1912
|
-
equalTo: (value) => ({ equalTo: se_BooleanOperands(value) }),
|
|
1913
|
-
notEqualTo: (value) => ({ notEqualTo: se_BooleanOperands(value) }),
|
|
1914
|
-
_: (name, value) => ({ [name]: value }),
|
|
1915
|
-
});
|
|
1916
|
-
};
|
|
1917
|
-
const se_BooleanConditionList = (input, context) => {
|
|
1918
|
-
return input
|
|
1919
|
-
.filter((e) => e != null)
|
|
1920
|
-
.map((entry) => {
|
|
1921
|
-
return se_BooleanCondition(entry);
|
|
1922
|
-
});
|
|
1923
|
-
};
|
|
1924
|
-
const se_BooleanOperands = (input, context) => {
|
|
1925
|
-
return smithyClient.take(input, {
|
|
1926
|
-
operandOne: smithyClient._json,
|
|
1927
|
-
operandTwo: (_) => se_OperandTwo(_),
|
|
1928
|
-
result: [],
|
|
1929
|
-
});
|
|
1930
|
-
};
|
|
1931
|
-
const se_CaseFilter = (input, context) => {
|
|
1932
|
-
return exports.CaseFilter.visit(input, {
|
|
1933
|
-
andAll: (value) => ({ andAll: se_CaseFilterList(value) }),
|
|
1934
|
-
field: (value) => ({ field: se_FieldFilter(value) }),
|
|
1935
|
-
not: (value) => ({ not: se_CaseFilter(value) }),
|
|
1936
|
-
orAll: (value) => ({ orAll: se_CaseFilterList(value) }),
|
|
1937
|
-
_: (name, value) => ({ [name]: value }),
|
|
1938
|
-
});
|
|
1939
|
-
};
|
|
1940
|
-
const se_CaseFilterList = (input, context) => {
|
|
1941
|
-
return input
|
|
1942
|
-
.filter((e) => e != null)
|
|
1943
|
-
.map((entry) => {
|
|
1944
|
-
return se_CaseFilter(entry);
|
|
1945
|
-
});
|
|
1946
|
-
};
|
|
1947
|
-
const se_CaseRuleDetails = (input, context) => {
|
|
1948
|
-
return exports.CaseRuleDetails.visit(input, {
|
|
1949
|
-
fieldOptions: (value) => ({ fieldOptions: smithyClient._json(value) }),
|
|
1950
|
-
hidden: (value) => ({ hidden: se_HiddenCaseRule(value) }),
|
|
1951
|
-
required: (value) => ({ required: se_RequiredCaseRule(value) }),
|
|
1952
|
-
_: (name, value) => ({ [name]: value }),
|
|
1953
|
-
});
|
|
1954
|
-
};
|
|
1955
|
-
const se_CustomFieldsFilter = (input, context) => {
|
|
1956
|
-
return exports.CustomFieldsFilter.visit(input, {
|
|
1957
|
-
andAll: (value) => ({ andAll: se_CustomFieldsFilterList(value) }),
|
|
1958
|
-
field: (value) => ({ field: se_FieldFilter(value) }),
|
|
1959
|
-
not: (value) => ({ not: se_CustomFieldsFilter(value) }),
|
|
1960
|
-
orAll: (value) => ({ orAll: se_CustomFieldsFilterList(value) }),
|
|
1961
|
-
_: (name, value) => ({ [name]: value }),
|
|
1962
|
-
});
|
|
1963
|
-
};
|
|
1964
|
-
const se_CustomFieldsFilterList = (input, context) => {
|
|
1965
|
-
return input
|
|
1966
|
-
.filter((e) => e != null)
|
|
1967
|
-
.map((entry) => {
|
|
1968
|
-
return se_CustomFieldsFilter(entry);
|
|
1969
|
-
});
|
|
1970
|
-
};
|
|
1971
|
-
const se_CustomFilter = (input, context) => {
|
|
1972
|
-
return smithyClient.take(input, {
|
|
1973
|
-
fields: (_) => se_CustomFieldsFilter(_),
|
|
1974
|
-
});
|
|
1975
|
-
};
|
|
1976
|
-
const se_CustomInputContent = (input, context) => {
|
|
1977
|
-
return smithyClient.take(input, {
|
|
1978
|
-
fields: (_) => se_FieldValueList(_),
|
|
1979
|
-
});
|
|
1980
|
-
};
|
|
1981
|
-
const se_FieldFilter = (input, context) => {
|
|
1982
|
-
return exports.FieldFilter.visit(input, {
|
|
1983
|
-
contains: (value) => ({ contains: se_FieldValue(value) }),
|
|
1984
|
-
equalTo: (value) => ({ equalTo: se_FieldValue(value) }),
|
|
1985
|
-
greaterThan: (value) => ({ greaterThan: se_FieldValue(value) }),
|
|
1986
|
-
greaterThanOrEqualTo: (value) => ({ greaterThanOrEqualTo: se_FieldValue(value) }),
|
|
1987
|
-
lessThan: (value) => ({ lessThan: se_FieldValue(value) }),
|
|
1988
|
-
lessThanOrEqualTo: (value) => ({ lessThanOrEqualTo: se_FieldValue(value) }),
|
|
1989
|
-
_: (name, value) => ({ [name]: value }),
|
|
1990
|
-
});
|
|
1991
|
-
};
|
|
1992
|
-
const se_FieldValue = (input, context) => {
|
|
1993
|
-
return smithyClient.take(input, {
|
|
1994
|
-
id: [],
|
|
1995
|
-
value: (_) => se_FieldValueUnion(_),
|
|
1996
|
-
});
|
|
1997
|
-
};
|
|
1998
|
-
const se_FieldValueList = (input, context) => {
|
|
1999
|
-
return input
|
|
2000
|
-
.filter((e) => e != null)
|
|
2001
|
-
.map((entry) => {
|
|
2002
|
-
return se_FieldValue(entry);
|
|
2003
|
-
});
|
|
2004
|
-
};
|
|
2005
|
-
const se_FieldValueUnion = (input, context) => {
|
|
2006
|
-
return exports.FieldValueUnion.visit(input, {
|
|
2007
|
-
booleanValue: (value) => ({ booleanValue: value }),
|
|
2008
|
-
doubleValue: (value) => ({ doubleValue: smithyClient.serializeFloat(value) }),
|
|
2009
|
-
emptyValue: (value) => ({ emptyValue: smithyClient._json(value) }),
|
|
2010
|
-
stringValue: (value) => ({ stringValue: value }),
|
|
2011
|
-
userArnValue: (value) => ({ userArnValue: value }),
|
|
2012
|
-
_: (name, value) => ({ [name]: value }),
|
|
2013
|
-
});
|
|
2014
|
-
};
|
|
2015
|
-
const se_HiddenCaseRule = (input, context) => {
|
|
2016
|
-
return smithyClient.take(input, {
|
|
2017
|
-
conditions: (_) => se_BooleanConditionList(_),
|
|
2018
|
-
defaultValue: [],
|
|
2019
|
-
});
|
|
2020
|
-
};
|
|
2021
|
-
const se_OperandTwo = (input, context) => {
|
|
2022
|
-
return exports.OperandTwo.visit(input, {
|
|
2023
|
-
booleanValue: (value) => ({ booleanValue: value }),
|
|
2024
|
-
doubleValue: (value) => ({ doubleValue: smithyClient.serializeFloat(value) }),
|
|
2025
|
-
emptyValue: (value) => ({ emptyValue: smithyClient._json(value) }),
|
|
2026
|
-
stringValue: (value) => ({ stringValue: value }),
|
|
2027
|
-
_: (name, value) => ({ [name]: value }),
|
|
2028
|
-
});
|
|
2029
|
-
};
|
|
2030
|
-
const se_RelatedItemFilterList = (input, context) => {
|
|
2031
|
-
return input
|
|
2032
|
-
.filter((e) => e != null)
|
|
2033
|
-
.map((entry) => {
|
|
2034
|
-
return se_RelatedItemTypeFilter(entry);
|
|
2035
|
-
});
|
|
2036
|
-
};
|
|
2037
|
-
const se_RelatedItemInputContent = (input, context) => {
|
|
2038
|
-
return exports.RelatedItemInputContent.visit(input, {
|
|
2039
|
-
comment: (value) => ({ comment: smithyClient._json(value) }),
|
|
2040
|
-
connectCase: (value) => ({ connectCase: smithyClient._json(value) }),
|
|
2041
|
-
contact: (value) => ({ contact: smithyClient._json(value) }),
|
|
2042
|
-
custom: (value) => ({ custom: se_CustomInputContent(value) }),
|
|
2043
|
-
file: (value) => ({ file: smithyClient._json(value) }),
|
|
2044
|
-
sla: (value) => ({ sla: se_SlaInputContent(value) }),
|
|
2045
|
-
_: (name, value) => ({ [name]: value }),
|
|
2046
|
-
});
|
|
2047
|
-
};
|
|
2048
|
-
const se_RelatedItemTypeFilter = (input, context) => {
|
|
2049
|
-
return exports.RelatedItemTypeFilter.visit(input, {
|
|
2050
|
-
comment: (value) => ({ comment: smithyClient._json(value) }),
|
|
2051
|
-
connectCase: (value) => ({ connectCase: smithyClient._json(value) }),
|
|
2052
|
-
contact: (value) => ({ contact: smithyClient._json(value) }),
|
|
2053
|
-
custom: (value) => ({ custom: se_CustomFilter(value) }),
|
|
2054
|
-
file: (value) => ({ file: smithyClient._json(value) }),
|
|
2055
|
-
sla: (value) => ({ sla: smithyClient._json(value) }),
|
|
2056
|
-
_: (name, value) => ({ [name]: value }),
|
|
2057
|
-
});
|
|
2058
|
-
};
|
|
2059
|
-
const se_RequiredCaseRule = (input, context) => {
|
|
2060
|
-
return smithyClient.take(input, {
|
|
2061
|
-
conditions: (_) => se_BooleanConditionList(_),
|
|
2062
|
-
defaultValue: [],
|
|
2063
|
-
});
|
|
2064
|
-
};
|
|
2065
|
-
const se_SlaFieldValueUnionList = (input, context) => {
|
|
2066
|
-
return input
|
|
2067
|
-
.filter((e) => e != null)
|
|
2068
|
-
.map((entry) => {
|
|
2069
|
-
return se_FieldValueUnion(entry);
|
|
2070
|
-
});
|
|
2071
|
-
};
|
|
2072
|
-
const se_SlaInputConfiguration = (input, context) => {
|
|
2073
|
-
return smithyClient.take(input, {
|
|
2074
|
-
fieldId: [],
|
|
2075
|
-
name: [],
|
|
2076
|
-
targetFieldValues: (_) => se_SlaFieldValueUnionList(_),
|
|
2077
|
-
targetSlaMinutes: [],
|
|
2078
|
-
type: [],
|
|
2079
|
-
});
|
|
2080
|
-
};
|
|
2081
|
-
const se_SlaInputContent = (input, context) => {
|
|
2082
|
-
return exports.SlaInputContent.visit(input, {
|
|
2083
|
-
slaInputConfiguration: (value) => ({ slaInputConfiguration: se_SlaInputConfiguration(value) }),
|
|
2084
|
-
_: (name, value) => ({ [name]: value }),
|
|
2085
|
-
});
|
|
2086
|
-
};
|
|
2087
|
-
const se_Tags = (input, context) => {
|
|
2088
|
-
return Object.entries(input).reduce((acc, [key, value]) => {
|
|
2089
|
-
if (value === null) {
|
|
2090
|
-
acc[key] = null;
|
|
2091
|
-
return acc;
|
|
2092
|
-
}
|
|
2093
|
-
acc[key] = value;
|
|
2094
|
-
return acc;
|
|
2095
|
-
}, {});
|
|
2096
|
-
};
|
|
2097
|
-
const de_AuditEvent = (output, context) => {
|
|
2098
|
-
return smithyClient.take(output, {
|
|
2099
|
-
eventId: smithyClient.expectString,
|
|
2100
|
-
fields: (_) => de_AuditEventFieldList(_),
|
|
2101
|
-
performedBy: smithyClient._json,
|
|
2102
|
-
performedTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
2103
|
-
relatedItemType: smithyClient.expectString,
|
|
2104
|
-
type: smithyClient.expectString,
|
|
2105
|
-
});
|
|
2106
|
-
};
|
|
2107
|
-
const de_AuditEventField = (output, context) => {
|
|
2108
|
-
return smithyClient.take(output, {
|
|
2109
|
-
eventFieldId: smithyClient.expectString,
|
|
2110
|
-
newValue: (_) => de_AuditEventFieldValueUnion(core$1.awsExpectUnion(_)),
|
|
2111
|
-
oldValue: (_) => de_AuditEventFieldValueUnion(core$1.awsExpectUnion(_)),
|
|
2112
|
-
});
|
|
2113
|
-
};
|
|
2114
|
-
const de_AuditEventFieldList = (output, context) => {
|
|
2115
|
-
const retVal = (output || []).map((entry) => {
|
|
2116
|
-
if (entry === null) {
|
|
2117
|
-
return null;
|
|
2118
|
-
}
|
|
2119
|
-
return de_AuditEventField(entry);
|
|
2120
|
-
});
|
|
2121
|
-
return retVal;
|
|
2122
|
-
};
|
|
2123
|
-
const de_AuditEventFieldValueUnion = (output, context) => {
|
|
2124
|
-
if (smithyClient.expectBoolean(output.booleanValue) !== undefined) {
|
|
2125
|
-
return { booleanValue: smithyClient.expectBoolean(output.booleanValue) };
|
|
2126
|
-
}
|
|
2127
|
-
if (smithyClient.limitedParseDouble(output.doubleValue) !== undefined) {
|
|
2128
|
-
return { doubleValue: smithyClient.limitedParseDouble(output.doubleValue) };
|
|
2129
|
-
}
|
|
2130
|
-
if (output.emptyValue != null) {
|
|
2131
|
-
return {
|
|
2132
|
-
emptyValue: smithyClient._json(output.emptyValue),
|
|
2133
|
-
};
|
|
2134
|
-
}
|
|
2135
|
-
if (smithyClient.expectString(output.stringValue) !== undefined) {
|
|
2136
|
-
return { stringValue: smithyClient.expectString(output.stringValue) };
|
|
2137
|
-
}
|
|
2138
|
-
if (smithyClient.expectString(output.userArnValue) !== undefined) {
|
|
2139
|
-
return { userArnValue: smithyClient.expectString(output.userArnValue) };
|
|
2140
|
-
}
|
|
2141
|
-
return { $unknown: Object.entries(output)[0] };
|
|
2142
|
-
};
|
|
2143
|
-
const de_AuditEventsList = (output, context) => {
|
|
2144
|
-
const retVal = (output || []).map((entry) => {
|
|
2145
|
-
if (entry === null) {
|
|
2146
|
-
return null;
|
|
2147
|
-
}
|
|
2148
|
-
return de_AuditEvent(entry);
|
|
2149
|
-
});
|
|
2150
|
-
return retVal;
|
|
2151
|
-
};
|
|
2152
|
-
const de_BatchGetCaseRuleList = (output, context) => {
|
|
2153
|
-
const retVal = (output || [])
|
|
2154
|
-
.filter((e) => e != null)
|
|
2155
|
-
.map((entry) => {
|
|
2156
|
-
return de_GetCaseRuleResponse(entry);
|
|
2157
|
-
});
|
|
2158
|
-
return retVal;
|
|
2159
|
-
};
|
|
2160
|
-
const de_BatchGetFieldList = (output, context) => {
|
|
2161
|
-
const retVal = (output || [])
|
|
2162
|
-
.filter((e) => e != null)
|
|
2163
|
-
.map((entry) => {
|
|
2164
|
-
return de_GetFieldResponse(entry);
|
|
2165
|
-
});
|
|
2166
|
-
return retVal;
|
|
2167
|
-
};
|
|
2168
|
-
const de_BooleanCondition = (output, context) => {
|
|
2169
|
-
if (output.equalTo != null) {
|
|
2170
|
-
return {
|
|
2171
|
-
equalTo: de_BooleanOperands(output.equalTo),
|
|
2172
|
-
};
|
|
2173
|
-
}
|
|
2174
|
-
if (output.notEqualTo != null) {
|
|
2175
|
-
return {
|
|
2176
|
-
notEqualTo: de_BooleanOperands(output.notEqualTo),
|
|
2177
|
-
};
|
|
2178
|
-
}
|
|
2179
|
-
return { $unknown: Object.entries(output)[0] };
|
|
2180
|
-
};
|
|
2181
|
-
const de_BooleanConditionList = (output, context) => {
|
|
2182
|
-
const retVal = (output || [])
|
|
2183
|
-
.filter((e) => e != null)
|
|
2184
|
-
.map((entry) => {
|
|
2185
|
-
return de_BooleanCondition(core$1.awsExpectUnion(entry));
|
|
2186
|
-
});
|
|
2187
|
-
return retVal;
|
|
2188
|
-
};
|
|
2189
|
-
const de_BooleanOperands = (output, context) => {
|
|
2190
|
-
return smithyClient.take(output, {
|
|
2191
|
-
operandOne: (_) => smithyClient._json(core$1.awsExpectUnion(_)),
|
|
2192
|
-
operandTwo: (_) => de_OperandTwo(core$1.awsExpectUnion(_)),
|
|
2193
|
-
result: smithyClient.expectBoolean,
|
|
2194
|
-
});
|
|
2195
|
-
};
|
|
2196
|
-
const de_CaseRuleDetails = (output, context) => {
|
|
2197
|
-
if (output.fieldOptions != null) {
|
|
2198
|
-
return {
|
|
2199
|
-
fieldOptions: smithyClient._json(output.fieldOptions),
|
|
2200
|
-
};
|
|
2201
|
-
}
|
|
2202
|
-
if (output.hidden != null) {
|
|
2203
|
-
return {
|
|
2204
|
-
hidden: de_HiddenCaseRule(output.hidden),
|
|
2205
|
-
};
|
|
2206
|
-
}
|
|
2207
|
-
if (output.required != null) {
|
|
2208
|
-
return {
|
|
2209
|
-
required: de_RequiredCaseRule(output.required),
|
|
2210
|
-
};
|
|
2211
|
-
}
|
|
2212
|
-
return { $unknown: Object.entries(output)[0] };
|
|
2213
|
-
};
|
|
2214
|
-
const de_ContactContent = (output, context) => {
|
|
2215
|
-
return smithyClient.take(output, {
|
|
2216
|
-
channel: smithyClient.expectString,
|
|
2217
|
-
connectedToSystemTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
2218
|
-
contactArn: smithyClient.expectString,
|
|
2219
|
-
});
|
|
2220
|
-
};
|
|
2221
|
-
const de_CustomContent = (output, context) => {
|
|
2222
|
-
return smithyClient.take(output, {
|
|
2223
|
-
fields: (_) => de_FieldValueList(_),
|
|
2224
|
-
});
|
|
2225
|
-
};
|
|
2226
|
-
const de_FieldValue = (output, context) => {
|
|
2227
|
-
return smithyClient.take(output, {
|
|
2228
|
-
id: smithyClient.expectString,
|
|
2229
|
-
value: (_) => de_FieldValueUnion(core$1.awsExpectUnion(_)),
|
|
2230
|
-
});
|
|
2231
|
-
};
|
|
2232
|
-
const de_FieldValueList = (output, context) => {
|
|
2233
|
-
const retVal = (output || [])
|
|
2234
|
-
.filter((e) => e != null)
|
|
2235
|
-
.map((entry) => {
|
|
2236
|
-
return de_FieldValue(entry);
|
|
2237
|
-
});
|
|
2238
|
-
return retVal;
|
|
2239
|
-
};
|
|
2240
|
-
const de_FieldValueUnion = (output, context) => {
|
|
2241
|
-
if (smithyClient.expectBoolean(output.booleanValue) !== undefined) {
|
|
2242
|
-
return { booleanValue: smithyClient.expectBoolean(output.booleanValue) };
|
|
2243
|
-
}
|
|
2244
|
-
if (smithyClient.limitedParseDouble(output.doubleValue) !== undefined) {
|
|
2245
|
-
return { doubleValue: smithyClient.limitedParseDouble(output.doubleValue) };
|
|
2246
|
-
}
|
|
2247
|
-
if (output.emptyValue != null) {
|
|
2248
|
-
return {
|
|
2249
|
-
emptyValue: smithyClient._json(output.emptyValue),
|
|
2250
|
-
};
|
|
2251
|
-
}
|
|
2252
|
-
if (smithyClient.expectString(output.stringValue) !== undefined) {
|
|
2253
|
-
return { stringValue: smithyClient.expectString(output.stringValue) };
|
|
2254
|
-
}
|
|
2255
|
-
if (smithyClient.expectString(output.userArnValue) !== undefined) {
|
|
2256
|
-
return { userArnValue: smithyClient.expectString(output.userArnValue) };
|
|
2257
|
-
}
|
|
2258
|
-
return { $unknown: Object.entries(output)[0] };
|
|
2259
|
-
};
|
|
2260
|
-
const de_GetCaseRuleResponse = (output, context) => {
|
|
2261
|
-
return smithyClient.take(output, {
|
|
2262
|
-
caseRuleArn: smithyClient.expectString,
|
|
2263
|
-
caseRuleId: smithyClient.expectString,
|
|
2264
|
-
createdTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
2265
|
-
deleted: smithyClient.expectBoolean,
|
|
2266
|
-
description: smithyClient.expectString,
|
|
2267
|
-
lastModifiedTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
2268
|
-
name: smithyClient.expectString,
|
|
2269
|
-
rule: (_) => de_CaseRuleDetails(core$1.awsExpectUnion(_)),
|
|
2270
|
-
tags: (_) => de_Tags(_),
|
|
2271
|
-
});
|
|
2272
|
-
};
|
|
2273
|
-
const de_GetFieldResponse = (output, context) => {
|
|
2274
|
-
return smithyClient.take(output, {
|
|
2275
|
-
createdTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
2276
|
-
deleted: smithyClient.expectBoolean,
|
|
2277
|
-
description: smithyClient.expectString,
|
|
2278
|
-
fieldArn: smithyClient.expectString,
|
|
2279
|
-
fieldId: smithyClient.expectString,
|
|
2280
|
-
lastModifiedTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
2281
|
-
name: smithyClient.expectString,
|
|
2282
|
-
namespace: smithyClient.expectString,
|
|
2283
|
-
tags: (_) => de_Tags(_),
|
|
2284
|
-
type: smithyClient.expectString,
|
|
2285
|
-
});
|
|
2286
|
-
};
|
|
2287
|
-
const de_HiddenCaseRule = (output, context) => {
|
|
2288
|
-
return smithyClient.take(output, {
|
|
2289
|
-
conditions: (_) => de_BooleanConditionList(_),
|
|
2290
|
-
defaultValue: smithyClient.expectBoolean,
|
|
2291
|
-
});
|
|
2292
|
-
};
|
|
2293
|
-
const de_OperandTwo = (output, context) => {
|
|
2294
|
-
if (smithyClient.expectBoolean(output.booleanValue) !== undefined) {
|
|
2295
|
-
return { booleanValue: smithyClient.expectBoolean(output.booleanValue) };
|
|
2296
|
-
}
|
|
2297
|
-
if (smithyClient.limitedParseDouble(output.doubleValue) !== undefined) {
|
|
2298
|
-
return { doubleValue: smithyClient.limitedParseDouble(output.doubleValue) };
|
|
2299
|
-
}
|
|
2300
|
-
if (output.emptyValue != null) {
|
|
2301
|
-
return {
|
|
2302
|
-
emptyValue: smithyClient._json(output.emptyValue),
|
|
2303
|
-
};
|
|
2304
|
-
}
|
|
2305
|
-
if (smithyClient.expectString(output.stringValue) !== undefined) {
|
|
2306
|
-
return { stringValue: smithyClient.expectString(output.stringValue) };
|
|
2307
|
-
}
|
|
2308
|
-
return { $unknown: Object.entries(output)[0] };
|
|
2309
|
-
};
|
|
2310
|
-
const de_RelatedItemContent = (output, context) => {
|
|
2311
|
-
if (output.comment != null) {
|
|
2312
|
-
return {
|
|
2313
|
-
comment: smithyClient._json(output.comment),
|
|
2314
|
-
};
|
|
2315
|
-
}
|
|
2316
|
-
if (output.connectCase != null) {
|
|
2317
|
-
return {
|
|
2318
|
-
connectCase: smithyClient._json(output.connectCase),
|
|
2319
|
-
};
|
|
2320
|
-
}
|
|
2321
|
-
if (output.contact != null) {
|
|
2322
|
-
return {
|
|
2323
|
-
contact: de_ContactContent(output.contact),
|
|
2324
|
-
};
|
|
2325
|
-
}
|
|
2326
|
-
if (output.custom != null) {
|
|
2327
|
-
return {
|
|
2328
|
-
custom: de_CustomContent(output.custom),
|
|
2329
|
-
};
|
|
2330
|
-
}
|
|
2331
|
-
if (output.file != null) {
|
|
2332
|
-
return {
|
|
2333
|
-
file: smithyClient._json(output.file),
|
|
2334
|
-
};
|
|
2335
|
-
}
|
|
2336
|
-
if (output.sla != null) {
|
|
2337
|
-
return {
|
|
2338
|
-
sla: de_SlaContent(output.sla),
|
|
2339
|
-
};
|
|
2340
|
-
}
|
|
2341
|
-
return { $unknown: Object.entries(output)[0] };
|
|
2342
|
-
};
|
|
2343
|
-
const de_RequiredCaseRule = (output, context) => {
|
|
2344
|
-
return smithyClient.take(output, {
|
|
2345
|
-
conditions: (_) => de_BooleanConditionList(_),
|
|
2346
|
-
defaultValue: smithyClient.expectBoolean,
|
|
2347
|
-
});
|
|
2348
|
-
};
|
|
2349
|
-
const de_SearchAllRelatedItemsResponseItem = (output, context) => {
|
|
2350
|
-
return smithyClient.take(output, {
|
|
2351
|
-
associationTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
2352
|
-
caseId: smithyClient.expectString,
|
|
2353
|
-
content: (_) => de_RelatedItemContent(core$1.awsExpectUnion(_)),
|
|
2354
|
-
performedBy: (_) => smithyClient._json(core$1.awsExpectUnion(_)),
|
|
2355
|
-
relatedItemId: smithyClient.expectString,
|
|
2356
|
-
tags: (_) => de_Tags(_),
|
|
2357
|
-
type: smithyClient.expectString,
|
|
2358
|
-
});
|
|
2359
|
-
};
|
|
2360
|
-
const de_SearchAllRelatedItemsResponseItemList = (output, context) => {
|
|
2361
|
-
const retVal = (output || []).map((entry) => {
|
|
2362
|
-
if (entry === null) {
|
|
2363
|
-
return null;
|
|
2364
|
-
}
|
|
2365
|
-
return de_SearchAllRelatedItemsResponseItem(entry);
|
|
2366
|
-
});
|
|
2367
|
-
return retVal;
|
|
2368
|
-
};
|
|
2369
|
-
const de_SearchCasesResponseItem = (output, context) => {
|
|
2370
|
-
return smithyClient.take(output, {
|
|
2371
|
-
caseId: smithyClient.expectString,
|
|
2372
|
-
fields: (_) => de_FieldValueList(_),
|
|
2373
|
-
tags: (_) => de_Tags(_),
|
|
2374
|
-
templateId: smithyClient.expectString,
|
|
2375
|
-
});
|
|
2376
|
-
};
|
|
2377
|
-
const de_SearchCasesResponseItemList = (output, context) => {
|
|
2378
|
-
const retVal = (output || []).map((entry) => {
|
|
2379
|
-
if (entry === null) {
|
|
2380
|
-
return null;
|
|
2381
|
-
}
|
|
2382
|
-
return de_SearchCasesResponseItem(entry);
|
|
2383
|
-
});
|
|
2384
|
-
return retVal;
|
|
2385
|
-
};
|
|
2386
|
-
const de_SearchRelatedItemsResponseItem = (output, context) => {
|
|
2387
|
-
return smithyClient.take(output, {
|
|
2388
|
-
associationTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
2389
|
-
content: (_) => de_RelatedItemContent(core$1.awsExpectUnion(_)),
|
|
2390
|
-
performedBy: (_) => smithyClient._json(core$1.awsExpectUnion(_)),
|
|
2391
|
-
relatedItemId: smithyClient.expectString,
|
|
2392
|
-
tags: (_) => de_Tags(_),
|
|
2393
|
-
type: smithyClient.expectString,
|
|
2394
|
-
});
|
|
2395
|
-
};
|
|
2396
|
-
const de_SearchRelatedItemsResponseItemList = (output, context) => {
|
|
2397
|
-
const retVal = (output || []).map((entry) => {
|
|
2398
|
-
if (entry === null) {
|
|
2399
|
-
return null;
|
|
2400
|
-
}
|
|
2401
|
-
return de_SearchRelatedItemsResponseItem(entry);
|
|
2402
|
-
});
|
|
2403
|
-
return retVal;
|
|
2404
|
-
};
|
|
2405
|
-
const de_SlaConfiguration = (output, context) => {
|
|
2406
|
-
return smithyClient.take(output, {
|
|
2407
|
-
completionTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
2408
|
-
fieldId: smithyClient.expectString,
|
|
2409
|
-
name: smithyClient.expectString,
|
|
2410
|
-
status: smithyClient.expectString,
|
|
2411
|
-
targetFieldValues: (_) => de_SlaFieldValueUnionList(_),
|
|
2412
|
-
targetTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
2413
|
-
type: smithyClient.expectString,
|
|
2414
|
-
});
|
|
2415
|
-
};
|
|
2416
|
-
const de_SlaContent = (output, context) => {
|
|
2417
|
-
return smithyClient.take(output, {
|
|
2418
|
-
slaConfiguration: (_) => de_SlaConfiguration(_),
|
|
2419
|
-
});
|
|
2420
|
-
};
|
|
2421
|
-
const de_SlaFieldValueUnionList = (output, context) => {
|
|
2422
|
-
const retVal = (output || [])
|
|
2423
|
-
.filter((e) => e != null)
|
|
2424
|
-
.map((entry) => {
|
|
2425
|
-
return de_FieldValueUnion(core$1.awsExpectUnion(entry));
|
|
2426
|
-
});
|
|
2427
|
-
return retVal;
|
|
2428
|
-
};
|
|
2429
|
-
const de_Tags = (output, context) => {
|
|
2430
|
-
return Object.entries(output).reduce((acc, [key, value]) => {
|
|
2431
|
-
if (value === null) {
|
|
2432
|
-
acc[key] = null;
|
|
2433
|
-
return acc;
|
|
2434
|
-
}
|
|
2435
|
-
acc[key] = smithyClient.expectString(value);
|
|
2436
|
-
return acc;
|
|
2437
|
-
}, {});
|
|
2438
|
-
};
|
|
2439
|
-
const deserializeMetadata = (output) => ({
|
|
2440
|
-
httpStatusCode: output.statusCode,
|
|
2441
|
-
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
2442
|
-
extendedRequestId: output.headers["x-amz-id-2"],
|
|
2443
|
-
cfId: output.headers["x-amz-cf-id"],
|
|
2444
|
-
});
|
|
273
|
+
const _ADE = "AccessDeniedException";
|
|
274
|
+
const _AE = "AuditEvent";
|
|
275
|
+
const _AEF = "AuditEventField";
|
|
276
|
+
const _AEFL = "AuditEventFieldList";
|
|
277
|
+
const _AEFVU = "AuditEventFieldValueUnion";
|
|
278
|
+
const _AEL = "AuditEventsList";
|
|
279
|
+
const _AEPB = "AuditEventPerformedBy";
|
|
280
|
+
const _BC = "BooleanCondition";
|
|
281
|
+
const _BCL = "BooleanConditionList";
|
|
282
|
+
const _BGCR = "BatchGetCaseRule";
|
|
283
|
+
const _BGCREL = "BatchGetCaseRuleErrorList";
|
|
284
|
+
const _BGCRL = "BatchGetCaseRuleList";
|
|
285
|
+
const _BGCRR = "BatchGetCaseRuleRequest";
|
|
286
|
+
const _BGCRRa = "BatchGetCaseRuleResponse";
|
|
287
|
+
const _BGF = "BatchGetField";
|
|
288
|
+
const _BGFEL = "BatchGetFieldErrorList";
|
|
289
|
+
const _BGFIL = "BatchGetFieldIdentifierList";
|
|
290
|
+
const _BGFL = "BatchGetFieldList";
|
|
291
|
+
const _BGFR = "BatchGetFieldRequest";
|
|
292
|
+
const _BGFRa = "BatchGetFieldResponse";
|
|
293
|
+
const _BL = "BasicLayout";
|
|
294
|
+
const _BO = "BooleanOperands";
|
|
295
|
+
const _BPFO = "BatchPutFieldOptions";
|
|
296
|
+
const _BPFOR = "BatchPutFieldOptionsRequest";
|
|
297
|
+
const _BPFORa = "BatchPutFieldOptionsResponse";
|
|
298
|
+
const _C = "Contact";
|
|
299
|
+
const _CC = "CommentContent";
|
|
300
|
+
const _CCC = "ConnectCaseContent";
|
|
301
|
+
const _CCF = "ConnectCaseFilter";
|
|
302
|
+
const _CCIC = "ConnectCaseInputContent";
|
|
303
|
+
const _CCR = "CreateCaseRequest";
|
|
304
|
+
const _CCRR = "CreateCaseRuleRequest";
|
|
305
|
+
const _CCRRr = "CreateCaseRuleResponse";
|
|
306
|
+
const _CCRr = "CreateCaseResponse";
|
|
307
|
+
const _CCRre = "CreateCaseRule";
|
|
308
|
+
const _CCo = "ContactContent";
|
|
309
|
+
const _CCr = "CreateCase";
|
|
310
|
+
const _CCu = "CustomContent";
|
|
311
|
+
const _CD = "CreateDomain";
|
|
312
|
+
const _CDR = "CreateDomainRequest";
|
|
313
|
+
const _CDRr = "CreateDomainResponse";
|
|
314
|
+
const _CE = "CustomEntity";
|
|
315
|
+
const _CEID = "CaseEventIncludedData";
|
|
316
|
+
const _CEo = "ConflictException";
|
|
317
|
+
const _CF = "CommentFilter";
|
|
318
|
+
const _CFF = "CustomFieldsFilter";
|
|
319
|
+
const _CFFL = "CustomFieldsFilterList";
|
|
320
|
+
const _CFL = "CaseFilterList";
|
|
321
|
+
const _CFR = "CreateFieldRequest";
|
|
322
|
+
const _CFRr = "CreateFieldResponse";
|
|
323
|
+
const _CFa = "CaseFilter";
|
|
324
|
+
const _CFo = "ContactFilter";
|
|
325
|
+
const _CFr = "CreateField";
|
|
326
|
+
const _CFu = "CustomFilter";
|
|
327
|
+
const _CIC = "CustomInputContent";
|
|
328
|
+
const _CL = "CreateLayout";
|
|
329
|
+
const _CLR = "CreateLayoutRequest";
|
|
330
|
+
const _CLRr = "CreateLayoutResponse";
|
|
331
|
+
const _CRD = "CaseRuleDetails";
|
|
332
|
+
const _CRE = "CaseRuleError";
|
|
333
|
+
const _CRI = "CaseRuleIdentifier";
|
|
334
|
+
const _CRIL = "CaseRuleIdentifierList";
|
|
335
|
+
const _CRIR = "CreateRelatedItemRequest";
|
|
336
|
+
const _CRIRr = "CreateRelatedItemResponse";
|
|
337
|
+
const _CRIr = "CreateRelatedItem";
|
|
338
|
+
const _CRS = "CaseRuleSummary";
|
|
339
|
+
const _CRSL = "CaseRuleSummaryList";
|
|
340
|
+
const _CS = "CaseSummary";
|
|
341
|
+
const _CSL = "CaseSummaryList";
|
|
342
|
+
const _CT = "CreateTemplate";
|
|
343
|
+
const _CTR = "CreateTemplateRequest";
|
|
344
|
+
const _CTRr = "CreateTemplateResponse";
|
|
345
|
+
const _DC = "DeleteCase";
|
|
346
|
+
const _DCR = "DeleteCaseRequest";
|
|
347
|
+
const _DCRR = "DeleteCaseRuleRequest";
|
|
348
|
+
const _DCRRe = "DeleteCaseRuleResponse";
|
|
349
|
+
const _DCRe = "DeleteCaseResponse";
|
|
350
|
+
const _DCRel = "DeleteCaseRule";
|
|
351
|
+
const _DD = "DeleteDomain";
|
|
352
|
+
const _DDR = "DeleteDomainRequest";
|
|
353
|
+
const _DDRe = "DeleteDomainResponse";
|
|
354
|
+
const _DF = "DeleteField";
|
|
355
|
+
const _DFR = "DeleteFieldRequest";
|
|
356
|
+
const _DFRe = "DeleteFieldResponse";
|
|
357
|
+
const _DL = "DeleteLayout";
|
|
358
|
+
const _DLR = "DeleteLayoutRequest";
|
|
359
|
+
const _DLRe = "DeleteLayoutResponse";
|
|
360
|
+
const _DRI = "DeleteRelatedItem";
|
|
361
|
+
const _DRIR = "DeleteRelatedItemRequest";
|
|
362
|
+
const _DRIRe = "DeleteRelatedItemResponse";
|
|
363
|
+
const _DS = "DomainSummary";
|
|
364
|
+
const _DSL = "DomainSummaryList";
|
|
365
|
+
const _DT = "DeleteTemplate";
|
|
366
|
+
const _DTR = "DeleteTemplateRequest";
|
|
367
|
+
const _DTRe = "DeleteTemplateResponse";
|
|
368
|
+
const _EBC = "EventBridgeConfiguration";
|
|
369
|
+
const _EFV = "EmptyFieldValue";
|
|
370
|
+
const _EID = "EventIncludedData";
|
|
371
|
+
const _EOV = "EmptyOperandValue";
|
|
372
|
+
const _FC = "FileContent";
|
|
373
|
+
const _FE = "FieldError";
|
|
374
|
+
const _FF = "FileFilter";
|
|
375
|
+
const _FFi = "FieldFilter";
|
|
376
|
+
const _FG = "FieldGroup";
|
|
377
|
+
const _FI = "FieldIdentifier";
|
|
378
|
+
const _FIL = "FieldIdentifierList";
|
|
379
|
+
const _FIi = "FieldItem";
|
|
380
|
+
const _FL = "FieldList";
|
|
381
|
+
const _FO = "FieldOption";
|
|
382
|
+
const _FOCR = "FieldOptionsCaseRule";
|
|
383
|
+
const _FOE = "FieldOptionError";
|
|
384
|
+
const _FOEL = "FieldOptionErrorList";
|
|
385
|
+
const _FOL = "FieldOptionsList";
|
|
386
|
+
const _FS = "FieldSummary";
|
|
387
|
+
const _FSL = "FieldSummaryList";
|
|
388
|
+
const _FV = "FieldValue";
|
|
389
|
+
const _FVL = "FieldValueList";
|
|
390
|
+
const _FVU = "FieldValueUnion";
|
|
391
|
+
const _GC = "GetCase";
|
|
392
|
+
const _GCAE = "GetCaseAuditEvents";
|
|
393
|
+
const _GCAER = "GetCaseAuditEventsRequest";
|
|
394
|
+
const _GCAERe = "GetCaseAuditEventsResponse";
|
|
395
|
+
const _GCEC = "GetCaseEventConfiguration";
|
|
396
|
+
const _GCECR = "GetCaseEventConfigurationRequest";
|
|
397
|
+
const _GCECRe = "GetCaseEventConfigurationResponse";
|
|
398
|
+
const _GCR = "GetCaseRequest";
|
|
399
|
+
const _GCRR = "GetCaseRuleResponse";
|
|
400
|
+
const _GCRe = "GetCaseResponse";
|
|
401
|
+
const _GD = "GetDomain";
|
|
402
|
+
const _GDR = "GetDomainRequest";
|
|
403
|
+
const _GDRe = "GetDomainResponse";
|
|
404
|
+
const _GFR = "GetFieldResponse";
|
|
405
|
+
const _GL = "GetLayout";
|
|
406
|
+
const _GLR = "GetLayoutRequest";
|
|
407
|
+
const _GLRe = "GetLayoutResponse";
|
|
408
|
+
const _GT = "GetTemplate";
|
|
409
|
+
const _GTR = "GetTemplateRequest";
|
|
410
|
+
const _GTRe = "GetTemplateResponse";
|
|
411
|
+
const _HCR = "HiddenCaseRule";
|
|
412
|
+
const _ISE = "InternalServerException";
|
|
413
|
+
const _LC = "LayoutConfiguration";
|
|
414
|
+
const _LCFC = "ListCasesForContact";
|
|
415
|
+
const _LCFCR = "ListCasesForContactRequest";
|
|
416
|
+
const _LCFCRi = "ListCasesForContactResponse";
|
|
417
|
+
const _LCR = "ListCaseRules";
|
|
418
|
+
const _LCRR = "ListCaseRulesRequest";
|
|
419
|
+
const _LCRRi = "ListCaseRulesResponse";
|
|
420
|
+
const _LCa = "LayoutContent";
|
|
421
|
+
const _LD = "ListDomains";
|
|
422
|
+
const _LDR = "ListDomainsRequest";
|
|
423
|
+
const _LDRi = "ListDomainsResponse";
|
|
424
|
+
const _LF = "ListFields";
|
|
425
|
+
const _LFO = "ListFieldOptions";
|
|
426
|
+
const _LFOR = "ListFieldOptionsRequest";
|
|
427
|
+
const _LFORi = "ListFieldOptionsResponse";
|
|
428
|
+
const _LFR = "ListFieldsRequest";
|
|
429
|
+
const _LFRi = "ListFieldsResponse";
|
|
430
|
+
const _LL = "ListLayouts";
|
|
431
|
+
const _LLR = "ListLayoutsRequest";
|
|
432
|
+
const _LLRi = "ListLayoutsResponse";
|
|
433
|
+
const _LS = "LayoutSections";
|
|
434
|
+
const _LSL = "LayoutSummaryList";
|
|
435
|
+
const _LSa = "LayoutSummary";
|
|
436
|
+
const _LT = "ListTemplates";
|
|
437
|
+
const _LTFR = "ListTagsForResource";
|
|
438
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
439
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
440
|
+
const _LTR = "ListTemplatesRequest";
|
|
441
|
+
const _LTRi = "ListTemplatesResponse";
|
|
442
|
+
const _OO = "OperandOne";
|
|
443
|
+
const _OT = "OperandTwo";
|
|
444
|
+
const _PCEC = "PutCaseEventConfiguration";
|
|
445
|
+
const _PCECR = "PutCaseEventConfigurationRequest";
|
|
446
|
+
const _PCECRu = "PutCaseEventConfigurationResponse";
|
|
447
|
+
const _PCFOM = "ParentChildFieldOptionsMapping";
|
|
448
|
+
const _PCFOML = "ParentChildFieldOptionsMappingList";
|
|
449
|
+
const _RA = "Retry-After";
|
|
450
|
+
const _RCR = "RequiredCaseRule";
|
|
451
|
+
const _RF = "RequiredField";
|
|
452
|
+
const _RFL = "RequiredFieldList";
|
|
453
|
+
const _RIC = "RelatedItemContent";
|
|
454
|
+
const _RIEID = "RelatedItemEventIncludedData";
|
|
455
|
+
const _RIFL = "RelatedItemFilterList";
|
|
456
|
+
const _RIIC = "RelatedItemInputContent";
|
|
457
|
+
const _RITF = "RelatedItemTypeFilter";
|
|
458
|
+
const _RNFE = "ResourceNotFoundException";
|
|
459
|
+
const _S = "Sort";
|
|
460
|
+
const _SARI = "SearchAllRelatedItems";
|
|
461
|
+
const _SARIR = "SearchAllRelatedItemsRequest";
|
|
462
|
+
const _SARIRI = "SearchAllRelatedItemsResponseItem";
|
|
463
|
+
const _SARIRIL = "SearchAllRelatedItemsResponseItemList";
|
|
464
|
+
const _SARIRe = "SearchAllRelatedItemsResponse";
|
|
465
|
+
const _SARIS = "SearchAllRelatedItemsSort";
|
|
466
|
+
const _SARISL = "SearchAllRelatedItemsSortList";
|
|
467
|
+
const _SC = "SlaConfiguration";
|
|
468
|
+
const _SCR = "SearchCasesRequest";
|
|
469
|
+
const _SCRI = "SearchCasesResponseItem";
|
|
470
|
+
const _SCRIL = "SearchCasesResponseItemList";
|
|
471
|
+
const _SCRe = "SearchCasesResponse";
|
|
472
|
+
const _SCe = "SearchCases";
|
|
473
|
+
const _SCl = "SlaContent";
|
|
474
|
+
const _SF = "SlaFilter";
|
|
475
|
+
const _SFVUL = "SlaFieldValueUnionList";
|
|
476
|
+
const _SIC = "SlaInputConfiguration";
|
|
477
|
+
const _SICl = "SlaInputContent";
|
|
478
|
+
const _SL = "SectionsList";
|
|
479
|
+
const _SLo = "SortList";
|
|
480
|
+
const _SN = "SlaName";
|
|
481
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
482
|
+
const _SRI = "SearchRelatedItems";
|
|
483
|
+
const _SRIR = "SearchRelatedItemsRequest";
|
|
484
|
+
const _SRIRI = "SearchRelatedItemsResponseItem";
|
|
485
|
+
const _SRIRIL = "SearchRelatedItemsResponseItemList";
|
|
486
|
+
const _SRIRe = "SearchRelatedItemsResponse";
|
|
487
|
+
const _Se = "Section";
|
|
488
|
+
const _T = "Tags";
|
|
489
|
+
const _TCRL = "TemplateCaseRuleList";
|
|
490
|
+
const _TE = "ThrottlingException";
|
|
491
|
+
const _TR = "TemplateRule";
|
|
492
|
+
const _TRR = "TagResourceRequest";
|
|
493
|
+
const _TRa = "TagResource";
|
|
494
|
+
const _TS = "TemplateSummary";
|
|
495
|
+
const _TSL = "TemplateSummaryList";
|
|
496
|
+
const _UC = "UpdateCase";
|
|
497
|
+
const _UCR = "UpdateCaseRequest";
|
|
498
|
+
const _UCRR = "UpdateCaseRuleRequest";
|
|
499
|
+
const _UCRRp = "UpdateCaseRuleResponse";
|
|
500
|
+
const _UCRp = "UpdateCaseResponse";
|
|
501
|
+
const _UCRpd = "UpdateCaseRule";
|
|
502
|
+
const _UF = "UpdateField";
|
|
503
|
+
const _UFR = "UpdateFieldRequest";
|
|
504
|
+
const _UFRp = "UpdateFieldResponse";
|
|
505
|
+
const _UL = "UpdateLayout";
|
|
506
|
+
const _ULR = "UpdateLayoutRequest";
|
|
507
|
+
const _ULRp = "UpdateLayoutResponse";
|
|
508
|
+
const _UR = "UntagResource";
|
|
509
|
+
const _URR = "UntagResourceRequest";
|
|
510
|
+
const _UT = "UpdateTemplate";
|
|
511
|
+
const _UTR = "UpdateTemplateRequest";
|
|
512
|
+
const _UTRp = "UpdateTemplateResponse";
|
|
513
|
+
const _UU = "UserUnion";
|
|
514
|
+
const _VE = "ValidationException";
|
|
515
|
+
const _a = "active";
|
|
516
|
+
const _aA = "andAll";
|
|
517
|
+
const _aE = "auditEvents";
|
|
518
|
+
const _aT = "associationTime";
|
|
519
|
+
const _ar = "arn";
|
|
520
|
+
const _b = "body";
|
|
521
|
+
const _bV = "booleanValue";
|
|
522
|
+
const _ba = "basic";
|
|
523
|
+
const _c = "client";
|
|
524
|
+
const _cA = "contactArn";
|
|
525
|
+
const _cAa = "caseArn";
|
|
526
|
+
const _cC = "connectCase";
|
|
527
|
+
const _cD = "caseData";
|
|
528
|
+
const _cE = "customEntity";
|
|
529
|
+
const _cFI = "childFieldId";
|
|
530
|
+
const _cFOV = "childFieldOptionValues";
|
|
531
|
+
const _cI = "caseId";
|
|
532
|
+
const _cR = "caseRules";
|
|
533
|
+
const _cRA = "caseRuleArn";
|
|
534
|
+
const _cRI = "caseRuleId";
|
|
535
|
+
const _cT = "contentType";
|
|
536
|
+
const _cTST = "connectedToSystemTime";
|
|
537
|
+
const _cTl = "clientToken";
|
|
538
|
+
const _cTo = "completionTime";
|
|
539
|
+
const _cTr = "createdTime";
|
|
540
|
+
const _ca = "cases";
|
|
541
|
+
const _ch = "channel";
|
|
542
|
+
const _co = "content";
|
|
543
|
+
const _com = "comment";
|
|
544
|
+
const _con = "conditions";
|
|
545
|
+
const _cont = "contains";
|
|
546
|
+
const _conta = "contact";
|
|
547
|
+
const _cu = "custom";
|
|
548
|
+
const _d = "description";
|
|
549
|
+
const _dA = "domainArn";
|
|
550
|
+
const _dI = "domainId";
|
|
551
|
+
const _dL = "defaultLayout";
|
|
552
|
+
const _dS = "domainStatus";
|
|
553
|
+
const _dV = "defaultValue";
|
|
554
|
+
const _dVo = "doubleValue";
|
|
555
|
+
const _de = "deleted";
|
|
556
|
+
const _do = "domains";
|
|
557
|
+
const _e = "error";
|
|
558
|
+
const _eB = "eventBridge";
|
|
559
|
+
const _eC = "errorCode";
|
|
560
|
+
const _eFI = "eventFieldId";
|
|
561
|
+
const _eI = "eventId";
|
|
562
|
+
const _eT = "equalTo";
|
|
563
|
+
const _eV = "emptyValue";
|
|
564
|
+
const _en = "enabled";
|
|
565
|
+
const _er = "errors";
|
|
566
|
+
const _f = "fields";
|
|
567
|
+
const _fA = "fieldArn";
|
|
568
|
+
const _fAi = "fileArn";
|
|
569
|
+
const _fG = "fieldGroup";
|
|
570
|
+
const _fI = "fieldId";
|
|
571
|
+
const _fO = "fieldOptions";
|
|
572
|
+
const _fi = "filters";
|
|
573
|
+
const _fie = "field";
|
|
574
|
+
const _fil = "filter";
|
|
575
|
+
const _file = "file";
|
|
576
|
+
const _gT = "greaterThan";
|
|
577
|
+
const _gTOET = "greaterThanOrEqualTo";
|
|
578
|
+
const _h = "hidden";
|
|
579
|
+
const _hE = "httpError";
|
|
580
|
+
const _hH = "httpHeader";
|
|
581
|
+
const _hQ = "httpQuery";
|
|
582
|
+
const _ht = "http";
|
|
583
|
+
const _i = "id";
|
|
584
|
+
const _iC = "includeContent";
|
|
585
|
+
const _iD = "includedData";
|
|
586
|
+
const _iPA = "iamPrincipalArn";
|
|
587
|
+
const _l = "layouts";
|
|
588
|
+
const _lA = "layoutArn";
|
|
589
|
+
const _lC = "layoutConfiguration";
|
|
590
|
+
const _lI = "layoutId";
|
|
591
|
+
const _lMT = "lastModifiedTime";
|
|
592
|
+
const _lT = "lessThan";
|
|
593
|
+
const _lTOET = "lessThanOrEqualTo";
|
|
594
|
+
const _m = "message";
|
|
595
|
+
const _mI = "moreInfo";
|
|
2445
596
|
const _mR = "maxResults";
|
|
597
|
+
const _n = "name";
|
|
598
|
+
const _nET = "notEqualTo";
|
|
2446
599
|
const _nT = "nextToken";
|
|
600
|
+
const _nV = "newValue";
|
|
601
|
+
const _na = "namespace";
|
|
602
|
+
const _no = "not";
|
|
603
|
+
const _o = "options";
|
|
604
|
+
const _oA = "orAll";
|
|
605
|
+
const _oO = "operandOne";
|
|
606
|
+
const _oT = "operandTwo";
|
|
607
|
+
const _oV = "oldValue";
|
|
608
|
+
const _pB = "performedBy";
|
|
609
|
+
const _pCFOM = "parentChildFieldOptionsMappings";
|
|
610
|
+
const _pFI = "parentFieldId";
|
|
611
|
+
const _pFOV = "parentFieldOptionValue";
|
|
612
|
+
const _pT = "performedTime";
|
|
613
|
+
const _r = "result";
|
|
2447
614
|
const _rAS = "retryAfterSeconds";
|
|
2448
|
-
const
|
|
615
|
+
const _rF = "requiredFields";
|
|
616
|
+
const _rI = "resourceId";
|
|
617
|
+
const _rIA = "relatedItemArn";
|
|
618
|
+
const _rID = "relatedItemData";
|
|
619
|
+
const _rII = "relatedItemId";
|
|
620
|
+
const _rIT = "relatedItemType";
|
|
621
|
+
const _rIe = "relatedItems";
|
|
622
|
+
const _rT = "ruleType";
|
|
623
|
+
const _rTe = "resourceType";
|
|
624
|
+
const _re = "required";
|
|
625
|
+
const _ru = "rule";
|
|
626
|
+
const _rul = "rules";
|
|
2449
627
|
const _s = "status";
|
|
628
|
+
const _sC = "slaConfiguration";
|
|
629
|
+
const _sIC = "slaInputConfiguration";
|
|
630
|
+
const _sO = "sortOrder";
|
|
631
|
+
const _sP = "sortProperty";
|
|
632
|
+
const _sT = "searchTerm";
|
|
633
|
+
const _sV = "stringValue";
|
|
634
|
+
const _se = "server";
|
|
635
|
+
const _sec = "sections";
|
|
636
|
+
const _sl = "sla";
|
|
637
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.connectcases";
|
|
638
|
+
const _so = "sorts";
|
|
639
|
+
const _sp = "sparse";
|
|
640
|
+
const _t = "type";
|
|
641
|
+
const _tA = "templateArn";
|
|
642
|
+
const _tFV = "targetFieldValues";
|
|
643
|
+
const _tI = "templateId";
|
|
2450
644
|
const _tK = "tagKeys";
|
|
2451
|
-
const
|
|
645
|
+
const _tP = "topPanel";
|
|
646
|
+
const _tSM = "targetSlaMinutes";
|
|
647
|
+
const _tT = "targetTime";
|
|
648
|
+
const _ta = "tags";
|
|
649
|
+
const _te = "templates";
|
|
650
|
+
const _u = "user";
|
|
651
|
+
const _uA = "userArn";
|
|
652
|
+
const _uAV = "userArnValue";
|
|
653
|
+
const _uCR = "unprocessedCaseRules";
|
|
654
|
+
const _v = "value";
|
|
655
|
+
const _va = "values";
|
|
656
|
+
const n0 = "com.amazonaws.connectcases";
|
|
657
|
+
var CustomEntity = [0, n0, _CE, 8, 0];
|
|
658
|
+
var SlaName = [0, n0, _SN, 8, 0];
|
|
659
|
+
var AccessDeniedException = [
|
|
660
|
+
-3,
|
|
661
|
+
n0,
|
|
662
|
+
_ADE,
|
|
663
|
+
{
|
|
664
|
+
[_e]: _c,
|
|
665
|
+
[_hE]: 403,
|
|
666
|
+
},
|
|
667
|
+
[_m],
|
|
668
|
+
[0],
|
|
669
|
+
];
|
|
670
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
|
|
671
|
+
var AuditEvent = [
|
|
672
|
+
3,
|
|
673
|
+
n0,
|
|
674
|
+
_AE,
|
|
675
|
+
0,
|
|
676
|
+
[_eI, _t, _rIT, _pT, _f, _pB],
|
|
677
|
+
[0, 0, 0, 5, [() => AuditEventFieldList, 0], [() => AuditEventPerformedBy, 0]],
|
|
678
|
+
];
|
|
679
|
+
var AuditEventField = [
|
|
680
|
+
3,
|
|
681
|
+
n0,
|
|
682
|
+
_AEF,
|
|
683
|
+
0,
|
|
684
|
+
[_eFI, _oV, _nV],
|
|
685
|
+
[0, () => AuditEventFieldValueUnion, () => AuditEventFieldValueUnion],
|
|
686
|
+
];
|
|
687
|
+
var AuditEventPerformedBy = [3, n0, _AEPB, 0, [_u, _iPA], [[() => UserUnion, 0], 0]];
|
|
688
|
+
var BasicLayout = [
|
|
689
|
+
3,
|
|
690
|
+
n0,
|
|
691
|
+
_BL,
|
|
692
|
+
0,
|
|
693
|
+
[_tP, _mI],
|
|
694
|
+
[() => LayoutSections, () => LayoutSections],
|
|
695
|
+
];
|
|
696
|
+
var BatchGetCaseRuleRequest = [
|
|
697
|
+
3,
|
|
698
|
+
n0,
|
|
699
|
+
_BGCRR,
|
|
700
|
+
0,
|
|
701
|
+
[_dI, _cR],
|
|
702
|
+
[[0, 1], () => CaseRuleIdentifierList],
|
|
703
|
+
];
|
|
704
|
+
var BatchGetCaseRuleResponse = [
|
|
705
|
+
3,
|
|
706
|
+
n0,
|
|
707
|
+
_BGCRRa,
|
|
708
|
+
0,
|
|
709
|
+
[_cR, _er, _uCR],
|
|
710
|
+
[[() => BatchGetCaseRuleList, 0], () => BatchGetCaseRuleErrorList, 64 | 0],
|
|
711
|
+
];
|
|
712
|
+
var BatchGetFieldRequest = [
|
|
713
|
+
3,
|
|
714
|
+
n0,
|
|
715
|
+
_BGFR,
|
|
716
|
+
0,
|
|
717
|
+
[_dI, _f],
|
|
718
|
+
[[0, 1], () => BatchGetFieldIdentifierList],
|
|
719
|
+
];
|
|
720
|
+
var BatchGetFieldResponse = [
|
|
721
|
+
3,
|
|
722
|
+
n0,
|
|
723
|
+
_BGFRa,
|
|
724
|
+
0,
|
|
725
|
+
[_f, _er],
|
|
726
|
+
[[() => BatchGetFieldList, 0], () => BatchGetFieldErrorList],
|
|
727
|
+
];
|
|
728
|
+
var BatchPutFieldOptionsRequest = [
|
|
729
|
+
3,
|
|
730
|
+
n0,
|
|
731
|
+
_BPFOR,
|
|
732
|
+
0,
|
|
733
|
+
[_dI, _fI, _o],
|
|
734
|
+
[[0, 1], [0, 1], () => FieldOptionsList],
|
|
735
|
+
];
|
|
736
|
+
var BatchPutFieldOptionsResponse = [
|
|
737
|
+
3,
|
|
738
|
+
n0,
|
|
739
|
+
_BPFORa,
|
|
740
|
+
0,
|
|
741
|
+
[_er],
|
|
742
|
+
[() => FieldOptionErrorList],
|
|
743
|
+
];
|
|
744
|
+
var BooleanOperands = [
|
|
745
|
+
3,
|
|
746
|
+
n0,
|
|
747
|
+
_BO,
|
|
748
|
+
0,
|
|
749
|
+
[_oO, _oT, _r],
|
|
750
|
+
[() => OperandOne, () => OperandTwo, 2],
|
|
751
|
+
];
|
|
752
|
+
var CaseEventIncludedData = [3, n0, _CEID, 0, [_f], [() => FieldIdentifierList]];
|
|
753
|
+
var CaseRuleError = [3, n0, _CRE, 0, [_i, _eC, _m], [0, 0, 0]];
|
|
754
|
+
var CaseRuleIdentifier = [3, n0, _CRI, 0, [_i], [0]];
|
|
755
|
+
var CaseRuleSummary = [3, n0, _CRS, 0, [_cRI, _n, _cRA, _rT, _d], [0, 0, 0, 0, 0]];
|
|
756
|
+
var CaseSummary = [3, n0, _CS, 0, [_cI, _tI], [0, 0]];
|
|
757
|
+
var CommentContent = [3, n0, _CC, 0, [_b, _cT], [0, 0]];
|
|
758
|
+
var CommentFilter = [3, n0, _CF, 0, [], []];
|
|
759
|
+
var ConflictException = [
|
|
760
|
+
-3,
|
|
761
|
+
n0,
|
|
762
|
+
_CEo,
|
|
763
|
+
{
|
|
764
|
+
[_e]: _c,
|
|
765
|
+
[_hE]: 409,
|
|
766
|
+
},
|
|
767
|
+
[_m],
|
|
768
|
+
[0],
|
|
769
|
+
];
|
|
770
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
|
|
771
|
+
var ConnectCaseContent = [3, n0, _CCC, 0, [_cI], [0]];
|
|
772
|
+
var ConnectCaseFilter = [3, n0, _CCF, 0, [_cI], [0]];
|
|
773
|
+
var ConnectCaseInputContent = [3, n0, _CCIC, 0, [_cI], [0]];
|
|
774
|
+
var Contact = [3, n0, _C, 0, [_cA], [0]];
|
|
775
|
+
var ContactContent = [3, n0, _CCo, 0, [_cA, _ch, _cTST], [0, 0, 5]];
|
|
776
|
+
var ContactFilter = [3, n0, _CFo, 0, [_ch, _cA], [64 | 0, 0]];
|
|
777
|
+
var CreateCaseRequest = [
|
|
778
|
+
3,
|
|
779
|
+
n0,
|
|
780
|
+
_CCR,
|
|
781
|
+
0,
|
|
782
|
+
[_dI, _tI, _f, _cTl, _pB],
|
|
783
|
+
[[0, 1], 0, () => FieldValueList, [0, 4], [() => UserUnion, 0]],
|
|
784
|
+
];
|
|
785
|
+
var CreateCaseResponse = [3, n0, _CCRr, 0, [_cI, _cAa], [0, 0]];
|
|
786
|
+
var CreateCaseRuleRequest = [
|
|
787
|
+
3,
|
|
788
|
+
n0,
|
|
789
|
+
_CCRR,
|
|
790
|
+
0,
|
|
791
|
+
[_dI, _n, _d, _ru],
|
|
792
|
+
[[0, 1], 0, 0, () => CaseRuleDetails],
|
|
793
|
+
];
|
|
794
|
+
var CreateCaseRuleResponse = [3, n0, _CCRRr, 0, [_cRI, _cRA], [0, 0]];
|
|
795
|
+
var CreateDomainRequest = [3, n0, _CDR, 0, [_n], [0]];
|
|
796
|
+
var CreateDomainResponse = [3, n0, _CDRr, 0, [_dI, _dA, _dS], [0, 0, 0]];
|
|
797
|
+
var CreateFieldRequest = [3, n0, _CFR, 0, [_dI, _n, _t, _d], [[0, 1], 0, 0, 0]];
|
|
798
|
+
var CreateFieldResponse = [3, n0, _CFRr, 0, [_fI, _fA], [0, 0]];
|
|
799
|
+
var CreateLayoutRequest = [
|
|
800
|
+
3,
|
|
801
|
+
n0,
|
|
802
|
+
_CLR,
|
|
803
|
+
0,
|
|
804
|
+
[_dI, _n, _co],
|
|
805
|
+
[[0, 1], 0, () => LayoutContent],
|
|
806
|
+
];
|
|
807
|
+
var CreateLayoutResponse = [3, n0, _CLRr, 0, [_lI, _lA], [0, 0]];
|
|
808
|
+
var CreateRelatedItemRequest = [
|
|
809
|
+
3,
|
|
810
|
+
n0,
|
|
811
|
+
_CRIR,
|
|
812
|
+
0,
|
|
813
|
+
[_dI, _cI, _t, _co, _pB],
|
|
814
|
+
[[0, 1], [0, 1], 0, [() => RelatedItemInputContent, 0], [() => UserUnion, 0]],
|
|
815
|
+
];
|
|
816
|
+
var CreateRelatedItemResponse = [3, n0, _CRIRr, 0, [_rII, _rIA], [0, 0]];
|
|
817
|
+
var CreateTemplateRequest = [
|
|
818
|
+
3,
|
|
819
|
+
n0,
|
|
820
|
+
_CTR,
|
|
821
|
+
0,
|
|
822
|
+
[_dI, _n, _d, _lC, _rF, _s, _rul],
|
|
823
|
+
[[0, 1], 0, 0, () => LayoutConfiguration, () => RequiredFieldList, 0, () => TemplateCaseRuleList],
|
|
824
|
+
];
|
|
825
|
+
var CreateTemplateResponse = [3, n0, _CTRr, 0, [_tI, _tA], [0, 0]];
|
|
826
|
+
var CustomContent = [3, n0, _CCu, 0, [_f], [() => FieldValueList]];
|
|
827
|
+
var CustomFilter = [3, n0, _CFu, 0, [_f], [() => CustomFieldsFilter]];
|
|
828
|
+
var CustomInputContent = [3, n0, _CIC, 0, [_f], [() => FieldValueList]];
|
|
829
|
+
var DeleteCaseRequest = [
|
|
830
|
+
3,
|
|
831
|
+
n0,
|
|
832
|
+
_DCR,
|
|
833
|
+
0,
|
|
834
|
+
[_dI, _cI],
|
|
835
|
+
[
|
|
836
|
+
[0, 1],
|
|
837
|
+
[0, 1],
|
|
838
|
+
],
|
|
839
|
+
];
|
|
840
|
+
var DeleteCaseResponse = [3, n0, _DCRe, 0, [], []];
|
|
841
|
+
var DeleteCaseRuleRequest = [
|
|
842
|
+
3,
|
|
843
|
+
n0,
|
|
844
|
+
_DCRR,
|
|
845
|
+
0,
|
|
846
|
+
[_dI, _cRI],
|
|
847
|
+
[
|
|
848
|
+
[0, 1],
|
|
849
|
+
[0, 1],
|
|
850
|
+
],
|
|
851
|
+
];
|
|
852
|
+
var DeleteCaseRuleResponse = [3, n0, _DCRRe, 0, [], []];
|
|
853
|
+
var DeleteDomainRequest = [3, n0, _DDR, 0, [_dI], [[0, 1]]];
|
|
854
|
+
var DeleteDomainResponse = [3, n0, _DDRe, 0, [], []];
|
|
855
|
+
var DeleteFieldRequest = [
|
|
856
|
+
3,
|
|
857
|
+
n0,
|
|
858
|
+
_DFR,
|
|
859
|
+
0,
|
|
860
|
+
[_dI, _fI],
|
|
861
|
+
[
|
|
862
|
+
[0, 1],
|
|
863
|
+
[0, 1],
|
|
864
|
+
],
|
|
865
|
+
];
|
|
866
|
+
var DeleteFieldResponse = [3, n0, _DFRe, 0, [], []];
|
|
867
|
+
var DeleteLayoutRequest = [
|
|
868
|
+
3,
|
|
869
|
+
n0,
|
|
870
|
+
_DLR,
|
|
871
|
+
0,
|
|
872
|
+
[_dI, _lI],
|
|
873
|
+
[
|
|
874
|
+
[0, 1],
|
|
875
|
+
[0, 1],
|
|
876
|
+
],
|
|
877
|
+
];
|
|
878
|
+
var DeleteLayoutResponse = [3, n0, _DLRe, 0, [], []];
|
|
879
|
+
var DeleteRelatedItemRequest = [
|
|
880
|
+
3,
|
|
881
|
+
n0,
|
|
882
|
+
_DRIR,
|
|
883
|
+
0,
|
|
884
|
+
[_dI, _cI, _rII],
|
|
885
|
+
[
|
|
886
|
+
[0, 1],
|
|
887
|
+
[0, 1],
|
|
888
|
+
[0, 1],
|
|
889
|
+
],
|
|
890
|
+
];
|
|
891
|
+
var DeleteRelatedItemResponse = [3, n0, _DRIRe, 0, [], []];
|
|
892
|
+
var DeleteTemplateRequest = [
|
|
893
|
+
3,
|
|
894
|
+
n0,
|
|
895
|
+
_DTR,
|
|
896
|
+
0,
|
|
897
|
+
[_dI, _tI],
|
|
898
|
+
[
|
|
899
|
+
[0, 1],
|
|
900
|
+
[0, 1],
|
|
901
|
+
],
|
|
902
|
+
];
|
|
903
|
+
var DeleteTemplateResponse = [3, n0, _DTRe, 0, [], []];
|
|
904
|
+
var DomainSummary = [3, n0, _DS, 0, [_dI, _dA, _n], [0, 0, 0]];
|
|
905
|
+
var EmptyFieldValue = [3, n0, _EFV, 0, [], []];
|
|
906
|
+
var EmptyOperandValue = [3, n0, _EOV, 0, [], []];
|
|
907
|
+
var EventBridgeConfiguration = [3, n0, _EBC, 0, [_en, _iD], [2, () => EventIncludedData]];
|
|
908
|
+
var EventIncludedData = [
|
|
909
|
+
3,
|
|
910
|
+
n0,
|
|
911
|
+
_EID,
|
|
912
|
+
0,
|
|
913
|
+
[_cD, _rID],
|
|
914
|
+
[() => CaseEventIncludedData, () => RelatedItemEventIncludedData],
|
|
915
|
+
];
|
|
916
|
+
var FieldError = [3, n0, _FE, 0, [_i, _eC, _m], [0, 0, 0]];
|
|
917
|
+
var FieldGroup = [3, n0, _FG, 0, [_n, _f], [0, () => FieldList]];
|
|
918
|
+
var FieldIdentifier = [3, n0, _FI, 0, [_i], [0]];
|
|
919
|
+
var FieldItem = [3, n0, _FIi, 0, [_i], [0]];
|
|
920
|
+
var FieldOption = [3, n0, _FO, 0, [_n, _v, _a], [0, 0, 2]];
|
|
921
|
+
var FieldOptionError = [3, n0, _FOE, 0, [_m, _eC, _v], [0, 0, 0]];
|
|
922
|
+
var FieldOptionsCaseRule = [
|
|
923
|
+
3,
|
|
924
|
+
n0,
|
|
925
|
+
_FOCR,
|
|
926
|
+
0,
|
|
927
|
+
[_pFI, _cFI, _pCFOM],
|
|
928
|
+
[0, 0, () => ParentChildFieldOptionsMappingList],
|
|
929
|
+
];
|
|
930
|
+
var FieldSummary = [3, n0, _FS, 0, [_fI, _fA, _n, _t, _na], [0, 0, 0, 0, 0]];
|
|
931
|
+
var FieldValue = [3, n0, _FV, 0, [_i, _v], [0, () => FieldValueUnion]];
|
|
932
|
+
var FileContent = [3, n0, _FC, 0, [_fAi], [0]];
|
|
933
|
+
var FileFilter = [3, n0, _FF, 0, [_fAi], [0]];
|
|
934
|
+
var GetCaseAuditEventsRequest = [
|
|
935
|
+
3,
|
|
936
|
+
n0,
|
|
937
|
+
_GCAER,
|
|
938
|
+
0,
|
|
939
|
+
[_cI, _dI, _mR, _nT],
|
|
940
|
+
[[0, 1], [0, 1], 1, 0],
|
|
941
|
+
];
|
|
942
|
+
var GetCaseAuditEventsResponse = [
|
|
943
|
+
3,
|
|
944
|
+
n0,
|
|
945
|
+
_GCAERe,
|
|
946
|
+
0,
|
|
947
|
+
[_nT, _aE],
|
|
948
|
+
[0, [() => AuditEventsList, 0]],
|
|
949
|
+
];
|
|
950
|
+
var GetCaseEventConfigurationRequest = [3, n0, _GCECR, 0, [_dI], [[0, 1]]];
|
|
951
|
+
var GetCaseEventConfigurationResponse = [
|
|
952
|
+
3,
|
|
953
|
+
n0,
|
|
954
|
+
_GCECRe,
|
|
955
|
+
0,
|
|
956
|
+
[_eB],
|
|
957
|
+
[() => EventBridgeConfiguration],
|
|
958
|
+
];
|
|
959
|
+
var GetCaseRequest = [
|
|
960
|
+
3,
|
|
961
|
+
n0,
|
|
962
|
+
_GCR,
|
|
963
|
+
0,
|
|
964
|
+
[_cI, _dI, _f, _nT],
|
|
965
|
+
[[0, 1], [0, 1], () => FieldIdentifierList, 0],
|
|
966
|
+
];
|
|
967
|
+
var GetCaseResponse = [
|
|
968
|
+
3,
|
|
969
|
+
n0,
|
|
970
|
+
_GCRe,
|
|
971
|
+
0,
|
|
972
|
+
[_f, _tI, _nT, _ta],
|
|
973
|
+
[() => FieldValueList, 0, 0, [() => Tags, 0]],
|
|
974
|
+
];
|
|
975
|
+
var GetCaseRuleResponse = [
|
|
976
|
+
3,
|
|
977
|
+
n0,
|
|
978
|
+
_GCRR,
|
|
979
|
+
0,
|
|
980
|
+
[_cRI, _n, _cRA, _ru, _d, _de, _cTr, _lMT, _ta],
|
|
981
|
+
[0, 0, 0, () => CaseRuleDetails, 0, 2, 5, 5, [() => Tags, 0]],
|
|
982
|
+
];
|
|
983
|
+
var GetDomainRequest = [3, n0, _GDR, 0, [_dI], [[0, 1]]];
|
|
984
|
+
var GetDomainResponse = [
|
|
985
|
+
3,
|
|
986
|
+
n0,
|
|
987
|
+
_GDRe,
|
|
988
|
+
0,
|
|
989
|
+
[_dI, _dA, _n, _cTr, _dS, _ta],
|
|
990
|
+
[0, 0, 0, 5, 0, [() => Tags, 0]],
|
|
991
|
+
];
|
|
992
|
+
var GetFieldResponse = [
|
|
993
|
+
3,
|
|
994
|
+
n0,
|
|
995
|
+
_GFR,
|
|
996
|
+
0,
|
|
997
|
+
[_fI, _n, _fA, _d, _t, _na, _ta, _de, _cTr, _lMT],
|
|
998
|
+
[0, 0, 0, 0, 0, 0, [() => Tags, 0], 2, 5, 5],
|
|
999
|
+
];
|
|
1000
|
+
var GetLayoutRequest = [
|
|
1001
|
+
3,
|
|
1002
|
+
n0,
|
|
1003
|
+
_GLR,
|
|
1004
|
+
0,
|
|
1005
|
+
[_dI, _lI],
|
|
1006
|
+
[
|
|
1007
|
+
[0, 1],
|
|
1008
|
+
[0, 1],
|
|
1009
|
+
],
|
|
1010
|
+
];
|
|
1011
|
+
var GetLayoutResponse = [
|
|
1012
|
+
3,
|
|
1013
|
+
n0,
|
|
1014
|
+
_GLRe,
|
|
1015
|
+
0,
|
|
1016
|
+
[_lI, _lA, _n, _co, _ta, _de, _cTr, _lMT],
|
|
1017
|
+
[0, 0, 0, () => LayoutContent, [() => Tags, 0], 2, 5, 5],
|
|
1018
|
+
];
|
|
1019
|
+
var GetTemplateRequest = [
|
|
1020
|
+
3,
|
|
1021
|
+
n0,
|
|
1022
|
+
_GTR,
|
|
1023
|
+
0,
|
|
1024
|
+
[_dI, _tI],
|
|
1025
|
+
[
|
|
1026
|
+
[0, 1],
|
|
1027
|
+
[0, 1],
|
|
1028
|
+
],
|
|
1029
|
+
];
|
|
1030
|
+
var GetTemplateResponse = [
|
|
1031
|
+
3,
|
|
1032
|
+
n0,
|
|
1033
|
+
_GTRe,
|
|
1034
|
+
0,
|
|
1035
|
+
[_tI, _tA, _n, _d, _lC, _rF, _ta, _s, _de, _cTr, _lMT, _rul],
|
|
1036
|
+
[
|
|
1037
|
+
0,
|
|
1038
|
+
0,
|
|
1039
|
+
0,
|
|
1040
|
+
0,
|
|
1041
|
+
() => LayoutConfiguration,
|
|
1042
|
+
() => RequiredFieldList,
|
|
1043
|
+
[() => Tags, 0],
|
|
1044
|
+
0,
|
|
1045
|
+
2,
|
|
1046
|
+
5,
|
|
1047
|
+
5,
|
|
1048
|
+
() => TemplateCaseRuleList,
|
|
1049
|
+
],
|
|
1050
|
+
];
|
|
1051
|
+
var HiddenCaseRule = [3, n0, _HCR, 0, [_dV, _con], [2, () => BooleanConditionList]];
|
|
1052
|
+
var InternalServerException = [
|
|
1053
|
+
-3,
|
|
1054
|
+
n0,
|
|
1055
|
+
_ISE,
|
|
1056
|
+
{
|
|
1057
|
+
[_e]: _se,
|
|
1058
|
+
[_hE]: 500,
|
|
1059
|
+
},
|
|
1060
|
+
[_m, _rAS],
|
|
1061
|
+
[
|
|
1062
|
+
0,
|
|
1063
|
+
[
|
|
1064
|
+
1,
|
|
1065
|
+
{
|
|
1066
|
+
[_hH]: _RA,
|
|
1067
|
+
},
|
|
1068
|
+
],
|
|
1069
|
+
],
|
|
1070
|
+
];
|
|
1071
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
|
|
1072
|
+
var LayoutConfiguration = [3, n0, _LC, 0, [_dL], [0]];
|
|
1073
|
+
var LayoutSections = [3, n0, _LS, 0, [_sec], [() => SectionsList]];
|
|
1074
|
+
var LayoutSummary = [3, n0, _LSa, 0, [_lI, _lA, _n], [0, 0, 0]];
|
|
1075
|
+
var ListCaseRulesRequest = [
|
|
1076
|
+
3,
|
|
1077
|
+
n0,
|
|
1078
|
+
_LCRR,
|
|
1079
|
+
0,
|
|
1080
|
+
[_dI, _mR, _nT],
|
|
1081
|
+
[
|
|
1082
|
+
[0, 1],
|
|
1083
|
+
[
|
|
1084
|
+
1,
|
|
1085
|
+
{
|
|
1086
|
+
[_hQ]: _mR,
|
|
1087
|
+
},
|
|
1088
|
+
],
|
|
1089
|
+
[
|
|
1090
|
+
0,
|
|
1091
|
+
{
|
|
1092
|
+
[_hQ]: _nT,
|
|
1093
|
+
},
|
|
1094
|
+
],
|
|
1095
|
+
],
|
|
1096
|
+
];
|
|
1097
|
+
var ListCaseRulesResponse = [
|
|
1098
|
+
3,
|
|
1099
|
+
n0,
|
|
1100
|
+
_LCRRi,
|
|
1101
|
+
0,
|
|
1102
|
+
[_cR, _nT],
|
|
1103
|
+
[() => CaseRuleSummaryList, 0],
|
|
1104
|
+
];
|
|
1105
|
+
var ListCasesForContactRequest = [
|
|
1106
|
+
3,
|
|
1107
|
+
n0,
|
|
1108
|
+
_LCFCR,
|
|
1109
|
+
0,
|
|
1110
|
+
[_dI, _cA, _mR, _nT],
|
|
1111
|
+
[[0, 1], 0, 1, 0],
|
|
1112
|
+
];
|
|
1113
|
+
var ListCasesForContactResponse = [
|
|
1114
|
+
3,
|
|
1115
|
+
n0,
|
|
1116
|
+
_LCFCRi,
|
|
1117
|
+
0,
|
|
1118
|
+
[_ca, _nT],
|
|
1119
|
+
[() => CaseSummaryList, 0],
|
|
1120
|
+
];
|
|
1121
|
+
var ListDomainsRequest = [
|
|
1122
|
+
3,
|
|
1123
|
+
n0,
|
|
1124
|
+
_LDR,
|
|
1125
|
+
0,
|
|
1126
|
+
[_mR, _nT],
|
|
1127
|
+
[
|
|
1128
|
+
[
|
|
1129
|
+
1,
|
|
1130
|
+
{
|
|
1131
|
+
[_hQ]: _mR,
|
|
1132
|
+
},
|
|
1133
|
+
],
|
|
1134
|
+
[
|
|
1135
|
+
0,
|
|
1136
|
+
{
|
|
1137
|
+
[_hQ]: _nT,
|
|
1138
|
+
},
|
|
1139
|
+
],
|
|
1140
|
+
],
|
|
1141
|
+
];
|
|
1142
|
+
var ListDomainsResponse = [3, n0, _LDRi, 0, [_do, _nT], [() => DomainSummaryList, 0]];
|
|
1143
|
+
var ListFieldOptionsRequest = [
|
|
1144
|
+
3,
|
|
1145
|
+
n0,
|
|
1146
|
+
_LFOR,
|
|
1147
|
+
0,
|
|
1148
|
+
[_dI, _fI, _mR, _nT, _va],
|
|
1149
|
+
[
|
|
1150
|
+
[0, 1],
|
|
1151
|
+
[0, 1],
|
|
1152
|
+
[
|
|
1153
|
+
1,
|
|
1154
|
+
{
|
|
1155
|
+
[_hQ]: _mR,
|
|
1156
|
+
},
|
|
1157
|
+
],
|
|
1158
|
+
[
|
|
1159
|
+
0,
|
|
1160
|
+
{
|
|
1161
|
+
[_hQ]: _nT,
|
|
1162
|
+
},
|
|
1163
|
+
],
|
|
1164
|
+
[
|
|
1165
|
+
64 | 0,
|
|
1166
|
+
{
|
|
1167
|
+
[_hQ]: _va,
|
|
1168
|
+
},
|
|
1169
|
+
],
|
|
1170
|
+
],
|
|
1171
|
+
];
|
|
1172
|
+
var ListFieldOptionsResponse = [3, n0, _LFORi, 0, [_o, _nT], [() => FieldOptionsList, 0]];
|
|
1173
|
+
var ListFieldsRequest = [
|
|
1174
|
+
3,
|
|
1175
|
+
n0,
|
|
1176
|
+
_LFR,
|
|
1177
|
+
0,
|
|
1178
|
+
[_dI, _mR, _nT],
|
|
1179
|
+
[
|
|
1180
|
+
[0, 1],
|
|
1181
|
+
[
|
|
1182
|
+
1,
|
|
1183
|
+
{
|
|
1184
|
+
[_hQ]: _mR,
|
|
1185
|
+
},
|
|
1186
|
+
],
|
|
1187
|
+
[
|
|
1188
|
+
0,
|
|
1189
|
+
{
|
|
1190
|
+
[_hQ]: _nT,
|
|
1191
|
+
},
|
|
1192
|
+
],
|
|
1193
|
+
],
|
|
1194
|
+
];
|
|
1195
|
+
var ListFieldsResponse = [3, n0, _LFRi, 0, [_f, _nT], [() => FieldSummaryList, 0]];
|
|
1196
|
+
var ListLayoutsRequest = [
|
|
1197
|
+
3,
|
|
1198
|
+
n0,
|
|
1199
|
+
_LLR,
|
|
1200
|
+
0,
|
|
1201
|
+
[_dI, _mR, _nT],
|
|
1202
|
+
[
|
|
1203
|
+
[0, 1],
|
|
1204
|
+
[
|
|
1205
|
+
1,
|
|
1206
|
+
{
|
|
1207
|
+
[_hQ]: _mR,
|
|
1208
|
+
},
|
|
1209
|
+
],
|
|
1210
|
+
[
|
|
1211
|
+
0,
|
|
1212
|
+
{
|
|
1213
|
+
[_hQ]: _nT,
|
|
1214
|
+
},
|
|
1215
|
+
],
|
|
1216
|
+
],
|
|
1217
|
+
];
|
|
1218
|
+
var ListLayoutsResponse = [3, n0, _LLRi, 0, [_l, _nT], [() => LayoutSummaryList, 0]];
|
|
1219
|
+
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_ar], [[0, 1]]];
|
|
1220
|
+
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_ta], [[() => Tags, 0]]];
|
|
1221
|
+
var ListTemplatesRequest = [
|
|
1222
|
+
3,
|
|
1223
|
+
n0,
|
|
1224
|
+
_LTR,
|
|
1225
|
+
0,
|
|
1226
|
+
[_dI, _mR, _nT, _s],
|
|
1227
|
+
[
|
|
1228
|
+
[0, 1],
|
|
1229
|
+
[
|
|
1230
|
+
1,
|
|
1231
|
+
{
|
|
1232
|
+
[_hQ]: _mR,
|
|
1233
|
+
},
|
|
1234
|
+
],
|
|
1235
|
+
[
|
|
1236
|
+
0,
|
|
1237
|
+
{
|
|
1238
|
+
[_hQ]: _nT,
|
|
1239
|
+
},
|
|
1240
|
+
],
|
|
1241
|
+
[
|
|
1242
|
+
64 | 0,
|
|
1243
|
+
{
|
|
1244
|
+
[_hQ]: _s,
|
|
1245
|
+
},
|
|
1246
|
+
],
|
|
1247
|
+
],
|
|
1248
|
+
];
|
|
1249
|
+
var ListTemplatesResponse = [3, n0, _LTRi, 0, [_te, _nT], [() => TemplateSummaryList, 0]];
|
|
1250
|
+
var ParentChildFieldOptionsMapping = [3, n0, _PCFOM, 0, [_pFOV, _cFOV], [0, 64 | 0]];
|
|
1251
|
+
var PutCaseEventConfigurationRequest = [
|
|
1252
|
+
3,
|
|
1253
|
+
n0,
|
|
1254
|
+
_PCECR,
|
|
1255
|
+
0,
|
|
1256
|
+
[_dI, _eB],
|
|
1257
|
+
[[0, 1], () => EventBridgeConfiguration],
|
|
1258
|
+
];
|
|
1259
|
+
var PutCaseEventConfigurationResponse = [3, n0, _PCECRu, 0, [], []];
|
|
1260
|
+
var RelatedItemEventIncludedData = [3, n0, _RIEID, 0, [_iC], [2]];
|
|
1261
|
+
var RequiredCaseRule = [3, n0, _RCR, 0, [_dV, _con], [2, () => BooleanConditionList]];
|
|
1262
|
+
var RequiredField = [3, n0, _RF, 0, [_fI], [0]];
|
|
1263
|
+
var ResourceNotFoundException = [
|
|
1264
|
+
-3,
|
|
1265
|
+
n0,
|
|
1266
|
+
_RNFE,
|
|
1267
|
+
{
|
|
1268
|
+
[_e]: _c,
|
|
1269
|
+
[_hE]: 404,
|
|
1270
|
+
},
|
|
1271
|
+
[_m, _rI, _rTe],
|
|
1272
|
+
[0, 0, 0],
|
|
1273
|
+
];
|
|
1274
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
|
|
1275
|
+
var SearchAllRelatedItemsRequest = [
|
|
1276
|
+
3,
|
|
1277
|
+
n0,
|
|
1278
|
+
_SARIR,
|
|
1279
|
+
0,
|
|
1280
|
+
[_dI, _mR, _nT, _fi, _so],
|
|
1281
|
+
[[0, 1], 1, 0, [() => RelatedItemFilterList, 0], () => SearchAllRelatedItemsSortList],
|
|
1282
|
+
];
|
|
1283
|
+
var SearchAllRelatedItemsResponse = [
|
|
1284
|
+
3,
|
|
1285
|
+
n0,
|
|
1286
|
+
_SARIRe,
|
|
1287
|
+
0,
|
|
1288
|
+
[_nT, _rIe],
|
|
1289
|
+
[0, [() => SearchAllRelatedItemsResponseItemList, 0]],
|
|
1290
|
+
];
|
|
1291
|
+
var SearchAllRelatedItemsResponseItem = [
|
|
1292
|
+
3,
|
|
1293
|
+
n0,
|
|
1294
|
+
_SARIRI,
|
|
1295
|
+
0,
|
|
1296
|
+
[_rII, _cI, _t, _aT, _co, _pB, _ta],
|
|
1297
|
+
[0, 0, 0, 5, [() => RelatedItemContent, 0], [() => UserUnion, 0], [() => Tags, 0]],
|
|
1298
|
+
];
|
|
1299
|
+
var SearchAllRelatedItemsSort = [3, n0, _SARIS, 0, [_sP, _sO], [0, 0]];
|
|
1300
|
+
var SearchCasesRequest = [
|
|
1301
|
+
3,
|
|
1302
|
+
n0,
|
|
1303
|
+
_SCR,
|
|
1304
|
+
0,
|
|
1305
|
+
[_dI, _mR, _nT, _sT, _fil, _so, _f],
|
|
1306
|
+
[[0, 1], 1, 0, 0, () => CaseFilter, () => SortList, () => FieldIdentifierList],
|
|
1307
|
+
];
|
|
1308
|
+
var SearchCasesResponse = [
|
|
1309
|
+
3,
|
|
1310
|
+
n0,
|
|
1311
|
+
_SCRe,
|
|
1312
|
+
0,
|
|
1313
|
+
[_nT, _ca],
|
|
1314
|
+
[0, [() => SearchCasesResponseItemList, 0]],
|
|
1315
|
+
];
|
|
1316
|
+
var SearchCasesResponseItem = [
|
|
1317
|
+
3,
|
|
1318
|
+
n0,
|
|
1319
|
+
_SCRI,
|
|
1320
|
+
0,
|
|
1321
|
+
[_cI, _tI, _f, _ta],
|
|
1322
|
+
[0, 0, () => FieldValueList, [() => Tags, 0]],
|
|
1323
|
+
];
|
|
1324
|
+
var SearchRelatedItemsRequest = [
|
|
1325
|
+
3,
|
|
1326
|
+
n0,
|
|
1327
|
+
_SRIR,
|
|
1328
|
+
0,
|
|
1329
|
+
[_dI, _cI, _mR, _nT, _fi],
|
|
1330
|
+
[[0, 1], [0, 1], 1, 0, [() => RelatedItemFilterList, 0]],
|
|
1331
|
+
];
|
|
1332
|
+
var SearchRelatedItemsResponse = [
|
|
1333
|
+
3,
|
|
1334
|
+
n0,
|
|
1335
|
+
_SRIRe,
|
|
1336
|
+
0,
|
|
1337
|
+
[_nT, _rIe],
|
|
1338
|
+
[0, [() => SearchRelatedItemsResponseItemList, 0]],
|
|
1339
|
+
];
|
|
1340
|
+
var SearchRelatedItemsResponseItem = [
|
|
1341
|
+
3,
|
|
1342
|
+
n0,
|
|
1343
|
+
_SRIRI,
|
|
1344
|
+
0,
|
|
1345
|
+
[_rII, _t, _aT, _co, _ta, _pB],
|
|
1346
|
+
[0, 0, 5, [() => RelatedItemContent, 0], [() => Tags, 0], [() => UserUnion, 0]],
|
|
1347
|
+
];
|
|
1348
|
+
var ServiceQuotaExceededException = [
|
|
1349
|
+
-3,
|
|
1350
|
+
n0,
|
|
1351
|
+
_SQEE,
|
|
1352
|
+
{
|
|
1353
|
+
[_e]: _c,
|
|
1354
|
+
[_hE]: 402,
|
|
1355
|
+
},
|
|
1356
|
+
[_m],
|
|
1357
|
+
[0],
|
|
1358
|
+
];
|
|
1359
|
+
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
|
|
1360
|
+
var SlaConfiguration = [
|
|
1361
|
+
3,
|
|
1362
|
+
n0,
|
|
1363
|
+
_SC,
|
|
1364
|
+
0,
|
|
1365
|
+
[_n, _t, _s, _fI, _tFV, _tT, _cTo],
|
|
1366
|
+
[[() => SlaName, 0], 0, 0, 0, () => SlaFieldValueUnionList, 5, 5],
|
|
1367
|
+
];
|
|
1368
|
+
var SlaContent = [3, n0, _SCl, 0, [_sC], [[() => SlaConfiguration, 0]]];
|
|
1369
|
+
var SlaFilter = [3, n0, _SF, 0, [_n, _s], [[() => SlaName, 0], 0]];
|
|
1370
|
+
var SlaInputConfiguration = [
|
|
1371
|
+
3,
|
|
1372
|
+
n0,
|
|
1373
|
+
_SIC,
|
|
1374
|
+
0,
|
|
1375
|
+
[_n, _t, _fI, _tFV, _tSM],
|
|
1376
|
+
[[() => SlaName, 0], 0, 0, () => SlaFieldValueUnionList, 1],
|
|
1377
|
+
];
|
|
1378
|
+
var Sort = [3, n0, _S, 0, [_fI, _sO], [0, 0]];
|
|
1379
|
+
var TagResourceRequest = [
|
|
1380
|
+
3,
|
|
1381
|
+
n0,
|
|
1382
|
+
_TRR,
|
|
1383
|
+
0,
|
|
1384
|
+
[_ar, _ta],
|
|
1385
|
+
[
|
|
1386
|
+
[0, 1],
|
|
1387
|
+
[() => Tags, 0],
|
|
1388
|
+
],
|
|
1389
|
+
];
|
|
1390
|
+
var TemplateRule = [3, n0, _TR, 0, [_cRI, _fI], [0, 0]];
|
|
1391
|
+
var TemplateSummary = [3, n0, _TS, 0, [_tI, _tA, _n, _s], [0, 0, 0, 0]];
|
|
1392
|
+
var ThrottlingException = [
|
|
1393
|
+
-3,
|
|
1394
|
+
n0,
|
|
1395
|
+
_TE,
|
|
1396
|
+
{
|
|
1397
|
+
[_e]: _c,
|
|
1398
|
+
[_hE]: 429,
|
|
1399
|
+
},
|
|
1400
|
+
[_m],
|
|
1401
|
+
[0],
|
|
1402
|
+
];
|
|
1403
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
|
|
1404
|
+
var UntagResourceRequest = [
|
|
1405
|
+
3,
|
|
1406
|
+
n0,
|
|
1407
|
+
_URR,
|
|
1408
|
+
0,
|
|
1409
|
+
[_ar, _tK],
|
|
1410
|
+
[
|
|
1411
|
+
[0, 1],
|
|
1412
|
+
[
|
|
1413
|
+
64 | 0,
|
|
1414
|
+
{
|
|
1415
|
+
[_hQ]: _tK,
|
|
1416
|
+
},
|
|
1417
|
+
],
|
|
1418
|
+
],
|
|
1419
|
+
];
|
|
1420
|
+
var UpdateCaseRequest = [
|
|
1421
|
+
3,
|
|
1422
|
+
n0,
|
|
1423
|
+
_UCR,
|
|
1424
|
+
0,
|
|
1425
|
+
[_dI, _cI, _f, _pB],
|
|
1426
|
+
[[0, 1], [0, 1], () => FieldValueList, [() => UserUnion, 0]],
|
|
1427
|
+
];
|
|
1428
|
+
var UpdateCaseResponse = [3, n0, _UCRp, 0, [], []];
|
|
1429
|
+
var UpdateCaseRuleRequest = [
|
|
1430
|
+
3,
|
|
1431
|
+
n0,
|
|
1432
|
+
_UCRR,
|
|
1433
|
+
0,
|
|
1434
|
+
[_dI, _cRI, _n, _d, _ru],
|
|
1435
|
+
[[0, 1], [0, 1], 0, 0, () => CaseRuleDetails],
|
|
1436
|
+
];
|
|
1437
|
+
var UpdateCaseRuleResponse = [3, n0, _UCRRp, 0, [], []];
|
|
1438
|
+
var UpdateFieldRequest = [3, n0, _UFR, 0, [_dI, _fI, _n, _d], [[0, 1], [0, 1], 0, 0]];
|
|
1439
|
+
var UpdateFieldResponse = [3, n0, _UFRp, 0, [], []];
|
|
1440
|
+
var UpdateLayoutRequest = [
|
|
1441
|
+
3,
|
|
1442
|
+
n0,
|
|
1443
|
+
_ULR,
|
|
1444
|
+
0,
|
|
1445
|
+
[_dI, _lI, _n, _co],
|
|
1446
|
+
[[0, 1], [0, 1], 0, () => LayoutContent],
|
|
1447
|
+
];
|
|
1448
|
+
var UpdateLayoutResponse = [3, n0, _ULRp, 0, [], []];
|
|
1449
|
+
var UpdateTemplateRequest = [
|
|
1450
|
+
3,
|
|
1451
|
+
n0,
|
|
1452
|
+
_UTR,
|
|
1453
|
+
0,
|
|
1454
|
+
[_dI, _tI, _n, _d, _lC, _rF, _s, _rul],
|
|
1455
|
+
[[0, 1], [0, 1], 0, 0, () => LayoutConfiguration, () => RequiredFieldList, 0, () => TemplateCaseRuleList],
|
|
1456
|
+
];
|
|
1457
|
+
var UpdateTemplateResponse = [3, n0, _UTRp, 0, [], []];
|
|
1458
|
+
var ValidationException = [
|
|
1459
|
+
-3,
|
|
1460
|
+
n0,
|
|
1461
|
+
_VE,
|
|
1462
|
+
{
|
|
1463
|
+
[_e]: _c,
|
|
1464
|
+
[_hE]: 400,
|
|
1465
|
+
},
|
|
1466
|
+
[_m],
|
|
1467
|
+
[0],
|
|
1468
|
+
];
|
|
1469
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
|
|
1470
|
+
var __Unit = "unit";
|
|
1471
|
+
var ConnectCasesServiceException = [-3, _sm, "ConnectCasesServiceException", 0, [], []];
|
|
1472
|
+
schema.TypeRegistry.for(_sm).registerError(ConnectCasesServiceException, ConnectCasesServiceException$1);
|
|
1473
|
+
var AuditEventFieldList = [
|
|
1474
|
+
1,
|
|
1475
|
+
n0,
|
|
1476
|
+
_AEFL,
|
|
1477
|
+
{
|
|
1478
|
+
[_sp]: 1,
|
|
1479
|
+
},
|
|
1480
|
+
() => AuditEventField,
|
|
1481
|
+
];
|
|
1482
|
+
var AuditEventsList = [
|
|
1483
|
+
1,
|
|
1484
|
+
n0,
|
|
1485
|
+
_AEL,
|
|
1486
|
+
{
|
|
1487
|
+
[_sp]: 1,
|
|
1488
|
+
},
|
|
1489
|
+
[() => AuditEvent, 0],
|
|
1490
|
+
];
|
|
1491
|
+
var BatchGetCaseRuleErrorList = [1, n0, _BGCREL, 0, () => CaseRuleError];
|
|
1492
|
+
var BatchGetCaseRuleList = [1, n0, _BGCRL, 0, [() => GetCaseRuleResponse, 0]];
|
|
1493
|
+
var BatchGetFieldErrorList = [1, n0, _BGFEL, 0, () => FieldError];
|
|
1494
|
+
var BatchGetFieldIdentifierList = [1, n0, _BGFIL, 0, () => FieldIdentifier];
|
|
1495
|
+
var BatchGetFieldList = [1, n0, _BGFL, 0, [() => GetFieldResponse, 0]];
|
|
1496
|
+
var BooleanConditionList = [1, n0, _BCL, 0, () => BooleanCondition];
|
|
1497
|
+
var CaseFilterList = [1, n0, _CFL, 0, () => CaseFilter];
|
|
1498
|
+
var CaseRuleIdentifierList = [1, n0, _CRIL, 0, () => CaseRuleIdentifier];
|
|
1499
|
+
var CaseRuleSummaryList = [1, n0, _CRSL, 0, () => CaseRuleSummary];
|
|
1500
|
+
var CaseSummaryList = [1, n0, _CSL, 0, () => CaseSummary];
|
|
1501
|
+
var CustomFieldsFilterList = [1, n0, _CFFL, 0, () => CustomFieldsFilter];
|
|
1502
|
+
var DomainSummaryList = [1, n0, _DSL, 0, () => DomainSummary];
|
|
1503
|
+
var FieldIdentifierList = [1, n0, _FIL, 0, () => FieldIdentifier];
|
|
1504
|
+
var FieldList = [1, n0, _FL, 0, () => FieldItem];
|
|
1505
|
+
var FieldOptionErrorList = [1, n0, _FOEL, 0, () => FieldOptionError];
|
|
1506
|
+
var FieldOptionsList = [1, n0, _FOL, 0, () => FieldOption];
|
|
1507
|
+
var FieldSummaryList = [1, n0, _FSL, 0, () => FieldSummary];
|
|
1508
|
+
var FieldValueList = [1, n0, _FVL, 0, () => FieldValue];
|
|
1509
|
+
var LayoutSummaryList = [1, n0, _LSL, 0, () => LayoutSummary];
|
|
1510
|
+
var ParentChildFieldOptionsMappingList = [
|
|
1511
|
+
1,
|
|
1512
|
+
n0,
|
|
1513
|
+
_PCFOML,
|
|
1514
|
+
0,
|
|
1515
|
+
() => ParentChildFieldOptionsMapping,
|
|
1516
|
+
];
|
|
1517
|
+
var RelatedItemFilterList = [1, n0, _RIFL, 0, [() => RelatedItemTypeFilter, 0]];
|
|
1518
|
+
var RequiredFieldList = [1, n0, _RFL, 0, () => RequiredField];
|
|
1519
|
+
var SearchAllRelatedItemsResponseItemList = [
|
|
1520
|
+
1,
|
|
1521
|
+
n0,
|
|
1522
|
+
_SARIRIL,
|
|
1523
|
+
{
|
|
1524
|
+
[_sp]: 1,
|
|
1525
|
+
},
|
|
1526
|
+
[() => SearchAllRelatedItemsResponseItem, 0],
|
|
1527
|
+
];
|
|
1528
|
+
var SearchAllRelatedItemsSortList = [1, n0, _SARISL, 0, () => SearchAllRelatedItemsSort];
|
|
1529
|
+
var SearchCasesResponseItemList = [
|
|
1530
|
+
1,
|
|
1531
|
+
n0,
|
|
1532
|
+
_SCRIL,
|
|
1533
|
+
{
|
|
1534
|
+
[_sp]: 1,
|
|
1535
|
+
},
|
|
1536
|
+
[() => SearchCasesResponseItem, 0],
|
|
1537
|
+
];
|
|
1538
|
+
var SearchRelatedItemsResponseItemList = [
|
|
1539
|
+
1,
|
|
1540
|
+
n0,
|
|
1541
|
+
_SRIRIL,
|
|
1542
|
+
{
|
|
1543
|
+
[_sp]: 1,
|
|
1544
|
+
},
|
|
1545
|
+
[() => SearchRelatedItemsResponseItem, 0],
|
|
1546
|
+
];
|
|
1547
|
+
var SectionsList = [1, n0, _SL, 0, () => Section];
|
|
1548
|
+
var SlaFieldValueUnionList = [1, n0, _SFVUL, 0, () => FieldValueUnion];
|
|
1549
|
+
var SortList = [1, n0, _SLo, 0, () => Sort];
|
|
1550
|
+
var TemplateCaseRuleList = [1, n0, _TCRL, 0, () => TemplateRule];
|
|
1551
|
+
var TemplateSummaryList = [1, n0, _TSL, 0, () => TemplateSummary];
|
|
1552
|
+
var Tags = [
|
|
1553
|
+
2,
|
|
1554
|
+
n0,
|
|
1555
|
+
_T,
|
|
1556
|
+
{
|
|
1557
|
+
[_sp]: 1,
|
|
1558
|
+
},
|
|
1559
|
+
0,
|
|
1560
|
+
0,
|
|
1561
|
+
];
|
|
1562
|
+
var AuditEventFieldValueUnion = [
|
|
1563
|
+
3,
|
|
1564
|
+
n0,
|
|
1565
|
+
_AEFVU,
|
|
1566
|
+
0,
|
|
1567
|
+
[_sV, _dVo, _bV, _eV, _uAV],
|
|
1568
|
+
[0, 1, 2, () => EmptyFieldValue, 0],
|
|
1569
|
+
];
|
|
1570
|
+
var BooleanCondition = [
|
|
1571
|
+
3,
|
|
1572
|
+
n0,
|
|
1573
|
+
_BC,
|
|
1574
|
+
0,
|
|
1575
|
+
[_eT, _nET],
|
|
1576
|
+
[() => BooleanOperands, () => BooleanOperands],
|
|
1577
|
+
];
|
|
1578
|
+
var CaseFilter = [
|
|
1579
|
+
3,
|
|
1580
|
+
n0,
|
|
1581
|
+
_CFa,
|
|
1582
|
+
0,
|
|
1583
|
+
[_fie, _no, _aA, _oA],
|
|
1584
|
+
[() => FieldFilter, () => CaseFilter, () => CaseFilterList, () => CaseFilterList],
|
|
1585
|
+
];
|
|
1586
|
+
var CaseRuleDetails = [
|
|
1587
|
+
3,
|
|
1588
|
+
n0,
|
|
1589
|
+
_CRD,
|
|
1590
|
+
0,
|
|
1591
|
+
[_re, _fO, _h],
|
|
1592
|
+
[() => RequiredCaseRule, () => FieldOptionsCaseRule, () => HiddenCaseRule],
|
|
1593
|
+
];
|
|
1594
|
+
var CustomFieldsFilter = [
|
|
1595
|
+
3,
|
|
1596
|
+
n0,
|
|
1597
|
+
_CFF,
|
|
1598
|
+
0,
|
|
1599
|
+
[_fie, _no, _aA, _oA],
|
|
1600
|
+
[() => FieldFilter, () => CustomFieldsFilter, () => CustomFieldsFilterList, () => CustomFieldsFilterList],
|
|
1601
|
+
];
|
|
1602
|
+
var FieldFilter = [
|
|
1603
|
+
3,
|
|
1604
|
+
n0,
|
|
1605
|
+
_FFi,
|
|
1606
|
+
0,
|
|
1607
|
+
[_eT, _cont, _gT, _gTOET, _lT, _lTOET],
|
|
1608
|
+
[() => FieldValue, () => FieldValue, () => FieldValue, () => FieldValue, () => FieldValue, () => FieldValue],
|
|
1609
|
+
];
|
|
1610
|
+
var FieldValueUnion = [
|
|
1611
|
+
3,
|
|
1612
|
+
n0,
|
|
1613
|
+
_FVU,
|
|
1614
|
+
0,
|
|
1615
|
+
[_sV, _dVo, _bV, _eV, _uAV],
|
|
1616
|
+
[0, 1, 2, () => EmptyFieldValue, 0],
|
|
1617
|
+
];
|
|
1618
|
+
var LayoutContent = [3, n0, _LCa, 0, [_ba], [() => BasicLayout]];
|
|
1619
|
+
var OperandOne = [3, n0, _OO, 0, [_fI], [0]];
|
|
1620
|
+
var OperandTwo = [
|
|
1621
|
+
3,
|
|
1622
|
+
n0,
|
|
1623
|
+
_OT,
|
|
1624
|
+
0,
|
|
1625
|
+
[_sV, _bV, _dVo, _eV],
|
|
1626
|
+
[0, 2, 1, () => EmptyOperandValue],
|
|
1627
|
+
];
|
|
1628
|
+
var RelatedItemContent = [
|
|
1629
|
+
3,
|
|
1630
|
+
n0,
|
|
1631
|
+
_RIC,
|
|
1632
|
+
0,
|
|
1633
|
+
[_conta, _com, _file, _sl, _cC, _cu],
|
|
1634
|
+
[
|
|
1635
|
+
() => ContactContent,
|
|
1636
|
+
() => CommentContent,
|
|
1637
|
+
() => FileContent,
|
|
1638
|
+
[() => SlaContent, 0],
|
|
1639
|
+
() => ConnectCaseContent,
|
|
1640
|
+
() => CustomContent,
|
|
1641
|
+
],
|
|
1642
|
+
];
|
|
1643
|
+
var RelatedItemInputContent = [
|
|
1644
|
+
3,
|
|
1645
|
+
n0,
|
|
1646
|
+
_RIIC,
|
|
1647
|
+
0,
|
|
1648
|
+
[_conta, _com, _file, _sl, _cC, _cu],
|
|
1649
|
+
[
|
|
1650
|
+
() => Contact,
|
|
1651
|
+
() => CommentContent,
|
|
1652
|
+
() => FileContent,
|
|
1653
|
+
[() => SlaInputContent, 0],
|
|
1654
|
+
() => ConnectCaseInputContent,
|
|
1655
|
+
() => CustomInputContent,
|
|
1656
|
+
],
|
|
1657
|
+
];
|
|
1658
|
+
var RelatedItemTypeFilter = [
|
|
1659
|
+
3,
|
|
1660
|
+
n0,
|
|
1661
|
+
_RITF,
|
|
1662
|
+
0,
|
|
1663
|
+
[_conta, _com, _file, _sl, _cC, _cu],
|
|
1664
|
+
[
|
|
1665
|
+
() => ContactFilter,
|
|
1666
|
+
() => CommentFilter,
|
|
1667
|
+
() => FileFilter,
|
|
1668
|
+
[() => SlaFilter, 0],
|
|
1669
|
+
() => ConnectCaseFilter,
|
|
1670
|
+
() => CustomFilter,
|
|
1671
|
+
],
|
|
1672
|
+
];
|
|
1673
|
+
var Section = [3, n0, _Se, 0, [_fG], [() => FieldGroup]];
|
|
1674
|
+
var SlaInputContent = [3, n0, _SICl, 0, [_sIC], [[() => SlaInputConfiguration, 0]]];
|
|
1675
|
+
var UserUnion = [3, n0, _UU, 0, [_uA, _cE], [0, [() => CustomEntity, 0]]];
|
|
1676
|
+
var BatchGetCaseRule = [
|
|
1677
|
+
9,
|
|
1678
|
+
n0,
|
|
1679
|
+
_BGCR,
|
|
1680
|
+
{
|
|
1681
|
+
[_ht]: ["POST", "/domains/{domainId}/rules-batch", 200],
|
|
1682
|
+
},
|
|
1683
|
+
() => BatchGetCaseRuleRequest,
|
|
1684
|
+
() => BatchGetCaseRuleResponse,
|
|
1685
|
+
];
|
|
1686
|
+
var BatchGetField = [
|
|
1687
|
+
9,
|
|
1688
|
+
n0,
|
|
1689
|
+
_BGF,
|
|
1690
|
+
{
|
|
1691
|
+
[_ht]: ["POST", "/domains/{domainId}/fields-batch", 200],
|
|
1692
|
+
},
|
|
1693
|
+
() => BatchGetFieldRequest,
|
|
1694
|
+
() => BatchGetFieldResponse,
|
|
1695
|
+
];
|
|
1696
|
+
var BatchPutFieldOptions = [
|
|
1697
|
+
9,
|
|
1698
|
+
n0,
|
|
1699
|
+
_BPFO,
|
|
1700
|
+
{
|
|
1701
|
+
[_ht]: ["PUT", "/domains/{domainId}/fields/{fieldId}/options", 200],
|
|
1702
|
+
},
|
|
1703
|
+
() => BatchPutFieldOptionsRequest,
|
|
1704
|
+
() => BatchPutFieldOptionsResponse,
|
|
1705
|
+
];
|
|
1706
|
+
var CreateCase = [
|
|
1707
|
+
9,
|
|
1708
|
+
n0,
|
|
1709
|
+
_CCr,
|
|
1710
|
+
{
|
|
1711
|
+
[_ht]: ["POST", "/domains/{domainId}/cases", 200],
|
|
1712
|
+
},
|
|
1713
|
+
() => CreateCaseRequest,
|
|
1714
|
+
() => CreateCaseResponse,
|
|
1715
|
+
];
|
|
1716
|
+
var CreateCaseRule = [
|
|
1717
|
+
9,
|
|
1718
|
+
n0,
|
|
1719
|
+
_CCRre,
|
|
1720
|
+
{
|
|
1721
|
+
[_ht]: ["POST", "/domains/{domainId}/case-rules", 200],
|
|
1722
|
+
},
|
|
1723
|
+
() => CreateCaseRuleRequest,
|
|
1724
|
+
() => CreateCaseRuleResponse,
|
|
1725
|
+
];
|
|
1726
|
+
var CreateDomain = [
|
|
1727
|
+
9,
|
|
1728
|
+
n0,
|
|
1729
|
+
_CD,
|
|
1730
|
+
{
|
|
1731
|
+
[_ht]: ["POST", "/domains", 200],
|
|
1732
|
+
},
|
|
1733
|
+
() => CreateDomainRequest,
|
|
1734
|
+
() => CreateDomainResponse,
|
|
1735
|
+
];
|
|
1736
|
+
var CreateField = [
|
|
1737
|
+
9,
|
|
1738
|
+
n0,
|
|
1739
|
+
_CFr,
|
|
1740
|
+
{
|
|
1741
|
+
[_ht]: ["POST", "/domains/{domainId}/fields", 200],
|
|
1742
|
+
},
|
|
1743
|
+
() => CreateFieldRequest,
|
|
1744
|
+
() => CreateFieldResponse,
|
|
1745
|
+
];
|
|
1746
|
+
var CreateLayout = [
|
|
1747
|
+
9,
|
|
1748
|
+
n0,
|
|
1749
|
+
_CL,
|
|
1750
|
+
{
|
|
1751
|
+
[_ht]: ["POST", "/domains/{domainId}/layouts", 200],
|
|
1752
|
+
},
|
|
1753
|
+
() => CreateLayoutRequest,
|
|
1754
|
+
() => CreateLayoutResponse,
|
|
1755
|
+
];
|
|
1756
|
+
var CreateRelatedItem = [
|
|
1757
|
+
9,
|
|
1758
|
+
n0,
|
|
1759
|
+
_CRIr,
|
|
1760
|
+
{
|
|
1761
|
+
[_ht]: ["POST", "/domains/{domainId}/cases/{caseId}/related-items/", 200],
|
|
1762
|
+
},
|
|
1763
|
+
() => CreateRelatedItemRequest,
|
|
1764
|
+
() => CreateRelatedItemResponse,
|
|
1765
|
+
];
|
|
1766
|
+
var CreateTemplate = [
|
|
1767
|
+
9,
|
|
1768
|
+
n0,
|
|
1769
|
+
_CT,
|
|
1770
|
+
{
|
|
1771
|
+
[_ht]: ["POST", "/domains/{domainId}/templates", 200],
|
|
1772
|
+
},
|
|
1773
|
+
() => CreateTemplateRequest,
|
|
1774
|
+
() => CreateTemplateResponse,
|
|
1775
|
+
];
|
|
1776
|
+
var DeleteCase = [
|
|
1777
|
+
9,
|
|
1778
|
+
n0,
|
|
1779
|
+
_DC,
|
|
1780
|
+
{
|
|
1781
|
+
[_ht]: ["DELETE", "/domains/{domainId}/cases/{caseId}", 200],
|
|
1782
|
+
},
|
|
1783
|
+
() => DeleteCaseRequest,
|
|
1784
|
+
() => DeleteCaseResponse,
|
|
1785
|
+
];
|
|
1786
|
+
var DeleteCaseRule = [
|
|
1787
|
+
9,
|
|
1788
|
+
n0,
|
|
1789
|
+
_DCRel,
|
|
1790
|
+
{
|
|
1791
|
+
[_ht]: ["DELETE", "/domains/{domainId}/case-rules/{caseRuleId}", 200],
|
|
1792
|
+
},
|
|
1793
|
+
() => DeleteCaseRuleRequest,
|
|
1794
|
+
() => DeleteCaseRuleResponse,
|
|
1795
|
+
];
|
|
1796
|
+
var DeleteDomain = [
|
|
1797
|
+
9,
|
|
1798
|
+
n0,
|
|
1799
|
+
_DD,
|
|
1800
|
+
{
|
|
1801
|
+
[_ht]: ["DELETE", "/domains/{domainId}", 200],
|
|
1802
|
+
},
|
|
1803
|
+
() => DeleteDomainRequest,
|
|
1804
|
+
() => DeleteDomainResponse,
|
|
1805
|
+
];
|
|
1806
|
+
var DeleteField = [
|
|
1807
|
+
9,
|
|
1808
|
+
n0,
|
|
1809
|
+
_DF,
|
|
1810
|
+
{
|
|
1811
|
+
[_ht]: ["DELETE", "/domains/{domainId}/fields/{fieldId}", 200],
|
|
1812
|
+
},
|
|
1813
|
+
() => DeleteFieldRequest,
|
|
1814
|
+
() => DeleteFieldResponse,
|
|
1815
|
+
];
|
|
1816
|
+
var DeleteLayout = [
|
|
1817
|
+
9,
|
|
1818
|
+
n0,
|
|
1819
|
+
_DL,
|
|
1820
|
+
{
|
|
1821
|
+
[_ht]: ["DELETE", "/domains/{domainId}/layouts/{layoutId}", 200],
|
|
1822
|
+
},
|
|
1823
|
+
() => DeleteLayoutRequest,
|
|
1824
|
+
() => DeleteLayoutResponse,
|
|
1825
|
+
];
|
|
1826
|
+
var DeleteRelatedItem = [
|
|
1827
|
+
9,
|
|
1828
|
+
n0,
|
|
1829
|
+
_DRI,
|
|
1830
|
+
{
|
|
1831
|
+
[_ht]: ["DELETE", "/domains/{domainId}/cases/{caseId}/related-items/{relatedItemId}", 200],
|
|
1832
|
+
},
|
|
1833
|
+
() => DeleteRelatedItemRequest,
|
|
1834
|
+
() => DeleteRelatedItemResponse,
|
|
1835
|
+
];
|
|
1836
|
+
var DeleteTemplate = [
|
|
1837
|
+
9,
|
|
1838
|
+
n0,
|
|
1839
|
+
_DT,
|
|
1840
|
+
{
|
|
1841
|
+
[_ht]: ["DELETE", "/domains/{domainId}/templates/{templateId}", 200],
|
|
1842
|
+
},
|
|
1843
|
+
() => DeleteTemplateRequest,
|
|
1844
|
+
() => DeleteTemplateResponse,
|
|
1845
|
+
];
|
|
1846
|
+
var GetCase = [
|
|
1847
|
+
9,
|
|
1848
|
+
n0,
|
|
1849
|
+
_GC,
|
|
1850
|
+
{
|
|
1851
|
+
[_ht]: ["POST", "/domains/{domainId}/cases/{caseId}", 200],
|
|
1852
|
+
},
|
|
1853
|
+
() => GetCaseRequest,
|
|
1854
|
+
() => GetCaseResponse,
|
|
1855
|
+
];
|
|
1856
|
+
var GetCaseAuditEvents = [
|
|
1857
|
+
9,
|
|
1858
|
+
n0,
|
|
1859
|
+
_GCAE,
|
|
1860
|
+
{
|
|
1861
|
+
[_ht]: ["POST", "/domains/{domainId}/cases/{caseId}/audit-history", 200],
|
|
1862
|
+
},
|
|
1863
|
+
() => GetCaseAuditEventsRequest,
|
|
1864
|
+
() => GetCaseAuditEventsResponse,
|
|
1865
|
+
];
|
|
1866
|
+
var GetCaseEventConfiguration = [
|
|
1867
|
+
9,
|
|
1868
|
+
n0,
|
|
1869
|
+
_GCEC,
|
|
1870
|
+
{
|
|
1871
|
+
[_ht]: ["POST", "/domains/{domainId}/case-event-configuration", 200],
|
|
1872
|
+
},
|
|
1873
|
+
() => GetCaseEventConfigurationRequest,
|
|
1874
|
+
() => GetCaseEventConfigurationResponse,
|
|
1875
|
+
];
|
|
1876
|
+
var GetDomain = [
|
|
1877
|
+
9,
|
|
1878
|
+
n0,
|
|
1879
|
+
_GD,
|
|
1880
|
+
{
|
|
1881
|
+
[_ht]: ["POST", "/domains/{domainId}", 200],
|
|
1882
|
+
},
|
|
1883
|
+
() => GetDomainRequest,
|
|
1884
|
+
() => GetDomainResponse,
|
|
1885
|
+
];
|
|
1886
|
+
var GetLayout = [
|
|
1887
|
+
9,
|
|
1888
|
+
n0,
|
|
1889
|
+
_GL,
|
|
1890
|
+
{
|
|
1891
|
+
[_ht]: ["POST", "/domains/{domainId}/layouts/{layoutId}", 200],
|
|
1892
|
+
},
|
|
1893
|
+
() => GetLayoutRequest,
|
|
1894
|
+
() => GetLayoutResponse,
|
|
1895
|
+
];
|
|
1896
|
+
var GetTemplate = [
|
|
1897
|
+
9,
|
|
1898
|
+
n0,
|
|
1899
|
+
_GT,
|
|
1900
|
+
{
|
|
1901
|
+
[_ht]: ["POST", "/domains/{domainId}/templates/{templateId}", 200],
|
|
1902
|
+
},
|
|
1903
|
+
() => GetTemplateRequest,
|
|
1904
|
+
() => GetTemplateResponse,
|
|
1905
|
+
];
|
|
1906
|
+
var ListCaseRules = [
|
|
1907
|
+
9,
|
|
1908
|
+
n0,
|
|
1909
|
+
_LCR,
|
|
1910
|
+
{
|
|
1911
|
+
[_ht]: ["POST", "/domains/{domainId}/rules-list/", 200],
|
|
1912
|
+
},
|
|
1913
|
+
() => ListCaseRulesRequest,
|
|
1914
|
+
() => ListCaseRulesResponse,
|
|
1915
|
+
];
|
|
1916
|
+
var ListCasesForContact = [
|
|
1917
|
+
9,
|
|
1918
|
+
n0,
|
|
1919
|
+
_LCFC,
|
|
1920
|
+
{
|
|
1921
|
+
[_ht]: ["POST", "/domains/{domainId}/list-cases-for-contact", 200],
|
|
1922
|
+
},
|
|
1923
|
+
() => ListCasesForContactRequest,
|
|
1924
|
+
() => ListCasesForContactResponse,
|
|
1925
|
+
];
|
|
1926
|
+
var ListDomains = [
|
|
1927
|
+
9,
|
|
1928
|
+
n0,
|
|
1929
|
+
_LD,
|
|
1930
|
+
{
|
|
1931
|
+
[_ht]: ["POST", "/domains-list", 200],
|
|
1932
|
+
},
|
|
1933
|
+
() => ListDomainsRequest,
|
|
1934
|
+
() => ListDomainsResponse,
|
|
1935
|
+
];
|
|
1936
|
+
var ListFieldOptions = [
|
|
1937
|
+
9,
|
|
1938
|
+
n0,
|
|
1939
|
+
_LFO,
|
|
1940
|
+
{
|
|
1941
|
+
[_ht]: ["POST", "/domains/{domainId}/fields/{fieldId}/options-list", 200],
|
|
1942
|
+
},
|
|
1943
|
+
() => ListFieldOptionsRequest,
|
|
1944
|
+
() => ListFieldOptionsResponse,
|
|
1945
|
+
];
|
|
1946
|
+
var ListFields = [
|
|
1947
|
+
9,
|
|
1948
|
+
n0,
|
|
1949
|
+
_LF,
|
|
1950
|
+
{
|
|
1951
|
+
[_ht]: ["POST", "/domains/{domainId}/fields-list", 200],
|
|
1952
|
+
},
|
|
1953
|
+
() => ListFieldsRequest,
|
|
1954
|
+
() => ListFieldsResponse,
|
|
1955
|
+
];
|
|
1956
|
+
var ListLayouts = [
|
|
1957
|
+
9,
|
|
1958
|
+
n0,
|
|
1959
|
+
_LL,
|
|
1960
|
+
{
|
|
1961
|
+
[_ht]: ["POST", "/domains/{domainId}/layouts-list", 200],
|
|
1962
|
+
},
|
|
1963
|
+
() => ListLayoutsRequest,
|
|
1964
|
+
() => ListLayoutsResponse,
|
|
1965
|
+
];
|
|
1966
|
+
var ListTagsForResource = [
|
|
1967
|
+
9,
|
|
1968
|
+
n0,
|
|
1969
|
+
_LTFR,
|
|
1970
|
+
{
|
|
1971
|
+
[_ht]: ["GET", "/tags/{arn}", 200],
|
|
1972
|
+
},
|
|
1973
|
+
() => ListTagsForResourceRequest,
|
|
1974
|
+
() => ListTagsForResourceResponse,
|
|
1975
|
+
];
|
|
1976
|
+
var ListTemplates = [
|
|
1977
|
+
9,
|
|
1978
|
+
n0,
|
|
1979
|
+
_LT,
|
|
1980
|
+
{
|
|
1981
|
+
[_ht]: ["POST", "/domains/{domainId}/templates-list", 200],
|
|
1982
|
+
},
|
|
1983
|
+
() => ListTemplatesRequest,
|
|
1984
|
+
() => ListTemplatesResponse,
|
|
1985
|
+
];
|
|
1986
|
+
var PutCaseEventConfiguration = [
|
|
1987
|
+
9,
|
|
1988
|
+
n0,
|
|
1989
|
+
_PCEC,
|
|
1990
|
+
{
|
|
1991
|
+
[_ht]: ["PUT", "/domains/{domainId}/case-event-configuration", 200],
|
|
1992
|
+
},
|
|
1993
|
+
() => PutCaseEventConfigurationRequest,
|
|
1994
|
+
() => PutCaseEventConfigurationResponse,
|
|
1995
|
+
];
|
|
1996
|
+
var SearchAllRelatedItems = [
|
|
1997
|
+
9,
|
|
1998
|
+
n0,
|
|
1999
|
+
_SARI,
|
|
2000
|
+
{
|
|
2001
|
+
[_ht]: ["POST", "/domains/{domainId}/related-items-search", 200],
|
|
2002
|
+
},
|
|
2003
|
+
() => SearchAllRelatedItemsRequest,
|
|
2004
|
+
() => SearchAllRelatedItemsResponse,
|
|
2005
|
+
];
|
|
2006
|
+
var SearchCases = [
|
|
2007
|
+
9,
|
|
2008
|
+
n0,
|
|
2009
|
+
_SCe,
|
|
2010
|
+
{
|
|
2011
|
+
[_ht]: ["POST", "/domains/{domainId}/cases-search", 200],
|
|
2012
|
+
},
|
|
2013
|
+
() => SearchCasesRequest,
|
|
2014
|
+
() => SearchCasesResponse,
|
|
2015
|
+
];
|
|
2016
|
+
var SearchRelatedItems = [
|
|
2017
|
+
9,
|
|
2018
|
+
n0,
|
|
2019
|
+
_SRI,
|
|
2020
|
+
{
|
|
2021
|
+
[_ht]: ["POST", "/domains/{domainId}/cases/{caseId}/related-items-search", 200],
|
|
2022
|
+
},
|
|
2023
|
+
() => SearchRelatedItemsRequest,
|
|
2024
|
+
() => SearchRelatedItemsResponse,
|
|
2025
|
+
];
|
|
2026
|
+
var TagResource = [
|
|
2027
|
+
9,
|
|
2028
|
+
n0,
|
|
2029
|
+
_TRa,
|
|
2030
|
+
{
|
|
2031
|
+
[_ht]: ["POST", "/tags/{arn}", 200],
|
|
2032
|
+
},
|
|
2033
|
+
() => TagResourceRequest,
|
|
2034
|
+
() => __Unit,
|
|
2035
|
+
];
|
|
2036
|
+
var UntagResource = [
|
|
2037
|
+
9,
|
|
2038
|
+
n0,
|
|
2039
|
+
_UR,
|
|
2040
|
+
{
|
|
2041
|
+
[_ht]: ["DELETE", "/tags/{arn}", 200],
|
|
2042
|
+
},
|
|
2043
|
+
() => UntagResourceRequest,
|
|
2044
|
+
() => __Unit,
|
|
2045
|
+
];
|
|
2046
|
+
var UpdateCase = [
|
|
2047
|
+
9,
|
|
2048
|
+
n0,
|
|
2049
|
+
_UC,
|
|
2050
|
+
{
|
|
2051
|
+
[_ht]: ["PUT", "/domains/{domainId}/cases/{caseId}", 200],
|
|
2052
|
+
},
|
|
2053
|
+
() => UpdateCaseRequest,
|
|
2054
|
+
() => UpdateCaseResponse,
|
|
2055
|
+
];
|
|
2056
|
+
var UpdateCaseRule = [
|
|
2057
|
+
9,
|
|
2058
|
+
n0,
|
|
2059
|
+
_UCRpd,
|
|
2060
|
+
{
|
|
2061
|
+
[_ht]: ["PUT", "/domains/{domainId}/case-rules/{caseRuleId}", 200],
|
|
2062
|
+
},
|
|
2063
|
+
() => UpdateCaseRuleRequest,
|
|
2064
|
+
() => UpdateCaseRuleResponse,
|
|
2065
|
+
];
|
|
2066
|
+
var UpdateField = [
|
|
2067
|
+
9,
|
|
2068
|
+
n0,
|
|
2069
|
+
_UF,
|
|
2070
|
+
{
|
|
2071
|
+
[_ht]: ["PUT", "/domains/{domainId}/fields/{fieldId}", 200],
|
|
2072
|
+
},
|
|
2073
|
+
() => UpdateFieldRequest,
|
|
2074
|
+
() => UpdateFieldResponse,
|
|
2075
|
+
];
|
|
2076
|
+
var UpdateLayout = [
|
|
2077
|
+
9,
|
|
2078
|
+
n0,
|
|
2079
|
+
_UL,
|
|
2080
|
+
{
|
|
2081
|
+
[_ht]: ["PUT", "/domains/{domainId}/layouts/{layoutId}", 200],
|
|
2082
|
+
},
|
|
2083
|
+
() => UpdateLayoutRequest,
|
|
2084
|
+
() => UpdateLayoutResponse,
|
|
2085
|
+
];
|
|
2086
|
+
var UpdateTemplate = [
|
|
2087
|
+
9,
|
|
2088
|
+
n0,
|
|
2089
|
+
_UT,
|
|
2090
|
+
{
|
|
2091
|
+
[_ht]: ["PUT", "/domains/{domainId}/templates/{templateId}", 200],
|
|
2092
|
+
},
|
|
2093
|
+
() => UpdateTemplateRequest,
|
|
2094
|
+
() => UpdateTemplateResponse,
|
|
2095
|
+
];
|
|
2452
2096
|
|
|
2453
2097
|
class BatchGetCaseRuleCommand extends smithyClient.Command
|
|
2454
2098
|
.classBuilder()
|
|
2455
2099
|
.ep(commonParams)
|
|
2456
2100
|
.m(function (Command, cs, config, o) {
|
|
2457
|
-
return [
|
|
2458
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2459
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2460
|
-
];
|
|
2101
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2461
2102
|
})
|
|
2462
2103
|
.s("AmazonConnectCases", "BatchGetCaseRule", {})
|
|
2463
2104
|
.n("ConnectCasesClient", "BatchGetCaseRuleCommand")
|
|
2464
|
-
.
|
|
2465
|
-
.ser(se_BatchGetCaseRuleCommand)
|
|
2466
|
-
.de(de_BatchGetCaseRuleCommand)
|
|
2105
|
+
.sc(BatchGetCaseRule)
|
|
2467
2106
|
.build() {
|
|
2468
2107
|
}
|
|
2469
2108
|
|
|
@@ -2471,16 +2110,11 @@ class BatchGetFieldCommand extends smithyClient.Command
|
|
|
2471
2110
|
.classBuilder()
|
|
2472
2111
|
.ep(commonParams)
|
|
2473
2112
|
.m(function (Command, cs, config, o) {
|
|
2474
|
-
return [
|
|
2475
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2476
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2477
|
-
];
|
|
2113
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2478
2114
|
})
|
|
2479
2115
|
.s("AmazonConnectCases", "BatchGetField", {})
|
|
2480
2116
|
.n("ConnectCasesClient", "BatchGetFieldCommand")
|
|
2481
|
-
.
|
|
2482
|
-
.ser(se_BatchGetFieldCommand)
|
|
2483
|
-
.de(de_BatchGetFieldCommand)
|
|
2117
|
+
.sc(BatchGetField)
|
|
2484
2118
|
.build() {
|
|
2485
2119
|
}
|
|
2486
2120
|
|
|
@@ -2488,16 +2122,11 @@ class BatchPutFieldOptionsCommand extends smithyClient.Command
|
|
|
2488
2122
|
.classBuilder()
|
|
2489
2123
|
.ep(commonParams)
|
|
2490
2124
|
.m(function (Command, cs, config, o) {
|
|
2491
|
-
return [
|
|
2492
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2493
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2494
|
-
];
|
|
2125
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2495
2126
|
})
|
|
2496
2127
|
.s("AmazonConnectCases", "BatchPutFieldOptions", {})
|
|
2497
2128
|
.n("ConnectCasesClient", "BatchPutFieldOptionsCommand")
|
|
2498
|
-
.
|
|
2499
|
-
.ser(se_BatchPutFieldOptionsCommand)
|
|
2500
|
-
.de(de_BatchPutFieldOptionsCommand)
|
|
2129
|
+
.sc(BatchPutFieldOptions)
|
|
2501
2130
|
.build() {
|
|
2502
2131
|
}
|
|
2503
2132
|
|
|
@@ -2505,16 +2134,11 @@ class CreateCaseCommand extends smithyClient.Command
|
|
|
2505
2134
|
.classBuilder()
|
|
2506
2135
|
.ep(commonParams)
|
|
2507
2136
|
.m(function (Command, cs, config, o) {
|
|
2508
|
-
return [
|
|
2509
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2510
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2511
|
-
];
|
|
2137
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2512
2138
|
})
|
|
2513
2139
|
.s("AmazonConnectCases", "CreateCase", {})
|
|
2514
2140
|
.n("ConnectCasesClient", "CreateCaseCommand")
|
|
2515
|
-
.
|
|
2516
|
-
.ser(se_CreateCaseCommand)
|
|
2517
|
-
.de(de_CreateCaseCommand)
|
|
2141
|
+
.sc(CreateCase)
|
|
2518
2142
|
.build() {
|
|
2519
2143
|
}
|
|
2520
2144
|
|
|
@@ -2522,16 +2146,11 @@ class CreateCaseRuleCommand extends smithyClient.Command
|
|
|
2522
2146
|
.classBuilder()
|
|
2523
2147
|
.ep(commonParams)
|
|
2524
2148
|
.m(function (Command, cs, config, o) {
|
|
2525
|
-
return [
|
|
2526
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2527
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2528
|
-
];
|
|
2149
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2529
2150
|
})
|
|
2530
2151
|
.s("AmazonConnectCases", "CreateCaseRule", {})
|
|
2531
2152
|
.n("ConnectCasesClient", "CreateCaseRuleCommand")
|
|
2532
|
-
.
|
|
2533
|
-
.ser(se_CreateCaseRuleCommand)
|
|
2534
|
-
.de(de_CreateCaseRuleCommand)
|
|
2153
|
+
.sc(CreateCaseRule)
|
|
2535
2154
|
.build() {
|
|
2536
2155
|
}
|
|
2537
2156
|
|
|
@@ -2539,16 +2158,11 @@ class CreateDomainCommand extends smithyClient.Command
|
|
|
2539
2158
|
.classBuilder()
|
|
2540
2159
|
.ep(commonParams)
|
|
2541
2160
|
.m(function (Command, cs, config, o) {
|
|
2542
|
-
return [
|
|
2543
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2544
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2545
|
-
];
|
|
2161
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2546
2162
|
})
|
|
2547
2163
|
.s("AmazonConnectCases", "CreateDomain", {})
|
|
2548
2164
|
.n("ConnectCasesClient", "CreateDomainCommand")
|
|
2549
|
-
.
|
|
2550
|
-
.ser(se_CreateDomainCommand)
|
|
2551
|
-
.de(de_CreateDomainCommand)
|
|
2165
|
+
.sc(CreateDomain)
|
|
2552
2166
|
.build() {
|
|
2553
2167
|
}
|
|
2554
2168
|
|
|
@@ -2556,16 +2170,11 @@ class CreateFieldCommand extends smithyClient.Command
|
|
|
2556
2170
|
.classBuilder()
|
|
2557
2171
|
.ep(commonParams)
|
|
2558
2172
|
.m(function (Command, cs, config, o) {
|
|
2559
|
-
return [
|
|
2560
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2561
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2562
|
-
];
|
|
2173
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2563
2174
|
})
|
|
2564
2175
|
.s("AmazonConnectCases", "CreateField", {})
|
|
2565
2176
|
.n("ConnectCasesClient", "CreateFieldCommand")
|
|
2566
|
-
.
|
|
2567
|
-
.ser(se_CreateFieldCommand)
|
|
2568
|
-
.de(de_CreateFieldCommand)
|
|
2177
|
+
.sc(CreateField)
|
|
2569
2178
|
.build() {
|
|
2570
2179
|
}
|
|
2571
2180
|
|
|
@@ -2573,16 +2182,11 @@ class CreateLayoutCommand extends smithyClient.Command
|
|
|
2573
2182
|
.classBuilder()
|
|
2574
2183
|
.ep(commonParams)
|
|
2575
2184
|
.m(function (Command, cs, config, o) {
|
|
2576
|
-
return [
|
|
2577
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2578
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2579
|
-
];
|
|
2185
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2580
2186
|
})
|
|
2581
2187
|
.s("AmazonConnectCases", "CreateLayout", {})
|
|
2582
2188
|
.n("ConnectCasesClient", "CreateLayoutCommand")
|
|
2583
|
-
.
|
|
2584
|
-
.ser(se_CreateLayoutCommand)
|
|
2585
|
-
.de(de_CreateLayoutCommand)
|
|
2189
|
+
.sc(CreateLayout)
|
|
2586
2190
|
.build() {
|
|
2587
2191
|
}
|
|
2588
2192
|
|
|
@@ -2590,16 +2194,11 @@ class CreateRelatedItemCommand extends smithyClient.Command
|
|
|
2590
2194
|
.classBuilder()
|
|
2591
2195
|
.ep(commonParams)
|
|
2592
2196
|
.m(function (Command, cs, config, o) {
|
|
2593
|
-
return [
|
|
2594
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2595
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2596
|
-
];
|
|
2197
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2597
2198
|
})
|
|
2598
2199
|
.s("AmazonConnectCases", "CreateRelatedItem", {})
|
|
2599
2200
|
.n("ConnectCasesClient", "CreateRelatedItemCommand")
|
|
2600
|
-
.
|
|
2601
|
-
.ser(se_CreateRelatedItemCommand)
|
|
2602
|
-
.de(de_CreateRelatedItemCommand)
|
|
2201
|
+
.sc(CreateRelatedItem)
|
|
2603
2202
|
.build() {
|
|
2604
2203
|
}
|
|
2605
2204
|
|
|
@@ -2607,16 +2206,11 @@ class CreateTemplateCommand extends smithyClient.Command
|
|
|
2607
2206
|
.classBuilder()
|
|
2608
2207
|
.ep(commonParams)
|
|
2609
2208
|
.m(function (Command, cs, config, o) {
|
|
2610
|
-
return [
|
|
2611
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2612
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2613
|
-
];
|
|
2209
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2614
2210
|
})
|
|
2615
2211
|
.s("AmazonConnectCases", "CreateTemplate", {})
|
|
2616
2212
|
.n("ConnectCasesClient", "CreateTemplateCommand")
|
|
2617
|
-
.
|
|
2618
|
-
.ser(se_CreateTemplateCommand)
|
|
2619
|
-
.de(de_CreateTemplateCommand)
|
|
2213
|
+
.sc(CreateTemplate)
|
|
2620
2214
|
.build() {
|
|
2621
2215
|
}
|
|
2622
2216
|
|
|
@@ -2624,16 +2218,11 @@ class DeleteCaseCommand extends smithyClient.Command
|
|
|
2624
2218
|
.classBuilder()
|
|
2625
2219
|
.ep(commonParams)
|
|
2626
2220
|
.m(function (Command, cs, config, o) {
|
|
2627
|
-
return [
|
|
2628
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2629
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2630
|
-
];
|
|
2221
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2631
2222
|
})
|
|
2632
2223
|
.s("AmazonConnectCases", "DeleteCase", {})
|
|
2633
2224
|
.n("ConnectCasesClient", "DeleteCaseCommand")
|
|
2634
|
-
.
|
|
2635
|
-
.ser(se_DeleteCaseCommand)
|
|
2636
|
-
.de(de_DeleteCaseCommand)
|
|
2225
|
+
.sc(DeleteCase)
|
|
2637
2226
|
.build() {
|
|
2638
2227
|
}
|
|
2639
2228
|
|
|
@@ -2641,16 +2230,11 @@ class DeleteCaseRuleCommand extends smithyClient.Command
|
|
|
2641
2230
|
.classBuilder()
|
|
2642
2231
|
.ep(commonParams)
|
|
2643
2232
|
.m(function (Command, cs, config, o) {
|
|
2644
|
-
return [
|
|
2645
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2646
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2647
|
-
];
|
|
2233
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2648
2234
|
})
|
|
2649
2235
|
.s("AmazonConnectCases", "DeleteCaseRule", {})
|
|
2650
2236
|
.n("ConnectCasesClient", "DeleteCaseRuleCommand")
|
|
2651
|
-
.
|
|
2652
|
-
.ser(se_DeleteCaseRuleCommand)
|
|
2653
|
-
.de(de_DeleteCaseRuleCommand)
|
|
2237
|
+
.sc(DeleteCaseRule)
|
|
2654
2238
|
.build() {
|
|
2655
2239
|
}
|
|
2656
2240
|
|
|
@@ -2658,16 +2242,11 @@ class DeleteDomainCommand extends smithyClient.Command
|
|
|
2658
2242
|
.classBuilder()
|
|
2659
2243
|
.ep(commonParams)
|
|
2660
2244
|
.m(function (Command, cs, config, o) {
|
|
2661
|
-
return [
|
|
2662
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2663
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2664
|
-
];
|
|
2245
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2665
2246
|
})
|
|
2666
2247
|
.s("AmazonConnectCases", "DeleteDomain", {})
|
|
2667
2248
|
.n("ConnectCasesClient", "DeleteDomainCommand")
|
|
2668
|
-
.
|
|
2669
|
-
.ser(se_DeleteDomainCommand)
|
|
2670
|
-
.de(de_DeleteDomainCommand)
|
|
2249
|
+
.sc(DeleteDomain)
|
|
2671
2250
|
.build() {
|
|
2672
2251
|
}
|
|
2673
2252
|
|
|
@@ -2675,16 +2254,11 @@ class DeleteFieldCommand extends smithyClient.Command
|
|
|
2675
2254
|
.classBuilder()
|
|
2676
2255
|
.ep(commonParams)
|
|
2677
2256
|
.m(function (Command, cs, config, o) {
|
|
2678
|
-
return [
|
|
2679
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2680
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2681
|
-
];
|
|
2257
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2682
2258
|
})
|
|
2683
2259
|
.s("AmazonConnectCases", "DeleteField", {})
|
|
2684
2260
|
.n("ConnectCasesClient", "DeleteFieldCommand")
|
|
2685
|
-
.
|
|
2686
|
-
.ser(se_DeleteFieldCommand)
|
|
2687
|
-
.de(de_DeleteFieldCommand)
|
|
2261
|
+
.sc(DeleteField)
|
|
2688
2262
|
.build() {
|
|
2689
2263
|
}
|
|
2690
2264
|
|
|
@@ -2692,16 +2266,11 @@ class DeleteLayoutCommand extends smithyClient.Command
|
|
|
2692
2266
|
.classBuilder()
|
|
2693
2267
|
.ep(commonParams)
|
|
2694
2268
|
.m(function (Command, cs, config, o) {
|
|
2695
|
-
return [
|
|
2696
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2697
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2698
|
-
];
|
|
2269
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2699
2270
|
})
|
|
2700
2271
|
.s("AmazonConnectCases", "DeleteLayout", {})
|
|
2701
2272
|
.n("ConnectCasesClient", "DeleteLayoutCommand")
|
|
2702
|
-
.
|
|
2703
|
-
.ser(se_DeleteLayoutCommand)
|
|
2704
|
-
.de(de_DeleteLayoutCommand)
|
|
2273
|
+
.sc(DeleteLayout)
|
|
2705
2274
|
.build() {
|
|
2706
2275
|
}
|
|
2707
2276
|
|
|
@@ -2709,16 +2278,11 @@ class DeleteRelatedItemCommand extends smithyClient.Command
|
|
|
2709
2278
|
.classBuilder()
|
|
2710
2279
|
.ep(commonParams)
|
|
2711
2280
|
.m(function (Command, cs, config, o) {
|
|
2712
|
-
return [
|
|
2713
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2714
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2715
|
-
];
|
|
2281
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2716
2282
|
})
|
|
2717
2283
|
.s("AmazonConnectCases", "DeleteRelatedItem", {})
|
|
2718
2284
|
.n("ConnectCasesClient", "DeleteRelatedItemCommand")
|
|
2719
|
-
.
|
|
2720
|
-
.ser(se_DeleteRelatedItemCommand)
|
|
2721
|
-
.de(de_DeleteRelatedItemCommand)
|
|
2285
|
+
.sc(DeleteRelatedItem)
|
|
2722
2286
|
.build() {
|
|
2723
2287
|
}
|
|
2724
2288
|
|
|
@@ -2726,16 +2290,11 @@ class DeleteTemplateCommand extends smithyClient.Command
|
|
|
2726
2290
|
.classBuilder()
|
|
2727
2291
|
.ep(commonParams)
|
|
2728
2292
|
.m(function (Command, cs, config, o) {
|
|
2729
|
-
return [
|
|
2730
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2731
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2732
|
-
];
|
|
2293
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2733
2294
|
})
|
|
2734
2295
|
.s("AmazonConnectCases", "DeleteTemplate", {})
|
|
2735
2296
|
.n("ConnectCasesClient", "DeleteTemplateCommand")
|
|
2736
|
-
.
|
|
2737
|
-
.ser(se_DeleteTemplateCommand)
|
|
2738
|
-
.de(de_DeleteTemplateCommand)
|
|
2297
|
+
.sc(DeleteTemplate)
|
|
2739
2298
|
.build() {
|
|
2740
2299
|
}
|
|
2741
2300
|
|
|
@@ -2743,16 +2302,11 @@ class GetCaseAuditEventsCommand extends smithyClient.Command
|
|
|
2743
2302
|
.classBuilder()
|
|
2744
2303
|
.ep(commonParams)
|
|
2745
2304
|
.m(function (Command, cs, config, o) {
|
|
2746
|
-
return [
|
|
2747
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2748
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2749
|
-
];
|
|
2305
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2750
2306
|
})
|
|
2751
2307
|
.s("AmazonConnectCases", "GetCaseAuditEvents", {})
|
|
2752
2308
|
.n("ConnectCasesClient", "GetCaseAuditEventsCommand")
|
|
2753
|
-
.
|
|
2754
|
-
.ser(se_GetCaseAuditEventsCommand)
|
|
2755
|
-
.de(de_GetCaseAuditEventsCommand)
|
|
2309
|
+
.sc(GetCaseAuditEvents)
|
|
2756
2310
|
.build() {
|
|
2757
2311
|
}
|
|
2758
2312
|
|
|
@@ -2760,16 +2314,11 @@ class GetCaseCommand extends smithyClient.Command
|
|
|
2760
2314
|
.classBuilder()
|
|
2761
2315
|
.ep(commonParams)
|
|
2762
2316
|
.m(function (Command, cs, config, o) {
|
|
2763
|
-
return [
|
|
2764
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2765
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2766
|
-
];
|
|
2317
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2767
2318
|
})
|
|
2768
2319
|
.s("AmazonConnectCases", "GetCase", {})
|
|
2769
2320
|
.n("ConnectCasesClient", "GetCaseCommand")
|
|
2770
|
-
.
|
|
2771
|
-
.ser(se_GetCaseCommand)
|
|
2772
|
-
.de(de_GetCaseCommand)
|
|
2321
|
+
.sc(GetCase)
|
|
2773
2322
|
.build() {
|
|
2774
2323
|
}
|
|
2775
2324
|
|
|
@@ -2777,16 +2326,11 @@ class GetCaseEventConfigurationCommand extends smithyClient.Command
|
|
|
2777
2326
|
.classBuilder()
|
|
2778
2327
|
.ep(commonParams)
|
|
2779
2328
|
.m(function (Command, cs, config, o) {
|
|
2780
|
-
return [
|
|
2781
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2782
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2783
|
-
];
|
|
2329
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2784
2330
|
})
|
|
2785
2331
|
.s("AmazonConnectCases", "GetCaseEventConfiguration", {})
|
|
2786
2332
|
.n("ConnectCasesClient", "GetCaseEventConfigurationCommand")
|
|
2787
|
-
.
|
|
2788
|
-
.ser(se_GetCaseEventConfigurationCommand)
|
|
2789
|
-
.de(de_GetCaseEventConfigurationCommand)
|
|
2333
|
+
.sc(GetCaseEventConfiguration)
|
|
2790
2334
|
.build() {
|
|
2791
2335
|
}
|
|
2792
2336
|
|
|
@@ -2794,16 +2338,11 @@ class GetDomainCommand extends smithyClient.Command
|
|
|
2794
2338
|
.classBuilder()
|
|
2795
2339
|
.ep(commonParams)
|
|
2796
2340
|
.m(function (Command, cs, config, o) {
|
|
2797
|
-
return [
|
|
2798
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2799
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2800
|
-
];
|
|
2341
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2801
2342
|
})
|
|
2802
2343
|
.s("AmazonConnectCases", "GetDomain", {})
|
|
2803
2344
|
.n("ConnectCasesClient", "GetDomainCommand")
|
|
2804
|
-
.
|
|
2805
|
-
.ser(se_GetDomainCommand)
|
|
2806
|
-
.de(de_GetDomainCommand)
|
|
2345
|
+
.sc(GetDomain)
|
|
2807
2346
|
.build() {
|
|
2808
2347
|
}
|
|
2809
2348
|
|
|
@@ -2811,16 +2350,11 @@ class GetLayoutCommand extends smithyClient.Command
|
|
|
2811
2350
|
.classBuilder()
|
|
2812
2351
|
.ep(commonParams)
|
|
2813
2352
|
.m(function (Command, cs, config, o) {
|
|
2814
|
-
return [
|
|
2815
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2816
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2817
|
-
];
|
|
2353
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2818
2354
|
})
|
|
2819
2355
|
.s("AmazonConnectCases", "GetLayout", {})
|
|
2820
2356
|
.n("ConnectCasesClient", "GetLayoutCommand")
|
|
2821
|
-
.
|
|
2822
|
-
.ser(se_GetLayoutCommand)
|
|
2823
|
-
.de(de_GetLayoutCommand)
|
|
2357
|
+
.sc(GetLayout)
|
|
2824
2358
|
.build() {
|
|
2825
2359
|
}
|
|
2826
2360
|
|
|
@@ -2828,16 +2362,11 @@ class GetTemplateCommand extends smithyClient.Command
|
|
|
2828
2362
|
.classBuilder()
|
|
2829
2363
|
.ep(commonParams)
|
|
2830
2364
|
.m(function (Command, cs, config, o) {
|
|
2831
|
-
return [
|
|
2832
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2833
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2834
|
-
];
|
|
2365
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2835
2366
|
})
|
|
2836
2367
|
.s("AmazonConnectCases", "GetTemplate", {})
|
|
2837
2368
|
.n("ConnectCasesClient", "GetTemplateCommand")
|
|
2838
|
-
.
|
|
2839
|
-
.ser(se_GetTemplateCommand)
|
|
2840
|
-
.de(de_GetTemplateCommand)
|
|
2369
|
+
.sc(GetTemplate)
|
|
2841
2370
|
.build() {
|
|
2842
2371
|
}
|
|
2843
2372
|
|
|
@@ -2845,16 +2374,11 @@ class ListCaseRulesCommand extends smithyClient.Command
|
|
|
2845
2374
|
.classBuilder()
|
|
2846
2375
|
.ep(commonParams)
|
|
2847
2376
|
.m(function (Command, cs, config, o) {
|
|
2848
|
-
return [
|
|
2849
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2850
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2851
|
-
];
|
|
2377
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2852
2378
|
})
|
|
2853
2379
|
.s("AmazonConnectCases", "ListCaseRules", {})
|
|
2854
2380
|
.n("ConnectCasesClient", "ListCaseRulesCommand")
|
|
2855
|
-
.
|
|
2856
|
-
.ser(se_ListCaseRulesCommand)
|
|
2857
|
-
.de(de_ListCaseRulesCommand)
|
|
2381
|
+
.sc(ListCaseRules)
|
|
2858
2382
|
.build() {
|
|
2859
2383
|
}
|
|
2860
2384
|
|
|
@@ -2862,16 +2386,11 @@ class ListCasesForContactCommand extends smithyClient.Command
|
|
|
2862
2386
|
.classBuilder()
|
|
2863
2387
|
.ep(commonParams)
|
|
2864
2388
|
.m(function (Command, cs, config, o) {
|
|
2865
|
-
return [
|
|
2866
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2867
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2868
|
-
];
|
|
2389
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2869
2390
|
})
|
|
2870
2391
|
.s("AmazonConnectCases", "ListCasesForContact", {})
|
|
2871
2392
|
.n("ConnectCasesClient", "ListCasesForContactCommand")
|
|
2872
|
-
.
|
|
2873
|
-
.ser(se_ListCasesForContactCommand)
|
|
2874
|
-
.de(de_ListCasesForContactCommand)
|
|
2393
|
+
.sc(ListCasesForContact)
|
|
2875
2394
|
.build() {
|
|
2876
2395
|
}
|
|
2877
2396
|
|
|
@@ -2879,16 +2398,11 @@ class ListDomainsCommand extends smithyClient.Command
|
|
|
2879
2398
|
.classBuilder()
|
|
2880
2399
|
.ep(commonParams)
|
|
2881
2400
|
.m(function (Command, cs, config, o) {
|
|
2882
|
-
return [
|
|
2883
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2884
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2885
|
-
];
|
|
2401
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2886
2402
|
})
|
|
2887
2403
|
.s("AmazonConnectCases", "ListDomains", {})
|
|
2888
2404
|
.n("ConnectCasesClient", "ListDomainsCommand")
|
|
2889
|
-
.
|
|
2890
|
-
.ser(se_ListDomainsCommand)
|
|
2891
|
-
.de(de_ListDomainsCommand)
|
|
2405
|
+
.sc(ListDomains)
|
|
2892
2406
|
.build() {
|
|
2893
2407
|
}
|
|
2894
2408
|
|
|
@@ -2896,16 +2410,11 @@ class ListFieldOptionsCommand extends smithyClient.Command
|
|
|
2896
2410
|
.classBuilder()
|
|
2897
2411
|
.ep(commonParams)
|
|
2898
2412
|
.m(function (Command, cs, config, o) {
|
|
2899
|
-
return [
|
|
2900
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2901
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2902
|
-
];
|
|
2413
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2903
2414
|
})
|
|
2904
2415
|
.s("AmazonConnectCases", "ListFieldOptions", {})
|
|
2905
2416
|
.n("ConnectCasesClient", "ListFieldOptionsCommand")
|
|
2906
|
-
.
|
|
2907
|
-
.ser(se_ListFieldOptionsCommand)
|
|
2908
|
-
.de(de_ListFieldOptionsCommand)
|
|
2417
|
+
.sc(ListFieldOptions)
|
|
2909
2418
|
.build() {
|
|
2910
2419
|
}
|
|
2911
2420
|
|
|
@@ -2913,16 +2422,11 @@ class ListFieldsCommand extends smithyClient.Command
|
|
|
2913
2422
|
.classBuilder()
|
|
2914
2423
|
.ep(commonParams)
|
|
2915
2424
|
.m(function (Command, cs, config, o) {
|
|
2916
|
-
return [
|
|
2917
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2918
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2919
|
-
];
|
|
2425
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2920
2426
|
})
|
|
2921
2427
|
.s("AmazonConnectCases", "ListFields", {})
|
|
2922
2428
|
.n("ConnectCasesClient", "ListFieldsCommand")
|
|
2923
|
-
.
|
|
2924
|
-
.ser(se_ListFieldsCommand)
|
|
2925
|
-
.de(de_ListFieldsCommand)
|
|
2429
|
+
.sc(ListFields)
|
|
2926
2430
|
.build() {
|
|
2927
2431
|
}
|
|
2928
2432
|
|
|
@@ -2930,16 +2434,11 @@ class ListLayoutsCommand extends smithyClient.Command
|
|
|
2930
2434
|
.classBuilder()
|
|
2931
2435
|
.ep(commonParams)
|
|
2932
2436
|
.m(function (Command, cs, config, o) {
|
|
2933
|
-
return [
|
|
2934
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2935
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2936
|
-
];
|
|
2437
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2937
2438
|
})
|
|
2938
2439
|
.s("AmazonConnectCases", "ListLayouts", {})
|
|
2939
2440
|
.n("ConnectCasesClient", "ListLayoutsCommand")
|
|
2940
|
-
.
|
|
2941
|
-
.ser(se_ListLayoutsCommand)
|
|
2942
|
-
.de(de_ListLayoutsCommand)
|
|
2441
|
+
.sc(ListLayouts)
|
|
2943
2442
|
.build() {
|
|
2944
2443
|
}
|
|
2945
2444
|
|
|
@@ -2947,16 +2446,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
2947
2446
|
.classBuilder()
|
|
2948
2447
|
.ep(commonParams)
|
|
2949
2448
|
.m(function (Command, cs, config, o) {
|
|
2950
|
-
return [
|
|
2951
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2952
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2953
|
-
];
|
|
2449
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2954
2450
|
})
|
|
2955
2451
|
.s("AmazonConnectCases", "ListTagsForResource", {})
|
|
2956
2452
|
.n("ConnectCasesClient", "ListTagsForResourceCommand")
|
|
2957
|
-
.
|
|
2958
|
-
.ser(se_ListTagsForResourceCommand)
|
|
2959
|
-
.de(de_ListTagsForResourceCommand)
|
|
2453
|
+
.sc(ListTagsForResource)
|
|
2960
2454
|
.build() {
|
|
2961
2455
|
}
|
|
2962
2456
|
|
|
@@ -2964,16 +2458,11 @@ class ListTemplatesCommand extends smithyClient.Command
|
|
|
2964
2458
|
.classBuilder()
|
|
2965
2459
|
.ep(commonParams)
|
|
2966
2460
|
.m(function (Command, cs, config, o) {
|
|
2967
|
-
return [
|
|
2968
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2969
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2970
|
-
];
|
|
2461
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2971
2462
|
})
|
|
2972
2463
|
.s("AmazonConnectCases", "ListTemplates", {})
|
|
2973
2464
|
.n("ConnectCasesClient", "ListTemplatesCommand")
|
|
2974
|
-
.
|
|
2975
|
-
.ser(se_ListTemplatesCommand)
|
|
2976
|
-
.de(de_ListTemplatesCommand)
|
|
2465
|
+
.sc(ListTemplates)
|
|
2977
2466
|
.build() {
|
|
2978
2467
|
}
|
|
2979
2468
|
|
|
@@ -2981,16 +2470,11 @@ class PutCaseEventConfigurationCommand extends smithyClient.Command
|
|
|
2981
2470
|
.classBuilder()
|
|
2982
2471
|
.ep(commonParams)
|
|
2983
2472
|
.m(function (Command, cs, config, o) {
|
|
2984
|
-
return [
|
|
2985
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2986
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2987
|
-
];
|
|
2473
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2988
2474
|
})
|
|
2989
2475
|
.s("AmazonConnectCases", "PutCaseEventConfiguration", {})
|
|
2990
2476
|
.n("ConnectCasesClient", "PutCaseEventConfigurationCommand")
|
|
2991
|
-
.
|
|
2992
|
-
.ser(se_PutCaseEventConfigurationCommand)
|
|
2993
|
-
.de(de_PutCaseEventConfigurationCommand)
|
|
2477
|
+
.sc(PutCaseEventConfiguration)
|
|
2994
2478
|
.build() {
|
|
2995
2479
|
}
|
|
2996
2480
|
|
|
@@ -2998,16 +2482,11 @@ class SearchAllRelatedItemsCommand extends smithyClient.Command
|
|
|
2998
2482
|
.classBuilder()
|
|
2999
2483
|
.ep(commonParams)
|
|
3000
2484
|
.m(function (Command, cs, config, o) {
|
|
3001
|
-
return [
|
|
3002
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
3003
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
3004
|
-
];
|
|
2485
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3005
2486
|
})
|
|
3006
2487
|
.s("AmazonConnectCases", "SearchAllRelatedItems", {})
|
|
3007
2488
|
.n("ConnectCasesClient", "SearchAllRelatedItemsCommand")
|
|
3008
|
-
.
|
|
3009
|
-
.ser(se_SearchAllRelatedItemsCommand)
|
|
3010
|
-
.de(de_SearchAllRelatedItemsCommand)
|
|
2489
|
+
.sc(SearchAllRelatedItems)
|
|
3011
2490
|
.build() {
|
|
3012
2491
|
}
|
|
3013
2492
|
|
|
@@ -3015,16 +2494,11 @@ class SearchCasesCommand extends smithyClient.Command
|
|
|
3015
2494
|
.classBuilder()
|
|
3016
2495
|
.ep(commonParams)
|
|
3017
2496
|
.m(function (Command, cs, config, o) {
|
|
3018
|
-
return [
|
|
3019
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
3020
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
3021
|
-
];
|
|
2497
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3022
2498
|
})
|
|
3023
2499
|
.s("AmazonConnectCases", "SearchCases", {})
|
|
3024
2500
|
.n("ConnectCasesClient", "SearchCasesCommand")
|
|
3025
|
-
.
|
|
3026
|
-
.ser(se_SearchCasesCommand)
|
|
3027
|
-
.de(de_SearchCasesCommand)
|
|
2501
|
+
.sc(SearchCases)
|
|
3028
2502
|
.build() {
|
|
3029
2503
|
}
|
|
3030
2504
|
|
|
@@ -3032,16 +2506,11 @@ class SearchRelatedItemsCommand extends smithyClient.Command
|
|
|
3032
2506
|
.classBuilder()
|
|
3033
2507
|
.ep(commonParams)
|
|
3034
2508
|
.m(function (Command, cs, config, o) {
|
|
3035
|
-
return [
|
|
3036
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
3037
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
3038
|
-
];
|
|
2509
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3039
2510
|
})
|
|
3040
2511
|
.s("AmazonConnectCases", "SearchRelatedItems", {})
|
|
3041
2512
|
.n("ConnectCasesClient", "SearchRelatedItemsCommand")
|
|
3042
|
-
.
|
|
3043
|
-
.ser(se_SearchRelatedItemsCommand)
|
|
3044
|
-
.de(de_SearchRelatedItemsCommand)
|
|
2513
|
+
.sc(SearchRelatedItems)
|
|
3045
2514
|
.build() {
|
|
3046
2515
|
}
|
|
3047
2516
|
|
|
@@ -3049,16 +2518,11 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
3049
2518
|
.classBuilder()
|
|
3050
2519
|
.ep(commonParams)
|
|
3051
2520
|
.m(function (Command, cs, config, o) {
|
|
3052
|
-
return [
|
|
3053
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
3054
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
3055
|
-
];
|
|
2521
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3056
2522
|
})
|
|
3057
2523
|
.s("AmazonConnectCases", "TagResource", {})
|
|
3058
2524
|
.n("ConnectCasesClient", "TagResourceCommand")
|
|
3059
|
-
.
|
|
3060
|
-
.ser(se_TagResourceCommand)
|
|
3061
|
-
.de(de_TagResourceCommand)
|
|
2525
|
+
.sc(TagResource)
|
|
3062
2526
|
.build() {
|
|
3063
2527
|
}
|
|
3064
2528
|
|
|
@@ -3066,16 +2530,11 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
3066
2530
|
.classBuilder()
|
|
3067
2531
|
.ep(commonParams)
|
|
3068
2532
|
.m(function (Command, cs, config, o) {
|
|
3069
|
-
return [
|
|
3070
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
3071
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
3072
|
-
];
|
|
2533
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3073
2534
|
})
|
|
3074
2535
|
.s("AmazonConnectCases", "UntagResource", {})
|
|
3075
2536
|
.n("ConnectCasesClient", "UntagResourceCommand")
|
|
3076
|
-
.
|
|
3077
|
-
.ser(se_UntagResourceCommand)
|
|
3078
|
-
.de(de_UntagResourceCommand)
|
|
2537
|
+
.sc(UntagResource)
|
|
3079
2538
|
.build() {
|
|
3080
2539
|
}
|
|
3081
2540
|
|
|
@@ -3083,16 +2542,11 @@ class UpdateCaseCommand extends smithyClient.Command
|
|
|
3083
2542
|
.classBuilder()
|
|
3084
2543
|
.ep(commonParams)
|
|
3085
2544
|
.m(function (Command, cs, config, o) {
|
|
3086
|
-
return [
|
|
3087
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
3088
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
3089
|
-
];
|
|
2545
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3090
2546
|
})
|
|
3091
2547
|
.s("AmazonConnectCases", "UpdateCase", {})
|
|
3092
2548
|
.n("ConnectCasesClient", "UpdateCaseCommand")
|
|
3093
|
-
.
|
|
3094
|
-
.ser(se_UpdateCaseCommand)
|
|
3095
|
-
.de(de_UpdateCaseCommand)
|
|
2549
|
+
.sc(UpdateCase)
|
|
3096
2550
|
.build() {
|
|
3097
2551
|
}
|
|
3098
2552
|
|
|
@@ -3100,16 +2554,11 @@ class UpdateCaseRuleCommand extends smithyClient.Command
|
|
|
3100
2554
|
.classBuilder()
|
|
3101
2555
|
.ep(commonParams)
|
|
3102
2556
|
.m(function (Command, cs, config, o) {
|
|
3103
|
-
return [
|
|
3104
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
3105
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
3106
|
-
];
|
|
2557
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3107
2558
|
})
|
|
3108
2559
|
.s("AmazonConnectCases", "UpdateCaseRule", {})
|
|
3109
2560
|
.n("ConnectCasesClient", "UpdateCaseRuleCommand")
|
|
3110
|
-
.
|
|
3111
|
-
.ser(se_UpdateCaseRuleCommand)
|
|
3112
|
-
.de(de_UpdateCaseRuleCommand)
|
|
2561
|
+
.sc(UpdateCaseRule)
|
|
3113
2562
|
.build() {
|
|
3114
2563
|
}
|
|
3115
2564
|
|
|
@@ -3117,16 +2566,11 @@ class UpdateFieldCommand extends smithyClient.Command
|
|
|
3117
2566
|
.classBuilder()
|
|
3118
2567
|
.ep(commonParams)
|
|
3119
2568
|
.m(function (Command, cs, config, o) {
|
|
3120
|
-
return [
|
|
3121
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
3122
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
3123
|
-
];
|
|
2569
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3124
2570
|
})
|
|
3125
2571
|
.s("AmazonConnectCases", "UpdateField", {})
|
|
3126
2572
|
.n("ConnectCasesClient", "UpdateFieldCommand")
|
|
3127
|
-
.
|
|
3128
|
-
.ser(se_UpdateFieldCommand)
|
|
3129
|
-
.de(de_UpdateFieldCommand)
|
|
2573
|
+
.sc(UpdateField)
|
|
3130
2574
|
.build() {
|
|
3131
2575
|
}
|
|
3132
2576
|
|
|
@@ -3134,16 +2578,11 @@ class UpdateLayoutCommand extends smithyClient.Command
|
|
|
3134
2578
|
.classBuilder()
|
|
3135
2579
|
.ep(commonParams)
|
|
3136
2580
|
.m(function (Command, cs, config, o) {
|
|
3137
|
-
return [
|
|
3138
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
3139
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
3140
|
-
];
|
|
2581
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3141
2582
|
})
|
|
3142
2583
|
.s("AmazonConnectCases", "UpdateLayout", {})
|
|
3143
2584
|
.n("ConnectCasesClient", "UpdateLayoutCommand")
|
|
3144
|
-
.
|
|
3145
|
-
.ser(se_UpdateLayoutCommand)
|
|
3146
|
-
.de(de_UpdateLayoutCommand)
|
|
2585
|
+
.sc(UpdateLayout)
|
|
3147
2586
|
.build() {
|
|
3148
2587
|
}
|
|
3149
2588
|
|
|
@@ -3151,16 +2590,11 @@ class UpdateTemplateCommand extends smithyClient.Command
|
|
|
3151
2590
|
.classBuilder()
|
|
3152
2591
|
.ep(commonParams)
|
|
3153
2592
|
.m(function (Command, cs, config, o) {
|
|
3154
|
-
return [
|
|
3155
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
3156
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
3157
|
-
];
|
|
2593
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3158
2594
|
})
|
|
3159
2595
|
.s("AmazonConnectCases", "UpdateTemplate", {})
|
|
3160
2596
|
.n("ConnectCasesClient", "UpdateTemplateCommand")
|
|
3161
|
-
.
|
|
3162
|
-
.ser(se_UpdateTemplateCommand)
|
|
3163
|
-
.de(de_UpdateTemplateCommand)
|
|
2597
|
+
.sc(UpdateTemplate)
|
|
3164
2598
|
.build() {
|
|
3165
2599
|
}
|
|
3166
2600
|
|
|
@@ -3244,26 +2678,22 @@ Object.defineProperty(exports, "__Client", {
|
|
|
3244
2678
|
enumerable: true,
|
|
3245
2679
|
get: function () { return smithyClient.Client; }
|
|
3246
2680
|
});
|
|
3247
|
-
exports.AccessDeniedException = AccessDeniedException;
|
|
3248
|
-
exports.AuditEventFilterSensitiveLog = AuditEventFilterSensitiveLog;
|
|
3249
|
-
exports.AuditEventPerformedByFilterSensitiveLog = AuditEventPerformedByFilterSensitiveLog;
|
|
2681
|
+
exports.AccessDeniedException = AccessDeniedException$1;
|
|
3250
2682
|
exports.AuditEventType = AuditEventType;
|
|
3251
2683
|
exports.BatchGetCaseRuleCommand = BatchGetCaseRuleCommand;
|
|
3252
2684
|
exports.BatchGetFieldCommand = BatchGetFieldCommand;
|
|
3253
2685
|
exports.BatchPutFieldOptionsCommand = BatchPutFieldOptionsCommand;
|
|
3254
2686
|
exports.CommentBodyTextType = CommentBodyTextType;
|
|
3255
|
-
exports.ConflictException = ConflictException;
|
|
2687
|
+
exports.ConflictException = ConflictException$1;
|
|
3256
2688
|
exports.ConnectCases = ConnectCases;
|
|
3257
2689
|
exports.ConnectCasesClient = ConnectCasesClient;
|
|
3258
|
-
exports.ConnectCasesServiceException = ConnectCasesServiceException;
|
|
2690
|
+
exports.ConnectCasesServiceException = ConnectCasesServiceException$1;
|
|
3259
2691
|
exports.CreateCaseCommand = CreateCaseCommand;
|
|
3260
|
-
exports.CreateCaseRequestFilterSensitiveLog = CreateCaseRequestFilterSensitiveLog;
|
|
3261
2692
|
exports.CreateCaseRuleCommand = CreateCaseRuleCommand;
|
|
3262
2693
|
exports.CreateDomainCommand = CreateDomainCommand;
|
|
3263
2694
|
exports.CreateFieldCommand = CreateFieldCommand;
|
|
3264
2695
|
exports.CreateLayoutCommand = CreateLayoutCommand;
|
|
3265
2696
|
exports.CreateRelatedItemCommand = CreateRelatedItemCommand;
|
|
3266
|
-
exports.CreateRelatedItemRequestFilterSensitiveLog = CreateRelatedItemRequestFilterSensitiveLog;
|
|
3267
2697
|
exports.CreateTemplateCommand = CreateTemplateCommand;
|
|
3268
2698
|
exports.DeleteCaseCommand = DeleteCaseCommand;
|
|
3269
2699
|
exports.DeleteCaseRuleCommand = DeleteCaseRuleCommand;
|
|
@@ -3276,13 +2706,12 @@ exports.DomainStatus = DomainStatus;
|
|
|
3276
2706
|
exports.FieldNamespace = FieldNamespace;
|
|
3277
2707
|
exports.FieldType = FieldType;
|
|
3278
2708
|
exports.GetCaseAuditEventsCommand = GetCaseAuditEventsCommand;
|
|
3279
|
-
exports.GetCaseAuditEventsResponseFilterSensitiveLog = GetCaseAuditEventsResponseFilterSensitiveLog;
|
|
3280
2709
|
exports.GetCaseCommand = GetCaseCommand;
|
|
3281
2710
|
exports.GetCaseEventConfigurationCommand = GetCaseEventConfigurationCommand;
|
|
3282
2711
|
exports.GetDomainCommand = GetDomainCommand;
|
|
3283
2712
|
exports.GetLayoutCommand = GetLayoutCommand;
|
|
3284
2713
|
exports.GetTemplateCommand = GetTemplateCommand;
|
|
3285
|
-
exports.InternalServerException = InternalServerException;
|
|
2714
|
+
exports.InternalServerException = InternalServerException$1;
|
|
3286
2715
|
exports.ListCaseRulesCommand = ListCaseRulesCommand;
|
|
3287
2716
|
exports.ListCasesForContactCommand = ListCasesForContactCommand;
|
|
3288
2717
|
exports.ListDomainsCommand = ListDomainsCommand;
|
|
@@ -3293,42 +2722,26 @@ exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
|
3293
2722
|
exports.ListTemplatesCommand = ListTemplatesCommand;
|
|
3294
2723
|
exports.Order = Order;
|
|
3295
2724
|
exports.PutCaseEventConfigurationCommand = PutCaseEventConfigurationCommand;
|
|
3296
|
-
exports.RelatedItemContentFilterSensitiveLog = RelatedItemContentFilterSensitiveLog;
|
|
3297
|
-
exports.RelatedItemInputContentFilterSensitiveLog = RelatedItemInputContentFilterSensitiveLog;
|
|
3298
2725
|
exports.RelatedItemType = RelatedItemType;
|
|
3299
|
-
exports.
|
|
3300
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2726
|
+
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
3301
2727
|
exports.RuleType = RuleType;
|
|
3302
2728
|
exports.SearchAllRelatedItemsCommand = SearchAllRelatedItemsCommand;
|
|
3303
|
-
exports.SearchAllRelatedItemsRequestFilterSensitiveLog = SearchAllRelatedItemsRequestFilterSensitiveLog;
|
|
3304
|
-
exports.SearchAllRelatedItemsResponseFilterSensitiveLog = SearchAllRelatedItemsResponseFilterSensitiveLog;
|
|
3305
|
-
exports.SearchAllRelatedItemsResponseItemFilterSensitiveLog = SearchAllRelatedItemsResponseItemFilterSensitiveLog;
|
|
3306
2729
|
exports.SearchAllRelatedItemsSortProperty = SearchAllRelatedItemsSortProperty;
|
|
3307
2730
|
exports.SearchCasesCommand = SearchCasesCommand;
|
|
3308
2731
|
exports.SearchRelatedItemsCommand = SearchRelatedItemsCommand;
|
|
3309
|
-
exports.
|
|
3310
|
-
exports.SearchRelatedItemsResponseFilterSensitiveLog = SearchRelatedItemsResponseFilterSensitiveLog;
|
|
3311
|
-
exports.SearchRelatedItemsResponseItemFilterSensitiveLog = SearchRelatedItemsResponseItemFilterSensitiveLog;
|
|
3312
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
3313
|
-
exports.SlaConfigurationFilterSensitiveLog = SlaConfigurationFilterSensitiveLog;
|
|
3314
|
-
exports.SlaContentFilterSensitiveLog = SlaContentFilterSensitiveLog;
|
|
3315
|
-
exports.SlaFilterFilterSensitiveLog = SlaFilterFilterSensitiveLog;
|
|
3316
|
-
exports.SlaInputConfigurationFilterSensitiveLog = SlaInputConfigurationFilterSensitiveLog;
|
|
3317
|
-
exports.SlaInputContentFilterSensitiveLog = SlaInputContentFilterSensitiveLog;
|
|
2732
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
|
|
3318
2733
|
exports.SlaStatus = SlaStatus;
|
|
3319
2734
|
exports.SlaType = SlaType;
|
|
3320
2735
|
exports.TagResourceCommand = TagResourceCommand;
|
|
3321
2736
|
exports.TemplateStatus = TemplateStatus;
|
|
3322
|
-
exports.ThrottlingException = ThrottlingException;
|
|
2737
|
+
exports.ThrottlingException = ThrottlingException$1;
|
|
3323
2738
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
3324
2739
|
exports.UpdateCaseCommand = UpdateCaseCommand;
|
|
3325
|
-
exports.UpdateCaseRequestFilterSensitiveLog = UpdateCaseRequestFilterSensitiveLog;
|
|
3326
2740
|
exports.UpdateCaseRuleCommand = UpdateCaseRuleCommand;
|
|
3327
2741
|
exports.UpdateFieldCommand = UpdateFieldCommand;
|
|
3328
2742
|
exports.UpdateLayoutCommand = UpdateLayoutCommand;
|
|
3329
2743
|
exports.UpdateTemplateCommand = UpdateTemplateCommand;
|
|
3330
|
-
exports.
|
|
3331
|
-
exports.ValidationException = ValidationException;
|
|
2744
|
+
exports.ValidationException = ValidationException$1;
|
|
3332
2745
|
exports.paginateGetCase = paginateGetCase;
|
|
3333
2746
|
exports.paginateGetCaseAuditEvents = paginateGetCaseAuditEvents;
|
|
3334
2747
|
exports.paginateListCaseRules = paginateListCaseRules;
|