@aws-sdk/client-kinesis-analytics 3.927.0 → 3.928.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.
Files changed (41) hide show
  1. package/dist-cjs/index.js +981 -776
  2. package/dist-cjs/runtimeConfig.shared.js +7 -0
  3. package/dist-es/KinesisAnalyticsClient.js +2 -0
  4. package/dist-es/commands/AddApplicationCloudWatchLoggingOptionCommand.js +3 -9
  5. package/dist-es/commands/AddApplicationInputCommand.js +3 -9
  6. package/dist-es/commands/AddApplicationInputProcessingConfigurationCommand.js +3 -9
  7. package/dist-es/commands/AddApplicationOutputCommand.js +3 -9
  8. package/dist-es/commands/AddApplicationReferenceDataSourceCommand.js +3 -9
  9. package/dist-es/commands/CreateApplicationCommand.js +3 -9
  10. package/dist-es/commands/DeleteApplicationCloudWatchLoggingOptionCommand.js +3 -9
  11. package/dist-es/commands/DeleteApplicationCommand.js +3 -9
  12. package/dist-es/commands/DeleteApplicationInputProcessingConfigurationCommand.js +3 -9
  13. package/dist-es/commands/DeleteApplicationOutputCommand.js +3 -9
  14. package/dist-es/commands/DeleteApplicationReferenceDataSourceCommand.js +3 -9
  15. package/dist-es/commands/DescribeApplicationCommand.js +3 -9
  16. package/dist-es/commands/DiscoverInputSchemaCommand.js +3 -9
  17. package/dist-es/commands/ListApplicationsCommand.js +3 -9
  18. package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
  19. package/dist-es/commands/StartApplicationCommand.js +3 -9
  20. package/dist-es/commands/StopApplicationCommand.js +3 -9
  21. package/dist-es/commands/TagResourceCommand.js +3 -9
  22. package/dist-es/commands/UntagResourceCommand.js +3 -9
  23. package/dist-es/commands/UpdateApplicationCommand.js +3 -9
  24. package/dist-es/runtimeConfig.shared.js +7 -0
  25. package/dist-es/schemas/schemas_0.js +910 -0
  26. package/dist-types/KinesisAnalyticsClient.d.ts +10 -1
  27. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  28. package/dist-types/runtimeConfig.d.ts +1 -0
  29. package/dist-types/runtimeConfig.native.d.ts +1 -0
  30. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  31. package/dist-types/schemas/schemas_0.d.ts +149 -0
  32. package/dist-types/ts3.4/KinesisAnalyticsClient.d.ts +4 -0
  33. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  34. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  35. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  36. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  37. package/dist-types/ts3.4/schemas/schemas_0.d.ts +154 -0
  38. package/package.json +5 -5
  39. package/dist-es/protocols/Aws_json1_1.js +0 -604
  40. package/dist-types/protocols/Aws_json1_1.d.ts +0 -182
  41. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +0 -245
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,8 +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
18
 
20
19
  const resolveClientEndpointParameters = (options) => {
21
20
  return Object.assign(options, {
@@ -91,6 +90,7 @@ class KinesisAnalyticsClient extends smithyClient.Client {
91
90
  const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
92
91
  const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
93
92
  this.config = _config_8;
93
+ this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
94
94
  this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
95
95
  this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
96
96
  this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
@@ -110,14 +110,14 @@ class KinesisAnalyticsClient extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- class KinesisAnalyticsServiceException extends smithyClient.ServiceException {
113
+ let KinesisAnalyticsServiceException$1 = class KinesisAnalyticsServiceException extends smithyClient.ServiceException {
114
114
  constructor(options) {
115
115
  super(options);
116
116
  Object.setPrototypeOf(this, KinesisAnalyticsServiceException.prototype);
117
117
  }
118
- }
118
+ };
119
119
 
120
- class ConcurrentModificationException extends KinesisAnalyticsServiceException {
120
+ let ConcurrentModificationException$1 = class ConcurrentModificationException extends KinesisAnalyticsServiceException$1 {
121
121
  name = "ConcurrentModificationException";
122
122
  $fault = "client";
123
123
  constructor(opts) {
@@ -128,8 +128,8 @@ class ConcurrentModificationException extends KinesisAnalyticsServiceException {
128
128
  });
129
129
  Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
130
130
  }
131
- }
132
- class InvalidArgumentException extends KinesisAnalyticsServiceException {
131
+ };
132
+ let InvalidArgumentException$1 = class InvalidArgumentException extends KinesisAnalyticsServiceException$1 {
133
133
  name = "InvalidArgumentException";
134
134
  $fault = "client";
135
135
  constructor(opts) {
@@ -140,8 +140,8 @@ class InvalidArgumentException extends KinesisAnalyticsServiceException {
140
140
  });
141
141
  Object.setPrototypeOf(this, InvalidArgumentException.prototype);
142
142
  }
143
- }
144
- class ResourceInUseException extends KinesisAnalyticsServiceException {
143
+ };
144
+ let ResourceInUseException$1 = class ResourceInUseException extends KinesisAnalyticsServiceException$1 {
145
145
  name = "ResourceInUseException";
146
146
  $fault = "client";
147
147
  constructor(opts) {
@@ -152,8 +152,8 @@ class ResourceInUseException extends KinesisAnalyticsServiceException {
152
152
  });
153
153
  Object.setPrototypeOf(this, ResourceInUseException.prototype);
154
154
  }
155
- }
156
- class ResourceNotFoundException extends KinesisAnalyticsServiceException {
155
+ };
156
+ let ResourceNotFoundException$1 = class ResourceNotFoundException extends KinesisAnalyticsServiceException$1 {
157
157
  name = "ResourceNotFoundException";
158
158
  $fault = "client";
159
159
  constructor(opts) {
@@ -164,8 +164,8 @@ class ResourceNotFoundException extends KinesisAnalyticsServiceException {
164
164
  });
165
165
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
166
166
  }
167
- }
168
- class UnsupportedOperationException extends KinesisAnalyticsServiceException {
167
+ };
168
+ let UnsupportedOperationException$1 = class UnsupportedOperationException extends KinesisAnalyticsServiceException$1 {
169
169
  name = "UnsupportedOperationException";
170
170
  $fault = "client";
171
171
  constructor(opts) {
@@ -176,12 +176,12 @@ class UnsupportedOperationException extends KinesisAnalyticsServiceException {
176
176
  });
177
177
  Object.setPrototypeOf(this, UnsupportedOperationException.prototype);
178
178
  }
179
- }
179
+ };
180
180
  const RecordFormatType = {
181
181
  CSV: "CSV",
182
182
  JSON: "JSON",
183
183
  };
184
- class CodeValidationException extends KinesisAnalyticsServiceException {
184
+ let CodeValidationException$1 = class CodeValidationException extends KinesisAnalyticsServiceException$1 {
185
185
  name = "CodeValidationException";
186
186
  $fault = "client";
187
187
  constructor(opts) {
@@ -192,7 +192,7 @@ class CodeValidationException extends KinesisAnalyticsServiceException {
192
192
  });
193
193
  Object.setPrototypeOf(this, CodeValidationException.prototype);
194
194
  }
195
- }
195
+ };
196
196
  const ApplicationStatus = {
197
197
  DELETING: "DELETING",
198
198
  READY: "READY",
@@ -206,7 +206,7 @@ const InputStartingPosition = {
206
206
  NOW: "NOW",
207
207
  TRIM_HORIZON: "TRIM_HORIZON",
208
208
  };
209
- class LimitExceededException extends KinesisAnalyticsServiceException {
209
+ let LimitExceededException$1 = class LimitExceededException extends KinesisAnalyticsServiceException$1 {
210
210
  name = "LimitExceededException";
211
211
  $fault = "client";
212
212
  constructor(opts) {
@@ -217,8 +217,8 @@ class LimitExceededException extends KinesisAnalyticsServiceException {
217
217
  });
218
218
  Object.setPrototypeOf(this, LimitExceededException.prototype);
219
219
  }
220
- }
221
- class TooManyTagsException extends KinesisAnalyticsServiceException {
220
+ };
221
+ let TooManyTagsException$1 = class TooManyTagsException extends KinesisAnalyticsServiceException$1 {
222
222
  name = "TooManyTagsException";
223
223
  $fault = "client";
224
224
  constructor(opts) {
@@ -229,8 +229,8 @@ class TooManyTagsException extends KinesisAnalyticsServiceException {
229
229
  });
230
230
  Object.setPrototypeOf(this, TooManyTagsException.prototype);
231
231
  }
232
- }
233
- class ResourceProvisionedThroughputExceededException extends KinesisAnalyticsServiceException {
232
+ };
233
+ let ResourceProvisionedThroughputExceededException$1 = class ResourceProvisionedThroughputExceededException extends KinesisAnalyticsServiceException$1 {
234
234
  name = "ResourceProvisionedThroughputExceededException";
235
235
  $fault = "client";
236
236
  constructor(opts) {
@@ -241,8 +241,8 @@ class ResourceProvisionedThroughputExceededException extends KinesisAnalyticsSer
241
241
  });
242
242
  Object.setPrototypeOf(this, ResourceProvisionedThroughputExceededException.prototype);
243
243
  }
244
- }
245
- class ServiceUnavailableException extends KinesisAnalyticsServiceException {
244
+ };
245
+ let ServiceUnavailableException$1 = class ServiceUnavailableException extends KinesisAnalyticsServiceException$1 {
246
246
  name = "ServiceUnavailableException";
247
247
  $fault = "server";
248
248
  constructor(opts) {
@@ -253,8 +253,8 @@ class ServiceUnavailableException extends KinesisAnalyticsServiceException {
253
253
  });
254
254
  Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
255
255
  }
256
- }
257
- class UnableToDetectSchemaException extends KinesisAnalyticsServiceException {
256
+ };
257
+ let UnableToDetectSchemaException$1 = class UnableToDetectSchemaException extends KinesisAnalyticsServiceException$1 {
258
258
  name = "UnableToDetectSchemaException";
259
259
  $fault = "client";
260
260
  RawInputRecords;
@@ -269,8 +269,8 @@ class UnableToDetectSchemaException extends KinesisAnalyticsServiceException {
269
269
  this.RawInputRecords = opts.RawInputRecords;
270
270
  this.ProcessedInputRecords = opts.ProcessedInputRecords;
271
271
  }
272
- }
273
- class InvalidApplicationConfigurationException extends KinesisAnalyticsServiceException {
272
+ };
273
+ let InvalidApplicationConfigurationException$1 = class InvalidApplicationConfigurationException extends KinesisAnalyticsServiceException$1 {
274
274
  name = "InvalidApplicationConfigurationException";
275
275
  $fault = "client";
276
276
  constructor(opts) {
@@ -281,618 +281,918 @@ class InvalidApplicationConfigurationException extends KinesisAnalyticsServiceEx
281
281
  });
282
282
  Object.setPrototypeOf(this, InvalidApplicationConfigurationException.prototype);
283
283
  }
