@aws-sdk/client-kinesis 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 +241 -186
- package/dist-es/KinesisClient.js +1 -0
- package/dist-es/models/models_0.js +32 -32
- 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 +47 -47
package/dist-cjs/index.js
CHANGED
|
@@ -190,7 +190,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
190
190
|
}, "resolveRuntimeExtensions");
|
|
191
191
|
|
|
192
192
|
// src/KinesisClient.ts
|
|
193
|
-
var
|
|
193
|
+
var KinesisClient = class extends import_smithy_client.Client {
|
|
194
|
+
static {
|
|
195
|
+
__name(this, "KinesisClient");
|
|
196
|
+
}
|
|
197
|
+
/**
|
|
198
|
+
* The resolved configuration of KinesisClient class. This is resolved and normalized from the {@link KinesisClientConfig | constructor configuration interface}.
|
|
199
|
+
*/
|
|
200
|
+
config;
|
|
194
201
|
constructor(...[configuration]) {
|
|
195
202
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
196
203
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -201,7 +208,7 @@ var _KinesisClient = class _KinesisClient extends import_smithy_client.Client {
|
|
|
201
208
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
202
209
|
const _config_7 = (0, import_eventstream_serde_config_resolver.resolveEventStreamSerdeConfig)(_config_6);
|
|
203
210
|
const _config_8 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_7);
|
|
204
|
-
const _config_9 = resolveRuntimeExtensions(_config_8,
|
|
211
|
+
const _config_9 = resolveRuntimeExtensions(_config_8, configuration?.extensions || []);
|
|
205
212
|
super(_config_9);
|
|
206
213
|
this.config = _config_9;
|
|
207
214
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -229,8 +236,6 @@ var _KinesisClient = class _KinesisClient extends import_smithy_client.Client {
|
|
|
229
236
|
super.destroy();
|
|
230
237
|
}
|
|
231
238
|
};
|
|
232
|
-
__name(_KinesisClient, "KinesisClient");
|
|
233
|
-
var KinesisClient = _KinesisClient;
|
|
234
239
|
|
|
235
240
|
// src/Kinesis.ts
|
|
236
241
|
|
|
@@ -247,7 +252,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
247
252
|
|
|
248
253
|
// src/models/KinesisServiceException.ts
|
|
249
254
|
|
|
250
|
-
var
|
|
255
|
+
var KinesisServiceException = class _KinesisServiceException extends import_smithy_client.ServiceException {
|
|
256
|
+
static {
|
|
257
|
+
__name(this, "KinesisServiceException");
|
|
258
|
+
}
|
|
251
259
|
/**
|
|
252
260
|
* @internal
|
|
253
261
|
*/
|
|
@@ -256,11 +264,14 @@ var _KinesisServiceException = class _KinesisServiceException extends import_smi
|
|
|
256
264
|
Object.setPrototypeOf(this, _KinesisServiceException.prototype);
|
|
257
265
|
}
|
|
258
266
|
};
|
|
259
|
-
__name(_KinesisServiceException, "KinesisServiceException");
|
|
260
|
-
var KinesisServiceException = _KinesisServiceException;
|
|
261
267
|
|
|
262
268
|
// src/models/models_0.ts
|
|
263
|
-
var
|
|
269
|
+
var AccessDeniedException = class _AccessDeniedException extends KinesisServiceException {
|
|
270
|
+
static {
|
|
271
|
+
__name(this, "AccessDeniedException");
|
|
272
|
+
}
|
|
273
|
+
name = "AccessDeniedException";
|
|
274
|
+
$fault = "client";
|
|
264
275
|
/**
|
|
265
276
|
* @internal
|
|
266
277
|
*/
|
|
@@ -270,14 +281,15 @@ var _AccessDeniedException = class _AccessDeniedException extends KinesisService
|
|
|
270
281
|
$fault: "client",
|
|
271
282
|
...opts
|
|
272
283
|
});
|
|
273
|
-
this.name = "AccessDeniedException";
|
|
274
|
-
this.$fault = "client";
|
|
275
284
|
Object.setPrototypeOf(this, _AccessDeniedException.prototype);
|
|
276
285
|
}
|
|
277
286
|
};
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
287
|
+
var InvalidArgumentException = class _InvalidArgumentException extends KinesisServiceException {
|
|
288
|
+
static {
|
|
289
|
+
__name(this, "InvalidArgumentException");
|
|
290
|
+
}
|
|
291
|
+
name = "InvalidArgumentException";
|
|
292
|
+
$fault = "client";
|
|
281
293
|
/**
|
|
282
294
|
* @internal
|
|
283
295
|
*/
|
|
@@ -287,14 +299,15 @@ var _InvalidArgumentException = class _InvalidArgumentException extends KinesisS
|
|
|
287
299
|
$fault: "client",
|
|
288
300
|
...opts
|
|
289
301
|
});
|
|
290
|
-
this.name = "InvalidArgumentException";
|
|
291
|
-
this.$fault = "client";
|
|
292
302
|
Object.setPrototypeOf(this, _InvalidArgumentException.prototype);
|
|
293
303
|
}
|
|
294
304
|
};
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
305
|
+
var LimitExceededException = class _LimitExceededException extends KinesisServiceException {
|
|
306
|
+
static {
|
|
307
|
+
__name(this, "LimitExceededException");
|
|
308
|
+
}
|
|
309
|
+
name = "LimitExceededException";
|
|
310
|
+
$fault = "client";
|
|
298
311
|
/**
|
|
299
312
|
* @internal
|
|
300
313
|
*/
|
|
@@ -304,14 +317,15 @@ var _LimitExceededException = class _LimitExceededException extends KinesisServi
|
|
|
304
317
|
$fault: "client",
|
|
305
318
|
...opts
|
|
306
319
|
});
|
|
307
|
-
this.name = "LimitExceededException";
|
|
308
|
-
this.$fault = "client";
|
|
309
320
|
Object.setPrototypeOf(this, _LimitExceededException.prototype);
|
|
310
321
|
}
|
|
311
322
|
};
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
323
|
+
var ResourceInUseException = class _ResourceInUseException extends KinesisServiceException {
|
|
324
|
+
static {
|
|
325
|
+
__name(this, "ResourceInUseException");
|
|
326
|
+
}
|
|
327
|
+
name = "ResourceInUseException";
|
|
328
|
+
$fault = "client";
|
|
315
329
|
/**
|
|
316
330
|
* @internal
|
|
317
331
|
*/
|
|
@@ -321,14 +335,15 @@ var _ResourceInUseException = class _ResourceInUseException extends KinesisServi
|
|
|
321
335
|
$fault: "client",
|
|
322
336
|
...opts
|
|
323
337
|
});
|
|
324
|
-
this.name = "ResourceInUseException";
|
|
325
|
-
this.$fault = "client";
|
|
326
338
|
Object.setPrototypeOf(this, _ResourceInUseException.prototype);
|
|
327
339
|
}
|
|
328
340
|
};
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
341
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends KinesisServiceException {
|
|
342
|
+
static {
|
|
343
|
+
__name(this, "ResourceNotFoundException");
|
|
344
|
+
}
|
|
345
|
+
name = "ResourceNotFoundException";
|
|
346
|
+
$fault = "client";
|
|
332
347
|
/**
|
|
333
348
|
* @internal
|
|
334
349
|
*/
|
|
@@ -338,13 +353,9 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Kinesi
|
|
|
338
353
|
$fault: "client",
|
|
339
354
|
...opts
|
|
340
355
|
});
|
|
341
|
-
this.name = "ResourceNotFoundException";
|
|
342
|
-
this.$fault = "client";
|
|
343
356
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
344
357
|
}
|
|
345
358
|
};
|
|
346
|
-
__name(_ResourceNotFoundException, "ResourceNotFoundException");
|
|
347
|
-
var ResourceNotFoundException = _ResourceNotFoundException;
|
|
348
359
|
var ConsumerStatus = {
|
|
349
360
|
ACTIVE: "ACTIVE",
|
|
350
361
|
CREATING: "CREATING",
|
|
@@ -374,7 +385,12 @@ var StreamStatus = {
|
|
|
374
385
|
DELETING: "DELETING",
|
|
375
386
|
UPDATING: "UPDATING"
|
|
376
387
|
};
|
|
377
|
-
var
|
|
388
|
+
var ExpiredIteratorException = class _ExpiredIteratorException extends KinesisServiceException {
|
|
389
|
+
static {
|
|
390
|
+
__name(this, "ExpiredIteratorException");
|
|
391
|
+
}
|
|
392
|
+
name = "ExpiredIteratorException";
|
|
393
|
+
$fault = "client";
|
|
378
394
|
/**
|
|
379
395
|
* @internal
|
|
380
396
|
*/
|
|
@@ -384,14 +400,15 @@ var _ExpiredIteratorException = class _ExpiredIteratorException extends KinesisS
|
|
|
384
400
|
$fault: "client",
|
|
385
401
|
...opts
|
|
386
402
|
});
|
|
387
|
-
this.name = "ExpiredIteratorException";
|
|
388
|
-
this.$fault = "client";
|
|
389
403
|
Object.setPrototypeOf(this, _ExpiredIteratorException.prototype);
|
|
390
404
|
}
|
|
391
405
|
};
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
406
|
+
var ExpiredNextTokenException = class _ExpiredNextTokenException extends KinesisServiceException {
|
|
407
|
+
static {
|
|
408
|
+
__name(this, "ExpiredNextTokenException");
|
|
409
|
+
}
|
|
410
|
+
name = "ExpiredNextTokenException";
|
|
411
|
+
$fault = "client";
|
|
395
412
|
/**
|
|
396
413
|
* @internal
|
|
397
414
|
*/
|
|
@@ -401,14 +418,15 @@ var _ExpiredNextTokenException = class _ExpiredNextTokenException extends Kinesi
|
|
|
401
418
|
$fault: "client",
|
|
402
419
|
...opts
|
|
403
420
|
});
|
|
404
|
-
this.name = "ExpiredNextTokenException";
|
|
405
|
-
this.$fault = "client";
|
|
406
421
|
Object.setPrototypeOf(this, _ExpiredNextTokenException.prototype);
|
|
407
422
|
}
|
|
408
423
|
};
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
424
|
+
var KMSAccessDeniedException = class _KMSAccessDeniedException extends KinesisServiceException {
|
|
425
|
+
static {
|
|
426
|
+
__name(this, "KMSAccessDeniedException");
|
|
427
|
+
}
|
|
428
|
+
name = "KMSAccessDeniedException";
|
|
429
|
+
$fault = "client";
|
|
412
430
|
/**
|
|
413
431
|
* @internal
|
|
414
432
|
*/
|
|
@@ -418,14 +436,15 @@ var _KMSAccessDeniedException = class _KMSAccessDeniedException extends KinesisS
|
|
|
418
436
|
$fault: "client",
|
|
419
437
|
...opts
|
|
420
438
|
});
|
|
421
|
-
this.name = "KMSAccessDeniedException";
|
|
422
|
-
this.$fault = "client";
|
|
423
439
|
Object.setPrototypeOf(this, _KMSAccessDeniedException.prototype);
|
|
424
440
|
}
|
|
425
441
|
};
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
442
|
+
var KMSDisabledException = class _KMSDisabledException extends KinesisServiceException {
|
|
443
|
+
static {
|
|
444
|
+
__name(this, "KMSDisabledException");
|
|
445
|
+
}
|
|
446
|
+
name = "KMSDisabledException";
|
|
447
|
+
$fault = "client";
|
|
429
448
|
/**
|
|
430
449
|
* @internal
|
|
431
450
|
*/
|
|
@@ -435,14 +454,15 @@ var _KMSDisabledException = class _KMSDisabledException extends KinesisServiceEx
|
|
|
435
454
|
$fault: "client",
|
|
436
455
|
...opts
|
|
437
456
|
});
|
|
438
|
-
this.name = "KMSDisabledException";
|
|
439
|
-
this.$fault = "client";
|
|
440
457
|
Object.setPrototypeOf(this, _KMSDisabledException.prototype);
|
|
441
458
|
}
|
|
442
459
|
};
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
460
|
+
var KMSInvalidStateException = class _KMSInvalidStateException extends KinesisServiceException {
|
|
461
|
+
static {
|
|
462
|
+
__name(this, "KMSInvalidStateException");
|
|
463
|
+
}
|
|
464
|
+
name = "KMSInvalidStateException";
|
|
465
|
+
$fault = "client";
|
|
446
466
|
/**
|
|
447
467
|
* @internal
|
|
448
468
|
*/
|
|
@@ -452,14 +472,15 @@ var _KMSInvalidStateException = class _KMSInvalidStateException extends KinesisS
|
|
|
452
472
|
$fault: "client",
|
|
453
473
|
...opts
|
|
454
474
|
});
|
|
455
|
-
this.name = "KMSInvalidStateException";
|
|
456
|
-
this.$fault = "client";
|
|
457
475
|
Object.setPrototypeOf(this, _KMSInvalidStateException.prototype);
|
|
458
476
|
}
|
|
459
477
|
};
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
478
|
+
var KMSNotFoundException = class _KMSNotFoundException extends KinesisServiceException {
|
|
479
|
+
static {
|
|
480
|
+
__name(this, "KMSNotFoundException");
|
|
481
|
+
}
|
|
482
|
+
name = "KMSNotFoundException";
|
|
483
|
+
$fault = "client";
|
|
463
484
|
/**
|
|
464
485
|
* @internal
|
|
465
486
|
*/
|
|
@@ -469,14 +490,15 @@ var _KMSNotFoundException = class _KMSNotFoundException extends KinesisServiceEx
|
|
|
469
490
|
$fault: "client",
|
|
470
491
|
...opts
|
|
471
492
|
});
|
|
472
|
-
this.name = "KMSNotFoundException";
|
|
473
|
-
this.$fault = "client";
|
|
474
493
|
Object.setPrototypeOf(this, _KMSNotFoundException.prototype);
|
|
475
494
|
}
|
|
476
495
|
};
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
496
|
+
var KMSOptInRequired = class _KMSOptInRequired extends KinesisServiceException {
|
|
497
|
+
static {
|
|
498
|
+
__name(this, "KMSOptInRequired");
|
|
499
|
+
}
|
|
500
|
+
name = "KMSOptInRequired";
|
|
501
|
+
$fault = "client";
|
|
480
502
|
/**
|
|
481
503
|
* @internal
|
|
482
504
|
*/
|
|
@@ -486,14 +508,15 @@ var _KMSOptInRequired = class _KMSOptInRequired extends KinesisServiceException
|
|
|
486
508
|
$fault: "client",
|
|
487
509
|
...opts
|
|
488
510
|
});
|
|
489
|
-
this.name = "KMSOptInRequired";
|
|
490
|
-
this.$fault = "client";
|
|
491
511
|
Object.setPrototypeOf(this, _KMSOptInRequired.prototype);
|
|
492
512
|
}
|
|
493
513
|
};
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
514
|
+
var KMSThrottlingException = class _KMSThrottlingException extends KinesisServiceException {
|
|
515
|
+
static {
|
|
516
|
+
__name(this, "KMSThrottlingException");
|
|
517
|
+
}
|
|
518
|
+
name = "KMSThrottlingException";
|
|
519
|
+
$fault = "client";
|
|
497
520
|
/**
|
|
498
521
|
* @internal
|
|
499
522
|
*/
|
|
@@ -503,14 +526,15 @@ var _KMSThrottlingException = class _KMSThrottlingException extends KinesisServi
|
|
|
503
526
|
$fault: "client",
|
|
504
527
|
...opts
|
|
505
528
|
});
|
|
506
|
-
this.name = "KMSThrottlingException";
|
|
507
|
-
this.$fault = "client";
|
|
508
529
|
Object.setPrototypeOf(this, _KMSThrottlingException.prototype);
|
|
509
530
|
}
|
|
510
531
|
};
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
532
|
+
var ProvisionedThroughputExceededException = class _ProvisionedThroughputExceededException extends KinesisServiceException {
|
|
533
|
+
static {
|
|
534
|
+
__name(this, "ProvisionedThroughputExceededException");
|
|
535
|
+
}
|
|
536
|
+
name = "ProvisionedThroughputExceededException";
|
|
537
|
+
$fault = "client";
|
|
514
538
|
/**
|
|
515
539
|
* @internal
|
|
516
540
|
*/
|
|
@@ -520,13 +544,9 @@ var _ProvisionedThroughputExceededException = class _ProvisionedThroughputExceed
|
|
|
520
544
|
$fault: "client",
|
|
521
545
|
...opts
|
|
522
546
|
});
|
|
523
|
-
this.name = "ProvisionedThroughputExceededException";
|
|
524
|
-
this.$fault = "client";
|
|
525
547
|
Object.setPrototypeOf(this, _ProvisionedThroughputExceededException.prototype);
|
|
526
548
|
}
|
|
527
549
|
};
|
|
528
|
-
__name(_ProvisionedThroughputExceededException, "ProvisionedThroughputExceededException");
|
|
529
|
-
var ProvisionedThroughputExceededException = _ProvisionedThroughputExceededException;
|
|
530
550
|
var ShardIteratorType = {
|
|
531
551
|
AFTER_SEQUENCE_NUMBER: "AFTER_SEQUENCE_NUMBER",
|
|
532
552
|
AT_SEQUENCE_NUMBER: "AT_SEQUENCE_NUMBER",
|
|
@@ -534,7 +554,12 @@ var ShardIteratorType = {
|
|
|
534
554
|
LATEST: "LATEST",
|
|
535
555
|
TRIM_HORIZON: "TRIM_HORIZON"
|
|
536
556
|
};
|
|
537
|
-
var
|
|
557
|
+
var InternalFailureException = class _InternalFailureException extends KinesisServiceException {
|
|
558
|
+
static {
|
|
559
|
+
__name(this, "InternalFailureException");
|
|
560
|
+
}
|
|
561
|
+
name = "InternalFailureException";
|
|
562
|
+
$fault = "server";
|
|
538
563
|
/**
|
|
539
564
|
* @internal
|
|
540
565
|
*/
|
|
@@ -544,13 +569,9 @@ var _InternalFailureException = class _InternalFailureException extends KinesisS
|
|
|
544
569
|
$fault: "server",
|
|
545
570
|
...opts
|
|
546
571
|
});
|
|
547
|
-
this.name = "InternalFailureException";
|
|
548
|
-
this.$fault = "server";
|
|
549
572
|
Object.setPrototypeOf(this, _InternalFailureException.prototype);
|
|
550
573
|
}
|
|
551
574
|
};
|
|
552
|
-
__name(_InternalFailureException, "InternalFailureException");
|
|
553
|
-
var InternalFailureException = _InternalFailureException;
|
|
554
575
|
var ShardFilterType = {
|
|
555
576
|
AFTER_SHARD_ID: "AFTER_SHARD_ID",
|
|
556
577
|
AT_LATEST: "AT_LATEST",
|
|
@@ -559,7 +580,12 @@ var ShardFilterType = {
|
|
|
559
580
|
FROM_TIMESTAMP: "FROM_TIMESTAMP",
|
|
560
581
|
FROM_TRIM_HORIZON: "FROM_TRIM_HORIZON"
|
|
561
582
|
};
|
|
562
|
-
var
|
|
583
|
+
var ValidationException = class _ValidationException extends KinesisServiceException {
|
|
584
|
+
static {
|
|
585
|
+
__name(this, "ValidationException");
|
|
586
|
+
}
|
|
587
|
+
name = "ValidationException";
|
|
588
|
+
$fault = "client";
|
|
563
589
|
/**
|
|
564
590
|
* @internal
|
|
565
591
|
*/
|
|
@@ -569,13 +595,9 @@ var _ValidationException = class _ValidationException extends KinesisServiceExce
|
|
|
569
595
|
$fault: "client",
|
|
570
596
|
...opts
|
|
571
597
|
});
|
|
572
|
-
this.name = "ValidationException";
|
|
573
|
-
this.$fault = "client";
|
|
574
598
|
Object.setPrototypeOf(this, _ValidationException.prototype);
|
|
575
599
|
}
|
|
576
600
|
};
|
|
577
|
-
__name(_ValidationException, "ValidationException");
|
|
578
|
-
var ValidationException = _ValidationException;
|
|
579
601
|
var SubscribeToShardEventStream;
|
|
580
602
|
((SubscribeToShardEventStream3) => {
|
|
581
603
|
SubscribeToShardEventStream3.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
@@ -1777,7 +1799,7 @@ function sharedHeaders(operation) {
|
|
|
1777
1799
|
__name(sharedHeaders, "sharedHeaders");
|
|
1778
1800
|
|
|
1779
1801
|
// src/commands/AddTagsToStreamCommand.ts
|
|
1780
|
-
var
|
|
1802
|
+
var AddTagsToStreamCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
1781
1803
|
...commonParams,
|
|
1782
1804
|
OperationType: { type: "staticContextParams", value: `control` },
|
|
1783
1805
|
StreamARN: { type: "contextParams", name: "StreamARN" }
|
|
@@ -1787,29 +1809,31 @@ var _AddTagsToStreamCommand = class _AddTagsToStreamCommand extends import_smith
|
|
|
1787
1809
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1788
1810
|
];
|
|
1789
1811
|
}).s("Kinesis_20131202", "AddTagsToStream", {}).n("KinesisClient", "AddTagsToStreamCommand").f(void 0, void 0).ser(se_AddTagsToStreamCommand).de(de_AddTagsToStreamCommand).build() {
|
|
1812
|
+
static {
|
|
1813
|
+
__name(this, "AddTagsToStreamCommand");
|
|
1814
|
+
}
|
|
1790
1815
|
};
|
|
1791
|
-
__name(_AddTagsToStreamCommand, "AddTagsToStreamCommand");
|
|
1792
|
-
var AddTagsToStreamCommand = _AddTagsToStreamCommand;
|
|
1793
1816
|
|
|
1794
1817
|
// src/commands/CreateStreamCommand.ts
|
|
1795
1818
|
|
|
1796
1819
|
|
|
1797
1820
|
|
|
1798
|
-
var
|
|
1821
|
+
var CreateStreamCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1799
1822
|
return [
|
|
1800
1823
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1801
1824
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1802
1825
|
];
|
|
1803
1826
|
}).s("Kinesis_20131202", "CreateStream", {}).n("KinesisClient", "CreateStreamCommand").f(void 0, void 0).ser(se_CreateStreamCommand).de(de_CreateStreamCommand).build() {
|
|
1827
|
+
static {
|
|
1828
|
+
__name(this, "CreateStreamCommand");
|
|
1829
|
+
}
|
|
1804
1830
|
};
|
|
1805
|
-
__name(_CreateStreamCommand, "CreateStreamCommand");
|
|
1806
|
-
var CreateStreamCommand = _CreateStreamCommand;
|
|
1807
1831
|
|
|
1808
1832
|
// src/commands/DecreaseStreamRetentionPeriodCommand.ts
|
|
1809
1833
|
|
|
1810
1834
|
|
|
1811
1835
|
|
|
1812
|
-
var
|
|
1836
|
+
var DecreaseStreamRetentionPeriodCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
1813
1837
|
...commonParams,
|
|
1814
1838
|
OperationType: { type: "staticContextParams", value: `control` },
|
|
1815
1839
|
StreamARN: { type: "contextParams", name: "StreamARN" }
|
|
@@ -1819,15 +1843,16 @@ var _DecreaseStreamRetentionPeriodCommand = class _DecreaseStreamRetentionPeriod
|
|
|
1819
1843
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1820
1844
|
];
|
|
1821
1845
|
}).s("Kinesis_20131202", "DecreaseStreamRetentionPeriod", {}).n("KinesisClient", "DecreaseStreamRetentionPeriodCommand").f(void 0, void 0).ser(se_DecreaseStreamRetentionPeriodCommand).de(de_DecreaseStreamRetentionPeriodCommand).build() {
|
|
1846
|
+
static {
|
|
1847
|
+
__name(this, "DecreaseStreamRetentionPeriodCommand");
|
|
1848
|
+
}
|
|
1822
1849
|
};
|
|
1823
|
-
__name(_DecreaseStreamRetentionPeriodCommand, "DecreaseStreamRetentionPeriodCommand");
|
|
1824
|
-
var DecreaseStreamRetentionPeriodCommand = _DecreaseStreamRetentionPeriodCommand;
|
|
1825
1850
|
|
|
1826
1851
|
// src/commands/DeleteResourcePolicyCommand.ts
|
|
1827
1852
|
|
|
1828
1853
|
|
|
1829
1854
|
|
|
1830
|
-
var
|
|
1855
|
+
var DeleteResourcePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
1831
1856
|
...commonParams,
|
|
1832
1857
|
OperationType: { type: "staticContextParams", value: `control` },
|
|
1833
1858
|
ResourceARN: { type: "contextParams", name: "ResourceARN" }
|
|
@@ -1837,15 +1862,16 @@ var _DeleteResourcePolicyCommand = class _DeleteResourcePolicyCommand extends im
|
|
|
1837
1862
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1838
1863
|
];
|
|
1839
1864
|
}).s("Kinesis_20131202", "DeleteResourcePolicy", {}).n("KinesisClient", "DeleteResourcePolicyCommand").f(void 0, void 0).ser(se_DeleteResourcePolicyCommand).de(de_DeleteResourcePolicyCommand).build() {
|
|
1865
|
+
static {
|
|
1866
|
+
__name(this, "DeleteResourcePolicyCommand");
|
|
1867
|
+
}
|
|
1840
1868
|
};
|
|
1841
|
-
__name(_DeleteResourcePolicyCommand, "DeleteResourcePolicyCommand");
|
|
1842
|
-
var DeleteResourcePolicyCommand = _DeleteResourcePolicyCommand;
|
|
1843
1869
|
|
|
1844
1870
|
// src/commands/DeleteStreamCommand.ts
|
|
1845
1871
|
|
|
1846
1872
|
|
|
1847
1873
|
|
|
1848
|
-
var
|
|
1874
|
+
var DeleteStreamCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
1849
1875
|
...commonParams,
|
|
1850
1876
|
OperationType: { type: "staticContextParams", value: `control` },
|
|
1851
1877
|
StreamARN: { type: "contextParams", name: "StreamARN" }
|
|
@@ -1855,15 +1881,16 @@ var _DeleteStreamCommand = class _DeleteStreamCommand extends import_smithy_clie
|
|
|
1855
1881
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1856
1882
|
];
|
|
1857
1883
|
}).s("Kinesis_20131202", "DeleteStream", {}).n("KinesisClient", "DeleteStreamCommand").f(void 0, void 0).ser(se_DeleteStreamCommand).de(de_DeleteStreamCommand).build() {
|
|
1884
|
+
static {
|
|
1885
|
+
__name(this, "DeleteStreamCommand");
|
|
1886
|
+
}
|
|
1858
1887
|
};
|
|
1859
|
-
__name(_DeleteStreamCommand, "DeleteStreamCommand");
|
|
1860
|
-
var DeleteStreamCommand = _DeleteStreamCommand;
|
|
1861
1888
|
|
|
1862
1889
|
// src/commands/DeregisterStreamConsumerCommand.ts
|
|
1863
1890
|
|
|
1864
1891
|
|
|
1865
1892
|
|
|
1866
|
-
var
|
|
1893
|
+
var DeregisterStreamConsumerCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
1867
1894
|
...commonParams,
|
|
1868
1895
|
OperationType: { type: "staticContextParams", value: `control` },
|
|
1869
1896
|
ConsumerARN: { type: "contextParams", name: "ConsumerARN" },
|
|
@@ -1874,29 +1901,31 @@ var _DeregisterStreamConsumerCommand = class _DeregisterStreamConsumerCommand ex
|
|
|
1874
1901
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1875
1902
|
];
|
|
1876
1903
|
}).s("Kinesis_20131202", "DeregisterStreamConsumer", {}).n("KinesisClient", "DeregisterStreamConsumerCommand").f(void 0, void 0).ser(se_DeregisterStreamConsumerCommand).de(de_DeregisterStreamConsumerCommand).build() {
|
|
1904
|
+
static {
|
|
1905
|
+
__name(this, "DeregisterStreamConsumerCommand");
|
|
1906
|
+
}
|
|
1877
1907
|
};
|
|
1878
|
-
__name(_DeregisterStreamConsumerCommand, "DeregisterStreamConsumerCommand");
|
|
1879
|
-
var DeregisterStreamConsumerCommand = _DeregisterStreamConsumerCommand;
|
|
1880
1908
|
|
|
1881
1909
|
// src/commands/DescribeLimitsCommand.ts
|
|
1882
1910
|
|
|
1883
1911
|
|
|
1884
1912
|
|
|
1885
|
-
var
|
|
1913
|
+
var DescribeLimitsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1886
1914
|
return [
|
|
1887
1915
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1888
1916
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1889
1917
|
];
|
|
1890
1918
|
}).s("Kinesis_20131202", "DescribeLimits", {}).n("KinesisClient", "DescribeLimitsCommand").f(void 0, void 0).ser(se_DescribeLimitsCommand).de(de_DescribeLimitsCommand).build() {
|
|
1919
|
+
static {
|
|
1920
|
+
__name(this, "DescribeLimitsCommand");
|
|
1921
|
+
}
|
|
1891
1922
|
};
|
|
1892
|
-
__name(_DescribeLimitsCommand, "DescribeLimitsCommand");
|
|
1893
|
-
var DescribeLimitsCommand = _DescribeLimitsCommand;
|
|
1894
1923
|
|
|
1895
1924
|
// src/commands/DescribeStreamCommand.ts
|
|
1896
1925
|
|
|
1897
1926
|
|
|
1898
1927
|
|
|
1899
|
-
var
|
|
1928
|
+
var DescribeStreamCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
1900
1929
|
...commonParams,
|
|
1901
1930
|
OperationType: { type: "staticContextParams", value: `control` },
|
|
1902
1931
|
StreamARN: { type: "contextParams", name: "StreamARN" }
|
|
@@ -1906,15 +1935,16 @@ var _DescribeStreamCommand = class _DescribeStreamCommand extends import_smithy_
|
|
|
1906
1935
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1907
1936
|
];
|
|
1908
1937
|
}).s("Kinesis_20131202", "DescribeStream", {}).n("KinesisClient", "DescribeStreamCommand").f(void 0, void 0).ser(se_DescribeStreamCommand).de(de_DescribeStreamCommand).build() {
|
|
1938
|
+
static {
|
|
1939
|
+
__name(this, "DescribeStreamCommand");
|
|
1940
|
+
}
|
|
1909
1941
|
};
|
|
1910
|
-
__name(_DescribeStreamCommand, "DescribeStreamCommand");
|
|
1911
|
-
var DescribeStreamCommand = _DescribeStreamCommand;
|
|
1912
1942
|
|
|
1913
1943
|
// src/commands/DescribeStreamConsumerCommand.ts
|
|
1914
1944
|
|
|
1915
1945
|
|
|
1916
1946
|
|
|
1917
|
-
var
|
|
1947
|
+
var DescribeStreamConsumerCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
1918
1948
|
...commonParams,
|
|
1919
1949
|
OperationType: { type: "staticContextParams", value: `control` },
|
|
1920
1950
|
ConsumerARN: { type: "contextParams", name: "ConsumerARN" },
|
|
@@ -1925,15 +1955,16 @@ var _DescribeStreamConsumerCommand = class _DescribeStreamConsumerCommand extend
|
|
|
1925
1955
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1926
1956
|
];
|
|
1927
1957
|
}).s("Kinesis_20131202", "DescribeStreamConsumer", {}).n("KinesisClient", "DescribeStreamConsumerCommand").f(void 0, void 0).ser(se_DescribeStreamConsumerCommand).de(de_DescribeStreamConsumerCommand).build() {
|
|
1958
|
+
static {
|
|
1959
|
+
__name(this, "DescribeStreamConsumerCommand");
|
|
1960
|
+
}
|
|
1928
1961
|
};
|
|
1929
|
-
__name(_DescribeStreamConsumerCommand, "DescribeStreamConsumerCommand");
|
|
1930
|
-
var DescribeStreamConsumerCommand = _DescribeStreamConsumerCommand;
|
|
1931
1962
|
|
|
1932
1963
|
// src/commands/DescribeStreamSummaryCommand.ts
|
|
1933
1964
|
|
|
1934
1965
|
|
|
1935
1966
|
|
|
1936
|
-
var
|
|
1967
|
+
var DescribeStreamSummaryCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
1937
1968
|
...commonParams,
|
|
1938
1969
|
OperationType: { type: "staticContextParams", value: `control` },
|
|
1939
1970
|
StreamARN: { type: "contextParams", name: "StreamARN" }
|
|
@@ -1943,15 +1974,16 @@ var _DescribeStreamSummaryCommand = class _DescribeStreamSummaryCommand extends
|
|
|
1943
1974
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1944
1975
|
];
|
|
1945
1976
|
}).s("Kinesis_20131202", "DescribeStreamSummary", {}).n("KinesisClient", "DescribeStreamSummaryCommand").f(void 0, void 0).ser(se_DescribeStreamSummaryCommand).de(de_DescribeStreamSummaryCommand).build() {
|
|
1977
|
+
static {
|
|
1978
|
+
__name(this, "DescribeStreamSummaryCommand");
|
|
1979
|
+
}
|
|
1946
1980
|
};
|
|
1947
|
-
__name(_DescribeStreamSummaryCommand, "DescribeStreamSummaryCommand");
|
|
1948
|
-
var DescribeStreamSummaryCommand = _DescribeStreamSummaryCommand;
|
|
1949
1981
|
|
|
1950
1982
|
// src/commands/DisableEnhancedMonitoringCommand.ts
|
|
1951
1983
|
|
|
1952
1984
|
|
|
1953
1985
|
|
|
1954
|
-
var
|
|
1986
|
+
var DisableEnhancedMonitoringCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
1955
1987
|
...commonParams,
|
|
1956
1988
|
OperationType: { type: "staticContextParams", value: `control` },
|
|
1957
1989
|
StreamARN: { type: "contextParams", name: "StreamARN" }
|
|
@@ -1961,15 +1993,16 @@ var _DisableEnhancedMonitoringCommand = class _DisableEnhancedMonitoringCommand
|
|
|
1961
1993
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1962
1994
|
];
|
|
1963
1995
|
}).s("Kinesis_20131202", "DisableEnhancedMonitoring", {}).n("KinesisClient", "DisableEnhancedMonitoringCommand").f(void 0, void 0).ser(se_DisableEnhancedMonitoringCommand).de(de_DisableEnhancedMonitoringCommand).build() {
|
|
1996
|
+
static {
|
|
1997
|
+
__name(this, "DisableEnhancedMonitoringCommand");
|
|
1998
|
+
}
|
|
1964
1999
|
};
|
|
1965
|
-
__name(_DisableEnhancedMonitoringCommand, "DisableEnhancedMonitoringCommand");
|
|
1966
|
-
var DisableEnhancedMonitoringCommand = _DisableEnhancedMonitoringCommand;
|
|
1967
2000
|
|
|
1968
2001
|
// src/commands/EnableEnhancedMonitoringCommand.ts
|
|
1969
2002
|
|
|
1970
2003
|
|
|
1971
2004
|
|
|
1972
|
-
var
|
|
2005
|
+
var EnableEnhancedMonitoringCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
1973
2006
|
...commonParams,
|
|
1974
2007
|
OperationType: { type: "staticContextParams", value: `control` },
|
|
1975
2008
|
StreamARN: { type: "contextParams", name: "StreamARN" }
|
|
@@ -1979,15 +2012,16 @@ var _EnableEnhancedMonitoringCommand = class _EnableEnhancedMonitoringCommand ex
|
|
|
1979
2012
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1980
2013
|
];
|
|
1981
2014
|
}).s("Kinesis_20131202", "EnableEnhancedMonitoring", {}).n("KinesisClient", "EnableEnhancedMonitoringCommand").f(void 0, void 0).ser(se_EnableEnhancedMonitoringCommand).de(de_EnableEnhancedMonitoringCommand).build() {
|
|
2015
|
+
static {
|
|
2016
|
+
__name(this, "EnableEnhancedMonitoringCommand");
|
|
2017
|
+
}
|
|
1982
2018
|
};
|
|
1983
|
-
__name(_EnableEnhancedMonitoringCommand, "EnableEnhancedMonitoringCommand");
|
|
1984
|
-
var EnableEnhancedMonitoringCommand = _EnableEnhancedMonitoringCommand;
|
|
1985
2019
|
|
|
1986
2020
|
// src/commands/GetRecordsCommand.ts
|
|
1987
2021
|
|
|
1988
2022
|
|
|
1989
2023
|
|
|
1990
|
-
var
|
|
2024
|
+
var GetRecordsCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
1991
2025
|
...commonParams,
|
|
1992
2026
|
OperationType: { type: "staticContextParams", value: `data` },
|
|
1993
2027
|
StreamARN: { type: "contextParams", name: "StreamARN" }
|
|
@@ -1997,15 +2031,16 @@ var _GetRecordsCommand = class _GetRecordsCommand extends import_smithy_client.C
|
|
|
1997
2031
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1998
2032
|
];
|
|
1999
2033
|
}).s("Kinesis_20131202", "GetRecords", {}).n("KinesisClient", "GetRecordsCommand").f(void 0, void 0).ser(se_GetRecordsCommand).de(de_GetRecordsCommand).build() {
|
|
2034
|
+
static {
|
|
2035
|
+
__name(this, "GetRecordsCommand");
|
|
2036
|
+
}
|
|
2000
2037
|
};
|
|
2001
|
-
__name(_GetRecordsCommand, "GetRecordsCommand");
|
|
2002
|
-
var GetRecordsCommand = _GetRecordsCommand;
|
|
2003
2038
|
|
|
2004
2039
|
// src/commands/GetResourcePolicyCommand.ts
|
|
2005
2040
|
|
|
2006
2041
|
|
|
2007
2042
|
|
|
2008
|
-
var
|
|
2043
|
+
var GetResourcePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
2009
2044
|
...commonParams,
|
|
2010
2045
|
OperationType: { type: "staticContextParams", value: `control` },
|
|
2011
2046
|
ResourceARN: { type: "contextParams", name: "ResourceARN" }
|
|
@@ -2015,15 +2050,16 @@ var _GetResourcePolicyCommand = class _GetResourcePolicyCommand extends import_s
|
|
|
2015
2050
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2016
2051
|
];
|
|
2017
2052
|
}).s("Kinesis_20131202", "GetResourcePolicy", {}).n("KinesisClient", "GetResourcePolicyCommand").f(void 0, void 0).ser(se_GetResourcePolicyCommand).de(de_GetResourcePolicyCommand).build() {
|
|
2053
|
+
static {
|
|
2054
|
+
__name(this, "GetResourcePolicyCommand");
|
|
2055
|
+
}
|
|
2018
2056
|
};
|
|
2019
|
-
__name(_GetResourcePolicyCommand, "GetResourcePolicyCommand");
|
|
2020
|
-
var GetResourcePolicyCommand = _GetResourcePolicyCommand;
|
|
2021
2057
|
|
|
2022
2058
|
// src/commands/GetShardIteratorCommand.ts
|
|
2023
2059
|
|
|
2024
2060
|
|
|
2025
2061
|
|
|
2026
|
-
var
|
|
2062
|
+
var GetShardIteratorCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
2027
2063
|
...commonParams,
|
|
2028
2064
|
OperationType: { type: "staticContextParams", value: `data` },
|
|
2029
2065
|
StreamARN: { type: "contextParams", name: "StreamARN" }
|
|
@@ -2033,15 +2069,16 @@ var _GetShardIteratorCommand = class _GetShardIteratorCommand extends import_smi
|
|
|
2033
2069
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2034
2070
|
];
|
|
2035
2071
|
}).s("Kinesis_20131202", "GetShardIterator", {}).n("KinesisClient", "GetShardIteratorCommand").f(void 0, void 0).ser(se_GetShardIteratorCommand).de(de_GetShardIteratorCommand).build() {
|
|
2072
|
+
static {
|
|
2073
|
+
__name(this, "GetShardIteratorCommand");
|
|
2074
|
+
}
|
|
2036
2075
|
};
|
|
2037
|
-
__name(_GetShardIteratorCommand, "GetShardIteratorCommand");
|
|
2038
|
-
var GetShardIteratorCommand = _GetShardIteratorCommand;
|
|
2039
2076
|
|
|
2040
2077
|
// src/commands/IncreaseStreamRetentionPeriodCommand.ts
|
|
2041
2078
|
|
|
2042
2079
|
|
|
2043
2080
|
|
|
2044
|
-
var
|
|
2081
|
+
var IncreaseStreamRetentionPeriodCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
2045
2082
|
...commonParams,
|
|
2046
2083
|
OperationType: { type: "staticContextParams", value: `control` },
|
|
2047
2084
|
StreamARN: { type: "contextParams", name: "StreamARN" }
|
|
@@ -2051,15 +2088,16 @@ var _IncreaseStreamRetentionPeriodCommand = class _IncreaseStreamRetentionPeriod
|
|
|
2051
2088
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2052
2089
|
];
|
|
2053
2090
|
}).s("Kinesis_20131202", "IncreaseStreamRetentionPeriod", {}).n("KinesisClient", "IncreaseStreamRetentionPeriodCommand").f(void 0, void 0).ser(se_IncreaseStreamRetentionPeriodCommand).de(de_IncreaseStreamRetentionPeriodCommand).build() {
|
|
2091
|
+
static {
|
|
2092
|
+
__name(this, "IncreaseStreamRetentionPeriodCommand");
|
|
2093
|
+
}
|
|
2054
2094
|
};
|
|
2055
|
-
__name(_IncreaseStreamRetentionPeriodCommand, "IncreaseStreamRetentionPeriodCommand");
|
|
2056
|
-
var IncreaseStreamRetentionPeriodCommand = _IncreaseStreamRetentionPeriodCommand;
|
|
2057
2095
|
|
|
2058
2096
|
// src/commands/ListShardsCommand.ts
|
|
2059
2097
|
|
|
2060
2098
|
|
|
2061
2099
|
|
|
2062
|
-
var
|
|
2100
|
+
var ListShardsCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
2063
2101
|
...commonParams,
|
|
2064
2102
|
OperationType: { type: "staticContextParams", value: `control` },
|
|
2065
2103
|
StreamARN: { type: "contextParams", name: "StreamARN" }
|
|
@@ -2069,15 +2107,16 @@ var _ListShardsCommand = class _ListShardsCommand extends import_smithy_client.C
|
|
|
2069
2107
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2070
2108
|
];
|
|
2071
2109
|
}).s("Kinesis_20131202", "ListShards", {}).n("KinesisClient", "ListShardsCommand").f(void 0, void 0).ser(se_ListShardsCommand).de(de_ListShardsCommand).build() {
|
|
2110
|
+
static {
|
|
2111
|
+
__name(this, "ListShardsCommand");
|
|
2112
|
+
}
|
|
2072
2113
|
};
|
|
2073
|
-
__name(_ListShardsCommand, "ListShardsCommand");
|
|
2074
|
-
var ListShardsCommand = _ListShardsCommand;
|
|
2075
2114
|
|
|
2076
2115
|
// src/commands/ListStreamConsumersCommand.ts
|
|
2077
2116
|
|
|
2078
2117
|
|
|
2079
2118
|
|
|
2080
|
-
var
|
|
2119
|
+
var ListStreamConsumersCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
2081
2120
|
...commonParams,
|
|
2082
2121
|
OperationType: { type: "staticContextParams", value: `control` },
|
|
2083
2122
|
StreamARN: { type: "contextParams", name: "StreamARN" }
|
|
@@ -2087,29 +2126,31 @@ var _ListStreamConsumersCommand = class _ListStreamConsumersCommand extends impo
|
|
|
2087
2126
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2088
2127
|
];
|
|
2089
2128
|
}).s("Kinesis_20131202", "ListStreamConsumers", {}).n("KinesisClient", "ListStreamConsumersCommand").f(void 0, void 0).ser(se_ListStreamConsumersCommand).de(de_ListStreamConsumersCommand).build() {
|
|
2129
|
+
static {
|
|
2130
|
+
__name(this, "ListStreamConsumersCommand");
|
|
2131
|
+
}
|
|
2090
2132
|
};
|
|
2091
|
-
__name(_ListStreamConsumersCommand, "ListStreamConsumersCommand");
|
|
2092
|
-
var ListStreamConsumersCommand = _ListStreamConsumersCommand;
|
|
2093
2133
|
|
|
2094
2134
|
// src/commands/ListStreamsCommand.ts
|
|
2095
2135
|
|
|
2096
2136
|
|
|
2097
2137
|
|
|
2098
|
-
var
|
|
2138
|
+
var ListStreamsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2099
2139
|
return [
|
|
2100
2140
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2101
2141
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2102
2142
|
];
|
|
2103
2143
|
}).s("Kinesis_20131202", "ListStreams", {}).n("KinesisClient", "ListStreamsCommand").f(void 0, void 0).ser(se_ListStreamsCommand).de(de_ListStreamsCommand).build() {
|
|
2144
|
+
static {
|
|
2145
|
+
__name(this, "ListStreamsCommand");
|
|
2146
|
+
}
|
|
2104
2147
|
};
|
|
2105
|
-
__name(_ListStreamsCommand, "ListStreamsCommand");
|
|
2106
|
-
var ListStreamsCommand = _ListStreamsCommand;
|
|
2107
2148
|
|
|
2108
2149
|
// src/commands/ListTagsForStreamCommand.ts
|
|
2109
2150
|
|
|
2110
2151
|
|
|
2111
2152
|
|
|
2112
|
-
var
|
|
2153
|
+
var ListTagsForStreamCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
2113
2154
|
...commonParams,
|
|
2114
2155
|
OperationType: { type: "staticContextParams", value: `control` },
|
|
2115
2156
|
StreamARN: { type: "contextParams", name: "StreamARN" }
|
|
@@ -2119,15 +2160,16 @@ var _ListTagsForStreamCommand = class _ListTagsForStreamCommand extends import_s
|
|
|
2119
2160
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2120
2161
|
];
|
|
2121
2162
|
}).s("Kinesis_20131202", "ListTagsForStream", {}).n("KinesisClient", "ListTagsForStreamCommand").f(void 0, void 0).ser(se_ListTagsForStreamCommand).de(de_ListTagsForStreamCommand).build() {
|
|
2163
|
+
static {
|
|
2164
|
+
__name(this, "ListTagsForStreamCommand");
|
|
2165
|
+
}
|
|
2122
2166
|
};
|
|
2123
|
-
__name(_ListTagsForStreamCommand, "ListTagsForStreamCommand");
|
|
2124
|
-
var ListTagsForStreamCommand = _ListTagsForStreamCommand;
|
|
2125
2167
|
|
|
2126
2168
|
// src/commands/MergeShardsCommand.ts
|
|
2127
2169
|
|
|
2128
2170
|
|
|
2129
2171
|
|
|
2130
|
-
var
|
|
2172
|
+
var MergeShardsCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
2131
2173
|
...commonParams,
|
|
2132
2174
|
OperationType: { type: "staticContextParams", value: `control` },
|
|
2133
2175
|
StreamARN: { type: "contextParams", name: "StreamARN" }
|
|
@@ -2137,15 +2179,16 @@ var _MergeShardsCommand = class _MergeShardsCommand extends import_smithy_client
|
|
|
2137
2179
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2138
2180
|
];
|
|
2139
2181
|
}).s("Kinesis_20131202", "MergeShards", {}).n("KinesisClient", "MergeShardsCommand").f(void 0, void 0).ser(se_MergeShardsCommand).de(de_MergeShardsCommand).build() {
|
|
2182
|
+
static {
|
|
2183
|
+
__name(this, "MergeShardsCommand");
|
|
2184
|
+
}
|
|
2140
2185
|
};
|
|
2141
|
-
__name(_MergeShardsCommand, "MergeShardsCommand");
|
|
2142
|
-
var MergeShardsCommand = _MergeShardsCommand;
|
|
2143
2186
|
|
|
2144
2187
|
// src/commands/PutRecordCommand.ts
|
|
2145
2188
|
|
|
2146
2189
|
|
|
2147
2190
|
|
|
2148
|
-
var
|
|
2191
|
+
var PutRecordCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
2149
2192
|
...commonParams,
|
|
2150
2193
|
OperationType: { type: "staticContextParams", value: `data` },
|
|
2151
2194
|
StreamARN: { type: "contextParams", name: "StreamARN" }
|
|
@@ -2155,15 +2198,16 @@ var _PutRecordCommand = class _PutRecordCommand extends import_smithy_client.Com
|
|
|
2155
2198
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2156
2199
|
];
|
|
2157
2200
|
}).s("Kinesis_20131202", "PutRecord", {}).n("KinesisClient", "PutRecordCommand").f(void 0, void 0).ser(se_PutRecordCommand).de(de_PutRecordCommand).build() {
|
|
2201
|
+
static {
|
|
2202
|
+
__name(this, "PutRecordCommand");
|
|
2203
|
+
}
|
|
2158
2204
|
};
|
|
2159
|
-
__name(_PutRecordCommand, "PutRecordCommand");
|
|
2160
|
-
var PutRecordCommand = _PutRecordCommand;
|
|
2161
2205
|
|
|
2162
2206
|
// src/commands/PutRecordsCommand.ts
|
|
2163
2207
|
|
|
2164
2208
|
|
|
2165
2209
|
|
|
2166
|
-
var
|
|
2210
|
+
var PutRecordsCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
2167
2211
|
...commonParams,
|
|
2168
2212
|
OperationType: { type: "staticContextParams", value: `data` },
|
|
2169
2213
|
StreamARN: { type: "contextParams", name: "StreamARN" }
|
|
@@ -2173,15 +2217,16 @@ var _PutRecordsCommand = class _PutRecordsCommand extends import_smithy_client.C
|
|
|
2173
2217
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2174
2218
|
];
|
|
2175
2219
|
}).s("Kinesis_20131202", "PutRecords", {}).n("KinesisClient", "PutRecordsCommand").f(void 0, void 0).ser(se_PutRecordsCommand).de(de_PutRecordsCommand).build() {
|
|
2220
|
+
static {
|
|
2221
|
+
__name(this, "PutRecordsCommand");
|
|
2222
|
+
}
|
|
2176
2223
|
};
|
|
2177
|
-
__name(_PutRecordsCommand, "PutRecordsCommand");
|
|
2178
|
-
var PutRecordsCommand = _PutRecordsCommand;
|
|
2179
2224
|
|
|
2180
2225
|
// src/commands/PutResourcePolicyCommand.ts
|
|
2181
2226
|
|
|
2182
2227
|
|
|
2183
2228
|
|
|
2184
|
-
var
|
|
2229
|
+
var PutResourcePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
2185
2230
|
...commonParams,
|
|
2186
2231
|
OperationType: { type: "staticContextParams", value: `control` },
|
|
2187
2232
|
ResourceARN: { type: "contextParams", name: "ResourceARN" }
|
|
@@ -2191,15 +2236,16 @@ var _PutResourcePolicyCommand = class _PutResourcePolicyCommand extends import_s
|
|
|
2191
2236
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2192
2237
|
];
|
|
2193
2238
|
}).s("Kinesis_20131202", "PutResourcePolicy", {}).n("KinesisClient", "PutResourcePolicyCommand").f(void 0, void 0).ser(se_PutResourcePolicyCommand).de(de_PutResourcePolicyCommand).build() {
|
|
2239
|
+
static {
|
|
2240
|
+
__name(this, "PutResourcePolicyCommand");
|
|
2241
|
+
}
|
|
2194
2242
|
};
|
|
2195
|
-
__name(_PutResourcePolicyCommand, "PutResourcePolicyCommand");
|
|
2196
|
-
var PutResourcePolicyCommand = _PutResourcePolicyCommand;
|
|
2197
2243
|
|
|
2198
2244
|
// src/commands/RegisterStreamConsumerCommand.ts
|
|
2199
2245
|
|
|
2200
2246
|
|
|
2201
2247
|
|
|
2202
|
-
var
|
|
2248
|
+
var RegisterStreamConsumerCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
2203
2249
|
...commonParams,
|
|
2204
2250
|
OperationType: { type: "staticContextParams", value: `control` },
|
|
2205
2251
|
StreamARN: { type: "contextParams", name: "StreamARN" }
|
|
@@ -2209,15 +2255,16 @@ var _RegisterStreamConsumerCommand = class _RegisterStreamConsumerCommand extend
|
|
|
2209
2255
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2210
2256
|
];
|
|
2211
2257
|
}).s("Kinesis_20131202", "RegisterStreamConsumer", {}).n("KinesisClient", "RegisterStreamConsumerCommand").f(void 0, void 0).ser(se_RegisterStreamConsumerCommand).de(de_RegisterStreamConsumerCommand).build() {
|
|
2258
|
+
static {
|
|
2259
|
+
__name(this, "RegisterStreamConsumerCommand");
|
|
2260
|
+
}
|
|
2212
2261
|
};
|
|
2213
|
-
__name(_RegisterStreamConsumerCommand, "RegisterStreamConsumerCommand");
|
|
2214
|
-
var RegisterStreamConsumerCommand = _RegisterStreamConsumerCommand;
|
|
2215
2262
|
|
|
2216
2263
|
// src/commands/RemoveTagsFromStreamCommand.ts
|
|
2217
2264
|
|
|
2218
2265
|
|
|
2219
2266
|
|
|
2220
|
-
var
|
|
2267
|
+
var RemoveTagsFromStreamCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
2221
2268
|
...commonParams,
|
|
2222
2269
|
OperationType: { type: "staticContextParams", value: `control` },
|
|
2223
2270
|
StreamARN: { type: "contextParams", name: "StreamARN" }
|
|
@@ -2227,15 +2274,16 @@ var _RemoveTagsFromStreamCommand = class _RemoveTagsFromStreamCommand extends im
|
|
|
2227
2274
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2228
2275
|
];
|
|
2229
2276
|
}).s("Kinesis_20131202", "RemoveTagsFromStream", {}).n("KinesisClient", "RemoveTagsFromStreamCommand").f(void 0, void 0).ser(se_RemoveTagsFromStreamCommand).de(de_RemoveTagsFromStreamCommand).build() {
|
|
2277
|
+
static {
|
|
2278
|
+
__name(this, "RemoveTagsFromStreamCommand");
|
|
2279
|
+
}
|
|
2230
2280
|
};
|
|
2231
|
-
__name(_RemoveTagsFromStreamCommand, "RemoveTagsFromStreamCommand");
|
|
2232
|
-
var RemoveTagsFromStreamCommand = _RemoveTagsFromStreamCommand;
|
|
2233
2281
|
|
|
2234
2282
|
// src/commands/SplitShardCommand.ts
|
|
2235
2283
|
|
|
2236
2284
|
|
|
2237
2285
|
|
|
2238
|
-
var
|
|
2286
|
+
var SplitShardCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
2239
2287
|
...commonParams,
|
|
2240
2288
|
OperationType: { type: "staticContextParams", value: `control` },
|
|
2241
2289
|
StreamARN: { type: "contextParams", name: "StreamARN" }
|
|
@@ -2245,15 +2293,16 @@ var _SplitShardCommand = class _SplitShardCommand extends import_smithy_client.C
|
|
|
2245
2293
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2246
2294
|
];
|
|
2247
2295
|
}).s("Kinesis_20131202", "SplitShard", {}).n("KinesisClient", "SplitShardCommand").f(void 0, void 0).ser(se_SplitShardCommand).de(de_SplitShardCommand).build() {
|
|
2296
|
+
static {
|
|
2297
|
+
__name(this, "SplitShardCommand");
|
|
2298
|
+
}
|
|
2248
2299
|
};
|
|
2249
|
-
__name(_SplitShardCommand, "SplitShardCommand");
|
|
2250
|
-
var SplitShardCommand = _SplitShardCommand;
|
|
2251
2300
|
|
|
2252
2301
|
// src/commands/StartStreamEncryptionCommand.ts
|
|
2253
2302
|
|
|
2254
2303
|
|
|
2255
2304
|
|
|
2256
|
-
var
|
|
2305
|
+
var StartStreamEncryptionCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
2257
2306
|
...commonParams,
|
|
2258
2307
|
OperationType: { type: "staticContextParams", value: `control` },
|
|
2259
2308
|
StreamARN: { type: "contextParams", name: "StreamARN" }
|
|
@@ -2263,15 +2312,16 @@ var _StartStreamEncryptionCommand = class _StartStreamEncryptionCommand extends
|
|
|
2263
2312
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2264
2313
|
];
|
|
2265
2314
|
}).s("Kinesis_20131202", "StartStreamEncryption", {}).n("KinesisClient", "StartStreamEncryptionCommand").f(void 0, void 0).ser(se_StartStreamEncryptionCommand).de(de_StartStreamEncryptionCommand).build() {
|
|
2315
|
+
static {
|
|
2316
|
+
__name(this, "StartStreamEncryptionCommand");
|
|
2317
|
+
}
|
|
2266
2318
|
};
|
|
2267
|
-
__name(_StartStreamEncryptionCommand, "StartStreamEncryptionCommand");
|
|
2268
|
-
var StartStreamEncryptionCommand = _StartStreamEncryptionCommand;
|
|
2269
2319
|
|
|
2270
2320
|
// src/commands/StopStreamEncryptionCommand.ts
|
|
2271
2321
|
|
|
2272
2322
|
|
|
2273
2323
|
|
|
2274
|
-
var
|
|
2324
|
+
var StopStreamEncryptionCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
2275
2325
|
...commonParams,
|
|
2276
2326
|
OperationType: { type: "staticContextParams", value: `control` },
|
|
2277
2327
|
StreamARN: { type: "contextParams", name: "StreamARN" }
|
|
@@ -2281,15 +2331,16 @@ var _StopStreamEncryptionCommand = class _StopStreamEncryptionCommand extends im
|
|
|
2281
2331
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2282
2332
|
];
|
|
2283
2333
|
}).s("Kinesis_20131202", "StopStreamEncryption", {}).n("KinesisClient", "StopStreamEncryptionCommand").f(void 0, void 0).ser(se_StopStreamEncryptionCommand).de(de_StopStreamEncryptionCommand).build() {
|
|
2334
|
+
static {
|
|
2335
|
+
__name(this, "StopStreamEncryptionCommand");
|
|
2336
|
+
}
|
|
2284
2337
|
};
|
|
2285
|
-
__name(_StopStreamEncryptionCommand, "StopStreamEncryptionCommand");
|
|
2286
|
-
var StopStreamEncryptionCommand = _StopStreamEncryptionCommand;
|
|
2287
2338
|
|
|
2288
2339
|
// src/commands/SubscribeToShardCommand.ts
|
|
2289
2340
|
|
|
2290
2341
|
|
|
2291
2342
|
|
|
2292
|
-
var
|
|
2343
|
+
var SubscribeToShardCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
2293
2344
|
...commonParams,
|
|
2294
2345
|
OperationType: { type: "staticContextParams", value: `data` },
|
|
2295
2346
|
ConsumerARN: { type: "contextParams", name: "ConsumerARN" }
|
|
@@ -2306,15 +2357,16 @@ var _SubscribeToShardCommand = class _SubscribeToShardCommand extends import_smi
|
|
|
2306
2357
|
output: true
|
|
2307
2358
|
}
|
|
2308
2359
|
}).n("KinesisClient", "SubscribeToShardCommand").f(void 0, SubscribeToShardOutputFilterSensitiveLog).ser(se_SubscribeToShardCommand).de(de_SubscribeToShardCommand).build() {
|
|
2360
|
+
static {
|
|
2361
|
+
__name(this, "SubscribeToShardCommand");
|
|
2362
|
+
}
|
|
2309
2363
|
};
|
|
2310
|
-
__name(_SubscribeToShardCommand, "SubscribeToShardCommand");
|
|
2311
|
-
var SubscribeToShardCommand = _SubscribeToShardCommand;
|
|
2312
2364
|
|
|
2313
2365
|
// src/commands/UpdateShardCountCommand.ts
|
|
2314
2366
|
|
|
2315
2367
|
|
|
2316
2368
|
|
|
2317
|
-
var
|
|
2369
|
+
var UpdateShardCountCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
2318
2370
|
...commonParams,
|
|
2319
2371
|
OperationType: { type: "staticContextParams", value: `control` },
|
|
2320
2372
|
StreamARN: { type: "contextParams", name: "StreamARN" }
|
|
@@ -2324,15 +2376,16 @@ var _UpdateShardCountCommand = class _UpdateShardCountCommand extends import_smi
|
|
|
2324
2376
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2325
2377
|
];
|
|
2326
2378
|
}).s("Kinesis_20131202", "UpdateShardCount", {}).n("KinesisClient", "UpdateShardCountCommand").f(void 0, void 0).ser(se_UpdateShardCountCommand).de(de_UpdateShardCountCommand).build() {
|
|
2379
|
+
static {
|
|
2380
|
+
__name(this, "UpdateShardCountCommand");
|
|
2381
|
+
}
|
|
2327
2382
|
};
|
|
2328
|
-
__name(_UpdateShardCountCommand, "UpdateShardCountCommand");
|
|
2329
|
-
var UpdateShardCountCommand = _UpdateShardCountCommand;
|
|
2330
2383
|
|
|
2331
2384
|
// src/commands/UpdateStreamModeCommand.ts
|
|
2332
2385
|
|
|
2333
2386
|
|
|
2334
2387
|
|
|
2335
|
-
var
|
|
2388
|
+
var UpdateStreamModeCommand = class extends import_smithy_client.Command.classBuilder().ep({
|
|
2336
2389
|
...commonParams,
|
|
2337
2390
|
OperationType: { type: "staticContextParams", value: `control` },
|
|
2338
2391
|
StreamARN: { type: "contextParams", name: "StreamARN" }
|
|
@@ -2342,9 +2395,10 @@ var _UpdateStreamModeCommand = class _UpdateStreamModeCommand extends import_smi
|
|
|
2342
2395
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2343
2396
|
];
|
|
2344
2397
|
}).s("Kinesis_20131202", "UpdateStreamMode", {}).n("KinesisClient", "UpdateStreamModeCommand").f(void 0, void 0).ser(se_UpdateStreamModeCommand).de(de_UpdateStreamModeCommand).build() {
|
|
2398
|
+
static {
|
|
2399
|
+
__name(this, "UpdateStreamModeCommand");
|
|
2400
|
+
}
|
|
2345
2401
|
};
|
|
2346
|
-
__name(_UpdateStreamModeCommand, "UpdateStreamModeCommand");
|
|
2347
|
-
var UpdateStreamModeCommand = _UpdateStreamModeCommand;
|
|
2348
2402
|
|
|
2349
2403
|
// src/Kinesis.ts
|
|
2350
2404
|
var commands = {
|
|
@@ -2381,10 +2435,11 @@ var commands = {
|
|
|
2381
2435
|
UpdateShardCountCommand,
|
|
2382
2436
|
UpdateStreamModeCommand
|
|
2383
2437
|
};
|
|
2384
|
-
var
|
|
2438
|
+
var Kinesis = class extends KinesisClient {
|
|
2439
|
+
static {
|
|
2440
|
+
__name(this, "Kinesis");
|
|
2441
|
+
}
|
|
2385
2442
|
};
|
|
2386
|
-
__name(_Kinesis, "Kinesis");
|
|
2387
|
-
var Kinesis = _Kinesis;
|
|
2388
2443
|
(0, import_smithy_client.createAggregatedClient)(commands, Kinesis);
|
|
2389
2444
|
|
|
2390
2445
|
// src/pagination/ListStreamConsumersPaginator.ts
|