@aws-sdk/client-kinesis-analytics-v2 3.716.0 → 3.723.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 +249 -174
- package/dist-es/KinesisAnalyticsV2Client.js +1 -0
- package/dist-es/models/models_0.js +40 -26
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -188,7 +188,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
188
188
|
}, "resolveRuntimeExtensions");
|
|
189
189
|
|
|
190
190
|
// src/KinesisAnalyticsV2Client.ts
|
|
191
|
-
var
|
|
191
|
+
var KinesisAnalyticsV2Client = class extends import_smithy_client.Client {
|
|
192
|
+
static {
|
|
193
|
+
__name(this, "KinesisAnalyticsV2Client");
|
|
194
|
+
}
|
|
195
|
+
/**
|
|
196
|
+
* The resolved configuration of KinesisAnalyticsV2Client class. This is resolved and normalized from the {@link KinesisAnalyticsV2ClientConfig | constructor configuration interface}.
|
|
197
|
+
*/
|
|
198
|
+
config;
|
|
192
199
|
constructor(...[configuration]) {
|
|
193
200
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
194
201
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -198,7 +205,7 @@ var _KinesisAnalyticsV2Client = class _KinesisAnalyticsV2Client extends import_s
|
|
|
198
205
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
199
206
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
200
207
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
201
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
208
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
202
209
|
super(_config_8);
|
|
203
210
|
this.config = _config_8;
|
|
204
211
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -226,8 +233,6 @@ var _KinesisAnalyticsV2Client = class _KinesisAnalyticsV2Client extends import_s
|
|
|
226
233
|
super.destroy();
|
|
227
234
|
}
|
|
228
235
|
};
|
|
229
|
-
__name(_KinesisAnalyticsV2Client, "KinesisAnalyticsV2Client");
|
|
230
|
-
var KinesisAnalyticsV2Client = _KinesisAnalyticsV2Client;
|
|
231
236
|
|
|
232
237
|
// src/KinesisAnalyticsV2.ts
|
|
233
238
|
|
|
@@ -244,7 +249,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
244
249
|
|
|
245
250
|
// src/models/KinesisAnalyticsV2ServiceException.ts
|
|
246
251
|
|
|
247
|
-
var
|
|
252
|
+
var KinesisAnalyticsV2ServiceException = class _KinesisAnalyticsV2ServiceException extends import_smithy_client.ServiceException {
|
|
253
|
+
static {
|
|
254
|
+
__name(this, "KinesisAnalyticsV2ServiceException");
|
|
255
|
+
}
|
|
248
256
|
/**
|
|
249
257
|
* @internal
|
|
250
258
|
*/
|
|
@@ -253,11 +261,15 @@ var _KinesisAnalyticsV2ServiceException = class _KinesisAnalyticsV2ServiceExcept
|
|
|
253
261
|
Object.setPrototypeOf(this, _KinesisAnalyticsV2ServiceException.prototype);
|
|
254
262
|
}
|
|
255
263
|
};
|
|
256
|
-
__name(_KinesisAnalyticsV2ServiceException, "KinesisAnalyticsV2ServiceException");
|
|
257
|
-
var KinesisAnalyticsV2ServiceException = _KinesisAnalyticsV2ServiceException;
|
|
258
264
|
|
|
259
265
|
// src/models/models_0.ts
|
|
260
|
-
var
|
|
266
|
+
var ConcurrentModificationException = class _ConcurrentModificationException extends KinesisAnalyticsV2ServiceException {
|
|
267
|
+
static {
|
|
268
|
+
__name(this, "ConcurrentModificationException");
|
|
269
|
+
}
|
|
270
|
+
name = "ConcurrentModificationException";
|
|
271
|
+
$fault = "client";
|
|
272
|
+
Message;
|
|
261
273
|
/**
|
|
262
274
|
* @internal
|
|
263
275
|
*/
|
|
@@ -267,15 +279,17 @@ var _ConcurrentModificationException = class _ConcurrentModificationException ex
|
|
|
267
279
|
$fault: "client",
|
|
268
280
|
...opts
|
|
269
281
|
});
|
|
270
|
-
this.name = "ConcurrentModificationException";
|
|
271
|
-
this.$fault = "client";
|
|
272
282
|
Object.setPrototypeOf(this, _ConcurrentModificationException.prototype);
|
|
273
283
|
this.Message = opts.Message;
|
|
274
284
|
}
|
|
275
285
|
};
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
286
|
+
var InvalidApplicationConfigurationException = class _InvalidApplicationConfigurationException extends KinesisAnalyticsV2ServiceException {
|
|
287
|
+
static {
|
|
288
|
+
__name(this, "InvalidApplicationConfigurationException");
|
|
289
|
+
}
|
|
290
|
+
name = "InvalidApplicationConfigurationException";
|
|
291
|
+
$fault = "client";
|
|
292
|
+
Message;
|
|
279
293
|
/**
|
|
280
294
|
* @internal
|
|
281
295
|
*/
|
|
@@ -285,15 +299,17 @@ var _InvalidApplicationConfigurationException = class _InvalidApplicationConfigu
|
|
|
285
299
|
$fault: "client",
|
|
286
300
|
...opts
|
|
287
301
|
});
|
|
288
|
-
this.name = "InvalidApplicationConfigurationException";
|
|
289
|
-
this.$fault = "client";
|
|
290
302
|
Object.setPrototypeOf(this, _InvalidApplicationConfigurationException.prototype);
|
|
291
303
|
this.Message = opts.Message;
|
|
292
304
|
}
|
|
293
305
|
};
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
306
|
+
var InvalidArgumentException = class _InvalidArgumentException extends KinesisAnalyticsV2ServiceException {
|
|
307
|
+
static {
|
|
308
|
+
__name(this, "InvalidArgumentException");
|
|
309
|
+
}
|
|
310
|
+
name = "InvalidArgumentException";
|
|
311
|
+
$fault = "client";
|
|
312
|
+
Message;
|
|
297
313
|
/**
|
|
298
314
|
* @internal
|
|
299
315
|
*/
|
|
@@ -303,15 +319,17 @@ var _InvalidArgumentException = class _InvalidArgumentException extends KinesisA
|
|
|
303
319
|
$fault: "client",
|
|
304
320
|
...opts
|
|
305
321
|
});
|
|
306
|
-
this.name = "InvalidArgumentException";
|
|
307
|
-
this.$fault = "client";
|
|
308
322
|
Object.setPrototypeOf(this, _InvalidArgumentException.prototype);
|
|
309
323
|
this.Message = opts.Message;
|
|
310
324
|
}
|
|
311
325
|
};
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
326
|
+
var InvalidRequestException = class _InvalidRequestException extends KinesisAnalyticsV2ServiceException {
|
|
327
|
+
static {
|
|
328
|
+
__name(this, "InvalidRequestException");
|
|
329
|
+
}
|
|
330
|
+
name = "InvalidRequestException";
|
|
331
|
+
$fault = "client";
|
|
332
|
+
Message;
|
|
315
333
|
/**
|
|
316
334
|
* @internal
|
|
317
335
|
*/
|
|
@@ -321,15 +339,17 @@ var _InvalidRequestException = class _InvalidRequestException extends KinesisAna
|
|
|
321
339
|
$fault: "client",
|
|
322
340
|
...opts
|
|
323
341
|
});
|
|
324
|
-
this.name = "InvalidRequestException";
|
|
325
|
-
this.$fault = "client";
|
|
326
342
|
Object.setPrototypeOf(this, _InvalidRequestException.prototype);
|
|
327
343
|
this.Message = opts.Message;
|
|
328
344
|
}
|
|
329
345
|
};
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
346
|
+
var ResourceInUseException = class _ResourceInUseException extends KinesisAnalyticsV2ServiceException {
|
|
347
|
+
static {
|
|
348
|
+
__name(this, "ResourceInUseException");
|
|
349
|
+
}
|
|
350
|
+
name = "ResourceInUseException";
|
|
351
|
+
$fault = "client";
|
|
352
|
+
Message;
|
|
333
353
|
/**
|
|
334
354
|
* @internal
|
|
335
355
|
*/
|
|
@@ -339,15 +359,17 @@ var _ResourceInUseException = class _ResourceInUseException extends KinesisAnaly
|
|
|
339
359
|
$fault: "client",
|
|
340
360
|
...opts
|
|
341
361
|
});
|
|
342
|
-
this.name = "ResourceInUseException";
|
|
343
|
-
this.$fault = "client";
|
|
344
362
|
Object.setPrototypeOf(this, _ResourceInUseException.prototype);
|
|
345
363
|
this.Message = opts.Message;
|
|
346
364
|
}
|
|
347
365
|
};
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
366
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends KinesisAnalyticsV2ServiceException {
|
|
367
|
+
static {
|
|
368
|
+
__name(this, "ResourceNotFoundException");
|
|
369
|
+
}
|
|
370
|
+
name = "ResourceNotFoundException";
|
|
371
|
+
$fault = "client";
|
|
372
|
+
Message;
|
|
351
373
|
/**
|
|
352
374
|
* @internal
|
|
353
375
|
*/
|
|
@@ -357,14 +379,10 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Kinesi
|
|
|
357
379
|
$fault: "client",
|
|
358
380
|
...opts
|
|
359
381
|
});
|
|
360
|
-
this.name = "ResourceNotFoundException";
|
|
361
|
-
this.$fault = "client";
|
|
362
382
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
363
383
|
this.Message = opts.Message;
|
|
364
384
|
}
|
|
365
385
|
};
|
|
366
|
-
__name(_ResourceNotFoundException, "ResourceNotFoundException");
|
|
367
|
-
var ResourceNotFoundException = _ResourceNotFoundException;
|
|
368
386
|
var RecordFormatType = {
|
|
369
387
|
CSV: "CSV",
|
|
370
388
|
JSON: "JSON"
|
|
@@ -374,7 +392,13 @@ var InputStartingPosition = {
|
|
|
374
392
|
NOW: "NOW",
|
|
375
393
|
TRIM_HORIZON: "TRIM_HORIZON"
|
|
376
394
|
};
|
|
377
|
-
var
|
|
395
|
+
var CodeValidationException = class _CodeValidationException extends KinesisAnalyticsV2ServiceException {
|
|
396
|
+
static {
|
|
397
|
+
__name(this, "CodeValidationException");
|
|
398
|
+
}
|
|
399
|
+
name = "CodeValidationException";
|
|
400
|
+
$fault = "client";
|
|
401
|
+
Message;
|
|
378
402
|
/**
|
|
379
403
|
* @internal
|
|
380
404
|
*/
|
|
@@ -384,14 +408,10 @@ var _CodeValidationException = class _CodeValidationException extends KinesisAna
|
|
|
384
408
|
$fault: "client",
|
|
385
409
|
...opts
|
|
386
410
|
});
|
|
387
|
-
this.name = "CodeValidationException";
|
|
388
|
-
this.$fault = "client";
|
|
389
411
|
Object.setPrototypeOf(this, _CodeValidationException.prototype);
|
|
390
412
|
this.Message = opts.Message;
|
|
391
413
|
}
|
|
392
414
|
};
|
|
393
|
-
__name(_CodeValidationException, "CodeValidationException");
|
|
394
|
-
var CodeValidationException = _CodeValidationException;
|
|
395
415
|
var CodeContentType = {
|
|
396
416
|
PLAINTEXT: "PLAINTEXT",
|
|
397
417
|
ZIPFILE: "ZIPFILE"
|
|
@@ -458,7 +478,13 @@ var OperationStatus = {
|
|
|
458
478
|
IN_PROGRESS: "IN_PROGRESS",
|
|
459
479
|
SUCCESSFUL: "SUCCESSFUL"
|
|
460
480
|
};
|
|
461
|
-
var
|
|
481
|
+
var LimitExceededException = class _LimitExceededException extends KinesisAnalyticsV2ServiceException {
|
|
482
|
+
static {
|
|
483
|
+
__name(this, "LimitExceededException");
|
|
484
|
+
}
|
|
485
|
+
name = "LimitExceededException";
|
|
486
|
+
$fault = "client";
|
|
487
|
+
Message;
|
|
462
488
|
/**
|
|
463
489
|
* @internal
|
|
464
490
|
*/
|
|
@@ -468,15 +494,16 @@ var _LimitExceededException = class _LimitExceededException extends KinesisAnaly
|
|
|
468
494
|
$fault: "client",
|
|
469
495
|
...opts
|
|
470
496
|
});
|
|
471
|
-
this.name = "LimitExceededException";
|
|
472
|
-
this.$fault = "client";
|
|
473
497
|
Object.setPrototypeOf(this, _LimitExceededException.prototype);
|
|
474
498
|
this.Message = opts.Message;
|
|
475
499
|
}
|
|
476
500
|
};
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
501
|
+
var TooManyTagsException = class _TooManyTagsException extends KinesisAnalyticsV2ServiceException {
|
|
502
|
+
static {
|
|
503
|
+
__name(this, "TooManyTagsException");
|
|
504
|
+
}
|
|
505
|
+
name = "TooManyTagsException";
|
|
506
|
+
$fault = "client";
|
|
480
507
|
/**
|
|
481
508
|
* @internal
|
|
482
509
|
*/
|
|
@@ -486,14 +513,16 @@ var _TooManyTagsException = class _TooManyTagsException extends KinesisAnalytics
|
|
|
486
513
|
$fault: "client",
|
|
487
514
|
...opts
|
|
488
515
|
});
|
|
489
|
-
this.name = "TooManyTagsException";
|
|
490
|
-
this.$fault = "client";
|
|
491
516
|
Object.setPrototypeOf(this, _TooManyTagsException.prototype);
|
|
492
517
|
}
|
|
493
518
|
};
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
519
|
+
var UnsupportedOperationException = class _UnsupportedOperationException extends KinesisAnalyticsV2ServiceException {
|
|
520
|
+
static {
|
|
521
|
+
__name(this, "UnsupportedOperationException");
|
|
522
|
+
}
|
|
523
|
+
name = "UnsupportedOperationException";
|
|
524
|
+
$fault = "client";
|
|
525
|
+
Message;
|
|
497
526
|
/**
|
|
498
527
|
* @internal
|
|
499
528
|
*/
|
|
@@ -503,14 +532,10 @@ var _UnsupportedOperationException = class _UnsupportedOperationException extend
|
|
|
503
532
|
$fault: "client",
|
|
504
533
|
...opts
|
|
505
534
|
});
|
|
506
|
-
this.name = "UnsupportedOperationException";
|
|
507
|
-
this.$fault = "client";
|
|
508
535
|
Object.setPrototypeOf(this, _UnsupportedOperationException.prototype);
|
|
509
536
|
this.Message = opts.Message;
|
|
510
537
|
}
|
|
511
538
|
};
|
|
512
|
-
__name(_UnsupportedOperationException, "UnsupportedOperationException");
|
|
513
|
-
var UnsupportedOperationException = _UnsupportedOperationException;
|
|
514
539
|
var UrlType = {
|
|
515
540
|
FLINK_DASHBOARD_URL: "FLINK_DASHBOARD_URL",
|
|
516
541
|
ZEPPELIN_UI_URL: "ZEPPELIN_UI_URL"
|
|
@@ -521,7 +546,13 @@ var SnapshotStatus = {
|
|
|
521
546
|
FAILED: "FAILED",
|
|
522
547
|
READY: "READY"
|
|
523
548
|
};
|
|
524
|
-
var
|
|
549
|
+
var ResourceProvisionedThroughputExceededException = class _ResourceProvisionedThroughputExceededException extends KinesisAnalyticsV2ServiceException {
|
|
550
|
+
static {
|
|
551
|
+
__name(this, "ResourceProvisionedThroughputExceededException");
|
|
552
|
+
}
|
|
553
|
+
name = "ResourceProvisionedThroughputExceededException";
|
|
554
|
+
$fault = "client";
|
|
555
|
+
Message;
|
|
525
556
|
/**
|
|
526
557
|
* @internal
|
|
527
558
|
*/
|
|
@@ -531,15 +562,17 @@ var _ResourceProvisionedThroughputExceededException = class _ResourceProvisioned
|
|
|
531
562
|
$fault: "client",
|
|
532
563
|
...opts
|
|
533
564
|
});
|
|
534
|
-
this.name = "ResourceProvisionedThroughputExceededException";
|
|
535
|
-
this.$fault = "client";
|
|
536
565
|
Object.setPrototypeOf(this, _ResourceProvisionedThroughputExceededException.prototype);
|
|
537
566
|
this.Message = opts.Message;
|
|
538
567
|
}
|
|
539
568
|
};
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
569
|
+
var ServiceUnavailableException = class _ServiceUnavailableException extends KinesisAnalyticsV2ServiceException {
|
|
570
|
+
static {
|
|
571
|
+
__name(this, "ServiceUnavailableException");
|
|
572
|
+
}
|
|
573
|
+
name = "ServiceUnavailableException";
|
|
574
|
+
$fault = "server";
|
|
575
|
+
Message;
|
|
543
576
|
/**
|
|
544
577
|
* @internal
|
|
545
578
|
*/
|
|
@@ -549,15 +582,27 @@ var _ServiceUnavailableException = class _ServiceUnavailableException extends Ki
|
|
|
549
582
|
$fault: "server",
|
|
550
583
|
...opts
|
|
551
584
|
});
|
|
552
|
-
this.name = "ServiceUnavailableException";
|
|
553
|
-
this.$fault = "server";
|
|
554
585
|
Object.setPrototypeOf(this, _ServiceUnavailableException.prototype);
|
|
555
586
|
this.Message = opts.Message;
|
|
556
587
|
}
|
|
557
588
|
};
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
589
|
+
var UnableToDetectSchemaException = class _UnableToDetectSchemaException extends KinesisAnalyticsV2ServiceException {
|
|
590
|
+
static {
|
|
591
|
+
__name(this, "UnableToDetectSchemaException");
|
|
592
|
+
}
|
|
593
|
+
name = "UnableToDetectSchemaException";
|
|
594
|
+
$fault = "client";
|
|
595
|
+
Message;
|
|
596
|
+
/**
|
|
597
|
+
* <p>Raw stream data that was sampled to infer the schema.</p>
|
|
598
|
+
* @public
|
|
599
|
+
*/
|
|
600
|
+
RawInputRecords;
|
|
601
|
+
/**
|
|
602
|
+
* <p>Stream data that was modified by the processor specified in the <code>InputProcessingConfiguration</code> parameter. </p>
|
|
603
|
+
* @public
|
|
604
|
+
*/
|
|
605
|
+
ProcessedInputRecords;
|
|
561
606
|
/**
|
|
562
607
|
* @internal
|
|
563
608
|
*/
|
|
@@ -567,16 +612,12 @@ var _UnableToDetectSchemaException = class _UnableToDetectSchemaException extend
|
|
|
567
612
|
$fault: "client",
|
|
568
613
|
...opts
|
|
569
614
|
});
|
|
570
|
-
this.name = "UnableToDetectSchemaException";
|
|
571
|
-
this.$fault = "client";
|
|
572
615
|
Object.setPrototypeOf(this, _UnableToDetectSchemaException.prototype);
|
|
573
616
|
this.Message = opts.Message;
|
|
574
617
|
this.RawInputRecords = opts.RawInputRecords;
|
|
575
618
|
this.ProcessedInputRecords = opts.ProcessedInputRecords;
|
|
576
619
|
}
|
|
577
620
|
};
|
|
578
|
-
__name(_UnableToDetectSchemaException, "UnableToDetectSchemaException");
|
|
579
|
-
var UnableToDetectSchemaException = _UnableToDetectSchemaException;
|
|
580
621
|
|
|
581
622
|
// src/protocols/Aws_json1_1.ts
|
|
582
623
|
var se_AddApplicationCloudWatchLoggingOptionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
@@ -1610,463 +1651,496 @@ function sharedHeaders(operation) {
|
|
|
1610
1651
|
__name(sharedHeaders, "sharedHeaders");
|
|
1611
1652
|
|
|
1612
1653
|
// src/commands/AddApplicationCloudWatchLoggingOptionCommand.ts
|
|
1613
|
-
var
|
|
1654
|
+
var AddApplicationCloudWatchLoggingOptionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1614
1655
|
return [
|
|
1615
1656
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1616
1657
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1617
1658
|
];
|
|
1618
1659
|
}).s("KinesisAnalytics_20180523", "AddApplicationCloudWatchLoggingOption", {}).n("KinesisAnalyticsV2Client", "AddApplicationCloudWatchLoggingOptionCommand").f(void 0, void 0).ser(se_AddApplicationCloudWatchLoggingOptionCommand).de(de_AddApplicationCloudWatchLoggingOptionCommand).build() {
|
|
1660
|
+
static {
|
|
1661
|
+
__name(this, "AddApplicationCloudWatchLoggingOptionCommand");
|
|
1662
|
+
}
|
|
1619
1663
|
};
|
|
1620
|
-
__name(_AddApplicationCloudWatchLoggingOptionCommand, "AddApplicationCloudWatchLoggingOptionCommand");
|
|
1621
|
-
var AddApplicationCloudWatchLoggingOptionCommand = _AddApplicationCloudWatchLoggingOptionCommand;
|
|
1622
1664
|
|
|
1623
1665
|
// src/commands/AddApplicationInputCommand.ts
|
|
1624
1666
|
|
|
1625
1667
|
|
|
1626
1668
|
|
|
1627
|
-
var
|
|
1669
|
+
var AddApplicationInputCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1628
1670
|
return [
|
|
1629
1671
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1630
1672
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1631
1673
|
];
|
|
1632
1674
|
}).s("KinesisAnalytics_20180523", "AddApplicationInput", {}).n("KinesisAnalyticsV2Client", "AddApplicationInputCommand").f(void 0, void 0).ser(se_AddApplicationInputCommand).de(de_AddApplicationInputCommand).build() {
|
|
1675
|
+
static {
|
|
1676
|
+
__name(this, "AddApplicationInputCommand");
|
|
1677
|
+
}
|
|
1633
1678
|
};
|
|
1634
|
-
__name(_AddApplicationInputCommand, "AddApplicationInputCommand");
|
|
1635
|
-
var AddApplicationInputCommand = _AddApplicationInputCommand;
|
|
1636
1679
|
|
|
1637
1680
|
// src/commands/AddApplicationInputProcessingConfigurationCommand.ts
|
|
1638
1681
|
|
|
1639
1682
|
|
|
1640
1683
|
|
|
1641
|
-
var
|
|
1684
|
+
var AddApplicationInputProcessingConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1642
1685
|
return [
|
|
1643
1686
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1644
1687
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1645
1688
|
];
|
|
1646
1689
|
}).s("KinesisAnalytics_20180523", "AddApplicationInputProcessingConfiguration", {}).n("KinesisAnalyticsV2Client", "AddApplicationInputProcessingConfigurationCommand").f(void 0, void 0).ser(se_AddApplicationInputProcessingConfigurationCommand).de(de_AddApplicationInputProcessingConfigurationCommand).build() {
|
|
1690
|
+
static {
|
|
1691
|
+
__name(this, "AddApplicationInputProcessingConfigurationCommand");
|
|
1692
|
+
}
|
|
1647
1693
|
};
|
|
1648
|
-
__name(_AddApplicationInputProcessingConfigurationCommand, "AddApplicationInputProcessingConfigurationCommand");
|
|
1649
|
-
var AddApplicationInputProcessingConfigurationCommand = _AddApplicationInputProcessingConfigurationCommand;
|
|
1650
1694
|
|
|
1651
1695
|
// src/commands/AddApplicationOutputCommand.ts
|
|
1652
1696
|
|
|
1653
1697
|
|
|
1654
1698
|
|
|
1655
|
-
var
|
|
1699
|
+
var AddApplicationOutputCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1656
1700
|
return [
|
|
1657
1701
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1658
1702
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1659
1703
|
];
|
|
1660
1704
|
}).s("KinesisAnalytics_20180523", "AddApplicationOutput", {}).n("KinesisAnalyticsV2Client", "AddApplicationOutputCommand").f(void 0, void 0).ser(se_AddApplicationOutputCommand).de(de_AddApplicationOutputCommand).build() {
|
|
1705
|
+
static {
|
|
1706
|
+
__name(this, "AddApplicationOutputCommand");
|
|
1707
|
+
}
|
|
1661
1708
|
};
|
|
1662
|
-
__name(_AddApplicationOutputCommand, "AddApplicationOutputCommand");
|
|
1663
|
-
var AddApplicationOutputCommand = _AddApplicationOutputCommand;
|
|
1664
1709
|
|
|
1665
1710
|
// src/commands/AddApplicationReferenceDataSourceCommand.ts
|
|
1666
1711
|
|
|
1667
1712
|
|
|
1668
1713
|
|
|
1669
|
-
var
|
|
1714
|
+
var AddApplicationReferenceDataSourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1670
1715
|
return [
|
|
1671
1716
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1672
1717
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1673
1718
|
];
|
|
1674
1719
|
}).s("KinesisAnalytics_20180523", "AddApplicationReferenceDataSource", {}).n("KinesisAnalyticsV2Client", "AddApplicationReferenceDataSourceCommand").f(void 0, void 0).ser(se_AddApplicationReferenceDataSourceCommand).de(de_AddApplicationReferenceDataSourceCommand).build() {
|
|
1720
|
+
static {
|
|
1721
|
+
__name(this, "AddApplicationReferenceDataSourceCommand");
|
|
1722
|
+
}
|
|
1675
1723
|
};
|
|
1676
|
-
__name(_AddApplicationReferenceDataSourceCommand, "AddApplicationReferenceDataSourceCommand");
|
|
1677
|
-
var AddApplicationReferenceDataSourceCommand = _AddApplicationReferenceDataSourceCommand;
|
|
1678
1724
|
|
|
1679
1725
|
// src/commands/AddApplicationVpcConfigurationCommand.ts
|
|
1680
1726
|
|
|
1681
1727
|
|
|
1682
1728
|
|
|
1683
|
-
var
|
|
1729
|
+
var AddApplicationVpcConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1684
1730
|
return [
|
|
1685
1731
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1686
1732
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1687
1733
|
];
|
|
1688
1734
|
}).s("KinesisAnalytics_20180523", "AddApplicationVpcConfiguration", {}).n("KinesisAnalyticsV2Client", "AddApplicationVpcConfigurationCommand").f(void 0, void 0).ser(se_AddApplicationVpcConfigurationCommand).de(de_AddApplicationVpcConfigurationCommand).build() {
|
|
1735
|
+
static {
|
|
1736
|
+
__name(this, "AddApplicationVpcConfigurationCommand");
|
|
1737
|
+
}
|
|
1689
1738
|
};
|
|
1690
|
-
__name(_AddApplicationVpcConfigurationCommand, "AddApplicationVpcConfigurationCommand");
|
|
1691
|
-
var AddApplicationVpcConfigurationCommand = _AddApplicationVpcConfigurationCommand;
|
|
1692
1739
|
|
|
1693
1740
|
// src/commands/CreateApplicationCommand.ts
|
|
1694
1741
|
|
|
1695
1742
|
|
|
1696
1743
|
|
|
1697
|
-
var
|
|
1744
|
+
var CreateApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1698
1745
|
return [
|
|
1699
1746
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1700
1747
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1701
1748
|
];
|
|
1702
1749
|
}).s("KinesisAnalytics_20180523", "CreateApplication", {}).n("KinesisAnalyticsV2Client", "CreateApplicationCommand").f(void 0, void 0).ser(se_CreateApplicationCommand).de(de_CreateApplicationCommand).build() {
|
|
1750
|
+
static {
|
|
1751
|
+
__name(this, "CreateApplicationCommand");
|
|
1752
|
+
}
|
|
1703
1753
|
};
|
|
1704
|
-
__name(_CreateApplicationCommand, "CreateApplicationCommand");
|
|
1705
|
-
var CreateApplicationCommand = _CreateApplicationCommand;
|
|
1706
1754
|
|
|
1707
1755
|
// src/commands/CreateApplicationPresignedUrlCommand.ts
|
|
1708
1756
|
|
|
1709
1757
|
|
|
1710
1758
|
|
|
1711
|
-
var
|
|
1759
|
+
var CreateApplicationPresignedUrlCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1712
1760
|
return [
|
|
1713
1761
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1714
1762
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1715
1763
|
];
|
|
1716
1764
|
}).s("KinesisAnalytics_20180523", "CreateApplicationPresignedUrl", {}).n("KinesisAnalyticsV2Client", "CreateApplicationPresignedUrlCommand").f(void 0, void 0).ser(se_CreateApplicationPresignedUrlCommand).de(de_CreateApplicationPresignedUrlCommand).build() {
|
|
1765
|
+
static {
|
|
1766
|
+
__name(this, "CreateApplicationPresignedUrlCommand");
|
|
1767
|
+
}
|
|
1717
1768
|
};
|
|
1718
|
-
__name(_CreateApplicationPresignedUrlCommand, "CreateApplicationPresignedUrlCommand");
|
|
1719
|
-
var CreateApplicationPresignedUrlCommand = _CreateApplicationPresignedUrlCommand;
|
|
1720
1769
|
|
|
1721
1770
|
// src/commands/CreateApplicationSnapshotCommand.ts
|
|
1722
1771
|
|
|
1723
1772
|
|
|
1724
1773
|
|
|
1725
|
-
var
|
|
1774
|
+
var CreateApplicationSnapshotCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1726
1775
|
return [
|
|
1727
1776
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1728
1777
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1729
1778
|
];
|
|
1730
1779
|
}).s("KinesisAnalytics_20180523", "CreateApplicationSnapshot", {}).n("KinesisAnalyticsV2Client", "CreateApplicationSnapshotCommand").f(void 0, void 0).ser(se_CreateApplicationSnapshotCommand).de(de_CreateApplicationSnapshotCommand).build() {
|
|
1780
|
+
static {
|
|
1781
|
+
__name(this, "CreateApplicationSnapshotCommand");
|
|
1782
|
+
}
|
|
1731
1783
|
};
|
|
1732
|
-
__name(_CreateApplicationSnapshotCommand, "CreateApplicationSnapshotCommand");
|
|
1733
|
-
var CreateApplicationSnapshotCommand = _CreateApplicationSnapshotCommand;
|
|
1734
1784
|
|
|
1735
1785
|
// src/commands/DeleteApplicationCloudWatchLoggingOptionCommand.ts
|
|
1736
1786
|
|
|
1737
1787
|
|
|
1738
1788
|
|
|
1739
|
-
var
|
|
1789
|
+
var DeleteApplicationCloudWatchLoggingOptionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1740
1790
|
return [
|
|
1741
1791
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1742
1792
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1743
1793
|
];
|
|
1744
1794
|
}).s("KinesisAnalytics_20180523", "DeleteApplicationCloudWatchLoggingOption", {}).n("KinesisAnalyticsV2Client", "DeleteApplicationCloudWatchLoggingOptionCommand").f(void 0, void 0).ser(se_DeleteApplicationCloudWatchLoggingOptionCommand).de(de_DeleteApplicationCloudWatchLoggingOptionCommand).build() {
|
|
1795
|
+
static {
|
|
1796
|
+
__name(this, "DeleteApplicationCloudWatchLoggingOptionCommand");
|
|
1797
|
+
}
|
|
1745
1798
|
};
|
|
1746
|
-
__name(_DeleteApplicationCloudWatchLoggingOptionCommand, "DeleteApplicationCloudWatchLoggingOptionCommand");
|
|
1747
|
-
var DeleteApplicationCloudWatchLoggingOptionCommand = _DeleteApplicationCloudWatchLoggingOptionCommand;
|
|
1748
1799
|
|
|
1749
1800
|
// src/commands/DeleteApplicationCommand.ts
|
|
1750
1801
|
|
|
1751
1802
|
|
|
1752
1803
|
|
|
1753
|
-
var
|
|
1804
|
+
var DeleteApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1754
1805
|
return [
|
|
1755
1806
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1756
1807
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1757
1808
|
];
|
|
1758
1809
|
}).s("KinesisAnalytics_20180523", "DeleteApplication", {}).n("KinesisAnalyticsV2Client", "DeleteApplicationCommand").f(void 0, void 0).ser(se_DeleteApplicationCommand).de(de_DeleteApplicationCommand).build() {
|
|
1810
|
+
static {
|
|
1811
|
+
__name(this, "DeleteApplicationCommand");
|
|
1812
|
+
}
|
|
1759
1813
|
};
|
|
1760
|
-
__name(_DeleteApplicationCommand, "DeleteApplicationCommand");
|
|
1761
|
-
var DeleteApplicationCommand = _DeleteApplicationCommand;
|
|
1762
1814
|
|
|
1763
1815
|
// src/commands/DeleteApplicationInputProcessingConfigurationCommand.ts
|
|
1764
1816
|
|
|
1765
1817
|
|
|
1766
1818
|
|
|
1767
|
-
var
|
|
1819
|
+
var DeleteApplicationInputProcessingConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1768
1820
|
return [
|
|
1769
1821
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1770
1822
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1771
1823
|
];
|
|
1772
1824
|
}).s("KinesisAnalytics_20180523", "DeleteApplicationInputProcessingConfiguration", {}).n("KinesisAnalyticsV2Client", "DeleteApplicationInputProcessingConfigurationCommand").f(void 0, void 0).ser(se_DeleteApplicationInputProcessingConfigurationCommand).de(de_DeleteApplicationInputProcessingConfigurationCommand).build() {
|
|
1825
|
+
static {
|
|
1826
|
+
__name(this, "DeleteApplicationInputProcessingConfigurationCommand");
|
|
1827
|
+
}
|
|
1773
1828
|
};
|
|
1774
|
-
__name(_DeleteApplicationInputProcessingConfigurationCommand, "DeleteApplicationInputProcessingConfigurationCommand");
|
|
1775
|
-
var DeleteApplicationInputProcessingConfigurationCommand = _DeleteApplicationInputProcessingConfigurationCommand;
|
|
1776
1829
|
|
|
1777
1830
|
// src/commands/DeleteApplicationOutputCommand.ts
|
|
1778
1831
|
|
|
1779
1832
|
|
|
1780
1833
|
|
|
1781
|
-
var
|
|
1834
|
+
var DeleteApplicationOutputCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1782
1835
|
return [
|
|
1783
1836
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1784
1837
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1785
1838
|
];
|
|
1786
1839
|
}).s("KinesisAnalytics_20180523", "DeleteApplicationOutput", {}).n("KinesisAnalyticsV2Client", "DeleteApplicationOutputCommand").f(void 0, void 0).ser(se_DeleteApplicationOutputCommand).de(de_DeleteApplicationOutputCommand).build() {
|
|
1840
|
+
static {
|
|
1841
|
+
__name(this, "DeleteApplicationOutputCommand");
|
|
1842
|
+
}
|
|
1787
1843
|
};
|
|
1788
|
-
__name(_DeleteApplicationOutputCommand, "DeleteApplicationOutputCommand");
|
|
1789
|
-
var DeleteApplicationOutputCommand = _DeleteApplicationOutputCommand;
|
|
1790
1844
|
|
|
1791
1845
|
// src/commands/DeleteApplicationReferenceDataSourceCommand.ts
|
|
1792
1846
|
|
|
1793
1847
|
|
|
1794
1848
|
|
|
1795
|
-
var
|
|
1849
|
+
var DeleteApplicationReferenceDataSourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1796
1850
|
return [
|
|
1797
1851
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1798
1852
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1799
1853
|
];
|
|
1800
1854
|
}).s("KinesisAnalytics_20180523", "DeleteApplicationReferenceDataSource", {}).n("KinesisAnalyticsV2Client", "DeleteApplicationReferenceDataSourceCommand").f(void 0, void 0).ser(se_DeleteApplicationReferenceDataSourceCommand).de(de_DeleteApplicationReferenceDataSourceCommand).build() {
|
|
1855
|
+
static {
|
|
1856
|
+
__name(this, "DeleteApplicationReferenceDataSourceCommand");
|
|
1857
|
+
}
|
|
1801
1858
|
};
|
|
1802
|
-
__name(_DeleteApplicationReferenceDataSourceCommand, "DeleteApplicationReferenceDataSourceCommand");
|
|
1803
|
-
var DeleteApplicationReferenceDataSourceCommand = _DeleteApplicationReferenceDataSourceCommand;
|
|
1804
1859
|
|
|
1805
1860
|
// src/commands/DeleteApplicationSnapshotCommand.ts
|
|
1806
1861
|
|
|
1807
1862
|
|
|
1808
1863
|
|
|
1809
|
-
var
|
|
1864
|
+
var DeleteApplicationSnapshotCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1810
1865
|
return [
|
|
1811
1866
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1812
1867
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1813
1868
|
];
|
|
1814
1869
|
}).s("KinesisAnalytics_20180523", "DeleteApplicationSnapshot", {}).n("KinesisAnalyticsV2Client", "DeleteApplicationSnapshotCommand").f(void 0, void 0).ser(se_DeleteApplicationSnapshotCommand).de(de_DeleteApplicationSnapshotCommand).build() {
|
|
1870
|
+
static {
|
|
1871
|
+
__name(this, "DeleteApplicationSnapshotCommand");
|
|
1872
|
+
}
|
|
1815
1873
|
};
|
|
1816
|
-
__name(_DeleteApplicationSnapshotCommand, "DeleteApplicationSnapshotCommand");
|
|
1817
|
-
var DeleteApplicationSnapshotCommand = _DeleteApplicationSnapshotCommand;
|
|
1818
1874
|
|
|
1819
1875
|
// src/commands/DeleteApplicationVpcConfigurationCommand.ts
|
|
1820
1876
|
|
|
1821
1877
|
|
|
1822
1878
|
|
|
1823
|
-
var
|
|
1879
|
+
var DeleteApplicationVpcConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1824
1880
|
return [
|
|
1825
1881
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1826
1882
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1827
1883
|
];
|
|
1828
1884
|
}).s("KinesisAnalytics_20180523", "DeleteApplicationVpcConfiguration", {}).n("KinesisAnalyticsV2Client", "DeleteApplicationVpcConfigurationCommand").f(void 0, void 0).ser(se_DeleteApplicationVpcConfigurationCommand).de(de_DeleteApplicationVpcConfigurationCommand).build() {
|
|
1885
|
+
static {
|
|
1886
|
+
__name(this, "DeleteApplicationVpcConfigurationCommand");
|
|
1887
|
+
}
|
|
1829
1888
|
};
|
|
1830
|
-
__name(_DeleteApplicationVpcConfigurationCommand, "DeleteApplicationVpcConfigurationCommand");
|
|
1831
|
-
var DeleteApplicationVpcConfigurationCommand = _DeleteApplicationVpcConfigurationCommand;
|
|
1832
1889
|
|
|
1833
1890
|
// src/commands/DescribeApplicationCommand.ts
|
|
1834
1891
|
|
|
1835
1892
|
|
|
1836
1893
|
|
|
1837
|
-
var
|
|
1894
|
+
var DescribeApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1838
1895
|
return [
|
|
1839
1896
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1840
1897
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1841
1898
|
];
|
|
1842
1899
|
}).s("KinesisAnalytics_20180523", "DescribeApplication", {}).n("KinesisAnalyticsV2Client", "DescribeApplicationCommand").f(void 0, void 0).ser(se_DescribeApplicationCommand).de(de_DescribeApplicationCommand).build() {
|
|
1900
|
+
static {
|
|
1901
|
+
__name(this, "DescribeApplicationCommand");
|
|
1902
|
+
}
|
|
1843
1903
|
};
|
|
1844
|
-
__name(_DescribeApplicationCommand, "DescribeApplicationCommand");
|
|
1845
|
-
var DescribeApplicationCommand = _DescribeApplicationCommand;
|
|
1846
1904
|
|
|
1847
1905
|
// src/commands/DescribeApplicationOperationCommand.ts
|
|
1848
1906
|
|
|
1849
1907
|
|
|
1850
1908
|
|
|
1851
|
-
var
|
|
1909
|
+
var DescribeApplicationOperationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1852
1910
|
return [
|
|
1853
1911
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1854
1912
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1855
1913
|
];
|
|
1856
1914
|
}).s("KinesisAnalytics_20180523", "DescribeApplicationOperation", {}).n("KinesisAnalyticsV2Client", "DescribeApplicationOperationCommand").f(void 0, void 0).ser(se_DescribeApplicationOperationCommand).de(de_DescribeApplicationOperationCommand).build() {
|
|
1915
|
+
static {
|
|
1916
|
+
__name(this, "DescribeApplicationOperationCommand");
|
|
1917
|
+
}
|
|
1857
1918
|
};
|
|
1858
|
-
__name(_DescribeApplicationOperationCommand, "DescribeApplicationOperationCommand");
|
|
1859
|
-
var DescribeApplicationOperationCommand = _DescribeApplicationOperationCommand;
|
|
1860
1919
|
|
|
1861
1920
|
// src/commands/DescribeApplicationSnapshotCommand.ts
|
|
1862
1921
|
|
|
1863
1922
|
|
|
1864
1923
|
|
|
1865
|
-
var
|
|
1924
|
+
var DescribeApplicationSnapshotCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1866
1925
|
return [
|
|
1867
1926
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1868
1927
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1869
1928
|
];
|
|
1870
1929
|
}).s("KinesisAnalytics_20180523", "DescribeApplicationSnapshot", {}).n("KinesisAnalyticsV2Client", "DescribeApplicationSnapshotCommand").f(void 0, void 0).ser(se_DescribeApplicationSnapshotCommand).de(de_DescribeApplicationSnapshotCommand).build() {
|
|
1930
|
+
static {
|
|
1931
|
+
__name(this, "DescribeApplicationSnapshotCommand");
|
|
1932
|
+
}
|
|
1871
1933
|
};
|
|
1872
|
-
__name(_DescribeApplicationSnapshotCommand, "DescribeApplicationSnapshotCommand");
|
|
1873
|
-
var DescribeApplicationSnapshotCommand = _DescribeApplicationSnapshotCommand;
|
|
1874
1934
|
|
|
1875
1935
|
// src/commands/DescribeApplicationVersionCommand.ts
|
|
1876
1936
|
|
|
1877
1937
|
|
|
1878
1938
|
|
|
1879
|
-
var
|
|
1939
|
+
var DescribeApplicationVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1880
1940
|
return [
|
|
1881
1941
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1882
1942
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1883
1943
|
];
|
|
1884
1944
|
}).s("KinesisAnalytics_20180523", "DescribeApplicationVersion", {}).n("KinesisAnalyticsV2Client", "DescribeApplicationVersionCommand").f(void 0, void 0).ser(se_DescribeApplicationVersionCommand).de(de_DescribeApplicationVersionCommand).build() {
|
|
1945
|
+
static {
|
|
1946
|
+
__name(this, "DescribeApplicationVersionCommand");
|
|
1947
|
+
}
|
|
1885
1948
|
};
|
|
1886
|
-
__name(_DescribeApplicationVersionCommand, "DescribeApplicationVersionCommand");
|
|
1887
|
-
var DescribeApplicationVersionCommand = _DescribeApplicationVersionCommand;
|
|
1888
1949
|
|
|
1889
1950
|
// src/commands/DiscoverInputSchemaCommand.ts
|
|
1890
1951
|
|
|
1891
1952
|
|
|
1892
1953
|
|
|
1893
|
-
var
|
|
1954
|
+
var DiscoverInputSchemaCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1894
1955
|
return [
|
|
1895
1956
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1896
1957
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1897
1958
|
];
|
|
1898
1959
|
}).s("KinesisAnalytics_20180523", "DiscoverInputSchema", {}).n("KinesisAnalyticsV2Client", "DiscoverInputSchemaCommand").f(void 0, void 0).ser(se_DiscoverInputSchemaCommand).de(de_DiscoverInputSchemaCommand).build() {
|
|
1960
|
+
static {
|
|
1961
|
+
__name(this, "DiscoverInputSchemaCommand");
|
|
1962
|
+
}
|
|
1899
1963
|
};
|
|
1900
|
-
__name(_DiscoverInputSchemaCommand, "DiscoverInputSchemaCommand");
|
|
1901
|
-
var DiscoverInputSchemaCommand = _DiscoverInputSchemaCommand;
|
|
1902
1964
|
|
|
1903
1965
|
// src/commands/ListApplicationOperationsCommand.ts
|
|
1904
1966
|
|
|
1905
1967
|
|
|
1906
1968
|
|
|
1907
|
-
var
|
|
1969
|
+
var ListApplicationOperationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1908
1970
|
return [
|
|
1909
1971
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1910
1972
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1911
1973
|
];
|
|
1912
1974
|
}).s("KinesisAnalytics_20180523", "ListApplicationOperations", {}).n("KinesisAnalyticsV2Client", "ListApplicationOperationsCommand").f(void 0, void 0).ser(se_ListApplicationOperationsCommand).de(de_ListApplicationOperationsCommand).build() {
|
|
1975
|
+
static {
|
|
1976
|
+
__name(this, "ListApplicationOperationsCommand");
|
|
1977
|
+
}
|
|
1913
1978
|
};
|
|
1914
|
-
__name(_ListApplicationOperationsCommand, "ListApplicationOperationsCommand");
|
|
1915
|
-
var ListApplicationOperationsCommand = _ListApplicationOperationsCommand;
|
|
1916
1979
|
|
|
1917
1980
|
// src/commands/ListApplicationsCommand.ts
|
|
1918
1981
|
|
|
1919
1982
|
|
|
1920
1983
|
|
|
1921
|
-
var
|
|
1984
|
+
var ListApplicationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1922
1985
|
return [
|
|
1923
1986
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1924
1987
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1925
1988
|
];
|
|
1926
1989
|
}).s("KinesisAnalytics_20180523", "ListApplications", {}).n("KinesisAnalyticsV2Client", "ListApplicationsCommand").f(void 0, void 0).ser(se_ListApplicationsCommand).de(de_ListApplicationsCommand).build() {
|
|
1990
|
+
static {
|
|
1991
|
+
__name(this, "ListApplicationsCommand");
|
|
1992
|
+
}
|
|
1927
1993
|
};
|
|
1928
|
-
__name(_ListApplicationsCommand, "ListApplicationsCommand");
|
|
1929
|
-
var ListApplicationsCommand = _ListApplicationsCommand;
|
|
1930
1994
|
|
|
1931
1995
|
// src/commands/ListApplicationSnapshotsCommand.ts
|
|
1932
1996
|
|
|
1933
1997
|
|
|
1934
1998
|
|
|
1935
|
-
var
|
|
1999
|
+
var ListApplicationSnapshotsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1936
2000
|
return [
|
|
1937
2001
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1938
2002
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1939
2003
|
];
|
|
1940
2004
|
}).s("KinesisAnalytics_20180523", "ListApplicationSnapshots", {}).n("KinesisAnalyticsV2Client", "ListApplicationSnapshotsCommand").f(void 0, void 0).ser(se_ListApplicationSnapshotsCommand).de(de_ListApplicationSnapshotsCommand).build() {
|
|
2005
|
+
static {
|
|
2006
|
+
__name(this, "ListApplicationSnapshotsCommand");
|
|
2007
|
+
}
|
|
1941
2008
|
};
|
|
1942
|
-
__name(_ListApplicationSnapshotsCommand, "ListApplicationSnapshotsCommand");
|
|
1943
|
-
var ListApplicationSnapshotsCommand = _ListApplicationSnapshotsCommand;
|
|
1944
2009
|
|
|
1945
2010
|
// src/commands/ListApplicationVersionsCommand.ts
|
|
1946
2011
|
|
|
1947
2012
|
|
|
1948
2013
|
|
|
1949
|
-
var
|
|
2014
|
+
var ListApplicationVersionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1950
2015
|
return [
|
|
1951
2016
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1952
2017
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1953
2018
|
];
|
|
1954
2019
|
}).s("KinesisAnalytics_20180523", "ListApplicationVersions", {}).n("KinesisAnalyticsV2Client", "ListApplicationVersionsCommand").f(void 0, void 0).ser(se_ListApplicationVersionsCommand).de(de_ListApplicationVersionsCommand).build() {
|
|
2020
|
+
static {
|
|
2021
|
+
__name(this, "ListApplicationVersionsCommand");
|
|
2022
|
+
}
|
|
1955
2023
|
};
|
|
1956
|
-
__name(_ListApplicationVersionsCommand, "ListApplicationVersionsCommand");
|
|
1957
|
-
var ListApplicationVersionsCommand = _ListApplicationVersionsCommand;
|
|
1958
2024
|
|
|
1959
2025
|
// src/commands/ListTagsForResourceCommand.ts
|
|
1960
2026
|
|
|
1961
2027
|
|
|
1962
2028
|
|
|
1963
|
-
var
|
|
2029
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1964
2030
|
return [
|
|
1965
2031
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1966
2032
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1967
2033
|
];
|
|
1968
2034
|
}).s("KinesisAnalytics_20180523", "ListTagsForResource", {}).n("KinesisAnalyticsV2Client", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
2035
|
+
static {
|
|
2036
|
+
__name(this, "ListTagsForResourceCommand");
|
|
2037
|
+
}
|
|
1969
2038
|
};
|
|
1970
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
1971
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
1972
2039
|
|
|
1973
2040
|
// src/commands/RollbackApplicationCommand.ts
|
|
1974
2041
|
|
|
1975
2042
|
|
|
1976
2043
|
|
|
1977
|
-
var
|
|
2044
|
+
var RollbackApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1978
2045
|
return [
|
|
1979
2046
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1980
2047
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1981
2048
|
];
|
|
1982
2049
|
}).s("KinesisAnalytics_20180523", "RollbackApplication", {}).n("KinesisAnalyticsV2Client", "RollbackApplicationCommand").f(void 0, void 0).ser(se_RollbackApplicationCommand).de(de_RollbackApplicationCommand).build() {
|
|
2050
|
+
static {
|
|
2051
|
+
__name(this, "RollbackApplicationCommand");
|
|
2052
|
+
}
|
|
1983
2053
|
};
|
|
1984
|
-
__name(_RollbackApplicationCommand, "RollbackApplicationCommand");
|
|
1985
|
-
var RollbackApplicationCommand = _RollbackApplicationCommand;
|
|
1986
2054
|
|
|
1987
2055
|
// src/commands/StartApplicationCommand.ts
|
|
1988
2056
|
|
|
1989
2057
|
|
|
1990
2058
|
|
|
1991
|
-
var
|
|
2059
|
+
var StartApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1992
2060
|
return [
|
|
1993
2061
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1994
2062
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1995
2063
|
];
|
|
1996
2064
|
}).s("KinesisAnalytics_20180523", "StartApplication", {}).n("KinesisAnalyticsV2Client", "StartApplicationCommand").f(void 0, void 0).ser(se_StartApplicationCommand).de(de_StartApplicationCommand).build() {
|
|
2065
|
+
static {
|
|
2066
|
+
__name(this, "StartApplicationCommand");
|
|
2067
|
+
}
|
|
1997
2068
|
};
|
|
1998
|
-
__name(_StartApplicationCommand, "StartApplicationCommand");
|
|
1999
|
-
var StartApplicationCommand = _StartApplicationCommand;
|
|
2000
2069
|
|
|
2001
2070
|
// src/commands/StopApplicationCommand.ts
|
|
2002
2071
|
|
|
2003
2072
|
|
|
2004
2073
|
|
|
2005
|
-
var
|
|
2074
|
+
var StopApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2006
2075
|
return [
|
|
2007
2076
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2008
2077
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2009
2078
|
];
|
|
2010
2079
|
}).s("KinesisAnalytics_20180523", "StopApplication", {}).n("KinesisAnalyticsV2Client", "StopApplicationCommand").f(void 0, void 0).ser(se_StopApplicationCommand).de(de_StopApplicationCommand).build() {
|
|
2080
|
+
static {
|
|
2081
|
+
__name(this, "StopApplicationCommand");
|
|
2082
|
+
}
|
|
2011
2083
|
};
|
|
2012
|
-
__name(_StopApplicationCommand, "StopApplicationCommand");
|
|
2013
|
-
var StopApplicationCommand = _StopApplicationCommand;
|
|
2014
2084
|
|
|
2015
2085
|
// src/commands/TagResourceCommand.ts
|
|
2016
2086
|
|
|
2017
2087
|
|
|
2018
2088
|
|
|
2019
|
-
var
|
|
2089
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2020
2090
|
return [
|
|
2021
2091
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2022
2092
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2023
2093
|
];
|
|
2024
2094
|
}).s("KinesisAnalytics_20180523", "TagResource", {}).n("KinesisAnalyticsV2Client", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
2095
|
+
static {
|
|
2096
|
+
__name(this, "TagResourceCommand");
|
|
2097
|
+
}
|
|
2025
2098
|
};
|
|
2026
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
2027
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
2028
2099
|
|
|
2029
2100
|
// src/commands/UntagResourceCommand.ts
|
|
2030
2101
|
|
|
2031
2102
|
|
|
2032
2103
|
|
|
2033
|
-
var
|
|
2104
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2034
2105
|
return [
|
|
2035
2106
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2036
2107
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2037
2108
|
];
|
|
2038
2109
|
}).s("KinesisAnalytics_20180523", "UntagResource", {}).n("KinesisAnalyticsV2Client", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
2110
|
+
static {
|
|
2111
|
+
__name(this, "UntagResourceCommand");
|
|
2112
|
+
}
|
|
2039
2113
|
};
|
|
2040
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
2041
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
2042
2114
|
|
|
2043
2115
|
// src/commands/UpdateApplicationCommand.ts
|
|
2044
2116
|
|
|
2045
2117
|
|
|
2046
2118
|
|
|
2047
|
-
var
|
|
2119
|
+
var UpdateApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2048
2120
|
return [
|
|
2049
2121
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2050
2122
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2051
2123
|
];
|
|
2052
2124
|
}).s("KinesisAnalytics_20180523", "UpdateApplication", {}).n("KinesisAnalyticsV2Client", "UpdateApplicationCommand").f(void 0, void 0).ser(se_UpdateApplicationCommand).de(de_UpdateApplicationCommand).build() {
|
|
2125
|
+
static {
|
|
2126
|
+
__name(this, "UpdateApplicationCommand");
|
|
2127
|
+
}
|
|
2053
2128
|
};
|
|
2054
|
-
__name(_UpdateApplicationCommand, "UpdateApplicationCommand");
|
|
2055
|
-
var UpdateApplicationCommand = _UpdateApplicationCommand;
|
|
2056
2129
|
|
|
2057
2130
|
// src/commands/UpdateApplicationMaintenanceConfigurationCommand.ts
|
|
2058
2131
|
|
|
2059
2132
|
|
|
2060
2133
|
|
|
2061
|
-
var
|
|
2134
|
+
var UpdateApplicationMaintenanceConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2062
2135
|
return [
|
|
2063
2136
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2064
2137
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2065
2138
|
];
|
|
2066
2139
|
}).s("KinesisAnalytics_20180523", "UpdateApplicationMaintenanceConfiguration", {}).n("KinesisAnalyticsV2Client", "UpdateApplicationMaintenanceConfigurationCommand").f(void 0, void 0).ser(se_UpdateApplicationMaintenanceConfigurationCommand).de(de_UpdateApplicationMaintenanceConfigurationCommand).build() {
|
|
2140
|
+
static {
|
|
2141
|
+
__name(this, "UpdateApplicationMaintenanceConfigurationCommand");
|
|
2142
|
+
}
|
|
2067
2143
|
};
|
|
2068
|
-
__name(_UpdateApplicationMaintenanceConfigurationCommand, "UpdateApplicationMaintenanceConfigurationCommand");
|
|
2069
|
-
var UpdateApplicationMaintenanceConfigurationCommand = _UpdateApplicationMaintenanceConfigurationCommand;
|
|
2070
2144
|
|
|
2071
2145
|
// src/KinesisAnalyticsV2.ts
|
|
2072
2146
|
var commands = {
|
|
@@ -2104,10 +2178,11 @@ var commands = {
|
|
|
2104
2178
|
UpdateApplicationCommand,
|
|
2105
2179
|
UpdateApplicationMaintenanceConfigurationCommand
|
|
2106
2180
|
};
|
|
2107
|
-
var
|
|
2181
|
+
var KinesisAnalyticsV2 = class extends KinesisAnalyticsV2Client {
|
|
2182
|
+
static {
|
|
2183
|
+
__name(this, "KinesisAnalyticsV2");
|
|
2184
|
+
}
|
|
2108
2185
|
};
|
|
2109
|
-
__name(_KinesisAnalyticsV2, "KinesisAnalyticsV2");
|
|
2110
|
-
var KinesisAnalyticsV2 = _KinesisAnalyticsV2;
|
|
2111
2186
|
(0, import_smithy_client.createAggregatedClient)(commands, KinesisAnalyticsV2);
|
|
2112
2187
|
|
|
2113
2188
|
// src/pagination/ListApplicationOperationsPaginator.ts
|