284
- }
285
-
286
- const se_AddApplicationCloudWatchLoggingOptionCommand = async (input, context) => {
287
- const headers = sharedHeaders("AddApplicationCloudWatchLoggingOption");
288
- let body;
289
- body = JSON.stringify(smithyClient._json(input));
290
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
291
- };
292
- const se_AddApplicationInputCommand = async (input, context) => {
293
- const headers = sharedHeaders("AddApplicationInput");
294
- let body;
295
- body = JSON.stringify(smithyClient._json(input));
296
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
297
- };
298
- const se_AddApplicationInputProcessingConfigurationCommand = async (input, context) => {
299
- const headers = sharedHeaders("AddApplicationInputProcessingConfiguration");
300
- let body;
301
- body = JSON.stringify(smithyClient._json(input));
302
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
303
- };
304
- const se_AddApplicationOutputCommand = async (input, context) => {
305
- const headers = sharedHeaders("AddApplicationOutput");
306
- let body;
307
- body = JSON.stringify(smithyClient._json(input));
308
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
309
- };
310
- const se_AddApplicationReferenceDataSourceCommand = async (input, context) => {
311
- const headers = sharedHeaders("AddApplicationReferenceDataSource");
312
- let body;
313
- body = JSON.stringify(smithyClient._json(input));
314
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
315
- };
316
- const se_CreateApplicationCommand = async (input, context) => {
317
- const headers = sharedHeaders("CreateApplication");
318
- let body;
319
- body = JSON.stringify(smithyClient._json(input));
320
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
321
- };
322
- const se_DeleteApplicationCommand = async (input, context) => {
323
- const headers = sharedHeaders("DeleteApplication");
324
- let body;
325
- body = JSON.stringify(se_DeleteApplicationRequest(input));
326
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
327
- };
328
- const se_DeleteApplicationCloudWatchLoggingOptionCommand = async (input, context) => {
329
- const headers = sharedHeaders("DeleteApplicationCloudWatchLoggingOption");
330
- let body;
331
- body = JSON.stringify(smithyClient._json(input));
332
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
333
- };
334
- const se_DeleteApplicationInputProcessingConfigurationCommand = async (input, context) => {
335
- const headers = sharedHeaders("DeleteApplicationInputProcessingConfiguration");
336
- let body;
337
- body = JSON.stringify(smithyClient._json(input));
338
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
339
- };
340
- const se_DeleteApplicationOutputCommand = async (input, context) => {
341
- const headers = sharedHeaders("DeleteApplicationOutput");
342
- let body;
343
- body = JSON.stringify(smithyClient._json(input));
344
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
345
- };
346
- const se_DeleteApplicationReferenceDataSourceCommand = async (input, context) => {
347
- const headers = sharedHeaders("DeleteApplicationReferenceDataSource");
348
- let body;
349
- body = JSON.stringify(smithyClient._json(input));
350
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
351
- };
352
- const se_DescribeApplicationCommand = async (input, context) => {
353
- const headers = sharedHeaders("DescribeApplication");
354
- let body;
355
- body = JSON.stringify(smithyClient._json(input));
356
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
357
- };
358
- const se_DiscoverInputSchemaCommand = async (input, context) => {
359
- const headers = sharedHeaders("DiscoverInputSchema");
360
- let body;
361
- body = JSON.stringify(smithyClient._json(input));
362
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
363
- };
364
- const se_ListApplicationsCommand = async (input, context) => {
365
- const headers = sharedHeaders("ListApplications");
366
- let body;
367
- body = JSON.stringify(smithyClient._json(input));
368
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
369
- };
370
- const se_ListTagsForResourceCommand = async (input, context) => {
371
- const headers = sharedHeaders("ListTagsForResource");
372
- let body;
373
- body = JSON.stringify(smithyClient._json(input));
374
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
375
- };
376
- const se_StartApplicationCommand = async (input, context) => {
377
- const headers = sharedHeaders("StartApplication");
378
- let body;
379
- body = JSON.stringify(smithyClient._json(input));
380
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
381
- };
382
- const se_StopApplicationCommand = async (input, context) => {
383
- const headers = sharedHeaders("StopApplication");
384
- let body;
385
- body = JSON.stringify(smithyClient._json(input));
386
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
387
- };
388
- const se_TagResourceCommand = async (input, context) => {
389
- const headers = sharedHeaders("TagResource");
390
- let body;
391
- body = JSON.stringify(smithyClient._json(input));
392
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
393
- };
394
- const se_UntagResourceCommand = async (input, context) => {
395
- const headers = sharedHeaders("UntagResource");
396
- let body;
397
- body = JSON.stringify(smithyClient._json(input));
398
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
399
- };
400
- const se_UpdateApplicationCommand = async (input, context) => {
401
- const headers = sharedHeaders("UpdateApplication");
402
- let body;
403
- body = JSON.stringify(smithyClient._json(input));
404
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
405
- };
406
- const de_AddApplicationCloudWatchLoggingOptionCommand = async (output, context) => {
407
- if (output.statusCode >= 300) {
408
- return de_CommandError(output, context);
409
- }
410
- const data = await core$1.parseJsonBody(output.body, context);
411
- let contents = {};
412
- contents = smithyClient._json(data);
413
- const response = {
414
- $metadata: deserializeMetadata(output),
415
- ...contents,
416
- };
417
- return response;
418
- };
419
- const de_AddApplicationInputCommand = async (output, context) => {
420
- if (output.statusCode >= 300) {
421
- return de_CommandError(output, context);
422
- }
423
- const data = await core$1.parseJsonBody(output.body, context);
424
- let contents = {};
425
- contents = smithyClient._json(data);
426
- const response = {
427
- $metadata: deserializeMetadata(output),
428
- ...contents,
429
- };
430
- return response;
431
- };
432
- const de_AddApplicationInputProcessingConfigurationCommand = async (output, context) => {
433
- if (output.statusCode >= 300) {
434
- return de_CommandError(output, context);
435
- }
436
- const data = await core$1.parseJsonBody(output.body, context);
437
- let contents = {};
438
- contents = smithyClient._json(data);
439
- const response = {
440
- $metadata: deserializeMetadata(output),
441
- ...contents,
442
- };
443
- return response;
444
- };
445
- const de_AddApplicationOutputCommand = async (output, context) => {
446
- if (output.statusCode >= 300) {
447
- return de_CommandError(output, context);
448
- }
449
- const data = await core$1.parseJsonBody(output.body, context);
450
- let contents = {};
451
- contents = smithyClient._json(data);
452
- const response = {
453
- $metadata: deserializeMetadata(output),
454
- ...contents,
455
- };
456
- return response;
457
- };
458
- const de_AddApplicationReferenceDataSourceCommand = async (output, context) => {
459
- if (output.statusCode >= 300) {
460
- return de_CommandError(output, context);
461
- }
462
- const data = await core$1.parseJsonBody(output.body, context);
463
- let contents = {};
464
- contents = smithyClient._json(data);
465
- const response = {
466
- $metadata: deserializeMetadata(output),
467
- ...contents,
468
- };
469
- return response;
470
- };
471
- const de_CreateApplicationCommand = async (output, context) => {
472
- if (output.statusCode >= 300) {
473
- return de_CommandError(output, context);
474
- }
475
- const data = await core$1.parseJsonBody(output.body, context);
476
- let contents = {};
477
- contents = smithyClient._json(data);
478
- const response = {
479
- $metadata: deserializeMetadata(output),
480
- ...contents,
481
- };
482
- return response;
483
- };
484
- const de_DeleteApplicationCommand = async (output, context) => {
485
- if (output.statusCode >= 300) {
486
- return de_CommandError(output, context);
487
- }
488
- const data = await core$1.parseJsonBody(output.body, context);
489
- let contents = {};
490
- contents = smithyClient._json(data);
491
- const response = {
492
- $metadata: deserializeMetadata(output),
493
- ...contents,
494
- };
495
- return response;
496
- };
497
- const de_DeleteApplicationCloudWatchLoggingOptionCommand = async (output, context) => {
498
- if (output.statusCode >= 300) {
499
- return de_CommandError(output, context);
500
- }
501
- const data = await core$1.parseJsonBody(output.body, context);
502
- let contents = {};
503
- contents = smithyClient._json(data);
504
- const response = {
505
- $metadata: deserializeMetadata(output),
506
- ...contents,
507
- };
508
- return response;
509
- };
510
- const de_DeleteApplicationInputProcessingConfigurationCommand = async (output, context) => {
511
- if (output.statusCode >= 300) {
512
- return de_CommandError(output, context);
513
- }
514
- const data = await core$1.parseJsonBody(output.body, context);
515
- let contents = {};
516
- contents = smithyClient._json(data);
517
- const response = {
518
- $metadata: deserializeMetadata(output),
519
- ...contents,
520
- };
521
- return response;
522
- };
523
- const de_DeleteApplicationOutputCommand = async (output, context) => {
524
- if (output.statusCode >= 300) {
525
- return de_CommandError(output, context);
526
- }
527
- const data = await core$1.parseJsonBody(output.body, context);
528
- let contents = {};
529
- contents = smithyClient._json(data);
530
- const response = {
531
- $metadata: deserializeMetadata(output),
532
- ...contents,
533
- };
534
- return response;
535
- };
536
- const de_DeleteApplicationReferenceDataSourceCommand = async (output, context) => {
537
- if (output.statusCode >= 300) {
538
- return de_CommandError(output, context);
539
- }
540
- const data = await core$1.parseJsonBody(output.body, context);
541
- let contents = {};
542
- contents = smithyClient._json(data);
543
- const response = {
544
- $metadata: deserializeMetadata(output),
545
- ...contents,
546
- };
547
- return response;
548
- };
549
- const de_DescribeApplicationCommand = async (output, context) => {
550
- if (output.statusCode >= 300) {
551
- return de_CommandError(output, context);
552
- }
553
- const data = await core$1.parseJsonBody(output.body, context);
554
- let contents = {};
555
- contents = de_DescribeApplicationResponse(data);
556
- const response = {
557
- $metadata: deserializeMetadata(output),
558
- ...contents,
559
- };
560
- return response;
561
- };
562
- const de_DiscoverInputSchemaCommand = async (output, context) => {
563
- if (output.statusCode >= 300) {
564
- return de_CommandError(output, context);
565
- }
566
- const data = await core$1.parseJsonBody(output.body, context);
567
- let contents = {};
568
- contents = smithyClient._json(data);
569
- const response = {
570
- $metadata: deserializeMetadata(output),
571
- ...contents,
572
- };
573
- return response;
574
- };
575
- const de_ListApplicationsCommand = async (output, context) => {
576
- if (output.statusCode >= 300) {
577
- return de_CommandError(output, context);
578
- }
579
- const data = await core$1.parseJsonBody(output.body, context);
580
- let contents = {};
581
- contents = smithyClient._json(data);
582
- const response = {
583
- $metadata: deserializeMetadata(output),
584
- ...contents,
585
- };
586
- return response;
587
- };
588
- const de_ListTagsForResourceCommand = async (output, context) => {
589
- if (output.statusCode >= 300) {
590
- return de_CommandError(output, context);
591
- }
592
- const data = await core$1.parseJsonBody(output.body, context);
593
- let contents = {};
594
- contents = smithyClient._json(data);
595
- const response = {
596
- $metadata: deserializeMetadata(output),
597
- ...contents,
598
- };
599
- return response;
600
- };
601
- const de_StartApplicationCommand = async (output, context) => {
602
- if (output.statusCode >= 300) {
603
- return de_CommandError(output, context);
604
- }
605
- const data = await core$1.parseJsonBody(output.body, context);
606
- let contents = {};
607
- contents = smithyClient._json(data);
608
- const response = {
609
- $metadata: deserializeMetadata(output),
610
- ...contents,
611
- };
612
- return response;
613
- };
614
- const de_StopApplicationCommand = async (output, context) => {
615
- if (output.statusCode >= 300) {
616
- return de_CommandError(output, context);
617
- }
618
- const data = await core$1.parseJsonBody(output.body, context);
619
- let contents = {};
620
- contents = smithyClient._json(data);
621
- const response = {
622
- $metadata: deserializeMetadata(output),
623
- ...contents,
624
- };
625
- return response;
626
- };
627
- const de_TagResourceCommand = async (output, context) => {
628
- if (output.statusCode >= 300) {
629
- return de_CommandError(output, context);
630
- }
631
- const data = await core$1.parseJsonBody(output.body, context);
632
- let contents = {};
633
- contents = smithyClient._json(data);
634
- const response = {
635
- $metadata: deserializeMetadata(output),
636
- ...contents,
637
- };
638
- return response;
639
- };
640
- const de_UntagResourceCommand = async (output, context) => {
641
- if (output.statusCode >= 300) {
642
- return de_CommandError(output, context);
643
- }
644
- const data = await core$1.parseJsonBody(output.body, context);
645
- let contents = {};
646
- contents = smithyClient._json(data);
647
- const response = {
648
- $metadata: deserializeMetadata(output),
649
- ...contents,
650
- };
651
- return response;
652
- };
653
- const de_UpdateApplicationCommand = async (output, context) => {
654
- if (output.statusCode >= 300) {
655
- return de_CommandError(output, context);
656
- }
657
- const data = await core$1.parseJsonBody(output.body, context);
658
- let contents = {};
659
- contents = smithyClient._json(data);
660
- const response = {
661
- $metadata: deserializeMetadata(output),
662
- ...contents,
663
- };
664
- return response;
665
- };
666
- const de_CommandError = async (output, context) => {
667
- const parsedOutput = {
668
- ...output,
669
- body: await core$1.parseJsonErrorBody(output.body, context),
670
- };
671
- const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
672
- switch (errorCode) {
673
- case "ConcurrentModificationException":
674
- case "com.amazonaws.kinesisanalytics#ConcurrentModificationException":
675
- throw await de_ConcurrentModificationExceptionRes(parsedOutput);
676
- case "InvalidArgumentException":
677
- case "com.amazonaws.kinesisanalytics#InvalidArgumentException":
678
- throw await de_InvalidArgumentExceptionRes(parsedOutput);
679
- case "ResourceInUseException":
680
- case "com.amazonaws.kinesisanalytics#ResourceInUseException":
681
- throw await de_ResourceInUseExceptionRes(parsedOutput);
682
- case "ResourceNotFoundException":
683
- case "com.amazonaws.kinesisanalytics#ResourceNotFoundException":
684
- throw await de_ResourceNotFoundExceptionRes(parsedOutput);
685
- case "UnsupportedOperationException":
686
- case "com.amazonaws.kinesisanalytics#UnsupportedOperationException":
687
- throw await de_UnsupportedOperationExceptionRes(parsedOutput);
688
- case "CodeValidationException":
689
- case "com.amazonaws.kinesisanalytics#CodeValidationException":
690
- throw await de_CodeValidationExceptionRes(parsedOutput);
691
- case "LimitExceededException":
692
- case "com.amazonaws.kinesisanalytics#LimitExceededException":
693
- throw await de_LimitExceededExceptionRes(parsedOutput);
694
- case "TooManyTagsException":
695
- case "com.amazonaws.kinesisanalytics#TooManyTagsException":
696
- throw await de_TooManyTagsExceptionRes(parsedOutput);
697
- case "ResourceProvisionedThroughputExceededException":
698
- case "com.amazonaws.kinesisanalytics#ResourceProvisionedThroughputExceededException":
699
- throw await de_ResourceProvisionedThroughputExceededExceptionRes(parsedOutput);
700
- case "ServiceUnavailableException":
701
- case "com.amazonaws.kinesisanalytics#ServiceUnavailableException":
702
- throw await de_ServiceUnavailableExceptionRes(parsedOutput);
703
- case "UnableToDetectSchemaException":
704
- case "com.amazonaws.kinesisanalytics#UnableToDetectSchemaException":
705
- throw await de_UnableToDetectSchemaExceptionRes(parsedOutput);
706
- case "InvalidApplicationConfigurationException":
707
- case "com.amazonaws.kinesisanalytics#InvalidApplicationConfigurationException":
708
- throw await de_InvalidApplicationConfigurationExceptionRes(parsedOutput);
709
- default:
710
- const parsedBody = parsedOutput.body;
711
- return throwDefaultError({
712
- output,
713
- parsedBody,
714
- errorCode,
715
- });
716
- }
717
- };
718
- const de_CodeValidationExceptionRes = async (parsedOutput, context) => {
719
- const body = parsedOutput.body;
720
- const deserialized = smithyClient._json(body);
721
- const exception = new CodeValidationException({
722
- $metadata: deserializeMetadata(parsedOutput),
723
- ...deserialized,
724
- });
725
- return smithyClient.decorateServiceException(exception, body);
726
284
  };
