@aws-sdk/client-appintegrations 3.987.0 → 3.988.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +42 -901
- package/dist-cjs/models/AppIntegrationsServiceException.js +12 -0
- package/dist-cjs/models/errors.js +124 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +678 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +53 -47
- package/dist-types/schemas/schemas_0.d.ts +15 -8
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +10 -8
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var AppIntegrationsServiceException = require('./models/AppIntegrationsServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,778 +113,6 @@ class AppIntegrationsClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class AppIntegrationsServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, AppIntegrationsServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccessDeniedException extends AppIntegrationsServiceException {
|
|
121
|
-
name = "AccessDeniedException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
Message;
|
|
124
|
-
constructor(opts) {
|
|
125
|
-
super({
|
|
126
|
-
name: "AccessDeniedException",
|
|
127
|
-
$fault: "client",
|
|
128
|
-
...opts,
|
|
129
|
-
});
|
|
130
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
131
|
-
this.Message = opts.Message;
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
class DuplicateResourceException extends AppIntegrationsServiceException {
|
|
135
|
-
name = "DuplicateResourceException";
|
|
136
|
-
$fault = "client";
|
|
137
|
-
Message;
|
|
138
|
-
constructor(opts) {
|
|
139
|
-
super({
|
|
140
|
-
name: "DuplicateResourceException",
|
|
141
|
-
$fault: "client",
|
|
142
|
-
...opts,
|
|
143
|
-
});
|
|
144
|
-
Object.setPrototypeOf(this, DuplicateResourceException.prototype);
|
|
145
|
-
this.Message = opts.Message;
|
|
146
|
-
}
|
|
147
|
-
}
|
|
148
|
-
class InternalServiceError extends AppIntegrationsServiceException {
|
|
149
|
-
name = "InternalServiceError";
|
|
150
|
-
$fault = "server";
|
|
151
|
-
Message;
|
|
152
|
-
constructor(opts) {
|
|
153
|
-
super({
|
|
154
|
-
name: "InternalServiceError",
|
|
155
|
-
$fault: "server",
|
|
156
|
-
...opts,
|
|
157
|
-
});
|
|
158
|
-
Object.setPrototypeOf(this, InternalServiceError.prototype);
|
|
159
|
-
this.Message = opts.Message;
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
class InvalidRequestException extends AppIntegrationsServiceException {
|
|
163
|
-
name = "InvalidRequestException";
|
|
164
|
-
$fault = "client";
|
|
165
|
-
Message;
|
|
166
|
-
constructor(opts) {
|
|
167
|
-
super({
|
|
168
|
-
name: "InvalidRequestException",
|
|
169
|
-
$fault: "client",
|
|
170
|
-
...opts,
|
|
171
|
-
});
|
|
172
|
-
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
173
|
-
this.Message = opts.Message;
|
|
174
|
-
}
|
|
175
|
-
}
|
|
176
|
-
class ResourceQuotaExceededException extends AppIntegrationsServiceException {
|
|
177
|
-
name = "ResourceQuotaExceededException";
|
|
178
|
-
$fault = "client";
|
|
179
|
-
Message;
|
|
180
|
-
constructor(opts) {
|
|
181
|
-
super({
|
|
182
|
-
name: "ResourceQuotaExceededException",
|
|
183
|
-
$fault: "client",
|
|
184
|
-
...opts,
|
|
185
|
-
});
|
|
186
|
-
Object.setPrototypeOf(this, ResourceQuotaExceededException.prototype);
|
|
187
|
-
this.Message = opts.Message;
|
|
188
|
-
}
|
|
189
|
-
}
|
|
190
|
-
class ThrottlingException extends AppIntegrationsServiceException {
|
|
191
|
-
name = "ThrottlingException";
|
|
192
|
-
$fault = "client";
|
|
193
|
-
Message;
|
|
194
|
-
constructor(opts) {
|
|
195
|
-
super({
|
|
196
|
-
name: "ThrottlingException",
|
|
197
|
-
$fault: "client",
|
|
198
|
-
...opts,
|
|
199
|
-
});
|
|
200
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
201
|
-
this.Message = opts.Message;
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
class UnsupportedOperationException extends AppIntegrationsServiceException {
|
|
205
|
-
name = "UnsupportedOperationException";
|
|
206
|
-
$fault = "client";
|
|
207
|
-
Message;
|
|
208
|
-
constructor(opts) {
|
|
209
|
-
super({
|
|
210
|
-
name: "UnsupportedOperationException",
|
|
211
|
-
$fault: "client",
|
|
212
|
-
...opts,
|
|
213
|
-
});
|
|
214
|
-
Object.setPrototypeOf(this, UnsupportedOperationException.prototype);
|
|
215
|
-
this.Message = opts.Message;
|
|
216
|
-
}
|
|
217
|
-
}
|
|
218
|
-
class ResourceNotFoundException extends AppIntegrationsServiceException {
|
|
219
|
-
name = "ResourceNotFoundException";
|
|
220
|
-
$fault = "client";
|
|
221
|
-
Message;
|
|
222
|
-
constructor(opts) {
|
|
223
|
-
super({
|
|
224
|
-
name: "ResourceNotFoundException",
|
|
225
|
-
$fault: "client",
|
|
226
|
-
...opts,
|
|
227
|
-
});
|
|
228
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
229
|
-
this.Message = opts.Message;
|
|
230
|
-
}
|
|
231
|
-
}
|
|
232
|
-
|
|
233
|
-
const _A = "Arn";
|
|
234
|
-
const _AA = "ApplicationArn";
|
|
235
|
-
const _AAA = "ApplicationAssociationArn";
|
|
236
|
-
const _AAL = "ApplicationAssociationsList";
|
|
237
|
-
const _AAS = "ApplicationAssociationSummary";
|
|
238
|
-
const _AAp = "ApplicationAssociations";
|
|
239
|
-
const _AC = "ApplicationConfig";
|
|
240
|
-
const _ADE = "AccessDeniedException";
|
|
241
|
-
const _AI = "ApplicationId";
|
|
242
|
-
const _AL = "ApplicationsList";
|
|
243
|
-
const _AO = "ApprovedOrigins";
|
|
244
|
-
const _AS = "ApplicationSummary";
|
|
245
|
-
const _ASC = "ApplicationSourceConfig";
|
|
246
|
-
const _AT = "ApplicationType";
|
|
247
|
-
const _AU = "AccessUrl";
|
|
248
|
-
const _Al = "Allow";
|
|
249
|
-
const _Ap = "Applications";
|
|
250
|
-
const _CA = "CreateApplication";
|
|
251
|
-
const _CAM = "ClientAssociationMetadata";
|
|
252
|
-
const _CAR = "CreateApplicationRequest";
|
|
253
|
-
const _CARr = "CreateApplicationResponse";
|
|
254
|
-
const _CDI = "CreateDataIntegration";
|
|
255
|
-
const _CDIA = "CreateDataIntegrationAssociation";
|
|
256
|
-
const _CDIAR = "CreateDataIntegrationAssociationRequest";
|
|
257
|
-
const _CDIARr = "CreateDataIntegrationAssociationResponse";
|
|
258
|
-
const _CDIR = "CreateDataIntegrationRequest";
|
|
259
|
-
const _CDIRr = "CreateDataIntegrationResponse";
|
|
260
|
-
const _CEI = "CreateEventIntegration";
|
|
261
|
-
const _CEIR = "CreateEventIntegrationRequest";
|
|
262
|
-
const _CEIRr = "CreateEventIntegrationResponse";
|
|
263
|
-
const _CH = "ContactHandling";
|
|
264
|
-
const _CI = "ClientId";
|
|
265
|
-
const _CT = "CreatedTime";
|
|
266
|
-
const _CTl = "ClientToken";
|
|
267
|
-
const _D = "Description";
|
|
268
|
-
const _DA = "DeleteApplication";
|
|
269
|
-
const _DAR = "DeleteApplicationRequest";
|
|
270
|
-
const _DARe = "DeleteApplicationResponse";
|
|
271
|
-
const _DDI = "DeleteDataIntegration";
|
|
272
|
-
const _DDIR = "DeleteDataIntegrationRequest";
|
|
273
|
-
const _DDIRe = "DeleteDataIntegrationResponse";
|
|
274
|
-
const _DEI = "DeleteEventIntegration";
|
|
275
|
-
const _DEIR = "DeleteEventIntegrationRequest";
|
|
276
|
-
const _DEIRe = "DeleteEventIntegrationResponse";
|
|
277
|
-
const _DI = "DataIntegrations";
|
|
278
|
-
const _DIA = "DataIntegrationArn";
|
|
279
|
-
const _DIAA = "DataIntegrationAssociationArn";
|
|
280
|
-
const _DIAI = "DataIntegrationAssociationId";
|
|
281
|
-
const _DIAIa = "DataIntegrationAssociationIdentifier";
|
|
282
|
-
const _DIAL = "DataIntegrationAssociationsList";
|
|
283
|
-
const _DIAS = "DataIntegrationAssociationSummary";
|
|
284
|
-
const _DIAa = "DataIntegrationAssociations";
|
|
285
|
-
const _DII = "DataIntegrationIdentifier";
|
|
286
|
-
const _DIL = "DataIntegrationsList";
|
|
287
|
-
const _DIS = "DataIntegrationSummary";
|
|
288
|
-
const _DRE = "DuplicateResourceException";
|
|
289
|
-
const _DURI = "DestinationURI";
|
|
290
|
-
const _E = "Event";
|
|
291
|
-
const _EBB = "EventBridgeBus";
|
|
292
|
-
const _EBRN = "EventBridgeRuleName";
|
|
293
|
-
const _EC = "ExecutionConfiguration";
|
|
294
|
-
const _EF = "EventFilter";
|
|
295
|
-
const _EI = "EventIntegration";
|
|
296
|
-
const _EIA = "EventIntegrationArn";
|
|
297
|
-
const _EIAA = "EventIntegrationAssociationArn";
|
|
298
|
-
const _EIAI = "EventIntegrationAssociationId";
|
|
299
|
-
const _EIAL = "EventIntegrationAssociationsList";
|
|
300
|
-
const _EIAv = "EventIntegrationAssociation";
|
|
301
|
-
const _EIAve = "EventIntegrationAssociations";
|
|
302
|
-
const _EIL = "EventIntegrationsList";
|
|
303
|
-
const _EIN = "EventIntegrationName";
|
|
304
|
-
const _EIv = "EventIntegrations";
|
|
305
|
-
const _EM = "ExecutionMode";
|
|
306
|
-
const _ES = "ExecutionStatus";
|
|
307
|
-
const _ET = "EndTime";
|
|
308
|
-
const _EUC = "ExternalUrlConfig";
|
|
309
|
-
const _F = "Folders";
|
|
310
|
-
const _FC = "FileConfiguration";
|
|
311
|
-
const _FEF = "FirstExecutionFrom";
|
|
312
|
-
const _FM = "FieldsMap";
|
|
313
|
-
const _Fi = "Filters";
|
|
314
|
-
const _GA = "GetApplication";
|
|
315
|
-
const _GAR = "GetApplicationRequest";
|
|
316
|
-
const _GARe = "GetApplicationResponse";
|
|
317
|
-
const _GDI = "GetDataIntegration";
|
|
318
|
-
const _GDIR = "GetDataIntegrationRequest";
|
|
319
|
-
const _GDIRe = "GetDataIntegrationResponse";
|
|
320
|
-
const _GEI = "GetEventIntegration";
|
|
321
|
-
const _GEIR = "GetEventIntegrationRequest";
|
|
322
|
-
const _GEIRe = "GetEventIntegrationResponse";
|
|
323
|
-
const _I = "Id";
|
|
324
|
-
const _IC = "IframeConfig";
|
|
325
|
-
const _IRE = "InvalidRequestException";
|
|
326
|
-
const _IS = "IsService";
|
|
327
|
-
const _ISE = "InternalServiceError";
|
|
328
|
-
const _IT = "InitializationTimeout";
|
|
329
|
-
const _Id = "Identifier";
|
|
330
|
-
const _KK = "KmsKey";
|
|
331
|
-
const _LA = "ListApplications";
|
|
332
|
-
const _LAA = "ListApplicationAssociations";
|
|
333
|
-
const _LAAR = "ListApplicationAssociationsRequest";
|
|
334
|
-
const _LAARi = "ListApplicationAssociationsResponse";
|
|
335
|
-
const _LAR = "ListApplicationsRequest";
|
|
336
|
-
const _LARi = "ListApplicationsResponse";
|
|
337
|
-
const _LDI = "ListDataIntegrations";
|
|
338
|
-
const _LDIA = "ListDataIntegrationAssociations";
|
|
339
|
-
const _LDIAR = "ListDataIntegrationAssociationsRequest";
|
|
340
|
-
const _LDIARi = "ListDataIntegrationAssociationsResponse";
|
|
341
|
-
const _LDIR = "ListDataIntegrationsRequest";
|
|
342
|
-
const _LDIRi = "ListDataIntegrationsResponse";
|
|
343
|
-
const _LEI = "ListEventIntegrations";
|
|
344
|
-
const _LEIA = "ListEventIntegrationAssociations";
|
|
345
|
-
const _LEIAR = "ListEventIntegrationAssociationsRequest";
|
|
346
|
-
const _LEIARi = "ListEventIntegrationAssociationsResponse";
|
|
347
|
-
const _LEIR = "ListEventIntegrationsRequest";
|
|
348
|
-
const _LEIRi = "ListEventIntegrationsResponse";
|
|
349
|
-
const _LES = "LastExecutionStatus";
|
|
350
|
-
const _LMT = "LastModifiedTime";
|
|
351
|
-
const _LTFR = "ListTagsForResource";
|
|
352
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
353
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
354
|
-
const _M = "Message";
|
|
355
|
-
const _MR = "MaxResults";
|
|
356
|
-
const _N = "Name";
|
|
357
|
-
const _NT = "NextToken";
|
|
358
|
-
const _Na = "Namespace";
|
|
359
|
-
const _O = "Object";
|
|
360
|
-
const _OC = "ObjectConfiguration";
|
|
361
|
-
const _ODC = "OnDemandConfiguration";
|
|
362
|
-
const _P = "Publications";
|
|
363
|
-
const _PL = "PublicationList";
|
|
364
|
-
const _Pe = "Permissions";
|
|
365
|
-
const _Pu = "Publication";
|
|
366
|
-
const _RNFE = "ResourceNotFoundException";
|
|
367
|
-
const _RQEE = "ResourceQuotaExceededException";
|
|
368
|
-
const _S = "Scope";
|
|
369
|
-
const _SC = "ScheduleConfig";
|
|
370
|
-
const _SCc = "ScheduleConfiguration";
|
|
371
|
-
const _SE = "ScheduleExpression";
|
|
372
|
-
const _SL = "SubscriptionList";
|
|
373
|
-
const _SM = "StatusMessage";
|
|
374
|
-
const _ST = "StartTime";
|
|
375
|
-
const _SURI = "SourceURI";
|
|
376
|
-
const _Sa = "Sandbox";
|
|
377
|
-
const _Sc = "Schema";
|
|
378
|
-
const _So = "Source";
|
|
379
|
-
const _Su = "Subscriptions";
|
|
380
|
-
const _Sub = "Subscription";
|
|
381
|
-
const _T = "Tags";
|
|
382
|
-
const _TE = "ThrottlingException";
|
|
383
|
-
const _TR = "TagResource";
|
|
384
|
-
const _TRR = "TagResourceRequest";
|
|
385
|
-
const _TRRa = "TagResourceResponse";
|
|
386
|
-
const _UA = "UpdateApplication";
|
|
387
|
-
const _UAR = "UpdateApplicationRequest";
|
|
388
|
-
const _UARp = "UpdateApplicationResponse";
|
|
389
|
-
const _UDI = "UpdateDataIntegration";
|
|
390
|
-
const _UDIA = "UpdateDataIntegrationAssociation";
|
|
391
|
-
const _UDIAR = "UpdateDataIntegrationAssociationRequest";
|
|
392
|
-
const _UDIARp = "UpdateDataIntegrationAssociationResponse";
|
|
393
|
-
const _UDIR = "UpdateDataIntegrationRequest";
|
|
394
|
-
const _UDIRp = "UpdateDataIntegrationResponse";
|
|
395
|
-
const _UEI = "UpdateEventIntegration";
|
|
396
|
-
const _UEIR = "UpdateEventIntegrationRequest";
|
|
397
|
-
const _UEIRp = "UpdateEventIntegrationResponse";
|
|
398
|
-
const _UOE = "UnsupportedOperationException";
|
|
399
|
-
const _UR = "UntagResource";
|
|
400
|
-
const _URR = "UntagResourceRequest";
|
|
401
|
-
const _URRn = "UntagResourceResponse";
|
|
402
|
-
const _aT = "applicationType";
|
|
403
|
-
const _c = "client";
|
|
404
|
-
const _e = "error";
|
|
405
|
-
const _h = "http";
|
|
406
|
-
const _hE = "httpError";
|
|
407
|
-
const _hQ = "httpQuery";
|
|
408
|
-
const _mR = "maxResults";
|
|
409
|
-
const _nT = "nextToken";
|
|
410
|
-
const _rA = "resourceArn";
|
|
411
|
-
const _s = "server";
|
|
412
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.appintegrations";
|
|
413
|
-
const _t = "tags";
|
|
414
|
-
const _tK = "tagKeys";
|
|
415
|
-
const n0 = "com.amazonaws.appintegrations";
|
|
416
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
417
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
418
|
-
[_M],
|
|
419
|
-
[0]
|
|
420
|
-
];
|
|
421
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
422
|
-
var ApplicationAssociationSummary$ = [3, n0, _AAS,
|
|
423
|
-
0,
|
|
424
|
-
[_AAA, _AA, _CI],
|
|
425
|
-
[0, 0, 0]
|
|
426
|
-
];
|
|
427
|
-
var ApplicationConfig$ = [3, n0, _AC,
|
|
428
|
-
0,
|
|
429
|
-
[_CH],
|
|
430
|
-
[() => ContactHandling$]
|
|
431
|
-
];
|
|
432
|
-
var ApplicationSourceConfig$ = [3, n0, _ASC,
|
|
433
|
-
0,
|
|
434
|
-
[_EUC],
|
|
435
|
-
[() => ExternalUrlConfig$]
|
|
436
|
-
];
|
|
437
|
-
var ApplicationSummary$ = [3, n0, _AS,
|
|
438
|
-
0,
|
|
439
|
-
[_A, _I, _N, _Na, _CT, _LMT, _IS, _AT],
|
|
440
|
-
[0, 0, 0, 0, 4, 4, 2, 0]
|
|
441
|
-
];
|
|
442
|
-
var ContactHandling$ = [3, n0, _CH,
|
|
443
|
-
0,
|
|
444
|
-
[_S],
|
|
445
|
-
[0]
|
|
446
|
-
];
|
|
447
|
-
var CreateApplicationRequest$ = [3, n0, _CAR,
|
|
448
|
-
0,
|
|
449
|
-
[_N, _Na, _ASC, _D, _Su, _P, _CTl, _T, _Pe, _IS, _IT, _AC, _IC, _AT],
|
|
450
|
-
[0, 0, () => ApplicationSourceConfig$, 0, () => SubscriptionList, () => PublicationList, [0, 4], 128 | 0, 64 | 0, 2, 1, () => ApplicationConfig$, () => IframeConfig$, 0], 3
|
|
451
|
-
];
|
|
452
|
-
var CreateApplicationResponse$ = [3, n0, _CARr,
|
|
453
|
-
0,
|
|
454
|
-
[_A, _I],
|
|
455
|
-
[0, 0]
|
|
456
|
-
];
|
|
457
|
-
var CreateDataIntegrationAssociationRequest$ = [3, n0, _CDIAR,
|
|
458
|
-
0,
|
|
459
|
-
[_DII, _CI, _OC, _DURI, _CAM, _CTl, _EC],
|
|
460
|
-
[[0, 1], 0, [2, n0, _OC, 0, 0, [2, n0, _FM, 0, 0, 64 | 0]], 0, 128 | 0, [0, 4], () => ExecutionConfiguration$], 1
|
|
461
|
-
];
|
|
462
|
-
var CreateDataIntegrationAssociationResponse$ = [3, n0, _CDIARr,
|
|
463
|
-
0,
|
|
464
|
-
[_DIAI, _DIA],
|
|
465
|
-
[0, 0]
|
|
466
|
-
];
|
|
467
|
-
var CreateDataIntegrationRequest$ = [3, n0, _CDIR,
|
|
468
|
-
0,
|
|
469
|
-
[_N, _KK, _D, _SURI, _SC, _T, _CTl, _FC, _OC],
|
|
470
|
-
[0, 0, 0, 0, () => ScheduleConfiguration$, 128 | 0, [0, 4], () => FileConfiguration$, [2, n0, _OC, 0, 0, [2, n0, _FM, 0, 0, 64 | 0]]], 2
|
|
471
|
-
];
|
|
472
|
-
var CreateDataIntegrationResponse$ = [3, n0, _CDIRr,
|
|
473
|
-
0,
|
|
474
|
-
[_A, _I, _N, _D, _KK, _SURI, _SCc, _T, _CTl, _FC, _OC],
|
|
475
|
-
[0, 0, 0, 0, 0, 0, () => ScheduleConfiguration$, 128 | 0, 0, () => FileConfiguration$, [2, n0, _OC, 0, 0, [2, n0, _FM, 0, 0, 64 | 0]]]
|
|
476
|
-
];
|
|
477
|
-
var CreateEventIntegrationRequest$ = [3, n0, _CEIR,
|
|
478
|
-
0,
|
|
479
|
-
[_N, _EF, _EBB, _D, _CTl, _T],
|
|
480
|
-
[0, () => EventFilter$, 0, 0, [0, 4], 128 | 0], 3
|
|
481
|
-
];
|
|
482
|
-
var CreateEventIntegrationResponse$ = [3, n0, _CEIRr,
|
|
483
|
-
0,
|
|
484
|
-
[_EIA],
|
|
485
|
-
[0]
|
|
486
|
-
];
|
|
487
|
-
var DataIntegrationAssociationSummary$ = [3, n0, _DIAS,
|
|
488
|
-
0,
|
|
489
|
-
[_DIAA, _DIA, _CI, _DURI, _LES, _EC],
|
|
490
|
-
[0, 0, 0, 0, () => LastExecutionStatus$, () => ExecutionConfiguration$]
|
|
491
|
-
];
|
|
492
|
-
var DataIntegrationSummary$ = [3, n0, _DIS,
|
|
493
|
-
0,
|
|
494
|
-
[_A, _N, _SURI],
|
|
495
|
-
[0, 0, 0]
|
|
496
|
-
];
|
|
497
|
-
var DeleteApplicationRequest$ = [3, n0, _DAR,
|
|
498
|
-
0,
|
|
499
|
-
[_A],
|
|
500
|
-
[[0, 1]], 1
|
|
501
|
-
];
|
|
502
|
-
var DeleteApplicationResponse$ = [3, n0, _DARe,
|
|
503
|
-
0,
|
|
504
|
-
[],
|
|
505
|
-
[]
|
|
506
|
-
];
|
|
507
|
-
var DeleteDataIntegrationRequest$ = [3, n0, _DDIR,
|
|
508
|
-
0,
|
|
509
|
-
[_DII],
|
|
510
|
-
[[0, 1]], 1
|
|
511
|
-
];
|
|
512
|
-
var DeleteDataIntegrationResponse$ = [3, n0, _DDIRe,
|
|
513
|
-
0,
|
|
514
|
-
[],
|
|
515
|
-
[]
|
|
516
|
-
];
|
|
517
|
-
var DeleteEventIntegrationRequest$ = [3, n0, _DEIR,
|
|
518
|
-
0,
|
|
519
|
-
[_N],
|
|
520
|
-
[[0, 1]], 1
|
|
521
|
-
];
|
|
522
|
-
var DeleteEventIntegrationResponse$ = [3, n0, _DEIRe,
|
|
523
|
-
0,
|
|
524
|
-
[],
|
|
525
|
-
[]
|
|
526
|
-
];
|
|
527
|
-
var DuplicateResourceException$ = [-3, n0, _DRE,
|
|
528
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
529
|
-
[_M],
|
|
530
|
-
[0]
|
|
531
|
-
];
|
|
532
|
-
schema.TypeRegistry.for(n0).registerError(DuplicateResourceException$, DuplicateResourceException);
|
|
533
|
-
var EventFilter$ = [3, n0, _EF,
|
|
534
|
-
0,
|
|
535
|
-
[_So],
|
|
536
|
-
[0], 1
|
|
537
|
-
];
|
|
538
|
-
var EventIntegration$ = [3, n0, _EI,
|
|
539
|
-
0,
|
|
540
|
-
[_EIA, _N, _D, _EF, _EBB, _T],
|
|
541
|
-
[0, 0, 0, () => EventFilter$, 0, 128 | 0]
|
|
542
|
-
];
|
|
543
|
-
var EventIntegrationAssociation$ = [3, n0, _EIAv,
|
|
544
|
-
0,
|
|
545
|
-
[_EIAA, _EIAI, _EIN, _CI, _EBRN, _CAM],
|
|
546
|
-
[0, 0, 0, 0, 0, 128 | 0]
|
|
547
|
-
];
|
|
548
|
-
var ExecutionConfiguration$ = [3, n0, _EC,
|
|
549
|
-
0,
|
|
550
|
-
[_EM, _ODC, _SCc],
|
|
551
|
-
[0, () => OnDemandConfiguration$, () => ScheduleConfiguration$], 1
|
|
552
|
-
];
|
|
553
|
-
var ExternalUrlConfig$ = [3, n0, _EUC,
|
|
554
|
-
0,
|
|
555
|
-
[_AU, _AO],
|
|
556
|
-
[0, 64 | 0], 1
|
|
557
|
-
];
|
|
558
|
-
var FileConfiguration$ = [3, n0, _FC,
|
|
559
|
-
0,
|
|
560
|
-
[_F, _Fi],
|
|
561
|
-
[64 | 0, [2, n0, _FM, 0, 0, 64 | 0]], 1
|
|
562
|
-
];
|
|
563
|
-
var GetApplicationRequest$ = [3, n0, _GAR,
|
|
564
|
-
0,
|
|
565
|
-
[_A],
|
|
566
|
-
[[0, 1]], 1
|
|
567
|
-
];
|
|
568
|
-
var GetApplicationResponse$ = [3, n0, _GARe,
|
|
569
|
-
0,
|
|
570
|
-
[_A, _I, _N, _Na, _D, _ASC, _Su, _P, _CT, _LMT, _T, _Pe, _IS, _IT, _AC, _IC, _AT],
|
|
571
|
-
[0, 0, 0, 0, 0, () => ApplicationSourceConfig$, () => SubscriptionList, () => PublicationList, 4, 4, 128 | 0, 64 | 0, 2, 1, () => ApplicationConfig$, () => IframeConfig$, 0]
|
|
572
|
-
];
|
|
573
|
-
var GetDataIntegrationRequest$ = [3, n0, _GDIR,
|
|
574
|
-
0,
|
|
575
|
-
[_Id],
|
|
576
|
-
[[0, 1]], 1
|
|
577
|
-
];
|
|
578
|
-
var GetDataIntegrationResponse$ = [3, n0, _GDIRe,
|
|
579
|
-
0,
|
|
580
|
-
[_A, _I, _N, _D, _KK, _SURI, _SCc, _T, _FC, _OC],
|
|
581
|
-
[0, 0, 0, 0, 0, 0, () => ScheduleConfiguration$, 128 | 0, () => FileConfiguration$, [2, n0, _OC, 0, 0, [2, n0, _FM, 0, 0, 64 | 0]]]
|
|
582
|
-
];
|
|
583
|
-
var GetEventIntegrationRequest$ = [3, n0, _GEIR,
|
|
584
|
-
0,
|
|
585
|
-
[_N],
|
|
586
|
-
[[0, 1]], 1
|
|
587
|
-
];
|
|
588
|
-
var GetEventIntegrationResponse$ = [3, n0, _GEIRe,
|
|
589
|
-
0,
|
|
590
|
-
[_N, _D, _EIA, _EBB, _EF, _T],
|
|
591
|
-
[0, 0, 0, 0, () => EventFilter$, 128 | 0]
|
|
592
|
-
];
|
|
593
|
-
var IframeConfig$ = [3, n0, _IC,
|
|
594
|
-
0,
|
|
595
|
-
[_Al, _Sa],
|
|
596
|
-
[64 | 0, 64 | 0]
|
|
597
|
-
];
|
|
598
|
-
var InternalServiceError$ = [-3, n0, _ISE,
|
|
599
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
600
|
-
[_M],
|
|
601
|
-
[0]
|
|
602
|
-
];
|
|
603
|
-
schema.TypeRegistry.for(n0).registerError(InternalServiceError$, InternalServiceError);
|
|
604
|
-
var InvalidRequestException$ = [-3, n0, _IRE,
|
|
605
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
606
|
-
[_M],
|
|
607
|
-
[0]
|
|
608
|
-
];
|
|
609
|
-
schema.TypeRegistry.for(n0).registerError(InvalidRequestException$, InvalidRequestException);
|
|
610
|
-
var LastExecutionStatus$ = [3, n0, _LES,
|
|
611
|
-
0,
|
|
612
|
-
[_ES, _SM],
|
|
613
|
-
[0, 0]
|
|
614
|
-
];
|
|
615
|
-
var ListApplicationAssociationsRequest$ = [3, n0, _LAAR,
|
|
616
|
-
0,
|
|
617
|
-
[_AI, _NT, _MR],
|
|
618
|
-
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
619
|
-
];
|
|
620
|
-
var ListApplicationAssociationsResponse$ = [3, n0, _LAARi,
|
|
621
|
-
0,
|
|
622
|
-
[_AAp, _NT],
|
|
623
|
-
[() => ApplicationAssociationsList, 0]
|
|
624
|
-
];
|
|
625
|
-
var ListApplicationsRequest$ = [3, n0, _LAR,
|
|
626
|
-
0,
|
|
627
|
-
[_NT, _MR, _AT],
|
|
628
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _aT }]]
|
|
629
|
-
];
|
|
630
|
-
var ListApplicationsResponse$ = [3, n0, _LARi,
|
|
631
|
-
0,
|
|
632
|
-
[_Ap, _NT],
|
|
633
|
-
[() => ApplicationsList, 0]
|
|
634
|
-
];
|
|
635
|
-
var ListDataIntegrationAssociationsRequest$ = [3, n0, _LDIAR,
|
|
636
|
-
0,
|
|
637
|
-
[_DII, _NT, _MR],
|
|
638
|
-
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
639
|
-
];
|
|
640
|
-
var ListDataIntegrationAssociationsResponse$ = [3, n0, _LDIARi,
|
|
641
|
-
0,
|
|
642
|
-
[_DIAa, _NT],
|
|
643
|
-
[() => DataIntegrationAssociationsList, 0]
|
|
644
|
-
];
|
|
645
|
-
var ListDataIntegrationsRequest$ = [3, n0, _LDIR,
|
|
646
|
-
0,
|
|
647
|
-
[_NT, _MR],
|
|
648
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
649
|
-
];
|
|
650
|
-
var ListDataIntegrationsResponse$ = [3, n0, _LDIRi,
|
|
651
|
-
0,
|
|
652
|
-
[_DI, _NT],
|
|
653
|
-
[() => DataIntegrationsList, 0]
|
|
654
|
-
];
|
|
655
|
-
var ListEventIntegrationAssociationsRequest$ = [3, n0, _LEIAR,
|
|
656
|
-
0,
|
|
657
|
-
[_EIN, _NT, _MR],
|
|
658
|
-
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
659
|
-
];
|
|
660
|
-
var ListEventIntegrationAssociationsResponse$ = [3, n0, _LEIARi,
|
|
661
|
-
0,
|
|
662
|
-
[_EIAve, _NT],
|
|
663
|
-
[() => EventIntegrationAssociationsList, 0]
|
|
664
|
-
];
|
|
665
|
-
var ListEventIntegrationsRequest$ = [3, n0, _LEIR,
|
|
666
|
-
0,
|
|
667
|
-
[_NT, _MR],
|
|
668
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
669
|
-
];
|
|
670
|
-
var ListEventIntegrationsResponse$ = [3, n0, _LEIRi,
|
|
671
|
-
0,
|
|
672
|
-
[_EIv, _NT],
|
|
673
|
-
[() => EventIntegrationsList, 0]
|
|
674
|
-
];
|
|
675
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
676
|
-
0,
|
|
677
|
-
[_rA],
|
|
678
|
-
[[0, 1]], 1
|
|
679
|
-
];
|
|
680
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
681
|
-
0,
|
|
682
|
-
[_t],
|
|
683
|
-
[128 | 0]
|
|
684
|
-
];
|
|
685
|
-
var OnDemandConfiguration$ = [3, n0, _ODC,
|
|
686
|
-
0,
|
|
687
|
-
[_ST, _ET],
|
|
688
|
-
[0, 0], 1
|
|
689
|
-
];
|
|
690
|
-
var Publication$ = [3, n0, _Pu,
|
|
691
|
-
0,
|
|
692
|
-
[_E, _Sc, _D],
|
|
693
|
-
[0, 0, 0], 2
|
|
694
|
-
];
|
|
695
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
696
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
697
|
-
[_M],
|
|
698
|
-
[0]
|
|
699
|
-
];
|
|
700
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
701
|
-
var ResourceQuotaExceededException$ = [-3, n0, _RQEE,
|
|
702
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
703
|
-
[_M],
|
|
704
|
-
[0]
|
|
705
|
-
];
|
|
706
|
-
schema.TypeRegistry.for(n0).registerError(ResourceQuotaExceededException$, ResourceQuotaExceededException);
|
|
707
|
-
var ScheduleConfiguration$ = [3, n0, _SCc,
|
|
708
|
-
0,
|
|
709
|
-
[_SE, _FEF, _O],
|
|
710
|
-
[0, 0, 0], 1
|
|
711
|
-
];
|
|
712
|
-
var Subscription$ = [3, n0, _Sub,
|
|
713
|
-
0,
|
|
714
|
-
[_E, _D],
|
|
715
|
-
[0, 0], 1
|
|
716
|
-
];
|
|
717
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
718
|
-
0,
|
|
719
|
-
[_rA, _t],
|
|
720
|
-
[[0, 1], 128 | 0], 2
|
|
721
|
-
];
|
|
722
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
723
|
-
0,
|
|
724
|
-
[],
|
|
725
|
-
[]
|
|
726
|
-
];
|
|
727
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
728
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
729
|
-
[_M],
|
|
730
|
-
[0]
|
|
731
|
-
];
|
|
732
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
733
|
-
var UnsupportedOperationException$ = [-3, n0, _UOE,
|
|
734
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
735
|
-
[_M],
|
|
736
|
-
[0]
|
|
737
|
-
];
|
|
738
|
-
schema.TypeRegistry.for(n0).registerError(UnsupportedOperationException$, UnsupportedOperationException);
|
|
739
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
740
|
-
0,
|
|
741
|
-
[_rA, _tK],
|
|
742
|
-
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
743
|
-
];
|
|
744
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
745
|
-
0,
|
|
746
|
-
[],
|
|
747
|
-
[]
|
|
748
|
-
];
|
|
749
|
-
var UpdateApplicationRequest$ = [3, n0, _UAR,
|
|
750
|
-
0,
|
|
751
|
-
[_A, _N, _D, _ASC, _Su, _P, _Pe, _IS, _IT, _AC, _IC, _AT],
|
|
752
|
-
[[0, 1], 0, 0, () => ApplicationSourceConfig$, () => SubscriptionList, () => PublicationList, 64 | 0, 2, 1, () => ApplicationConfig$, () => IframeConfig$, 0], 1
|
|
753
|
-
];
|
|
754
|
-
var UpdateApplicationResponse$ = [3, n0, _UARp,
|
|
755
|
-
0,
|
|
756
|
-
[],
|
|
757
|
-
[]
|
|
758
|
-
];
|
|
759
|
-
var UpdateDataIntegrationAssociationRequest$ = [3, n0, _UDIAR,
|
|
760
|
-
0,
|
|
761
|
-
[_DII, _DIAIa, _EC],
|
|
762
|
-
[[0, 1], [0, 1], () => ExecutionConfiguration$], 3
|
|
763
|
-
];
|
|
764
|
-
var UpdateDataIntegrationAssociationResponse$ = [3, n0, _UDIARp,
|
|
765
|
-
0,
|
|
766
|
-
[],
|
|
767
|
-
[]
|
|
768
|
-
];
|
|
769
|
-
var UpdateDataIntegrationRequest$ = [3, n0, _UDIR,
|
|
770
|
-
0,
|
|
771
|
-
[_Id, _N, _D],
|
|
772
|
-
[[0, 1], 0, 0], 1
|
|
773
|
-
];
|
|
774
|
-
var UpdateDataIntegrationResponse$ = [3, n0, _UDIRp,
|
|
775
|
-
0,
|
|
776
|
-
[],
|
|
777
|
-
[]
|
|
778
|
-
];
|
|
779
|
-
var UpdateEventIntegrationRequest$ = [3, n0, _UEIR,
|
|
780
|
-
0,
|
|
781
|
-
[_N, _D],
|
|
782
|
-
[[0, 1], 0], 1
|
|
783
|
-
];
|
|
784
|
-
var UpdateEventIntegrationResponse$ = [3, n0, _UEIRp,
|
|
785
|
-
0,
|
|
786
|
-
[],
|
|
787
|
-
[]
|
|
788
|
-
];
|
|
789
|
-
var AppIntegrationsServiceException$ = [-3, _sm, "AppIntegrationsServiceException", 0, [], []];
|
|
790
|
-
schema.TypeRegistry.for(_sm).registerError(AppIntegrationsServiceException$, AppIntegrationsServiceException);
|
|
791
|
-
var ApplicationAssociationsList = [1, n0, _AAL,
|
|
792
|
-
0, () => ApplicationAssociationSummary$
|
|
793
|
-
];
|
|
794
|
-
var ApplicationsList = [1, n0, _AL,
|
|
795
|
-
0, () => ApplicationSummary$
|
|
796
|
-
];
|
|
797
|
-
var DataIntegrationAssociationsList = [1, n0, _DIAL,
|
|
798
|
-
0, () => DataIntegrationAssociationSummary$
|
|
799
|
-
];
|
|
800
|
-
var DataIntegrationsList = [1, n0, _DIL,
|
|
801
|
-
0, () => DataIntegrationSummary$
|
|
802
|
-
];
|
|
803
|
-
var EventIntegrationAssociationsList = [1, n0, _EIAL,
|
|
804
|
-
0, () => EventIntegrationAssociation$
|
|
805
|
-
];
|
|
806
|
-
var EventIntegrationsList = [1, n0, _EIL,
|
|
807
|
-
0, () => EventIntegration$
|
|
808
|
-
];
|
|
809
|
-
var PublicationList = [1, n0, _PL,
|
|
810
|
-
0, () => Publication$
|
|
811
|
-
];
|
|
812
|
-
var SubscriptionList = [1, n0, _SL,
|
|
813
|
-
0, () => Subscription$
|
|
814
|
-
];
|
|
815
|
-
var CreateApplication$ = [9, n0, _CA,
|
|
816
|
-
{ [_h]: ["POST", "/applications", 200] }, () => CreateApplicationRequest$, () => CreateApplicationResponse$
|
|
817
|
-
];
|
|
818
|
-
var CreateDataIntegration$ = [9, n0, _CDI,
|
|
819
|
-
{ [_h]: ["POST", "/dataIntegrations", 200] }, () => CreateDataIntegrationRequest$, () => CreateDataIntegrationResponse$
|
|
820
|
-
];
|
|
821
|
-
var CreateDataIntegrationAssociation$ = [9, n0, _CDIA,
|
|
822
|
-
{ [_h]: ["POST", "/dataIntegrations/{DataIntegrationIdentifier}/associations", 200] }, () => CreateDataIntegrationAssociationRequest$, () => CreateDataIntegrationAssociationResponse$
|
|
823
|
-
];
|
|
824
|
-
var CreateEventIntegration$ = [9, n0, _CEI,
|
|
825
|
-
{ [_h]: ["POST", "/eventIntegrations", 200] }, () => CreateEventIntegrationRequest$, () => CreateEventIntegrationResponse$
|
|
826
|
-
];
|
|
827
|
-
var DeleteApplication$ = [9, n0, _DA,
|
|
828
|
-
{ [_h]: ["DELETE", "/applications/{Arn}", 200] }, () => DeleteApplicationRequest$, () => DeleteApplicationResponse$
|
|
829
|
-
];
|
|
830
|
-
var DeleteDataIntegration$ = [9, n0, _DDI,
|
|
831
|
-
{ [_h]: ["DELETE", "/dataIntegrations/{DataIntegrationIdentifier}", 200] }, () => DeleteDataIntegrationRequest$, () => DeleteDataIntegrationResponse$
|
|
832
|
-
];
|
|
833
|
-
var DeleteEventIntegration$ = [9, n0, _DEI,
|
|
834
|
-
{ [_h]: ["DELETE", "/eventIntegrations/{Name}", 200] }, () => DeleteEventIntegrationRequest$, () => DeleteEventIntegrationResponse$
|
|
835
|
-
];
|
|
836
|
-
var GetApplication$ = [9, n0, _GA,
|
|
837
|
-
{ [_h]: ["GET", "/applications/{Arn}", 200] }, () => GetApplicationRequest$, () => GetApplicationResponse$
|
|
838
|
-
];
|
|
839
|
-
var GetDataIntegration$ = [9, n0, _GDI,
|
|
840
|
-
{ [_h]: ["GET", "/dataIntegrations/{Identifier}", 200] }, () => GetDataIntegrationRequest$, () => GetDataIntegrationResponse$
|
|
841
|
-
];
|
|
842
|
-
var GetEventIntegration$ = [9, n0, _GEI,
|
|
843
|
-
{ [_h]: ["GET", "/eventIntegrations/{Name}", 200] }, () => GetEventIntegrationRequest$, () => GetEventIntegrationResponse$
|
|
844
|
-
];
|
|
845
|
-
var ListApplicationAssociations$ = [9, n0, _LAA,
|
|
846
|
-
{ [_h]: ["GET", "/applications/{ApplicationId}/associations", 200] }, () => ListApplicationAssociationsRequest$, () => ListApplicationAssociationsResponse$
|
|
847
|
-
];
|
|
848
|
-
var ListApplications$ = [9, n0, _LA,
|
|
849
|
-
{ [_h]: ["GET", "/applications", 200] }, () => ListApplicationsRequest$, () => ListApplicationsResponse$
|
|
850
|
-
];
|
|
851
|
-
var ListDataIntegrationAssociations$ = [9, n0, _LDIA,
|
|
852
|
-
{ [_h]: ["GET", "/dataIntegrations/{DataIntegrationIdentifier}/associations", 200] }, () => ListDataIntegrationAssociationsRequest$, () => ListDataIntegrationAssociationsResponse$
|
|
853
|
-
];
|
|
854
|
-
var ListDataIntegrations$ = [9, n0, _LDI,
|
|
855
|
-
{ [_h]: ["GET", "/dataIntegrations", 200] }, () => ListDataIntegrationsRequest$, () => ListDataIntegrationsResponse$
|
|
856
|
-
];
|
|
857
|
-
var ListEventIntegrationAssociations$ = [9, n0, _LEIA,
|
|
858
|
-
{ [_h]: ["GET", "/eventIntegrations/{EventIntegrationName}/associations", 200] }, () => ListEventIntegrationAssociationsRequest$, () => ListEventIntegrationAssociationsResponse$
|
|
859
|
-
];
|
|
860
|
-
var ListEventIntegrations$ = [9, n0, _LEI,
|
|
861
|
-
{ [_h]: ["GET", "/eventIntegrations", 200] }, () => ListEventIntegrationsRequest$, () => ListEventIntegrationsResponse$
|
|
862
|
-
];
|
|
863
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
864
|
-
{ [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
865
|
-
];
|
|
866
|
-
var TagResource$ = [9, n0, _TR,
|
|
867
|
-
{ [_h]: ["POST", "/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
868
|
-
];
|
|
869
|
-
var UntagResource$ = [9, n0, _UR,
|
|
870
|
-
{ [_h]: ["DELETE", "/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
871
|
-
];
|
|
872
|
-
var UpdateApplication$ = [9, n0, _UA,
|
|
873
|
-
{ [_h]: ["PATCH", "/applications/{Arn}", 200] }, () => UpdateApplicationRequest$, () => UpdateApplicationResponse$
|
|
874
|
-
];
|
|
875
|
-
var UpdateDataIntegration$ = [9, n0, _UDI,
|
|
876
|
-
{ [_h]: ["PATCH", "/dataIntegrations/{Identifier}", 200] }, () => UpdateDataIntegrationRequest$, () => UpdateDataIntegrationResponse$
|
|
877
|
-
];
|
|
878
|
-
var UpdateDataIntegrationAssociation$ = [9, n0, _UDIA,
|
|
879
|
-
{ [_h]: ["PATCH", "/dataIntegrations/{DataIntegrationIdentifier}/associations/{DataIntegrationAssociationIdentifier}", 200] }, () => UpdateDataIntegrationAssociationRequest$, () => UpdateDataIntegrationAssociationResponse$
|
|
880
|
-
];
|
|
881
|
-
var UpdateEventIntegration$ = [9, n0, _UEI,
|
|
882
|
-
{ [_h]: ["PATCH", "/eventIntegrations/{Name}", 200] }, () => UpdateEventIntegrationRequest$, () => UpdateEventIntegrationResponse$
|
|
883
|
-
];
|
|
884
|
-
|
|
885
116
|
class CreateApplicationCommand extends smithyClient.Command
|
|
886
117
|
.classBuilder()
|
|
887
118
|
.ep(commonParams)
|
|
@@ -890,7 +121,7 @@ class CreateApplicationCommand extends smithyClient.Command
|
|
|
890
121
|
})
|
|
891
122
|
.s("AmazonAppIntegrationService", "CreateApplication", {})
|
|
892
123
|
.n("AppIntegrationsClient", "CreateApplicationCommand")
|
|
893
|
-
.sc(CreateApplication$)
|
|
124
|
+
.sc(schemas_0.CreateApplication$)
|
|
894
125
|
.build() {
|
|
895
126
|
}
|
|
896
127
|
|
|
@@ -902,7 +133,7 @@ class CreateDataIntegrationAssociationCommand extends smithyClient.Command
|
|
|
902
133
|
})
|
|
903
134
|
.s("AmazonAppIntegrationService", "CreateDataIntegrationAssociation", {})
|
|
904
135
|
.n("AppIntegrationsClient", "CreateDataIntegrationAssociationCommand")
|
|
905
|
-
.sc(CreateDataIntegrationAssociation$)
|
|
136
|
+
.sc(schemas_0.CreateDataIntegrationAssociation$)
|
|
906
137
|
.build() {
|
|
907
138
|
}
|
|
908
139
|
|
|
@@ -914,7 +145,7 @@ class CreateDataIntegrationCommand extends smithyClient.Command
|
|
|
914
145
|
})
|
|
915
146
|
.s("AmazonAppIntegrationService", "CreateDataIntegration", {})
|
|
916
147
|
.n("AppIntegrationsClient", "CreateDataIntegrationCommand")
|
|
917
|
-
.sc(CreateDataIntegration$)
|
|
148
|
+
.sc(schemas_0.CreateDataIntegration$)
|
|
918
149
|
.build() {
|
|
919
150
|
}
|
|
920
151
|
|
|
@@ -926,7 +157,7 @@ class CreateEventIntegrationCommand extends smithyClient.Command
|
|
|
926
157
|
})
|
|
927
158
|
.s("AmazonAppIntegrationService", "CreateEventIntegration", {})
|
|
928
159
|
.n("AppIntegrationsClient", "CreateEventIntegrationCommand")
|
|
929
|
-
.sc(CreateEventIntegration$)
|
|
160
|
+
.sc(schemas_0.CreateEventIntegration$)
|
|
930
161
|
.build() {
|
|
931
162
|
}
|
|
932
163
|
|
|
@@ -938,7 +169,7 @@ class DeleteApplicationCommand extends smithyClient.Command
|
|
|
938
169
|
})
|
|
939
170
|
.s("AmazonAppIntegrationService", "DeleteApplication", {})
|
|
940
171
|
.n("AppIntegrationsClient", "DeleteApplicationCommand")
|
|
941
|
-
.sc(DeleteApplication$)
|
|
172
|
+
.sc(schemas_0.DeleteApplication$)
|
|
942
173
|
.build() {
|
|
943
174
|
}
|
|
944
175
|
|
|
@@ -950,7 +181,7 @@ class DeleteDataIntegrationCommand extends smithyClient.Command
|
|
|
950
181
|
})
|
|
951
182
|
.s("AmazonAppIntegrationService", "DeleteDataIntegration", {})
|
|
952
183
|
.n("AppIntegrationsClient", "DeleteDataIntegrationCommand")
|
|
953
|
-
.sc(DeleteDataIntegration$)
|
|
184
|
+
.sc(schemas_0.DeleteDataIntegration$)
|
|
954
185
|
.build() {
|
|
955
186
|
}
|
|
956
187
|
|
|
@@ -962,7 +193,7 @@ class DeleteEventIntegrationCommand extends smithyClient.Command
|
|
|
962
193
|
})
|
|
963
194
|
.s("AmazonAppIntegrationService", "DeleteEventIntegration", {})
|
|
964
195
|
.n("AppIntegrationsClient", "DeleteEventIntegrationCommand")
|
|
965
|
-
.sc(DeleteEventIntegration$)
|
|
196
|
+
.sc(schemas_0.DeleteEventIntegration$)
|
|
966
197
|
.build() {
|
|
967
198
|
}
|
|
968
199
|
|
|
@@ -974,7 +205,7 @@ class GetApplicationCommand extends smithyClient.Command
|
|
|
974
205
|
})
|
|
975
206
|
.s("AmazonAppIntegrationService", "GetApplication", {})
|
|
976
207
|
.n("AppIntegrationsClient", "GetApplicationCommand")
|
|
977
|
-
.sc(GetApplication$)
|
|
208
|
+
.sc(schemas_0.GetApplication$)
|
|
978
209
|
.build() {
|
|
979
210
|
}
|
|
980
211
|
|
|
@@ -986,7 +217,7 @@ class GetDataIntegrationCommand extends smithyClient.Command
|
|
|
986
217
|
})
|
|
987
218
|
.s("AmazonAppIntegrationService", "GetDataIntegration", {})
|
|
988
219
|
.n("AppIntegrationsClient", "GetDataIntegrationCommand")
|
|
989
|
-
.sc(GetDataIntegration$)
|
|
220
|
+
.sc(schemas_0.GetDataIntegration$)
|
|
990
221
|
.build() {
|
|
991
222
|
}
|
|
992
223
|
|
|
@@ -998,7 +229,7 @@ class GetEventIntegrationCommand extends smithyClient.Command
|
|
|
998
229
|
})
|
|
999
230
|
.s("AmazonAppIntegrationService", "GetEventIntegration", {})
|
|
1000
231
|
.n("AppIntegrationsClient", "GetEventIntegrationCommand")
|
|
1001
|
-
.sc(GetEventIntegration$)
|
|
232
|
+
.sc(schemas_0.GetEventIntegration$)
|
|
1002
233
|
.build() {
|
|
1003
234
|
}
|
|
1004
235
|
|
|
@@ -1010,7 +241,7 @@ class ListApplicationAssociationsCommand extends smithyClient.Command
|
|
|
1010
241
|
})
|
|
1011
242
|
.s("AmazonAppIntegrationService", "ListApplicationAssociations", {})
|
|
1012
243
|
.n("AppIntegrationsClient", "ListApplicationAssociationsCommand")
|
|
1013
|
-
.sc(ListApplicationAssociations$)
|
|
244
|
+
.sc(schemas_0.ListApplicationAssociations$)
|
|
1014
245
|
.build() {
|
|
1015
246
|
}
|
|
1016
247
|
|
|
@@ -1022,7 +253,7 @@ class ListApplicationsCommand extends smithyClient.Command
|
|
|
1022
253
|
})
|
|
1023
254
|
.s("AmazonAppIntegrationService", "ListApplications", {})
|
|
1024
255
|
.n("AppIntegrationsClient", "ListApplicationsCommand")
|
|
1025
|
-
.sc(ListApplications$)
|
|
256
|
+
.sc(schemas_0.ListApplications$)
|
|
1026
257
|
.build() {
|
|
1027
258
|
}
|
|
1028
259
|
|
|
@@ -1034,7 +265,7 @@ class ListDataIntegrationAssociationsCommand extends smithyClient.Command
|
|
|
1034
265
|
})
|
|
1035
266
|
.s("AmazonAppIntegrationService", "ListDataIntegrationAssociations", {})
|
|
1036
267
|
.n("AppIntegrationsClient", "ListDataIntegrationAssociationsCommand")
|
|
1037
|
-
.sc(ListDataIntegrationAssociations$)
|
|
268
|
+
.sc(schemas_0.ListDataIntegrationAssociations$)
|
|
1038
269
|
.build() {
|
|
1039
270
|
}
|
|
1040
271
|
|
|
@@ -1046,7 +277,7 @@ class ListDataIntegrationsCommand extends smithyClient.Command
|
|
|
1046
277
|
})
|
|
1047
278
|
.s("AmazonAppIntegrationService", "ListDataIntegrations", {})
|
|
1048
279
|
.n("AppIntegrationsClient", "ListDataIntegrationsCommand")
|
|
1049
|
-
.sc(ListDataIntegrations$)
|
|
280
|
+
.sc(schemas_0.ListDataIntegrations$)
|
|
1050
281
|
.build() {
|
|
1051
282
|
}
|
|
1052
283
|
|
|
@@ -1058,7 +289,7 @@ class ListEventIntegrationAssociationsCommand extends smithyClient.Command
|
|
|
1058
289
|
})
|
|
1059
290
|
.s("AmazonAppIntegrationService", "ListEventIntegrationAssociations", {})
|
|
1060
291
|
.n("AppIntegrationsClient", "ListEventIntegrationAssociationsCommand")
|
|
1061
|
-
.sc(ListEventIntegrationAssociations$)
|
|
292
|
+
.sc(schemas_0.ListEventIntegrationAssociations$)
|
|
1062
293
|
.build() {
|
|
1063
294
|
}
|
|
1064
295
|
|
|
@@ -1070,7 +301,7 @@ class ListEventIntegrationsCommand extends smithyClient.Command
|
|
|
1070
301
|
})
|
|
1071
302
|
.s("AmazonAppIntegrationService", "ListEventIntegrations", {})
|
|
1072
303
|
.n("AppIntegrationsClient", "ListEventIntegrationsCommand")
|
|
1073
|
-
.sc(ListEventIntegrations$)
|
|
304
|
+
.sc(schemas_0.ListEventIntegrations$)
|
|
1074
305
|
.build() {
|
|
1075
306
|
}
|
|
1076
307
|
|
|
@@ -1082,7 +313,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1082
313
|
})
|
|
1083
314
|
.s("AmazonAppIntegrationService", "ListTagsForResource", {})
|
|
1084
315
|
.n("AppIntegrationsClient", "ListTagsForResourceCommand")
|
|
1085
|
-
.sc(ListTagsForResource$)
|
|
316
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1086
317
|
.build() {
|
|
1087
318
|
}
|
|
1088
319
|
|
|
@@ -1094,7 +325,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1094
325
|
})
|
|
1095
326
|
.s("AmazonAppIntegrationService", "TagResource", {})
|
|
1096
327
|
.n("AppIntegrationsClient", "TagResourceCommand")
|
|
1097
|
-
.sc(TagResource$)
|
|
328
|
+
.sc(schemas_0.TagResource$)
|
|
1098
329
|
.build() {
|
|
1099
330
|
}
|
|
1100
331
|
|
|
@@ -1106,7 +337,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1106
337
|
})
|
|
1107
338
|
.s("AmazonAppIntegrationService", "UntagResource", {})
|
|
1108
339
|
.n("AppIntegrationsClient", "UntagResourceCommand")
|
|
1109
|
-
.sc(UntagResource$)
|
|
340
|
+
.sc(schemas_0.UntagResource$)
|
|
1110
341
|
.build() {
|
|
1111
342
|
}
|
|
1112
343
|
|
|
@@ -1118,7 +349,7 @@ class UpdateApplicationCommand extends smithyClient.Command
|
|
|
1118
349
|
})
|
|
1119
350
|
.s("AmazonAppIntegrationService", "UpdateApplication", {})
|
|
1120
351
|
.n("AppIntegrationsClient", "UpdateApplicationCommand")
|
|
1121
|
-
.sc(UpdateApplication$)
|
|
352
|
+
.sc(schemas_0.UpdateApplication$)
|
|
1122
353
|
.build() {
|
|
1123
354
|
}
|
|
1124
355
|
|
|
@@ -1130,7 +361,7 @@ class UpdateDataIntegrationAssociationCommand extends smithyClient.Command
|
|
|
1130
361
|
})
|
|
1131
362
|
.s("AmazonAppIntegrationService", "UpdateDataIntegrationAssociation", {})
|
|
1132
363
|
.n("AppIntegrationsClient", "UpdateDataIntegrationAssociationCommand")
|
|
1133
|
-
.sc(UpdateDataIntegrationAssociation$)
|
|
364
|
+
.sc(schemas_0.UpdateDataIntegrationAssociation$)
|
|
1134
365
|
.build() {
|
|
1135
366
|
}
|
|
1136
367
|
|
|
@@ -1142,7 +373,7 @@ class UpdateDataIntegrationCommand extends smithyClient.Command
|
|
|
1142
373
|
})
|
|
1143
374
|
.s("AmazonAppIntegrationService", "UpdateDataIntegration", {})
|
|
1144
375
|
.n("AppIntegrationsClient", "UpdateDataIntegrationCommand")
|
|
1145
|
-
.sc(UpdateDataIntegration$)
|
|
376
|
+
.sc(schemas_0.UpdateDataIntegration$)
|
|
1146
377
|
.build() {
|
|
1147
378
|
}
|
|
1148
379
|
|
|
@@ -1154,7 +385,7 @@ class UpdateEventIntegrationCommand extends smithyClient.Command
|
|
|
1154
385
|
})
|
|
1155
386
|
.s("AmazonAppIntegrationService", "UpdateEventIntegration", {})
|
|
1156
387
|
.n("AppIntegrationsClient", "UpdateEventIntegrationCommand")
|
|
1157
|
-
.sc(UpdateEventIntegration$)
|
|
388
|
+
.sc(schemas_0.UpdateEventIntegration$)
|
|
1158
389
|
.build() {
|
|
1159
390
|
}
|
|
1160
391
|
|
|
@@ -1234,144 +465,54 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1234
465
|
enumerable: true,
|
|
1235
466
|
get: function () { return smithyClient.Client; }
|
|
1236
467
|
});
|
|
1237
|
-
exports
|
|
1238
|
-
|
|
468
|
+
Object.defineProperty(exports, "AppIntegrationsServiceException", {
|
|
469
|
+
enumerable: true,
|
|
470
|
+
get: function () { return AppIntegrationsServiceException.AppIntegrationsServiceException; }
|
|
471
|
+
});
|
|
1239
472
|
exports.AppIntegrations = AppIntegrations;
|
|
1240
473
|
exports.AppIntegrationsClient = AppIntegrationsClient;
|
|
1241
|
-
exports.AppIntegrationsServiceException = AppIntegrationsServiceException;
|
|
1242
|
-
exports.AppIntegrationsServiceException$ = AppIntegrationsServiceException$;
|
|
1243
|
-
exports.ApplicationAssociationSummary$ = ApplicationAssociationSummary$;
|
|
1244
|
-
exports.ApplicationConfig$ = ApplicationConfig$;
|
|
1245
|
-
exports.ApplicationSourceConfig$ = ApplicationSourceConfig$;
|
|
1246
|
-
exports.ApplicationSummary$ = ApplicationSummary$;
|
|
1247
474
|
exports.ApplicationType = ApplicationType;
|
|
1248
|
-
exports.ContactHandling$ = ContactHandling$;
|
|
1249
475
|
exports.ContactHandlingScope = ContactHandlingScope;
|
|
1250
|
-
exports.CreateApplication$ = CreateApplication$;
|
|
1251
476
|
exports.CreateApplicationCommand = CreateApplicationCommand;
|
|
1252
|
-
exports.CreateApplicationRequest$ = CreateApplicationRequest$;
|
|
1253
|
-
exports.CreateApplicationResponse$ = CreateApplicationResponse$;
|
|
1254
|
-
exports.CreateDataIntegration$ = CreateDataIntegration$;
|
|
1255
|
-
exports.CreateDataIntegrationAssociation$ = CreateDataIntegrationAssociation$;
|
|
1256
477
|
exports.CreateDataIntegrationAssociationCommand = CreateDataIntegrationAssociationCommand;
|
|
1257
|
-
exports.CreateDataIntegrationAssociationRequest$ = CreateDataIntegrationAssociationRequest$;
|
|
1258
|
-
exports.CreateDataIntegrationAssociationResponse$ = CreateDataIntegrationAssociationResponse$;
|
|
1259
478
|
exports.CreateDataIntegrationCommand = CreateDataIntegrationCommand;
|
|
1260
|
-
exports.CreateDataIntegrationRequest$ = CreateDataIntegrationRequest$;
|
|
1261
|
-
exports.CreateDataIntegrationResponse$ = CreateDataIntegrationResponse$;
|
|
1262
|
-
exports.CreateEventIntegration$ = CreateEventIntegration$;
|
|
1263
479
|
exports.CreateEventIntegrationCommand = CreateEventIntegrationCommand;
|
|
1264
|
-
exports.CreateEventIntegrationRequest$ = CreateEventIntegrationRequest$;
|
|
1265
|
-
exports.CreateEventIntegrationResponse$ = CreateEventIntegrationResponse$;
|
|
1266
|
-
exports.DataIntegrationAssociationSummary$ = DataIntegrationAssociationSummary$;
|
|
1267
|
-
exports.DataIntegrationSummary$ = DataIntegrationSummary$;
|
|
1268
|
-
exports.DeleteApplication$ = DeleteApplication$;
|
|
1269
480
|
exports.DeleteApplicationCommand = DeleteApplicationCommand;
|
|
1270
|
-
exports.DeleteApplicationRequest$ = DeleteApplicationRequest$;
|
|
1271
|
-
exports.DeleteApplicationResponse$ = DeleteApplicationResponse$;
|
|
1272
|
-
exports.DeleteDataIntegration$ = DeleteDataIntegration$;
|
|
1273
481
|
exports.DeleteDataIntegrationCommand = DeleteDataIntegrationCommand;
|
|
1274
|
-
exports.DeleteDataIntegrationRequest$ = DeleteDataIntegrationRequest$;
|
|
1275
|
-
exports.DeleteDataIntegrationResponse$ = DeleteDataIntegrationResponse$;
|
|
1276
|
-
exports.DeleteEventIntegration$ = DeleteEventIntegration$;
|
|
1277
482
|
exports.DeleteEventIntegrationCommand = DeleteEventIntegrationCommand;
|
|
1278
|
-
exports.DeleteEventIntegrationRequest$ = DeleteEventIntegrationRequest$;
|
|
1279
|
-
exports.DeleteEventIntegrationResponse$ = DeleteEventIntegrationResponse$;
|
|
1280
|
-
exports.DuplicateResourceException = DuplicateResourceException;
|
|
1281
|
-
exports.DuplicateResourceException$ = DuplicateResourceException$;
|
|
1282
|
-
exports.EventFilter$ = EventFilter$;
|
|
1283
|
-
exports.EventIntegration$ = EventIntegration$;
|
|
1284
|
-
exports.EventIntegrationAssociation$ = EventIntegrationAssociation$;
|
|
1285
|
-
exports.ExecutionConfiguration$ = ExecutionConfiguration$;
|
|
1286
483
|
exports.ExecutionMode = ExecutionMode;
|
|
1287
484
|
exports.ExecutionStatus = ExecutionStatus;
|
|
1288
|
-
exports.ExternalUrlConfig$ = ExternalUrlConfig$;
|
|
1289
|
-
exports.FileConfiguration$ = FileConfiguration$;
|
|
1290
|
-
exports.GetApplication$ = GetApplication$;
|
|
1291
485
|
exports.GetApplicationCommand = GetApplicationCommand;
|
|
1292
|
-
exports.GetApplicationRequest$ = GetApplicationRequest$;
|
|
1293
|
-
exports.GetApplicationResponse$ = GetApplicationResponse$;
|
|
1294
|
-
exports.GetDataIntegration$ = GetDataIntegration$;
|
|
1295
486
|
exports.GetDataIntegrationCommand = GetDataIntegrationCommand;
|
|
1296
|
-
exports.GetDataIntegrationRequest$ = GetDataIntegrationRequest$;
|
|
1297
|
-
exports.GetDataIntegrationResponse$ = GetDataIntegrationResponse$;
|
|
1298
|
-
exports.GetEventIntegration$ = GetEventIntegration$;
|
|
1299
487
|
exports.GetEventIntegrationCommand = GetEventIntegrationCommand;
|
|
1300
|
-
exports.GetEventIntegrationRequest$ = GetEventIntegrationRequest$;
|
|
1301
|
-
exports.GetEventIntegrationResponse$ = GetEventIntegrationResponse$;
|
|
1302
|
-
exports.IframeConfig$ = IframeConfig$;
|
|
1303
|
-
exports.InternalServiceError = InternalServiceError;
|
|
1304
|
-
exports.InternalServiceError$ = InternalServiceError$;
|
|
1305
|
-
exports.InvalidRequestException = InvalidRequestException;
|
|
1306
|
-
exports.InvalidRequestException$ = InvalidRequestException$;
|
|
1307
|
-
exports.LastExecutionStatus$ = LastExecutionStatus$;
|
|
1308
|
-
exports.ListApplicationAssociations$ = ListApplicationAssociations$;
|
|
1309
488
|
exports.ListApplicationAssociationsCommand = ListApplicationAssociationsCommand;
|
|
1310
|
-
exports.ListApplicationAssociationsRequest$ = ListApplicationAssociationsRequest$;
|
|
1311
|
-
exports.ListApplicationAssociationsResponse$ = ListApplicationAssociationsResponse$;
|
|
1312
|
-
exports.ListApplications$ = ListApplications$;
|
|
1313
489
|
exports.ListApplicationsCommand = ListApplicationsCommand;
|
|
1314
|
-
exports.ListApplicationsRequest$ = ListApplicationsRequest$;
|
|
1315
|
-
exports.ListApplicationsResponse$ = ListApplicationsResponse$;
|
|
1316
|
-
exports.ListDataIntegrationAssociations$ = ListDataIntegrationAssociations$;
|
|
1317
490
|
exports.ListDataIntegrationAssociationsCommand = ListDataIntegrationAssociationsCommand;
|
|
1318
|
-
exports.ListDataIntegrationAssociationsRequest$ = ListDataIntegrationAssociationsRequest$;
|
|
1319
|
-
exports.ListDataIntegrationAssociationsResponse$ = ListDataIntegrationAssociationsResponse$;
|
|
1320
|
-
exports.ListDataIntegrations$ = ListDataIntegrations$;
|
|
1321
491
|
exports.ListDataIntegrationsCommand = ListDataIntegrationsCommand;
|
|
1322
|
-
exports.ListDataIntegrationsRequest$ = ListDataIntegrationsRequest$;
|
|
1323
|
-
exports.ListDataIntegrationsResponse$ = ListDataIntegrationsResponse$;
|
|
1324
|
-
exports.ListEventIntegrationAssociations$ = ListEventIntegrationAssociations$;
|
|
1325
492
|
exports.ListEventIntegrationAssociationsCommand = ListEventIntegrationAssociationsCommand;
|
|
1326
|
-
exports.ListEventIntegrationAssociationsRequest$ = ListEventIntegrationAssociationsRequest$;
|
|
1327
|
-
exports.ListEventIntegrationAssociationsResponse$ = ListEventIntegrationAssociationsResponse$;
|
|
1328
|
-
exports.ListEventIntegrations$ = ListEventIntegrations$;
|
|
1329
493
|
exports.ListEventIntegrationsCommand = ListEventIntegrationsCommand;
|
|
1330
|
-
exports.ListEventIntegrationsRequest$ = ListEventIntegrationsRequest$;
|
|
1331
|
-
exports.ListEventIntegrationsResponse$ = ListEventIntegrationsResponse$;
|
|
1332
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1333
494
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1334
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1335
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1336
|
-
exports.OnDemandConfiguration$ = OnDemandConfiguration$;
|
|
1337
|
-
exports.Publication$ = Publication$;
|
|
1338
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1339
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1340
|
-
exports.ResourceQuotaExceededException = ResourceQuotaExceededException;
|
|
1341
|
-
exports.ResourceQuotaExceededException$ = ResourceQuotaExceededException$;
|
|
1342
|
-
exports.ScheduleConfiguration$ = ScheduleConfiguration$;
|
|
1343
|
-
exports.Subscription$ = Subscription$;
|
|
1344
|
-
exports.TagResource$ = TagResource$;
|
|
1345
495
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1346
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1347
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1348
|
-
exports.ThrottlingException = ThrottlingException;
|
|
1349
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
1350
|
-
exports.UnsupportedOperationException = UnsupportedOperationException;
|
|
1351
|
-
exports.UnsupportedOperationException$ = UnsupportedOperationException$;
|
|
1352
|
-
exports.UntagResource$ = UntagResource$;
|
|
1353
496
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1354
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1355
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1356
|
-
exports.UpdateApplication$ = UpdateApplication$;
|
|
1357
497
|
exports.UpdateApplicationCommand = UpdateApplicationCommand;
|
|
1358
|
-
exports.UpdateApplicationRequest$ = UpdateApplicationRequest$;
|
|
1359
|
-
exports.UpdateApplicationResponse$ = UpdateApplicationResponse$;
|
|
1360
|
-
exports.UpdateDataIntegration$ = UpdateDataIntegration$;
|
|
1361
|
-
exports.UpdateDataIntegrationAssociation$ = UpdateDataIntegrationAssociation$;
|
|
1362
498
|
exports.UpdateDataIntegrationAssociationCommand = UpdateDataIntegrationAssociationCommand;
|
|
1363
|
-
exports.UpdateDataIntegrationAssociationRequest$ = UpdateDataIntegrationAssociationRequest$;
|
|
1364
|
-
exports.UpdateDataIntegrationAssociationResponse$ = UpdateDataIntegrationAssociationResponse$;
|
|
1365
499
|
exports.UpdateDataIntegrationCommand = UpdateDataIntegrationCommand;
|
|
1366
|
-
exports.UpdateDataIntegrationRequest$ = UpdateDataIntegrationRequest$;
|
|
1367
|
-
exports.UpdateDataIntegrationResponse$ = UpdateDataIntegrationResponse$;
|
|
1368
|
-
exports.UpdateEventIntegration$ = UpdateEventIntegration$;
|
|
1369
500
|
exports.UpdateEventIntegrationCommand = UpdateEventIntegrationCommand;
|
|
1370
|
-
exports.UpdateEventIntegrationRequest$ = UpdateEventIntegrationRequest$;
|
|
1371
|
-
exports.UpdateEventIntegrationResponse$ = UpdateEventIntegrationResponse$;
|
|
1372
501
|
exports.paginateListApplicationAssociations = paginateListApplicationAssociations;
|
|
1373
502
|
exports.paginateListApplications = paginateListApplications;
|
|
1374
503
|
exports.paginateListDataIntegrationAssociations = paginateListDataIntegrationAssociations;
|
|
1375
504
|
exports.paginateListDataIntegrations = paginateListDataIntegrations;
|
|
1376
505
|
exports.paginateListEventIntegrationAssociations = paginateListEventIntegrationAssociations;
|
|
1377
506
|
exports.paginateListEventIntegrations = paginateListEventIntegrations;
|
|
507
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
508
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
509
|
+
enumerable: true,
|
|
510
|
+
get: function () { return schemas_0[k]; }
|
|
511
|
+
});
|
|
512
|
+
});
|
|
513
|
+
Object.keys(errors).forEach(function (k) {
|
|
514
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
515
|
+
enumerable: true,
|
|
516
|
+
get: function () { return errors[k]; }
|
|
517
|
+
});
|
|
518
|
+
});
|