@aws-sdk/client-appintegrations 3.927.0 → 3.929.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 +1016 -1008
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/AppIntegrationsClient.js +2 -0
- package/dist-es/commands/CreateApplicationCommand.js +3 -9
- package/dist-es/commands/CreateDataIntegrationAssociationCommand.js +3 -9
- package/dist-es/commands/CreateDataIntegrationCommand.js +3 -9
- package/dist-es/commands/CreateEventIntegrationCommand.js +3 -9
- package/dist-es/commands/DeleteApplicationCommand.js +3 -9
- package/dist-es/commands/DeleteDataIntegrationCommand.js +3 -9
- package/dist-es/commands/DeleteEventIntegrationCommand.js +3 -9
- package/dist-es/commands/GetApplicationCommand.js +3 -9
- package/dist-es/commands/GetDataIntegrationCommand.js +3 -9
- package/dist-es/commands/GetEventIntegrationCommand.js +3 -9
- package/dist-es/commands/ListApplicationAssociationsCommand.js +3 -9
- package/dist-es/commands/ListApplicationsCommand.js +3 -9
- package/dist-es/commands/ListDataIntegrationAssociationsCommand.js +3 -9
- package/dist-es/commands/ListDataIntegrationsCommand.js +3 -9
- package/dist-es/commands/ListEventIntegrationAssociationsCommand.js +3 -9
- package/dist-es/commands/ListEventIntegrationsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateApplicationCommand.js +3 -9
- package/dist-es/commands/UpdateDataIntegrationAssociationCommand.js +3 -9
- package/dist-es/commands/UpdateDataIntegrationCommand.js +3 -9
- package/dist-es/commands/UpdateEventIntegrationCommand.js +3 -9
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +960 -0
- package/dist-types/AppIntegrationsClient.d.ts +10 -1
- 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 +117 -0
- package/dist-types/ts3.4/AppIntegrationsClient.d.ts +4 -0
- 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 +123 -0
- package/package.json +5 -6
- package/dist-es/protocols/Aws_restJson1.js +0 -829
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -209
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -281
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 AppIntegrationsClient 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 AppIntegrationsClient extends smithyClient.Client {
|
|
|
111
110
|
}
|
|
112
111
|
}
|
|
113
112
|
|
|
114
|
-
class AppIntegrationsServiceException extends smithyClient.ServiceException {
|
|
113
|
+
let AppIntegrationsServiceException$1 = class AppIntegrationsServiceException extends smithyClient.ServiceException {
|
|
115
114
|
constructor(options) {
|
|
116
115
|
super(options);
|
|
117
116
|
Object.setPrototypeOf(this, AppIntegrationsServiceException.prototype);
|
|
118
117
|
}
|
|
119
|
-
}
|
|
118
|
+
};
|
|
120
119
|
|
|
121
|
-
class AccessDeniedException extends AppIntegrationsServiceException {
|
|
120
|
+
let AccessDeniedException$1 = class AccessDeniedException extends AppIntegrationsServiceException$1 {
|
|
122
121
|
name = "AccessDeniedException";
|
|
123
122
|
$fault = "client";
|
|
124
123
|
Message;
|
|
@@ -131,12 +130,12 @@ class AccessDeniedException extends AppIntegrationsServiceException {
|
|
|
131
130
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
132
131
|
this.Message = opts.Message;
|
|
133
132
|
}
|
|
134
|
-
}
|
|
133
|
+
};
|
|
135
134
|
const ContactHandlingScope = {
|
|
136
135
|
CROSS_CONTACTS: "CROSS_CONTACTS",
|
|
137
136
|
PER_CONTACT: "PER_CONTACT",
|
|
138
137
|
};
|
|
139
|
-
class DuplicateResourceException extends AppIntegrationsServiceException {
|
|
138
|
+
let DuplicateResourceException$1 = class DuplicateResourceException extends AppIntegrationsServiceException$1 {
|
|
140
139
|
name = "DuplicateResourceException";
|
|
141
140
|
$fault = "client";
|
|
142
141
|
Message;
|
|
@@ -149,8 +148,8 @@ class DuplicateResourceException extends AppIntegrationsServiceException {
|
|
|
149
148
|
Object.setPrototypeOf(this, DuplicateResourceException.prototype);
|
|
150
149
|
this.Message = opts.Message;
|
|
151
150
|
}
|
|
152
|
-
}
|
|
153
|
-
class InternalServiceError extends AppIntegrationsServiceException {
|
|
151
|
+
};
|
|
152
|
+
let InternalServiceError$1 = class InternalServiceError extends AppIntegrationsServiceException$1 {
|
|
154
153
|
name = "InternalServiceError";
|
|
155
154
|
$fault = "server";
|
|
156
155
|
Message;
|
|
@@ -163,8 +162,8 @@ class InternalServiceError extends AppIntegrationsServiceException {
|
|
|
163
162
|
Object.setPrototypeOf(this, InternalServiceError.prototype);
|
|
164
163
|
this.Message = opts.Message;
|
|
165
164
|
}
|
|
166
|
-
}
|
|
167
|
-
class InvalidRequestException extends AppIntegrationsServiceException {
|
|
165
|
+
};
|
|
166
|
+
let InvalidRequestException$1 = class InvalidRequestException extends AppIntegrationsServiceException$1 {
|
|
168
167
|
name = "InvalidRequestException";
|
|
169
168
|
$fault = "client";
|
|
170
169
|
Message;
|
|
@@ -177,8 +176,8 @@ class InvalidRequestException extends AppIntegrationsServiceException {
|
|
|
177
176
|
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
178
177
|
this.Message = opts.Message;
|
|
179
178
|
}
|
|
180
|
-
}
|
|
181
|
-
class ResourceQuotaExceededException extends AppIntegrationsServiceException {
|
|
179
|
+
};
|
|
180
|
+
let ResourceQuotaExceededException$1 = class ResourceQuotaExceededException extends AppIntegrationsServiceException$1 {
|
|
182
181
|
name = "ResourceQuotaExceededException";
|
|
183
182
|
$fault = "client";
|
|
184
183
|
Message;
|
|
@@ -191,8 +190,8 @@ class ResourceQuotaExceededException extends AppIntegrationsServiceException {
|
|
|
191
190
|
Object.setPrototypeOf(this, ResourceQuotaExceededException.prototype);
|
|
192
191
|
this.Message = opts.Message;
|
|
193
192
|
}
|
|
194
|
-
}
|
|
195
|
-
class ThrottlingException extends AppIntegrationsServiceException {
|
|
193
|
+
};
|
|
194
|
+
let ThrottlingException$1 = class ThrottlingException extends AppIntegrationsServiceException$1 {
|
|
196
195
|
name = "ThrottlingException";
|
|
197
196
|
$fault = "client";
|
|
198
197
|
Message;
|
|
@@ -205,8 +204,8 @@ class ThrottlingException extends AppIntegrationsServiceException {
|
|
|
205
204
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
206
205
|
this.Message = opts.Message;
|
|
207
206
|
}
|
|
208
|
-
}
|
|
209
|
-
class UnsupportedOperationException extends AppIntegrationsServiceException {
|
|
207
|
+
};
|
|
208
|
+
let UnsupportedOperationException$1 = class UnsupportedOperationException extends AppIntegrationsServiceException$1 {
|
|
210
209
|
name = "UnsupportedOperationException";
|
|
211
210
|
$fault = "client";
|
|
212
211
|
Message;
|
|
@@ -219,12 +218,12 @@ class UnsupportedOperationException extends AppIntegrationsServiceException {
|
|
|
219
218
|
Object.setPrototypeOf(this, UnsupportedOperationException.prototype);
|
|
220
219
|
this.Message = opts.Message;
|
|
221
220
|
}
|
|
222
|
-
}
|
|
221
|
+
};
|
|
223
222
|
const ExecutionMode = {
|
|
224
223
|
ON_DEMAND: "ON_DEMAND",
|
|
225
224
|
SCHEDULED: "SCHEDULED",
|
|
226
225
|
};
|
|
227
|
-
class ResourceNotFoundException extends AppIntegrationsServiceException {
|
|
226
|
+
let ResourceNotFoundException$1 = class ResourceNotFoundException extends AppIntegrationsServiceException$1 {
|
|
228
227
|
name = "ResourceNotFoundException";
|
|
229
228
|
$fault = "client";
|
|
230
229
|
Message;
|
|
@@ -237,850 +236,969 @@ class ResourceNotFoundException extends AppIntegrationsServiceException {
|
|
|
237
236
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
238
237
|
this.Message = opts.Message;
|
|
239
238
|
}
|
|
240
|
-
}
|
|
239
|
+
};
|
|
241
240
|
const ExecutionStatus = {
|
|
242
241
|
COMPLETED: "COMPLETED",
|
|
243
242
|
FAILED: "FAILED",
|
|
244
243
|
IN_PROGRESS: "IN_PROGRESS",
|
|
245
244
|
};
|
|
246
245
|
|
|
247
|
-
const
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
const
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
const
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
const
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
const
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
const
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
const
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
const
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
const
|
|
367
|
-
|
|
368
|
-
const headers = {};
|
|
369
|
-
b.bp("/dataIntegrations/{Identifier}");
|
|
370
|
-
b.p("Identifier", () => input.Identifier, "{Identifier}", false);
|
|
371
|
-
let body;
|
|
372
|
-
b.m("GET").h(headers).b(body);
|
|
373
|
-
return b.build();
|
|
374
|
-
};
|
|
375
|
-
const se_GetEventIntegrationCommand = async (input, context) => {
|
|
376
|
-
const b = core.requestBuilder(input, context);
|
|
377
|
-
const headers = {};
|
|
378
|
-
b.bp("/eventIntegrations/{Name}");
|
|
379
|
-
b.p("Name", () => input.Name, "{Name}", false);
|
|
380
|
-
let body;
|
|
381
|
-
b.m("GET").h(headers).b(body);
|
|
382
|
-
return b.build();
|
|
383
|
-
};
|
|
384
|
-
const se_ListApplicationAssociationsCommand = async (input, context) => {
|
|
385
|
-
const b = core.requestBuilder(input, context);
|
|
386
|
-
const headers = {};
|
|
387
|
-
b.bp("/applications/{ApplicationId}/associations");
|
|
388
|
-
b.p("ApplicationId", () => input.ApplicationId, "{ApplicationId}", false);
|
|
389
|
-
const query = smithyClient.map({
|
|
390
|
-
[_nT]: [, input[_NT]],
|
|
391
|
-
[_mR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
|
|
392
|
-
});
|
|
393
|
-
let body;
|
|
394
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
395
|
-
return b.build();
|
|
396
|
-
};
|
|
397
|
-
const se_ListApplicationsCommand = async (input, context) => {
|
|
398
|
-
const b = core.requestBuilder(input, context);
|
|
399
|
-
const headers = {};
|
|
400
|
-
b.bp("/applications");
|
|
401
|
-
const query = smithyClient.map({
|
|
402
|
-
[_nT]: [, input[_NT]],
|
|
403
|
-
[_mR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
|
|
404
|
-
});
|
|
405
|
-
let body;
|
|
406
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
407
|
-
return b.build();
|
|
408
|
-
};
|
|
409
|
-
const se_ListDataIntegrationAssociationsCommand = async (input, context) => {
|
|
410
|
-
const b = core.requestBuilder(input, context);
|
|
411
|
-
const headers = {};
|
|
412
|
-
b.bp("/dataIntegrations/{DataIntegrationIdentifier}/associations");
|
|
413
|
-
b.p("DataIntegrationIdentifier", () => input.DataIntegrationIdentifier, "{DataIntegrationIdentifier}", false);
|
|
414
|
-
const query = smithyClient.map({
|
|
415
|
-
[_nT]: [, input[_NT]],
|
|
416
|
-
[_mR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
|
|
417
|
-
});
|
|
418
|
-
let body;
|
|
419
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
420
|
-
return b.build();
|
|
421
|
-
};
|
|
422
|
-
const se_ListDataIntegrationsCommand = async (input, context) => {
|
|
423
|
-
const b = core.requestBuilder(input, context);
|
|
424
|
-
const headers = {};
|
|
425
|
-
b.bp("/dataIntegrations");
|
|
426
|
-
const query = smithyClient.map({
|
|
427
|
-
[_nT]: [, input[_NT]],
|
|
428
|
-
[_mR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
|
|
429
|
-
});
|
|
430
|
-
let body;
|
|
431
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
432
|
-
return b.build();
|
|
433
|
-
};
|
|
434
|
-
const se_ListEventIntegrationAssociationsCommand = async (input, context) => {
|
|
435
|
-
const b = core.requestBuilder(input, context);
|
|
436
|
-
const headers = {};
|
|
437
|
-
b.bp("/eventIntegrations/{EventIntegrationName}/associations");
|
|
438
|
-
b.p("EventIntegrationName", () => input.EventIntegrationName, "{EventIntegrationName}", false);
|
|
439
|
-
const query = smithyClient.map({
|
|
440
|
-
[_nT]: [, input[_NT]],
|
|
441
|
-
[_mR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
|
|
442
|
-
});
|
|
443
|
-
let body;
|
|
444
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
445
|
-
return b.build();
|
|
446
|
-
};
|
|
447
|
-
const se_ListEventIntegrationsCommand = async (input, context) => {
|
|
448
|
-
const b = core.requestBuilder(input, context);
|
|
449
|
-
const headers = {};
|
|
450
|
-
b.bp("/eventIntegrations");
|
|
451
|
-
const query = smithyClient.map({
|
|
452
|
-
[_nT]: [, input[_NT]],
|
|
453
|
-
[_mR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
|
|
454
|
-
});
|
|
455
|
-
let body;
|
|
456
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
457
|
-
return b.build();
|
|
458
|
-
};
|
|
459
|
-
const se_ListTagsForResourceCommand = async (input, context) => {
|
|
460
|
-
const b = core.requestBuilder(input, context);
|
|
461
|
-
const headers = {};
|
|
462
|
-
b.bp("/tags/{resourceArn}");
|
|
463
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
464
|
-
let body;
|
|
465
|
-
b.m("GET").h(headers).b(body);
|
|
466
|
-
return b.build();
|
|
467
|
-
};
|
|
468
|
-
const se_TagResourceCommand = async (input, context) => {
|
|
469
|
-
const b = core.requestBuilder(input, context);
|
|
470
|
-
const headers = {
|
|
471
|
-
"content-type": "application/json",
|
|
472
|
-
};
|
|
473
|
-
b.bp("/tags/{resourceArn}");
|
|
474
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
475
|
-
let body;
|
|
476
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
477
|
-
tags: (_) => smithyClient._json(_),
|
|
478
|
-
}));
|
|
479
|
-
b.m("POST").h(headers).b(body);
|
|
480
|
-
return b.build();
|
|
481
|
-
};
|
|
482
|
-
const se_UntagResourceCommand = async (input, context) => {
|
|
483
|
-
const b = core.requestBuilder(input, context);
|
|
484
|
-
const headers = {};
|
|
485
|
-
b.bp("/tags/{resourceArn}");
|
|
486
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
487
|
-
const query = smithyClient.map({
|
|
488
|
-
[_tK]: [smithyClient.expectNonNull(input.tagKeys, `tagKeys`) != null, () => input[_tK] || []],
|
|
489
|
-
});
|
|
490
|
-
let body;
|
|
491
|
-
b.m("DELETE").h(headers).q(query).b(body);
|
|
492
|
-
return b.build();
|
|
493
|
-
};
|
|
494
|
-
const se_UpdateApplicationCommand = async (input, context) => {
|
|
495
|
-
const b = core.requestBuilder(input, context);
|
|
496
|
-
const headers = {
|
|
497
|
-
"content-type": "application/json",
|
|
498
|
-
};
|
|
499
|
-
b.bp("/applications/{Arn}");
|
|
500
|
-
b.p("Arn", () => input.Arn, "{Arn}", false);
|
|
501
|
-
let body;
|
|
502
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
503
|
-
ApplicationConfig: (_) => smithyClient._json(_),
|
|
504
|
-
ApplicationSourceConfig: (_) => smithyClient._json(_),
|
|
505
|
-
Description: [],
|
|
506
|
-
IframeConfig: (_) => smithyClient._json(_),
|
|
507
|
-
InitializationTimeout: [],
|
|
508
|
-
IsService: [],
|
|
509
|
-
Name: [],
|
|
510
|
-
Permissions: (_) => smithyClient._json(_),
|
|
511
|
-
Publications: (_) => smithyClient._json(_),
|
|
512
|
-
Subscriptions: (_) => smithyClient._json(_),
|
|
513
|
-
}));
|
|
514
|
-
b.m("PATCH").h(headers).b(body);
|
|
515
|
-
return b.build();
|
|
516
|
-
};
|
|
517
|
-
const se_UpdateDataIntegrationCommand = async (input, context) => {
|
|
518
|
-
const b = core.requestBuilder(input, context);
|
|
519
|
-
const headers = {
|
|
520
|
-
"content-type": "application/json",
|
|
521
|
-
};
|
|
522
|
-
b.bp("/dataIntegrations/{Identifier}");
|
|
523
|
-
b.p("Identifier", () => input.Identifier, "{Identifier}", false);
|
|
524
|
-
let body;
|
|
525
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
526
|
-
Description: [],
|
|
527
|
-
Name: [],
|
|
528
|
-
}));
|
|
529
|
-
b.m("PATCH").h(headers).b(body);
|
|
530
|
-
return b.build();
|
|
531
|
-
};
|
|
532
|
-
const se_UpdateDataIntegrationAssociationCommand = async (input, context) => {
|
|
533
|
-
const b = core.requestBuilder(input, context);
|
|
534
|
-
const headers = {
|
|
535
|
-
"content-type": "application/json",
|
|
536
|
-
};
|
|
537
|
-
b.bp("/dataIntegrations/{DataIntegrationIdentifier}/associations/{DataIntegrationAssociationIdentifier}");
|
|
538
|
-
b.p("DataIntegrationIdentifier", () => input.DataIntegrationIdentifier, "{DataIntegrationIdentifier}", false);
|
|
539
|
-
b.p("DataIntegrationAssociationIdentifier", () => input.DataIntegrationAssociationIdentifier, "{DataIntegrationAssociationIdentifier}", false);
|
|
540
|
-
let body;
|
|
541
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
542
|
-
ExecutionConfiguration: (_) => smithyClient._json(_),
|
|
543
|
-
}));
|
|
544
|
-
b.m("PATCH").h(headers).b(body);
|
|
545
|
-
return b.build();
|
|
546
|
-
};
|
|
547
|
-
const se_UpdateEventIntegrationCommand = async (input, context) => {
|
|
548
|
-
const b = core.requestBuilder(input, context);
|
|
549
|
-
const headers = {
|
|
550
|
-
"content-type": "application/json",
|
|
551
|
-
};
|
|
552
|
-
b.bp("/eventIntegrations/{Name}");
|
|
553
|
-
b.p("Name", () => input.Name, "{Name}", false);
|
|
554
|
-
let body;
|
|
555
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
556
|
-
Description: [],
|
|
557
|
-
}));
|
|
558
|
-
b.m("PATCH").h(headers).b(body);
|
|
559
|
-
return b.build();
|
|
560
|
-
};
|
|
561
|
-
const de_CreateApplicationCommand = async (output, context) => {
|
|
562
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
563
|
-
return de_CommandError(output, context);
|
|
564
|
-
}
|
|
565
|
-
const contents = smithyClient.map({
|
|
566
|
-
$metadata: deserializeMetadata(output),
|
|
567
|
-
});
|
|
568
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
569
|
-
const doc = smithyClient.take(data, {
|
|
570
|
-
Arn: smithyClient.expectString,
|
|
571
|
-
Id: smithyClient.expectString,
|
|
572
|
-
});
|
|
573
|
-
Object.assign(contents, doc);
|
|
574
|
-
return contents;
|
|
575
|
-
};
|
|
576
|
-
const de_CreateDataIntegrationCommand = async (output, context) => {
|
|
577
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
578
|
-
return de_CommandError(output, context);
|
|
579
|
-
}
|
|
580
|
-
const contents = smithyClient.map({
|
|
581
|
-
$metadata: deserializeMetadata(output),
|
|
582
|
-
});
|
|
583
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
584
|
-
const doc = smithyClient.take(data, {
|
|
585
|
-
Arn: smithyClient.expectString,
|
|
586
|
-
ClientToken: smithyClient.expectString,
|
|
587
|
-
Description: smithyClient.expectString,
|
|
588
|
-
FileConfiguration: smithyClient._json,
|
|
589
|
-
Id: smithyClient.expectString,
|
|
590
|
-
KmsKey: smithyClient.expectString,
|
|
591
|
-
Name: smithyClient.expectString,
|
|
592
|
-
ObjectConfiguration: smithyClient._json,
|
|
593
|
-
ScheduleConfiguration: smithyClient._json,
|
|
594
|
-
SourceURI: smithyClient.expectString,
|
|
595
|
-
Tags: smithyClient._json,
|
|
596
|
-
});
|
|
597
|
-
Object.assign(contents, doc);
|
|
598
|
-
return contents;
|
|
599
|
-
};
|
|
600
|
-
const de_CreateDataIntegrationAssociationCommand = async (output, context) => {
|
|
601
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
602
|
-
return de_CommandError(output, context);
|
|
603
|
-
}
|
|
604
|
-
const contents = smithyClient.map({
|
|
605
|
-
$metadata: deserializeMetadata(output),
|
|
606
|
-
});
|
|
607
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
608
|
-
const doc = smithyClient.take(data, {
|
|
609
|
-
DataIntegrationArn: smithyClient.expectString,
|
|
610
|
-
DataIntegrationAssociationId: smithyClient.expectString,
|
|
611
|
-
});
|
|
612
|
-
Object.assign(contents, doc);
|
|
613
|
-
return contents;
|
|
614
|
-
};
|
|
615
|
-
const de_CreateEventIntegrationCommand = async (output, context) => {
|
|
616
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
617
|
-
return de_CommandError(output, context);
|
|
618
|
-
}
|
|
619
|
-
const contents = smithyClient.map({
|
|
620
|
-
$metadata: deserializeMetadata(output),
|
|
621
|
-
});
|
|
622
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
623
|
-
const doc = smithyClient.take(data, {
|
|
624
|
-
EventIntegrationArn: smithyClient.expectString,
|
|
625
|
-
});
|
|
626
|
-
Object.assign(contents, doc);
|
|
627
|
-
return contents;
|
|
628
|
-
};
|
|
629
|
-
const de_DeleteApplicationCommand = async (output, context) => {
|
|
630
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
631
|
-
return de_CommandError(output, context);
|
|
632
|
-
}
|
|
633
|
-
const contents = smithyClient.map({
|
|
634
|
-
$metadata: deserializeMetadata(output),
|
|
635
|
-
});
|
|
636
|
-
await smithyClient.collectBody(output.body, context);
|
|
637
|
-
return contents;
|
|
638
|
-
};
|
|
639
|
-
const de_DeleteDataIntegrationCommand = async (output, context) => {
|
|
640
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
641
|
-
return de_CommandError(output, context);
|
|
642
|
-
}
|
|
643
|
-
const contents = smithyClient.map({
|
|
644
|
-
$metadata: deserializeMetadata(output),
|
|
645
|
-
});
|
|
646
|
-
await smithyClient.collectBody(output.body, context);
|
|
647
|
-
return contents;
|
|
648
|
-
};
|
|
649
|
-
const de_DeleteEventIntegrationCommand = async (output, context) => {
|
|
650
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
651
|
-
return de_CommandError(output, context);
|
|
652
|
-
}
|
|
653
|
-
const contents = smithyClient.map({
|
|
654
|
-
$metadata: deserializeMetadata(output),
|
|
655
|
-
});
|
|
656
|
-
await smithyClient.collectBody(output.body, context);
|
|
657
|
-
return contents;
|
|
658
|
-
};
|
|
659
|
-
const de_GetApplicationCommand = async (output, context) => {
|
|
660
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
661
|
-
return de_CommandError(output, context);
|
|
662
|
-
}
|
|
663
|
-
const contents = smithyClient.map({
|
|
664
|
-
$metadata: deserializeMetadata(output),
|
|
665
|
-
});
|
|
666
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
667
|
-
const doc = smithyClient.take(data, {
|
|
668
|
-
ApplicationConfig: smithyClient._json,
|
|
669
|
-
ApplicationSourceConfig: smithyClient._json,
|
|
670
|
-
Arn: smithyClient.expectString,
|
|
671
|
-
CreatedTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
672
|
-
Description: smithyClient.expectString,
|
|
673
|
-
Id: smithyClient.expectString,
|
|
674
|
-
IframeConfig: smithyClient._json,
|
|
675
|
-
InitializationTimeout: smithyClient.expectInt32,
|
|
676
|
-
IsService: smithyClient.expectBoolean,
|
|
677
|
-
LastModifiedTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
678
|
-
Name: smithyClient.expectString,
|
|
679
|
-
Namespace: smithyClient.expectString,
|
|
680
|
-
Permissions: smithyClient._json,
|
|
681
|
-
Publications: smithyClient._json,
|
|
682
|
-
Subscriptions: smithyClient._json,
|
|
683
|
-
Tags: smithyClient._json,
|
|
684
|
-
});
|
|
685
|
-
Object.assign(contents, doc);
|
|
686
|
-
return contents;
|
|
687
|
-
};
|
|
688
|
-
const de_GetDataIntegrationCommand = async (output, context) => {
|
|
689
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
690
|
-
return de_CommandError(output, context);
|
|
691
|
-
}
|
|
692
|
-
const contents = smithyClient.map({
|
|
693
|
-
$metadata: deserializeMetadata(output),
|
|
694
|
-
});
|
|
695
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
696
|
-
const doc = smithyClient.take(data, {
|
|
697
|
-
Arn: smithyClient.expectString,
|
|
698
|
-
Description: smithyClient.expectString,
|
|
699
|
-
FileConfiguration: smithyClient._json,
|
|
700
|
-
Id: smithyClient.expectString,
|
|
701
|
-
KmsKey: smithyClient.expectString,
|
|
702
|
-
Name: smithyClient.expectString,
|
|
703
|
-
ObjectConfiguration: smithyClient._json,
|
|
704
|
-
ScheduleConfiguration: smithyClient._json,
|
|
705
|
-
SourceURI: smithyClient.expectString,
|
|
706
|
-
Tags: smithyClient._json,
|
|
707
|
-
});
|
|
708
|
-
Object.assign(contents, doc);
|
|
709
|
-
return contents;
|
|
710
|
-
};
|
|
711
|
-
const de_GetEventIntegrationCommand = async (output, context) => {
|
|
712
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
713
|
-
return de_CommandError(output, context);
|
|
714
|
-
}
|
|
715
|
-
const contents = smithyClient.map({
|
|
716
|
-
$metadata: deserializeMetadata(output),
|
|
717
|
-
});
|
|
718
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
719
|
-
const doc = smithyClient.take(data, {
|
|
720
|
-
Description: smithyClient.expectString,
|
|
721
|
-
EventBridgeBus: smithyClient.expectString,
|
|
722
|
-
EventFilter: smithyClient._json,
|
|
723
|
-
EventIntegrationArn: smithyClient.expectString,
|
|
724
|
-
Name: smithyClient.expectString,
|
|
725
|
-
Tags: smithyClient._json,
|
|
726
|
-
});
|
|
727
|
-
Object.assign(contents, doc);
|
|
728
|
-
return contents;
|
|
729
|
-
};
|
|
730
|
-
const de_ListApplicationAssociationsCommand = async (output, context) => {
|
|
731
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
732
|
-
return de_CommandError(output, context);
|
|
733
|
-
}
|
|
734
|
-
const contents = smithyClient.map({
|
|
735
|
-
$metadata: deserializeMetadata(output),
|
|
736
|
-
});
|
|
737
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
738
|
-
const doc = smithyClient.take(data, {
|
|
739
|
-
ApplicationAssociations: smithyClient._json,
|
|
740
|
-
NextToken: smithyClient.expectString,
|
|
741
|
-
});
|
|
742
|
-
Object.assign(contents, doc);
|
|
743
|
-
return contents;
|
|
744
|
-
};
|
|
745
|
-
const de_ListApplicationsCommand = async (output, context) => {
|
|
746
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
747
|
-
return de_CommandError(output, context);
|
|
748
|
-
}
|
|
749
|
-
const contents = smithyClient.map({
|
|
750
|
-
$metadata: deserializeMetadata(output),
|
|
751
|
-
});
|
|
752
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
753
|
-
const doc = smithyClient.take(data, {
|
|
754
|
-
Applications: (_) => de_ApplicationsList(_),
|
|
755
|
-
NextToken: smithyClient.expectString,
|
|
756
|
-
});
|
|
757
|
-
Object.assign(contents, doc);
|
|
758
|
-
return contents;
|
|
759
|
-
};
|
|
760
|
-
const de_ListDataIntegrationAssociationsCommand = async (output, context) => {
|
|
761
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
762
|
-
return de_CommandError(output, context);
|
|
763
|
-
}
|
|
764
|
-
const contents = smithyClient.map({
|
|
765
|
-
$metadata: deserializeMetadata(output),
|
|
766
|
-
});
|
|
767
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
768
|
-
const doc = smithyClient.take(data, {
|
|
769
|
-
DataIntegrationAssociations: smithyClient._json,
|
|
770
|
-
NextToken: smithyClient.expectString,
|
|
771
|
-
});
|
|
772
|
-
Object.assign(contents, doc);
|
|
773
|
-
return contents;
|
|
774
|
-
};
|
|
775
|
-
const de_ListDataIntegrationsCommand = async (output, context) => {
|
|
776
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
777
|
-
return de_CommandError(output, context);
|
|
778
|
-
}
|
|
779
|
-
const contents = smithyClient.map({
|
|
780
|
-
$metadata: deserializeMetadata(output),
|
|
781
|
-
});
|
|
782
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
783
|
-
const doc = smithyClient.take(data, {
|
|
784
|
-
DataIntegrations: smithyClient._json,
|
|
785
|
-
NextToken: smithyClient.expectString,
|
|
786
|
-
});
|
|
787
|
-
Object.assign(contents, doc);
|
|
788
|
-
return contents;
|
|
789
|
-
};
|
|
790
|
-
const de_ListEventIntegrationAssociationsCommand = async (output, context) => {
|
|
791
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
792
|
-
return de_CommandError(output, context);
|
|
793
|
-
}
|
|
794
|
-
const contents = smithyClient.map({
|
|
795
|
-
$metadata: deserializeMetadata(output),
|
|
796
|
-
});
|
|
797
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
798
|
-
const doc = smithyClient.take(data, {
|
|
799
|
-
EventIntegrationAssociations: smithyClient._json,
|
|
800
|
-
NextToken: smithyClient.expectString,
|
|
801
|
-
});
|
|
802
|
-
Object.assign(contents, doc);
|
|
803
|
-
return contents;
|
|
804
|
-
};
|
|
805
|
-
const de_ListEventIntegrationsCommand = async (output, context) => {
|
|
806
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
807
|
-
return de_CommandError(output, context);
|
|
808
|
-
}
|
|
809
|
-
const contents = smithyClient.map({
|
|
810
|
-
$metadata: deserializeMetadata(output),
|
|
811
|
-
});
|
|
812
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
813
|
-
const doc = smithyClient.take(data, {
|
|
814
|
-
EventIntegrations: smithyClient._json,
|
|
815
|
-
NextToken: smithyClient.expectString,
|
|
816
|
-
});
|
|
817
|
-
Object.assign(contents, doc);
|
|
818
|
-
return contents;
|
|
819
|
-
};
|
|
820
|
-
const de_ListTagsForResourceCommand = async (output, context) => {
|
|
821
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
822
|
-
return de_CommandError(output, context);
|
|
823
|
-
}
|
|
824
|
-
const contents = smithyClient.map({
|
|
825
|
-
$metadata: deserializeMetadata(output),
|
|
826
|
-
});
|
|
827
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
828
|
-
const doc = smithyClient.take(data, {
|
|
829
|
-
tags: smithyClient._json,
|
|
830
|
-
});
|
|
831
|
-
Object.assign(contents, doc);
|
|
832
|
-
return contents;
|
|
833
|
-
};
|
|
834
|
-
const de_TagResourceCommand = async (output, context) => {
|
|
835
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
836
|
-
return de_CommandError(output, context);
|
|
837
|
-
}
|
|
838
|
-
const contents = smithyClient.map({
|
|
839
|
-
$metadata: deserializeMetadata(output),
|
|
840
|
-
});
|
|
841
|
-
await smithyClient.collectBody(output.body, context);
|
|
842
|
-
return contents;
|
|
843
|
-
};
|
|
844
|
-
const de_UntagResourceCommand = async (output, context) => {
|
|
845
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
846
|
-
return de_CommandError(output, context);
|
|
847
|
-
}
|
|
848
|
-
const contents = smithyClient.map({
|
|
849
|
-
$metadata: deserializeMetadata(output),
|
|
850
|
-
});
|
|
851
|
-
await smithyClient.collectBody(output.body, context);
|
|
852
|
-
return contents;
|
|
853
|
-
};
|
|
854
|
-
const de_UpdateApplicationCommand = async (output, context) => {
|
|
855
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
856
|
-
return de_CommandError(output, context);
|
|
857
|
-
}
|
|
858
|
-
const contents = smithyClient.map({
|
|
859
|
-
$metadata: deserializeMetadata(output),
|
|
860
|
-
});
|
|
861
|
-
await smithyClient.collectBody(output.body, context);
|
|
862
|
-
return contents;
|
|
863
|
-
};
|
|
864
|
-
const de_UpdateDataIntegrationCommand = async (output, context) => {
|
|
865
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
866
|
-
return de_CommandError(output, context);
|
|
867
|
-
}
|
|
868
|
-
const contents = smithyClient.map({
|
|
869
|
-
$metadata: deserializeMetadata(output),
|
|
870
|
-
});
|
|
871
|
-
await smithyClient.collectBody(output.body, context);
|
|
872
|
-
return contents;
|
|
873
|
-
};
|
|
874
|
-
const de_UpdateDataIntegrationAssociationCommand = async (output, context) => {
|
|
875
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
876
|
-
return de_CommandError(output, context);
|
|
877
|
-
}
|
|
878
|
-
const contents = smithyClient.map({
|
|
879
|
-
$metadata: deserializeMetadata(output),
|
|
880
|
-
});
|
|
881
|
-
await smithyClient.collectBody(output.body, context);
|
|
882
|
-
return contents;
|
|
883
|
-
};
|
|
884
|
-
const de_UpdateEventIntegrationCommand = async (output, context) => {
|
|
885
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
886
|
-
return de_CommandError(output, context);
|
|
887
|
-
}
|
|
888
|
-
const contents = smithyClient.map({
|
|
889
|
-
$metadata: deserializeMetadata(output),
|
|
890
|
-
});
|
|
891
|
-
await smithyClient.collectBody(output.body, context);
|
|
892
|
-
return contents;
|
|
893
|
-
};
|
|
894
|
-
const de_CommandError = async (output, context) => {
|
|
895
|
-
const parsedOutput = {
|
|
896
|
-
...output,
|
|
897
|
-
body: await core$1.parseJsonErrorBody(output.body, context),
|
|
898
|
-
};
|
|
899
|
-
const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
|
|
900
|
-
switch (errorCode) {
|
|
901
|
-
case "AccessDeniedException":
|
|
902
|
-
case "com.amazonaws.appintegrations#AccessDeniedException":
|
|
903
|
-
throw await de_AccessDeniedExceptionRes(parsedOutput);
|
|
904
|
-
case "DuplicateResourceException":
|
|
905
|
-
case "com.amazonaws.appintegrations#DuplicateResourceException":
|
|
906
|
-
throw await de_DuplicateResourceExceptionRes(parsedOutput);
|
|
907
|
-
case "InternalServiceError":
|
|
908
|
-
case "com.amazonaws.appintegrations#InternalServiceError":
|
|
909
|
-
throw await de_InternalServiceErrorRes(parsedOutput);
|
|
910
|
-
case "InvalidRequestException":
|
|
911
|
-
case "com.amazonaws.appintegrations#InvalidRequestException":
|
|
912
|
-
throw await de_InvalidRequestExceptionRes(parsedOutput);
|
|
913
|
-
case "ResourceQuotaExceededException":
|
|
914
|
-
case "com.amazonaws.appintegrations#ResourceQuotaExceededException":
|
|
915
|
-
throw await de_ResourceQuotaExceededExceptionRes(parsedOutput);
|
|
916
|
-
case "ThrottlingException":
|
|
917
|
-
case "com.amazonaws.appintegrations#ThrottlingException":
|
|
918
|
-
throw await de_ThrottlingExceptionRes(parsedOutput);
|
|
919
|
-
case "UnsupportedOperationException":
|
|
920
|
-
case "com.amazonaws.appintegrations#UnsupportedOperationException":
|
|
921
|
-
throw await de_UnsupportedOperationExceptionRes(parsedOutput);
|
|
922
|
-
case "ResourceNotFoundException":
|
|
923
|
-
case "com.amazonaws.appintegrations#ResourceNotFoundException":
|
|
924
|
-
throw await de_ResourceNotFoundExceptionRes(parsedOutput);
|
|
925
|
-
default:
|
|
926
|
-
const parsedBody = parsedOutput.body;
|
|
927
|
-
return throwDefaultError({
|
|
928
|
-
output,
|
|
929
|
-
parsedBody,
|
|
930
|
-
errorCode,
|
|
931
|
-
});
|
|
932
|
-
}
|
|
933
|
-
};
|
|
934
|
-
const throwDefaultError = smithyClient.withBaseException(AppIntegrationsServiceException);
|
|
935
|
-
const de_AccessDeniedExceptionRes = async (parsedOutput, context) => {
|
|
936
|
-
const contents = smithyClient.map({});
|
|
937
|
-
const data = parsedOutput.body;
|
|
938
|
-
const doc = smithyClient.take(data, {
|
|
939
|
-
Message: smithyClient.expectString,
|
|
940
|
-
});
|
|
941
|
-
Object.assign(contents, doc);
|
|
942
|
-
const exception = new AccessDeniedException({
|
|
943
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
944
|
-
...contents,
|
|
945
|
-
});
|
|
946
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
947
|
-
};
|
|
948
|
-
const de_DuplicateResourceExceptionRes = async (parsedOutput, context) => {
|
|
949
|
-
const contents = smithyClient.map({});
|
|
950
|
-
const data = parsedOutput.body;
|
|
951
|
-
const doc = smithyClient.take(data, {
|
|
952
|
-
Message: smithyClient.expectString,
|
|
953
|
-
});
|
|
954
|
-
Object.assign(contents, doc);
|
|
955
|
-
const exception = new DuplicateResourceException({
|
|
956
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
957
|
-
...contents,
|
|
958
|
-
});
|
|
959
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
960
|
-
};
|
|
961
|
-
const de_InternalServiceErrorRes = async (parsedOutput, context) => {
|
|
962
|
-
const contents = smithyClient.map({});
|
|
963
|
-
const data = parsedOutput.body;
|
|
964
|
-
const doc = smithyClient.take(data, {
|
|
965
|
-
Message: smithyClient.expectString,
|
|
966
|
-
});
|
|
967
|
-
Object.assign(contents, doc);
|
|
968
|
-
const exception = new InternalServiceError({
|
|
969
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
970
|
-
...contents,
|
|
971
|
-
});
|
|
972
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
973
|
-
};
|
|
974
|
-
const de_InvalidRequestExceptionRes = async (parsedOutput, context) => {
|
|
975
|
-
const contents = smithyClient.map({});
|
|
976
|
-
const data = parsedOutput.body;
|
|
977
|
-
const doc = smithyClient.take(data, {
|
|
978
|
-
Message: smithyClient.expectString,
|
|
979
|
-
});
|
|
980
|
-
Object.assign(contents, doc);
|
|
981
|
-
const exception = new InvalidRequestException({
|
|
982
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
983
|
-
...contents,
|
|
984
|
-
});
|
|
985
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
986
|
-
};
|
|
987
|
-
const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
|
|
988
|
-
const contents = smithyClient.map({});
|
|
989
|
-
const data = parsedOutput.body;
|
|
990
|
-
const doc = smithyClient.take(data, {
|
|
991
|
-
Message: smithyClient.expectString,
|
|
992
|
-
});
|
|
993
|
-
Object.assign(contents, doc);
|
|
994
|
-
const exception = new ResourceNotFoundException({
|
|
995
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
996
|
-
...contents,
|
|
997
|
-
});
|
|
998
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
999
|
-
};
|
|
1000
|
-
const de_ResourceQuotaExceededExceptionRes = async (parsedOutput, context) => {
|
|
1001
|
-
const contents = smithyClient.map({});
|
|
1002
|
-
const data = parsedOutput.body;
|
|
1003
|
-
const doc = smithyClient.take(data, {
|
|
1004
|
-
Message: smithyClient.expectString,
|
|
1005
|
-
});
|
|
1006
|
-
Object.assign(contents, doc);
|
|
1007
|
-
const exception = new ResourceQuotaExceededException({
|
|
1008
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1009
|
-
...contents,
|
|
1010
|
-
});
|
|
1011
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1012
|
-
};
|
|
1013
|
-
const de_ThrottlingExceptionRes = async (parsedOutput, context) => {
|
|
1014
|
-
const contents = smithyClient.map({});
|
|
1015
|
-
const data = parsedOutput.body;
|
|
1016
|
-
const doc = smithyClient.take(data, {
|
|
1017
|
-
Message: smithyClient.expectString,
|
|
1018
|
-
});
|
|
1019
|
-
Object.assign(contents, doc);
|
|
1020
|
-
const exception = new ThrottlingException({
|
|
1021
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1022
|
-
...contents,
|
|
1023
|
-
});
|
|
1024
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1025
|
-
};
|
|
1026
|
-
const de_UnsupportedOperationExceptionRes = async (parsedOutput, context) => {
|
|
1027
|
-
const contents = smithyClient.map({});
|
|
1028
|
-
const data = parsedOutput.body;
|
|
1029
|
-
const doc = smithyClient.take(data, {
|
|
1030
|
-
Message: smithyClient.expectString,
|
|
1031
|
-
});
|
|
1032
|
-
Object.assign(contents, doc);
|
|
1033
|
-
const exception = new UnsupportedOperationException({
|
|
1034
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1035
|
-
...contents,
|
|
1036
|
-
});
|
|
1037
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1038
|
-
};
|
|
1039
|
-
const de_ApplicationsList = (output, context) => {
|
|
1040
|
-
const retVal = (output || [])
|
|
1041
|
-
.filter((e) => e != null)
|
|
1042
|
-
.map((entry) => {
|
|
1043
|
-
return de_ApplicationSummary(entry);
|
|
1044
|
-
});
|
|
1045
|
-
return retVal;
|
|
1046
|
-
};
|
|
1047
|
-
const de_ApplicationSummary = (output, context) => {
|
|
1048
|
-
return smithyClient.take(output, {
|
|
1049
|
-
Arn: smithyClient.expectString,
|
|
1050
|
-
CreatedTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1051
|
-
Id: smithyClient.expectString,
|
|
1052
|
-
IsService: smithyClient.expectBoolean,
|
|
1053
|
-
LastModifiedTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1054
|
-
Name: smithyClient.expectString,
|
|
1055
|
-
Namespace: smithyClient.expectString,
|
|
1056
|
-
});
|
|
1057
|
-
};
|
|
1058
|
-
const deserializeMetadata = (output) => ({
|
|
1059
|
-
httpStatusCode: output.statusCode,
|
|
1060
|
-
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
1061
|
-
extendedRequestId: output.headers["x-amz-id-2"],
|
|
1062
|
-
cfId: output.headers["x-amz-cf-id"],
|
|
1063
|
-
});
|
|
246
|
+
const _A = "Arn";
|
|
247
|
+
const _AA = "ApplicationArn";
|
|
248
|
+
const _AAA = "ApplicationAssociationArn";
|
|
249
|
+
const _AAL = "ApplicationAssociationsList";
|
|
250
|
+
const _AAS = "ApplicationAssociationSummary";
|
|
251
|
+
const _AAp = "ApplicationAssociations";
|
|
252
|
+
const _AC = "ApplicationConfig";
|
|
253
|
+
const _ADE = "AccessDeniedException";
|
|
254
|
+
const _AI = "ApplicationId";
|
|
255
|
+
const _AL = "ApplicationsList";
|
|
256
|
+
const _AO = "ApprovedOrigins";
|
|
257
|
+
const _AS = "ApplicationSummary";
|
|
258
|
+
const _ASC = "ApplicationSourceConfig";
|
|
259
|
+
const _AU = "AccessUrl";
|
|
260
|
+
const _Al = "Allow";
|
|
261
|
+
const _Ap = "Applications";
|
|
262
|
+
const _CA = "CreateApplication";
|
|
263
|
+
const _CAM = "ClientAssociationMetadata";
|
|
264
|
+
const _CAR = "CreateApplicationRequest";
|
|
265
|
+
const _CARr = "CreateApplicationResponse";
|
|
266
|
+
const _CDI = "CreateDataIntegration";
|
|
267
|
+
const _CDIA = "CreateDataIntegrationAssociation";
|
|
268
|
+
const _CDIAR = "CreateDataIntegrationAssociationRequest";
|
|
269
|
+
const _CDIARr = "CreateDataIntegrationAssociationResponse";
|
|
270
|
+
const _CDIR = "CreateDataIntegrationRequest";
|
|
271
|
+
const _CDIRr = "CreateDataIntegrationResponse";
|
|
272
|
+
const _CEI = "CreateEventIntegration";
|
|
273
|
+
const _CEIR = "CreateEventIntegrationRequest";
|
|
274
|
+
const _CEIRr = "CreateEventIntegrationResponse";
|
|
275
|
+
const _CH = "ContactHandling";
|
|
276
|
+
const _CI = "ClientId";
|
|
277
|
+
const _CT = "CreatedTime";
|
|
278
|
+
const _CTl = "ClientToken";
|
|
279
|
+
const _D = "Description";
|
|
280
|
+
const _DA = "DeleteApplication";
|
|
281
|
+
const _DAR = "DeleteApplicationRequest";
|
|
282
|
+
const _DARe = "DeleteApplicationResponse";
|
|
283
|
+
const _DDI = "DeleteDataIntegration";
|
|
284
|
+
const _DDIR = "DeleteDataIntegrationRequest";
|
|
285
|
+
const _DDIRe = "DeleteDataIntegrationResponse";
|
|
286
|
+
const _DEI = "DeleteEventIntegration";
|
|
287
|
+
const _DEIR = "DeleteEventIntegrationRequest";
|
|
288
|
+
const _DEIRe = "DeleteEventIntegrationResponse";
|
|
289
|
+
const _DI = "DataIntegrations";
|
|
290
|
+
const _DIA = "DataIntegrationArn";
|
|
291
|
+
const _DIAA = "DataIntegrationAssociationArn";
|
|
292
|
+
const _DIAI = "DataIntegrationAssociationId";
|
|
293
|
+
const _DIAIa = "DataIntegrationAssociationIdentifier";
|
|
294
|
+
const _DIAL = "DataIntegrationAssociationsList";
|
|
295
|
+
const _DIAS = "DataIntegrationAssociationSummary";
|
|
296
|
+
const _DIAa = "DataIntegrationAssociations";
|
|
297
|
+
const _DII = "DataIntegrationIdentifier";
|
|
298
|
+
const _DIL = "DataIntegrationsList";
|
|
299
|
+
const _DIS = "DataIntegrationSummary";
|
|
300
|
+
const _DRE = "DuplicateResourceException";
|
|
301
|
+
const _DURI = "DestinationURI";
|
|
302
|
+
const _E = "Event";
|
|
303
|
+
const _EBB = "EventBridgeBus";
|
|
304
|
+
const _EBRN = "EventBridgeRuleName";
|
|
305
|
+
const _EC = "ExecutionConfiguration";
|
|
306
|
+
const _EF = "EventFilter";
|
|
307
|
+
const _EI = "EventIntegration";
|
|
308
|
+
const _EIA = "EventIntegrationArn";
|
|
309
|
+
const _EIAA = "EventIntegrationAssociationArn";
|
|
310
|
+
const _EIAI = "EventIntegrationAssociationId";
|
|
311
|
+
const _EIAL = "EventIntegrationAssociationsList";
|
|
312
|
+
const _EIAv = "EventIntegrationAssociation";
|
|
313
|
+
const _EIAve = "EventIntegrationAssociations";
|
|
314
|
+
const _EIL = "EventIntegrationsList";
|
|
315
|
+
const _EIN = "EventIntegrationName";
|
|
316
|
+
const _EIv = "EventIntegrations";
|
|
317
|
+
const _EM = "ExecutionMode";
|
|
318
|
+
const _ES = "ExecutionStatus";
|
|
319
|
+
const _ET = "EndTime";
|
|
320
|
+
const _EUC = "ExternalUrlConfig";
|
|
321
|
+
const _F = "Folders";
|
|
322
|
+
const _FC = "FileConfiguration";
|
|
323
|
+
const _FEF = "FirstExecutionFrom";
|
|
324
|
+
const _FM = "FieldsMap";
|
|
325
|
+
const _Fi = "Filters";
|
|
326
|
+
const _GA = "GetApplication";
|
|
327
|
+
const _GAR = "GetApplicationRequest";
|
|
328
|
+
const _GARe = "GetApplicationResponse";
|
|
329
|
+
const _GDI = "GetDataIntegration";
|
|
330
|
+
const _GDIR = "GetDataIntegrationRequest";
|
|
331
|
+
const _GDIRe = "GetDataIntegrationResponse";
|
|
332
|
+
const _GEI = "GetEventIntegration";
|
|
333
|
+
const _GEIR = "GetEventIntegrationRequest";
|
|
334
|
+
const _GEIRe = "GetEventIntegrationResponse";
|
|
335
|
+
const _I = "Id";
|
|
336
|
+
const _IC = "IframeConfig";
|
|
337
|
+
const _IRE = "InvalidRequestException";
|
|
338
|
+
const _IS = "IsService";
|
|
339
|
+
const _ISE = "InternalServiceError";
|
|
340
|
+
const _IT = "InitializationTimeout";
|
|
341
|
+
const _Id = "Identifier";
|
|
342
|
+
const _KK = "KmsKey";
|
|
343
|
+
const _LA = "ListApplications";
|
|
344
|
+
const _LAA = "ListApplicationAssociations";
|
|
345
|
+
const _LAAR = "ListApplicationAssociationsRequest";
|
|
346
|
+
const _LAARi = "ListApplicationAssociationsResponse";
|
|
347
|
+
const _LAR = "ListApplicationsRequest";
|
|
348
|
+
const _LARi = "ListApplicationsResponse";
|
|
349
|
+
const _LDI = "ListDataIntegrations";
|
|
350
|
+
const _LDIA = "ListDataIntegrationAssociations";
|
|
351
|
+
const _LDIAR = "ListDataIntegrationAssociationsRequest";
|
|
352
|
+
const _LDIARi = "ListDataIntegrationAssociationsResponse";
|
|
353
|
+
const _LDIR = "ListDataIntegrationsRequest";
|
|
354
|
+
const _LDIRi = "ListDataIntegrationsResponse";
|
|
355
|
+
const _LEI = "ListEventIntegrations";
|
|
356
|
+
const _LEIA = "ListEventIntegrationAssociations";
|
|
357
|
+
const _LEIAR = "ListEventIntegrationAssociationsRequest";
|
|
358
|
+
const _LEIARi = "ListEventIntegrationAssociationsResponse";
|
|
359
|
+
const _LEIR = "ListEventIntegrationsRequest";
|
|
360
|
+
const _LEIRi = "ListEventIntegrationsResponse";
|
|
361
|
+
const _LES = "LastExecutionStatus";
|
|
362
|
+
const _LMT = "LastModifiedTime";
|
|
363
|
+
const _LTFR = "ListTagsForResource";
|
|
364
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
365
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
366
|
+
const _M = "Message";
|
|
1064
367
|
const _MR = "MaxResults";
|
|
368
|
+
const _N = "Name";
|
|
1065
369
|
const _NT = "NextToken";
|
|
370
|
+
const _Na = "Namespace";
|
|
371
|
+
const _O = "Object";
|
|
372
|
+
const _OC = "ObjectConfiguration";
|
|
373
|
+
const _ODC = "OnDemandConfiguration";
|
|
374
|
+
const _P = "Publications";
|
|
375
|
+
const _PL = "PublicationList";
|
|
376
|
+
const _Pe = "Permissions";
|
|
377
|
+
const _Pu = "Publication";
|
|
378
|
+
const _RNFE = "ResourceNotFoundException";
|
|
379
|
+
const _RQEE = "ResourceQuotaExceededException";
|
|
380
|
+
const _S = "Scope";
|
|
381
|
+
const _SC = "ScheduleConfig";
|
|
382
|
+
const _SCc = "ScheduleConfiguration";
|
|
383
|
+
const _SE = "ScheduleExpression";
|
|
384
|
+
const _SL = "SubscriptionList";
|
|
385
|
+
const _SM = "StatusMessage";
|
|
386
|
+
const _ST = "StartTime";
|
|
387
|
+
const _SURI = "SourceURI";
|
|
388
|
+
const _Sa = "Sandbox";
|
|
389
|
+
const _Sc = "Schema";
|
|
390
|
+
const _So = "Source";
|
|
391
|
+
const _Su = "Subscriptions";
|
|
392
|
+
const _Sub = "Subscription";
|
|
393
|
+
const _T = "Tags";
|
|
394
|
+
const _TE = "ThrottlingException";
|
|
395
|
+
const _TR = "TagResource";
|
|
396
|
+
const _TRR = "TagResourceRequest";
|
|
397
|
+
const _TRRa = "TagResourceResponse";
|
|
398
|
+
const _UA = "UpdateApplication";
|
|
399
|
+
const _UAR = "UpdateApplicationRequest";
|
|
400
|
+
const _UARp = "UpdateApplicationResponse";
|
|
401
|
+
const _UDI = "UpdateDataIntegration";
|
|
402
|
+
const _UDIA = "UpdateDataIntegrationAssociation";
|
|
403
|
+
const _UDIAR = "UpdateDataIntegrationAssociationRequest";
|
|
404
|
+
const _UDIARp = "UpdateDataIntegrationAssociationResponse";
|
|
405
|
+
const _UDIR = "UpdateDataIntegrationRequest";
|
|
406
|
+
const _UDIRp = "UpdateDataIntegrationResponse";
|
|
407
|
+
const _UEI = "UpdateEventIntegration";
|
|
408
|
+
const _UEIR = "UpdateEventIntegrationRequest";
|
|
409
|
+
const _UEIRp = "UpdateEventIntegrationResponse";
|
|
410
|
+
const _UOE = "UnsupportedOperationException";
|
|
411
|
+
const _UR = "UntagResource";
|
|
412
|
+
const _URR = "UntagResourceRequest";
|
|
413
|
+
const _URRn = "UntagResourceResponse";
|
|
414
|
+
const _c = "client";
|
|
415
|
+
const _e = "error";
|
|
416
|
+
const _h = "http";
|
|
417
|
+
const _hE = "httpError";
|
|
418
|
+
const _hQ = "httpQuery";
|
|
1066
419
|
const _mR = "maxResults";
|
|
1067
420
|
const _nT = "nextToken";
|
|
421
|
+
const _rA = "resourceArn";
|
|
422
|
+
const _s = "server";
|
|
423
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.appintegrations";
|
|
424
|
+
const _t = "tags";
|
|
1068
425
|
const _tK = "tagKeys";
|
|
426
|
+
const n0 = "com.amazonaws.appintegrations";
|
|
427
|
+
var AccessDeniedException = [
|
|
428
|
+
-3,
|
|
429
|
+
n0,
|
|
430
|
+
_ADE,
|
|
431
|
+
{
|
|
432
|
+
[_e]: _c,
|
|
433
|
+
[_hE]: 403,
|
|
434
|
+
},
|
|
435
|
+
[_M],
|
|
436
|
+
[0],
|
|
437
|
+
];
|
|
438
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
|
|
439
|
+
var ApplicationAssociationSummary = [3, n0, _AAS, 0, [_AAA, _AA, _CI], [0, 0, 0]];
|
|
440
|
+
var ApplicationConfig = [3, n0, _AC, 0, [_CH], [() => ContactHandling]];
|
|
441
|
+
var ApplicationSourceConfig = [3, n0, _ASC, 0, [_EUC], [() => ExternalUrlConfig]];
|
|
442
|
+
var ApplicationSummary = [
|
|
443
|
+
3,
|
|
444
|
+
n0,
|
|
445
|
+
_AS,
|
|
446
|
+
0,
|
|
447
|
+
[_A, _I, _N, _Na, _CT, _LMT, _IS],
|
|
448
|
+
[0, 0, 0, 0, 4, 4, 2],
|
|
449
|
+
];
|
|
450
|
+
var ContactHandling = [3, n0, _CH, 0, [_S], [0]];
|
|
451
|
+
var CreateApplicationRequest = [
|
|
452
|
+
3,
|
|
453
|
+
n0,
|
|
454
|
+
_CAR,
|
|
455
|
+
0,
|
|
456
|
+
[_N, _Na, _D, _ASC, _Su, _P, _CTl, _T, _Pe, _IS, _IT, _AC, _IC],
|
|
457
|
+
[
|
|
458
|
+
0,
|
|
459
|
+
0,
|
|
460
|
+
0,
|
|
461
|
+
() => ApplicationSourceConfig,
|
|
462
|
+
() => SubscriptionList,
|
|
463
|
+
() => PublicationList,
|
|
464
|
+
[0, 4],
|
|
465
|
+
128 | 0,
|
|
466
|
+
64 | 0,
|
|
467
|
+
2,
|
|
468
|
+
1,
|
|
469
|
+
() => ApplicationConfig,
|
|
470
|
+
() => IframeConfig,
|
|
471
|
+
],
|
|
472
|
+
];
|
|
473
|
+
var CreateApplicationResponse = [3, n0, _CARr, 0, [_A, _I], [0, 0]];
|
|
474
|
+
var CreateDataIntegrationAssociationRequest = [
|
|
475
|
+
3,
|
|
476
|
+
n0,
|
|
477
|
+
_CDIAR,
|
|
478
|
+
0,
|
|
479
|
+
[_DII, _CI, _OC, _DURI, _CAM, _CTl, _EC],
|
|
480
|
+
[[0, 1], 0, [2, n0, _OC, 0, 0, [2, n0, _FM, 0, 0, 64 | 0]], 0, 128 | 0, [0, 4], () => ExecutionConfiguration],
|
|
481
|
+
];
|
|
482
|
+
var CreateDataIntegrationAssociationResponse = [3, n0, _CDIARr, 0, [_DIAI, _DIA], [0, 0]];
|
|
483
|
+
var CreateDataIntegrationRequest = [
|
|
484
|
+
3,
|
|
485
|
+
n0,
|
|
486
|
+
_CDIR,
|
|
487
|
+
0,
|
|
488
|
+
[_N, _D, _KK, _SURI, _SC, _T, _CTl, _FC, _OC],
|
|
489
|
+
[
|
|
490
|
+
0,
|
|
491
|
+
0,
|
|
492
|
+
0,
|
|
493
|
+
0,
|
|
494
|
+
() => ScheduleConfiguration,
|
|
495
|
+
128 | 0,
|
|
496
|
+
[0, 4],
|
|
497
|
+
() => FileConfiguration,
|
|
498
|
+
[2, n0, _OC, 0, 0, [2, n0, _FM, 0, 0, 64 | 0]],
|
|
499
|
+
],
|
|
500
|
+
];
|
|
501
|
+
var CreateDataIntegrationResponse = [
|
|
502
|
+
3,
|
|
503
|
+
n0,
|
|
504
|
+
_CDIRr,
|
|
505
|
+
0,
|
|
506
|
+
[_A, _I, _N, _D, _KK, _SURI, _SCc, _T, _CTl, _FC, _OC],
|
|
507
|
+
[
|
|
508
|
+
0,
|
|
509
|
+
0,
|
|
510
|
+
0,
|
|
511
|
+
0,
|
|
512
|
+
0,
|
|
513
|
+
0,
|
|
514
|
+
() => ScheduleConfiguration,
|
|
515
|
+
128 | 0,
|
|
516
|
+
0,
|
|
517
|
+
() => FileConfiguration,
|
|
518
|
+
[2, n0, _OC, 0, 0, [2, n0, _FM, 0, 0, 64 | 0]],
|
|
519
|
+
],
|
|
520
|
+
];
|
|
521
|
+
var CreateEventIntegrationRequest = [
|
|
522
|
+
3,
|
|
523
|
+
n0,
|
|
524
|
+
_CEIR,
|
|
525
|
+
0,
|
|
526
|
+
[_N, _D, _EF, _EBB, _CTl, _T],
|
|
527
|
+
[0, 0, () => EventFilter, 0, [0, 4], 128 | 0],
|
|
528
|
+
];
|
|
529
|
+
var CreateEventIntegrationResponse = [3, n0, _CEIRr, 0, [_EIA], [0]];
|
|
530
|
+
var DataIntegrationAssociationSummary = [
|
|
531
|
+
3,
|
|
532
|
+
n0,
|
|
533
|
+
_DIAS,
|
|
534
|
+
0,
|
|
535
|
+
[_DIAA, _DIA, _CI, _DURI, _LES, _EC],
|
|
536
|
+
[0, 0, 0, 0, () => LastExecutionStatus, () => ExecutionConfiguration],
|
|
537
|
+
];
|
|
538
|
+
var DataIntegrationSummary = [3, n0, _DIS, 0, [_A, _N, _SURI], [0, 0, 0]];
|
|
539
|
+
var DeleteApplicationRequest = [3, n0, _DAR, 0, [_A], [[0, 1]]];
|
|
540
|
+
var DeleteApplicationResponse = [3, n0, _DARe, 0, [], []];
|
|
541
|
+
var DeleteDataIntegrationRequest = [3, n0, _DDIR, 0, [_DII], [[0, 1]]];
|
|
542
|
+
var DeleteDataIntegrationResponse = [3, n0, _DDIRe, 0, [], []];
|
|
543
|
+
var DeleteEventIntegrationRequest = [3, n0, _DEIR, 0, [_N], [[0, 1]]];
|
|
544
|
+
var DeleteEventIntegrationResponse = [3, n0, _DEIRe, 0, [], []];
|
|
545
|
+
var DuplicateResourceException = [
|
|
546
|
+
-3,
|
|
547
|
+
n0,
|
|
548
|
+
_DRE,
|
|
549
|
+
{
|
|
550
|
+
[_e]: _c,
|
|
551
|
+
[_hE]: 409,
|
|
552
|
+
},
|
|
553
|
+
[_M],
|
|
554
|
+
[0],
|
|
555
|
+
];
|
|
556
|
+
schema.TypeRegistry.for(n0).registerError(DuplicateResourceException, DuplicateResourceException$1);
|
|
557
|
+
var EventFilter = [3, n0, _EF, 0, [_So], [0]];
|
|
558
|
+
var EventIntegration = [
|
|
559
|
+
3,
|
|
560
|
+
n0,
|
|
561
|
+
_EI,
|
|
562
|
+
0,
|
|
563
|
+
[_EIA, _N, _D, _EF, _EBB, _T],
|
|
564
|
+
[0, 0, 0, () => EventFilter, 0, 128 | 0],
|
|
565
|
+
];
|
|
566
|
+
var EventIntegrationAssociation = [
|
|
567
|
+
3,
|
|
568
|
+
n0,
|
|
569
|
+
_EIAv,
|
|
570
|
+
0,
|
|
571
|
+
[_EIAA, _EIAI, _EIN, _CI, _EBRN, _CAM],
|
|
572
|
+
[0, 0, 0, 0, 0, 128 | 0],
|
|
573
|
+
];
|
|
574
|
+
var ExecutionConfiguration = [
|
|
575
|
+
3,
|
|
576
|
+
n0,
|
|
577
|
+
_EC,
|
|
578
|
+
0,
|
|
579
|
+
[_EM, _ODC, _SCc],
|
|
580
|
+
[0, () => OnDemandConfiguration, () => ScheduleConfiguration],
|
|
581
|
+
];
|
|
582
|
+
var ExternalUrlConfig = [3, n0, _EUC, 0, [_AU, _AO], [0, 64 | 0]];
|
|
583
|
+
var FileConfiguration = [3, n0, _FC, 0, [_F, _Fi], [64 | 0, [2, n0, _FM, 0, 0, 64 | 0]]];
|
|
584
|
+
var GetApplicationRequest = [3, n0, _GAR, 0, [_A], [[0, 1]]];
|
|
585
|
+
var GetApplicationResponse = [
|
|
586
|
+
3,
|
|
587
|
+
n0,
|
|
588
|
+
_GARe,
|
|
589
|
+
0,
|
|
590
|
+
[_A, _I, _N, _Na, _D, _ASC, _Su, _P, _CT, _LMT, _T, _Pe, _IS, _IT, _AC, _IC],
|
|
591
|
+
[
|
|
592
|
+
0,
|
|
593
|
+
0,
|
|
594
|
+
0,
|
|
595
|
+
0,
|
|
596
|
+
0,
|
|
597
|
+
() => ApplicationSourceConfig,
|
|
598
|
+
() => SubscriptionList,
|
|
599
|
+
() => PublicationList,
|
|
600
|
+
4,
|
|
601
|
+
4,
|
|
602
|
+
128 | 0,
|
|
603
|
+
64 | 0,
|
|
604
|
+
2,
|
|
605
|
+
1,
|
|
606
|
+
() => ApplicationConfig,
|
|
607
|
+
() => IframeConfig,
|
|
608
|
+
],
|
|
609
|
+
];
|
|
610
|
+
var GetDataIntegrationRequest = [3, n0, _GDIR, 0, [_Id], [[0, 1]]];
|
|
611
|
+
var GetDataIntegrationResponse = [
|
|
612
|
+
3,
|
|
613
|
+
n0,
|
|
614
|
+
_GDIRe,
|
|
615
|
+
0,
|
|
616
|
+
[_A, _I, _N, _D, _KK, _SURI, _SCc, _T, _FC, _OC],
|
|
617
|
+
[
|
|
618
|
+
0,
|
|
619
|
+
0,
|
|
620
|
+
0,
|
|
621
|
+
0,
|
|
622
|
+
0,
|
|
623
|
+
0,
|
|
624
|
+
() => ScheduleConfiguration,
|
|
625
|
+
128 | 0,
|
|
626
|
+
() => FileConfiguration,
|
|
627
|
+
[2, n0, _OC, 0, 0, [2, n0, _FM, 0, 0, 64 | 0]],
|
|
628
|
+
],
|
|
629
|
+
];
|
|
630
|
+
var GetEventIntegrationRequest = [3, n0, _GEIR, 0, [_N], [[0, 1]]];
|
|
631
|
+
var GetEventIntegrationResponse = [
|
|
632
|
+
3,
|
|
633
|
+
n0,
|
|
634
|
+
_GEIRe,
|
|
635
|
+
0,
|
|
636
|
+
[_N, _D, _EIA, _EBB, _EF, _T],
|
|
637
|
+
[0, 0, 0, 0, () => EventFilter, 128 | 0],
|
|
638
|
+
];
|
|
639
|
+
var IframeConfig = [3, n0, _IC, 0, [_Al, _Sa], [64 | 0, 64 | 0]];
|
|
640
|
+
var InternalServiceError = [
|
|
641
|
+
-3,
|
|
642
|
+
n0,
|
|
643
|
+
_ISE,
|
|
644
|
+
{
|
|
645
|
+
[_e]: _s,
|
|
646
|
+
[_hE]: 500,
|
|
647
|
+
},
|
|
648
|
+
[_M],
|
|
649
|
+
[0],
|
|
650
|
+
];
|
|
651
|
+
schema.TypeRegistry.for(n0).registerError(InternalServiceError, InternalServiceError$1);
|
|
652
|
+
var InvalidRequestException = [
|
|
653
|
+
-3,
|
|
654
|
+
n0,
|
|
655
|
+
_IRE,
|
|
656
|
+
{
|
|
657
|
+
[_e]: _c,
|
|
658
|
+
[_hE]: 400,
|
|
659
|
+
},
|
|
660
|
+
[_M],
|
|
661
|
+
[0],
|
|
662
|
+
];
|
|
663
|
+
schema.TypeRegistry.for(n0).registerError(InvalidRequestException, InvalidRequestException$1);
|
|
664
|
+
var LastExecutionStatus = [3, n0, _LES, 0, [_ES, _SM], [0, 0]];
|
|
665
|
+
var ListApplicationAssociationsRequest = [
|
|
666
|
+
3,
|
|
667
|
+
n0,
|
|
668
|
+
_LAAR,
|
|
669
|
+
0,
|
|
670
|
+
[_AI, _NT, _MR],
|
|
671
|
+
[
|
|
672
|
+
[0, 1],
|
|
673
|
+
[
|
|
674
|
+
0,
|
|
675
|
+
{
|
|
676
|
+
[_hQ]: _nT,
|
|
677
|
+
},
|
|
678
|
+
],
|
|
679
|
+
[
|
|
680
|
+
1,
|
|
681
|
+
{
|
|
682
|
+
[_hQ]: _mR,
|
|
683
|
+
},
|
|
684
|
+
],
|
|
685
|
+
],
|
|
686
|
+
];
|
|
687
|
+
var ListApplicationAssociationsResponse = [
|
|
688
|
+
3,
|
|
689
|
+
n0,
|
|
690
|
+
_LAARi,
|
|
691
|
+
0,
|
|
692
|
+
[_AAp, _NT],
|
|
693
|
+
[() => ApplicationAssociationsList, 0],
|
|
694
|
+
];
|
|
695
|
+
var ListApplicationsRequest = [
|
|
696
|
+
3,
|
|
697
|
+
n0,
|
|
698
|
+
_LAR,
|
|
699
|
+
0,
|
|
700
|
+
[_NT, _MR],
|
|
701
|
+
[
|
|
702
|
+
[
|
|
703
|
+
0,
|
|
704
|
+
{
|
|
705
|
+
[_hQ]: _nT,
|
|
706
|
+
},
|
|
707
|
+
],
|
|
708
|
+
[
|
|
709
|
+
1,
|
|
710
|
+
{
|
|
711
|
+
[_hQ]: _mR,
|
|
712
|
+
},
|
|
713
|
+
],
|
|
714
|
+
],
|
|
715
|
+
];
|
|
716
|
+
var ListApplicationsResponse = [3, n0, _LARi, 0, [_Ap, _NT], [() => ApplicationsList, 0]];
|
|
717
|
+
var ListDataIntegrationAssociationsRequest = [
|
|
718
|
+
3,
|
|
719
|
+
n0,
|
|
720
|
+
_LDIAR,
|
|
721
|
+
0,
|
|
722
|
+
[_DII, _NT, _MR],
|
|
723
|
+
[
|
|
724
|
+
[0, 1],
|
|
725
|
+
[
|
|
726
|
+
0,
|
|
727
|
+
{
|
|
728
|
+
[_hQ]: _nT,
|
|
729
|
+
},
|
|
730
|
+
],
|
|
731
|
+
[
|
|
732
|
+
1,
|
|
733
|
+
{
|
|
734
|
+
[_hQ]: _mR,
|
|
735
|
+
},
|
|
736
|
+
],
|
|
737
|
+
],
|
|
738
|
+
];
|
|
739
|
+
var ListDataIntegrationAssociationsResponse = [
|
|
740
|
+
3,
|
|
741
|
+
n0,
|
|
742
|
+
_LDIARi,
|
|
743
|
+
0,
|
|
744
|
+
[_DIAa, _NT],
|
|
745
|
+
[() => DataIntegrationAssociationsList, 0],
|
|
746
|
+
];
|
|
747
|
+
var ListDataIntegrationsRequest = [
|
|
748
|
+
3,
|
|
749
|
+
n0,
|
|
750
|
+
_LDIR,
|
|
751
|
+
0,
|
|
752
|
+
[_NT, _MR],
|
|
753
|
+
[
|
|
754
|
+
[
|
|
755
|
+
0,
|
|
756
|
+
{
|
|
757
|
+
[_hQ]: _nT,
|
|
758
|
+
},
|
|
759
|
+
],
|
|
760
|
+
[
|
|
761
|
+
1,
|
|
762
|
+
{
|
|
763
|
+
[_hQ]: _mR,
|
|
764
|
+
},
|
|
765
|
+
],
|
|
766
|
+
],
|
|
767
|
+
];
|
|
768
|
+
var ListDataIntegrationsResponse = [
|
|
769
|
+
3,
|
|
770
|
+
n0,
|
|
771
|
+
_LDIRi,
|
|
772
|
+
0,
|
|
773
|
+
[_DI, _NT],
|
|
774
|
+
[() => DataIntegrationsList, 0],
|
|
775
|
+
];
|
|
776
|
+
var ListEventIntegrationAssociationsRequest = [
|
|
777
|
+
3,
|
|
778
|
+
n0,
|
|
779
|
+
_LEIAR,
|
|
780
|
+
0,
|
|
781
|
+
[_EIN, _NT, _MR],
|
|
782
|
+
[
|
|
783
|
+
[0, 1],
|
|
784
|
+
[
|
|
785
|
+
0,
|
|
786
|
+
{
|
|
787
|
+
[_hQ]: _nT,
|
|
788
|
+
},
|
|
789
|
+
],
|
|
790
|
+
[
|
|
791
|
+
1,
|
|
792
|
+
{
|
|
793
|
+
[_hQ]: _mR,
|
|
794
|
+
},
|
|
795
|
+
],
|
|
796
|
+
],
|
|
797
|
+
];
|
|
798
|
+
var ListEventIntegrationAssociationsResponse = [
|
|
799
|
+
3,
|
|
800
|
+
n0,
|
|
801
|
+
_LEIARi,
|
|
802
|
+
0,
|
|
803
|
+
[_EIAve, _NT],
|
|
804
|
+
[() => EventIntegrationAssociationsList, 0],
|
|
805
|
+
];
|
|
806
|
+
var ListEventIntegrationsRequest = [
|
|
807
|
+
3,
|
|
808
|
+
n0,
|
|
809
|
+
_LEIR,
|
|
810
|
+
0,
|
|
811
|
+
[_NT, _MR],
|
|
812
|
+
[
|
|
813
|
+
[
|
|
814
|
+
0,
|
|
815
|
+
{
|
|
816
|
+
[_hQ]: _nT,
|
|
817
|
+
},
|
|
818
|
+
],
|
|
819
|
+
[
|
|
820
|
+
1,
|
|
821
|
+
{
|
|
822
|
+
[_hQ]: _mR,
|
|
823
|
+
},
|
|
824
|
+
],
|
|
825
|
+
],
|
|
826
|
+
];
|
|
827
|
+
var ListEventIntegrationsResponse = [
|
|
828
|
+
3,
|
|
829
|
+
n0,
|
|
830
|
+
_LEIRi,
|
|
831
|
+
0,
|
|
832
|
+
[_EIv, _NT],
|
|
833
|
+
[() => EventIntegrationsList, 0],
|
|
834
|
+
];
|
|
835
|
+
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rA], [[0, 1]]];
|
|
836
|
+
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_t], [128 | 0]];
|
|
837
|
+
var OnDemandConfiguration = [3, n0, _ODC, 0, [_ST, _ET], [0, 0]];
|
|
838
|
+
var Publication = [3, n0, _Pu, 0, [_E, _Sc, _D], [0, 0, 0]];
|
|
839
|
+
var ResourceNotFoundException = [
|
|
840
|
+
-3,
|
|
841
|
+
n0,
|
|
842
|
+
_RNFE,
|
|
843
|
+
{
|
|
844
|
+
[_e]: _c,
|
|
845
|
+
[_hE]: 404,
|
|
846
|
+
},
|
|
847
|
+
[_M],
|
|
848
|
+
[0],
|
|
849
|
+
];
|
|
850
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
|
|
851
|
+
var ResourceQuotaExceededException = [
|
|
852
|
+
-3,
|
|
853
|
+
n0,
|
|
854
|
+
_RQEE,
|
|
855
|
+
{
|
|
856
|
+
[_e]: _c,
|
|
857
|
+
[_hE]: 429,
|
|
858
|
+
},
|
|
859
|
+
[_M],
|
|
860
|
+
[0],
|
|
861
|
+
];
|
|
862
|
+
schema.TypeRegistry.for(n0).registerError(ResourceQuotaExceededException, ResourceQuotaExceededException$1);
|
|
863
|
+
var ScheduleConfiguration = [3, n0, _SCc, 0, [_FEF, _O, _SE], [0, 0, 0]];
|
|
864
|
+
var Subscription = [3, n0, _Sub, 0, [_E, _D], [0, 0]];
|
|
865
|
+
var TagResourceRequest = [3, n0, _TRR, 0, [_rA, _t], [[0, 1], 128 | 0]];
|
|
866
|
+
var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
867
|
+
var ThrottlingException = [
|
|
868
|
+
-3,
|
|
869
|
+
n0,
|
|
870
|
+
_TE,
|
|
871
|
+
{
|
|
872
|
+
[_e]: _c,
|
|
873
|
+
[_hE]: 429,
|
|
874
|
+
},
|
|
875
|
+
[_M],
|
|
876
|
+
[0],
|
|
877
|
+
];
|
|
878
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
|
|
879
|
+
var UnsupportedOperationException = [
|
|
880
|
+
-3,
|
|
881
|
+
n0,
|
|
882
|
+
_UOE,
|
|
883
|
+
{
|
|
884
|
+
[_e]: _c,
|
|
885
|
+
[_hE]: 400,
|
|
886
|
+
},
|
|
887
|
+
[_M],
|
|
888
|
+
[0],
|
|
889
|
+
];
|
|
890
|
+
schema.TypeRegistry.for(n0).registerError(UnsupportedOperationException, UnsupportedOperationException$1);
|
|
891
|
+
var UntagResourceRequest = [
|
|
892
|
+
3,
|
|
893
|
+
n0,
|
|
894
|
+
_URR,
|
|
895
|
+
0,
|
|
896
|
+
[_rA, _tK],
|
|
897
|
+
[
|
|
898
|
+
[0, 1],
|
|
899
|
+
[
|
|
900
|
+
64 | 0,
|
|
901
|
+
{
|
|
902
|
+
[_hQ]: _tK,
|
|
903
|
+
},
|
|
904
|
+
],
|
|
905
|
+
],
|
|
906
|
+
];
|
|
907
|
+
var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
908
|
+
var UpdateApplicationRequest = [
|
|
909
|
+
3,
|
|
910
|
+
n0,
|
|
911
|
+
_UAR,
|
|
912
|
+
0,
|
|
913
|
+
[_A, _N, _D, _ASC, _Su, _P, _Pe, _IS, _IT, _AC, _IC],
|
|
914
|
+
[
|
|
915
|
+
[0, 1],
|
|
916
|
+
0,
|
|
917
|
+
0,
|
|
918
|
+
() => ApplicationSourceConfig,
|
|
919
|
+
() => SubscriptionList,
|
|
920
|
+
() => PublicationList,
|
|
921
|
+
64 | 0,
|
|
922
|
+
2,
|
|
923
|
+
1,
|
|
924
|
+
() => ApplicationConfig,
|
|
925
|
+
() => IframeConfig,
|
|
926
|
+
],
|
|
927
|
+
];
|
|
928
|
+
var UpdateApplicationResponse = [3, n0, _UARp, 0, [], []];
|
|
929
|
+
var UpdateDataIntegrationAssociationRequest = [
|
|
930
|
+
3,
|
|
931
|
+
n0,
|
|
932
|
+
_UDIAR,
|
|
933
|
+
0,
|
|
934
|
+
[_DII, _DIAIa, _EC],
|
|
935
|
+
[[0, 1], [0, 1], () => ExecutionConfiguration],
|
|
936
|
+
];
|
|
937
|
+
var UpdateDataIntegrationAssociationResponse = [3, n0, _UDIARp, 0, [], []];
|
|
938
|
+
var UpdateDataIntegrationRequest = [3, n0, _UDIR, 0, [_Id, _N, _D], [[0, 1], 0, 0]];
|
|
939
|
+
var UpdateDataIntegrationResponse = [3, n0, _UDIRp, 0, [], []];
|
|
940
|
+
var UpdateEventIntegrationRequest = [3, n0, _UEIR, 0, [_N, _D], [[0, 1], 0]];
|
|
941
|
+
var UpdateEventIntegrationResponse = [3, n0, _UEIRp, 0, [], []];
|
|
942
|
+
var AppIntegrationsServiceException = [-3, _sm, "AppIntegrationsServiceException", 0, [], []];
|
|
943
|
+
schema.TypeRegistry.for(_sm).registerError(AppIntegrationsServiceException, AppIntegrationsServiceException$1);
|
|
944
|
+
var ApplicationAssociationsList = [1, n0, _AAL, 0, () => ApplicationAssociationSummary];
|
|
945
|
+
var ApplicationsList = [1, n0, _AL, 0, () => ApplicationSummary];
|
|
946
|
+
var DataIntegrationAssociationsList = [
|
|
947
|
+
1,
|
|
948
|
+
n0,
|
|
949
|
+
_DIAL,
|
|
950
|
+
0,
|
|
951
|
+
() => DataIntegrationAssociationSummary,
|
|
952
|
+
];
|
|
953
|
+
var DataIntegrationsList = [1, n0, _DIL, 0, () => DataIntegrationSummary];
|
|
954
|
+
var EventIntegrationAssociationsList = [1, n0, _EIAL, 0, () => EventIntegrationAssociation];
|
|
955
|
+
var EventIntegrationsList = [1, n0, _EIL, 0, () => EventIntegration];
|
|
956
|
+
var PublicationList = [1, n0, _PL, 0, () => Publication];
|
|
957
|
+
var SubscriptionList = [1, n0, _SL, 0, () => Subscription];
|
|
958
|
+
var CreateApplication = [
|
|
959
|
+
9,
|
|
960
|
+
n0,
|
|
961
|
+
_CA,
|
|
962
|
+
{
|
|
963
|
+
[_h]: ["POST", "/applications", 200],
|
|
964
|
+
},
|
|
965
|
+
() => CreateApplicationRequest,
|
|
966
|
+
() => CreateApplicationResponse,
|
|
967
|
+
];
|
|
968
|
+
var CreateDataIntegration = [
|
|
969
|
+
9,
|
|
970
|
+
n0,
|
|
971
|
+
_CDI,
|
|
972
|
+
{
|
|
973
|
+
[_h]: ["POST", "/dataIntegrations", 200],
|
|
974
|
+
},
|
|
975
|
+
() => CreateDataIntegrationRequest,
|
|
976
|
+
() => CreateDataIntegrationResponse,
|
|
977
|
+
];
|
|
978
|
+
var CreateDataIntegrationAssociation = [
|
|
979
|
+
9,
|
|
980
|
+
n0,
|
|
981
|
+
_CDIA,
|
|
982
|
+
{
|
|
983
|
+
[_h]: ["POST", "/dataIntegrations/{DataIntegrationIdentifier}/associations", 200],
|
|
984
|
+
},
|
|
985
|
+
() => CreateDataIntegrationAssociationRequest,
|
|
986
|
+
() => CreateDataIntegrationAssociationResponse,
|
|
987
|
+
];
|
|
988
|
+
var CreateEventIntegration = [
|
|
989
|
+
9,
|
|
990
|
+
n0,
|
|
991
|
+
_CEI,
|
|
992
|
+
{
|
|
993
|
+
[_h]: ["POST", "/eventIntegrations", 200],
|
|
994
|
+
},
|
|
995
|
+
() => CreateEventIntegrationRequest,
|
|
996
|
+
() => CreateEventIntegrationResponse,
|
|
997
|
+
];
|
|
998
|
+
var DeleteApplication = [
|
|
999
|
+
9,
|
|
1000
|
+
n0,
|
|
1001
|
+
_DA,
|
|
1002
|
+
{
|
|
1003
|
+
[_h]: ["DELETE", "/applications/{Arn}", 200],
|
|
1004
|
+
},
|
|
1005
|
+
() => DeleteApplicationRequest,
|
|
1006
|
+
() => DeleteApplicationResponse,
|
|
1007
|
+
];
|
|
1008
|
+
var DeleteDataIntegration = [
|
|
1009
|
+
9,
|
|
1010
|
+
n0,
|
|
1011
|
+
_DDI,
|
|
1012
|
+
{
|
|
1013
|
+
[_h]: ["DELETE", "/dataIntegrations/{DataIntegrationIdentifier}", 200],
|
|
1014
|
+
},
|
|
1015
|
+
() => DeleteDataIntegrationRequest,
|
|
1016
|
+
() => DeleteDataIntegrationResponse,
|
|
1017
|
+
];
|
|
1018
|
+
var DeleteEventIntegration = [
|
|
1019
|
+
9,
|
|
1020
|
+
n0,
|
|
1021
|
+
_DEI,
|
|
1022
|
+
{
|
|
1023
|
+
[_h]: ["DELETE", "/eventIntegrations/{Name}", 200],
|
|
1024
|
+
},
|
|
1025
|
+
() => DeleteEventIntegrationRequest,
|
|
1026
|
+
() => DeleteEventIntegrationResponse,
|
|
1027
|
+
];
|
|
1028
|
+
var GetApplication = [
|
|
1029
|
+
9,
|
|
1030
|
+
n0,
|
|
1031
|
+
_GA,
|
|
1032
|
+
{
|
|
1033
|
+
[_h]: ["GET", "/applications/{Arn}", 200],
|
|
1034
|
+
},
|
|
1035
|
+
() => GetApplicationRequest,
|
|
1036
|
+
() => GetApplicationResponse,
|
|
1037
|
+
];
|
|
1038
|
+
var GetDataIntegration = [
|
|
1039
|
+
9,
|
|
1040
|
+
n0,
|
|
1041
|
+
_GDI,
|
|
1042
|
+
{
|
|
1043
|
+
[_h]: ["GET", "/dataIntegrations/{Identifier}", 200],
|
|
1044
|
+
},
|
|
1045
|
+
() => GetDataIntegrationRequest,
|
|
1046
|
+
() => GetDataIntegrationResponse,
|
|
1047
|
+
];
|
|
1048
|
+
var GetEventIntegration = [
|
|
1049
|
+
9,
|
|
1050
|
+
n0,
|
|
1051
|
+
_GEI,
|
|
1052
|
+
{
|
|
1053
|
+
[_h]: ["GET", "/eventIntegrations/{Name}", 200],
|
|
1054
|
+
},
|
|
1055
|
+
() => GetEventIntegrationRequest,
|
|
1056
|
+
() => GetEventIntegrationResponse,
|
|
1057
|
+
];
|
|
1058
|
+
var ListApplicationAssociations = [
|
|
1059
|
+
9,
|
|
1060
|
+
n0,
|
|
1061
|
+
_LAA,
|
|
1062
|
+
{
|
|
1063
|
+
[_h]: ["GET", "/applications/{ApplicationId}/associations", 200],
|
|
1064
|
+
},
|
|
1065
|
+
() => ListApplicationAssociationsRequest,
|
|
1066
|
+
() => ListApplicationAssociationsResponse,
|
|
1067
|
+
];
|
|
1068
|
+
var ListApplications = [
|
|
1069
|
+
9,
|
|
1070
|
+
n0,
|
|
1071
|
+
_LA,
|
|
1072
|
+
{
|
|
1073
|
+
[_h]: ["GET", "/applications", 200],
|
|
1074
|
+
},
|
|
1075
|
+
() => ListApplicationsRequest,
|
|
1076
|
+
() => ListApplicationsResponse,
|
|
1077
|
+
];
|
|
1078
|
+
var ListDataIntegrationAssociations = [
|
|
1079
|
+
9,
|
|
1080
|
+
n0,
|
|
1081
|
+
_LDIA,
|
|
1082
|
+
{
|
|
1083
|
+
[_h]: ["GET", "/dataIntegrations/{DataIntegrationIdentifier}/associations", 200],
|
|
1084
|
+
},
|
|
1085
|
+
() => ListDataIntegrationAssociationsRequest,
|
|
1086
|
+
() => ListDataIntegrationAssociationsResponse,
|
|
1087
|
+
];
|
|
1088
|
+
var ListDataIntegrations = [
|
|
1089
|
+
9,
|
|
1090
|
+
n0,
|
|
1091
|
+
_LDI,
|
|
1092
|
+
{
|
|
1093
|
+
[_h]: ["GET", "/dataIntegrations", 200],
|
|
1094
|
+
},
|
|
1095
|
+
() => ListDataIntegrationsRequest,
|
|
1096
|
+
() => ListDataIntegrationsResponse,
|
|
1097
|
+
];
|
|
1098
|
+
var ListEventIntegrationAssociations = [
|
|
1099
|
+
9,
|
|
1100
|
+
n0,
|
|
1101
|
+
_LEIA,
|
|
1102
|
+
{
|
|
1103
|
+
[_h]: ["GET", "/eventIntegrations/{EventIntegrationName}/associations", 200],
|
|
1104
|
+
},
|
|
1105
|
+
() => ListEventIntegrationAssociationsRequest,
|
|
1106
|
+
() => ListEventIntegrationAssociationsResponse,
|
|
1107
|
+
];
|
|
1108
|
+
var ListEventIntegrations = [
|
|
1109
|
+
9,
|
|
1110
|
+
n0,
|
|
1111
|
+
_LEI,
|
|
1112
|
+
{
|
|
1113
|
+
[_h]: ["GET", "/eventIntegrations", 200],
|
|
1114
|
+
},
|
|
1115
|
+
() => ListEventIntegrationsRequest,
|
|
1116
|
+
() => ListEventIntegrationsResponse,
|
|
1117
|
+
];
|
|
1118
|
+
var ListTagsForResource = [
|
|
1119
|
+
9,
|
|
1120
|
+
n0,
|
|
1121
|
+
_LTFR,
|
|
1122
|
+
{
|
|
1123
|
+
[_h]: ["GET", "/tags/{resourceArn}", 200],
|
|
1124
|
+
},
|
|
1125
|
+
() => ListTagsForResourceRequest,
|
|
1126
|
+
() => ListTagsForResourceResponse,
|
|
1127
|
+
];
|
|
1128
|
+
var TagResource = [
|
|
1129
|
+
9,
|
|
1130
|
+
n0,
|
|
1131
|
+
_TR,
|
|
1132
|
+
{
|
|
1133
|
+
[_h]: ["POST", "/tags/{resourceArn}", 200],
|
|
1134
|
+
},
|
|
1135
|
+
() => TagResourceRequest,
|
|
1136
|
+
() => TagResourceResponse,
|
|
1137
|
+
];
|
|
1138
|
+
var UntagResource = [
|
|
1139
|
+
9,
|
|
1140
|
+
n0,
|
|
1141
|
+
_UR,
|
|
1142
|
+
{
|
|
1143
|
+
[_h]: ["DELETE", "/tags/{resourceArn}", 200],
|
|
1144
|
+
},
|
|
1145
|
+
() => UntagResourceRequest,
|
|
1146
|
+
() => UntagResourceResponse,
|
|
1147
|
+
];
|
|
1148
|
+
var UpdateApplication = [
|
|
1149
|
+
9,
|
|
1150
|
+
n0,
|
|
1151
|
+
_UA,
|
|
1152
|
+
{
|
|
1153
|
+
[_h]: ["PATCH", "/applications/{Arn}", 200],
|
|
1154
|
+
},
|
|
1155
|
+
() => UpdateApplicationRequest,
|
|
1156
|
+
() => UpdateApplicationResponse,
|
|
1157
|
+
];
|
|
1158
|
+
var UpdateDataIntegration = [
|
|
1159
|
+
9,
|
|
1160
|
+
n0,
|
|
1161
|
+
_UDI,
|
|
1162
|
+
{
|
|
1163
|
+
[_h]: ["PATCH", "/dataIntegrations/{Identifier}", 200],
|
|
1164
|
+
},
|
|
1165
|
+
() => UpdateDataIntegrationRequest,
|
|
1166
|
+
() => UpdateDataIntegrationResponse,
|
|
1167
|
+
];
|
|
1168
|
+
var UpdateDataIntegrationAssociation = [
|
|
1169
|
+
9,
|
|
1170
|
+
n0,
|
|
1171
|
+
_UDIA,
|
|
1172
|
+
{
|
|
1173
|
+
[_h]: [
|
|
1174
|
+
"PATCH",
|
|
1175
|
+
"/dataIntegrations/{DataIntegrationIdentifier}/associations/{DataIntegrationAssociationIdentifier}",
|
|
1176
|
+
200,
|
|
1177
|
+
],
|
|
1178
|
+
},
|
|
1179
|
+
() => UpdateDataIntegrationAssociationRequest,
|
|
1180
|
+
() => UpdateDataIntegrationAssociationResponse,
|
|
1181
|
+
];
|
|
1182
|
+
var UpdateEventIntegration = [
|
|
1183
|
+
9,
|
|
1184
|
+
n0,
|
|
1185
|
+
_UEI,
|
|
1186
|
+
{
|
|
1187
|
+
[_h]: ["PATCH", "/eventIntegrations/{Name}", 200],
|
|
1188
|
+
},
|
|
1189
|
+
() => UpdateEventIntegrationRequest,
|
|
1190
|
+
() => UpdateEventIntegrationResponse,
|
|
1191
|
+
];
|
|
1069
1192
|
|
|
1070
1193
|
class CreateApplicationCommand extends smithyClient.Command
|
|
1071
1194
|
.classBuilder()
|
|
1072
1195
|
.ep(commonParams)
|
|
1073
1196
|
.m(function (Command, cs, config, o) {
|
|
1074
|
-
return [
|
|
1075
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1076
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1077
|
-
];
|
|
1197
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1078
1198
|
})
|
|
1079
1199
|
.s("AmazonAppIntegrationService", "CreateApplication", {})
|
|
1080
1200
|
.n("AppIntegrationsClient", "CreateApplicationCommand")
|
|
1081
|
-
.
|
|
1082
|
-
.ser(se_CreateApplicationCommand)
|
|
1083
|
-
.de(de_CreateApplicationCommand)
|
|
1201
|
+
.sc(CreateApplication)
|
|
1084
1202
|
.build() {
|
|
1085
1203
|
}
|
|
1086
1204
|
|
|
@@ -1088,16 +1206,11 @@ class CreateDataIntegrationAssociationCommand extends smithyClient.Command
|
|
|
1088
1206
|
.classBuilder()
|
|
1089
1207
|
.ep(commonParams)
|
|
1090
1208
|
.m(function (Command, cs, config, o) {
|
|
1091
|
-
return [
|
|
1092
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1093
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1094
|
-
];
|
|
1209
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1095
1210
|
})
|
|
1096
1211
|
.s("AmazonAppIntegrationService", "CreateDataIntegrationAssociation", {})
|
|
1097
1212
|
.n("AppIntegrationsClient", "CreateDataIntegrationAssociationCommand")
|
|
1098
|
-
.
|
|
1099
|
-
.ser(se_CreateDataIntegrationAssociationCommand)
|
|
1100
|
-
.de(de_CreateDataIntegrationAssociationCommand)
|
|
1213
|
+
.sc(CreateDataIntegrationAssociation)
|
|
1101
1214
|
.build() {
|
|
1102
1215
|
}
|
|
1103
1216
|
|
|
@@ -1105,16 +1218,11 @@ class CreateDataIntegrationCommand extends smithyClient.Command
|
|
|
1105
1218
|
.classBuilder()
|
|
1106
1219
|
.ep(commonParams)
|
|
1107
1220
|
.m(function (Command, cs, config, o) {
|
|
1108
|
-
return [
|
|
1109
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1110
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1111
|
-
];
|
|
1221
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1112
1222
|
})
|
|
1113
1223
|
.s("AmazonAppIntegrationService", "CreateDataIntegration", {})
|
|
1114
1224
|
.n("AppIntegrationsClient", "CreateDataIntegrationCommand")
|
|
1115
|
-
.
|
|
1116
|
-
.ser(se_CreateDataIntegrationCommand)
|
|
1117
|
-
.de(de_CreateDataIntegrationCommand)
|
|
1225
|
+
.sc(CreateDataIntegration)
|
|
1118
1226
|
.build() {
|
|
1119
1227
|
}
|
|
1120
1228
|
|
|
@@ -1122,16 +1230,11 @@ class CreateEventIntegrationCommand extends smithyClient.Command
|
|
|
1122
1230
|
.classBuilder()
|
|
1123
1231
|
.ep(commonParams)
|
|
1124
1232
|
.m(function (Command, cs, config, o) {
|
|
1125
|
-
return [
|
|
1126
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1127
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1128
|
-
];
|
|
1233
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1129
1234
|
})
|
|
1130
1235
|
.s("AmazonAppIntegrationService", "CreateEventIntegration", {})
|
|
1131
1236
|
.n("AppIntegrationsClient", "CreateEventIntegrationCommand")
|
|
1132
|
-
.
|
|
1133
|
-
.ser(se_CreateEventIntegrationCommand)
|
|
1134
|
-
.de(de_CreateEventIntegrationCommand)
|
|
1237
|
+
.sc(CreateEventIntegration)
|
|
1135
1238
|
.build() {
|
|
1136
1239
|
}
|
|
1137
1240
|
|
|
@@ -1139,16 +1242,11 @@ class DeleteApplicationCommand extends smithyClient.Command
|
|
|
1139
1242
|
.classBuilder()
|
|
1140
1243
|
.ep(commonParams)
|
|
1141
1244
|
.m(function (Command, cs, config, o) {
|
|
1142
|
-
return [
|
|
1143
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1144
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1145
|
-
];
|
|
1245
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1146
1246
|
})
|
|
1147
1247
|
.s("AmazonAppIntegrationService", "DeleteApplication", {})
|
|
1148
1248
|
.n("AppIntegrationsClient", "DeleteApplicationCommand")
|
|
1149
|
-
.
|
|
1150
|
-
.ser(se_DeleteApplicationCommand)
|
|
1151
|
-
.de(de_DeleteApplicationCommand)
|
|
1249
|
+
.sc(DeleteApplication)
|
|
1152
1250
|
.build() {
|
|
1153
1251
|
}
|
|
1154
1252
|
|
|
@@ -1156,16 +1254,11 @@ class DeleteDataIntegrationCommand extends smithyClient.Command
|
|
|
1156
1254
|
.classBuilder()
|
|
1157
1255
|
.ep(commonParams)
|
|
1158
1256
|
.m(function (Command, cs, config, o) {
|
|
1159
|
-
return [
|
|
1160
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1161
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1162
|
-
];
|
|
1257
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1163
1258
|
})
|
|
1164
1259
|
.s("AmazonAppIntegrationService", "DeleteDataIntegration", {})
|
|
1165
1260
|
.n("AppIntegrationsClient", "DeleteDataIntegrationCommand")
|
|
1166
|
-
.
|
|
1167
|
-
.ser(se_DeleteDataIntegrationCommand)
|
|
1168
|
-
.de(de_DeleteDataIntegrationCommand)
|
|
1261
|
+
.sc(DeleteDataIntegration)
|
|
1169
1262
|
.build() {
|
|
1170
1263
|
}
|
|
1171
1264
|
|
|
@@ -1173,16 +1266,11 @@ class DeleteEventIntegrationCommand extends smithyClient.Command
|
|
|
1173
1266
|
.classBuilder()
|
|
1174
1267
|
.ep(commonParams)
|
|
1175
1268
|
.m(function (Command, cs, config, o) {
|
|
1176
|
-
return [
|
|
1177
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1178
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1179
|
-
];
|
|
1269
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1180
1270
|
})
|
|
1181
1271
|
.s("AmazonAppIntegrationService", "DeleteEventIntegration", {})
|
|
1182
1272
|
.n("AppIntegrationsClient", "DeleteEventIntegrationCommand")
|
|
1183
|
-
.
|
|
1184
|
-
.ser(se_DeleteEventIntegrationCommand)
|
|
1185
|
-
.de(de_DeleteEventIntegrationCommand)
|
|
1273
|
+
.sc(DeleteEventIntegration)
|
|
1186
1274
|
.build() {
|
|
1187
1275
|
}
|
|
1188
1276
|
|
|
@@ -1190,16 +1278,11 @@ class GetApplicationCommand extends smithyClient.Command
|
|
|
1190
1278
|
.classBuilder()
|
|
1191
1279
|
.ep(commonParams)
|
|
1192
1280
|
.m(function (Command, cs, config, o) {
|
|
1193
|
-
return [
|
|
1194
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1195
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1196
|
-
];
|
|
1281
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1197
1282
|
})
|
|
1198
1283
|
.s("AmazonAppIntegrationService", "GetApplication", {})
|
|
1199
1284
|
.n("AppIntegrationsClient", "GetApplicationCommand")
|
|
1200
|
-
.
|
|
1201
|
-
.ser(se_GetApplicationCommand)
|
|
1202
|
-
.de(de_GetApplicationCommand)
|
|
1285
|
+
.sc(GetApplication)
|
|
1203
1286
|
.build() {
|
|
1204
1287
|
}
|
|
1205
1288
|
|
|
@@ -1207,16 +1290,11 @@ class GetDataIntegrationCommand extends smithyClient.Command
|
|
|
1207
1290
|
.classBuilder()
|
|
1208
1291
|
.ep(commonParams)
|
|
1209
1292
|
.m(function (Command, cs, config, o) {
|
|
1210
|
-
return [
|
|
1211
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1212
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1213
|
-
];
|
|
1293
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1214
1294
|
})
|
|
1215
1295
|
.s("AmazonAppIntegrationService", "GetDataIntegration", {})
|
|
1216
1296
|
.n("AppIntegrationsClient", "GetDataIntegrationCommand")
|
|
1217
|
-
.
|
|
1218
|
-
.ser(se_GetDataIntegrationCommand)
|
|
1219
|
-
.de(de_GetDataIntegrationCommand)
|
|
1297
|
+
.sc(GetDataIntegration)
|
|
1220
1298
|
.build() {
|
|
1221
1299
|
}
|
|
1222
1300
|
|
|
@@ -1224,16 +1302,11 @@ class GetEventIntegrationCommand extends smithyClient.Command
|
|
|
1224
1302
|
.classBuilder()
|
|
1225
1303
|
.ep(commonParams)
|
|
1226
1304
|
.m(function (Command, cs, config, o) {
|
|
1227
|
-
return [
|
|
1228
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1229
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1230
|
-
];
|
|
1305
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1231
1306
|
})
|
|
1232
1307
|
.s("AmazonAppIntegrationService", "GetEventIntegration", {})
|
|
1233
1308
|
.n("AppIntegrationsClient", "GetEventIntegrationCommand")
|
|
1234
|
-
.
|
|
1235
|
-
.ser(se_GetEventIntegrationCommand)
|
|
1236
|
-
.de(de_GetEventIntegrationCommand)
|
|
1309
|
+
.sc(GetEventIntegration)
|
|
1237
1310
|
.build() {
|
|
1238
1311
|
}
|
|
1239
1312
|
|
|
@@ -1241,16 +1314,11 @@ class ListApplicationAssociationsCommand extends smithyClient.Command
|
|
|
1241
1314
|
.classBuilder()
|
|
1242
1315
|
.ep(commonParams)
|
|
1243
1316
|
.m(function (Command, cs, config, o) {
|
|
1244
|
-
return [
|
|
1245
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1246
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1247
|
-
];
|
|
1317
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1248
1318
|
})
|
|
1249
1319
|
.s("AmazonAppIntegrationService", "ListApplicationAssociations", {})
|
|
1250
1320
|
.n("AppIntegrationsClient", "ListApplicationAssociationsCommand")
|
|
1251
|
-
.
|
|
1252
|
-
.ser(se_ListApplicationAssociationsCommand)
|
|
1253
|
-
.de(de_ListApplicationAssociationsCommand)
|
|
1321
|
+
.sc(ListApplicationAssociations)
|
|
1254
1322
|
.build() {
|
|
1255
1323
|
}
|
|
1256
1324
|
|
|
@@ -1258,16 +1326,11 @@ class ListApplicationsCommand extends smithyClient.Command
|
|
|
1258
1326
|
.classBuilder()
|
|
1259
1327
|
.ep(commonParams)
|
|
1260
1328
|
.m(function (Command, cs, config, o) {
|
|
1261
|
-
return [
|
|
1262
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1263
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1264
|
-
];
|
|
1329
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1265
1330
|
})
|
|
1266
1331
|
.s("AmazonAppIntegrationService", "ListApplications", {})
|
|
1267
1332
|
.n("AppIntegrationsClient", "ListApplicationsCommand")
|
|
1268
|
-
.
|
|
1269
|
-
.ser(se_ListApplicationsCommand)
|
|
1270
|
-
.de(de_ListApplicationsCommand)
|
|
1333
|
+
.sc(ListApplications)
|
|
1271
1334
|
.build() {
|
|
1272
1335
|
}
|
|
1273
1336
|
|
|
@@ -1275,16 +1338,11 @@ class ListDataIntegrationAssociationsCommand extends smithyClient.Command
|
|
|
1275
1338
|
.classBuilder()
|
|
1276
1339
|
.ep(commonParams)
|
|
1277
1340
|
.m(function (Command, cs, config, o) {
|
|
1278
|
-
return [
|
|
1279
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1280
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1281
|
-
];
|
|
1341
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1282
1342
|
})
|
|
1283
1343
|
.s("AmazonAppIntegrationService", "ListDataIntegrationAssociations", {})
|
|
1284
1344
|
.n("AppIntegrationsClient", "ListDataIntegrationAssociationsCommand")
|
|
1285
|
-
.
|
|
1286
|
-
.ser(se_ListDataIntegrationAssociationsCommand)
|
|
1287
|
-
.de(de_ListDataIntegrationAssociationsCommand)
|
|
1345
|
+
.sc(ListDataIntegrationAssociations)
|
|
1288
1346
|
.build() {
|
|
1289
1347
|
}
|
|
1290
1348
|
|
|
@@ -1292,16 +1350,11 @@ class ListDataIntegrationsCommand extends smithyClient.Command
|
|
|
1292
1350
|
.classBuilder()
|
|
1293
1351
|
.ep(commonParams)
|
|
1294
1352
|
.m(function (Command, cs, config, o) {
|
|
1295
|
-
return [
|
|
1296
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1297
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1298
|
-
];
|
|
1353
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1299
1354
|
})
|
|
1300
1355
|
.s("AmazonAppIntegrationService", "ListDataIntegrations", {})
|
|
1301
1356
|
.n("AppIntegrationsClient", "ListDataIntegrationsCommand")
|
|
1302
|
-
.
|
|
1303
|
-
.ser(se_ListDataIntegrationsCommand)
|
|
1304
|
-
.de(de_ListDataIntegrationsCommand)
|
|
1357
|
+
.sc(ListDataIntegrations)
|
|
1305
1358
|
.build() {
|
|
1306
1359
|
}
|
|
1307
1360
|
|
|
@@ -1309,16 +1362,11 @@ class ListEventIntegrationAssociationsCommand extends smithyClient.Command
|
|
|
1309
1362
|
.classBuilder()
|
|
1310
1363
|
.ep(commonParams)
|
|
1311
1364
|
.m(function (Command, cs, config, o) {
|
|
1312
|
-
return [
|
|
1313
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1314
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1315
|
-
];
|
|
1365
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1316
1366
|
})
|
|
1317
1367
|
.s("AmazonAppIntegrationService", "ListEventIntegrationAssociations", {})
|
|
1318
1368
|
.n("AppIntegrationsClient", "ListEventIntegrationAssociationsCommand")
|
|
1319
|
-
.
|
|
1320
|
-
.ser(se_ListEventIntegrationAssociationsCommand)
|
|
1321
|
-
.de(de_ListEventIntegrationAssociationsCommand)
|
|
1369
|
+
.sc(ListEventIntegrationAssociations)
|
|
1322
1370
|
.build() {
|
|
1323
1371
|
}
|
|
1324
1372
|
|
|
@@ -1326,16 +1374,11 @@ class ListEventIntegrationsCommand extends smithyClient.Command
|
|
|
1326
1374
|
.classBuilder()
|
|
1327
1375
|
.ep(commonParams)
|
|
1328
1376
|
.m(function (Command, cs, config, o) {
|
|
1329
|
-
return [
|
|
1330
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1331
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1332
|
-
];
|
|
1377
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1333
1378
|
})
|
|
1334
1379
|
.s("AmazonAppIntegrationService", "ListEventIntegrations", {})
|
|
1335
1380
|
.n("AppIntegrationsClient", "ListEventIntegrationsCommand")
|
|
1336
|
-
.
|
|
1337
|
-
.ser(se_ListEventIntegrationsCommand)
|
|
1338
|
-
.de(de_ListEventIntegrationsCommand)
|
|
1381
|
+
.sc(ListEventIntegrations)
|
|
1339
1382
|
.build() {
|
|
1340
1383
|
}
|
|
1341
1384
|
|
|
@@ -1343,16 +1386,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1343
1386
|
.classBuilder()
|
|
1344
1387
|
.ep(commonParams)
|
|
1345
1388
|
.m(function (Command, cs, config, o) {
|
|
1346
|
-
return [
|
|
1347
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1348
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1349
|
-
];
|
|
1389
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1350
1390
|
})
|
|
1351
1391
|
.s("AmazonAppIntegrationService", "ListTagsForResource", {})
|
|
1352
1392
|
.n("AppIntegrationsClient", "ListTagsForResourceCommand")
|
|
1353
|
-
.
|
|
1354
|
-
.ser(se_ListTagsForResourceCommand)
|
|
1355
|
-
.de(de_ListTagsForResourceCommand)
|
|
1393
|
+
.sc(ListTagsForResource)
|
|
1356
1394
|
.build() {
|
|
1357
1395
|
}
|
|
1358
1396
|
|
|
@@ -1360,16 +1398,11 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1360
1398
|
.classBuilder()
|
|
1361
1399
|
.ep(commonParams)
|
|
1362
1400
|
.m(function (Command, cs, config, o) {
|
|
1363
|
-
return [
|
|
1364
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1365
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1366
|
-
];
|
|
1401
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1367
1402
|
})
|
|
1368
1403
|
.s("AmazonAppIntegrationService", "TagResource", {})
|
|
1369
1404
|
.n("AppIntegrationsClient", "TagResourceCommand")
|
|
1370
|
-
.
|
|
1371
|
-
.ser(se_TagResourceCommand)
|
|
1372
|
-
.de(de_TagResourceCommand)
|
|
1405
|
+
.sc(TagResource)
|
|
1373
1406
|
.build() {
|
|
1374
1407
|
}
|
|
1375
1408
|
|
|
@@ -1377,16 +1410,11 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1377
1410
|
.classBuilder()
|
|
1378
1411
|
.ep(commonParams)
|
|
1379
1412
|
.m(function (Command, cs, config, o) {
|
|
1380
|
-
return [
|
|
1381
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1382
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1383
|
-
];
|
|
1413
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1384
1414
|
})
|
|
1385
1415
|
.s("AmazonAppIntegrationService", "UntagResource", {})
|
|
1386
1416
|
.n("AppIntegrationsClient", "UntagResourceCommand")
|
|
1387
|
-
.
|
|
1388
|
-
.ser(se_UntagResourceCommand)
|
|
1389
|
-
.de(de_UntagResourceCommand)
|
|
1417
|
+
.sc(UntagResource)
|
|
1390
1418
|
.build() {
|
|
1391
1419
|
}
|
|
1392
1420
|
|
|
@@ -1394,16 +1422,11 @@ class UpdateApplicationCommand extends smithyClient.Command
|
|
|
1394
1422
|
.classBuilder()
|
|
1395
1423
|
.ep(commonParams)
|
|
1396
1424
|
.m(function (Command, cs, config, o) {
|
|
1397
|
-
return [
|
|
1398
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1399
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1400
|
-
];
|
|
1425
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1401
1426
|
})
|
|
1402
1427
|
.s("AmazonAppIntegrationService", "UpdateApplication", {})
|
|
1403
1428
|
.n("AppIntegrationsClient", "UpdateApplicationCommand")
|
|
1404
|
-
.
|
|
1405
|
-
.ser(se_UpdateApplicationCommand)
|
|
1406
|
-
.de(de_UpdateApplicationCommand)
|
|
1429
|
+
.sc(UpdateApplication)
|
|
1407
1430
|
.build() {
|
|
1408
1431
|
}
|
|
1409
1432
|
|
|
@@ -1411,16 +1434,11 @@ class UpdateDataIntegrationAssociationCommand extends smithyClient.Command
|
|
|
1411
1434
|
.classBuilder()
|
|
1412
1435
|
.ep(commonParams)
|
|
1413
1436
|
.m(function (Command, cs, config, o) {
|
|
1414
|
-
return [
|
|
1415
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1416
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1417
|
-
];
|
|
1437
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1418
1438
|
})
|
|
1419
1439
|
.s("AmazonAppIntegrationService", "UpdateDataIntegrationAssociation", {})
|
|
1420
1440
|
.n("AppIntegrationsClient", "UpdateDataIntegrationAssociationCommand")
|
|
1421
|
-
.
|
|
1422
|
-
.ser(se_UpdateDataIntegrationAssociationCommand)
|
|
1423
|
-
.de(de_UpdateDataIntegrationAssociationCommand)
|
|
1441
|
+
.sc(UpdateDataIntegrationAssociation)
|
|
1424
1442
|
.build() {
|
|
1425
1443
|
}
|
|
1426
1444
|
|
|
@@ -1428,16 +1446,11 @@ class UpdateDataIntegrationCommand extends smithyClient.Command
|
|
|
1428
1446
|
.classBuilder()
|
|
1429
1447
|
.ep(commonParams)
|
|
1430
1448
|
.m(function (Command, cs, config, o) {
|
|
1431
|
-
return [
|
|
1432
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1433
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1434
|
-
];
|
|
1449
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1435
1450
|
})
|
|
1436
1451
|
.s("AmazonAppIntegrationService", "UpdateDataIntegration", {})
|
|
1437
1452
|
.n("AppIntegrationsClient", "UpdateDataIntegrationCommand")
|
|
1438
|
-
.
|
|
1439
|
-
.ser(se_UpdateDataIntegrationCommand)
|
|
1440
|
-
.de(de_UpdateDataIntegrationCommand)
|
|
1453
|
+
.sc(UpdateDataIntegration)
|
|
1441
1454
|
.build() {
|
|
1442
1455
|
}
|
|
1443
1456
|
|
|
@@ -1445,16 +1458,11 @@ class UpdateEventIntegrationCommand extends smithyClient.Command
|
|
|
1445
1458
|
.classBuilder()
|
|
1446
1459
|
.ep(commonParams)
|
|
1447
1460
|
.m(function (Command, cs, config, o) {
|
|
1448
|
-
return [
|
|
1449
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1450
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1451
|
-
];
|
|
1461
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1452
1462
|
})
|
|
1453
1463
|
.s("AmazonAppIntegrationService", "UpdateEventIntegration", {})
|
|
1454
1464
|
.n("AppIntegrationsClient", "UpdateEventIntegrationCommand")
|
|
1455
|
-
.
|
|
1456
|
-
.ser(se_UpdateEventIntegrationCommand)
|
|
1457
|
-
.de(de_UpdateEventIntegrationCommand)
|
|
1465
|
+
.sc(UpdateEventIntegration)
|
|
1458
1466
|
.build() {
|
|
1459
1467
|
}
|
|
1460
1468
|
|
|
@@ -1507,10 +1515,10 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1507
1515
|
enumerable: true,
|
|
1508
1516
|
get: function () { return smithyClient.Client; }
|
|
1509
1517
|
});
|
|
1510
|
-
exports.AccessDeniedException = AccessDeniedException;
|
|
1518
|
+
exports.AccessDeniedException = AccessDeniedException$1;
|
|
1511
1519
|
exports.AppIntegrations = AppIntegrations;
|
|
1512
1520
|
exports.AppIntegrationsClient = AppIntegrationsClient;
|
|
1513
|
-
exports.AppIntegrationsServiceException = AppIntegrationsServiceException;
|
|
1521
|
+
exports.AppIntegrationsServiceException = AppIntegrationsServiceException$1;
|
|
1514
1522
|
exports.ContactHandlingScope = ContactHandlingScope;
|
|
1515
1523
|
exports.CreateApplicationCommand = CreateApplicationCommand;
|
|
1516
1524
|
exports.CreateDataIntegrationAssociationCommand = CreateDataIntegrationAssociationCommand;
|
|
@@ -1519,14 +1527,14 @@ exports.CreateEventIntegrationCommand = CreateEventIntegrationCommand;
|
|
|
1519
1527
|
exports.DeleteApplicationCommand = DeleteApplicationCommand;
|
|
1520
1528
|
exports.DeleteDataIntegrationCommand = DeleteDataIntegrationCommand;
|
|
1521
1529
|
exports.DeleteEventIntegrationCommand = DeleteEventIntegrationCommand;
|
|
1522
|
-
exports.DuplicateResourceException = DuplicateResourceException;
|
|
1530
|
+
exports.DuplicateResourceException = DuplicateResourceException$1;
|
|
1523
1531
|
exports.ExecutionMode = ExecutionMode;
|
|
1524
1532
|
exports.ExecutionStatus = ExecutionStatus;
|
|
1525
1533
|
exports.GetApplicationCommand = GetApplicationCommand;
|
|
1526
1534
|
exports.GetDataIntegrationCommand = GetDataIntegrationCommand;
|
|
1527
1535
|
exports.GetEventIntegrationCommand = GetEventIntegrationCommand;
|
|
1528
|
-
exports.InternalServiceError = InternalServiceError;
|
|
1529
|
-
exports.InvalidRequestException = InvalidRequestException;
|
|
1536
|
+
exports.InternalServiceError = InternalServiceError$1;
|
|
1537
|
+
exports.InvalidRequestException = InvalidRequestException$1;
|
|
1530
1538
|
exports.ListApplicationAssociationsCommand = ListApplicationAssociationsCommand;
|
|
1531
1539
|
exports.ListApplicationsCommand = ListApplicationsCommand;
|
|
1532
1540
|
exports.ListDataIntegrationAssociationsCommand = ListDataIntegrationAssociationsCommand;
|
|
@@ -1534,11 +1542,11 @@ exports.ListDataIntegrationsCommand = ListDataIntegrationsCommand;
|
|
|
1534
1542
|
exports.ListEventIntegrationAssociationsCommand = ListEventIntegrationAssociationsCommand;
|
|
1535
1543
|
exports.ListEventIntegrationsCommand = ListEventIntegrationsCommand;
|
|
1536
1544
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1537
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1538
|
-
exports.ResourceQuotaExceededException = ResourceQuotaExceededException;
|
|
1545
|
+
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
1546
|
+
exports.ResourceQuotaExceededException = ResourceQuotaExceededException$1;
|
|
1539
1547
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1540
|
-
exports.ThrottlingException = ThrottlingException;
|
|
1541
|
-
exports.UnsupportedOperationException = UnsupportedOperationException;
|
|
1548
|
+
exports.ThrottlingException = ThrottlingException$1;
|
|
1549
|
+
exports.UnsupportedOperationException = UnsupportedOperationException$1;
|
|
1542
1550
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1543
1551
|
exports.UpdateApplicationCommand = UpdateApplicationCommand;
|
|
1544
1552
|
exports.UpdateDataIntegrationAssociationCommand = UpdateDataIntegrationAssociationCommand;
|