727
- const de_ConcurrentModificationExceptionRes = async (parsedOutput, context) => {
728
- const body = parsedOutput.body;
729
- const deserialized = smithyClient._json(body);
730
- const exception = new ConcurrentModificationException({
731
- $metadata: deserializeMetadata(parsedOutput),
732
- ...deserialized,
733
- });
734
- return smithyClient.decorateServiceException(exception, body);
735
- };
736
- const de_InvalidApplicationConfigurationExceptionRes = async (parsedOutput, context) => {
737
- const body = parsedOutput.body;
738
- const deserialized = smithyClient._json(body);
739
- const exception = new InvalidApplicationConfigurationException({
740
- $metadata: deserializeMetadata(parsedOutput),
741
- ...deserialized,
742
- });
743
- return smithyClient.decorateServiceException(exception, body);
744
- };
745
- const de_InvalidArgumentExceptionRes = async (parsedOutput, context) => {
746
- const body = parsedOutput.body;
747
- const deserialized = smithyClient._json(body);
748
- const exception = new InvalidArgumentException({
749
- $metadata: deserializeMetadata(parsedOutput),
750
- ...deserialized,
751
- });
752
- return smithyClient.decorateServiceException(exception, body);
753
- };
754
- const de_LimitExceededExceptionRes = async (parsedOutput, context) => {
755
- const body = parsedOutput.body;
756
- const deserialized = smithyClient._json(body);
757
- const exception = new LimitExceededException({
758
- $metadata: deserializeMetadata(parsedOutput),
759
- ...deserialized,
760
- });
761
- return smithyClient.decorateServiceException(exception, body);
762
- };
763
- const de_ResourceInUseExceptionRes = async (parsedOutput, context) => {
764
- const body = parsedOutput.body;
765
- const deserialized = smithyClient._json(body);
766
- const exception = new ResourceInUseException({
767
- $metadata: deserializeMetadata(parsedOutput),
768
- ...deserialized,
769
- });
770
- return smithyClient.decorateServiceException(exception, body);
771
- };
772
- const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
773
- const body = parsedOutput.body;
774
- const deserialized = smithyClient._json(body);
775
- const exception = new ResourceNotFoundException({
776
- $metadata: deserializeMetadata(parsedOutput),
777
- ...deserialized,
778
- });
779
- return smithyClient.decorateServiceException(exception, body);
780
- };
781
- const de_ResourceProvisionedThroughputExceededExceptionRes = async (parsedOutput, context) => {
782
- const body = parsedOutput.body;
783
- const deserialized = smithyClient._json(body);
784
- const exception = new ResourceProvisionedThroughputExceededException({
785
- $metadata: deserializeMetadata(parsedOutput),
786
- ...deserialized,
787
- });
788
- return smithyClient.decorateServiceException(exception, body);
789
- };
790
- const de_ServiceUnavailableExceptionRes = async (parsedOutput, context) => {
791
- const body = parsedOutput.body;
792
- const deserialized = smithyClient._json(body);
793
- const exception = new ServiceUnavailableException({
794
- $metadata: deserializeMetadata(parsedOutput),
795
- ...deserialized,
796
- });
797
- return smithyClient.decorateServiceException(exception, body);
798
- };
799
- const de_TooManyTagsExceptionRes = async (parsedOutput, context) => {
800
- const body = parsedOutput.body;
801
- const deserialized = smithyClient._json(body);
802
- const exception = new TooManyTagsException({
803
- $metadata: deserializeMetadata(parsedOutput),
804
- ...deserialized,
805
- });
806
- return smithyClient.decorateServiceException(exception, body);
807
- };
808
- const de_UnableToDetectSchemaExceptionRes = async (parsedOutput, context) => {
809
- const body = parsedOutput.body;
810
- const deserialized = smithyClient._json(body);
811
- const exception = new UnableToDetectSchemaException({
812
- $metadata: deserializeMetadata(parsedOutput),
813
- ...deserialized,
814
- });
815
- return smithyClient.decorateServiceException(exception, body);
816
- };
817
- const de_UnsupportedOperationExceptionRes = async (parsedOutput, context) => {
818
- const body = parsedOutput.body;
819
- const deserialized = smithyClient._json(body);
820
- const exception = new UnsupportedOperationException({
821
- $metadata: deserializeMetadata(parsedOutput),
822
- ...deserialized,
823
- });
824
- return smithyClient.decorateServiceException(exception, body);
825
- };
826
- const se_DeleteApplicationRequest = (input, context) => {
827
- return smithyClient.take(input, {
828
- ApplicationName: [],
829
- CreateTimestamp: (_) => _.getTime() / 1_000,
830
- });
831
- };
832
- const de_ApplicationDetail = (output, context) => {
833
- return smithyClient.take(output, {
834
- ApplicationARN: smithyClient.expectString,
835
- ApplicationCode: smithyClient.expectString,
836
- ApplicationDescription: smithyClient.expectString,
837
- ApplicationName: smithyClient.expectString,
838
- ApplicationStatus: smithyClient.expectString,
839
- ApplicationVersionId: smithyClient.expectLong,
840
- CloudWatchLoggingOptionDescriptions: smithyClient._json,
841
- CreateTimestamp: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
842
- InputDescriptions: smithyClient._json,
843
- LastUpdateTimestamp: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
844
- OutputDescriptions: smithyClient._json,
845
- ReferenceDataSourceDescriptions: smithyClient._json,
846
- });
847
- };
848
- const de_DescribeApplicationResponse = (output, context) => {
849
- return smithyClient.take(output, {
850
- ApplicationDetail: (_) => de_ApplicationDetail(_),
851
- });
852
- };
853
- const deserializeMetadata = (output) => ({
854
- httpStatusCode: output.statusCode,
855
- requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
856
- extendedRequestId: output.headers["x-amz-id-2"],
857
- cfId: output.headers["x-amz-cf-id"],
858
- });
859
- const throwDefaultError = smithyClient.withBaseException(KinesisAnalyticsServiceException);
860
- const buildHttpRpcRequest = async (context, headers, path, resolvedHostname, body) => {
861
- const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
862
- const contents = {
863
- protocol,
864
- hostname,
865
- port,
866
- method: "POST",
867
- path: basePath.endsWith("/") ? basePath.slice(0, -1) + path : basePath + path,
868
- headers,
869
- };
870
- if (body !== undefined) {
871
- contents.body = body;
872
- }
873
- return new protocolHttp.HttpRequest(contents);
874
- };
875
- function sharedHeaders(operation) {
876
- return {
877
- "content-type": "application/x-amz-json-1.1",
878
- "x-amz-target": `KinesisAnalytics_20150814.${operation}`,
879
- };
880
- }
285
+
286
+ const _AACWLO = "AddApplicationCloudWatchLoggingOption";
287
+ const _AACWLOR = "AddApplicationCloudWatchLoggingOptionRequest";
288
+ const _AACWLORd = "AddApplicationCloudWatchLoggingOptionResponse";
289
+ const _AAI = "AddApplicationInput";
290
+ const _AAIPC = "AddApplicationInputProcessingConfiguration";
291
+ const _AAIPCR = "AddApplicationInputProcessingConfigurationRequest";
292
+ const _AAIPCRd = "AddApplicationInputProcessingConfigurationResponse";
293
+ const _AAIR = "AddApplicationInputRequest";
294
+ const _AAIRd = "AddApplicationInputResponse";
295
+ const _AAO = "AddApplicationOutput";
296
+ const _AAOR = "AddApplicationOutputRequest";
297
+ const _AAORd = "AddApplicationOutputResponse";
298
+ const _AARDS = "AddApplicationReferenceDataSource";
299
+ const _AARDSR = "AddApplicationReferenceDataSourceRequest";
300
+ const _AARDSRd = "AddApplicationReferenceDataSourceResponse";
301
+ const _AARN = "ApplicationARN";
302
+ const _AC = "ApplicationCode";
303
+ const _ACU = "ApplicationCodeUpdate";
304
+ const _AD = "ApplicationDetail";
305
+ const _ADp = "ApplicationDescription";
306
+ const _AN = "ApplicationName";
307
+ const _AS = "ApplicationStatus";
308
+ const _ASp = "ApplicationSummary";
309
+ const _ASpp = "ApplicationSummaries";
310
+ const _AU = "ApplicationUpdate";
311
+ const _AVI = "ApplicationVersionId";
312
+ const _BARN = "BucketARN";
313
+ const _BARNU = "BucketARNUpdate";
314
+ const _C = "Count";
315
+ const _CA = "CreateApplication";
316
+ const _CAR = "CreateApplicationRequest";
317
+ const _CARr = "CreateApplicationResponse";
318
+ const _CAVI = "CurrentApplicationVersionId";
319
+ const _CME = "ConcurrentModificationException";
320
+ const _CSVMP = "CSVMappingParameters";
321
+ const _CT = "CreateTimestamp";
322
+ const _CU = "CountUpdate";
323
+ const _CVE = "CodeValidationException";
324
+ const _CWLO = "CloudWatchLoggingOption";
325
+ const _CWLOD = "CloudWatchLoggingOptionDescriptions";
326
+ const _CWLODl = "CloudWatchLoggingOptionDescription";
327
+ const _CWLOI = "CloudWatchLoggingOptionId";
328
+ const _CWLOU = "CloudWatchLoggingOptionUpdates";
329
+ const _CWLOUl = "CloudWatchLoggingOptionUpdate";
330
+ const _CWLOl = "CloudWatchLoggingOptions";
331
+ const _DA = "DeleteApplication";
332
+ const _DACWLO = "DeleteApplicationCloudWatchLoggingOption";
333
+ const _DACWLOR = "DeleteApplicationCloudWatchLoggingOptionRequest";
334
+ const _DACWLORe = "DeleteApplicationCloudWatchLoggingOptionResponse";
335
+ const _DAIPC = "DeleteApplicationInputProcessingConfiguration";
336
+ const _DAIPCR = "DeleteApplicationInputProcessingConfigurationRequest";
337
+ const _DAIPCRe = "DeleteApplicationInputProcessingConfigurationResponse";
338
+ const _DAO = "DeleteApplicationOutput";
339
+ const _DAOR = "DeleteApplicationOutputRequest";
340
+ const _DAORe = "DeleteApplicationOutputResponse";
341
+ const _DAR = "DeleteApplicationRequest";
342
+ const _DARDS = "DeleteApplicationReferenceDataSource";
343
+ const _DARDSR = "DeleteApplicationReferenceDataSourceRequest";
344
+ const _DARDSRe = "DeleteApplicationReferenceDataSourceResponse";
345
+ const _DARe = "DeleteApplicationResponse";
346
+ const _DARes = "DescribeApplicationRequest";
347
+ const _DAResc = "DescribeApplicationResponse";
348
+ const _DAe = "DescribeApplication";
349
+ const _DIS = "DiscoverInputSchema";
350
+ const _DISR = "DiscoverInputSchemaRequest";
351
+ const _DISRi = "DiscoverInputSchemaResponse";
352
+ const _DS = "DestinationSchema";
353
+ const _DSU = "DestinationSchemaUpdate";
354
+ const _ESAN = "ExclusiveStartApplicationName";
355
+ const _FK = "FileKey";
356
+ const _FKU = "FileKeyUpdate";
357
+ const _HMA = "HasMoreApplications";
358
+ const _I = "Input";
359
+ const _IACE = "InvalidApplicationConfigurationException";
360
+ const _IAE = "InvalidArgumentException";
361
+ const _IASN = "InAppStreamNames";
362
+ const _IC = "InputConfiguration";
363
+ const _ICn = "InputConfigurations";
364
+ const _ID = "InputDescriptions";
365
+ const _IDn = "InputDescription";
366
+ const _II = "InputId";
367
+ const _ILP = "InputLambdaProcessor";
368
+ const _ILPD = "InputLambdaProcessorDescription";
369
+ const _ILPU = "InputLambdaProcessorUpdate";
370
+ const _IP = "InputParallelism";
371
+ const _IPC = "InputProcessingConfiguration";
372
+ const _IPCD = "InputProcessingConfigurationDescription";
373
+ const _IPCU = "InputProcessingConfigurationUpdate";
374
+ const _IPU = "InputParallelismUpdate";
375
+ const _IS = "InputSchema";
376
+ const _ISP = "InputStartingPosition";
377
+ const _ISPC = "InputStartingPositionConfiguration";
378
+ const _ISU = "InputSchemaUpdate";
379
+ const _IU = "InputUpdates";
380
+ const _IUn = "InputUpdate";
381
+ const _Id = "Id";
382
+ const _In = "Inputs";
383
+ const _JSONMP = "JSONMappingParameters";
384
+ const _K = "Key";
385
+ const _KFI = "KinesisFirehoseInput";
386
+ const _KFID = "KinesisFirehoseInputDescription";
387
+ const _KFIU = "KinesisFirehoseInputUpdate";
388
+ const _KFO = "KinesisFirehoseOutput";
389
+ const _KFOD = "KinesisFirehoseOutputDescription";
390
+ const _KFOU = "KinesisFirehoseOutputUpdate";
391
+ const _KSI = "KinesisStreamsInput";
392
+ const _KSID = "KinesisStreamsInputDescription";
393
+ const _KSIU = "KinesisStreamsInputUpdate";
394
+ const _KSO = "KinesisStreamsOutput";
395
+ const _KSOD = "KinesisStreamsOutputDescription";
396
+ const _KSOU = "KinesisStreamsOutputUpdate";
397
+ const _L = "Limit";
398
+ const _LA = "ListApplications";
399
+ const _LAR = "ListApplicationsRequest";
400
+ const _LARi = "ListApplicationsResponse";
401
+ const _LEE = "LimitExceededException";
402
+ const _LO = "LambdaOutput";
403
+ const _LOD = "LambdaOutputDescription";
404
+ const _LOU = "LambdaOutputUpdate";
405
+ const _LSARN = "LogStreamARN";
406
+ const _LSARNU = "LogStreamARNUpdate";
407
+ const _LTFR = "ListTagsForResource";
408
+ const _LTFRR = "ListTagsForResourceRequest";
409
+ const _LTFRRi = "ListTagsForResourceResponse";
410
+ const _LUT = "LastUpdateTimestamp";
411
+ const _M = "Mapping";
412
+ const _MP = "MappingParameters";
413
+ const _N = "Name";
414
+ const _NP = "NamePrefix";
415
+ const _NPU = "NamePrefixUpdate";
416
+ const _NU = "NameUpdate";
417
+ const _O = "Output";
418
+ const _OD = "OutputDescriptions";
419
+ const _ODu = "OutputDescription";
420
+ const _OI = "OutputId";
421
+ const _OU = "OutputUpdates";
422
+ const _OUu = "OutputUpdate";
423
+ const _Ou = "Outputs";
424
+ const _PIR = "ParsedInputRecords";
425
+ const _PIRr = "ProcessedInputRecords";
426
+ const _RARN = "RoleARN";
427
+ const _RARNU = "RoleARNUpdate";
428
+ const _RARNUe = "ResourceARNUpdate";
429
+ const _RARNe = "ResourceARN";
430
+ const _RC = "RecordColumn";
431
+ const _RCD = "RecordColumnDelimiter";
432
+ const _RCU = "RecordColumnUpdates";
433
+ const _RCe = "RecordColumns";
434
+ const _RDS = "ReferenceDataSource";
435
+ const _RDSD = "ReferenceDataSourceDescriptions";
436
+ const _RDSDe = "ReferenceDataSourceDescription";
437
+ const _RDSU = "ReferenceDataSourceUpdates";
438
+ const _RDSUe = "ReferenceDataSourceUpdate";
439
+ const _RE = "RecordEncoding";
440
+ const _REU = "RecordEncodingUpdate";
441
+ const _RF = "RecordFormat";
442
+ const _RFT = "RecordFormatType";
443
+ const _RFU = "RecordFormatUpdate";
444
+ const _RI = "ReferenceId";
445
+ const _RIR = "RawInputRecords";
446
+ const _RIUE = "ResourceInUseException";
447
+ const _RNFE = "ResourceNotFoundException";
448
+ const _RPTEE = "ResourceProvisionedThroughputExceededException";
449
+ const _RRARN = "ReferenceRoleARN";
450
+ const _RRARNU = "ReferenceRoleARNUpdate";
451
+ const _RRD = "RecordRowDelimiter";
452
+ const _RRP = "RecordRowPath";
453
+ const _RS = "ReferenceSchema";
454
+ const _RSU = "ReferenceSchemaUpdate";
455
+ const _SA = "StartApplication";
456
+ const _SAR = "StartApplicationRequest";
457
+ const _SARt = "StartApplicationResponse";
458
+ const _SARto = "StopApplicationRequest";
459
+ const _SARtop = "StopApplicationResponse";
460
+ const _SAt = "StopApplication";
461
+ const _SC = "S3Configuration";
462
+ const _SRDS = "S3ReferenceDataSource";
463
+ const _SRDSD = "S3ReferenceDataSourceDescription";
464
+ const _SRDSU = "S3ReferenceDataSourceUpdate";
465
+ const _SS = "SourceSchema";
466
+ const _ST = "SqlType";
467
+ const _SUE = "ServiceUnavailableException";
468
+ const _T = "Tags";
469
+ const _TK = "TagKeys";
470
+ const _TMTE = "TooManyTagsException";
471
+ const _TN = "TableName";
472
+ const _TNU = "TableNameUpdate";
473
+ const _TR = "TagResource";
474
+ const _TRR = "TagResourceRequest";
475
+ const _TRRa = "TagResourceResponse";
476
+ const _Ta = "Tag";
477
+ const _UA = "UpdateApplication";
478
+ const _UAR = "UpdateApplicationRequest";
479
+ const _UARp = "UpdateApplicationResponse";
480
+ const _UOE = "UnsupportedOperationException";
481
+ const _UR = "UntagResource";
482
+ const _URR = "UntagResourceRequest";
483
+ const _URRn = "UntagResourceResponse";
484
+ const _UTDSE = "UnableToDetectSchemaException";
485
+ const _V = "Value";
486
+ const _c = "client";
487
+ const _e = "error";
488
+ const _hE = "httpError";
489
+ const _m = "message";
490
+ const _s = "server";
491
+ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.kinesisanalytics";
492
+ const n0 = "com.amazonaws.kinesisanalytics";
493
+ var AddApplicationCloudWatchLoggingOptionRequest = [
494
+ 3,
495
+ n0,
496
+ _AACWLOR,
497
+ 0,
498
+ [_AN, _CAVI, _CWLO],
499
+ [0, 1, () => CloudWatchLoggingOption],
500
+ ];
501
+ var AddApplicationCloudWatchLoggingOptionResponse = [3, n0, _AACWLORd, 0, [], []];
502
+ var AddApplicationInputProcessingConfigurationRequest = [
503
+ 3,
504
+ n0,
505
+ _AAIPCR,
506
+ 0,
507
+ [_AN, _CAVI, _II, _IPC],
508
+ [0, 1, 0, () => InputProcessingConfiguration],
509
+ ];
510
+ var AddApplicationInputProcessingConfigurationResponse = [3, n0, _AAIPCRd, 0, [], []];
511
+ var AddApplicationInputRequest = [3, n0, _AAIR, 0, [_AN, _CAVI, _I], [0, 1, () => Input]];
512
+ var AddApplicationInputResponse = [3, n0, _AAIRd, 0, [], []];
513
+ var AddApplicationOutputRequest = [
514
+ 3,
515
+ n0,
516
+ _AAOR,
517
+ 0,
518
+ [_AN, _CAVI, _O],
519
+ [0, 1, () => Output],
520
+ ];
521
+ var AddApplicationOutputResponse = [3, n0, _AAORd, 0, [], []];
522
+ var AddApplicationReferenceDataSourceRequest = [
523
+ 3,
524
+ n0,
525
+ _AARDSR,
526
+ 0,
527
+ [_AN, _CAVI, _RDS],
528
+ [0, 1, () => ReferenceDataSource],
529
+ ];
530
+ var AddApplicationReferenceDataSourceResponse = [3, n0, _AARDSRd, 0, [], []];
531
+ var ApplicationDetail = [
532
+ 3,
533
+ n0,
534
+ _AD,
535
+ 0,
536
+ [_AN, _ADp, _AARN, _AS, _CT, _LUT, _ID, _OD, _RDSD, _CWLOD, _AC, _AVI],
537
+ [
538
+ 0,
539
+ 0,
540
+ 0,
541
+ 0,
542
+ 4,
543
+ 4,
544
+ () => InputDescriptions,
545
+ () => OutputDescriptions,
546
+ () => ReferenceDataSourceDescriptions,
547
+ () => CloudWatchLoggingOptionDescriptions,
548
+ 0,
549
+ 1,
550
+ ],
551
+ ];
552
+ var ApplicationSummary = [3, n0, _ASp, 0, [_AN, _AARN, _AS], [0, 0, 0]];
553
+ var ApplicationUpdate = [
554
+ 3,
555
+ n0,
556
+ _AU,
557
+ 0,
558
+ [_IU, _ACU, _OU, _RDSU, _CWLOU],
559
+ [() => InputUpdates, 0, () => OutputUpdates, () => ReferenceDataSourceUpdates, () => CloudWatchLoggingOptionUpdates],
560
+ ];
561
+ var CloudWatchLoggingOption = [3, n0, _CWLO, 0, [_LSARN, _RARN], [0, 0]];
562
+ var CloudWatchLoggingOptionDescription = [
563
+ 3,
564
+ n0,
565
+ _CWLODl,
566
+ 0,
567
+ [_CWLOI, _LSARN, _RARN],
568
+ [0, 0, 0],
569
+ ];
570
+ var CloudWatchLoggingOptionUpdate = [
571
+ 3,
572
+ n0,
573
+ _CWLOUl,
574
+ 0,
575
+ [_CWLOI, _LSARNU, _RARNU],
576
+ [0, 0, 0],
577
+ ];
578
+ var CodeValidationException = [
579
+ -3,
580
+ n0,
581
+ _CVE,
582
+ {
583
+ [_e]: _c,
584
+ },
585
+ [_m],
586
+ [0],
587
+ ];
588
+ schema.TypeRegistry.for(n0).registerError(CodeValidationException, CodeValidationException$1);
589
+ var ConcurrentModificationException = [
590
+ -3,
591
+ n0,
592
+ _CME,
593
+ {
594
+ [_e]: _c,
595
+ [_hE]: 409,
596
+ },
597
+ [_m],
598
+ [0],
599
+ ];
600
+ schema.TypeRegistry.for(n0).registerError(ConcurrentModificationException, ConcurrentModificationException$1);
601
+ var CreateApplicationRequest = [
602
+ 3,
603
+ n0,
604
+ _CAR,
605
+ 0,
606
+ [_AN, _ADp, _In, _Ou, _CWLOl, _AC, _T],
607
+ [0, 0, () => Inputs, () => Outputs, () => CloudWatchLoggingOptions, 0, () => Tags],
608
+ ];
609
+ var CreateApplicationResponse = [3, n0, _CARr, 0, [_ASp], [() => ApplicationSummary]];
610
+ var CSVMappingParameters = [3, n0, _CSVMP, 0, [_RRD, _RCD], [0, 0]];
611
+ var DeleteApplicationCloudWatchLoggingOptionRequest = [
612
+ 3,
613
+ n0,
614
+ _DACWLOR,
615
+ 0,
616
+ [_AN, _CAVI, _CWLOI],
617
+ [0, 1, 0],
618
+ ];
619
+ var DeleteApplicationCloudWatchLoggingOptionResponse = [3, n0, _DACWLORe, 0, [], []];
620
+ var DeleteApplicationInputProcessingConfigurationRequest = [
621
+ 3,
622
+ n0,
623
+ _DAIPCR,
624
+ 0,
625
+ [_AN, _CAVI, _II],
626
+ [0, 1, 0],
627
+ ];
628
+ var DeleteApplicationInputProcessingConfigurationResponse = [3, n0, _DAIPCRe, 0, [], []];
629
+ var DeleteApplicationOutputRequest = [3, n0, _DAOR, 0, [_AN, _CAVI, _OI], [0, 1, 0]];
630
+ var DeleteApplicationOutputResponse = [3, n0, _DAORe, 0, [], []];
631
+ var DeleteApplicationReferenceDataSourceRequest = [
632
+ 3,
633
+ n0,
634
+ _DARDSR,
635
+ 0,
636
+ [_AN, _CAVI, _RI],
637
+ [0, 1, 0],
638
+ ];
639
+ var DeleteApplicationReferenceDataSourceResponse = [3, n0, _DARDSRe, 0, [], []];
640
+ var DeleteApplicationRequest = [3, n0, _DAR, 0, [_AN, _CT], [0, 4]];
641
+ var DeleteApplicationResponse = [3, n0, _DARe, 0, [], []];
642
+ var DescribeApplicationRequest = [3, n0, _DARes, 0, [_AN], [0]];
643
+ var DescribeApplicationResponse = [3, n0, _DAResc, 0, [_AD], [() => ApplicationDetail]];
644
+ var DestinationSchema = [3, n0, _DS, 0, [_RFT], [0]];
645
+ var DiscoverInputSchemaRequest = [
646
+ 3,
647
+ n0,
648
+ _DISR,
649
+ 0,
650
+ [_RARNe, _RARN, _ISPC, _SC, _IPC],
651
+ [0, 0, () => InputStartingPositionConfiguration, () => S3Configuration, () => InputProcessingConfiguration],
652
+ ];
653
+ var DiscoverInputSchemaResponse = [
654
+ 3,
655
+ n0,
656
+ _DISRi,
657
+ 0,
658
+ [_IS, _PIR, _PIRr, _RIR],
659
+ [() => SourceSchema, [1, n0, _PIR, 0, 64 | 0], 64 | 0, 64 | 0],
660
+ ];
661
+ var Input = [
662
+ 3,
663
+ n0,
664
+ _I,
665
+ 0,
666
+ [_NP, _IPC, _KSI, _KFI, _IP, _IS],
667
+ [
668
+ 0,
669
+ () => InputProcessingConfiguration,
670
+ () => KinesisStreamsInput,
671
+ () => KinesisFirehoseInput,
672
+ () => InputParallelism,
673
+ () => SourceSchema,
674
+ ],
675
+ ];
676
+ var InputConfiguration = [
677
+ 3,
678
+ n0,
679
+ _IC,
680
+ 0,
681
+ [_Id, _ISPC],
682
+ [0, () => InputStartingPositionConfiguration],
683
+ ];
684
+ var InputDescription = [
685
+ 3,
686
+ n0,
687
+ _IDn,
688
+ 0,
689
+ [_II, _NP, _IASN, _IPCD, _KSID, _KFID, _IS, _IP, _ISPC],
690
+ [
691
+ 0,
692
+ 0,
693
+ 64 | 0,
694
+ () => InputProcessingConfigurationDescription,
695
+ () => KinesisStreamsInputDescription,
696
+ () => KinesisFirehoseInputDescription,
697
+ () => SourceSchema,
698
+ () => InputParallelism,
699
+ () => InputStartingPositionConfiguration,
700
+ ],
701
+ ];
702
+ var InputLambdaProcessor = [3, n0, _ILP, 0, [_RARNe, _RARN], [0, 0]];
703
+ var InputLambdaProcessorDescription = [3, n0, _ILPD, 0, [_RARNe, _RARN], [0, 0]];
704
+ var InputLambdaProcessorUpdate = [3, n0, _ILPU, 0, [_RARNUe, _RARNU], [0, 0]];
705
+ var InputParallelism = [3, n0, _IP, 0, [_C], [1]];
706
+ var InputParallelismUpdate = [3, n0, _IPU, 0, [_CU], [1]];
707
+ var InputProcessingConfiguration = [3, n0, _IPC, 0, [_ILP], [() => InputLambdaProcessor]];
708
+ var InputProcessingConfigurationDescription = [
709
+ 3,
710
+ n0,
711
+ _IPCD,
712
+ 0,
713
+ [_ILPD],
714
+ [() => InputLambdaProcessorDescription],
715
+ ];
716
+ var InputProcessingConfigurationUpdate = [
717
+ 3,
718
+ n0,
719
+ _IPCU,
720
+ 0,
721
+ [_ILPU],
722
+ [() => InputLambdaProcessorUpdate],
723
+ ];
724
+ var InputSchemaUpdate = [
725
+ 3,
726
+ n0,
727
+ _ISU,
728
+ 0,
729
+ [_RFU, _REU, _RCU],
730
+ [() => RecordFormat, 0, () => RecordColumns],
731
+ ];
732
+ var InputStartingPositionConfiguration = [3, n0, _ISPC, 0, [_ISP], [0]];
733
+ var InputUpdate = [
734
+ 3,
735
+ n0,
736
+ _IUn,
737
+ 0,
738
+ [_II, _NPU, _IPCU, _KSIU, _KFIU, _ISU, _IPU],
739
+ [
740
+ 0,
741
+ 0,
742
+ () => InputProcessingConfigurationUpdate,
743
+ () => KinesisStreamsInputUpdate,
744
+ () => KinesisFirehoseInputUpdate,
745
+ () => InputSchemaUpdate,
746
+ () => InputParallelismUpdate,
747
+ ],
748
+ ];
749
+ var InvalidApplicationConfigurationException = [
750
+ -3,
751
+ n0,
752
+ _IACE,
753
+ {
754
+ [_e]: _c,
755
+ },
756
+ [_m],
757
+ [0],
758
+ ];
759
+ schema.TypeRegistry.for(n0).registerError(InvalidApplicationConfigurationException, InvalidApplicationConfigurationException$1);
760
+ var InvalidArgumentException = [
761
+ -3,
762
+ n0,
763
+ _IAE,
764
+ {
765
+ [_e]: _c,
766
+ },
767
+ [_m],
768
+ [0],
769
+ ];
770
+ schema.TypeRegistry.for(n0).registerError(InvalidArgumentException, InvalidArgumentException$1);
771
+ var JSONMappingParameters = [3, n0, _JSONMP, 0, [_RRP], [0]];
772
+ var KinesisFirehoseInput = [3, n0, _KFI, 0, [_RARNe, _RARN], [0, 0]];
773
+ var KinesisFirehoseInputDescription = [3, n0, _KFID, 0, [_RARNe, _RARN], [0, 0]];
774
+ var KinesisFirehoseInputUpdate = [3, n0, _KFIU, 0, [_RARNUe, _RARNU], [0, 0]];
775
+ var KinesisFirehoseOutput = [3, n0, _KFO, 0, [_RARNe, _RARN], [0, 0]];
776
+ var KinesisFirehoseOutputDescription = [3, n0, _KFOD, 0, [_RARNe, _RARN], [0, 0]];
777
+ var KinesisFirehoseOutputUpdate = [3, n0, _KFOU, 0, [_RARNUe, _RARNU], [0, 0]];
778
+ var KinesisStreamsInput = [3, n0, _KSI, 0, [_RARNe, _RARN], [0, 0]];
779
+ var KinesisStreamsInputDescription = [3, n0, _KSID, 0, [_RARNe, _RARN], [0, 0]];
780
+ var KinesisStreamsInputUpdate = [3, n0, _KSIU, 0, [_RARNUe, _RARNU], [0, 0]];
781
+ var KinesisStreamsOutput = [3, n0, _KSO, 0, [_RARNe, _RARN], [0, 0]];
782
+ var KinesisStreamsOutputDescription = [3, n0, _KSOD, 0, [_RARNe, _RARN], [0, 0]];
783
+ var KinesisStreamsOutputUpdate = [3, n0, _KSOU, 0, [_RARNUe, _RARNU], [0, 0]];
784
+ var LambdaOutput = [3, n0, _LO, 0, [_RARNe, _RARN], [0, 0]];
785
+ var LambdaOutputDescription = [3, n0, _LOD, 0, [_RARNe, _RARN], [0, 0]];
786
+ var LambdaOutputUpdate = [3, n0, _LOU, 0, [_RARNUe, _RARNU], [0, 0]];
787
+ var LimitExceededException = [
788
+ -3,
789
+ n0,
790
+ _LEE,
791
+ {
792
+ [_e]: _c,
793
+ },
794
+ [_m],
795
+ [0],
796
+ ];
797
+ schema.TypeRegistry.for(n0).registerError(LimitExceededException, LimitExceededException$1);
798
+ var ListApplicationsRequest = [3, n0, _LAR, 0, [_L, _ESAN], [1, 0]];
799
+ var ListApplicationsResponse = [
800
+ 3,
801
+ n0,
802
+ _LARi,
803
+ 0,
804
+ [_ASpp, _HMA],
805
+ [() => ApplicationSummaries, 2],
806
+ ];
807
+ var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RARNe], [0]];
808
+ var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_T], [() => Tags]];
809
+ var MappingParameters = [
810
+ 3,
811
+ n0,
812
+ _MP,
813
+ 0,
814
+ [_JSONMP, _CSVMP],
815
+ [() => JSONMappingParameters, () => CSVMappingParameters],
816
+ ];
817
+ var Output = [
818
+ 3,
819
+ n0,
820
+ _O,
821
+ 0,
822
+ [_N, _KSO, _KFO, _LO, _DS],
823
+ [0, () => KinesisStreamsOutput, () => KinesisFirehoseOutput, () => LambdaOutput, () => DestinationSchema],
824
+ ];
825
+ var OutputDescription = [
826
+ 3,
827
+ n0,
828
+ _ODu,
829
+ 0,
830
+ [_OI, _N, _KSOD, _KFOD, _LOD, _DS],
831
+ [
832
+ 0,
833
+ 0,
834
+ () => KinesisStreamsOutputDescription,
835
+ () => KinesisFirehoseOutputDescription,
836
+ () => LambdaOutputDescription,
837
+ () => DestinationSchema,
838
+ ],
839
+ ];
840
+ var OutputUpdate = [
841
+ 3,
842
+ n0,
843
+ _OUu,
844
+ 0,
845
+ [_OI, _NU, _KSOU, _KFOU, _LOU, _DSU],
846
+ [
847
+ 0,
848
+ 0,
849
+ () => KinesisStreamsOutputUpdate,
850
+ () => KinesisFirehoseOutputUpdate,
851
+ () => LambdaOutputUpdate,
852
+ () => DestinationSchema,
853
+ ],
854
+ ];
855
+ var RecordColumn = [3, n0, _RC, 0, [_N, _M, _ST], [0, 0, 0]];
856
+ var RecordFormat = [3, n0, _RF, 0, [_RFT, _MP], [0, () => MappingParameters]];
857
+ var ReferenceDataSource = [
858
+ 3,
859
+ n0,
860
+ _RDS,
861
+ 0,
862
+ [_TN, _SRDS, _RS],
863
+ [0, () => S3ReferenceDataSource, () => SourceSchema],
864
+ ];
865
+ var ReferenceDataSourceDescription = [
866
+ 3,
867
+ n0,
868
+ _RDSDe,
869
+ 0,
870
+ [_RI, _TN, _SRDSD, _RS],
871
+ [0, 0, () => S3ReferenceDataSourceDescription, () => SourceSchema],
872
+ ];
873
+ var ReferenceDataSourceUpdate = [
874
+ 3,
875
+ n0,
876
+ _RDSUe,
877
+ 0,
878
+ [_RI, _TNU, _SRDSU, _RSU],
879
+ [0, 0, () => S3ReferenceDataSourceUpdate, () => SourceSchema],
880
+ ];
881
+ var ResourceInUseException = [
882
+ -3,
883
+ n0,
884
+ _RIUE,
885
+ {
886
+ [_e]: _c,
887
+ },
888
+ [_m],
889
+ [0],
890
+ ];
891
+ schema.TypeRegistry.for(n0).registerError(ResourceInUseException, ResourceInUseException$1);
892
+ var ResourceNotFoundException = [
893
+ -3,
894
+ n0,
895
+ _RNFE,
896
+ {
897
+ [_e]: _c,
898
+ },
899
+ [_m],
900
+ [0],
901
+ ];
902
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
903
+ var ResourceProvisionedThroughputExceededException = [
904
+ -3,
905
+ n0,
906
+ _RPTEE,
907
+ {
908
+ [_e]: _c,
909
+ },
910
+ [_m],
911
+ [0],
912
+ ];
913
+ schema.TypeRegistry.for(n0).registerError(ResourceProvisionedThroughputExceededException, ResourceProvisionedThroughputExceededException$1);
914
+ var S3Configuration = [3, n0, _SC, 0, [_RARN, _BARN, _FK], [0, 0, 0]];
915
+ var S3ReferenceDataSource = [3, n0, _SRDS, 0, [_BARN, _FK, _RRARN], [0, 0, 0]];
916
+ var S3ReferenceDataSourceDescription = [
917
+ 3,
918
+ n0,
919
+ _SRDSD,
920
+ 0,
921
+ [_BARN, _FK, _RRARN],
922
+ [0, 0, 0],
923
+ ];
924
+ var S3ReferenceDataSourceUpdate = [3, n0, _SRDSU, 0, [_BARNU, _FKU, _RRARNU], [0, 0, 0]];
925
+ var ServiceUnavailableException = [
926
+ -3,
927
+ n0,
928
+ _SUE,
929
+ {
930
+ [_e]: _s,
931
+ [_hE]: 503,
932
+ },
933
+ [_m],
934
+ [0],
935
+ ];
936
+ schema.TypeRegistry.for(n0).registerError(ServiceUnavailableException, ServiceUnavailableException$1);
937
+ var SourceSchema = [
938
+ 3,
939
+ n0,
940
+ _SS,
941
+ 0,
942
+ [_RF, _RE, _RCe],
943
+ [() => RecordFormat, 0, () => RecordColumns],
944
+ ];
945
+ var StartApplicationRequest = [
946
+ 3,
947
+ n0,
948
+ _SAR,
949
+ 0,
950
+ [_AN, _ICn],
951
+ [0, () => InputConfigurations],
952
+ ];
953
+ var StartApplicationResponse = [3, n0, _SARt, 0, [], []];
954
+ var StopApplicationRequest = [3, n0, _SARto, 0, [_AN], [0]];
955
+ var StopApplicationResponse = [3, n0, _SARtop, 0, [], []];
956
+ var Tag = [3, n0, _Ta, 0, [_K, _V], [0, 0]];
957
+ var TagResourceRequest = [3, n0, _TRR, 0, [_RARNe, _T], [0, () => Tags]];
958
+ var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
959
+ var TooManyTagsException = [
960
+ -3,
961
+ n0,
962
+ _TMTE,
963
+ {
964
+ [_e]: _c,
965
+ },
966
+ [_m],
967
+ [0],
968
+ ];
969
+ schema.TypeRegistry.for(n0).registerError(TooManyTagsException, TooManyTagsException$1);
970
+ var UnableToDetectSchemaException = [
971
+ -3,
972
+ n0,
973
+ _UTDSE,
974
+ {
975
+ [_e]: _c,
976
+ },
977
+ [_m, _RIR, _PIRr],
978
+ [0, 64 | 0, 64 | 0],
979
+ ];
980
+ schema.TypeRegistry.for(n0).registerError(UnableToDetectSchemaException, UnableToDetectSchemaException$1);
981
+ var UnsupportedOperationException = [
982
+ -3,
983
+ n0,
984
+ _UOE,
985
+ {
986
+ [_e]: _c,
987
+ },
988
+ [_m],
989
+ [0],
990
+ ];
991
+ schema.TypeRegistry.for(n0).registerError(UnsupportedOperationException, UnsupportedOperationException$1);
992
+ var UntagResourceRequest = [3, n0, _URR, 0, [_RARNe, _TK], [0, 64 | 0]];
993
+ var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
994
+ var UpdateApplicationRequest = [
995
+ 3,
996
+ n0,
997
+ _UAR,
998
+ 0,
999
+ [_AN, _CAVI, _AU],
1000
+ [0, 1, () => ApplicationUpdate],
1001
+ ];
1002
+ var UpdateApplicationResponse = [3, n0, _UARp, 0, [], []];
1003
+ var KinesisAnalyticsServiceException = [
1004
+ -3,
1005
+ _sm,
1006
+ "KinesisAnalyticsServiceException",
1007
+ 0,
1008
+ [],
1009
+ [],
1010
+ ];
1011
+ schema.TypeRegistry.for(_sm).registerError(KinesisAnalyticsServiceException, KinesisAnalyticsServiceException$1);
1012
+ var ApplicationSummaries = [1, n0, _ASpp, 0, () => ApplicationSummary];
1013
+ var CloudWatchLoggingOptionDescriptions = [
1014
+ 1,
1015
+ n0,
1016
+ _CWLOD,
1017
+ 0,
1018
+ () => CloudWatchLoggingOptionDescription,
1019
+ ];
1020
+ var CloudWatchLoggingOptions = [1, n0, _CWLOl, 0, () => CloudWatchLoggingOption];
1021
+ var CloudWatchLoggingOptionUpdates = [1, n0, _CWLOU, 0, () => CloudWatchLoggingOptionUpdate];
1022
+ var InputConfigurations = [1, n0, _ICn, 0, () => InputConfiguration];
1023
+ var InputDescriptions = [1, n0, _ID, 0, () => InputDescription];
1024
+ var Inputs = [1, n0, _In, 0, () => Input];
1025
+ var InputUpdates = [1, n0, _IU, 0, () => InputUpdate];
1026
+ var OutputDescriptions = [1, n0, _OD, 0, () => OutputDescription];
1027
+ var Outputs = [1, n0, _Ou, 0, () => Output];
1028
+ var OutputUpdates = [1, n0, _OU, 0, () => OutputUpdate];
1029
+ var RecordColumns = [1, n0, _RCe, 0, () => RecordColumn];
1030
+ var ReferenceDataSourceDescriptions = [1, n0, _RDSD, 0, () => ReferenceDataSourceDescription];
1031
+ var ReferenceDataSourceUpdates = [1, n0, _RDSU, 0, () => ReferenceDataSourceUpdate];
1032
+ var Tags = [1, n0, _T, 0, () => Tag];
1033
+ var AddApplicationCloudWatchLoggingOption = [
1034
+ 9,
1035
+ n0,
1036
+ _AACWLO,
1037
+ 0,
1038
+ () => AddApplicationCloudWatchLoggingOptionRequest,
1039
+ () => AddApplicationCloudWatchLoggingOptionResponse,
1040
+ ];
1041
+ var AddApplicationInput = [
1042
+ 9,
1043
+ n0,
1044
+ _AAI,
1045
+ 0,
1046
+ () => AddApplicationInputRequest,
1047
+ () => AddApplicationInputResponse,
1048
+ ];
1049
+ var AddApplicationInputProcessingConfiguration = [
1050
+ 9,
1051
+ n0,
1052
+ _AAIPC,
1053
+ 0,
1054
+ () => AddApplicationInputProcessingConfigurationRequest,
1055
+ () => AddApplicationInputProcessingConfigurationResponse,
1056
+ ];
1057
+ var AddApplicationOutput = [
1058
+ 9,
1059
+ n0,
1060
+ _AAO,
1061
+ 0,
1062
+ () => AddApplicationOutputRequest,
1063
+ () => AddApplicationOutputResponse,
1064
+ ];
1065
+ var AddApplicationReferenceDataSource = [
1066
+ 9,
1067
+ n0,
1068
+ _AARDS,
1069
+ 0,
1070
+ () => AddApplicationReferenceDataSourceRequest,
1071
+ () => AddApplicationReferenceDataSourceResponse,
1072
+ ];
1073
+ var CreateApplication = [
1074
+ 9,
1075
+ n0,
1076
+ _CA,
1077
+ 0,
1078
+ () => CreateApplicationRequest,
1079
+ () => CreateApplicationResponse,
1080
+ ];
1081
+ var DeleteApplication = [
1082
+ 9,
1083
+ n0,
1084
+ _DA,
1085
+ 0,
1086
+ () => DeleteApplicationRequest,
1087
+ () => DeleteApplicationResponse,
1088
+ ];
1089
+ var DeleteApplicationCloudWatchLoggingOption = [
1090
+ 9,
1091
+ n0,
1092
+ _DACWLO,
1093
+ 0,
1094
+ () => DeleteApplicationCloudWatchLoggingOptionRequest,
1095
+ () => DeleteApplicationCloudWatchLoggingOptionResponse,
1096
+ ];
1097
+ var DeleteApplicationInputProcessingConfiguration = [
1098
+ 9,
1099
+ n0,
1100
+ _DAIPC,
1101
+ 0,
1102
+ () => DeleteApplicationInputProcessingConfigurationRequest,
1103
+ () => DeleteApplicationInputProcessingConfigurationResponse,
1104
+ ];
1105
+ var DeleteApplicationOutput = [
1106
+ 9,
1107
+ n0,
1108
+ _DAO,
1109
+ 0,
1110
+ () => DeleteApplicationOutputRequest,
1111
+ () => DeleteApplicationOutputResponse,
1112
+ ];
1113
+ var DeleteApplicationReferenceDataSource = [
1114
+ 9,
1115
+ n0,
1116
+ _DARDS,
1117
+ 0,
1118
+ () => DeleteApplicationReferenceDataSourceRequest,
1119
+ () => DeleteApplicationReferenceDataSourceResponse,
1120
+ ];
1121
+ var DescribeApplication = [
1122
+ 9,
1123
+ n0,
1124
+ _DAe,
1125
+ 0,
1126
+ () => DescribeApplicationRequest,
1127
+ () => DescribeApplicationResponse,
1128
+ ];
1129
+ var DiscoverInputSchema = [
1130
+ 9,
1131
+ n0,
1132
+ _DIS,
1133
+ 0,
1134
+ () => DiscoverInputSchemaRequest,
1135
+ () => DiscoverInputSchemaResponse,
1136
+ ];
1137
+ var ListApplications = [
1138
+ 9,
1139
+ n0,
1140
+ _LA,
1141
+ 0,
1142
+ () => ListApplicationsRequest,
1143
+ () => ListApplicationsResponse,
1144
+ ];
1145
+ var ListTagsForResource = [
1146
+ 9,
1147
+ n0,
1148
+ _LTFR,
1149
+ 0,
1150
+ () => ListTagsForResourceRequest,
1151
+ () => ListTagsForResourceResponse,
1152
+ ];
1153
+ var StartApplication = [
1154
+ 9,
1155
+ n0,
1156
+ _SA,
1157
+ 0,
1158
+ () => StartApplicationRequest,
1159
+ () => StartApplicationResponse,
1160
+ ];
1161
+ var StopApplication = [
1162
+ 9,
1163
+ n0,
1164
+ _SAt,
1165
+ 0,
1166
+ () => StopApplicationRequest,
1167
+ () => StopApplicationResponse,
1168
+ ];
1169
+ var TagResource = [9, n0, _TR, 0, () => TagResourceRequest, () => TagResourceResponse];
1170
+ var UntagResource = [
1171
+ 9,
1172
+ n0,
1173
+ _UR,
1174
+ 0,
1175
+ () => UntagResourceRequest,
1176
+ () => UntagResourceResponse,
1177
+ ];
1178
+ var UpdateApplication = [
1179
+ 9,
1180
+ n0,
1181
+ _UA,
1182
+ 0,
1183
+ () => UpdateApplicationRequest,
1184
+ () => UpdateApplicationResponse,
1185
+ ];
881
1186
 
882
1187
  class AddApplicationCloudWatchLoggingOptionCommand extends smithyClient.Command
883
1188
  .classBuilder()
884
1189
  .ep(commonParams)
885
1190
  .m(function (Command, cs, config, o) {
886
- return [
887
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
888
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
889
- ];
1191
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
890
1192
  })
891
1193
  .s("KinesisAnalytics_20150814", "AddApplicationCloudWatchLoggingOption", {})
892
1194
  .n("KinesisAnalyticsClient", "AddApplicationCloudWatchLoggingOptionCommand")
893
- .f(void 0, void 0)
894
- .ser(se_AddApplicationCloudWatchLoggingOptionCommand)
895
- .de(de_AddApplicationCloudWatchLoggingOptionCommand)
1195
+ .sc(AddApplicationCloudWatchLoggingOption)
896
1196
  .build() {
897
1197
  }
898
1198
 
@@ -900,16 +1200,11 @@ class AddApplicationInputCommand extends smithyClient.Command
900
1200
  .classBuilder()
901
1201
  .ep(commonParams)
902
1202
  .m(function (Command, cs, config, o) {
903
- return [
904
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
905
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
906
- ];
1203
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
907
1204
  })
908
1205
  .s("KinesisAnalytics_20150814", "AddApplicationInput", {})
909
1206
  .n("KinesisAnalyticsClient", "AddApplicationInputCommand")
910
- .f(void 0, void 0)
911
- .ser(se_AddApplicationInputCommand)
912
- .de(de_AddApplicationInputCommand)
1207
+ .sc(AddApplicationInput)
913
1208
  .build() {
914
1209
  }
915
1210
 
@@ -917,16 +1212,11 @@ class AddApplicationInputProcessingConfigurationCommand extends smithyClient.Com
917
1212
  .classBuilder()
918
1213
  .ep(commonParams)
919
1214
  .m(function (Command, cs, config, o) {
920
- return [
921
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
922
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
923
- ];
1215
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
924
1216
  })
925
1217
  .s("KinesisAnalytics_20150814", "AddApplicationInputProcessingConfiguration", {})
926
1218
  .n("KinesisAnalyticsClient", "AddApplicationInputProcessingConfigurationCommand")
927
- .f(void 0, void 0)
928
- .ser(se_AddApplicationInputProcessingConfigurationCommand)
929
- .de(de_AddApplicationInputProcessingConfigurationCommand)
1219
+ .sc(AddApplicationInputProcessingConfiguration)
930
1220
  .build() {
931
1221
  }
932
1222
 
@@ -934,16 +1224,11 @@ class AddApplicationOutputCommand extends smithyClient.Command
934
1224
  .classBuilder()
935
1225
  .ep(commonParams)
936
1226
  .m(function (Command, cs, config, o) {
937
- return [
938
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
939
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
940
- ];
1227
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
941
1228
  })
942
1229
  .s("KinesisAnalytics_20150814", "AddApplicationOutput", {})
943
1230
  .n("KinesisAnalyticsClient", "AddApplicationOutputCommand")
944
- .f(void 0, void 0)
945
- .ser(se_AddApplicationOutputCommand)
946
- .de(de_AddApplicationOutputCommand)
1231
+ .sc(AddApplicationOutput)
947
1232
  .build() {
948
1233
  }
949
1234
 
@@ -951,16 +1236,11 @@ class AddApplicationReferenceDataSourceCommand extends smithyClient.Command
951
1236
  .classBuilder()
952
1237
  .ep(commonParams)
953
1238
  .m(function (Command, cs, config, o) {
954
- return [
955
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
956
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
957
- ];
1239
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
958
1240
  })
959
1241
  .s("KinesisAnalytics_20150814", "AddApplicationReferenceDataSource", {})
960
1242
  .n("KinesisAnalyticsClient", "AddApplicationReferenceDataSourceCommand")
961
- .f(void 0, void 0)
962
- .ser(se_AddApplicationReferenceDataSourceCommand)
963
- .de(de_AddApplicationReferenceDataSourceCommand)
1243
+ .sc(AddApplicationReferenceDataSource)
964
1244
  .build() {
965
1245
  }
966
1246
 
@@ -968,16 +1248,11 @@ class CreateApplicationCommand extends smithyClient.Command
968
1248
  .classBuilder()
969
1249
  .ep(commonParams)
970
1250
  .m(function (Command, cs, config, o) {
971
- return [
972
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
973
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
974
- ];
1251
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
975
1252
  })
976
1253
  .s("KinesisAnalytics_20150814", "CreateApplication", {})
977
1254
  .n("KinesisAnalyticsClient", "CreateApplicationCommand")
978
- .f(void 0, void 0)
979
- .ser(se_CreateApplicationCommand)
980
- .de(de_CreateApplicationCommand)
1255
+ .sc(CreateApplication)
981
1256
  .build() {
982
1257
  }
983
1258
 
@@ -985,16 +1260,11 @@ class DeleteApplicationCloudWatchLoggingOptionCommand extends smithyClient.Comma
985
1260
  .classBuilder()
986
1261
  .ep(commonParams)
987
1262
  .m(function (Command, cs, config, o) {
988
- return [
989
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
990
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
991
- ];
1263
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
992
1264
  })
993
1265
  .s("KinesisAnalytics_20150814", "DeleteApplicationCloudWatchLoggingOption", {})
994
1266
  .n("KinesisAnalyticsClient", "DeleteApplicationCloudWatchLoggingOptionCommand")
995
- .f(void 0, void 0)
996
- .ser(se_DeleteApplicationCloudWatchLoggingOptionCommand)
997
- .de(de_DeleteApplicationCloudWatchLoggingOptionCommand)
1267
+ .sc(DeleteApplicationCloudWatchLoggingOption)
998
1268
  .build() {
999
1269
  }
1000
1270
 
@@ -1002,16 +1272,11 @@ class DeleteApplicationCommand extends smithyClient.Command
1002
1272
  .classBuilder()
1003
1273
  .ep(commonParams)
1004
1274
  .m(function (Command, cs, config, o) {
1005
- return [
1006
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1007
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1008
- ];
1275
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1009
1276
  })
1010
1277
  .s("KinesisAnalytics_20150814", "DeleteApplication", {})
1011
1278
  .n("KinesisAnalyticsClient", "DeleteApplicationCommand")
1012
- .f(void 0, void 0)
1013
- .ser(se_DeleteApplicationCommand)
1014
- .de(de_DeleteApplicationCommand)
1279
+ .sc(DeleteApplication)
1015
1280
  .build() {
1016
1281
  }
1017
1282
 
@@ -1019,16 +1284,11 @@ class DeleteApplicationInputProcessingConfigurationCommand extends smithyClient.
1019
1284
  .classBuilder()
1020
1285
  .ep(commonParams)
1021
1286
  .m(function (Command, cs, config, o) {
1022
- return [
1023
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1024
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1025
- ];
1287
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1026
1288
  })
1027
1289
  .s("KinesisAnalytics_20150814", "DeleteApplicationInputProcessingConfiguration", {})
1028
1290
  .n("KinesisAnalyticsClient", "DeleteApplicationInputProcessingConfigurationCommand")
1029
- .f(void 0, void 0)
1030
- .ser(se_DeleteApplicationInputProcessingConfigurationCommand)
1031
- .de(de_DeleteApplicationInputProcessingConfigurationCommand)
1291
+ .sc(DeleteApplicationInputProcessingConfiguration)
1032
1292
  .build() {
1033
1293
  }
1034
1294
 
@@ -1036,16 +1296,11 @@ class DeleteApplicationOutputCommand extends smithyClient.Command
1036
1296
  .classBuilder()
1037
1297
  .ep(commonParams)
1038
1298
  .m(function (Command, cs, config, o) {
1039
- return [
1040
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1041
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1042
- ];
1299
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1043
1300
  })
1044
1301
  .s("KinesisAnalytics_20150814", "DeleteApplicationOutput", {})
1045
1302
  .n("KinesisAnalyticsClient", "DeleteApplicationOutputCommand")
1046
- .f(void 0, void 0)
1047
- .ser(se_DeleteApplicationOutputCommand)
1048
- .de(de_DeleteApplicationOutputCommand)
1303
+ .sc(DeleteApplicationOutput)
1049
1304
  .build() {
1050
1305
  }
1051
1306
 
@@ -1053,16 +1308,11 @@ class DeleteApplicationReferenceDataSourceCommand extends smithyClient.Command
1053
1308
  .classBuilder()
1054
1309
  .ep(commonParams)
1055
1310
  .m(function (Command, cs, config, o) {
1056
- return [
1057
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1058
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1059
- ];
1311
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1060
1312
  })
1061
1313
  .s("KinesisAnalytics_20150814", "DeleteApplicationReferenceDataSource", {})
1062
1314
  .n("KinesisAnalyticsClient", "DeleteApplicationReferenceDataSourceCommand")
1063
- .f(void 0, void 0)
1064
- .ser(se_DeleteApplicationReferenceDataSourceCommand)
1065
- .de(de_DeleteApplicationReferenceDataSourceCommand)
1315
+ .sc(DeleteApplicationReferenceDataSource)
1066
1316
  .build() {
1067
1317
  }
1068
1318
 
@@ -1070,16 +1320,11 @@ class DescribeApplicationCommand extends smithyClient.Command
1070
1320
  .classBuilder()
1071
1321
  .ep(commonParams)
1072
1322
  .m(function (Command, cs, config, o) {
1073
- return [
1074
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1075
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1076
- ];
1323
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1077
1324
  })
1078
1325
  .s("KinesisAnalytics_20150814", "DescribeApplication", {})
1079
1326
  .n("KinesisAnalyticsClient", "DescribeApplicationCommand")
1080
- .f(void 0, void 0)
1081
- .ser(se_DescribeApplicationCommand)
1082
- .de(de_DescribeApplicationCommand)
1327
+ .sc(DescribeApplication)
1083
1328
  .build() {
1084
1329
  }
1085
1330
 
@@ -1087,16 +1332,11 @@ class DiscoverInputSchemaCommand extends smithyClient.Command
1087
1332
  .classBuilder()
1088
1333
  .ep(commonParams)
1089
1334
  .m(function (Command, cs, config, o) {
1090
- return [
1091
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1092
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1093
- ];
1335
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1094
1336
  })
1095
1337
  .s("KinesisAnalytics_20150814", "DiscoverInputSchema", {})
1096
1338
  .n("KinesisAnalyticsClient", "DiscoverInputSchemaCommand")
1097
- .f(void 0, void 0)
1098
- .ser(se_DiscoverInputSchemaCommand)
1099
- .de(de_DiscoverInputSchemaCommand)
1339
+ .sc(DiscoverInputSchema)
1100
1340
  .build() {
1101
1341
  }
1102
1342
 
@@ -1104,16 +1344,11 @@ class ListApplicationsCommand extends smithyClient.Command
1104
1344
  .classBuilder()
1105
1345
  .ep(commonParams)
1106
1346
  .m(function (Command, cs, config, o) {
1107
- return [
1108
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1109
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1110
- ];
1347
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1111
1348
  })
1112
1349
  .s("KinesisAnalytics_20150814", "ListApplications", {})
1113
1350
  .n("KinesisAnalyticsClient", "ListApplicationsCommand")
1114
- .f(void 0, void 0)
1115
- .ser(se_ListApplicationsCommand)
1116
- .de(de_ListApplicationsCommand)
1351
+ .sc(ListApplications)
1117
1352
  .build() {
1118
1353
  }
1119
1354
 
@@ -1121,16 +1356,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
1121
1356
  .classBuilder()
1122
1357
  .ep(commonParams)
1123
1358
  .m(function (Command, cs, config, o) {
1124
- return [
1125
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1126
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1127
- ];
1359
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1128
1360
  })
1129
1361
  .s("KinesisAnalytics_20150814", "ListTagsForResource", {})
1130
1362
  .n("KinesisAnalyticsClient", "ListTagsForResourceCommand")
1131
- .f(void 0, void 0)
1132
- .ser(se_ListTagsForResourceCommand)
1133
- .de(de_ListTagsForResourceCommand)
1363
+ .sc(ListTagsForResource)
1134
1364
  .build() {
1135
1365
  }
1136
1366
 
@@ -1138,16 +1368,11 @@ class StartApplicationCommand extends smithyClient.Command
1138
1368
  .classBuilder()
1139
1369
  .ep(commonParams)
1140
1370
  .m(function (Command, cs, config, o) {
1141
- return [
1142
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1143
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1144
- ];
1371
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1145
1372
  })
1146
1373
  .s("KinesisAnalytics_20150814", "StartApplication", {})
1147
1374
  .n("KinesisAnalyticsClient", "StartApplicationCommand")
1148
- .f(void 0, void 0)
1149
- .ser(se_StartApplicationCommand)
1150
- .de(de_StartApplicationCommand)
1375
+ .sc(StartApplication)
1151
1376
  .build() {
1152
1377
  }
1153
1378
 
@@ -1155,16 +1380,11 @@ class StopApplicationCommand extends smithyClient.Command
1155
1380
  .classBuilder()
1156
1381
  .ep(commonParams)
1157
1382
  .m(function (Command, cs, config, o) {
1158
- return [
1159
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1160
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1161
- ];
1383
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1162
1384
  })
1163
1385
  .s("KinesisAnalytics_20150814", "StopApplication", {})
1164
1386
  .n("KinesisAnalyticsClient", "StopApplicationCommand")
1165
- .f(void 0, void 0)
1166
- .ser(se_StopApplicationCommand)
1167
- .de(de_StopApplicationCommand)
1387
+ .sc(StopApplication)
1168
1388
  .build() {
1169
1389
  }
1170
1390
 
@@ -1172,16 +1392,11 @@ class TagResourceCommand extends smithyClient.Command
1172
1392
  .classBuilder()
1173
1393
  .ep(commonParams)
1174
1394
  .m(function (Command, cs, config, o) {
1175
- return [
1176
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1177
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1178
- ];
1395
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1179
1396
  })
1180
1397
  .s("KinesisAnalytics_20150814", "TagResource", {})
1181
1398
  .n("KinesisAnalyticsClient", "TagResourceCommand")
1182
- .f(void 0, void 0)
1183
- .ser(se_TagResourceCommand)
1184
- .de(de_TagResourceCommand)
1399
+ .sc(TagResource)
1185
1400
  .build() {
1186
1401
  }
1187
1402
 
@@ -1189,16 +1404,11 @@ class UntagResourceCommand extends smithyClient.Command
1189
1404
  .classBuilder()
1190
1405
  .ep(commonParams)
1191
1406
  .m(function (Command, cs, config, o) {
1192
- return [
1193
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1194
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1195
- ];
1407
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1196
1408
  })
1197
1409
  .s("KinesisAnalytics_20150814", "UntagResource", {})
1198
1410
  .n("KinesisAnalyticsClient", "UntagResourceCommand")
1199
- .f(void 0, void 0)
1200
- .ser(se_UntagResourceCommand)
1201
- .de(de_UntagResourceCommand)
1411
+ .sc(UntagResource)
1202
1412
  .build() {
1203
1413
  }
1204
1414
 
@@ -1206,16 +1416,11 @@ class UpdateApplicationCommand extends smithyClient.Command
1206
1416
  .classBuilder()
1207
1417
  .ep(commonParams)
1208
1418
  .m(function (Command, cs, config, o) {
1209
- return [
1210
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1211
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1212
- ];
1419
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1213
1420
  })
1214
1421
  .s("KinesisAnalytics_20150814", "UpdateApplication", {})
1215
1422
  .n("KinesisAnalyticsClient", "UpdateApplicationCommand")
1216
- .f(void 0, void 0)
1217
- .ser(se_UpdateApplicationCommand)
1218
- .de(de_UpdateApplicationCommand)
1423
+ .sc(UpdateApplication)
1219
1424
  .build() {
1220
1425
  }
1221
1426
 
@@ -1259,8 +1464,8 @@ exports.AddApplicationInputProcessingConfigurationCommand = AddApplicationInputP
1259
1464
  exports.AddApplicationOutputCommand = AddApplicationOutputCommand;
1260
1465
  exports.AddApplicationReferenceDataSourceCommand = AddApplicationReferenceDataSourceCommand;
1261
1466
  exports.ApplicationStatus = ApplicationStatus;
1262
- exports.CodeValidationException = CodeValidationException;
1263
- exports.ConcurrentModificationException = ConcurrentModificationException;
1467
+ exports.CodeValidationException = CodeValidationException$1;
1468
+ exports.ConcurrentModificationException = ConcurrentModificationException$1;
1264
1469
  exports.CreateApplicationCommand = CreateApplicationCommand;
1265
1470
  exports.DeleteApplicationCloudWatchLoggingOptionCommand = DeleteApplicationCloudWatchLoggingOptionCommand;
1266
1471
  exports.DeleteApplicationCommand = DeleteApplicationCommand;
@@ -1270,24 +1475,24 @@ exports.DeleteApplicationReferenceDataSourceCommand = DeleteApplicationReference
1270
1475
  exports.DescribeApplicationCommand = DescribeApplicationCommand;
1271
1476
  exports.DiscoverInputSchemaCommand = DiscoverInputSchemaCommand;
1272
1477
  exports.InputStartingPosition = InputStartingPosition;
1273
- exports.InvalidApplicationConfigurationException = InvalidApplicationConfigurationException;
1274
- exports.InvalidArgumentException = InvalidArgumentException;
1478
+ exports.InvalidApplicationConfigurationException = InvalidApplicationConfigurationException$1;
1479
+ exports.InvalidArgumentException = InvalidArgumentException$1;
1275
1480
  exports.KinesisAnalytics = KinesisAnalytics;
1276
1481
  exports.KinesisAnalyticsClient = KinesisAnalyticsClient;
1277
- exports.KinesisAnalyticsServiceException = KinesisAnalyticsServiceException;
1278
- exports.LimitExceededException = LimitExceededException;
1482
+ exports.KinesisAnalyticsServiceException = KinesisAnalyticsServiceException$1;
1483
+ exports.LimitExceededException = LimitExceededException$1;
1279
1484
  exports.ListApplicationsCommand = ListApplicationsCommand;
1280
1485
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1281
1486
  exports.RecordFormatType = RecordFormatType;
1282
- exports.ResourceInUseException = ResourceInUseException;
1283
- exports.ResourceNotFoundException = ResourceNotFoundException;
1284
- exports.ResourceProvisionedThroughputExceededException = ResourceProvisionedThroughputExceededException;
1285
- exports.ServiceUnavailableException = ServiceUnavailableException;
1487
+ exports.ResourceInUseException = ResourceInUseException$1;
1488
+ exports.ResourceNotFoundException = ResourceNotFoundException$1;
1489
+ exports.ResourceProvisionedThroughputExceededException = ResourceProvisionedThroughputExceededException$1;
1490
+ exports.ServiceUnavailableException = ServiceUnavailableException$1;
1286
1491
  exports.StartApplicationCommand = StartApplicationCommand;
1287
1492
  exports.StopApplicationCommand = StopApplicationCommand;
1288
1493
  exports.TagResourceCommand = TagResourceCommand;
1289
- exports.TooManyTagsException = TooManyTagsException;
1290
- exports.UnableToDetectSchemaException = UnableToDetectSchemaException;
1291
- exports.UnsupportedOperationException = UnsupportedOperationException;
1494
+ exports.TooManyTagsException = TooManyTagsException$1;
1495
+ exports.UnableToDetectSchemaException = UnableToDetectSchemaException$1;
1496
+ exports.UnsupportedOperationException = UnsupportedOperationException$1;
1292
1497
  exports.UntagResourceCommand = UntagResourceCommand;
1293
1498
  exports.UpdateApplicationCommand = UpdateApplicationCommand;