@aws-sdk/client-elasticache 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 +855 -740
- package/dist-es/ElastiCacheClient.js +1 -0
- package/dist-es/models/models_0.js +144 -144
- package/dist-es/models/models_1.js +8 -8
- 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 +44 -44
package/dist-cjs/index.js
CHANGED
|
@@ -330,7 +330,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
330
330
|
}, "resolveRuntimeExtensions");
|
|
331
331
|
|
|
332
332
|
// src/ElastiCacheClient.ts
|
|
333
|
-
var
|
|
333
|
+
var ElastiCacheClient = class extends import_smithy_client.Client {
|
|
334
|
+
static {
|
|
335
|
+
__name(this, "ElastiCacheClient");
|
|
336
|
+
}
|
|
337
|
+
/**
|
|
338
|
+
* The resolved configuration of ElastiCacheClient class. This is resolved and normalized from the {@link ElastiCacheClientConfig | constructor configuration interface}.
|
|
339
|
+
*/
|
|
340
|
+
config;
|
|
334
341
|
constructor(...[configuration]) {
|
|
335
342
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
336
343
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -340,7 +347,7 @@ var _ElastiCacheClient = class _ElastiCacheClient extends import_smithy_client.C
|
|
|
340
347
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
341
348
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
342
349
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
343
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
350
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
344
351
|
super(_config_8);
|
|
345
352
|
this.config = _config_8;
|
|
346
353
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -368,8 +375,6 @@ var _ElastiCacheClient = class _ElastiCacheClient extends import_smithy_client.C
|
|
|
368
375
|
super.destroy();
|
|
369
376
|
}
|
|
370
377
|
};
|
|
371
|
-
__name(_ElastiCacheClient, "ElastiCacheClient");
|
|
372
|
-
var ElastiCacheClient = _ElastiCacheClient;
|
|
373
378
|
|
|
374
379
|
// src/ElastiCache.ts
|
|
375
380
|
|
|
@@ -386,7 +391,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
386
391
|
|
|
387
392
|
// src/models/ElastiCacheServiceException.ts
|
|
388
393
|
|
|
389
|
-
var
|
|
394
|
+
var ElastiCacheServiceException = class _ElastiCacheServiceException extends import_smithy_client.ServiceException {
|
|
395
|
+
static {
|
|
396
|
+
__name(this, "ElastiCacheServiceException");
|
|
397
|
+
}
|
|
390
398
|
/**
|
|
391
399
|
* @internal
|
|
392
400
|
*/
|
|
@@ -395,11 +403,14 @@ var _ElastiCacheServiceException = class _ElastiCacheServiceException extends im
|
|
|
395
403
|
Object.setPrototypeOf(this, _ElastiCacheServiceException.prototype);
|
|
396
404
|
}
|
|
397
405
|
};
|
|
398
|
-
__name(_ElastiCacheServiceException, "ElastiCacheServiceException");
|
|
399
|
-
var ElastiCacheServiceException = _ElastiCacheServiceException;
|
|
400
406
|
|
|
401
407
|
// src/models/models_0.ts
|
|
402
|
-
var
|
|
408
|
+
var CacheClusterNotFoundFault = class _CacheClusterNotFoundFault extends ElastiCacheServiceException {
|
|
409
|
+
static {
|
|
410
|
+
__name(this, "CacheClusterNotFoundFault");
|
|
411
|
+
}
|
|
412
|
+
name = "CacheClusterNotFoundFault";
|
|
413
|
+
$fault = "client";
|
|
403
414
|
/**
|
|
404
415
|
* @internal
|
|
405
416
|
*/
|
|
@@ -409,14 +420,15 @@ var _CacheClusterNotFoundFault = class _CacheClusterNotFoundFault extends Elasti
|
|
|
409
420
|
$fault: "client",
|
|
410
421
|
...opts
|
|
411
422
|
});
|
|
412
|
-
this.name = "CacheClusterNotFoundFault";
|
|
413
|
-
this.$fault = "client";
|
|
414
423
|
Object.setPrototypeOf(this, _CacheClusterNotFoundFault.prototype);
|
|
415
424
|
}
|
|
416
425
|
};
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
426
|
+
var CacheParameterGroupNotFoundFault = class _CacheParameterGroupNotFoundFault extends ElastiCacheServiceException {
|
|
427
|
+
static {
|
|
428
|
+
__name(this, "CacheParameterGroupNotFoundFault");
|
|
429
|
+
}
|
|
430
|
+
name = "CacheParameterGroupNotFoundFault";
|
|
431
|
+
$fault = "client";
|
|
420
432
|
/**
|
|
421
433
|
* @internal
|
|
422
434
|
*/
|
|
@@ -426,14 +438,15 @@ var _CacheParameterGroupNotFoundFault = class _CacheParameterGroupNotFoundFault
|
|
|
426
438
|
$fault: "client",
|
|
427
439
|
...opts
|
|
428
440
|
});
|
|
429
|
-
this.name = "CacheParameterGroupNotFoundFault";
|
|
430
|
-
this.$fault = "client";
|
|
431
441
|
Object.setPrototypeOf(this, _CacheParameterGroupNotFoundFault.prototype);
|
|
432
442
|
}
|
|
433
443
|
};
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
444
|
+
var CacheSecurityGroupNotFoundFault = class _CacheSecurityGroupNotFoundFault extends ElastiCacheServiceException {
|
|
445
|
+
static {
|
|
446
|
+
__name(this, "CacheSecurityGroupNotFoundFault");
|
|
447
|
+
}
|
|
448
|
+
name = "CacheSecurityGroupNotFoundFault";
|
|
449
|
+
$fault = "client";
|
|
437
450
|
/**
|
|
438
451
|
* @internal
|
|
439
452
|
*/
|
|
@@ -443,14 +456,15 @@ var _CacheSecurityGroupNotFoundFault = class _CacheSecurityGroupNotFoundFault ex
|
|
|
443
456
|
$fault: "client",
|
|
444
457
|
...opts
|
|
445
458
|
});
|
|
446
|
-
this.name = "CacheSecurityGroupNotFoundFault";
|
|
447
|
-
this.$fault = "client";
|
|
448
459
|
Object.setPrototypeOf(this, _CacheSecurityGroupNotFoundFault.prototype);
|
|
449
460
|
}
|
|
450
461
|
};
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
462
|
+
var CacheSubnetGroupNotFoundFault = class _CacheSubnetGroupNotFoundFault extends ElastiCacheServiceException {
|
|
463
|
+
static {
|
|
464
|
+
__name(this, "CacheSubnetGroupNotFoundFault");
|
|
465
|
+
}
|
|
466
|
+
name = "CacheSubnetGroupNotFoundFault";
|
|
467
|
+
$fault = "client";
|
|
454
468
|
/**
|
|
455
469
|
* @internal
|
|
456
470
|
*/
|
|
@@ -460,14 +474,15 @@ var _CacheSubnetGroupNotFoundFault = class _CacheSubnetGroupNotFoundFault extend
|
|
|
460
474
|
$fault: "client",
|
|
461
475
|
...opts
|
|
462
476
|
});
|
|
463
|
-
this.name = "CacheSubnetGroupNotFoundFault";
|
|
464
|
-
this.$fault = "client";
|
|
465
477
|
Object.setPrototypeOf(this, _CacheSubnetGroupNotFoundFault.prototype);
|
|
466
478
|
}
|
|
467
479
|
};
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
480
|
+
var InvalidARNFault = class _InvalidARNFault extends ElastiCacheServiceException {
|
|
481
|
+
static {
|
|
482
|
+
__name(this, "InvalidARNFault");
|
|
483
|
+
}
|
|
484
|
+
name = "InvalidARNFault";
|
|
485
|
+
$fault = "client";
|
|
471
486
|
/**
|
|
472
487
|
* @internal
|
|
473
488
|
*/
|
|
@@ -477,14 +492,15 @@ var _InvalidARNFault = class _InvalidARNFault extends ElastiCacheServiceExceptio
|
|
|
477
492
|
$fault: "client",
|
|
478
493
|
...opts
|
|
479
494
|
});
|
|
480
|
-
this.name = "InvalidARNFault";
|
|
481
|
-
this.$fault = "client";
|
|
482
495
|
Object.setPrototypeOf(this, _InvalidARNFault.prototype);
|
|
483
496
|
}
|
|
484
497
|
};
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
498
|
+
var InvalidReplicationGroupStateFault = class _InvalidReplicationGroupStateFault extends ElastiCacheServiceException {
|
|
499
|
+
static {
|
|
500
|
+
__name(this, "InvalidReplicationGroupStateFault");
|
|
501
|
+
}
|
|
502
|
+
name = "InvalidReplicationGroupStateFault";
|
|
503
|
+
$fault = "client";
|
|
488
504
|
/**
|
|
489
505
|
* @internal
|
|
490
506
|
*/
|
|
@@ -494,14 +510,15 @@ var _InvalidReplicationGroupStateFault = class _InvalidReplicationGroupStateFaul
|
|
|
494
510
|
$fault: "client",
|
|
495
511
|
...opts
|
|
496
512
|
});
|
|
497
|
-
this.name = "InvalidReplicationGroupStateFault";
|
|
498
|
-
this.$fault = "client";
|
|
499
513
|
Object.setPrototypeOf(this, _InvalidReplicationGroupStateFault.prototype);
|
|
500
514
|
}
|
|
501
515
|
};
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
516
|
+
var InvalidServerlessCacheSnapshotStateFault = class _InvalidServerlessCacheSnapshotStateFault extends ElastiCacheServiceException {
|
|
517
|
+
static {
|
|
518
|
+
__name(this, "InvalidServerlessCacheSnapshotStateFault");
|
|
519
|
+
}
|
|
520
|
+
name = "InvalidServerlessCacheSnapshotStateFault";
|
|
521
|
+
$fault = "client";
|
|
505
522
|
/**
|
|
506
523
|
* @internal
|
|
507
524
|
*/
|
|
@@ -511,14 +528,15 @@ var _InvalidServerlessCacheSnapshotStateFault = class _InvalidServerlessCacheSna
|
|
|
511
528
|
$fault: "client",
|
|
512
529
|
...opts
|
|
513
530
|
});
|
|
514
|
-
this.name = "InvalidServerlessCacheSnapshotStateFault";
|
|
515
|
-
this.$fault = "client";
|
|
516
531
|
Object.setPrototypeOf(this, _InvalidServerlessCacheSnapshotStateFault.prototype);
|
|
517
532
|
}
|
|
518
533
|
};
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
534
|
+
var InvalidServerlessCacheStateFault = class _InvalidServerlessCacheStateFault extends ElastiCacheServiceException {
|
|
535
|
+
static {
|
|
536
|
+
__name(this, "InvalidServerlessCacheStateFault");
|
|
537
|
+
}
|
|
538
|
+
name = "InvalidServerlessCacheStateFault";
|
|
539
|
+
$fault = "client";
|
|
522
540
|
/**
|
|
523
541
|
* @internal
|
|
524
542
|
*/
|
|
@@ -528,14 +546,15 @@ var _InvalidServerlessCacheStateFault = class _InvalidServerlessCacheStateFault
|
|
|
528
546
|
$fault: "client",
|
|
529
547
|
...opts
|
|
530
548
|
});
|
|
531
|
-
this.name = "InvalidServerlessCacheStateFault";
|
|
532
|
-
this.$fault = "client";
|
|
533
549
|
Object.setPrototypeOf(this, _InvalidServerlessCacheStateFault.prototype);
|
|
534
550
|
}
|
|
535
551
|
};
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
552
|
+
var ReplicationGroupNotFoundFault = class _ReplicationGroupNotFoundFault extends ElastiCacheServiceException {
|
|
553
|
+
static {
|
|
554
|
+
__name(this, "ReplicationGroupNotFoundFault");
|
|
555
|
+
}
|
|
556
|
+
name = "ReplicationGroupNotFoundFault";
|
|
557
|
+
$fault = "client";
|
|
539
558
|
/**
|
|
540
559
|
* @internal
|
|
541
560
|
*/
|
|
@@ -545,14 +564,15 @@ var _ReplicationGroupNotFoundFault = class _ReplicationGroupNotFoundFault extend
|
|
|
545
564
|
$fault: "client",
|
|
546
565
|
...opts
|
|
547
566
|
});
|
|
548
|
-
this.name = "ReplicationGroupNotFoundFault";
|
|
549
|
-
this.$fault = "client";
|
|
550
567
|
Object.setPrototypeOf(this, _ReplicationGroupNotFoundFault.prototype);
|
|
551
568
|
}
|
|
552
569
|
};
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
570
|
+
var ReservedCacheNodeNotFoundFault = class _ReservedCacheNodeNotFoundFault extends ElastiCacheServiceException {
|
|
571
|
+
static {
|
|
572
|
+
__name(this, "ReservedCacheNodeNotFoundFault");
|
|
573
|
+
}
|
|
574
|
+
name = "ReservedCacheNodeNotFoundFault";
|
|
575
|
+
$fault = "client";
|
|
556
576
|
/**
|
|
557
577
|
* @internal
|
|
558
578
|
*/
|
|
@@ -562,14 +582,15 @@ var _ReservedCacheNodeNotFoundFault = class _ReservedCacheNodeNotFoundFault exte
|
|
|
562
582
|
$fault: "client",
|
|
563
583
|
...opts
|
|
564
584
|
});
|
|
565
|
-
this.name = "ReservedCacheNodeNotFoundFault";
|
|
566
|
-
this.$fault = "client";
|
|
567
585
|
Object.setPrototypeOf(this, _ReservedCacheNodeNotFoundFault.prototype);
|
|
568
586
|
}
|
|
569
587
|
};
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
588
|
+
var ServerlessCacheNotFoundFault = class _ServerlessCacheNotFoundFault extends ElastiCacheServiceException {
|
|
589
|
+
static {
|
|
590
|
+
__name(this, "ServerlessCacheNotFoundFault");
|
|
591
|
+
}
|
|
592
|
+
name = "ServerlessCacheNotFoundFault";
|
|
593
|
+
$fault = "client";
|
|
573
594
|
/**
|
|
574
595
|
* @internal
|
|
575
596
|
*/
|
|
@@ -579,14 +600,15 @@ var _ServerlessCacheNotFoundFault = class _ServerlessCacheNotFoundFault extends
|
|
|
579
600
|
$fault: "client",
|
|
580
601
|
...opts
|
|
581
602
|
});
|
|
582
|
-
this.name = "ServerlessCacheNotFoundFault";
|
|
583
|
-
this.$fault = "client";
|
|
584
603
|
Object.setPrototypeOf(this, _ServerlessCacheNotFoundFault.prototype);
|
|
585
604
|
}
|
|
586
605
|
};
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
606
|
+
var ServerlessCacheSnapshotNotFoundFault = class _ServerlessCacheSnapshotNotFoundFault extends ElastiCacheServiceException {
|
|
607
|
+
static {
|
|
608
|
+
__name(this, "ServerlessCacheSnapshotNotFoundFault");
|
|
609
|
+
}
|
|
610
|
+
name = "ServerlessCacheSnapshotNotFoundFault";
|
|
611
|
+
$fault = "client";
|
|
590
612
|
/**
|
|
591
613
|
* @internal
|
|
592
614
|
*/
|
|
@@ -596,14 +618,15 @@ var _ServerlessCacheSnapshotNotFoundFault = class _ServerlessCacheSnapshotNotFou
|
|
|
596
618
|
$fault: "client",
|
|
597
619
|
...opts
|
|
598
620
|
});
|
|
599
|
-
this.name = "ServerlessCacheSnapshotNotFoundFault";
|
|
600
|
-
this.$fault = "client";
|
|
601
621
|
Object.setPrototypeOf(this, _ServerlessCacheSnapshotNotFoundFault.prototype);
|
|
602
622
|
}
|
|
603
623
|
};
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
624
|
+
var SnapshotNotFoundFault = class _SnapshotNotFoundFault extends ElastiCacheServiceException {
|
|
625
|
+
static {
|
|
626
|
+
__name(this, "SnapshotNotFoundFault");
|
|
627
|
+
}
|
|
628
|
+
name = "SnapshotNotFoundFault";
|
|
629
|
+
$fault = "client";
|
|
607
630
|
/**
|
|
608
631
|
* @internal
|
|
609
632
|
*/
|
|
@@ -613,14 +636,15 @@ var _SnapshotNotFoundFault = class _SnapshotNotFoundFault extends ElastiCacheSer
|
|
|
613
636
|
$fault: "client",
|
|
614
637
|
...opts
|
|
615
638
|
});
|
|
616
|
-
this.name = "SnapshotNotFoundFault";
|
|
617
|
-
this.$fault = "client";
|
|
618
639
|
Object.setPrototypeOf(this, _SnapshotNotFoundFault.prototype);
|
|
619
640
|
}
|
|
620
641
|
};
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
642
|
+
var TagQuotaPerResourceExceeded = class _TagQuotaPerResourceExceeded extends ElastiCacheServiceException {
|
|
643
|
+
static {
|
|
644
|
+
__name(this, "TagQuotaPerResourceExceeded");
|
|
645
|
+
}
|
|
646
|
+
name = "TagQuotaPerResourceExceeded";
|
|
647
|
+
$fault = "client";
|
|
624
648
|
/**
|
|
625
649
|
* @internal
|
|
626
650
|
*/
|
|
@@ -630,14 +654,15 @@ var _TagQuotaPerResourceExceeded = class _TagQuotaPerResourceExceeded extends El
|
|
|
630
654
|
$fault: "client",
|
|
631
655
|
...opts
|
|
632
656
|
});
|
|
633
|
-
this.name = "TagQuotaPerResourceExceeded";
|
|
634
|
-
this.$fault = "client";
|
|
635
657
|
Object.setPrototypeOf(this, _TagQuotaPerResourceExceeded.prototype);
|
|
636
658
|
}
|
|
637
659
|
};
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
660
|
+
var UserGroupNotFoundFault = class _UserGroupNotFoundFault extends ElastiCacheServiceException {
|
|
661
|
+
static {
|
|
662
|
+
__name(this, "UserGroupNotFoundFault");
|
|
663
|
+
}
|
|
664
|
+
name = "UserGroupNotFoundFault";
|
|
665
|
+
$fault = "client";
|
|
641
666
|
/**
|
|
642
667
|
* @internal
|
|
643
668
|
*/
|
|
@@ -647,14 +672,15 @@ var _UserGroupNotFoundFault = class _UserGroupNotFoundFault extends ElastiCacheS
|
|
|
647
672
|
$fault: "client",
|
|
648
673
|
...opts
|
|
649
674
|
});
|
|
650
|
-
this.name = "UserGroupNotFoundFault";
|
|
651
|
-
this.$fault = "client";
|
|
652
675
|
Object.setPrototypeOf(this, _UserGroupNotFoundFault.prototype);
|
|
653
676
|
}
|
|
654
677
|
};
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
678
|
+
var UserNotFoundFault = class _UserNotFoundFault extends ElastiCacheServiceException {
|
|
679
|
+
static {
|
|
680
|
+
__name(this, "UserNotFoundFault");
|
|
681
|
+
}
|
|
682
|
+
name = "UserNotFoundFault";
|
|
683
|
+
$fault = "client";
|
|
658
684
|
/**
|
|
659
685
|
* @internal
|
|
660
686
|
*/
|
|
@@ -664,14 +690,15 @@ var _UserNotFoundFault = class _UserNotFoundFault extends ElastiCacheServiceExce
|
|
|
664
690
|
$fault: "client",
|
|
665
691
|
...opts
|
|
666
692
|
});
|
|
667
|
-
this.name = "UserNotFoundFault";
|
|
668
|
-
this.$fault = "client";
|
|
669
693
|
Object.setPrototypeOf(this, _UserNotFoundFault.prototype);
|
|
670
694
|
}
|
|
671
695
|
};
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
696
|
+
var AuthorizationAlreadyExistsFault = class _AuthorizationAlreadyExistsFault extends ElastiCacheServiceException {
|
|
697
|
+
static {
|
|
698
|
+
__name(this, "AuthorizationAlreadyExistsFault");
|
|
699
|
+
}
|
|
700
|
+
name = "AuthorizationAlreadyExistsFault";
|
|
701
|
+
$fault = "client";
|
|
675
702
|
/**
|
|
676
703
|
* @internal
|
|
677
704
|
*/
|
|
@@ -681,14 +708,15 @@ var _AuthorizationAlreadyExistsFault = class _AuthorizationAlreadyExistsFault ex
|
|
|
681
708
|
$fault: "client",
|
|
682
709
|
...opts
|
|
683
710
|
});
|
|
684
|
-
this.name = "AuthorizationAlreadyExistsFault";
|
|
685
|
-
this.$fault = "client";
|
|
686
711
|
Object.setPrototypeOf(this, _AuthorizationAlreadyExistsFault.prototype);
|
|
687
712
|
}
|
|
688
713
|
};
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
714
|
+
var InvalidCacheSecurityGroupStateFault = class _InvalidCacheSecurityGroupStateFault extends ElastiCacheServiceException {
|
|
715
|
+
static {
|
|
716
|
+
__name(this, "InvalidCacheSecurityGroupStateFault");
|
|
717
|
+
}
|
|
718
|
+
name = "InvalidCacheSecurityGroupStateFault";
|
|
719
|
+
$fault = "client";
|
|
692
720
|
/**
|
|
693
721
|
* @internal
|
|
694
722
|
*/
|
|
@@ -698,14 +726,15 @@ var _InvalidCacheSecurityGroupStateFault = class _InvalidCacheSecurityGroupState
|
|
|
698
726
|
$fault: "client",
|
|
699
727
|
...opts
|
|
700
728
|
});
|
|
701
|
-
this.name = "InvalidCacheSecurityGroupStateFault";
|
|
702
|
-
this.$fault = "client";
|
|
703
729
|
Object.setPrototypeOf(this, _InvalidCacheSecurityGroupStateFault.prototype);
|
|
704
730
|
}
|
|
705
731
|
};
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
732
|
+
var InvalidParameterCombinationException = class _InvalidParameterCombinationException extends ElastiCacheServiceException {
|
|
733
|
+
static {
|
|
734
|
+
__name(this, "InvalidParameterCombinationException");
|
|
735
|
+
}
|
|
736
|
+
name = "InvalidParameterCombinationException";
|
|
737
|
+
$fault = "client";
|
|
709
738
|
/**
|
|
710
739
|
* @internal
|
|
711
740
|
*/
|
|
@@ -715,14 +744,15 @@ var _InvalidParameterCombinationException = class _InvalidParameterCombinationEx
|
|
|
715
744
|
$fault: "client",
|
|
716
745
|
...opts
|
|
717
746
|
});
|
|
718
|
-
this.name = "InvalidParameterCombinationException";
|
|
719
|
-
this.$fault = "client";
|
|
720
747
|
Object.setPrototypeOf(this, _InvalidParameterCombinationException.prototype);
|
|
721
748
|
}
|
|
722
749
|
};
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
750
|
+
var InvalidParameterValueException = class _InvalidParameterValueException extends ElastiCacheServiceException {
|
|
751
|
+
static {
|
|
752
|
+
__name(this, "InvalidParameterValueException");
|
|
753
|
+
}
|
|
754
|
+
name = "InvalidParameterValueException";
|
|
755
|
+
$fault = "client";
|
|
726
756
|
/**
|
|
727
757
|
* @internal
|
|
728
758
|
*/
|
|
@@ -732,14 +762,15 @@ var _InvalidParameterValueException = class _InvalidParameterValueException exte
|
|
|
732
762
|
$fault: "client",
|
|
733
763
|
...opts
|
|
734
764
|
});
|
|
735
|
-
this.name = "InvalidParameterValueException";
|
|
736
|
-
this.$fault = "client";
|
|
737
765
|
Object.setPrototypeOf(this, _InvalidParameterValueException.prototype);
|
|
738
766
|
}
|
|
739
767
|
};
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
768
|
+
var ServiceUpdateNotFoundFault = class _ServiceUpdateNotFoundFault extends ElastiCacheServiceException {
|
|
769
|
+
static {
|
|
770
|
+
__name(this, "ServiceUpdateNotFoundFault");
|
|
771
|
+
}
|
|
772
|
+
name = "ServiceUpdateNotFoundFault";
|
|
773
|
+
$fault = "client";
|
|
743
774
|
/**
|
|
744
775
|
* @internal
|
|
745
776
|
*/
|
|
@@ -749,13 +780,9 @@ var _ServiceUpdateNotFoundFault = class _ServiceUpdateNotFoundFault extends Elas
|
|
|
749
780
|
$fault: "client",
|
|
750
781
|
...opts
|
|
751
782
|
});
|
|
752
|
-
this.name = "ServiceUpdateNotFoundFault";
|
|
753
|
-
this.$fault = "client";
|
|
754
783
|
Object.setPrototypeOf(this, _ServiceUpdateNotFoundFault.prototype);
|
|
755
784
|
}
|
|
756
785
|
};
|
|
757
|
-
__name(_ServiceUpdateNotFoundFault, "ServiceUpdateNotFoundFault");
|
|
758
|
-
var ServiceUpdateNotFoundFault = _ServiceUpdateNotFoundFault;
|
|
759
786
|
var UpdateActionStatus = {
|
|
760
787
|
COMPLETE: "complete",
|
|
761
788
|
IN_PROGRESS: "in-progress",
|
|
@@ -826,7 +853,12 @@ var TransitEncryptionMode = {
|
|
|
826
853
|
PREFERRED: "preferred",
|
|
827
854
|
REQUIRED: "required"
|
|
828
855
|
};
|
|
829
|
-
var
|
|
856
|
+
var ReplicationGroupNotUnderMigrationFault = class _ReplicationGroupNotUnderMigrationFault extends ElastiCacheServiceException {
|
|
857
|
+
static {
|
|
858
|
+
__name(this, "ReplicationGroupNotUnderMigrationFault");
|
|
859
|
+
}
|
|
860
|
+
name = "ReplicationGroupNotUnderMigrationFault";
|
|
861
|
+
$fault = "client";
|
|
830
862
|
/**
|
|
831
863
|
* @internal
|
|
832
864
|
*/
|
|
@@ -836,14 +868,15 @@ var _ReplicationGroupNotUnderMigrationFault = class _ReplicationGroupNotUnderMig
|
|
|
836
868
|
$fault: "client",
|
|
837
869
|
...opts
|
|
838
870
|
});
|
|
839
|
-
this.name = "ReplicationGroupNotUnderMigrationFault";
|
|
840
|
-
this.$fault = "client";
|
|
841
871
|
Object.setPrototypeOf(this, _ReplicationGroupNotUnderMigrationFault.prototype);
|
|
842
872
|
}
|
|
843
873
|
};
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
874
|
+
var ServerlessCacheSnapshotAlreadyExistsFault = class _ServerlessCacheSnapshotAlreadyExistsFault extends ElastiCacheServiceException {
|
|
875
|
+
static {
|
|
876
|
+
__name(this, "ServerlessCacheSnapshotAlreadyExistsFault");
|
|
877
|
+
}
|
|
878
|
+
name = "ServerlessCacheSnapshotAlreadyExistsFault";
|
|
879
|
+
$fault = "client";
|
|
847
880
|
/**
|
|
848
881
|
* @internal
|
|
849
882
|
*/
|
|
@@ -853,14 +886,15 @@ var _ServerlessCacheSnapshotAlreadyExistsFault = class _ServerlessCacheSnapshotA
|
|
|
853
886
|
$fault: "client",
|
|
854
887
|
...opts
|
|
855
888
|
});
|
|
856
|
-
this.name = "ServerlessCacheSnapshotAlreadyExistsFault";
|
|
857
|
-
this.$fault = "client";
|
|
858
889
|
Object.setPrototypeOf(this, _ServerlessCacheSnapshotAlreadyExistsFault.prototype);
|
|
859
890
|
}
|
|
860
891
|
};
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
892
|
+
var ServerlessCacheSnapshotQuotaExceededFault = class _ServerlessCacheSnapshotQuotaExceededFault extends ElastiCacheServiceException {
|
|
893
|
+
static {
|
|
894
|
+
__name(this, "ServerlessCacheSnapshotQuotaExceededFault");
|
|
895
|
+
}
|
|
896
|
+
name = "ServerlessCacheSnapshotQuotaExceededFault";
|
|
897
|
+
$fault = "client";
|
|
864
898
|
/**
|
|
865
899
|
* @internal
|
|
866
900
|
*/
|
|
@@ -870,14 +904,15 @@ var _ServerlessCacheSnapshotQuotaExceededFault = class _ServerlessCacheSnapshotQ
|
|
|
870
904
|
$fault: "client",
|
|
871
905
|
...opts
|
|
872
906
|
});
|
|
873
|
-
this.name = "ServerlessCacheSnapshotQuotaExceededFault";
|
|
874
|
-
this.$fault = "client";
|
|
875
907
|
Object.setPrototypeOf(this, _ServerlessCacheSnapshotQuotaExceededFault.prototype);
|
|
876
908
|
}
|
|
877
909
|
};
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
910
|
+
var ServiceLinkedRoleNotFoundFault = class _ServiceLinkedRoleNotFoundFault extends ElastiCacheServiceException {
|
|
911
|
+
static {
|
|
912
|
+
__name(this, "ServiceLinkedRoleNotFoundFault");
|
|
913
|
+
}
|
|
914
|
+
name = "ServiceLinkedRoleNotFoundFault";
|
|
915
|
+
$fault = "client";
|
|
881
916
|
/**
|
|
882
917
|
* @internal
|
|
883
918
|
*/
|
|
@@ -887,14 +922,15 @@ var _ServiceLinkedRoleNotFoundFault = class _ServiceLinkedRoleNotFoundFault exte
|
|
|
887
922
|
$fault: "client",
|
|
888
923
|
...opts
|
|
889
924
|
});
|
|
890
|
-
this.name = "ServiceLinkedRoleNotFoundFault";
|
|
891
|
-
this.$fault = "client";
|
|
892
925
|
Object.setPrototypeOf(this, _ServiceLinkedRoleNotFoundFault.prototype);
|
|
893
926
|
}
|
|
894
927
|
};
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
928
|
+
var InvalidSnapshotStateFault = class _InvalidSnapshotStateFault extends ElastiCacheServiceException {
|
|
929
|
+
static {
|
|
930
|
+
__name(this, "InvalidSnapshotStateFault");
|
|
931
|
+
}
|
|
932
|
+
name = "InvalidSnapshotStateFault";
|
|
933
|
+
$fault = "client";
|
|
898
934
|
/**
|
|
899
935
|
* @internal
|
|
900
936
|
*/
|
|
@@ -904,14 +940,15 @@ var _InvalidSnapshotStateFault = class _InvalidSnapshotStateFault extends Elasti
|
|
|
904
940
|
$fault: "client",
|
|
905
941
|
...opts
|
|
906
942
|
});
|
|
907
|
-
this.name = "InvalidSnapshotStateFault";
|
|
908
|
-
this.$fault = "client";
|
|
909
943
|
Object.setPrototypeOf(this, _InvalidSnapshotStateFault.prototype);
|
|
910
944
|
}
|
|
911
945
|
};
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
946
|
+
var SnapshotAlreadyExistsFault = class _SnapshotAlreadyExistsFault extends ElastiCacheServiceException {
|
|
947
|
+
static {
|
|
948
|
+
__name(this, "SnapshotAlreadyExistsFault");
|
|
949
|
+
}
|
|
950
|
+
name = "SnapshotAlreadyExistsFault";
|
|
951
|
+
$fault = "client";
|
|
915
952
|
/**
|
|
916
953
|
* @internal
|
|
917
954
|
*/
|
|
@@ -921,14 +958,15 @@ var _SnapshotAlreadyExistsFault = class _SnapshotAlreadyExistsFault extends Elas
|
|
|
921
958
|
$fault: "client",
|
|
922
959
|
...opts
|
|
923
960
|
});
|
|
924
|
-
this.name = "SnapshotAlreadyExistsFault";
|
|
925
|
-
this.$fault = "client";
|
|
926
961
|
Object.setPrototypeOf(this, _SnapshotAlreadyExistsFault.prototype);
|
|
927
962
|
}
|
|
928
963
|
};
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
964
|
+
var SnapshotQuotaExceededFault = class _SnapshotQuotaExceededFault extends ElastiCacheServiceException {
|
|
965
|
+
static {
|
|
966
|
+
__name(this, "SnapshotQuotaExceededFault");
|
|
967
|
+
}
|
|
968
|
+
name = "SnapshotQuotaExceededFault";
|
|
969
|
+
$fault = "client";
|
|
932
970
|
/**
|
|
933
971
|
* @internal
|
|
934
972
|
*/
|
|
@@ -938,14 +976,15 @@ var _SnapshotQuotaExceededFault = class _SnapshotQuotaExceededFault extends Elas
|
|
|
938
976
|
$fault: "client",
|
|
939
977
|
...opts
|
|
940
978
|
});
|
|
941
|
-
this.name = "SnapshotQuotaExceededFault";
|
|
942
|
-
this.$fault = "client";
|
|
943
979
|
Object.setPrototypeOf(this, _SnapshotQuotaExceededFault.prototype);
|
|
944
980
|
}
|
|
945
981
|
};
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
982
|
+
var CacheClusterAlreadyExistsFault = class _CacheClusterAlreadyExistsFault extends ElastiCacheServiceException {
|
|
983
|
+
static {
|
|
984
|
+
__name(this, "CacheClusterAlreadyExistsFault");
|
|
985
|
+
}
|
|
986
|
+
name = "CacheClusterAlreadyExistsFault";
|
|
987
|
+
$fault = "client";
|
|
949
988
|
/**
|
|
950
989
|
* @internal
|
|
951
990
|
*/
|
|
@@ -955,14 +994,15 @@ var _CacheClusterAlreadyExistsFault = class _CacheClusterAlreadyExistsFault exte
|
|
|
955
994
|
$fault: "client",
|
|
956
995
|
...opts
|
|
957
996
|
});
|
|
958
|
-
this.name = "CacheClusterAlreadyExistsFault";
|
|
959
|
-
this.$fault = "client";
|
|
960
997
|
Object.setPrototypeOf(this, _CacheClusterAlreadyExistsFault.prototype);
|
|
961
998
|
}
|
|
962
999
|
};
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
1000
|
+
var ClusterQuotaForCustomerExceededFault = class _ClusterQuotaForCustomerExceededFault extends ElastiCacheServiceException {
|
|
1001
|
+
static {
|
|
1002
|
+
__name(this, "ClusterQuotaForCustomerExceededFault");
|
|
1003
|
+
}
|
|
1004
|
+
name = "ClusterQuotaForCustomerExceededFault";
|
|
1005
|
+
$fault = "client";
|
|
966
1006
|
/**
|
|
967
1007
|
* @internal
|
|
968
1008
|
*/
|
|
@@ -972,13 +1012,9 @@ var _ClusterQuotaForCustomerExceededFault = class _ClusterQuotaForCustomerExceed
|
|
|
972
1012
|
$fault: "client",
|
|
973
1013
|
...opts
|
|
974
1014
|
});
|
|
975
|
-
this.name = "ClusterQuotaForCustomerExceededFault";
|
|
976
|
-
this.$fault = "client";
|
|
977
1015
|
Object.setPrototypeOf(this, _ClusterQuotaForCustomerExceededFault.prototype);
|
|
978
1016
|
}
|
|
979
1017
|
};
|
|
980
|
-
__name(_ClusterQuotaForCustomerExceededFault, "ClusterQuotaForCustomerExceededFault");
|
|
981
|
-
var ClusterQuotaForCustomerExceededFault = _ClusterQuotaForCustomerExceededFault;
|
|
982
1018
|
var AZMode = {
|
|
983
1019
|
CROSS_AZ: "cross-az",
|
|
984
1020
|
SINGLE_AZ: "single-az"
|
|
@@ -987,7 +1023,12 @@ var OutpostMode = {
|
|
|
987
1023
|
CROSS_OUTPOST: "cross-outpost",
|
|
988
1024
|
SINGLE_OUTPOST: "single-outpost"
|
|
989
1025
|
};
|
|
990
|
-
var
|
|
1026
|
+
var InsufficientCacheClusterCapacityFault = class _InsufficientCacheClusterCapacityFault extends ElastiCacheServiceException {
|
|
1027
|
+
static {
|
|
1028
|
+
__name(this, "InsufficientCacheClusterCapacityFault");
|
|
1029
|
+
}
|
|
1030
|
+
name = "InsufficientCacheClusterCapacityFault";
|
|
1031
|
+
$fault = "client";
|
|
991
1032
|
/**
|
|
992
1033
|
* @internal
|
|
993
1034
|
*/
|
|
@@ -997,14 +1038,15 @@ var _InsufficientCacheClusterCapacityFault = class _InsufficientCacheClusterCapa
|
|
|
997
1038
|
$fault: "client",
|
|
998
1039
|
...opts
|
|
999
1040
|
});
|
|
1000
|
-
this.name = "InsufficientCacheClusterCapacityFault";
|
|
1001
|
-
this.$fault = "client";
|
|
1002
1041
|
Object.setPrototypeOf(this, _InsufficientCacheClusterCapacityFault.prototype);
|
|
1003
1042
|
}
|
|
1004
1043
|
};
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1044
|
+
var InvalidVPCNetworkStateFault = class _InvalidVPCNetworkStateFault extends ElastiCacheServiceException {
|
|
1045
|
+
static {
|
|
1046
|
+
__name(this, "InvalidVPCNetworkStateFault");
|
|
1047
|
+
}
|
|
1048
|
+
name = "InvalidVPCNetworkStateFault";
|
|
1049
|
+
$fault = "client";
|
|
1008
1050
|
/**
|
|
1009
1051
|
* @internal
|
|
1010
1052
|
*/
|
|
@@ -1014,14 +1056,15 @@ var _InvalidVPCNetworkStateFault = class _InvalidVPCNetworkStateFault extends El
|
|
|
1014
1056
|
$fault: "client",
|
|
1015
1057
|
...opts
|
|
1016
1058
|
});
|
|
1017
|
-
this.name = "InvalidVPCNetworkStateFault";
|
|
1018
|
-
this.$fault = "client";
|
|
1019
1059
|
Object.setPrototypeOf(this, _InvalidVPCNetworkStateFault.prototype);
|
|
1020
1060
|
}
|
|
1021
1061
|
};
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1062
|
+
var NodeQuotaForClusterExceededFault = class _NodeQuotaForClusterExceededFault extends ElastiCacheServiceException {
|
|
1063
|
+
static {
|
|
1064
|
+
__name(this, "NodeQuotaForClusterExceededFault");
|
|
1065
|
+
}
|
|
1066
|
+
name = "NodeQuotaForClusterExceededFault";
|
|
1067
|
+
$fault = "client";
|
|
1025
1068
|
/**
|
|
1026
1069
|
* @internal
|
|
1027
1070
|
*/
|
|
@@ -1031,14 +1074,15 @@ var _NodeQuotaForClusterExceededFault = class _NodeQuotaForClusterExceededFault
|
|
|
1031
1074
|
$fault: "client",
|
|
1032
1075
|
...opts
|
|
1033
1076
|
});
|
|
1034
|
-
this.name = "NodeQuotaForClusterExceededFault";
|
|
1035
|
-
this.$fault = "client";
|
|
1036
1077
|
Object.setPrototypeOf(this, _NodeQuotaForClusterExceededFault.prototype);
|
|
1037
1078
|
}
|
|
1038
1079
|
};
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1080
|
+
var NodeQuotaForCustomerExceededFault = class _NodeQuotaForCustomerExceededFault extends ElastiCacheServiceException {
|
|
1081
|
+
static {
|
|
1082
|
+
__name(this, "NodeQuotaForCustomerExceededFault");
|
|
1083
|
+
}
|
|
1084
|
+
name = "NodeQuotaForCustomerExceededFault";
|
|
1085
|
+
$fault = "client";
|
|
1042
1086
|
/**
|
|
1043
1087
|
* @internal
|
|
1044
1088
|
*/
|
|
@@ -1048,14 +1092,15 @@ var _NodeQuotaForCustomerExceededFault = class _NodeQuotaForCustomerExceededFaul
|
|
|
1048
1092
|
$fault: "client",
|
|
1049
1093
|
...opts
|
|
1050
1094
|
});
|
|
1051
|
-
this.name = "NodeQuotaForCustomerExceededFault";
|
|
1052
|
-
this.$fault = "client";
|
|
1053
1095
|
Object.setPrototypeOf(this, _NodeQuotaForCustomerExceededFault.prototype);
|
|
1054
1096
|
}
|
|
1055
1097
|
};
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1098
|
+
var CacheParameterGroupAlreadyExistsFault = class _CacheParameterGroupAlreadyExistsFault extends ElastiCacheServiceException {
|
|
1099
|
+
static {
|
|
1100
|
+
__name(this, "CacheParameterGroupAlreadyExistsFault");
|
|
1101
|
+
}
|
|
1102
|
+
name = "CacheParameterGroupAlreadyExistsFault";
|
|
1103
|
+
$fault = "client";
|
|
1059
1104
|
/**
|
|
1060
1105
|
* @internal
|
|
1061
1106
|
*/
|
|
@@ -1065,14 +1110,15 @@ var _CacheParameterGroupAlreadyExistsFault = class _CacheParameterGroupAlreadyEx
|
|
|
1065
1110
|
$fault: "client",
|
|
1066
1111
|
...opts
|
|
1067
1112
|
});
|
|
1068
|
-
this.name = "CacheParameterGroupAlreadyExistsFault";
|
|
1069
|
-
this.$fault = "client";
|
|
1070
1113
|
Object.setPrototypeOf(this, _CacheParameterGroupAlreadyExistsFault.prototype);
|
|
1071
1114
|
}
|
|
1072
1115
|
};
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1116
|
+
var CacheParameterGroupQuotaExceededFault = class _CacheParameterGroupQuotaExceededFault extends ElastiCacheServiceException {
|
|
1117
|
+
static {
|
|
1118
|
+
__name(this, "CacheParameterGroupQuotaExceededFault");
|
|
1119
|
+
}
|
|
1120
|
+
name = "CacheParameterGroupQuotaExceededFault";
|
|
1121
|
+
$fault = "client";
|
|
1076
1122
|
/**
|
|
1077
1123
|
* @internal
|
|
1078
1124
|
*/
|
|
@@ -1082,14 +1128,15 @@ var _CacheParameterGroupQuotaExceededFault = class _CacheParameterGroupQuotaExce
|
|
|
1082
1128
|
$fault: "client",
|
|
1083
1129
|
...opts
|
|
1084
1130
|
});
|
|
1085
|
-
this.name = "CacheParameterGroupQuotaExceededFault";
|
|
1086
|
-
this.$fault = "client";
|
|
1087
1131
|
Object.setPrototypeOf(this, _CacheParameterGroupQuotaExceededFault.prototype);
|
|
1088
1132
|
}
|
|
1089
1133
|
};
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1134
|
+
var InvalidCacheParameterGroupStateFault = class _InvalidCacheParameterGroupStateFault extends ElastiCacheServiceException {
|
|
1135
|
+
static {
|
|
1136
|
+
__name(this, "InvalidCacheParameterGroupStateFault");
|
|
1137
|
+
}
|
|
1138
|
+
name = "InvalidCacheParameterGroupStateFault";
|
|
1139
|
+
$fault = "client";
|
|
1093
1140
|
/**
|
|
1094
1141
|
* @internal
|
|
1095
1142
|
*/
|
|
@@ -1099,14 +1146,15 @@ var _InvalidCacheParameterGroupStateFault = class _InvalidCacheParameterGroupSta
|
|
|
1099
1146
|
$fault: "client",
|
|
1100
1147
|
...opts
|
|
1101
1148
|
});
|
|
1102
|
-
this.name = "InvalidCacheParameterGroupStateFault";
|
|
1103
|
-
this.$fault = "client";
|
|
1104
1149
|
Object.setPrototypeOf(this, _InvalidCacheParameterGroupStateFault.prototype);
|
|
1105
1150
|
}
|
|
1106
1151
|
};
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1152
|
+
var CacheSecurityGroupAlreadyExistsFault = class _CacheSecurityGroupAlreadyExistsFault extends ElastiCacheServiceException {
|
|
1153
|
+
static {
|
|
1154
|
+
__name(this, "CacheSecurityGroupAlreadyExistsFault");
|
|
1155
|
+
}
|
|
1156
|
+
name = "CacheSecurityGroupAlreadyExistsFault";
|
|
1157
|
+
$fault = "client";
|
|
1110
1158
|
/**
|
|
1111
1159
|
* @internal
|
|
1112
1160
|
*/
|
|
@@ -1116,14 +1164,15 @@ var _CacheSecurityGroupAlreadyExistsFault = class _CacheSecurityGroupAlreadyExis
|
|
|
1116
1164
|
$fault: "client",
|
|
1117
1165
|
...opts
|
|
1118
1166
|
});
|
|
1119
|
-
this.name = "CacheSecurityGroupAlreadyExistsFault";
|
|
1120
|
-
this.$fault = "client";
|
|
1121
1167
|
Object.setPrototypeOf(this, _CacheSecurityGroupAlreadyExistsFault.prototype);
|
|
1122
1168
|
}
|
|
1123
1169
|
};
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1170
|
+
var CacheSecurityGroupQuotaExceededFault = class _CacheSecurityGroupQuotaExceededFault extends ElastiCacheServiceException {
|
|
1171
|
+
static {
|
|
1172
|
+
__name(this, "CacheSecurityGroupQuotaExceededFault");
|
|
1173
|
+
}
|
|
1174
|
+
name = "CacheSecurityGroupQuotaExceededFault";
|
|
1175
|
+
$fault = "client";
|
|
1127
1176
|
/**
|
|
1128
1177
|
* @internal
|
|
1129
1178
|
*/
|
|
@@ -1133,14 +1182,15 @@ var _CacheSecurityGroupQuotaExceededFault = class _CacheSecurityGroupQuotaExceed
|
|
|
1133
1182
|
$fault: "client",
|
|
1134
1183
|
...opts
|
|
1135
1184
|
});
|
|
1136
|
-
this.name = "CacheSecurityGroupQuotaExceededFault";
|
|
1137
|
-
this.$fault = "client";
|
|
1138
1185
|
Object.setPrototypeOf(this, _CacheSecurityGroupQuotaExceededFault.prototype);
|
|
1139
1186
|
}
|
|
1140
1187
|
};
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1188
|
+
var CacheSubnetGroupAlreadyExistsFault = class _CacheSubnetGroupAlreadyExistsFault extends ElastiCacheServiceException {
|
|
1189
|
+
static {
|
|
1190
|
+
__name(this, "CacheSubnetGroupAlreadyExistsFault");
|
|
1191
|
+
}
|
|
1192
|
+
name = "CacheSubnetGroupAlreadyExistsFault";
|
|
1193
|
+
$fault = "client";
|
|
1144
1194
|
/**
|
|
1145
1195
|
* @internal
|
|
1146
1196
|
*/
|
|
@@ -1150,14 +1200,15 @@ var _CacheSubnetGroupAlreadyExistsFault = class _CacheSubnetGroupAlreadyExistsFa
|
|
|
1150
1200
|
$fault: "client",
|
|
1151
1201
|
...opts
|
|
1152
1202
|
});
|
|
1153
|
-
this.name = "CacheSubnetGroupAlreadyExistsFault";
|
|
1154
|
-
this.$fault = "client";
|
|
1155
1203
|
Object.setPrototypeOf(this, _CacheSubnetGroupAlreadyExistsFault.prototype);
|
|
1156
1204
|
}
|
|
1157
1205
|
};
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1206
|
+
var CacheSubnetGroupQuotaExceededFault = class _CacheSubnetGroupQuotaExceededFault extends ElastiCacheServiceException {
|
|
1207
|
+
static {
|
|
1208
|
+
__name(this, "CacheSubnetGroupQuotaExceededFault");
|
|
1209
|
+
}
|
|
1210
|
+
name = "CacheSubnetGroupQuotaExceededFault";
|
|
1211
|
+
$fault = "client";
|
|
1161
1212
|
/**
|
|
1162
1213
|
* @internal
|
|
1163
1214
|
*/
|
|
@@ -1167,14 +1218,15 @@ var _CacheSubnetGroupQuotaExceededFault = class _CacheSubnetGroupQuotaExceededFa
|
|
|
1167
1218
|
$fault: "client",
|
|
1168
1219
|
...opts
|
|
1169
1220
|
});
|
|
1170
|
-
this.name = "CacheSubnetGroupQuotaExceededFault";
|
|
1171
|
-
this.$fault = "client";
|
|
1172
1221
|
Object.setPrototypeOf(this, _CacheSubnetGroupQuotaExceededFault.prototype);
|
|
1173
1222
|
}
|
|
1174
1223
|
};
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1224
|
+
var CacheSubnetQuotaExceededFault = class _CacheSubnetQuotaExceededFault extends ElastiCacheServiceException {
|
|
1225
|
+
static {
|
|
1226
|
+
__name(this, "CacheSubnetQuotaExceededFault");
|
|
1227
|
+
}
|
|
1228
|
+
name = "CacheSubnetQuotaExceededFault";
|
|
1229
|
+
$fault = "client";
|
|
1178
1230
|
/**
|
|
1179
1231
|
* @internal
|
|
1180
1232
|
*/
|
|
@@ -1184,14 +1236,15 @@ var _CacheSubnetQuotaExceededFault = class _CacheSubnetQuotaExceededFault extend
|
|
|
1184
1236
|
$fault: "client",
|
|
1185
1237
|
...opts
|
|
1186
1238
|
});
|
|
1187
|
-
this.name = "CacheSubnetQuotaExceededFault";
|
|
1188
|
-
this.$fault = "client";
|
|
1189
1239
|
Object.setPrototypeOf(this, _CacheSubnetQuotaExceededFault.prototype);
|
|
1190
1240
|
}
|
|
1191
1241
|
};
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1242
|
+
var InvalidSubnet = class _InvalidSubnet extends ElastiCacheServiceException {
|
|
1243
|
+
static {
|
|
1244
|
+
__name(this, "InvalidSubnet");
|
|
1245
|
+
}
|
|
1246
|
+
name = "InvalidSubnet";
|
|
1247
|
+
$fault = "client";
|
|
1195
1248
|
/**
|
|
1196
1249
|
* @internal
|
|
1197
1250
|
*/
|
|
@@ -1201,14 +1254,15 @@ var _InvalidSubnet = class _InvalidSubnet extends ElastiCacheServiceException {
|
|
|
1201
1254
|
$fault: "client",
|
|
1202
1255
|
...opts
|
|
1203
1256
|
});
|
|
1204
|
-
this.name = "InvalidSubnet";
|
|
1205
|
-
this.$fault = "client";
|
|
1206
1257
|
Object.setPrototypeOf(this, _InvalidSubnet.prototype);
|
|
1207
1258
|
}
|
|
1208
1259
|
};
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1260
|
+
var SubnetNotAllowedFault = class _SubnetNotAllowedFault extends ElastiCacheServiceException {
|
|
1261
|
+
static {
|
|
1262
|
+
__name(this, "SubnetNotAllowedFault");
|
|
1263
|
+
}
|
|
1264
|
+
name = "SubnetNotAllowedFault";
|
|
1265
|
+
$fault = "client";
|
|
1212
1266
|
/**
|
|
1213
1267
|
* @internal
|
|
1214
1268
|
*/
|
|
@@ -1218,14 +1272,15 @@ var _SubnetNotAllowedFault = class _SubnetNotAllowedFault extends ElastiCacheSer
|
|
|
1218
1272
|
$fault: "client",
|
|
1219
1273
|
...opts
|
|
1220
1274
|
});
|
|
1221
|
-
this.name = "SubnetNotAllowedFault";
|
|
1222
|
-
this.$fault = "client";
|
|
1223
1275
|
Object.setPrototypeOf(this, _SubnetNotAllowedFault.prototype);
|
|
1224
1276
|
}
|
|
1225
1277
|
};
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1278
|
+
var GlobalReplicationGroupAlreadyExistsFault = class _GlobalReplicationGroupAlreadyExistsFault extends ElastiCacheServiceException {
|
|
1279
|
+
static {
|
|
1280
|
+
__name(this, "GlobalReplicationGroupAlreadyExistsFault");
|
|
1281
|
+
}
|
|
1282
|
+
name = "GlobalReplicationGroupAlreadyExistsFault";
|
|
1283
|
+
$fault = "client";
|
|
1229
1284
|
/**
|
|
1230
1285
|
* @internal
|
|
1231
1286
|
*/
|
|
@@ -1235,14 +1290,15 @@ var _GlobalReplicationGroupAlreadyExistsFault = class _GlobalReplicationGroupAlr
|
|
|
1235
1290
|
$fault: "client",
|
|
1236
1291
|
...opts
|
|
1237
1292
|
});
|
|
1238
|
-
this.name = "GlobalReplicationGroupAlreadyExistsFault";
|
|
1239
|
-
this.$fault = "client";
|
|
1240
1293
|
Object.setPrototypeOf(this, _GlobalReplicationGroupAlreadyExistsFault.prototype);
|
|
1241
1294
|
}
|
|
1242
1295
|
};
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1296
|
+
var GlobalReplicationGroupNotFoundFault = class _GlobalReplicationGroupNotFoundFault extends ElastiCacheServiceException {
|
|
1297
|
+
static {
|
|
1298
|
+
__name(this, "GlobalReplicationGroupNotFoundFault");
|
|
1299
|
+
}
|
|
1300
|
+
name = "GlobalReplicationGroupNotFoundFault";
|
|
1301
|
+
$fault = "client";
|
|
1246
1302
|
/**
|
|
1247
1303
|
* @internal
|
|
1248
1304
|
*/
|
|
@@ -1252,14 +1308,15 @@ var _GlobalReplicationGroupNotFoundFault = class _GlobalReplicationGroupNotFound
|
|
|
1252
1308
|
$fault: "client",
|
|
1253
1309
|
...opts
|
|
1254
1310
|
});
|
|
1255
|
-
this.name = "GlobalReplicationGroupNotFoundFault";
|
|
1256
|
-
this.$fault = "client";
|
|
1257
1311
|
Object.setPrototypeOf(this, _GlobalReplicationGroupNotFoundFault.prototype);
|
|
1258
1312
|
}
|
|
1259
1313
|
};
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1314
|
+
var InvalidCacheClusterStateFault = class _InvalidCacheClusterStateFault extends ElastiCacheServiceException {
|
|
1315
|
+
static {
|
|
1316
|
+
__name(this, "InvalidCacheClusterStateFault");
|
|
1317
|
+
}
|
|
1318
|
+
name = "InvalidCacheClusterStateFault";
|
|
1319
|
+
$fault = "client";
|
|
1263
1320
|
/**
|
|
1264
1321
|
* @internal
|
|
1265
1322
|
*/
|
|
@@ -1269,14 +1326,15 @@ var _InvalidCacheClusterStateFault = class _InvalidCacheClusterStateFault extend
|
|
|
1269
1326
|
$fault: "client",
|
|
1270
1327
|
...opts
|
|
1271
1328
|
});
|
|
1272
|
-
this.name = "InvalidCacheClusterStateFault";
|
|
1273
|
-
this.$fault = "client";
|
|
1274
1329
|
Object.setPrototypeOf(this, _InvalidCacheClusterStateFault.prototype);
|
|
1275
1330
|
}
|
|
1276
1331
|
};
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1332
|
+
var InvalidGlobalReplicationGroupStateFault = class _InvalidGlobalReplicationGroupStateFault extends ElastiCacheServiceException {
|
|
1333
|
+
static {
|
|
1334
|
+
__name(this, "InvalidGlobalReplicationGroupStateFault");
|
|
1335
|
+
}
|
|
1336
|
+
name = "InvalidGlobalReplicationGroupStateFault";
|
|
1337
|
+
$fault = "client";
|
|
1280
1338
|
/**
|
|
1281
1339
|
* @internal
|
|
1282
1340
|
*/
|
|
@@ -1286,14 +1344,15 @@ var _InvalidGlobalReplicationGroupStateFault = class _InvalidGlobalReplicationGr
|
|
|
1286
1344
|
$fault: "client",
|
|
1287
1345
|
...opts
|
|
1288
1346
|
});
|
|
1289
|
-
this.name = "InvalidGlobalReplicationGroupStateFault";
|
|
1290
|
-
this.$fault = "client";
|
|
1291
1347
|
Object.setPrototypeOf(this, _InvalidGlobalReplicationGroupStateFault.prototype);
|
|
1292
1348
|
}
|
|
1293
1349
|
};
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1350
|
+
var InvalidUserGroupStateFault = class _InvalidUserGroupStateFault extends ElastiCacheServiceException {
|
|
1351
|
+
static {
|
|
1352
|
+
__name(this, "InvalidUserGroupStateFault");
|
|
1353
|
+
}
|
|
1354
|
+
name = "InvalidUserGroupStateFault";
|
|
1355
|
+
$fault = "client";
|
|
1297
1356
|
/**
|
|
1298
1357
|
* @internal
|
|
1299
1358
|
*/
|
|
@@ -1303,14 +1362,15 @@ var _InvalidUserGroupStateFault = class _InvalidUserGroupStateFault extends Elas
|
|
|
1303
1362
|
$fault: "client",
|
|
1304
1363
|
...opts
|
|
1305
1364
|
});
|
|
1306
|
-
this.name = "InvalidUserGroupStateFault";
|
|
1307
|
-
this.$fault = "client";
|
|
1308
1365
|
Object.setPrototypeOf(this, _InvalidUserGroupStateFault.prototype);
|
|
1309
1366
|
}
|
|
1310
1367
|
};
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1368
|
+
var NodeGroupsPerReplicationGroupQuotaExceededFault = class _NodeGroupsPerReplicationGroupQuotaExceededFault extends ElastiCacheServiceException {
|
|
1369
|
+
static {
|
|
1370
|
+
__name(this, "NodeGroupsPerReplicationGroupQuotaExceededFault");
|
|
1371
|
+
}
|
|
1372
|
+
name = "NodeGroupsPerReplicationGroupQuotaExceededFault";
|
|
1373
|
+
$fault = "client";
|
|
1314
1374
|
/**
|
|
1315
1375
|
* @internal
|
|
1316
1376
|
*/
|
|
@@ -1320,14 +1380,15 @@ var _NodeGroupsPerReplicationGroupQuotaExceededFault = class _NodeGroupsPerRepli
|
|
|
1320
1380
|
$fault: "client",
|
|
1321
1381
|
...opts
|
|
1322
1382
|
});
|
|
1323
|
-
this.name = "NodeGroupsPerReplicationGroupQuotaExceededFault";
|
|
1324
|
-
this.$fault = "client";
|
|
1325
1383
|
Object.setPrototypeOf(this, _NodeGroupsPerReplicationGroupQuotaExceededFault.prototype);
|
|
1326
1384
|
}
|
|
1327
1385
|
};
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1386
|
+
var ReplicationGroupAlreadyExistsFault = class _ReplicationGroupAlreadyExistsFault extends ElastiCacheServiceException {
|
|
1387
|
+
static {
|
|
1388
|
+
__name(this, "ReplicationGroupAlreadyExistsFault");
|
|
1389
|
+
}
|
|
1390
|
+
name = "ReplicationGroupAlreadyExistsFault";
|
|
1391
|
+
$fault = "client";
|
|
1331
1392
|
/**
|
|
1332
1393
|
* @internal
|
|
1333
1394
|
*/
|
|
@@ -1337,17 +1398,18 @@ var _ReplicationGroupAlreadyExistsFault = class _ReplicationGroupAlreadyExistsFa
|
|
|
1337
1398
|
$fault: "client",
|
|
1338
1399
|
...opts
|
|
1339
1400
|
});
|
|
1340
|
-
this.name = "ReplicationGroupAlreadyExistsFault";
|
|
1341
|
-
this.$fault = "client";
|
|
1342
1401
|
Object.setPrototypeOf(this, _ReplicationGroupAlreadyExistsFault.prototype);
|
|
1343
1402
|
}
|
|
1344
1403
|
};
|
|
1345
|
-
__name(_ReplicationGroupAlreadyExistsFault, "ReplicationGroupAlreadyExistsFault");
|
|
1346
|
-
var ReplicationGroupAlreadyExistsFault = _ReplicationGroupAlreadyExistsFault;
|
|
1347
1404
|
var DataStorageUnit = {
|
|
1348
1405
|
GB: "GB"
|
|
1349
1406
|
};
|
|
1350
|
-
var
|
|
1407
|
+
var InvalidCredentialsException = class _InvalidCredentialsException extends ElastiCacheServiceException {
|
|
1408
|
+
static {
|
|
1409
|
+
__name(this, "InvalidCredentialsException");
|
|
1410
|
+
}
|
|
1411
|
+
name = "InvalidCredentialsException";
|
|
1412
|
+
$fault = "client";
|
|
1351
1413
|
/**
|
|
1352
1414
|
* @internal
|
|
1353
1415
|
*/
|
|
@@ -1357,14 +1419,15 @@ var _InvalidCredentialsException = class _InvalidCredentialsException extends El
|
|
|
1357
1419
|
$fault: "client",
|
|
1358
1420
|
...opts
|
|
1359
1421
|
});
|
|
1360
|
-
this.name = "InvalidCredentialsException";
|
|
1361
|
-
this.$fault = "client";
|
|
1362
1422
|
Object.setPrototypeOf(this, _InvalidCredentialsException.prototype);
|
|
1363
1423
|
}
|
|
1364
1424
|
};
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1425
|
+
var ServerlessCacheAlreadyExistsFault = class _ServerlessCacheAlreadyExistsFault extends ElastiCacheServiceException {
|
|
1426
|
+
static {
|
|
1427
|
+
__name(this, "ServerlessCacheAlreadyExistsFault");
|
|
1428
|
+
}
|
|
1429
|
+
name = "ServerlessCacheAlreadyExistsFault";
|
|
1430
|
+
$fault = "client";
|
|
1368
1431
|
/**
|
|
1369
1432
|
* @internal
|
|
1370
1433
|
*/
|
|
@@ -1374,14 +1437,15 @@ var _ServerlessCacheAlreadyExistsFault = class _ServerlessCacheAlreadyExistsFaul
|
|
|
1374
1437
|
$fault: "client",
|
|
1375
1438
|
...opts
|
|
1376
1439
|
});
|
|
1377
|
-
this.name = "ServerlessCacheAlreadyExistsFault";
|
|
1378
|
-
this.$fault = "client";
|
|
1379
1440
|
Object.setPrototypeOf(this, _ServerlessCacheAlreadyExistsFault.prototype);
|
|
1380
1441
|
}
|
|
1381
1442
|
};
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1443
|
+
var ServerlessCacheQuotaForCustomerExceededFault = class _ServerlessCacheQuotaForCustomerExceededFault extends ElastiCacheServiceException {
|
|
1444
|
+
static {
|
|
1445
|
+
__name(this, "ServerlessCacheQuotaForCustomerExceededFault");
|
|
1446
|
+
}
|
|
1447
|
+
name = "ServerlessCacheQuotaForCustomerExceededFault";
|
|
1448
|
+
$fault = "client";
|
|
1385
1449
|
/**
|
|
1386
1450
|
* @internal
|
|
1387
1451
|
*/
|
|
@@ -1391,14 +1455,15 @@ var _ServerlessCacheQuotaForCustomerExceededFault = class _ServerlessCacheQuotaF
|
|
|
1391
1455
|
$fault: "client",
|
|
1392
1456
|
...opts
|
|
1393
1457
|
});
|
|
1394
|
-
this.name = "ServerlessCacheQuotaForCustomerExceededFault";
|
|
1395
|
-
this.$fault = "client";
|
|
1396
1458
|
Object.setPrototypeOf(this, _ServerlessCacheQuotaForCustomerExceededFault.prototype);
|
|
1397
1459
|
}
|
|
1398
1460
|
};
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
|
|
1461
|
+
var SnapshotFeatureNotSupportedFault = class _SnapshotFeatureNotSupportedFault extends ElastiCacheServiceException {
|
|
1462
|
+
static {
|
|
1463
|
+
__name(this, "SnapshotFeatureNotSupportedFault");
|
|
1464
|
+
}
|
|
1465
|
+
name = "SnapshotFeatureNotSupportedFault";
|
|
1466
|
+
$fault = "client";
|
|
1402
1467
|
/**
|
|
1403
1468
|
* @internal
|
|
1404
1469
|
*/
|
|
@@ -1408,19 +1473,20 @@ var _SnapshotFeatureNotSupportedFault = class _SnapshotFeatureNotSupportedFault
|
|
|
1408
1473
|
$fault: "client",
|
|
1409
1474
|
...opts
|
|
1410
1475
|
});
|
|
1411
|
-
this.name = "SnapshotFeatureNotSupportedFault";
|
|
1412
|
-
this.$fault = "client";
|
|
1413
1476
|
Object.setPrototypeOf(this, _SnapshotFeatureNotSupportedFault.prototype);
|
|
1414
1477
|
}
|
|
1415
1478
|
};
|
|
1416
|
-
__name(_SnapshotFeatureNotSupportedFault, "SnapshotFeatureNotSupportedFault");
|
|
1417
|
-
var SnapshotFeatureNotSupportedFault = _SnapshotFeatureNotSupportedFault;
|
|
1418
1479
|
var InputAuthenticationType = {
|
|
1419
1480
|
IAM: "iam",
|
|
1420
1481
|
NO_PASSWORD: "no-password-required",
|
|
1421
1482
|
PASSWORD: "password"
|
|
1422
1483
|
};
|
|
1423
|
-
var
|
|
1484
|
+
var DuplicateUserNameFault = class _DuplicateUserNameFault extends ElastiCacheServiceException {
|
|
1485
|
+
static {
|
|
1486
|
+
__name(this, "DuplicateUserNameFault");
|
|
1487
|
+
}
|
|
1488
|
+
name = "DuplicateUserNameFault";
|
|
1489
|
+
$fault = "client";
|
|
1424
1490
|
/**
|
|
1425
1491
|
* @internal
|
|
1426
1492
|
*/
|
|
@@ -1430,19 +1496,20 @@ var _DuplicateUserNameFault = class _DuplicateUserNameFault extends ElastiCacheS
|
|
|
1430
1496
|
$fault: "client",
|
|
1431
1497
|
...opts
|
|
1432
1498
|
});
|
|
1433
|
-
this.name = "DuplicateUserNameFault";
|
|
1434
|
-
this.$fault = "client";
|
|
1435
1499
|
Object.setPrototypeOf(this, _DuplicateUserNameFault.prototype);
|
|
1436
1500
|
}
|
|
1437
1501
|
};
|
|
1438
|
-
__name(_DuplicateUserNameFault, "DuplicateUserNameFault");
|
|
1439
|
-
var DuplicateUserNameFault = _DuplicateUserNameFault;
|
|
1440
1502
|
var AuthenticationType = {
|
|
1441
1503
|
IAM: "iam",
|
|
1442
1504
|
NO_PASSWORD: "no-password",
|
|
1443
1505
|
PASSWORD: "password"
|
|
1444
1506
|
};
|
|
1445
|
-
var
|
|
1507
|
+
var UserAlreadyExistsFault = class _UserAlreadyExistsFault extends ElastiCacheServiceException {
|
|
1508
|
+
static {
|
|
1509
|
+
__name(this, "UserAlreadyExistsFault");
|
|
1510
|
+
}
|
|
1511
|
+
name = "UserAlreadyExistsFault";
|
|
1512
|
+
$fault = "client";
|
|
1446
1513
|
/**
|
|
1447
1514
|
* @internal
|
|
1448
1515
|
*/
|
|
@@ -1452,14 +1519,15 @@ var _UserAlreadyExistsFault = class _UserAlreadyExistsFault extends ElastiCacheS
|
|
|
1452
1519
|
$fault: "client",
|
|
1453
1520
|
...opts
|
|
1454
1521
|
});
|
|
1455
|
-
this.name = "UserAlreadyExistsFault";
|
|
1456
|
-
this.$fault = "client";
|
|
1457
1522
|
Object.setPrototypeOf(this, _UserAlreadyExistsFault.prototype);
|
|
1458
1523
|
}
|
|
1459
1524
|
};
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1525
|
+
var UserQuotaExceededFault = class _UserQuotaExceededFault extends ElastiCacheServiceException {
|
|
1526
|
+
static {
|
|
1527
|
+
__name(this, "UserQuotaExceededFault");
|
|
1528
|
+
}
|
|
1529
|
+
name = "UserQuotaExceededFault";
|
|
1530
|
+
$fault = "client";
|
|
1463
1531
|
/**
|
|
1464
1532
|
* @internal
|
|
1465
1533
|
*/
|
|
@@ -1469,14 +1537,15 @@ var _UserQuotaExceededFault = class _UserQuotaExceededFault extends ElastiCacheS
|
|
|
1469
1537
|
$fault: "client",
|
|
1470
1538
|
...opts
|
|
1471
1539
|
});
|
|
1472
|
-
this.name = "UserQuotaExceededFault";
|
|
1473
|
-
this.$fault = "client";
|
|
1474
1540
|
Object.setPrototypeOf(this, _UserQuotaExceededFault.prototype);
|
|
1475
1541
|
}
|
|
1476
1542
|
};
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1543
|
+
var DefaultUserRequired = class _DefaultUserRequired extends ElastiCacheServiceException {
|
|
1544
|
+
static {
|
|
1545
|
+
__name(this, "DefaultUserRequired");
|
|
1546
|
+
}
|
|
1547
|
+
name = "DefaultUserRequired";
|
|
1548
|
+
$fault = "client";
|
|
1480
1549
|
/**
|
|
1481
1550
|
* @internal
|
|
1482
1551
|
*/
|
|
@@ -1486,14 +1555,15 @@ var _DefaultUserRequired = class _DefaultUserRequired extends ElastiCacheService
|
|
|
1486
1555
|
$fault: "client",
|
|
1487
1556
|
...opts
|
|
1488
1557
|
});
|
|
1489
|
-
this.name = "DefaultUserRequired";
|
|
1490
|
-
this.$fault = "client";
|
|
1491
1558
|
Object.setPrototypeOf(this, _DefaultUserRequired.prototype);
|
|
1492
1559
|
}
|
|
1493
1560
|
};
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
|
|
1561
|
+
var UserGroupAlreadyExistsFault = class _UserGroupAlreadyExistsFault extends ElastiCacheServiceException {
|
|
1562
|
+
static {
|
|
1563
|
+
__name(this, "UserGroupAlreadyExistsFault");
|
|
1564
|
+
}
|
|
1565
|
+
name = "UserGroupAlreadyExistsFault";
|
|
1566
|
+
$fault = "client";
|
|
1497
1567
|
/**
|
|
1498
1568
|
* @internal
|
|
1499
1569
|
*/
|
|
@@ -1503,14 +1573,15 @@ var _UserGroupAlreadyExistsFault = class _UserGroupAlreadyExistsFault extends El
|
|
|
1503
1573
|
$fault: "client",
|
|
1504
1574
|
...opts
|
|
1505
1575
|
});
|
|
1506
|
-
this.name = "UserGroupAlreadyExistsFault";
|
|
1507
|
-
this.$fault = "client";
|
|
1508
1576
|
Object.setPrototypeOf(this, _UserGroupAlreadyExistsFault.prototype);
|
|
1509
1577
|
}
|
|
1510
1578
|
};
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1579
|
+
var UserGroupQuotaExceededFault = class _UserGroupQuotaExceededFault extends ElastiCacheServiceException {
|
|
1580
|
+
static {
|
|
1581
|
+
__name(this, "UserGroupQuotaExceededFault");
|
|
1582
|
+
}
|
|
1583
|
+
name = "UserGroupQuotaExceededFault";
|
|
1584
|
+
$fault = "client";
|
|
1514
1585
|
/**
|
|
1515
1586
|
* @internal
|
|
1516
1587
|
*/
|
|
@@ -1520,14 +1591,15 @@ var _UserGroupQuotaExceededFault = class _UserGroupQuotaExceededFault extends El
|
|
|
1520
1591
|
$fault: "client",
|
|
1521
1592
|
...opts
|
|
1522
1593
|
});
|
|
1523
|
-
this.name = "UserGroupQuotaExceededFault";
|
|
1524
|
-
this.$fault = "client";
|
|
1525
1594
|
Object.setPrototypeOf(this, _UserGroupQuotaExceededFault.prototype);
|
|
1526
1595
|
}
|
|
1527
1596
|
};
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1597
|
+
var NoOperationFault = class _NoOperationFault extends ElastiCacheServiceException {
|
|
1598
|
+
static {
|
|
1599
|
+
__name(this, "NoOperationFault");
|
|
1600
|
+
}
|
|
1601
|
+
name = "NoOperationFault";
|
|
1602
|
+
$fault = "client";
|
|
1531
1603
|
/**
|
|
1532
1604
|
* @internal
|
|
1533
1605
|
*/
|
|
@@ -1537,14 +1609,15 @@ var _NoOperationFault = class _NoOperationFault extends ElastiCacheServiceExcept
|
|
|
1537
1609
|
$fault: "client",
|
|
1538
1610
|
...opts
|
|
1539
1611
|
});
|
|
1540
|
-
this.name = "NoOperationFault";
|
|
1541
|
-
this.$fault = "client";
|
|
1542
1612
|
Object.setPrototypeOf(this, _NoOperationFault.prototype);
|
|
1543
1613
|
}
|
|
1544
1614
|
};
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1615
|
+
var CacheSubnetGroupInUse = class _CacheSubnetGroupInUse extends ElastiCacheServiceException {
|
|
1616
|
+
static {
|
|
1617
|
+
__name(this, "CacheSubnetGroupInUse");
|
|
1618
|
+
}
|
|
1619
|
+
name = "CacheSubnetGroupInUse";
|
|
1620
|
+
$fault = "client";
|
|
1548
1621
|
/**
|
|
1549
1622
|
* @internal
|
|
1550
1623
|
*/
|
|
@@ -1554,14 +1627,15 @@ var _CacheSubnetGroupInUse = class _CacheSubnetGroupInUse extends ElastiCacheSer
|
|
|
1554
1627
|
$fault: "client",
|
|
1555
1628
|
...opts
|
|
1556
1629
|
});
|
|
1557
|
-
this.name = "CacheSubnetGroupInUse";
|
|
1558
|
-
this.$fault = "client";
|
|
1559
1630
|
Object.setPrototypeOf(this, _CacheSubnetGroupInUse.prototype);
|
|
1560
1631
|
}
|
|
1561
1632
|
};
|
|
1562
|
-
|
|
1563
|
-
|
|
1564
|
-
|
|
1633
|
+
var DefaultUserAssociatedToUserGroupFault = class _DefaultUserAssociatedToUserGroupFault extends ElastiCacheServiceException {
|
|
1634
|
+
static {
|
|
1635
|
+
__name(this, "DefaultUserAssociatedToUserGroupFault");
|
|
1636
|
+
}
|
|
1637
|
+
name = "DefaultUserAssociatedToUserGroupFault";
|
|
1638
|
+
$fault = "client";
|
|
1565
1639
|
/**
|
|
1566
1640
|
* @internal
|
|
1567
1641
|
*/
|
|
@@ -1571,14 +1645,15 @@ var _DefaultUserAssociatedToUserGroupFault = class _DefaultUserAssociatedToUserG
|
|
|
1571
1645
|
$fault: "client",
|
|
1572
1646
|
...opts
|
|
1573
1647
|
});
|
|
1574
|
-
this.name = "DefaultUserAssociatedToUserGroupFault";
|
|
1575
|
-
this.$fault = "client";
|
|
1576
1648
|
Object.setPrototypeOf(this, _DefaultUserAssociatedToUserGroupFault.prototype);
|
|
1577
1649
|
}
|
|
1578
1650
|
};
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
1651
|
+
var InvalidUserStateFault = class _InvalidUserStateFault extends ElastiCacheServiceException {
|
|
1652
|
+
static {
|
|
1653
|
+
__name(this, "InvalidUserStateFault");
|
|
1654
|
+
}
|
|
1655
|
+
name = "InvalidUserStateFault";
|
|
1656
|
+
$fault = "client";
|
|
1582
1657
|
/**
|
|
1583
1658
|
* @internal
|
|
1584
1659
|
*/
|
|
@@ -1588,13 +1663,9 @@ var _InvalidUserStateFault = class _InvalidUserStateFault extends ElastiCacheSer
|
|
|
1588
1663
|
$fault: "client",
|
|
1589
1664
|
...opts
|
|
1590
1665
|
});
|
|
1591
|
-
this.name = "InvalidUserStateFault";
|
|
1592
|
-
this.$fault = "client";
|
|
1593
1666
|
Object.setPrototypeOf(this, _InvalidUserStateFault.prototype);
|
|
1594
1667
|
}
|
|
1595
1668
|
};
|
|
1596
|
-
__name(_InvalidUserStateFault, "InvalidUserStateFault");
|
|
1597
|
-
var InvalidUserStateFault = _InvalidUserStateFault;
|
|
1598
1669
|
var ChangeType = {
|
|
1599
1670
|
immediate: "immediate",
|
|
1600
1671
|
requires_reboot: "requires-reboot"
|
|
@@ -1610,7 +1681,12 @@ var SourceType = {
|
|
|
1610
1681
|
user: "user",
|
|
1611
1682
|
user_group: "user-group"
|
|
1612
1683
|
};
|
|
1613
|
-
var
|
|
1684
|
+
var ReservedCacheNodesOfferingNotFoundFault = class _ReservedCacheNodesOfferingNotFoundFault extends ElastiCacheServiceException {
|
|
1685
|
+
static {
|
|
1686
|
+
__name(this, "ReservedCacheNodesOfferingNotFoundFault");
|
|
1687
|
+
}
|
|
1688
|
+
name = "ReservedCacheNodesOfferingNotFoundFault";
|
|
1689
|
+
$fault = "client";
|
|
1614
1690
|
/**
|
|
1615
1691
|
* @internal
|
|
1616
1692
|
*/
|
|
@@ -1620,13 +1696,9 @@ var _ReservedCacheNodesOfferingNotFoundFault = class _ReservedCacheNodesOffering
|
|
|
1620
1696
|
$fault: "client",
|
|
1621
1697
|
...opts
|
|
1622
1698
|
});
|
|
1623
|
-
this.name = "ReservedCacheNodesOfferingNotFoundFault";
|
|
1624
|
-
this.$fault = "client";
|
|
1625
1699
|
Object.setPrototypeOf(this, _ReservedCacheNodesOfferingNotFoundFault.prototype);
|
|
1626
1700
|
}
|
|
1627
1701
|
};
|
|
1628
|
-
__name(_ReservedCacheNodesOfferingNotFoundFault, "ReservedCacheNodesOfferingNotFoundFault");
|
|
1629
|
-
var ReservedCacheNodesOfferingNotFoundFault = _ReservedCacheNodesOfferingNotFoundFault;
|
|
1630
1702
|
var ServiceUpdateStatus = {
|
|
1631
1703
|
AVAILABLE: "available",
|
|
1632
1704
|
CANCELLED: "cancelled",
|
|
@@ -1658,7 +1730,12 @@ var SlaMet = {
|
|
|
1658
1730
|
NO: "no",
|
|
1659
1731
|
YES: "yes"
|
|
1660
1732
|
};
|
|
1661
|
-
var
|
|
1733
|
+
var InvalidKMSKeyFault = class _InvalidKMSKeyFault extends ElastiCacheServiceException {
|
|
1734
|
+
static {
|
|
1735
|
+
__name(this, "InvalidKMSKeyFault");
|
|
1736
|
+
}
|
|
1737
|
+
name = "InvalidKMSKeyFault";
|
|
1738
|
+
$fault = "client";
|
|
1662
1739
|
/**
|
|
1663
1740
|
* @internal
|
|
1664
1741
|
*/
|
|
@@ -1668,19 +1745,20 @@ var _InvalidKMSKeyFault = class _InvalidKMSKeyFault extends ElastiCacheServiceEx
|
|
|
1668
1745
|
$fault: "client",
|
|
1669
1746
|
...opts
|
|
1670
1747
|
});
|
|
1671
|
-
this.name = "InvalidKMSKeyFault";
|
|
1672
|
-
this.$fault = "client";
|
|
1673
1748
|
Object.setPrototypeOf(this, _InvalidKMSKeyFault.prototype);
|
|
1674
1749
|
}
|
|
1675
1750
|
};
|
|
1676
|
-
__name(_InvalidKMSKeyFault, "InvalidKMSKeyFault");
|
|
1677
|
-
var InvalidKMSKeyFault = _InvalidKMSKeyFault;
|
|
1678
1751
|
var AuthTokenUpdateStrategyType = {
|
|
1679
1752
|
DELETE: "DELETE",
|
|
1680
1753
|
ROTATE: "ROTATE",
|
|
1681
1754
|
SET: "SET"
|
|
1682
1755
|
};
|
|
1683
|
-
var
|
|
1756
|
+
var SubnetInUse = class _SubnetInUse extends ElastiCacheServiceException {
|
|
1757
|
+
static {
|
|
1758
|
+
__name(this, "SubnetInUse");
|
|
1759
|
+
}
|
|
1760
|
+
name = "SubnetInUse";
|
|
1761
|
+
$fault = "client";
|
|
1684
1762
|
/**
|
|
1685
1763
|
* @internal
|
|
1686
1764
|
*/
|
|
@@ -1690,14 +1768,15 @@ var _SubnetInUse = class _SubnetInUse extends ElastiCacheServiceException {
|
|
|
1690
1768
|
$fault: "client",
|
|
1691
1769
|
...opts
|
|
1692
1770
|
});
|
|
1693
|
-
this.name = "SubnetInUse";
|
|
1694
|
-
this.$fault = "client";
|
|
1695
1771
|
Object.setPrototypeOf(this, _SubnetInUse.prototype);
|
|
1696
1772
|
}
|
|
1697
1773
|
};
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
|
|
1774
|
+
var ReservedCacheNodeAlreadyExistsFault = class _ReservedCacheNodeAlreadyExistsFault extends ElastiCacheServiceException {
|
|
1775
|
+
static {
|
|
1776
|
+
__name(this, "ReservedCacheNodeAlreadyExistsFault");
|
|
1777
|
+
}
|
|
1778
|
+
name = "ReservedCacheNodeAlreadyExistsFault";
|
|
1779
|
+
$fault = "client";
|
|
1701
1780
|
/**
|
|
1702
1781
|
* @internal
|
|
1703
1782
|
*/
|
|
@@ -1707,14 +1786,15 @@ var _ReservedCacheNodeAlreadyExistsFault = class _ReservedCacheNodeAlreadyExists
|
|
|
1707
1786
|
$fault: "client",
|
|
1708
1787
|
...opts
|
|
1709
1788
|
});
|
|
1710
|
-
this.name = "ReservedCacheNodeAlreadyExistsFault";
|
|
1711
|
-
this.$fault = "client";
|
|
1712
1789
|
Object.setPrototypeOf(this, _ReservedCacheNodeAlreadyExistsFault.prototype);
|
|
1713
1790
|
}
|
|
1714
1791
|
};
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
|
|
1792
|
+
var ReservedCacheNodeQuotaExceededFault = class _ReservedCacheNodeQuotaExceededFault extends ElastiCacheServiceException {
|
|
1793
|
+
static {
|
|
1794
|
+
__name(this, "ReservedCacheNodeQuotaExceededFault");
|
|
1795
|
+
}
|
|
1796
|
+
name = "ReservedCacheNodeQuotaExceededFault";
|
|
1797
|
+
$fault = "client";
|
|
1718
1798
|
/**
|
|
1719
1799
|
* @internal
|
|
1720
1800
|
*/
|
|
@@ -1724,14 +1804,15 @@ var _ReservedCacheNodeQuotaExceededFault = class _ReservedCacheNodeQuotaExceeded
|
|
|
1724
1804
|
$fault: "client",
|
|
1725
1805
|
...opts
|
|
1726
1806
|
});
|
|
1727
|
-
this.name = "ReservedCacheNodeQuotaExceededFault";
|
|
1728
|
-
this.$fault = "client";
|
|
1729
1807
|
Object.setPrototypeOf(this, _ReservedCacheNodeQuotaExceededFault.prototype);
|
|
1730
1808
|
}
|
|
1731
1809
|
};
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1810
|
+
var TagNotFoundFault = class _TagNotFoundFault extends ElastiCacheServiceException {
|
|
1811
|
+
static {
|
|
1812
|
+
__name(this, "TagNotFoundFault");
|
|
1813
|
+
}
|
|
1814
|
+
name = "TagNotFoundFault";
|
|
1815
|
+
$fault = "client";
|
|
1735
1816
|
/**
|
|
1736
1817
|
* @internal
|
|
1737
1818
|
*/
|
|
@@ -1741,14 +1822,15 @@ var _TagNotFoundFault = class _TagNotFoundFault extends ElastiCacheServiceExcept
|
|
|
1741
1822
|
$fault: "client",
|
|
1742
1823
|
...opts
|
|
1743
1824
|
});
|
|
1744
|
-
this.name = "TagNotFoundFault";
|
|
1745
|
-
this.$fault = "client";
|
|
1746
1825
|
Object.setPrototypeOf(this, _TagNotFoundFault.prototype);
|
|
1747
1826
|
}
|
|
1748
1827
|
};
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1828
|
+
var AuthorizationNotFoundFault = class _AuthorizationNotFoundFault extends ElastiCacheServiceException {
|
|
1829
|
+
static {
|
|
1830
|
+
__name(this, "AuthorizationNotFoundFault");
|
|
1831
|
+
}
|
|
1832
|
+
name = "AuthorizationNotFoundFault";
|
|
1833
|
+
$fault = "client";
|
|
1752
1834
|
/**
|
|
1753
1835
|
* @internal
|
|
1754
1836
|
*/
|
|
@@ -1758,16 +1840,17 @@ var _AuthorizationNotFoundFault = class _AuthorizationNotFoundFault extends Elas
|
|
|
1758
1840
|
$fault: "client",
|
|
1759
1841
|
...opts
|
|
1760
1842
|
});
|
|
1761
|
-
this.name = "AuthorizationNotFoundFault";
|
|
1762
|
-
this.$fault = "client";
|
|
1763
1843
|
Object.setPrototypeOf(this, _AuthorizationNotFoundFault.prototype);
|
|
1764
1844
|
}
|
|
1765
1845
|
};
|
|
1766
|
-
__name(_AuthorizationNotFoundFault, "AuthorizationNotFoundFault");
|
|
1767
|
-
var AuthorizationNotFoundFault = _AuthorizationNotFoundFault;
|
|
1768
1846
|
|
|
1769
1847
|
// src/models/models_1.ts
|
|
1770
|
-
var
|
|
1848
|
+
var ReplicationGroupAlreadyUnderMigrationFault = class _ReplicationGroupAlreadyUnderMigrationFault extends ElastiCacheServiceException {
|
|
1849
|
+
static {
|
|
1850
|
+
__name(this, "ReplicationGroupAlreadyUnderMigrationFault");
|
|
1851
|
+
}
|
|
1852
|
+
name = "ReplicationGroupAlreadyUnderMigrationFault";
|
|
1853
|
+
$fault = "client";
|
|
1771
1854
|
/**
|
|
1772
1855
|
* @internal
|
|
1773
1856
|
*/
|
|
@@ -1777,14 +1860,15 @@ var _ReplicationGroupAlreadyUnderMigrationFault = class _ReplicationGroupAlready
|
|
|
1777
1860
|
$fault: "client",
|
|
1778
1861
|
...opts
|
|
1779
1862
|
});
|
|
1780
|
-
this.name = "ReplicationGroupAlreadyUnderMigrationFault";
|
|
1781
|
-
this.$fault = "client";
|
|
1782
1863
|
Object.setPrototypeOf(this, _ReplicationGroupAlreadyUnderMigrationFault.prototype);
|
|
1783
1864
|
}
|
|
1784
1865
|
};
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1866
|
+
var APICallRateForCustomerExceededFault = class _APICallRateForCustomerExceededFault extends ElastiCacheServiceException {
|
|
1867
|
+
static {
|
|
1868
|
+
__name(this, "APICallRateForCustomerExceededFault");
|
|
1869
|
+
}
|
|
1870
|
+
name = "APICallRateForCustomerExceededFault";
|
|
1871
|
+
$fault = "client";
|
|
1788
1872
|
/**
|
|
1789
1873
|
* @internal
|
|
1790
1874
|
*/
|
|
@@ -1794,14 +1878,15 @@ var _APICallRateForCustomerExceededFault = class _APICallRateForCustomerExceeded
|
|
|
1794
1878
|
$fault: "client",
|
|
1795
1879
|
...opts
|
|
1796
1880
|
});
|
|
1797
|
-
this.name = "APICallRateForCustomerExceededFault";
|
|
1798
|
-
this.$fault = "client";
|
|
1799
1881
|
Object.setPrototypeOf(this, _APICallRateForCustomerExceededFault.prototype);
|
|
1800
1882
|
}
|
|
1801
1883
|
};
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
|
|
1884
|
+
var NodeGroupNotFoundFault = class _NodeGroupNotFoundFault extends ElastiCacheServiceException {
|
|
1885
|
+
static {
|
|
1886
|
+
__name(this, "NodeGroupNotFoundFault");
|
|
1887
|
+
}
|
|
1888
|
+
name = "NodeGroupNotFoundFault";
|
|
1889
|
+
$fault = "client";
|
|
1805
1890
|
/**
|
|
1806
1891
|
* @internal
|
|
1807
1892
|
*/
|
|
@@ -1811,14 +1896,15 @@ var _NodeGroupNotFoundFault = class _NodeGroupNotFoundFault extends ElastiCacheS
|
|
|
1811
1896
|
$fault: "client",
|
|
1812
1897
|
...opts
|
|
1813
1898
|
});
|
|
1814
|
-
this.name = "NodeGroupNotFoundFault";
|
|
1815
|
-
this.$fault = "client";
|
|
1816
1899
|
Object.setPrototypeOf(this, _NodeGroupNotFoundFault.prototype);
|
|
1817
1900
|
}
|
|
1818
1901
|
};
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
|
|
1902
|
+
var TestFailoverNotAvailableFault = class _TestFailoverNotAvailableFault extends ElastiCacheServiceException {
|
|
1903
|
+
static {
|
|
1904
|
+
__name(this, "TestFailoverNotAvailableFault");
|
|
1905
|
+
}
|
|
1906
|
+
name = "TestFailoverNotAvailableFault";
|
|
1907
|
+
$fault = "client";
|
|
1822
1908
|
/**
|
|
1823
1909
|
* @internal
|
|
1824
1910
|
*/
|
|
@@ -1828,13 +1914,9 @@ var _TestFailoverNotAvailableFault = class _TestFailoverNotAvailableFault extend
|
|
|
1828
1914
|
$fault: "client",
|
|
1829
1915
|
...opts
|
|
1830
1916
|
});
|
|
1831
|
-
this.name = "TestFailoverNotAvailableFault";
|
|
1832
|
-
this.$fault = "client";
|
|
1833
1917
|
Object.setPrototypeOf(this, _TestFailoverNotAvailableFault.prototype);
|
|
1834
1918
|
}
|
|
1835
1919
|
};
|
|
1836
|
-
__name(_TestFailoverNotAvailableFault, "TestFailoverNotAvailableFault");
|
|
1837
|
-
var TestFailoverNotAvailableFault = _TestFailoverNotAvailableFault;
|
|
1838
1920
|
|
|
1839
1921
|
// src/protocols/Aws_query.ts
|
|
1840
1922
|
var se_AddTagsToResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
@@ -4494,14 +4576,13 @@ var de_UserQuotaExceededFaultRes = /* @__PURE__ */ __name(async (parsedOutput, c
|
|
|
4494
4576
|
return (0, import_smithy_client.decorateServiceException)(exception, body);
|
|
4495
4577
|
}, "de_UserQuotaExceededFaultRes");
|
|
4496
4578
|
var se_AddTagsToResourceMessage = /* @__PURE__ */ __name((input, context) => {
|
|
4497
|
-
var _a;
|
|
4498
4579
|
const entries = {};
|
|
4499
4580
|
if (input[_RN] != null) {
|
|
4500
4581
|
entries[_RN] = input[_RN];
|
|
4501
4582
|
}
|
|
4502
4583
|
if (input[_T] != null) {
|
|
4503
4584
|
const memberEntries = se_TagList(input[_T], context);
|
|
4504
|
-
if (
|
|
4585
|
+
if (input[_T]?.length === 0) {
|
|
4505
4586
|
entries.Tags = [];
|
|
4506
4587
|
}
|
|
4507
4588
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -4512,14 +4593,13 @@ var se_AddTagsToResourceMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
4512
4593
|
return entries;
|
|
4513
4594
|
}, "se_AddTagsToResourceMessage");
|
|
4514
4595
|
var se_AuthenticationMode = /* @__PURE__ */ __name((input, context) => {
|
|
4515
|
-
var _a;
|
|
4516
4596
|
const entries = {};
|
|
4517
4597
|
if (input[_Ty] != null) {
|
|
4518
4598
|
entries[_Ty] = input[_Ty];
|
|
4519
4599
|
}
|
|
4520
4600
|
if (input[_P] != null) {
|
|
4521
4601
|
const memberEntries = se_PasswordListInput(input[_P], context);
|
|
4522
|
-
if (
|
|
4602
|
+
if (input[_P]?.length === 0) {
|
|
4523
4603
|
entries.Passwords = [];
|
|
4524
4604
|
}
|
|
4525
4605
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -4555,11 +4635,10 @@ var se_AvailabilityZonesList = /* @__PURE__ */ __name((input, context) => {
|
|
|
4555
4635
|
return entries;
|
|
4556
4636
|
}, "se_AvailabilityZonesList");
|
|
4557
4637
|
var se_BatchApplyUpdateActionMessage = /* @__PURE__ */ __name((input, context) => {
|
|
4558
|
-
var _a, _b;
|
|
4559
4638
|
const entries = {};
|
|
4560
4639
|
if (input[_RGI] != null) {
|
|
4561
4640
|
const memberEntries = se_ReplicationGroupIdList(input[_RGI], context);
|
|
4562
|
-
if (
|
|
4641
|
+
if (input[_RGI]?.length === 0) {
|
|
4563
4642
|
entries.ReplicationGroupIds = [];
|
|
4564
4643
|
}
|
|
4565
4644
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -4569,7 +4648,7 @@ var se_BatchApplyUpdateActionMessage = /* @__PURE__ */ __name((input, context) =
|
|
|
4569
4648
|
}
|
|
4570
4649
|
if (input[_CCI] != null) {
|
|
4571
4650
|
const memberEntries = se_CacheClusterIdList(input[_CCI], context);
|
|
4572
|
-
if (
|
|
4651
|
+
if (input[_CCI]?.length === 0) {
|
|
4573
4652
|
entries.CacheClusterIds = [];
|
|
4574
4653
|
}
|
|
4575
4654
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -4583,11 +4662,10 @@ var se_BatchApplyUpdateActionMessage = /* @__PURE__ */ __name((input, context) =
|
|
|
4583
4662
|
return entries;
|
|
4584
4663
|
}, "se_BatchApplyUpdateActionMessage");
|
|
4585
4664
|
var se_BatchStopUpdateActionMessage = /* @__PURE__ */ __name((input, context) => {
|
|
4586
|
-
var _a, _b;
|
|
4587
4665
|
const entries = {};
|
|
4588
4666
|
if (input[_RGI] != null) {
|
|
4589
4667
|
const memberEntries = se_ReplicationGroupIdList(input[_RGI], context);
|
|
4590
|
-
if (
|
|
4668
|
+
if (input[_RGI]?.length === 0) {
|
|
4591
4669
|
entries.ReplicationGroupIds = [];
|
|
4592
4670
|
}
|
|
4593
4671
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -4597,7 +4675,7 @@ var se_BatchStopUpdateActionMessage = /* @__PURE__ */ __name((input, context) =>
|
|
|
4597
4675
|
}
|
|
4598
4676
|
if (input[_CCI] != null) {
|
|
4599
4677
|
const memberEntries = se_CacheClusterIdList(input[_CCI], context);
|
|
4600
|
-
if (
|
|
4678
|
+
if (input[_CCI]?.length === 0) {
|
|
4601
4679
|
entries.CacheClusterIds = [];
|
|
4602
4680
|
}
|
|
4603
4681
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -4682,7 +4760,6 @@ var se_CompleteMigrationMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
4682
4760
|
return entries;
|
|
4683
4761
|
}, "se_CompleteMigrationMessage");
|
|
4684
4762
|
var se_ConfigureShard = /* @__PURE__ */ __name((input, context) => {
|
|
4685
|
-
var _a, _b;
|
|
4686
4763
|
const entries = {};
|
|
4687
4764
|
if (input[_NGI] != null) {
|
|
4688
4765
|
entries[_NGI] = input[_NGI];
|
|
@@ -4692,7 +4769,7 @@ var se_ConfigureShard = /* @__PURE__ */ __name((input, context) => {
|
|
|
4692
4769
|
}
|
|
4693
4770
|
if (input[_PAZ] != null) {
|
|
4694
4771
|
const memberEntries = se_PreferredAvailabilityZoneList(input[_PAZ], context);
|
|
4695
|
-
if (
|
|
4772
|
+
if (input[_PAZ]?.length === 0) {
|
|
4696
4773
|
entries.PreferredAvailabilityZones = [];
|
|
4697
4774
|
}
|
|
4698
4775
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -4702,7 +4779,7 @@ var se_ConfigureShard = /* @__PURE__ */ __name((input, context) => {
|
|
|
4702
4779
|
}
|
|
4703
4780
|
if (input[_POA] != null) {
|
|
4704
4781
|
const memberEntries = se_PreferredOutpostArnList(input[_POA], context);
|
|
4705
|
-
if (
|
|
4782
|
+
if (input[_POA]?.length === 0) {
|
|
4706
4783
|
entries.PreferredOutpostArns = [];
|
|
4707
4784
|
}
|
|
4708
4785
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -4713,7 +4790,6 @@ var se_ConfigureShard = /* @__PURE__ */ __name((input, context) => {
|
|
|
4713
4790
|
return entries;
|
|
4714
4791
|
}, "se_ConfigureShard");
|
|
4715
4792
|
var se_CopyServerlessCacheSnapshotRequest = /* @__PURE__ */ __name((input, context) => {
|
|
4716
|
-
var _a;
|
|
4717
4793
|
const entries = {};
|
|
4718
4794
|
if (input[_SSCSN] != null) {
|
|
4719
4795
|
entries[_SSCSN] = input[_SSCSN];
|
|
@@ -4726,7 +4802,7 @@ var se_CopyServerlessCacheSnapshotRequest = /* @__PURE__ */ __name((input, conte
|
|
|
4726
4802
|
}
|
|
4727
4803
|
if (input[_T] != null) {
|
|
4728
4804
|
const memberEntries = se_TagList(input[_T], context);
|
|
4729
|
-
if (
|
|
4805
|
+
if (input[_T]?.length === 0) {
|
|
4730
4806
|
entries.Tags = [];
|
|
4731
4807
|
}
|
|
4732
4808
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -4737,7 +4813,6 @@ var se_CopyServerlessCacheSnapshotRequest = /* @__PURE__ */ __name((input, conte
|
|
|
4737
4813
|
return entries;
|
|
4738
4814
|
}, "se_CopyServerlessCacheSnapshotRequest");
|
|
4739
4815
|
var se_CopySnapshotMessage = /* @__PURE__ */ __name((input, context) => {
|
|
4740
|
-
var _a;
|
|
4741
4816
|
const entries = {};
|
|
4742
4817
|
if (input[_SSN] != null) {
|
|
4743
4818
|
entries[_SSN] = input[_SSN];
|
|
@@ -4753,7 +4828,7 @@ var se_CopySnapshotMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
4753
4828
|
}
|
|
4754
4829
|
if (input[_T] != null) {
|
|
4755
4830
|
const memberEntries = se_TagList(input[_T], context);
|
|
4756
|
-
if (
|
|
4831
|
+
if (input[_T]?.length === 0) {
|
|
4757
4832
|
entries.Tags = [];
|
|
4758
4833
|
}
|
|
4759
4834
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -4764,7 +4839,6 @@ var se_CopySnapshotMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
4764
4839
|
return entries;
|
|
4765
4840
|
}, "se_CopySnapshotMessage");
|
|
4766
4841
|
var se_CreateCacheClusterMessage = /* @__PURE__ */ __name((input, context) => {
|
|
4767
|
-
var _a, _b, _c, _d, _e, _f, _g;
|
|
4768
4842
|
const entries = {};
|
|
4769
4843
|
if (input[_CCIa] != null) {
|
|
4770
4844
|
entries[_CCIa] = input[_CCIa];
|
|
@@ -4780,7 +4854,7 @@ var se_CreateCacheClusterMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
4780
4854
|
}
|
|
4781
4855
|
if (input[_PAZ] != null) {
|
|
4782
4856
|
const memberEntries = se_PreferredAvailabilityZoneList(input[_PAZ], context);
|
|
4783
|
-
if (
|
|
4857
|
+
if (input[_PAZ]?.length === 0) {
|
|
4784
4858
|
entries.PreferredAvailabilityZones = [];
|
|
4785
4859
|
}
|
|
4786
4860
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -4808,7 +4882,7 @@ var se_CreateCacheClusterMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
4808
4882
|
}
|
|
4809
4883
|
if (input[_CSGNac] != null) {
|
|
4810
4884
|
const memberEntries = se_CacheSecurityGroupNameList(input[_CSGNac], context);
|
|
4811
|
-
if (
|
|
4885
|
+
if (input[_CSGNac]?.length === 0) {
|
|
4812
4886
|
entries.CacheSecurityGroupNames = [];
|
|
4813
4887
|
}
|
|
4814
4888
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -4818,7 +4892,7 @@ var se_CreateCacheClusterMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
4818
4892
|
}
|
|
4819
4893
|
if (input[_SGI] != null) {
|
|
4820
4894
|
const memberEntries = se_SecurityGroupIdsList(input[_SGI], context);
|
|
4821
|
-
if (
|
|
4895
|
+
if (input[_SGI]?.length === 0) {
|
|
4822
4896
|
entries.SecurityGroupIds = [];
|
|
4823
4897
|
}
|
|
4824
4898
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -4828,7 +4902,7 @@ var se_CreateCacheClusterMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
4828
4902
|
}
|
|
4829
4903
|
if (input[_T] != null) {
|
|
4830
4904
|
const memberEntries = se_TagList(input[_T], context);
|
|
4831
|
-
if (
|
|
4905
|
+
if (input[_T]?.length === 0) {
|
|
4832
4906
|
entries.Tags = [];
|
|
4833
4907
|
}
|
|
4834
4908
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -4838,7 +4912,7 @@ var se_CreateCacheClusterMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
4838
4912
|
}
|
|
4839
4913
|
if (input[_SA] != null) {
|
|
4840
4914
|
const memberEntries = se_SnapshotArnsList(input[_SA], context);
|
|
4841
|
-
if (
|
|
4915
|
+
if (input[_SA]?.length === 0) {
|
|
4842
4916
|
entries.SnapshotArns = [];
|
|
4843
4917
|
}
|
|
4844
4918
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -4878,7 +4952,7 @@ var se_CreateCacheClusterMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
4878
4952
|
}
|
|
4879
4953
|
if (input[_POA] != null) {
|
|
4880
4954
|
const memberEntries = se_PreferredOutpostArnList(input[_POA], context);
|
|
4881
|
-
if (
|
|
4955
|
+
if (input[_POA]?.length === 0) {
|
|
4882
4956
|
entries.PreferredOutpostArns = [];
|
|
4883
4957
|
}
|
|
4884
4958
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -4888,7 +4962,7 @@ var se_CreateCacheClusterMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
4888
4962
|
}
|
|
4889
4963
|
if (input[_LDC] != null) {
|
|
4890
4964
|
const memberEntries = se_LogDeliveryConfigurationRequestList(input[_LDC], context);
|
|
4891
|
-
if (
|
|
4965
|
+
if (input[_LDC]?.length === 0) {
|
|
4892
4966
|
entries.LogDeliveryConfigurations = [];
|
|
4893
4967
|
}
|
|
4894
4968
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -4908,7 +4982,6 @@ var se_CreateCacheClusterMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
4908
4982
|
return entries;
|
|
4909
4983
|
}, "se_CreateCacheClusterMessage");
|
|
4910
4984
|
var se_CreateCacheParameterGroupMessage = /* @__PURE__ */ __name((input, context) => {
|
|
4911
|
-
var _a;
|
|
4912
4985
|
const entries = {};
|
|
4913
4986
|
if (input[_CPGN] != null) {
|
|
4914
4987
|
entries[_CPGN] = input[_CPGN];
|
|
@@ -4921,7 +4994,7 @@ var se_CreateCacheParameterGroupMessage = /* @__PURE__ */ __name((input, context
|
|
|
4921
4994
|
}
|
|
4922
4995
|
if (input[_T] != null) {
|
|
4923
4996
|
const memberEntries = se_TagList(input[_T], context);
|
|
4924
|
-
if (
|
|
4997
|
+
if (input[_T]?.length === 0) {
|
|
4925
4998
|
entries.Tags = [];
|
|
4926
4999
|
}
|
|
4927
5000
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -4932,7 +5005,6 @@ var se_CreateCacheParameterGroupMessage = /* @__PURE__ */ __name((input, context
|
|
|
4932
5005
|
return entries;
|
|
4933
5006
|
}, "se_CreateCacheParameterGroupMessage");
|
|
4934
5007
|
var se_CreateCacheSecurityGroupMessage = /* @__PURE__ */ __name((input, context) => {
|
|
4935
|
-
var _a;
|
|
4936
5008
|
const entries = {};
|
|
4937
5009
|
if (input[_CSGN] != null) {
|
|
4938
5010
|
entries[_CSGN] = input[_CSGN];
|
|
@@ -4942,7 +5014,7 @@ var se_CreateCacheSecurityGroupMessage = /* @__PURE__ */ __name((input, context)
|
|
|
4942
5014
|
}
|
|
4943
5015
|
if (input[_T] != null) {
|
|
4944
5016
|
const memberEntries = se_TagList(input[_T], context);
|
|
4945
|
-
if (
|
|
5017
|
+
if (input[_T]?.length === 0) {
|
|
4946
5018
|
entries.Tags = [];
|
|
4947
5019
|
}
|
|
4948
5020
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -4953,7 +5025,6 @@ var se_CreateCacheSecurityGroupMessage = /* @__PURE__ */ __name((input, context)
|
|
|
4953
5025
|
return entries;
|
|
4954
5026
|
}, "se_CreateCacheSecurityGroupMessage");
|
|
4955
5027
|
var se_CreateCacheSubnetGroupMessage = /* @__PURE__ */ __name((input, context) => {
|
|
4956
|
-
var _a, _b;
|
|
4957
5028
|
const entries = {};
|
|
4958
5029
|
if (input[_CSGNa] != null) {
|
|
4959
5030
|
entries[_CSGNa] = input[_CSGNa];
|
|
@@ -4963,7 +5034,7 @@ var se_CreateCacheSubnetGroupMessage = /* @__PURE__ */ __name((input, context) =
|
|
|
4963
5034
|
}
|
|
4964
5035
|
if (input[_SI] != null) {
|
|
4965
5036
|
const memberEntries = se_SubnetIdentifierList(input[_SI], context);
|
|
4966
|
-
if (
|
|
5037
|
+
if (input[_SI]?.length === 0) {
|
|
4967
5038
|
entries.SubnetIds = [];
|
|
4968
5039
|
}
|
|
4969
5040
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -4973,7 +5044,7 @@ var se_CreateCacheSubnetGroupMessage = /* @__PURE__ */ __name((input, context) =
|
|
|
4973
5044
|
}
|
|
4974
5045
|
if (input[_T] != null) {
|
|
4975
5046
|
const memberEntries = se_TagList(input[_T], context);
|
|
4976
|
-
if (
|
|
5047
|
+
if (input[_T]?.length === 0) {
|
|
4977
5048
|
entries.Tags = [];
|
|
4978
5049
|
}
|
|
4979
5050
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -4997,7 +5068,6 @@ var se_CreateGlobalReplicationGroupMessage = /* @__PURE__ */ __name((input, cont
|
|
|
4997
5068
|
return entries;
|
|
4998
5069
|
}, "se_CreateGlobalReplicationGroupMessage");
|
|
4999
5070
|
var se_CreateReplicationGroupMessage = /* @__PURE__ */ __name((input, context) => {
|
|
5000
|
-
var _a, _b, _c, _d, _e, _f, _g, _h;
|
|
5001
5071
|
const entries = {};
|
|
5002
5072
|
if (input[_RGIe] != null) {
|
|
5003
5073
|
entries[_RGIe] = input[_RGIe];
|
|
@@ -5022,7 +5092,7 @@ var se_CreateReplicationGroupMessage = /* @__PURE__ */ __name((input, context) =
|
|
|
5022
5092
|
}
|
|
5023
5093
|
if (input[_PCCAZ] != null) {
|
|
5024
5094
|
const memberEntries = se_AvailabilityZonesList(input[_PCCAZ], context);
|
|
5025
|
-
if (
|
|
5095
|
+
if (input[_PCCAZ]?.length === 0) {
|
|
5026
5096
|
entries.PreferredCacheClusterAZs = [];
|
|
5027
5097
|
}
|
|
5028
5098
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -5038,7 +5108,7 @@ var se_CreateReplicationGroupMessage = /* @__PURE__ */ __name((input, context) =
|
|
|
5038
5108
|
}
|
|
5039
5109
|
if (input[_NGC] != null) {
|
|
5040
5110
|
const memberEntries = se_NodeGroupConfigurationList(input[_NGC], context);
|
|
5041
|
-
if (
|
|
5111
|
+
if (input[_NGC]?.length === 0) {
|
|
5042
5112
|
entries.NodeGroupConfiguration = [];
|
|
5043
5113
|
}
|
|
5044
5114
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -5063,7 +5133,7 @@ var se_CreateReplicationGroupMessage = /* @__PURE__ */ __name((input, context) =
|
|
|
5063
5133
|
}
|
|
5064
5134
|
if (input[_CSGNac] != null) {
|
|
5065
5135
|
const memberEntries = se_CacheSecurityGroupNameList(input[_CSGNac], context);
|
|
5066
|
-
if (
|
|
5136
|
+
if (input[_CSGNac]?.length === 0) {
|
|
5067
5137
|
entries.CacheSecurityGroupNames = [];
|
|
5068
5138
|
}
|
|
5069
5139
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -5073,7 +5143,7 @@ var se_CreateReplicationGroupMessage = /* @__PURE__ */ __name((input, context) =
|
|
|
5073
5143
|
}
|
|
5074
5144
|
if (input[_SGI] != null) {
|
|
5075
5145
|
const memberEntries = se_SecurityGroupIdsList(input[_SGI], context);
|
|
5076
|
-
if (
|
|
5146
|
+
if (input[_SGI]?.length === 0) {
|
|
5077
5147
|
entries.SecurityGroupIds = [];
|
|
5078
5148
|
}
|
|
5079
5149
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -5083,7 +5153,7 @@ var se_CreateReplicationGroupMessage = /* @__PURE__ */ __name((input, context) =
|
|
|
5083
5153
|
}
|
|
5084
5154
|
if (input[_T] != null) {
|
|
5085
5155
|
const memberEntries = se_TagList(input[_T], context);
|
|
5086
|
-
if (
|
|
5156
|
+
if (input[_T]?.length === 0) {
|
|
5087
5157
|
entries.Tags = [];
|
|
5088
5158
|
}
|
|
5089
5159
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -5093,7 +5163,7 @@ var se_CreateReplicationGroupMessage = /* @__PURE__ */ __name((input, context) =
|
|
|
5093
5163
|
}
|
|
5094
5164
|
if (input[_SA] != null) {
|
|
5095
5165
|
const memberEntries = se_SnapshotArnsList(input[_SA], context);
|
|
5096
|
-
if (
|
|
5166
|
+
if (input[_SA]?.length === 0) {
|
|
5097
5167
|
entries.SnapshotArns = [];
|
|
5098
5168
|
}
|
|
5099
5169
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -5136,7 +5206,7 @@ var se_CreateReplicationGroupMessage = /* @__PURE__ */ __name((input, context) =
|
|
|
5136
5206
|
}
|
|
5137
5207
|
if (input[_UGI] != null) {
|
|
5138
5208
|
const memberEntries = se_UserGroupIdListInput(input[_UGI], context);
|
|
5139
|
-
if (
|
|
5209
|
+
if (input[_UGI]?.length === 0) {
|
|
5140
5210
|
entries.UserGroupIds = [];
|
|
5141
5211
|
}
|
|
5142
5212
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -5146,7 +5216,7 @@ var se_CreateReplicationGroupMessage = /* @__PURE__ */ __name((input, context) =
|
|
|
5146
5216
|
}
|
|
5147
5217
|
if (input[_LDC] != null) {
|
|
5148
5218
|
const memberEntries = se_LogDeliveryConfigurationRequestList(input[_LDC], context);
|
|
5149
|
-
if (
|
|
5219
|
+
if (input[_LDC]?.length === 0) {
|
|
5150
5220
|
entries.LogDeliveryConfigurations = [];
|
|
5151
5221
|
}
|
|
5152
5222
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -5175,7 +5245,6 @@ var se_CreateReplicationGroupMessage = /* @__PURE__ */ __name((input, context) =
|
|
|
5175
5245
|
return entries;
|
|
5176
5246
|
}, "se_CreateReplicationGroupMessage");
|
|
5177
5247
|
var se_CreateServerlessCacheRequest = /* @__PURE__ */ __name((input, context) => {
|
|
5178
|
-
var _a, _b, _c, _d;
|
|
5179
5248
|
const entries = {};
|
|
5180
5249
|
if (input[_SCN] != null) {
|
|
5181
5250
|
entries[_SCN] = input[_SCN];
|
|
@@ -5201,7 +5270,7 @@ var se_CreateServerlessCacheRequest = /* @__PURE__ */ __name((input, context) =>
|
|
|
5201
5270
|
}
|
|
5202
5271
|
if (input[_SGI] != null) {
|
|
5203
5272
|
const memberEntries = se_SecurityGroupIdsList(input[_SGI], context);
|
|
5204
|
-
if (
|
|
5273
|
+
if (input[_SGI]?.length === 0) {
|
|
5205
5274
|
entries.SecurityGroupIds = [];
|
|
5206
5275
|
}
|
|
5207
5276
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -5211,7 +5280,7 @@ var se_CreateServerlessCacheRequest = /* @__PURE__ */ __name((input, context) =>
|
|
|
5211
5280
|
}
|
|
5212
5281
|
if (input[_SATR] != null) {
|
|
5213
5282
|
const memberEntries = se_SnapshotArnsList(input[_SATR], context);
|
|
5214
|
-
if (
|
|
5283
|
+
if (input[_SATR]?.length === 0) {
|
|
5215
5284
|
entries.SnapshotArnsToRestore = [];
|
|
5216
5285
|
}
|
|
5217
5286
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -5221,7 +5290,7 @@ var se_CreateServerlessCacheRequest = /* @__PURE__ */ __name((input, context) =>
|
|
|
5221
5290
|
}
|
|
5222
5291
|
if (input[_T] != null) {
|
|
5223
5292
|
const memberEntries = se_TagList(input[_T], context);
|
|
5224
|
-
if (
|
|
5293
|
+
if (input[_T]?.length === 0) {
|
|
5225
5294
|
entries.Tags = [];
|
|
5226
5295
|
}
|
|
5227
5296
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -5234,7 +5303,7 @@ var se_CreateServerlessCacheRequest = /* @__PURE__ */ __name((input, context) =>
|
|
|
5234
5303
|
}
|
|
5235
5304
|
if (input[_SI] != null) {
|
|
5236
5305
|
const memberEntries = se_SubnetIdsList(input[_SI], context);
|
|
5237
|
-
if (
|
|
5306
|
+
if (input[_SI]?.length === 0) {
|
|
5238
5307
|
entries.SubnetIds = [];
|
|
5239
5308
|
}
|
|
5240
5309
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -5251,7 +5320,6 @@ var se_CreateServerlessCacheRequest = /* @__PURE__ */ __name((input, context) =>
|
|
|
5251
5320
|
return entries;
|
|
5252
5321
|
}, "se_CreateServerlessCacheRequest");
|
|
5253
5322
|
var se_CreateServerlessCacheSnapshotRequest = /* @__PURE__ */ __name((input, context) => {
|
|
5254
|
-
var _a;
|
|
5255
5323
|
const entries = {};
|
|
5256
5324
|
if (input[_SCSN] != null) {
|
|
5257
5325
|
entries[_SCSN] = input[_SCSN];
|
|
@@ -5264,7 +5332,7 @@ var se_CreateServerlessCacheSnapshotRequest = /* @__PURE__ */ __name((input, con
|
|
|
5264
5332
|
}
|
|
5265
5333
|
if (input[_T] != null) {
|
|
5266
5334
|
const memberEntries = se_TagList(input[_T], context);
|
|
5267
|
-
if (
|
|
5335
|
+
if (input[_T]?.length === 0) {
|
|
5268
5336
|
entries.Tags = [];
|
|
5269
5337
|
}
|
|
5270
5338
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -5275,7 +5343,6 @@ var se_CreateServerlessCacheSnapshotRequest = /* @__PURE__ */ __name((input, con
|
|
|
5275
5343
|
return entries;
|
|
5276
5344
|
}, "se_CreateServerlessCacheSnapshotRequest");
|
|
5277
5345
|
var se_CreateSnapshotMessage = /* @__PURE__ */ __name((input, context) => {
|
|
5278
|
-
var _a;
|
|
5279
5346
|
const entries = {};
|
|
5280
5347
|
if (input[_RGIe] != null) {
|
|
5281
5348
|
entries[_RGIe] = input[_RGIe];
|
|
@@ -5291,7 +5358,7 @@ var se_CreateSnapshotMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
5291
5358
|
}
|
|
5292
5359
|
if (input[_T] != null) {
|
|
5293
5360
|
const memberEntries = se_TagList(input[_T], context);
|
|
5294
|
-
if (
|
|
5361
|
+
if (input[_T]?.length === 0) {
|
|
5295
5362
|
entries.Tags = [];
|
|
5296
5363
|
}
|
|
5297
5364
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -5302,7 +5369,6 @@ var se_CreateSnapshotMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
5302
5369
|
return entries;
|
|
5303
5370
|
}, "se_CreateSnapshotMessage");
|
|
5304
5371
|
var se_CreateUserGroupMessage = /* @__PURE__ */ __name((input, context) => {
|
|
5305
|
-
var _a, _b;
|
|
5306
5372
|
const entries = {};
|
|
5307
5373
|
if (input[_UGIs] != null) {
|
|
5308
5374
|
entries[_UGIs] = input[_UGIs];
|
|
@@ -5312,7 +5378,7 @@ var se_CreateUserGroupMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
5312
5378
|
}
|
|
5313
5379
|
if (input[_UI] != null) {
|
|
5314
5380
|
const memberEntries = se_UserIdListInput(input[_UI], context);
|
|
5315
|
-
if (
|
|
5381
|
+
if (input[_UI]?.length === 0) {
|
|
5316
5382
|
entries.UserIds = [];
|
|
5317
5383
|
}
|
|
5318
5384
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -5322,7 +5388,7 @@ var se_CreateUserGroupMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
5322
5388
|
}
|
|
5323
5389
|
if (input[_T] != null) {
|
|
5324
5390
|
const memberEntries = se_TagList(input[_T], context);
|
|
5325
|
-
if (
|
|
5391
|
+
if (input[_T]?.length === 0) {
|
|
5326
5392
|
entries.Tags = [];
|
|
5327
5393
|
}
|
|
5328
5394
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -5333,7 +5399,6 @@ var se_CreateUserGroupMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
5333
5399
|
return entries;
|
|
5334
5400
|
}, "se_CreateUserGroupMessage");
|
|
5335
5401
|
var se_CreateUserMessage = /* @__PURE__ */ __name((input, context) => {
|
|
5336
|
-
var _a, _b;
|
|
5337
5402
|
const entries = {};
|
|
5338
5403
|
if (input[_UIs] != null) {
|
|
5339
5404
|
entries[_UIs] = input[_UIs];
|
|
@@ -5346,7 +5411,7 @@ var se_CreateUserMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
5346
5411
|
}
|
|
5347
5412
|
if (input[_P] != null) {
|
|
5348
5413
|
const memberEntries = se_PasswordListInput(input[_P], context);
|
|
5349
|
-
if (
|
|
5414
|
+
if (input[_P]?.length === 0) {
|
|
5350
5415
|
entries.Passwords = [];
|
|
5351
5416
|
}
|
|
5352
5417
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -5362,7 +5427,7 @@ var se_CreateUserMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
5362
5427
|
}
|
|
5363
5428
|
if (input[_T] != null) {
|
|
5364
5429
|
const memberEntries = se_TagList(input[_T], context);
|
|
5365
|
-
if (
|
|
5430
|
+
if (input[_T]?.length === 0) {
|
|
5366
5431
|
entries.Tags = [];
|
|
5367
5432
|
}
|
|
5368
5433
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -5418,7 +5483,6 @@ var se_DataStorage = /* @__PURE__ */ __name((input, context) => {
|
|
|
5418
5483
|
return entries;
|
|
5419
5484
|
}, "se_DataStorage");
|
|
5420
5485
|
var se_DecreaseNodeGroupsInGlobalReplicationGroupMessage = /* @__PURE__ */ __name((input, context) => {
|
|
5421
|
-
var _a, _b;
|
|
5422
5486
|
const entries = {};
|
|
5423
5487
|
if (input[_GRGI] != null) {
|
|
5424
5488
|
entries[_GRGI] = input[_GRGI];
|
|
@@ -5428,7 +5492,7 @@ var se_DecreaseNodeGroupsInGlobalReplicationGroupMessage = /* @__PURE__ */ __nam
|
|
|
5428
5492
|
}
|
|
5429
5493
|
if (input[_GNGTR] != null) {
|
|
5430
5494
|
const memberEntries = se_GlobalNodeGroupIdList(input[_GNGTR], context);
|
|
5431
|
-
if (
|
|
5495
|
+
if (input[_GNGTR]?.length === 0) {
|
|
5432
5496
|
entries.GlobalNodeGroupsToRemove = [];
|
|
5433
5497
|
}
|
|
5434
5498
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -5438,7 +5502,7 @@ var se_DecreaseNodeGroupsInGlobalReplicationGroupMessage = /* @__PURE__ */ __nam
|
|
|
5438
5502
|
}
|
|
5439
5503
|
if (input[_GNGTRl] != null) {
|
|
5440
5504
|
const memberEntries = se_GlobalNodeGroupIdList(input[_GNGTRl], context);
|
|
5441
|
-
if (
|
|
5505
|
+
if (input[_GNGTRl]?.length === 0) {
|
|
5442
5506
|
entries.GlobalNodeGroupsToRetain = [];
|
|
5443
5507
|
}
|
|
5444
5508
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -5452,7 +5516,6 @@ var se_DecreaseNodeGroupsInGlobalReplicationGroupMessage = /* @__PURE__ */ __nam
|
|
|
5452
5516
|
return entries;
|
|
5453
5517
|
}, "se_DecreaseNodeGroupsInGlobalReplicationGroupMessage");
|
|
5454
5518
|
var se_DecreaseReplicaCountMessage = /* @__PURE__ */ __name((input, context) => {
|
|
5455
|
-
var _a, _b;
|
|
5456
5519
|
const entries = {};
|
|
5457
5520
|
if (input[_RGIe] != null) {
|
|
5458
5521
|
entries[_RGIe] = input[_RGIe];
|
|
@@ -5462,7 +5525,7 @@ var se_DecreaseReplicaCountMessage = /* @__PURE__ */ __name((input, context) =>
|
|
|
5462
5525
|
}
|
|
5463
5526
|
if (input[_RC] != null) {
|
|
5464
5527
|
const memberEntries = se_ReplicaConfigurationList(input[_RC], context);
|
|
5465
|
-
if (
|
|
5528
|
+
if (input[_RC]?.length === 0) {
|
|
5466
5529
|
entries.ReplicaConfiguration = [];
|
|
5467
5530
|
}
|
|
5468
5531
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -5472,7 +5535,7 @@ var se_DecreaseReplicaCountMessage = /* @__PURE__ */ __name((input, context) =>
|
|
|
5472
5535
|
}
|
|
5473
5536
|
if (input[_RTR] != null) {
|
|
5474
5537
|
const memberEntries = se_RemoveReplicasList(input[_RTR], context);
|
|
5475
|
-
if (
|
|
5538
|
+
if (input[_RTR]?.length === 0) {
|
|
5476
5539
|
entries.ReplicasToRemove = [];
|
|
5477
5540
|
}
|
|
5478
5541
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -5826,14 +5889,13 @@ var se_DescribeServerlessCachesRequest = /* @__PURE__ */ __name((input, context)
|
|
|
5826
5889
|
return entries;
|
|
5827
5890
|
}, "se_DescribeServerlessCachesRequest");
|
|
5828
5891
|
var se_DescribeServiceUpdatesMessage = /* @__PURE__ */ __name((input, context) => {
|
|
5829
|
-
var _a;
|
|
5830
5892
|
const entries = {};
|
|
5831
5893
|
if (input[_SUN] != null) {
|
|
5832
5894
|
entries[_SUN] = input[_SUN];
|
|
5833
5895
|
}
|
|
5834
5896
|
if (input[_SUS] != null) {
|
|
5835
5897
|
const memberEntries = se_ServiceUpdateStatusList(input[_SUS], context);
|
|
5836
|
-
if (
|
|
5898
|
+
if (input[_SUS]?.length === 0) {
|
|
5837
5899
|
entries.ServiceUpdateStatus = [];
|
|
5838
5900
|
}
|
|
5839
5901
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -5875,14 +5937,13 @@ var se_DescribeSnapshotsMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
5875
5937
|
return entries;
|
|
5876
5938
|
}, "se_DescribeSnapshotsMessage");
|
|
5877
5939
|
var se_DescribeUpdateActionsMessage = /* @__PURE__ */ __name((input, context) => {
|
|
5878
|
-
var _a, _b, _c, _d;
|
|
5879
5940
|
const entries = {};
|
|
5880
5941
|
if (input[_SUN] != null) {
|
|
5881
5942
|
entries[_SUN] = input[_SUN];
|
|
5882
5943
|
}
|
|
5883
5944
|
if (input[_RGI] != null) {
|
|
5884
5945
|
const memberEntries = se_ReplicationGroupIdList(input[_RGI], context);
|
|
5885
|
-
if (
|
|
5946
|
+
if (input[_RGI]?.length === 0) {
|
|
5886
5947
|
entries.ReplicationGroupIds = [];
|
|
5887
5948
|
}
|
|
5888
5949
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -5892,7 +5953,7 @@ var se_DescribeUpdateActionsMessage = /* @__PURE__ */ __name((input, context) =>
|
|
|
5892
5953
|
}
|
|
5893
5954
|
if (input[_CCI] != null) {
|
|
5894
5955
|
const memberEntries = se_CacheClusterIdList(input[_CCI], context);
|
|
5895
|
-
if (
|
|
5956
|
+
if (input[_CCI]?.length === 0) {
|
|
5896
5957
|
entries.CacheClusterIds = [];
|
|
5897
5958
|
}
|
|
5898
5959
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -5905,7 +5966,7 @@ var se_DescribeUpdateActionsMessage = /* @__PURE__ */ __name((input, context) =>
|
|
|
5905
5966
|
}
|
|
5906
5967
|
if (input[_SUS] != null) {
|
|
5907
5968
|
const memberEntries = se_ServiceUpdateStatusList(input[_SUS], context);
|
|
5908
|
-
if (
|
|
5969
|
+
if (input[_SUS]?.length === 0) {
|
|
5909
5970
|
entries.ServiceUpdateStatus = [];
|
|
5910
5971
|
}
|
|
5911
5972
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -5922,7 +5983,7 @@ var se_DescribeUpdateActionsMessage = /* @__PURE__ */ __name((input, context) =>
|
|
|
5922
5983
|
}
|
|
5923
5984
|
if (input[_UAS] != null) {
|
|
5924
5985
|
const memberEntries = se_UpdateActionStatusList(input[_UAS], context);
|
|
5925
|
-
if (
|
|
5986
|
+
if (input[_UAS]?.length === 0) {
|
|
5926
5987
|
entries.UpdateActionStatus = [];
|
|
5927
5988
|
}
|
|
5928
5989
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -5955,7 +6016,6 @@ var se_DescribeUserGroupsMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
5955
6016
|
return entries;
|
|
5956
6017
|
}, "se_DescribeUserGroupsMessage");
|
|
5957
6018
|
var se_DescribeUsersMessage = /* @__PURE__ */ __name((input, context) => {
|
|
5958
|
-
var _a;
|
|
5959
6019
|
const entries = {};
|
|
5960
6020
|
if (input[_E] != null) {
|
|
5961
6021
|
entries[_E] = input[_E];
|
|
@@ -5965,7 +6025,7 @@ var se_DescribeUsersMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
5965
6025
|
}
|
|
5966
6026
|
if (input[_Fi] != null) {
|
|
5967
6027
|
const memberEntries = se_FilterList(input[_Fi], context);
|
|
5968
|
-
if (
|
|
6028
|
+
if (input[_Fi]?.length === 0) {
|
|
5969
6029
|
entries.Filters = [];
|
|
5970
6030
|
}
|
|
5971
6031
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -6046,14 +6106,13 @@ var se_FailoverGlobalReplicationGroupMessage = /* @__PURE__ */ __name((input, co
|
|
|
6046
6106
|
return entries;
|
|
6047
6107
|
}, "se_FailoverGlobalReplicationGroupMessage");
|
|
6048
6108
|
var se_Filter = /* @__PURE__ */ __name((input, context) => {
|
|
6049
|
-
var _a;
|
|
6050
6109
|
const entries = {};
|
|
6051
6110
|
if (input[_N] != null) {
|
|
6052
6111
|
entries[_N] = input[_N];
|
|
6053
6112
|
}
|
|
6054
6113
|
if (input[_Va] != null) {
|
|
6055
6114
|
const memberEntries = se_FilterValueList(input[_Va], context);
|
|
6056
|
-
if (
|
|
6115
|
+
if (input[_Va]?.length === 0) {
|
|
6057
6116
|
entries.Values = [];
|
|
6058
6117
|
}
|
|
6059
6118
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -6103,7 +6162,6 @@ var se_GlobalNodeGroupIdList = /* @__PURE__ */ __name((input, context) => {
|
|
|
6103
6162
|
return entries;
|
|
6104
6163
|
}, "se_GlobalNodeGroupIdList");
|
|
6105
6164
|
var se_IncreaseNodeGroupsInGlobalReplicationGroupMessage = /* @__PURE__ */ __name((input, context) => {
|
|
6106
|
-
var _a;
|
|
6107
6165
|
const entries = {};
|
|
6108
6166
|
if (input[_GRGI] != null) {
|
|
6109
6167
|
entries[_GRGI] = input[_GRGI];
|
|
@@ -6113,7 +6171,7 @@ var se_IncreaseNodeGroupsInGlobalReplicationGroupMessage = /* @__PURE__ */ __nam
|
|
|
6113
6171
|
}
|
|
6114
6172
|
if (input[_RCe] != null) {
|
|
6115
6173
|
const memberEntries = se_RegionalConfigurationList(input[_RCe], context);
|
|
6116
|
-
if (
|
|
6174
|
+
if (input[_RCe]?.length === 0) {
|
|
6117
6175
|
entries.RegionalConfigurations = [];
|
|
6118
6176
|
}
|
|
6119
6177
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -6127,7 +6185,6 @@ var se_IncreaseNodeGroupsInGlobalReplicationGroupMessage = /* @__PURE__ */ __nam
|
|
|
6127
6185
|
return entries;
|
|
6128
6186
|
}, "se_IncreaseNodeGroupsInGlobalReplicationGroupMessage");
|
|
6129
6187
|
var se_IncreaseReplicaCountMessage = /* @__PURE__ */ __name((input, context) => {
|
|
6130
|
-
var _a;
|
|
6131
6188
|
const entries = {};
|
|
6132
6189
|
if (input[_RGIe] != null) {
|
|
6133
6190
|
entries[_RGIe] = input[_RGIe];
|
|
@@ -6137,7 +6194,7 @@ var se_IncreaseReplicaCountMessage = /* @__PURE__ */ __name((input, context) =>
|
|
|
6137
6194
|
}
|
|
6138
6195
|
if (input[_RC] != null) {
|
|
6139
6196
|
const memberEntries = se_ReplicaConfigurationList(input[_RC], context);
|
|
6140
|
-
if (
|
|
6197
|
+
if (input[_RC]?.length === 0) {
|
|
6141
6198
|
entries.ReplicaConfiguration = [];
|
|
6142
6199
|
}
|
|
6143
6200
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -6225,7 +6282,6 @@ var se_LogDeliveryConfigurationRequestList = /* @__PURE__ */ __name((input, cont
|
|
|
6225
6282
|
return entries;
|
|
6226
6283
|
}, "se_LogDeliveryConfigurationRequestList");
|
|
6227
6284
|
var se_ModifyCacheClusterMessage = /* @__PURE__ */ __name((input, context) => {
|
|
6228
|
-
var _a, _b, _c, _d, _e;
|
|
6229
6285
|
const entries = {};
|
|
6230
6286
|
if (input[_CCIa] != null) {
|
|
6231
6287
|
entries[_CCIa] = input[_CCIa];
|
|
@@ -6235,7 +6291,7 @@ var se_ModifyCacheClusterMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
6235
6291
|
}
|
|
6236
6292
|
if (input[_CNITR] != null) {
|
|
6237
6293
|
const memberEntries = se_CacheNodeIdsList(input[_CNITR], context);
|
|
6238
|
-
if (
|
|
6294
|
+
if (input[_CNITR]?.length === 0) {
|
|
6239
6295
|
entries.CacheNodeIdsToRemove = [];
|
|
6240
6296
|
}
|
|
6241
6297
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -6248,7 +6304,7 @@ var se_ModifyCacheClusterMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
6248
6304
|
}
|
|
6249
6305
|
if (input[_NAZ] != null) {
|
|
6250
6306
|
const memberEntries = se_PreferredAvailabilityZoneList(input[_NAZ], context);
|
|
6251
|
-
if (
|
|
6307
|
+
if (input[_NAZ]?.length === 0) {
|
|
6252
6308
|
entries.NewAvailabilityZones = [];
|
|
6253
6309
|
}
|
|
6254
6310
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -6258,7 +6314,7 @@ var se_ModifyCacheClusterMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
6258
6314
|
}
|
|
6259
6315
|
if (input[_CSGNac] != null) {
|
|
6260
6316
|
const memberEntries = se_CacheSecurityGroupNameList(input[_CSGNac], context);
|
|
6261
|
-
if (
|
|
6317
|
+
if (input[_CSGNac]?.length === 0) {
|
|
6262
6318
|
entries.CacheSecurityGroupNames = [];
|
|
6263
6319
|
}
|
|
6264
6320
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -6268,7 +6324,7 @@ var se_ModifyCacheClusterMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
6268
6324
|
}
|
|
6269
6325
|
if (input[_SGI] != null) {
|
|
6270
6326
|
const memberEntries = se_SecurityGroupIdsList(input[_SGI], context);
|
|
6271
|
-
if (
|
|
6327
|
+
if (input[_SGI]?.length === 0) {
|
|
6272
6328
|
entries.SecurityGroupIds = [];
|
|
6273
6329
|
}
|
|
6274
6330
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -6317,7 +6373,7 @@ var se_ModifyCacheClusterMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
6317
6373
|
}
|
|
6318
6374
|
if (input[_LDC] != null) {
|
|
6319
6375
|
const memberEntries = se_LogDeliveryConfigurationRequestList(input[_LDC], context);
|
|
6320
|
-
if (
|
|
6376
|
+
if (input[_LDC]?.length === 0) {
|
|
6321
6377
|
entries.LogDeliveryConfigurations = [];
|
|
6322
6378
|
}
|
|
6323
6379
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -6331,14 +6387,13 @@ var se_ModifyCacheClusterMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
6331
6387
|
return entries;
|
|
6332
6388
|
}, "se_ModifyCacheClusterMessage");
|
|
6333
6389
|
var se_ModifyCacheParameterGroupMessage = /* @__PURE__ */ __name((input, context) => {
|
|
6334
|
-
var _a;
|
|
6335
6390
|
const entries = {};
|
|
6336
6391
|
if (input[_CPGN] != null) {
|
|
6337
6392
|
entries[_CPGN] = input[_CPGN];
|
|
6338
6393
|
}
|
|
6339
6394
|
if (input[_PNV] != null) {
|
|
6340
6395
|
const memberEntries = se_ParameterNameValueList(input[_PNV], context);
|
|
6341
|
-
if (
|
|
6396
|
+
if (input[_PNV]?.length === 0) {
|
|
6342
6397
|
entries.ParameterNameValues = [];
|
|
6343
6398
|
}
|
|
6344
6399
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -6349,7 +6404,6 @@ var se_ModifyCacheParameterGroupMessage = /* @__PURE__ */ __name((input, context
|
|
|
6349
6404
|
return entries;
|
|
6350
6405
|
}, "se_ModifyCacheParameterGroupMessage");
|
|
6351
6406
|
var se_ModifyCacheSubnetGroupMessage = /* @__PURE__ */ __name((input, context) => {
|
|
6352
|
-
var _a;
|
|
6353
6407
|
const entries = {};
|
|
6354
6408
|
if (input[_CSGNa] != null) {
|
|
6355
6409
|
entries[_CSGNa] = input[_CSGNa];
|
|
@@ -6359,7 +6413,7 @@ var se_ModifyCacheSubnetGroupMessage = /* @__PURE__ */ __name((input, context) =
|
|
|
6359
6413
|
}
|
|
6360
6414
|
if (input[_SI] != null) {
|
|
6361
6415
|
const memberEntries = se_SubnetIdentifierList(input[_SI], context);
|
|
6362
|
-
if (
|
|
6416
|
+
if (input[_SI]?.length === 0) {
|
|
6363
6417
|
entries.SubnetIds = [];
|
|
6364
6418
|
}
|
|
6365
6419
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -6398,7 +6452,6 @@ var se_ModifyGlobalReplicationGroupMessage = /* @__PURE__ */ __name((input, cont
|
|
|
6398
6452
|
return entries;
|
|
6399
6453
|
}, "se_ModifyGlobalReplicationGroupMessage");
|
|
6400
6454
|
var se_ModifyReplicationGroupMessage = /* @__PURE__ */ __name((input, context) => {
|
|
6401
|
-
var _a, _b, _c, _d, _e;
|
|
6402
6455
|
const entries = {};
|
|
6403
6456
|
if (input[_RGIe] != null) {
|
|
6404
6457
|
entries[_RGIe] = input[_RGIe];
|
|
@@ -6423,7 +6476,7 @@ var se_ModifyReplicationGroupMessage = /* @__PURE__ */ __name((input, context) =
|
|
|
6423
6476
|
}
|
|
6424
6477
|
if (input[_CSGNac] != null) {
|
|
6425
6478
|
const memberEntries = se_CacheSecurityGroupNameList(input[_CSGNac], context);
|
|
6426
|
-
if (
|
|
6479
|
+
if (input[_CSGNac]?.length === 0) {
|
|
6427
6480
|
entries.CacheSecurityGroupNames = [];
|
|
6428
6481
|
}
|
|
6429
6482
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -6433,7 +6486,7 @@ var se_ModifyReplicationGroupMessage = /* @__PURE__ */ __name((input, context) =
|
|
|
6433
6486
|
}
|
|
6434
6487
|
if (input[_SGI] != null) {
|
|
6435
6488
|
const memberEntries = se_SecurityGroupIdsList(input[_SGI], context);
|
|
6436
|
-
if (
|
|
6489
|
+
if (input[_SGI]?.length === 0) {
|
|
6437
6490
|
entries.SecurityGroupIds = [];
|
|
6438
6491
|
}
|
|
6439
6492
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -6482,7 +6535,7 @@ var se_ModifyReplicationGroupMessage = /* @__PURE__ */ __name((input, context) =
|
|
|
6482
6535
|
}
|
|
6483
6536
|
if (input[_UGITA] != null) {
|
|
6484
6537
|
const memberEntries = se_UserGroupIdList(input[_UGITA], context);
|
|
6485
|
-
if (
|
|
6538
|
+
if (input[_UGITA]?.length === 0) {
|
|
6486
6539
|
entries.UserGroupIdsToAdd = [];
|
|
6487
6540
|
}
|
|
6488
6541
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -6492,7 +6545,7 @@ var se_ModifyReplicationGroupMessage = /* @__PURE__ */ __name((input, context) =
|
|
|
6492
6545
|
}
|
|
6493
6546
|
if (input[_UGITR] != null) {
|
|
6494
6547
|
const memberEntries = se_UserGroupIdList(input[_UGITR], context);
|
|
6495
|
-
if (
|
|
6548
|
+
if (input[_UGITR]?.length === 0) {
|
|
6496
6549
|
entries.UserGroupIdsToRemove = [];
|
|
6497
6550
|
}
|
|
6498
6551
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -6505,7 +6558,7 @@ var se_ModifyReplicationGroupMessage = /* @__PURE__ */ __name((input, context) =
|
|
|
6505
6558
|
}
|
|
6506
6559
|
if (input[_LDC] != null) {
|
|
6507
6560
|
const memberEntries = se_LogDeliveryConfigurationRequestList(input[_LDC], context);
|
|
6508
|
-
if (
|
|
6561
|
+
if (input[_LDC]?.length === 0) {
|
|
6509
6562
|
entries.LogDeliveryConfigurations = [];
|
|
6510
6563
|
}
|
|
6511
6564
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -6528,7 +6581,6 @@ var se_ModifyReplicationGroupMessage = /* @__PURE__ */ __name((input, context) =
|
|
|
6528
6581
|
return entries;
|
|
6529
6582
|
}, "se_ModifyReplicationGroupMessage");
|
|
6530
6583
|
var se_ModifyReplicationGroupShardConfigurationMessage = /* @__PURE__ */ __name((input, context) => {
|
|
6531
|
-
var _a, _b, _c;
|
|
6532
6584
|
const entries = {};
|
|
6533
6585
|
if (input[_RGIe] != null) {
|
|
6534
6586
|
entries[_RGIe] = input[_RGIe];
|
|
@@ -6541,7 +6593,7 @@ var se_ModifyReplicationGroupShardConfigurationMessage = /* @__PURE__ */ __name(
|
|
|
6541
6593
|
}
|
|
6542
6594
|
if (input[_RCes] != null) {
|
|
6543
6595
|
const memberEntries = se_ReshardingConfigurationList(input[_RCes], context);
|
|
6544
|
-
if (
|
|
6596
|
+
if (input[_RCes]?.length === 0) {
|
|
6545
6597
|
entries.ReshardingConfiguration = [];
|
|
6546
6598
|
}
|
|
6547
6599
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -6551,7 +6603,7 @@ var se_ModifyReplicationGroupShardConfigurationMessage = /* @__PURE__ */ __name(
|
|
|
6551
6603
|
}
|
|
6552
6604
|
if (input[_NGTR] != null) {
|
|
6553
6605
|
const memberEntries = se_NodeGroupsToRemoveList(input[_NGTR], context);
|
|
6554
|
-
if (
|
|
6606
|
+
if (input[_NGTR]?.length === 0) {
|
|
6555
6607
|
entries.NodeGroupsToRemove = [];
|
|
6556
6608
|
}
|
|
6557
6609
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -6561,7 +6613,7 @@ var se_ModifyReplicationGroupShardConfigurationMessage = /* @__PURE__ */ __name(
|
|
|
6561
6613
|
}
|
|
6562
6614
|
if (input[_NGTRo] != null) {
|
|
6563
6615
|
const memberEntries = se_NodeGroupsToRetainList(input[_NGTRo], context);
|
|
6564
|
-
if (
|
|
6616
|
+
if (input[_NGTRo]?.length === 0) {
|
|
6565
6617
|
entries.NodeGroupsToRetain = [];
|
|
6566
6618
|
}
|
|
6567
6619
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -6572,7 +6624,6 @@ var se_ModifyReplicationGroupShardConfigurationMessage = /* @__PURE__ */ __name(
|
|
|
6572
6624
|
return entries;
|
|
6573
6625
|
}, "se_ModifyReplicationGroupShardConfigurationMessage");
|
|
6574
6626
|
var se_ModifyServerlessCacheRequest = /* @__PURE__ */ __name((input, context) => {
|
|
6575
|
-
var _a;
|
|
6576
6627
|
const entries = {};
|
|
6577
6628
|
if (input[_SCN] != null) {
|
|
6578
6629
|
entries[_SCN] = input[_SCN];
|
|
@@ -6595,7 +6646,7 @@ var se_ModifyServerlessCacheRequest = /* @__PURE__ */ __name((input, context) =>
|
|
|
6595
6646
|
}
|
|
6596
6647
|
if (input[_SGI] != null) {
|
|
6597
6648
|
const memberEntries = se_SecurityGroupIdsList(input[_SGI], context);
|
|
6598
|
-
if (
|
|
6649
|
+
if (input[_SGI]?.length === 0) {
|
|
6599
6650
|
entries.SecurityGroupIds = [];
|
|
6600
6651
|
}
|
|
6601
6652
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -6618,14 +6669,13 @@ var se_ModifyServerlessCacheRequest = /* @__PURE__ */ __name((input, context) =>
|
|
|
6618
6669
|
return entries;
|
|
6619
6670
|
}, "se_ModifyServerlessCacheRequest");
|
|
6620
6671
|
var se_ModifyUserGroupMessage = /* @__PURE__ */ __name((input, context) => {
|
|
6621
|
-
var _a, _b;
|
|
6622
6672
|
const entries = {};
|
|
6623
6673
|
if (input[_UGIs] != null) {
|
|
6624
6674
|
entries[_UGIs] = input[_UGIs];
|
|
6625
6675
|
}
|
|
6626
6676
|
if (input[_UITA] != null) {
|
|
6627
6677
|
const memberEntries = se_UserIdListInput(input[_UITA], context);
|
|
6628
|
-
if (
|
|
6678
|
+
if (input[_UITA]?.length === 0) {
|
|
6629
6679
|
entries.UserIdsToAdd = [];
|
|
6630
6680
|
}
|
|
6631
6681
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -6635,7 +6685,7 @@ var se_ModifyUserGroupMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
6635
6685
|
}
|
|
6636
6686
|
if (input[_UITR] != null) {
|
|
6637
6687
|
const memberEntries = se_UserIdListInput(input[_UITR], context);
|
|
6638
|
-
if (
|
|
6688
|
+
if (input[_UITR]?.length === 0) {
|
|
6639
6689
|
entries.UserIdsToRemove = [];
|
|
6640
6690
|
}
|
|
6641
6691
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -6649,7 +6699,6 @@ var se_ModifyUserGroupMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
6649
6699
|
return entries;
|
|
6650
6700
|
}, "se_ModifyUserGroupMessage");
|
|
6651
6701
|
var se_ModifyUserMessage = /* @__PURE__ */ __name((input, context) => {
|
|
6652
|
-
var _a;
|
|
6653
6702
|
const entries = {};
|
|
6654
6703
|
if (input[_UIs] != null) {
|
|
6655
6704
|
entries[_UIs] = input[_UIs];
|
|
@@ -6662,7 +6711,7 @@ var se_ModifyUserMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
6662
6711
|
}
|
|
6663
6712
|
if (input[_P] != null) {
|
|
6664
6713
|
const memberEntries = se_PasswordListInput(input[_P], context);
|
|
6665
|
-
if (
|
|
6714
|
+
if (input[_P]?.length === 0) {
|
|
6666
6715
|
entries.Passwords = [];
|
|
6667
6716
|
}
|
|
6668
6717
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -6686,7 +6735,6 @@ var se_ModifyUserMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
6686
6735
|
return entries;
|
|
6687
6736
|
}, "se_ModifyUserMessage");
|
|
6688
6737
|
var se_NodeGroupConfiguration = /* @__PURE__ */ __name((input, context) => {
|
|
6689
|
-
var _a, _b;
|
|
6690
6738
|
const entries = {};
|
|
6691
6739
|
if (input[_NGI] != null) {
|
|
6692
6740
|
entries[_NGI] = input[_NGI];
|
|
@@ -6702,7 +6750,7 @@ var se_NodeGroupConfiguration = /* @__PURE__ */ __name((input, context) => {
|
|
|
6702
6750
|
}
|
|
6703
6751
|
if (input[_RAZ] != null) {
|
|
6704
6752
|
const memberEntries = se_AvailabilityZonesList(input[_RAZ], context);
|
|
6705
|
-
if (
|
|
6753
|
+
if (input[_RAZ]?.length === 0) {
|
|
6706
6754
|
entries.ReplicaAvailabilityZones = [];
|
|
6707
6755
|
}
|
|
6708
6756
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -6715,7 +6763,7 @@ var se_NodeGroupConfiguration = /* @__PURE__ */ __name((input, context) => {
|
|
|
6715
6763
|
}
|
|
6716
6764
|
if (input[_ROA] != null) {
|
|
6717
6765
|
const memberEntries = se_OutpostArnsList(input[_ROA], context);
|
|
6718
|
-
if (
|
|
6766
|
+
if (input[_ROA]?.length === 0) {
|
|
6719
6767
|
entries.ReplicaOutpostArns = [];
|
|
6720
6768
|
}
|
|
6721
6769
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -6838,7 +6886,6 @@ var se_PreferredOutpostArnList = /* @__PURE__ */ __name((input, context) => {
|
|
|
6838
6886
|
return entries;
|
|
6839
6887
|
}, "se_PreferredOutpostArnList");
|
|
6840
6888
|
var se_PurchaseReservedCacheNodesOfferingMessage = /* @__PURE__ */ __name((input, context) => {
|
|
6841
|
-
var _a;
|
|
6842
6889
|
const entries = {};
|
|
6843
6890
|
if (input[_RCNOI] != null) {
|
|
6844
6891
|
entries[_RCNOI] = input[_RCNOI];
|
|
@@ -6851,7 +6898,7 @@ var se_PurchaseReservedCacheNodesOfferingMessage = /* @__PURE__ */ __name((input
|
|
|
6851
6898
|
}
|
|
6852
6899
|
if (input[_T] != null) {
|
|
6853
6900
|
const memberEntries = se_TagList(input[_T], context);
|
|
6854
|
-
if (
|
|
6901
|
+
if (input[_T]?.length === 0) {
|
|
6855
6902
|
entries.Tags = [];
|
|
6856
6903
|
}
|
|
6857
6904
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -6872,14 +6919,13 @@ var se_RebalanceSlotsInGlobalReplicationGroupMessage = /* @__PURE__ */ __name((i
|
|
|
6872
6919
|
return entries;
|
|
6873
6920
|
}, "se_RebalanceSlotsInGlobalReplicationGroupMessage");
|
|
6874
6921
|
var se_RebootCacheClusterMessage = /* @__PURE__ */ __name((input, context) => {
|
|
6875
|
-
var _a;
|
|
6876
6922
|
const entries = {};
|
|
6877
6923
|
if (input[_CCIa] != null) {
|
|
6878
6924
|
entries[_CCIa] = input[_CCIa];
|
|
6879
6925
|
}
|
|
6880
6926
|
if (input[_CNITRa] != null) {
|
|
6881
6927
|
const memberEntries = se_CacheNodeIdsList(input[_CNITRa], context);
|
|
6882
|
-
if (
|
|
6928
|
+
if (input[_CNITRa]?.length === 0) {
|
|
6883
6929
|
entries.CacheNodeIdsToReboot = [];
|
|
6884
6930
|
}
|
|
6885
6931
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -6890,7 +6936,6 @@ var se_RebootCacheClusterMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
6890
6936
|
return entries;
|
|
6891
6937
|
}, "se_RebootCacheClusterMessage");
|
|
6892
6938
|
var se_RegionalConfiguration = /* @__PURE__ */ __name((input, context) => {
|
|
6893
|
-
var _a;
|
|
6894
6939
|
const entries = {};
|
|
6895
6940
|
if (input[_RGIe] != null) {
|
|
6896
6941
|
entries[_RGIe] = input[_RGIe];
|
|
@@ -6900,7 +6945,7 @@ var se_RegionalConfiguration = /* @__PURE__ */ __name((input, context) => {
|
|
|
6900
6945
|
}
|
|
6901
6946
|
if (input[_RCes] != null) {
|
|
6902
6947
|
const memberEntries = se_ReshardingConfigurationList(input[_RCes], context);
|
|
6903
|
-
if (
|
|
6948
|
+
if (input[_RCes]?.length === 0) {
|
|
6904
6949
|
entries.ReshardingConfiguration = [];
|
|
6905
6950
|
}
|
|
6906
6951
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -6938,14 +6983,13 @@ var se_RemoveReplicasList = /* @__PURE__ */ __name((input, context) => {
|
|
|
6938
6983
|
return entries;
|
|
6939
6984
|
}, "se_RemoveReplicasList");
|
|
6940
6985
|
var se_RemoveTagsFromResourceMessage = /* @__PURE__ */ __name((input, context) => {
|
|
6941
|
-
var _a;
|
|
6942
6986
|
const entries = {};
|
|
6943
6987
|
if (input[_RN] != null) {
|
|
6944
6988
|
entries[_RN] = input[_RN];
|
|
6945
6989
|
}
|
|
6946
6990
|
if (input[_TK] != null) {
|
|
6947
6991
|
const memberEntries = se_KeyList(input[_TK], context);
|
|
6948
|
-
if (
|
|
6992
|
+
if (input[_TK]?.length === 0) {
|
|
6949
6993
|
entries.TagKeys = [];
|
|
6950
6994
|
}
|
|
6951
6995
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -6983,7 +7027,6 @@ var se_ReplicationGroupIdList = /* @__PURE__ */ __name((input, context) => {
|
|
|
6983
7027
|
return entries;
|
|
6984
7028
|
}, "se_ReplicationGroupIdList");
|
|
6985
7029
|
var se_ResetCacheParameterGroupMessage = /* @__PURE__ */ __name((input, context) => {
|
|
6986
|
-
var _a;
|
|
6987
7030
|
const entries = {};
|
|
6988
7031
|
if (input[_CPGN] != null) {
|
|
6989
7032
|
entries[_CPGN] = input[_CPGN];
|
|
@@ -6993,7 +7036,7 @@ var se_ResetCacheParameterGroupMessage = /* @__PURE__ */ __name((input, context)
|
|
|
6993
7036
|
}
|
|
6994
7037
|
if (input[_PNV] != null) {
|
|
6995
7038
|
const memberEntries = se_ParameterNameValueList(input[_PNV], context);
|
|
6996
|
-
if (
|
|
7039
|
+
if (input[_PNV]?.length === 0) {
|
|
6997
7040
|
entries.ParameterNameValues = [];
|
|
6998
7041
|
}
|
|
6999
7042
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -7004,14 +7047,13 @@ var se_ResetCacheParameterGroupMessage = /* @__PURE__ */ __name((input, context)
|
|
|
7004
7047
|
return entries;
|
|
7005
7048
|
}, "se_ResetCacheParameterGroupMessage");
|
|
7006
7049
|
var se_ReshardingConfiguration = /* @__PURE__ */ __name((input, context) => {
|
|
7007
|
-
var _a;
|
|
7008
7050
|
const entries = {};
|
|
7009
7051
|
if (input[_NGI] != null) {
|
|
7010
7052
|
entries[_NGI] = input[_NGI];
|
|
7011
7053
|
}
|
|
7012
7054
|
if (input[_PAZ] != null) {
|
|
7013
7055
|
const memberEntries = se_AvailabilityZonesList(input[_PAZ], context);
|
|
7014
|
-
if (
|
|
7056
|
+
if (input[_PAZ]?.length === 0) {
|
|
7015
7057
|
entries.PreferredAvailabilityZones = [];
|
|
7016
7058
|
}
|
|
7017
7059
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -7086,14 +7128,13 @@ var se_SnapshotArnsList = /* @__PURE__ */ __name((input, context) => {
|
|
|
7086
7128
|
return entries;
|
|
7087
7129
|
}, "se_SnapshotArnsList");
|
|
7088
7130
|
var se_StartMigrationMessage = /* @__PURE__ */ __name((input, context) => {
|
|
7089
|
-
var _a;
|
|
7090
7131
|
const entries = {};
|
|
7091
7132
|
if (input[_RGIe] != null) {
|
|
7092
7133
|
entries[_RGIe] = input[_RGIe];
|
|
7093
7134
|
}
|
|
7094
7135
|
if (input[_CNEL] != null) {
|
|
7095
7136
|
const memberEntries = se_CustomerNodeEndpointList(input[_CNEL], context);
|
|
7096
|
-
if (
|
|
7137
|
+
if (input[_CNEL]?.length === 0) {
|
|
7097
7138
|
entries.CustomerNodeEndpointList = [];
|
|
7098
7139
|
}
|
|
7099
7140
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -7163,14 +7204,13 @@ var se_TestFailoverMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
7163
7204
|
return entries;
|
|
7164
7205
|
}, "se_TestFailoverMessage");
|
|
7165
7206
|
var se_TestMigrationMessage = /* @__PURE__ */ __name((input, context) => {
|
|
7166
|
-
var _a;
|
|
7167
7207
|
const entries = {};
|
|
7168
7208
|
if (input[_RGIe] != null) {
|
|
7169
7209
|
entries[_RGIe] = input[_RGIe];
|
|
7170
7210
|
}
|
|
7171
7211
|
if (input[_CNEL] != null) {
|
|
7172
7212
|
const memberEntries = se_CustomerNodeEndpointList(input[_CNEL], context);
|
|
7173
|
-
if (
|
|
7213
|
+
if (input[_CNEL]?.length === 0) {
|
|
7174
7214
|
entries.CustomerNodeEndpointList = [];
|
|
7175
7215
|
}
|
|
7176
7216
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -10534,8 +10574,7 @@ var _m = "member";
|
|
|
10534
10574
|
var _me = "message";
|
|
10535
10575
|
var buildFormUrlencodedString = /* @__PURE__ */ __name((formEntries) => Object.entries(formEntries).map(([key, value]) => (0, import_smithy_client.extendedEncodeURIComponent)(key) + "=" + (0, import_smithy_client.extendedEncodeURIComponent)(value)).join("&"), "buildFormUrlencodedString");
|
|
10536
10576
|
var loadQueryErrorCode = /* @__PURE__ */ __name((output, data) => {
|
|
10537
|
-
|
|
10538
|
-
if (((_a = data.Error) == null ? void 0 : _a.Code) !== void 0) {
|
|
10577
|
+
if (data.Error?.Code !== void 0) {
|
|
10539
10578
|
return data.Error.Code;
|
|
10540
10579
|
}
|
|
10541
10580
|
if (output.statusCode == 404) {
|
|
@@ -10544,1051 +10583,1126 @@ var loadQueryErrorCode = /* @__PURE__ */ __name((output, data) => {
|
|
|
10544
10583
|
}, "loadQueryErrorCode");
|
|
10545
10584
|
|
|
10546
10585
|
// src/commands/AddTagsToResourceCommand.ts
|
|
10547
|
-
var
|
|
10586
|
+
var AddTagsToResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10548
10587
|
return [
|
|
10549
10588
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10550
10589
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10551
10590
|
];
|
|
10552
10591
|
}).s("AmazonElastiCacheV9", "AddTagsToResource", {}).n("ElastiCacheClient", "AddTagsToResourceCommand").f(void 0, void 0).ser(se_AddTagsToResourceCommand).de(de_AddTagsToResourceCommand).build() {
|
|
10592
|
+
static {
|
|
10593
|
+
__name(this, "AddTagsToResourceCommand");
|
|
10594
|
+
}
|
|
10553
10595
|
};
|
|
10554
|
-
__name(_AddTagsToResourceCommand, "AddTagsToResourceCommand");
|
|
10555
|
-
var AddTagsToResourceCommand = _AddTagsToResourceCommand;
|
|
10556
10596
|
|
|
10557
10597
|
// src/commands/AuthorizeCacheSecurityGroupIngressCommand.ts
|
|
10558
10598
|
|
|
10559
10599
|
|
|
10560
10600
|
|
|
10561
|
-
var
|
|
10601
|
+
var AuthorizeCacheSecurityGroupIngressCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10562
10602
|
return [
|
|
10563
10603
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10564
10604
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10565
10605
|
];
|
|
10566
10606
|
}).s("AmazonElastiCacheV9", "AuthorizeCacheSecurityGroupIngress", {}).n("ElastiCacheClient", "AuthorizeCacheSecurityGroupIngressCommand").f(void 0, void 0).ser(se_AuthorizeCacheSecurityGroupIngressCommand).de(de_AuthorizeCacheSecurityGroupIngressCommand).build() {
|
|
10607
|
+
static {
|
|
10608
|
+
__name(this, "AuthorizeCacheSecurityGroupIngressCommand");
|
|
10609
|
+
}
|
|
10567
10610
|
};
|
|
10568
|
-
__name(_AuthorizeCacheSecurityGroupIngressCommand, "AuthorizeCacheSecurityGroupIngressCommand");
|
|
10569
|
-
var AuthorizeCacheSecurityGroupIngressCommand = _AuthorizeCacheSecurityGroupIngressCommand;
|
|
10570
10611
|
|
|
10571
10612
|
// src/commands/BatchApplyUpdateActionCommand.ts
|
|
10572
10613
|
|
|
10573
10614
|
|
|
10574
10615
|
|
|
10575
|
-
var
|
|
10616
|
+
var BatchApplyUpdateActionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10576
10617
|
return [
|
|
10577
10618
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10578
10619
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10579
10620
|
];
|
|
10580
10621
|
}).s("AmazonElastiCacheV9", "BatchApplyUpdateAction", {}).n("ElastiCacheClient", "BatchApplyUpdateActionCommand").f(void 0, void 0).ser(se_BatchApplyUpdateActionCommand).de(de_BatchApplyUpdateActionCommand).build() {
|
|
10622
|
+
static {
|
|
10623
|
+
__name(this, "BatchApplyUpdateActionCommand");
|
|
10624
|
+
}
|
|
10581
10625
|
};
|
|
10582
|
-
__name(_BatchApplyUpdateActionCommand, "BatchApplyUpdateActionCommand");
|
|
10583
|
-
var BatchApplyUpdateActionCommand = _BatchApplyUpdateActionCommand;
|
|
10584
10626
|
|
|
10585
10627
|
// src/commands/BatchStopUpdateActionCommand.ts
|
|
10586
10628
|
|
|
10587
10629
|
|
|
10588
10630
|
|
|
10589
|
-
var
|
|
10631
|
+
var BatchStopUpdateActionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10590
10632
|
return [
|
|
10591
10633
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10592
10634
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10593
10635
|
];
|
|
10594
10636
|
}).s("AmazonElastiCacheV9", "BatchStopUpdateAction", {}).n("ElastiCacheClient", "BatchStopUpdateActionCommand").f(void 0, void 0).ser(se_BatchStopUpdateActionCommand).de(de_BatchStopUpdateActionCommand).build() {
|
|
10637
|
+
static {
|
|
10638
|
+
__name(this, "BatchStopUpdateActionCommand");
|
|
10639
|
+
}
|
|
10595
10640
|
};
|
|
10596
|
-
__name(_BatchStopUpdateActionCommand, "BatchStopUpdateActionCommand");
|
|
10597
|
-
var BatchStopUpdateActionCommand = _BatchStopUpdateActionCommand;
|
|
10598
10641
|
|
|
10599
10642
|
// src/commands/CompleteMigrationCommand.ts
|
|
10600
10643
|
|
|
10601
10644
|
|
|
10602
10645
|
|
|
10603
|
-
var
|
|
10646
|
+
var CompleteMigrationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10604
10647
|
return [
|
|
10605
10648
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10606
10649
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10607
10650
|
];
|
|
10608
10651
|
}).s("AmazonElastiCacheV9", "CompleteMigration", {}).n("ElastiCacheClient", "CompleteMigrationCommand").f(void 0, void 0).ser(se_CompleteMigrationCommand).de(de_CompleteMigrationCommand).build() {
|
|
10652
|
+
static {
|
|
10653
|
+
__name(this, "CompleteMigrationCommand");
|
|
10654
|
+
}
|
|
10609
10655
|
};
|
|
10610
|
-
__name(_CompleteMigrationCommand, "CompleteMigrationCommand");
|
|
10611
|
-
var CompleteMigrationCommand = _CompleteMigrationCommand;
|
|
10612
10656
|
|
|
10613
10657
|
// src/commands/CopyServerlessCacheSnapshotCommand.ts
|
|
10614
10658
|
|
|
10615
10659
|
|
|
10616
10660
|
|
|
10617
|
-
var
|
|
10661
|
+
var CopyServerlessCacheSnapshotCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10618
10662
|
return [
|
|
10619
10663
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10620
10664
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10621
10665
|
];
|
|
10622
10666
|
}).s("AmazonElastiCacheV9", "CopyServerlessCacheSnapshot", {}).n("ElastiCacheClient", "CopyServerlessCacheSnapshotCommand").f(void 0, void 0).ser(se_CopyServerlessCacheSnapshotCommand).de(de_CopyServerlessCacheSnapshotCommand).build() {
|
|
10667
|
+
static {
|
|
10668
|
+
__name(this, "CopyServerlessCacheSnapshotCommand");
|
|
10669
|
+
}
|
|
10623
10670
|
};
|
|
10624
|
-
__name(_CopyServerlessCacheSnapshotCommand, "CopyServerlessCacheSnapshotCommand");
|
|
10625
|
-
var CopyServerlessCacheSnapshotCommand = _CopyServerlessCacheSnapshotCommand;
|
|
10626
10671
|
|
|
10627
10672
|
// src/commands/CopySnapshotCommand.ts
|
|
10628
10673
|
|
|
10629
10674
|
|
|
10630
10675
|
|
|
10631
|
-
var
|
|
10676
|
+
var CopySnapshotCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10632
10677
|
return [
|
|
10633
10678
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10634
10679
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10635
10680
|
];
|
|
10636
10681
|
}).s("AmazonElastiCacheV9", "CopySnapshot", {}).n("ElastiCacheClient", "CopySnapshotCommand").f(void 0, void 0).ser(se_CopySnapshotCommand).de(de_CopySnapshotCommand).build() {
|
|
10682
|
+
static {
|
|
10683
|
+
__name(this, "CopySnapshotCommand");
|
|
10684
|
+
}
|
|
10637
10685
|
};
|
|
10638
|
-
__name(_CopySnapshotCommand, "CopySnapshotCommand");
|
|
10639
|
-
var CopySnapshotCommand = _CopySnapshotCommand;
|
|
10640
10686
|
|
|
10641
10687
|
// src/commands/CreateCacheClusterCommand.ts
|
|
10642
10688
|
|
|
10643
10689
|
|
|
10644
10690
|
|
|
10645
|
-
var
|
|
10691
|
+
var CreateCacheClusterCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10646
10692
|
return [
|
|
10647
10693
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10648
10694
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10649
10695
|
];
|
|
10650
10696
|
}).s("AmazonElastiCacheV9", "CreateCacheCluster", {}).n("ElastiCacheClient", "CreateCacheClusterCommand").f(void 0, void 0).ser(se_CreateCacheClusterCommand).de(de_CreateCacheClusterCommand).build() {
|
|
10697
|
+
static {
|
|
10698
|
+
__name(this, "CreateCacheClusterCommand");
|
|
10699
|
+
}
|
|
10651
10700
|
};
|
|
10652
|
-
__name(_CreateCacheClusterCommand, "CreateCacheClusterCommand");
|
|
10653
|
-
var CreateCacheClusterCommand = _CreateCacheClusterCommand;
|
|
10654
10701
|
|
|
10655
10702
|
// src/commands/CreateCacheParameterGroupCommand.ts
|
|
10656
10703
|
|
|
10657
10704
|
|
|
10658
10705
|
|
|
10659
|
-
var
|
|
10706
|
+
var CreateCacheParameterGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10660
10707
|
return [
|
|
10661
10708
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10662
10709
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10663
10710
|
];
|
|
10664
10711
|
}).s("AmazonElastiCacheV9", "CreateCacheParameterGroup", {}).n("ElastiCacheClient", "CreateCacheParameterGroupCommand").f(void 0, void 0).ser(se_CreateCacheParameterGroupCommand).de(de_CreateCacheParameterGroupCommand).build() {
|
|
10712
|
+
static {
|
|
10713
|
+
__name(this, "CreateCacheParameterGroupCommand");
|
|
10714
|
+
}
|
|
10665
10715
|
};
|
|
10666
|
-
__name(_CreateCacheParameterGroupCommand, "CreateCacheParameterGroupCommand");
|
|
10667
|
-
var CreateCacheParameterGroupCommand = _CreateCacheParameterGroupCommand;
|
|
10668
10716
|
|
|
10669
10717
|
// src/commands/CreateCacheSecurityGroupCommand.ts
|
|
10670
10718
|
|
|
10671
10719
|
|
|
10672
10720
|
|
|
10673
|
-
var
|
|
10721
|
+
var CreateCacheSecurityGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10674
10722
|
return [
|
|
10675
10723
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10676
10724
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10677
10725
|
];
|
|
10678
10726
|
}).s("AmazonElastiCacheV9", "CreateCacheSecurityGroup", {}).n("ElastiCacheClient", "CreateCacheSecurityGroupCommand").f(void 0, void 0).ser(se_CreateCacheSecurityGroupCommand).de(de_CreateCacheSecurityGroupCommand).build() {
|
|
10727
|
+
static {
|
|
10728
|
+
__name(this, "CreateCacheSecurityGroupCommand");
|
|
10729
|
+
}
|
|
10679
10730
|
};
|
|
10680
|
-
__name(_CreateCacheSecurityGroupCommand, "CreateCacheSecurityGroupCommand");
|
|
10681
|
-
var CreateCacheSecurityGroupCommand = _CreateCacheSecurityGroupCommand;
|
|
10682
10731
|
|
|
10683
10732
|
// src/commands/CreateCacheSubnetGroupCommand.ts
|
|
10684
10733
|
|
|
10685
10734
|
|
|
10686
10735
|
|
|
10687
|
-
var
|
|
10736
|
+
var CreateCacheSubnetGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10688
10737
|
return [
|
|
10689
10738
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10690
10739
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10691
10740
|
];
|
|
10692
10741
|
}).s("AmazonElastiCacheV9", "CreateCacheSubnetGroup", {}).n("ElastiCacheClient", "CreateCacheSubnetGroupCommand").f(void 0, void 0).ser(se_CreateCacheSubnetGroupCommand).de(de_CreateCacheSubnetGroupCommand).build() {
|
|
10742
|
+
static {
|
|
10743
|
+
__name(this, "CreateCacheSubnetGroupCommand");
|
|
10744
|
+
}
|
|
10693
10745
|
};
|
|
10694
|
-
__name(_CreateCacheSubnetGroupCommand, "CreateCacheSubnetGroupCommand");
|
|
10695
|
-
var CreateCacheSubnetGroupCommand = _CreateCacheSubnetGroupCommand;
|
|
10696
10746
|
|
|
10697
10747
|
// src/commands/CreateGlobalReplicationGroupCommand.ts
|
|
10698
10748
|
|
|
10699
10749
|
|
|
10700
10750
|
|
|
10701
|
-
var
|
|
10751
|
+
var CreateGlobalReplicationGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10702
10752
|
return [
|
|
10703
10753
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10704
10754
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10705
10755
|
];
|
|
10706
10756
|
}).s("AmazonElastiCacheV9", "CreateGlobalReplicationGroup", {}).n("ElastiCacheClient", "CreateGlobalReplicationGroupCommand").f(void 0, void 0).ser(se_CreateGlobalReplicationGroupCommand).de(de_CreateGlobalReplicationGroupCommand).build() {
|
|
10757
|
+
static {
|
|
10758
|
+
__name(this, "CreateGlobalReplicationGroupCommand");
|
|
10759
|
+
}
|
|
10707
10760
|
};
|
|
10708
|
-
__name(_CreateGlobalReplicationGroupCommand, "CreateGlobalReplicationGroupCommand");
|
|
10709
|
-
var CreateGlobalReplicationGroupCommand = _CreateGlobalReplicationGroupCommand;
|
|
10710
10761
|
|
|
10711
10762
|
// src/commands/CreateReplicationGroupCommand.ts
|
|
10712
10763
|
|
|
10713
10764
|
|
|
10714
10765
|
|
|
10715
|
-
var
|
|
10766
|
+
var CreateReplicationGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10716
10767
|
return [
|
|
10717
10768
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10718
10769
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10719
10770
|
];
|
|
10720
10771
|
}).s("AmazonElastiCacheV9", "CreateReplicationGroup", {}).n("ElastiCacheClient", "CreateReplicationGroupCommand").f(void 0, void 0).ser(se_CreateReplicationGroupCommand).de(de_CreateReplicationGroupCommand).build() {
|
|
10772
|
+
static {
|
|
10773
|
+
__name(this, "CreateReplicationGroupCommand");
|
|
10774
|
+
}
|
|
10721
10775
|
};
|
|
10722
|
-
__name(_CreateReplicationGroupCommand, "CreateReplicationGroupCommand");
|
|
10723
|
-
var CreateReplicationGroupCommand = _CreateReplicationGroupCommand;
|
|
10724
10776
|
|
|
10725
10777
|
// src/commands/CreateServerlessCacheCommand.ts
|
|
10726
10778
|
|
|
10727
10779
|
|
|
10728
10780
|
|
|
10729
|
-
var
|
|
10781
|
+
var CreateServerlessCacheCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10730
10782
|
return [
|
|
10731
10783
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10732
10784
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10733
10785
|
];
|
|
10734
10786
|
}).s("AmazonElastiCacheV9", "CreateServerlessCache", {}).n("ElastiCacheClient", "CreateServerlessCacheCommand").f(void 0, void 0).ser(se_CreateServerlessCacheCommand).de(de_CreateServerlessCacheCommand).build() {
|
|
10787
|
+
static {
|
|
10788
|
+
__name(this, "CreateServerlessCacheCommand");
|
|
10789
|
+
}
|
|
10735
10790
|
};
|
|
10736
|
-
__name(_CreateServerlessCacheCommand, "CreateServerlessCacheCommand");
|
|
10737
|
-
var CreateServerlessCacheCommand = _CreateServerlessCacheCommand;
|
|
10738
10791
|
|
|
10739
10792
|
// src/commands/CreateServerlessCacheSnapshotCommand.ts
|
|
10740
10793
|
|
|
10741
10794
|
|
|
10742
10795
|
|
|
10743
|
-
var
|
|
10796
|
+
var CreateServerlessCacheSnapshotCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10744
10797
|
return [
|
|
10745
10798
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10746
10799
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10747
10800
|
];
|
|
10748
10801
|
}).s("AmazonElastiCacheV9", "CreateServerlessCacheSnapshot", {}).n("ElastiCacheClient", "CreateServerlessCacheSnapshotCommand").f(void 0, void 0).ser(se_CreateServerlessCacheSnapshotCommand).de(de_CreateServerlessCacheSnapshotCommand).build() {
|
|
10802
|
+
static {
|
|
10803
|
+
__name(this, "CreateServerlessCacheSnapshotCommand");
|
|
10804
|
+
}
|
|
10749
10805
|
};
|
|
10750
|
-
__name(_CreateServerlessCacheSnapshotCommand, "CreateServerlessCacheSnapshotCommand");
|
|
10751
|
-
var CreateServerlessCacheSnapshotCommand = _CreateServerlessCacheSnapshotCommand;
|
|
10752
10806
|
|
|
10753
10807
|
// src/commands/CreateSnapshotCommand.ts
|
|
10754
10808
|
|
|
10755
10809
|
|
|
10756
10810
|
|
|
10757
|
-
var
|
|
10811
|
+
var CreateSnapshotCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10758
10812
|
return [
|
|
10759
10813
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10760
10814
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10761
10815
|
];
|
|
10762
10816
|
}).s("AmazonElastiCacheV9", "CreateSnapshot", {}).n("ElastiCacheClient", "CreateSnapshotCommand").f(void 0, void 0).ser(se_CreateSnapshotCommand).de(de_CreateSnapshotCommand).build() {
|
|
10817
|
+
static {
|
|
10818
|
+
__name(this, "CreateSnapshotCommand");
|
|
10819
|
+
}
|
|
10763
10820
|
};
|
|
10764
|
-
__name(_CreateSnapshotCommand, "CreateSnapshotCommand");
|
|
10765
|
-
var CreateSnapshotCommand = _CreateSnapshotCommand;
|
|
10766
10821
|
|
|
10767
10822
|
// src/commands/CreateUserCommand.ts
|
|
10768
10823
|
|
|
10769
10824
|
|
|
10770
10825
|
|
|
10771
|
-
var
|
|
10826
|
+
var CreateUserCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10772
10827
|
return [
|
|
10773
10828
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10774
10829
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10775
10830
|
];
|
|
10776
10831
|
}).s("AmazonElastiCacheV9", "CreateUser", {}).n("ElastiCacheClient", "CreateUserCommand").f(void 0, void 0).ser(se_CreateUserCommand).de(de_CreateUserCommand).build() {
|
|
10832
|
+
static {
|
|
10833
|
+
__name(this, "CreateUserCommand");
|
|
10834
|
+
}
|
|
10777
10835
|
};
|
|
10778
|
-
__name(_CreateUserCommand, "CreateUserCommand");
|
|
10779
|
-
var CreateUserCommand = _CreateUserCommand;
|
|
10780
10836
|
|
|
10781
10837
|
// src/commands/CreateUserGroupCommand.ts
|
|
10782
10838
|
|
|
10783
10839
|
|
|
10784
10840
|
|
|
10785
|
-
var
|
|
10841
|
+
var CreateUserGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10786
10842
|
return [
|
|
10787
10843
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10788
10844
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10789
10845
|
];
|
|
10790
10846
|
}).s("AmazonElastiCacheV9", "CreateUserGroup", {}).n("ElastiCacheClient", "CreateUserGroupCommand").f(void 0, void 0).ser(se_CreateUserGroupCommand).de(de_CreateUserGroupCommand).build() {
|
|
10847
|
+
static {
|
|
10848
|
+
__name(this, "CreateUserGroupCommand");
|
|
10849
|
+
}
|
|
10791
10850
|
};
|
|
10792
|
-
__name(_CreateUserGroupCommand, "CreateUserGroupCommand");
|
|
10793
|
-
var CreateUserGroupCommand = _CreateUserGroupCommand;
|
|
10794
10851
|
|
|
10795
10852
|
// src/commands/DecreaseNodeGroupsInGlobalReplicationGroupCommand.ts
|
|
10796
10853
|
|
|
10797
10854
|
|
|
10798
10855
|
|
|
10799
|
-
var
|
|
10856
|
+
var DecreaseNodeGroupsInGlobalReplicationGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10800
10857
|
return [
|
|
10801
10858
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10802
10859
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10803
10860
|
];
|
|
10804
10861
|
}).s("AmazonElastiCacheV9", "DecreaseNodeGroupsInGlobalReplicationGroup", {}).n("ElastiCacheClient", "DecreaseNodeGroupsInGlobalReplicationGroupCommand").f(void 0, void 0).ser(se_DecreaseNodeGroupsInGlobalReplicationGroupCommand).de(de_DecreaseNodeGroupsInGlobalReplicationGroupCommand).build() {
|
|
10862
|
+
static {
|
|
10863
|
+
__name(this, "DecreaseNodeGroupsInGlobalReplicationGroupCommand");
|
|
10864
|
+
}
|
|
10805
10865
|
};
|
|
10806
|
-
__name(_DecreaseNodeGroupsInGlobalReplicationGroupCommand, "DecreaseNodeGroupsInGlobalReplicationGroupCommand");
|
|
10807
|
-
var DecreaseNodeGroupsInGlobalReplicationGroupCommand = _DecreaseNodeGroupsInGlobalReplicationGroupCommand;
|
|
10808
10866
|
|
|
10809
10867
|
// src/commands/DecreaseReplicaCountCommand.ts
|
|
10810
10868
|
|
|
10811
10869
|
|
|
10812
10870
|
|
|
10813
|
-
var
|
|
10871
|
+
var DecreaseReplicaCountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10814
10872
|
return [
|
|
10815
10873
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10816
10874
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10817
10875
|
];
|
|
10818
10876
|
}).s("AmazonElastiCacheV9", "DecreaseReplicaCount", {}).n("ElastiCacheClient", "DecreaseReplicaCountCommand").f(void 0, void 0).ser(se_DecreaseReplicaCountCommand).de(de_DecreaseReplicaCountCommand).build() {
|
|
10877
|
+
static {
|
|
10878
|
+
__name(this, "DecreaseReplicaCountCommand");
|
|
10879
|
+
}
|
|
10819
10880
|
};
|
|
10820
|
-
__name(_DecreaseReplicaCountCommand, "DecreaseReplicaCountCommand");
|
|
10821
|
-
var DecreaseReplicaCountCommand = _DecreaseReplicaCountCommand;
|
|
10822
10881
|
|
|
10823
10882
|
// src/commands/DeleteCacheClusterCommand.ts
|
|
10824
10883
|
|
|
10825
10884
|
|
|
10826
10885
|
|
|
10827
|
-
var
|
|
10886
|
+
var DeleteCacheClusterCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10828
10887
|
return [
|
|
10829
10888
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10830
10889
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10831
10890
|
];
|
|
10832
10891
|
}).s("AmazonElastiCacheV9", "DeleteCacheCluster", {}).n("ElastiCacheClient", "DeleteCacheClusterCommand").f(void 0, void 0).ser(se_DeleteCacheClusterCommand).de(de_DeleteCacheClusterCommand).build() {
|
|
10892
|
+
static {
|
|
10893
|
+
__name(this, "DeleteCacheClusterCommand");
|
|
10894
|
+
}
|
|
10833
10895
|
};
|
|
10834
|
-
__name(_DeleteCacheClusterCommand, "DeleteCacheClusterCommand");
|
|
10835
|
-
var DeleteCacheClusterCommand = _DeleteCacheClusterCommand;
|
|
10836
10896
|
|
|
10837
10897
|
// src/commands/DeleteCacheParameterGroupCommand.ts
|
|
10838
10898
|
|
|
10839
10899
|
|
|
10840
10900
|
|
|
10841
|
-
var
|
|
10901
|
+
var DeleteCacheParameterGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10842
10902
|
return [
|
|
10843
10903
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10844
10904
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10845
10905
|
];
|
|
10846
10906
|
}).s("AmazonElastiCacheV9", "DeleteCacheParameterGroup", {}).n("ElastiCacheClient", "DeleteCacheParameterGroupCommand").f(void 0, void 0).ser(se_DeleteCacheParameterGroupCommand).de(de_DeleteCacheParameterGroupCommand).build() {
|
|
10907
|
+
static {
|
|
10908
|
+
__name(this, "DeleteCacheParameterGroupCommand");
|
|
10909
|
+
}
|
|
10847
10910
|
};
|
|
10848
|
-
__name(_DeleteCacheParameterGroupCommand, "DeleteCacheParameterGroupCommand");
|
|
10849
|
-
var DeleteCacheParameterGroupCommand = _DeleteCacheParameterGroupCommand;
|
|
10850
10911
|
|
|
10851
10912
|
// src/commands/DeleteCacheSecurityGroupCommand.ts
|
|
10852
10913
|
|
|
10853
10914
|
|
|
10854
10915
|
|
|
10855
|
-
var
|
|
10916
|
+
var DeleteCacheSecurityGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10856
10917
|
return [
|
|
10857
10918
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10858
10919
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10859
10920
|
];
|
|
10860
10921
|
}).s("AmazonElastiCacheV9", "DeleteCacheSecurityGroup", {}).n("ElastiCacheClient", "DeleteCacheSecurityGroupCommand").f(void 0, void 0).ser(se_DeleteCacheSecurityGroupCommand).de(de_DeleteCacheSecurityGroupCommand).build() {
|
|
10922
|
+
static {
|
|
10923
|
+
__name(this, "DeleteCacheSecurityGroupCommand");
|
|
10924
|
+
}
|
|
10861
10925
|
};
|
|
10862
|
-
__name(_DeleteCacheSecurityGroupCommand, "DeleteCacheSecurityGroupCommand");
|
|
10863
|
-
var DeleteCacheSecurityGroupCommand = _DeleteCacheSecurityGroupCommand;
|
|
10864
10926
|
|
|
10865
10927
|
// src/commands/DeleteCacheSubnetGroupCommand.ts
|
|
10866
10928
|
|
|
10867
10929
|
|
|
10868
10930
|
|
|
10869
|
-
var
|
|
10931
|
+
var DeleteCacheSubnetGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10870
10932
|
return [
|
|
10871
10933
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10872
10934
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10873
10935
|
];
|
|
10874
10936
|
}).s("AmazonElastiCacheV9", "DeleteCacheSubnetGroup", {}).n("ElastiCacheClient", "DeleteCacheSubnetGroupCommand").f(void 0, void 0).ser(se_DeleteCacheSubnetGroupCommand).de(de_DeleteCacheSubnetGroupCommand).build() {
|
|
10937
|
+
static {
|
|
10938
|
+
__name(this, "DeleteCacheSubnetGroupCommand");
|
|
10939
|
+
}
|
|
10875
10940
|
};
|
|
10876
|
-
__name(_DeleteCacheSubnetGroupCommand, "DeleteCacheSubnetGroupCommand");
|
|
10877
|
-
var DeleteCacheSubnetGroupCommand = _DeleteCacheSubnetGroupCommand;
|
|
10878
10941
|
|
|
10879
10942
|
// src/commands/DeleteGlobalReplicationGroupCommand.ts
|
|
10880
10943
|
|
|
10881
10944
|
|
|
10882
10945
|
|
|
10883
|
-
var
|
|
10946
|
+
var DeleteGlobalReplicationGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10884
10947
|
return [
|
|
10885
10948
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10886
10949
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10887
10950
|
];
|
|
10888
10951
|
}).s("AmazonElastiCacheV9", "DeleteGlobalReplicationGroup", {}).n("ElastiCacheClient", "DeleteGlobalReplicationGroupCommand").f(void 0, void 0).ser(se_DeleteGlobalReplicationGroupCommand).de(de_DeleteGlobalReplicationGroupCommand).build() {
|
|
10952
|
+
static {
|
|
10953
|
+
__name(this, "DeleteGlobalReplicationGroupCommand");
|
|
10954
|
+
}
|
|
10889
10955
|
};
|
|
10890
|
-
__name(_DeleteGlobalReplicationGroupCommand, "DeleteGlobalReplicationGroupCommand");
|
|
10891
|
-
var DeleteGlobalReplicationGroupCommand = _DeleteGlobalReplicationGroupCommand;
|
|
10892
10956
|
|
|
10893
10957
|
// src/commands/DeleteReplicationGroupCommand.ts
|
|
10894
10958
|
|
|
10895
10959
|
|
|
10896
10960
|
|
|
10897
|
-
var
|
|
10961
|
+
var DeleteReplicationGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10898
10962
|
return [
|
|
10899
10963
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10900
10964
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10901
10965
|
];
|
|
10902
10966
|
}).s("AmazonElastiCacheV9", "DeleteReplicationGroup", {}).n("ElastiCacheClient", "DeleteReplicationGroupCommand").f(void 0, void 0).ser(se_DeleteReplicationGroupCommand).de(de_DeleteReplicationGroupCommand).build() {
|
|
10967
|
+
static {
|
|
10968
|
+
__name(this, "DeleteReplicationGroupCommand");
|
|
10969
|
+
}
|
|
10903
10970
|
};
|
|
10904
|
-
__name(_DeleteReplicationGroupCommand, "DeleteReplicationGroupCommand");
|
|
10905
|
-
var DeleteReplicationGroupCommand = _DeleteReplicationGroupCommand;
|
|
10906
10971
|
|
|
10907
10972
|
// src/commands/DeleteServerlessCacheCommand.ts
|
|
10908
10973
|
|
|
10909
10974
|
|
|
10910
10975
|
|
|
10911
|
-
var
|
|
10976
|
+
var DeleteServerlessCacheCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10912
10977
|
return [
|
|
10913
10978
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10914
10979
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10915
10980
|
];
|
|
10916
10981
|
}).s("AmazonElastiCacheV9", "DeleteServerlessCache", {}).n("ElastiCacheClient", "DeleteServerlessCacheCommand").f(void 0, void 0).ser(se_DeleteServerlessCacheCommand).de(de_DeleteServerlessCacheCommand).build() {
|
|
10982
|
+
static {
|
|
10983
|
+
__name(this, "DeleteServerlessCacheCommand");
|
|
10984
|
+
}
|
|
10917
10985
|
};
|
|
10918
|
-
__name(_DeleteServerlessCacheCommand, "DeleteServerlessCacheCommand");
|
|
10919
|
-
var DeleteServerlessCacheCommand = _DeleteServerlessCacheCommand;
|
|
10920
10986
|
|
|
10921
10987
|
// src/commands/DeleteServerlessCacheSnapshotCommand.ts
|
|
10922
10988
|
|
|
10923
10989
|
|
|
10924
10990
|
|
|
10925
|
-
var
|
|
10991
|
+
var DeleteServerlessCacheSnapshotCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10926
10992
|
return [
|
|
10927
10993
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10928
10994
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10929
10995
|
];
|
|
10930
10996
|
}).s("AmazonElastiCacheV9", "DeleteServerlessCacheSnapshot", {}).n("ElastiCacheClient", "DeleteServerlessCacheSnapshotCommand").f(void 0, void 0).ser(se_DeleteServerlessCacheSnapshotCommand).de(de_DeleteServerlessCacheSnapshotCommand).build() {
|
|
10997
|
+
static {
|
|
10998
|
+
__name(this, "DeleteServerlessCacheSnapshotCommand");
|
|
10999
|
+
}
|
|
10931
11000
|
};
|
|
10932
|
-
__name(_DeleteServerlessCacheSnapshotCommand, "DeleteServerlessCacheSnapshotCommand");
|
|
10933
|
-
var DeleteServerlessCacheSnapshotCommand = _DeleteServerlessCacheSnapshotCommand;
|
|
10934
11001
|
|
|
10935
11002
|
// src/commands/DeleteSnapshotCommand.ts
|
|
10936
11003
|
|
|
10937
11004
|
|
|
10938
11005
|
|
|
10939
|
-
var
|
|
11006
|
+
var DeleteSnapshotCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10940
11007
|
return [
|
|
10941
11008
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10942
11009
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10943
11010
|
];
|
|
10944
11011
|
}).s("AmazonElastiCacheV9", "DeleteSnapshot", {}).n("ElastiCacheClient", "DeleteSnapshotCommand").f(void 0, void 0).ser(se_DeleteSnapshotCommand).de(de_DeleteSnapshotCommand).build() {
|
|
11012
|
+
static {
|
|
11013
|
+
__name(this, "DeleteSnapshotCommand");
|
|
11014
|
+
}
|
|
10945
11015
|
};
|
|
10946
|
-
__name(_DeleteSnapshotCommand, "DeleteSnapshotCommand");
|
|
10947
|
-
var DeleteSnapshotCommand = _DeleteSnapshotCommand;
|
|
10948
11016
|
|
|
10949
11017
|
// src/commands/DeleteUserCommand.ts
|
|
10950
11018
|
|
|
10951
11019
|
|
|
10952
11020
|
|
|
10953
|
-
var
|
|
11021
|
+
var DeleteUserCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10954
11022
|
return [
|
|
10955
11023
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10956
11024
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10957
11025
|
];
|
|
10958
11026
|
}).s("AmazonElastiCacheV9", "DeleteUser", {}).n("ElastiCacheClient", "DeleteUserCommand").f(void 0, void 0).ser(se_DeleteUserCommand).de(de_DeleteUserCommand).build() {
|
|
11027
|
+
static {
|
|
11028
|
+
__name(this, "DeleteUserCommand");
|
|
11029
|
+
}
|
|
10959
11030
|
};
|
|
10960
|
-
__name(_DeleteUserCommand, "DeleteUserCommand");
|
|
10961
|
-
var DeleteUserCommand = _DeleteUserCommand;
|
|
10962
11031
|
|
|
10963
11032
|
// src/commands/DeleteUserGroupCommand.ts
|
|
10964
11033
|
|
|
10965
11034
|
|
|
10966
11035
|
|
|
10967
|
-
var
|
|
11036
|
+
var DeleteUserGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10968
11037
|
return [
|
|
10969
11038
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10970
11039
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10971
11040
|
];
|
|
10972
11041
|
}).s("AmazonElastiCacheV9", "DeleteUserGroup", {}).n("ElastiCacheClient", "DeleteUserGroupCommand").f(void 0, void 0).ser(se_DeleteUserGroupCommand).de(de_DeleteUserGroupCommand).build() {
|
|
11042
|
+
static {
|
|
11043
|
+
__name(this, "DeleteUserGroupCommand");
|
|
11044
|
+
}
|
|
10973
11045
|
};
|
|
10974
|
-
__name(_DeleteUserGroupCommand, "DeleteUserGroupCommand");
|
|
10975
|
-
var DeleteUserGroupCommand = _DeleteUserGroupCommand;
|
|
10976
11046
|
|
|
10977
11047
|
// src/commands/DescribeCacheClustersCommand.ts
|
|
10978
11048
|
|
|
10979
11049
|
|
|
10980
11050
|
|
|
10981
|
-
var
|
|
11051
|
+
var DescribeCacheClustersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10982
11052
|
return [
|
|
10983
11053
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10984
11054
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10985
11055
|
];
|
|
10986
11056
|
}).s("AmazonElastiCacheV9", "DescribeCacheClusters", {}).n("ElastiCacheClient", "DescribeCacheClustersCommand").f(void 0, void 0).ser(se_DescribeCacheClustersCommand).de(de_DescribeCacheClustersCommand).build() {
|
|
11057
|
+
static {
|
|
11058
|
+
__name(this, "DescribeCacheClustersCommand");
|
|
11059
|
+
}
|
|
10987
11060
|
};
|
|
10988
|
-
__name(_DescribeCacheClustersCommand, "DescribeCacheClustersCommand");
|
|
10989
|
-
var DescribeCacheClustersCommand = _DescribeCacheClustersCommand;
|
|
10990
11061
|
|
|
10991
11062
|
// src/commands/DescribeCacheEngineVersionsCommand.ts
|
|
10992
11063
|
|
|
10993
11064
|
|
|
10994
11065
|
|
|
10995
|
-
var
|
|
11066
|
+
var DescribeCacheEngineVersionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10996
11067
|
return [
|
|
10997
11068
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10998
11069
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10999
11070
|
];
|
|
11000
11071
|
}).s("AmazonElastiCacheV9", "DescribeCacheEngineVersions", {}).n("ElastiCacheClient", "DescribeCacheEngineVersionsCommand").f(void 0, void 0).ser(se_DescribeCacheEngineVersionsCommand).de(de_DescribeCacheEngineVersionsCommand).build() {
|
|
11072
|
+
static {
|
|
11073
|
+
__name(this, "DescribeCacheEngineVersionsCommand");
|
|
11074
|
+
}
|
|
11001
11075
|
};
|
|
11002
|
-
__name(_DescribeCacheEngineVersionsCommand, "DescribeCacheEngineVersionsCommand");
|
|
11003
|
-
var DescribeCacheEngineVersionsCommand = _DescribeCacheEngineVersionsCommand;
|
|
11004
11076
|
|
|
11005
11077
|
// src/commands/DescribeCacheParameterGroupsCommand.ts
|
|
11006
11078
|
|
|
11007
11079
|
|
|
11008
11080
|
|
|
11009
|
-
var
|
|
11081
|
+
var DescribeCacheParameterGroupsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11010
11082
|
return [
|
|
11011
11083
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11012
11084
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11013
11085
|
];
|
|
11014
11086
|
}).s("AmazonElastiCacheV9", "DescribeCacheParameterGroups", {}).n("ElastiCacheClient", "DescribeCacheParameterGroupsCommand").f(void 0, void 0).ser(se_DescribeCacheParameterGroupsCommand).de(de_DescribeCacheParameterGroupsCommand).build() {
|
|
11087
|
+
static {
|
|
11088
|
+
__name(this, "DescribeCacheParameterGroupsCommand");
|
|
11089
|
+
}
|
|
11015
11090
|
};
|
|
11016
|
-
__name(_DescribeCacheParameterGroupsCommand, "DescribeCacheParameterGroupsCommand");
|
|
11017
|
-
var DescribeCacheParameterGroupsCommand = _DescribeCacheParameterGroupsCommand;
|
|
11018
11091
|
|
|
11019
11092
|
// src/commands/DescribeCacheParametersCommand.ts
|
|
11020
11093
|
|
|
11021
11094
|
|
|
11022
11095
|
|
|
11023
|
-
var
|
|
11096
|
+
var DescribeCacheParametersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11024
11097
|
return [
|
|
11025
11098
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11026
11099
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11027
11100
|
];
|
|
11028
11101
|
}).s("AmazonElastiCacheV9", "DescribeCacheParameters", {}).n("ElastiCacheClient", "DescribeCacheParametersCommand").f(void 0, void 0).ser(se_DescribeCacheParametersCommand).de(de_DescribeCacheParametersCommand).build() {
|
|
11102
|
+
static {
|
|
11103
|
+
__name(this, "DescribeCacheParametersCommand");
|
|
11104
|
+
}
|
|
11029
11105
|
};
|
|
11030
|
-
__name(_DescribeCacheParametersCommand, "DescribeCacheParametersCommand");
|
|
11031
|
-
var DescribeCacheParametersCommand = _DescribeCacheParametersCommand;
|
|
11032
11106
|
|
|
11033
11107
|
// src/commands/DescribeCacheSecurityGroupsCommand.ts
|
|
11034
11108
|
|
|
11035
11109
|
|
|
11036
11110
|
|
|
11037
|
-
var
|
|
11111
|
+
var DescribeCacheSecurityGroupsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11038
11112
|
return [
|
|
11039
11113
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11040
11114
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11041
11115
|
];
|
|
11042
11116
|
}).s("AmazonElastiCacheV9", "DescribeCacheSecurityGroups", {}).n("ElastiCacheClient", "DescribeCacheSecurityGroupsCommand").f(void 0, void 0).ser(se_DescribeCacheSecurityGroupsCommand).de(de_DescribeCacheSecurityGroupsCommand).build() {
|
|
11117
|
+
static {
|
|
11118
|
+
__name(this, "DescribeCacheSecurityGroupsCommand");
|
|
11119
|
+
}
|
|
11043
11120
|
};
|
|
11044
|
-
__name(_DescribeCacheSecurityGroupsCommand, "DescribeCacheSecurityGroupsCommand");
|
|
11045
|
-
var DescribeCacheSecurityGroupsCommand = _DescribeCacheSecurityGroupsCommand;
|
|
11046
11121
|
|
|
11047
11122
|
// src/commands/DescribeCacheSubnetGroupsCommand.ts
|
|
11048
11123
|
|
|
11049
11124
|
|
|
11050
11125
|
|
|
11051
|
-
var
|
|
11126
|
+
var DescribeCacheSubnetGroupsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11052
11127
|
return [
|
|
11053
11128
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11054
11129
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11055
11130
|
];
|
|
11056
11131
|
}).s("AmazonElastiCacheV9", "DescribeCacheSubnetGroups", {}).n("ElastiCacheClient", "DescribeCacheSubnetGroupsCommand").f(void 0, void 0).ser(se_DescribeCacheSubnetGroupsCommand).de(de_DescribeCacheSubnetGroupsCommand).build() {
|
|
11132
|
+
static {
|
|
11133
|
+
__name(this, "DescribeCacheSubnetGroupsCommand");
|
|
11134
|
+
}
|
|
11057
11135
|
};
|
|
11058
|
-
__name(_DescribeCacheSubnetGroupsCommand, "DescribeCacheSubnetGroupsCommand");
|
|
11059
|
-
var DescribeCacheSubnetGroupsCommand = _DescribeCacheSubnetGroupsCommand;
|
|
11060
11136
|
|
|
11061
11137
|
// src/commands/DescribeEngineDefaultParametersCommand.ts
|
|
11062
11138
|
|
|
11063
11139
|
|
|
11064
11140
|
|
|
11065
|
-
var
|
|
11141
|
+
var DescribeEngineDefaultParametersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11066
11142
|
return [
|
|
11067
11143
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11068
11144
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11069
11145
|
];
|
|
11070
11146
|
}).s("AmazonElastiCacheV9", "DescribeEngineDefaultParameters", {}).n("ElastiCacheClient", "DescribeEngineDefaultParametersCommand").f(void 0, void 0).ser(se_DescribeEngineDefaultParametersCommand).de(de_DescribeEngineDefaultParametersCommand).build() {
|
|
11147
|
+
static {
|
|
11148
|
+
__name(this, "DescribeEngineDefaultParametersCommand");
|
|
11149
|
+
}
|
|
11071
11150
|
};
|
|
11072
|
-
__name(_DescribeEngineDefaultParametersCommand, "DescribeEngineDefaultParametersCommand");
|
|
11073
|
-
var DescribeEngineDefaultParametersCommand = _DescribeEngineDefaultParametersCommand;
|
|
11074
11151
|
|
|
11075
11152
|
// src/commands/DescribeEventsCommand.ts
|
|
11076
11153
|
|
|
11077
11154
|
|
|
11078
11155
|
|
|
11079
|
-
var
|
|
11156
|
+
var DescribeEventsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11080
11157
|
return [
|
|
11081
11158
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11082
11159
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11083
11160
|
];
|
|
11084
11161
|
}).s("AmazonElastiCacheV9", "DescribeEvents", {}).n("ElastiCacheClient", "DescribeEventsCommand").f(void 0, void 0).ser(se_DescribeEventsCommand).de(de_DescribeEventsCommand).build() {
|
|
11162
|
+
static {
|
|
11163
|
+
__name(this, "DescribeEventsCommand");
|
|
11164
|
+
}
|
|
11085
11165
|
};
|
|
11086
|
-
__name(_DescribeEventsCommand, "DescribeEventsCommand");
|
|
11087
|
-
var DescribeEventsCommand = _DescribeEventsCommand;
|
|
11088
11166
|
|
|
11089
11167
|
// src/commands/DescribeGlobalReplicationGroupsCommand.ts
|
|
11090
11168
|
|
|
11091
11169
|
|
|
11092
11170
|
|
|
11093
|
-
var
|
|
11171
|
+
var DescribeGlobalReplicationGroupsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11094
11172
|
return [
|
|
11095
11173
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11096
11174
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11097
11175
|
];
|
|
11098
11176
|
}).s("AmazonElastiCacheV9", "DescribeGlobalReplicationGroups", {}).n("ElastiCacheClient", "DescribeGlobalReplicationGroupsCommand").f(void 0, void 0).ser(se_DescribeGlobalReplicationGroupsCommand).de(de_DescribeGlobalReplicationGroupsCommand).build() {
|
|
11177
|
+
static {
|
|
11178
|
+
__name(this, "DescribeGlobalReplicationGroupsCommand");
|
|
11179
|
+
}
|
|
11099
11180
|
};
|
|
11100
|
-
__name(_DescribeGlobalReplicationGroupsCommand, "DescribeGlobalReplicationGroupsCommand");
|
|
11101
|
-
var DescribeGlobalReplicationGroupsCommand = _DescribeGlobalReplicationGroupsCommand;
|
|
11102
11181
|
|
|
11103
11182
|
// src/commands/DescribeReplicationGroupsCommand.ts
|
|
11104
11183
|
|
|
11105
11184
|
|
|
11106
11185
|
|
|
11107
|
-
var
|
|
11186
|
+
var DescribeReplicationGroupsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11108
11187
|
return [
|
|
11109
11188
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11110
11189
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11111
11190
|
];
|
|
11112
11191
|
}).s("AmazonElastiCacheV9", "DescribeReplicationGroups", {}).n("ElastiCacheClient", "DescribeReplicationGroupsCommand").f(void 0, void 0).ser(se_DescribeReplicationGroupsCommand).de(de_DescribeReplicationGroupsCommand).build() {
|
|
11192
|
+
static {
|
|
11193
|
+
__name(this, "DescribeReplicationGroupsCommand");
|
|
11194
|
+
}
|
|
11113
11195
|
};
|
|
11114
|
-
__name(_DescribeReplicationGroupsCommand, "DescribeReplicationGroupsCommand");
|
|
11115
|
-
var DescribeReplicationGroupsCommand = _DescribeReplicationGroupsCommand;
|
|
11116
11196
|
|
|
11117
11197
|
// src/commands/DescribeReservedCacheNodesCommand.ts
|
|
11118
11198
|
|
|
11119
11199
|
|
|
11120
11200
|
|
|
11121
|
-
var
|
|
11201
|
+
var DescribeReservedCacheNodesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11122
11202
|
return [
|
|
11123
11203
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11124
11204
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11125
11205
|
];
|
|
11126
11206
|
}).s("AmazonElastiCacheV9", "DescribeReservedCacheNodes", {}).n("ElastiCacheClient", "DescribeReservedCacheNodesCommand").f(void 0, void 0).ser(se_DescribeReservedCacheNodesCommand).de(de_DescribeReservedCacheNodesCommand).build() {
|
|
11207
|
+
static {
|
|
11208
|
+
__name(this, "DescribeReservedCacheNodesCommand");
|
|
11209
|
+
}
|
|
11127
11210
|
};
|
|
11128
|
-
__name(_DescribeReservedCacheNodesCommand, "DescribeReservedCacheNodesCommand");
|
|
11129
|
-
var DescribeReservedCacheNodesCommand = _DescribeReservedCacheNodesCommand;
|
|
11130
11211
|
|
|
11131
11212
|
// src/commands/DescribeReservedCacheNodesOfferingsCommand.ts
|
|
11132
11213
|
|
|
11133
11214
|
|
|
11134
11215
|
|
|
11135
|
-
var
|
|
11216
|
+
var DescribeReservedCacheNodesOfferingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11136
11217
|
return [
|
|
11137
11218
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11138
11219
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11139
11220
|
];
|
|
11140
11221
|
}).s("AmazonElastiCacheV9", "DescribeReservedCacheNodesOfferings", {}).n("ElastiCacheClient", "DescribeReservedCacheNodesOfferingsCommand").f(void 0, void 0).ser(se_DescribeReservedCacheNodesOfferingsCommand).de(de_DescribeReservedCacheNodesOfferingsCommand).build() {
|
|
11222
|
+
static {
|
|
11223
|
+
__name(this, "DescribeReservedCacheNodesOfferingsCommand");
|
|
11224
|
+
}
|
|
11141
11225
|
};
|
|
11142
|
-
__name(_DescribeReservedCacheNodesOfferingsCommand, "DescribeReservedCacheNodesOfferingsCommand");
|
|
11143
|
-
var DescribeReservedCacheNodesOfferingsCommand = _DescribeReservedCacheNodesOfferingsCommand;
|
|
11144
11226
|
|
|
11145
11227
|
// src/commands/DescribeServerlessCachesCommand.ts
|
|
11146
11228
|
|
|
11147
11229
|
|
|
11148
11230
|
|
|
11149
|
-
var
|
|
11231
|
+
var DescribeServerlessCachesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11150
11232
|
return [
|
|
11151
11233
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11152
11234
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11153
11235
|
];
|
|
11154
11236
|
}).s("AmazonElastiCacheV9", "DescribeServerlessCaches", {}).n("ElastiCacheClient", "DescribeServerlessCachesCommand").f(void 0, void 0).ser(se_DescribeServerlessCachesCommand).de(de_DescribeServerlessCachesCommand).build() {
|
|
11237
|
+
static {
|
|
11238
|
+
__name(this, "DescribeServerlessCachesCommand");
|
|
11239
|
+
}
|
|
11155
11240
|
};
|
|
11156
|
-
__name(_DescribeServerlessCachesCommand, "DescribeServerlessCachesCommand");
|
|
11157
|
-
var DescribeServerlessCachesCommand = _DescribeServerlessCachesCommand;
|
|
11158
11241
|
|
|
11159
11242
|
// src/commands/DescribeServerlessCacheSnapshotsCommand.ts
|
|
11160
11243
|
|
|
11161
11244
|
|
|
11162
11245
|
|
|
11163
|
-
var
|
|
11246
|
+
var DescribeServerlessCacheSnapshotsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11164
11247
|
return [
|
|
11165
11248
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11166
11249
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11167
11250
|
];
|
|
11168
11251
|
}).s("AmazonElastiCacheV9", "DescribeServerlessCacheSnapshots", {}).n("ElastiCacheClient", "DescribeServerlessCacheSnapshotsCommand").f(void 0, void 0).ser(se_DescribeServerlessCacheSnapshotsCommand).de(de_DescribeServerlessCacheSnapshotsCommand).build() {
|
|
11252
|
+
static {
|
|
11253
|
+
__name(this, "DescribeServerlessCacheSnapshotsCommand");
|
|
11254
|
+
}
|
|
11169
11255
|
};
|
|
11170
|
-
__name(_DescribeServerlessCacheSnapshotsCommand, "DescribeServerlessCacheSnapshotsCommand");
|
|
11171
|
-
var DescribeServerlessCacheSnapshotsCommand = _DescribeServerlessCacheSnapshotsCommand;
|
|
11172
11256
|
|
|
11173
11257
|
// src/commands/DescribeServiceUpdatesCommand.ts
|
|
11174
11258
|
|
|
11175
11259
|
|
|
11176
11260
|
|
|
11177
|
-
var
|
|
11261
|
+
var DescribeServiceUpdatesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11178
11262
|
return [
|
|
11179
11263
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11180
11264
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11181
11265
|
];
|
|
11182
11266
|
}).s("AmazonElastiCacheV9", "DescribeServiceUpdates", {}).n("ElastiCacheClient", "DescribeServiceUpdatesCommand").f(void 0, void 0).ser(se_DescribeServiceUpdatesCommand).de(de_DescribeServiceUpdatesCommand).build() {
|
|
11267
|
+
static {
|
|
11268
|
+
__name(this, "DescribeServiceUpdatesCommand");
|
|
11269
|
+
}
|
|
11183
11270
|
};
|
|
11184
|
-
__name(_DescribeServiceUpdatesCommand, "DescribeServiceUpdatesCommand");
|
|
11185
|
-
var DescribeServiceUpdatesCommand = _DescribeServiceUpdatesCommand;
|
|
11186
11271
|
|
|
11187
11272
|
// src/commands/DescribeSnapshotsCommand.ts
|
|
11188
11273
|
|
|
11189
11274
|
|
|
11190
11275
|
|
|
11191
|
-
var
|
|
11276
|
+
var DescribeSnapshotsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11192
11277
|
return [
|
|
11193
11278
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11194
11279
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11195
11280
|
];
|
|
11196
11281
|
}).s("AmazonElastiCacheV9", "DescribeSnapshots", {}).n("ElastiCacheClient", "DescribeSnapshotsCommand").f(void 0, void 0).ser(se_DescribeSnapshotsCommand).de(de_DescribeSnapshotsCommand).build() {
|
|
11282
|
+
static {
|
|
11283
|
+
__name(this, "DescribeSnapshotsCommand");
|
|
11284
|
+
}
|
|
11197
11285
|
};
|
|
11198
|
-
__name(_DescribeSnapshotsCommand, "DescribeSnapshotsCommand");
|
|
11199
|
-
var DescribeSnapshotsCommand = _DescribeSnapshotsCommand;
|
|
11200
11286
|
|
|
11201
11287
|
// src/commands/DescribeUpdateActionsCommand.ts
|
|
11202
11288
|
|
|
11203
11289
|
|
|
11204
11290
|
|
|
11205
|
-
var
|
|
11291
|
+
var DescribeUpdateActionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11206
11292
|
return [
|
|
11207
11293
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11208
11294
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11209
11295
|
];
|
|
11210
11296
|
}).s("AmazonElastiCacheV9", "DescribeUpdateActions", {}).n("ElastiCacheClient", "DescribeUpdateActionsCommand").f(void 0, void 0).ser(se_DescribeUpdateActionsCommand).de(de_DescribeUpdateActionsCommand).build() {
|
|
11297
|
+
static {
|
|
11298
|
+
__name(this, "DescribeUpdateActionsCommand");
|
|
11299
|
+
}
|
|
11211
11300
|
};
|
|
11212
|
-
__name(_DescribeUpdateActionsCommand, "DescribeUpdateActionsCommand");
|
|
11213
|
-
var DescribeUpdateActionsCommand = _DescribeUpdateActionsCommand;
|
|
11214
11301
|
|
|
11215
11302
|
// src/commands/DescribeUserGroupsCommand.ts
|
|
11216
11303
|
|
|
11217
11304
|
|
|
11218
11305
|
|
|
11219
|
-
var
|
|
11306
|
+
var DescribeUserGroupsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11220
11307
|
return [
|
|
11221
11308
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11222
11309
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11223
11310
|
];
|
|
11224
11311
|
}).s("AmazonElastiCacheV9", "DescribeUserGroups", {}).n("ElastiCacheClient", "DescribeUserGroupsCommand").f(void 0, void 0).ser(se_DescribeUserGroupsCommand).de(de_DescribeUserGroupsCommand).build() {
|
|
11312
|
+
static {
|
|
11313
|
+
__name(this, "DescribeUserGroupsCommand");
|
|
11314
|
+
}
|
|
11225
11315
|
};
|
|
11226
|
-
__name(_DescribeUserGroupsCommand, "DescribeUserGroupsCommand");
|
|
11227
|
-
var DescribeUserGroupsCommand = _DescribeUserGroupsCommand;
|
|
11228
11316
|
|
|
11229
11317
|
// src/commands/DescribeUsersCommand.ts
|
|
11230
11318
|
|
|
11231
11319
|
|
|
11232
11320
|
|
|
11233
|
-
var
|
|
11321
|
+
var DescribeUsersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11234
11322
|
return [
|
|
11235
11323
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11236
11324
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11237
11325
|
];
|
|
11238
11326
|
}).s("AmazonElastiCacheV9", "DescribeUsers", {}).n("ElastiCacheClient", "DescribeUsersCommand").f(void 0, void 0).ser(se_DescribeUsersCommand).de(de_DescribeUsersCommand).build() {
|
|
11327
|
+
static {
|
|
11328
|
+
__name(this, "DescribeUsersCommand");
|
|
11329
|
+
}
|
|
11239
11330
|
};
|
|
11240
|
-
__name(_DescribeUsersCommand, "DescribeUsersCommand");
|
|
11241
|
-
var DescribeUsersCommand = _DescribeUsersCommand;
|
|
11242
11331
|
|
|
11243
11332
|
// src/commands/DisassociateGlobalReplicationGroupCommand.ts
|
|
11244
11333
|
|
|
11245
11334
|
|
|
11246
11335
|
|
|
11247
|
-
var
|
|
11336
|
+
var DisassociateGlobalReplicationGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11248
11337
|
return [
|
|
11249
11338
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11250
11339
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11251
11340
|
];
|
|
11252
11341
|
}).s("AmazonElastiCacheV9", "DisassociateGlobalReplicationGroup", {}).n("ElastiCacheClient", "DisassociateGlobalReplicationGroupCommand").f(void 0, void 0).ser(se_DisassociateGlobalReplicationGroupCommand).de(de_DisassociateGlobalReplicationGroupCommand).build() {
|
|
11342
|
+
static {
|
|
11343
|
+
__name(this, "DisassociateGlobalReplicationGroupCommand");
|
|
11344
|
+
}
|
|
11253
11345
|
};
|
|
11254
|
-
__name(_DisassociateGlobalReplicationGroupCommand, "DisassociateGlobalReplicationGroupCommand");
|
|
11255
|
-
var DisassociateGlobalReplicationGroupCommand = _DisassociateGlobalReplicationGroupCommand;
|
|
11256
11346
|
|
|
11257
11347
|
// src/commands/ExportServerlessCacheSnapshotCommand.ts
|
|
11258
11348
|
|
|
11259
11349
|
|
|
11260
11350
|
|
|
11261
|
-
var
|
|
11351
|
+
var ExportServerlessCacheSnapshotCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11262
11352
|
return [
|
|
11263
11353
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11264
11354
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11265
11355
|
];
|
|
11266
11356
|
}).s("AmazonElastiCacheV9", "ExportServerlessCacheSnapshot", {}).n("ElastiCacheClient", "ExportServerlessCacheSnapshotCommand").f(void 0, void 0).ser(se_ExportServerlessCacheSnapshotCommand).de(de_ExportServerlessCacheSnapshotCommand).build() {
|
|
11357
|
+
static {
|
|
11358
|
+
__name(this, "ExportServerlessCacheSnapshotCommand");
|
|
11359
|
+
}
|
|
11267
11360
|
};
|
|
11268
|
-
__name(_ExportServerlessCacheSnapshotCommand, "ExportServerlessCacheSnapshotCommand");
|
|
11269
|
-
var ExportServerlessCacheSnapshotCommand = _ExportServerlessCacheSnapshotCommand;
|
|
11270
11361
|
|
|
11271
11362
|
// src/commands/FailoverGlobalReplicationGroupCommand.ts
|
|
11272
11363
|
|
|
11273
11364
|
|
|
11274
11365
|
|
|
11275
|
-
var
|
|
11366
|
+
var FailoverGlobalReplicationGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11276
11367
|
return [
|
|
11277
11368
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11278
11369
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11279
11370
|
];
|
|
11280
11371
|
}).s("AmazonElastiCacheV9", "FailoverGlobalReplicationGroup", {}).n("ElastiCacheClient", "FailoverGlobalReplicationGroupCommand").f(void 0, void 0).ser(se_FailoverGlobalReplicationGroupCommand).de(de_FailoverGlobalReplicationGroupCommand).build() {
|
|
11372
|
+
static {
|
|
11373
|
+
__name(this, "FailoverGlobalReplicationGroupCommand");
|
|
11374
|
+
}
|
|
11281
11375
|
};
|
|
11282
|
-
__name(_FailoverGlobalReplicationGroupCommand, "FailoverGlobalReplicationGroupCommand");
|
|
11283
|
-
var FailoverGlobalReplicationGroupCommand = _FailoverGlobalReplicationGroupCommand;
|
|
11284
11376
|
|
|
11285
11377
|
// src/commands/IncreaseNodeGroupsInGlobalReplicationGroupCommand.ts
|
|
11286
11378
|
|
|
11287
11379
|
|
|
11288
11380
|
|
|
11289
|
-
var
|
|
11381
|
+
var IncreaseNodeGroupsInGlobalReplicationGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11290
11382
|
return [
|
|
11291
11383
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11292
11384
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11293
11385
|
];
|
|
11294
11386
|
}).s("AmazonElastiCacheV9", "IncreaseNodeGroupsInGlobalReplicationGroup", {}).n("ElastiCacheClient", "IncreaseNodeGroupsInGlobalReplicationGroupCommand").f(void 0, void 0).ser(se_IncreaseNodeGroupsInGlobalReplicationGroupCommand).de(de_IncreaseNodeGroupsInGlobalReplicationGroupCommand).build() {
|
|
11387
|
+
static {
|
|
11388
|
+
__name(this, "IncreaseNodeGroupsInGlobalReplicationGroupCommand");
|
|
11389
|
+
}
|
|
11295
11390
|
};
|
|
11296
|
-
__name(_IncreaseNodeGroupsInGlobalReplicationGroupCommand, "IncreaseNodeGroupsInGlobalReplicationGroupCommand");
|
|
11297
|
-
var IncreaseNodeGroupsInGlobalReplicationGroupCommand = _IncreaseNodeGroupsInGlobalReplicationGroupCommand;
|
|
11298
11391
|
|
|
11299
11392
|
// src/commands/IncreaseReplicaCountCommand.ts
|
|
11300
11393
|
|
|
11301
11394
|
|
|
11302
11395
|
|
|
11303
|
-
var
|
|
11396
|
+
var IncreaseReplicaCountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11304
11397
|
return [
|
|
11305
11398
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11306
11399
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11307
11400
|
];
|
|
11308
11401
|
}).s("AmazonElastiCacheV9", "IncreaseReplicaCount", {}).n("ElastiCacheClient", "IncreaseReplicaCountCommand").f(void 0, void 0).ser(se_IncreaseReplicaCountCommand).de(de_IncreaseReplicaCountCommand).build() {
|
|
11402
|
+
static {
|
|
11403
|
+
__name(this, "IncreaseReplicaCountCommand");
|
|
11404
|
+
}
|
|
11309
11405
|
};
|
|
11310
|
-
__name(_IncreaseReplicaCountCommand, "IncreaseReplicaCountCommand");
|
|
11311
|
-
var IncreaseReplicaCountCommand = _IncreaseReplicaCountCommand;
|
|
11312
11406
|
|
|
11313
11407
|
// src/commands/ListAllowedNodeTypeModificationsCommand.ts
|
|
11314
11408
|
|
|
11315
11409
|
|
|
11316
11410
|
|
|
11317
|
-
var
|
|
11411
|
+
var ListAllowedNodeTypeModificationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11318
11412
|
return [
|
|
11319
11413
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11320
11414
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11321
11415
|
];
|
|
11322
11416
|
}).s("AmazonElastiCacheV9", "ListAllowedNodeTypeModifications", {}).n("ElastiCacheClient", "ListAllowedNodeTypeModificationsCommand").f(void 0, void 0).ser(se_ListAllowedNodeTypeModificationsCommand).de(de_ListAllowedNodeTypeModificationsCommand).build() {
|
|
11417
|
+
static {
|
|
11418
|
+
__name(this, "ListAllowedNodeTypeModificationsCommand");
|
|
11419
|
+
}
|
|
11323
11420
|
};
|
|
11324
|
-
__name(_ListAllowedNodeTypeModificationsCommand, "ListAllowedNodeTypeModificationsCommand");
|
|
11325
|
-
var ListAllowedNodeTypeModificationsCommand = _ListAllowedNodeTypeModificationsCommand;
|
|
11326
11421
|
|
|
11327
11422
|
// src/commands/ListTagsForResourceCommand.ts
|
|
11328
11423
|
|
|
11329
11424
|
|
|
11330
11425
|
|
|
11331
|
-
var
|
|
11426
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11332
11427
|
return [
|
|
11333
11428
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11334
11429
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11335
11430
|
];
|
|
11336
11431
|
}).s("AmazonElastiCacheV9", "ListTagsForResource", {}).n("ElastiCacheClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
11432
|
+
static {
|
|
11433
|
+
__name(this, "ListTagsForResourceCommand");
|
|
11434
|
+
}
|
|
11337
11435
|
};
|
|
11338
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
11339
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
11340
11436
|
|
|
11341
11437
|
// src/commands/ModifyCacheClusterCommand.ts
|
|
11342
11438
|
|
|
11343
11439
|
|
|
11344
11440
|
|
|
11345
|
-
var
|
|
11441
|
+
var ModifyCacheClusterCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11346
11442
|
return [
|
|
11347
11443
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11348
11444
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11349
11445
|
];
|
|
11350
11446
|
}).s("AmazonElastiCacheV9", "ModifyCacheCluster", {}).n("ElastiCacheClient", "ModifyCacheClusterCommand").f(void 0, void 0).ser(se_ModifyCacheClusterCommand).de(de_ModifyCacheClusterCommand).build() {
|
|
11447
|
+
static {
|
|
11448
|
+
__name(this, "ModifyCacheClusterCommand");
|
|
11449
|
+
}
|
|
11351
11450
|
};
|
|
11352
|
-
__name(_ModifyCacheClusterCommand, "ModifyCacheClusterCommand");
|
|
11353
|
-
var ModifyCacheClusterCommand = _ModifyCacheClusterCommand;
|
|
11354
11451
|
|
|
11355
11452
|
// src/commands/ModifyCacheParameterGroupCommand.ts
|
|
11356
11453
|
|
|
11357
11454
|
|
|
11358
11455
|
|
|
11359
|
-
var
|
|
11456
|
+
var ModifyCacheParameterGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11360
11457
|
return [
|
|
11361
11458
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11362
11459
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11363
11460
|
];
|
|
11364
11461
|
}).s("AmazonElastiCacheV9", "ModifyCacheParameterGroup", {}).n("ElastiCacheClient", "ModifyCacheParameterGroupCommand").f(void 0, void 0).ser(se_ModifyCacheParameterGroupCommand).de(de_ModifyCacheParameterGroupCommand).build() {
|
|
11462
|
+
static {
|
|
11463
|
+
__name(this, "ModifyCacheParameterGroupCommand");
|
|
11464
|
+
}
|
|
11365
11465
|
};
|
|
11366
|
-
__name(_ModifyCacheParameterGroupCommand, "ModifyCacheParameterGroupCommand");
|
|
11367
|
-
var ModifyCacheParameterGroupCommand = _ModifyCacheParameterGroupCommand;
|
|
11368
11466
|
|
|
11369
11467
|
// src/commands/ModifyCacheSubnetGroupCommand.ts
|
|
11370
11468
|
|
|
11371
11469
|
|
|
11372
11470
|
|
|
11373
|
-
var
|
|
11471
|
+
var ModifyCacheSubnetGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11374
11472
|
return [
|
|
11375
11473
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11376
11474
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11377
11475
|
];
|
|
11378
11476
|
}).s("AmazonElastiCacheV9", "ModifyCacheSubnetGroup", {}).n("ElastiCacheClient", "ModifyCacheSubnetGroupCommand").f(void 0, void 0).ser(se_ModifyCacheSubnetGroupCommand).de(de_ModifyCacheSubnetGroupCommand).build() {
|
|
11477
|
+
static {
|
|
11478
|
+
__name(this, "ModifyCacheSubnetGroupCommand");
|
|
11479
|
+
}
|
|
11379
11480
|
};
|
|
11380
|
-
__name(_ModifyCacheSubnetGroupCommand, "ModifyCacheSubnetGroupCommand");
|
|
11381
|
-
var ModifyCacheSubnetGroupCommand = _ModifyCacheSubnetGroupCommand;
|
|
11382
11481
|
|
|
11383
11482
|
// src/commands/ModifyGlobalReplicationGroupCommand.ts
|
|
11384
11483
|
|
|
11385
11484
|
|
|
11386
11485
|
|
|
11387
|
-
var
|
|
11486
|
+
var ModifyGlobalReplicationGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11388
11487
|
return [
|
|
11389
11488
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11390
11489
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11391
11490
|
];
|
|
11392
11491
|
}).s("AmazonElastiCacheV9", "ModifyGlobalReplicationGroup", {}).n("ElastiCacheClient", "ModifyGlobalReplicationGroupCommand").f(void 0, void 0).ser(se_ModifyGlobalReplicationGroupCommand).de(de_ModifyGlobalReplicationGroupCommand).build() {
|
|
11492
|
+
static {
|
|
11493
|
+
__name(this, "ModifyGlobalReplicationGroupCommand");
|
|
11494
|
+
}
|
|
11393
11495
|
};
|
|
11394
|
-
__name(_ModifyGlobalReplicationGroupCommand, "ModifyGlobalReplicationGroupCommand");
|
|
11395
|
-
var ModifyGlobalReplicationGroupCommand = _ModifyGlobalReplicationGroupCommand;
|
|
11396
11496
|
|
|
11397
11497
|
// src/commands/ModifyReplicationGroupCommand.ts
|
|
11398
11498
|
|
|
11399
11499
|
|
|
11400
11500
|
|
|
11401
|
-
var
|
|
11501
|
+
var ModifyReplicationGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11402
11502
|
return [
|
|
11403
11503
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11404
11504
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11405
11505
|
];
|
|
11406
11506
|
}).s("AmazonElastiCacheV9", "ModifyReplicationGroup", {}).n("ElastiCacheClient", "ModifyReplicationGroupCommand").f(void 0, void 0).ser(se_ModifyReplicationGroupCommand).de(de_ModifyReplicationGroupCommand).build() {
|
|
11507
|
+
static {
|
|
11508
|
+
__name(this, "ModifyReplicationGroupCommand");
|
|
11509
|
+
}
|
|
11407
11510
|
};
|
|
11408
|
-
__name(_ModifyReplicationGroupCommand, "ModifyReplicationGroupCommand");
|
|
11409
|
-
var ModifyReplicationGroupCommand = _ModifyReplicationGroupCommand;
|
|
11410
11511
|
|
|
11411
11512
|
// src/commands/ModifyReplicationGroupShardConfigurationCommand.ts
|
|
11412
11513
|
|
|
11413
11514
|
|
|
11414
11515
|
|
|
11415
|
-
var
|
|
11516
|
+
var ModifyReplicationGroupShardConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11416
11517
|
return [
|
|
11417
11518
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11418
11519
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11419
11520
|
];
|
|
11420
11521
|
}).s("AmazonElastiCacheV9", "ModifyReplicationGroupShardConfiguration", {}).n("ElastiCacheClient", "ModifyReplicationGroupShardConfigurationCommand").f(void 0, void 0).ser(se_ModifyReplicationGroupShardConfigurationCommand).de(de_ModifyReplicationGroupShardConfigurationCommand).build() {
|
|
11522
|
+
static {
|
|
11523
|
+
__name(this, "ModifyReplicationGroupShardConfigurationCommand");
|
|
11524
|
+
}
|
|
11421
11525
|
};
|
|
11422
|
-
__name(_ModifyReplicationGroupShardConfigurationCommand, "ModifyReplicationGroupShardConfigurationCommand");
|
|
11423
|
-
var ModifyReplicationGroupShardConfigurationCommand = _ModifyReplicationGroupShardConfigurationCommand;
|
|
11424
11526
|
|
|
11425
11527
|
// src/commands/ModifyServerlessCacheCommand.ts
|
|
11426
11528
|
|
|
11427
11529
|
|
|
11428
11530
|
|
|
11429
|
-
var
|
|
11531
|
+
var ModifyServerlessCacheCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11430
11532
|
return [
|
|
11431
11533
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11432
11534
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11433
11535
|
];
|
|
11434
11536
|
}).s("AmazonElastiCacheV9", "ModifyServerlessCache", {}).n("ElastiCacheClient", "ModifyServerlessCacheCommand").f(void 0, void 0).ser(se_ModifyServerlessCacheCommand).de(de_ModifyServerlessCacheCommand).build() {
|
|
11537
|
+
static {
|
|
11538
|
+
__name(this, "ModifyServerlessCacheCommand");
|
|
11539
|
+
}
|
|
11435
11540
|
};
|
|
11436
|
-
__name(_ModifyServerlessCacheCommand, "ModifyServerlessCacheCommand");
|
|
11437
|
-
var ModifyServerlessCacheCommand = _ModifyServerlessCacheCommand;
|
|
11438
11541
|
|
|
11439
11542
|
// src/commands/ModifyUserCommand.ts
|
|
11440
11543
|
|
|
11441
11544
|
|
|
11442
11545
|
|
|
11443
|
-
var
|
|
11546
|
+
var ModifyUserCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11444
11547
|
return [
|
|
11445
11548
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11446
11549
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11447
11550
|
];
|
|
11448
11551
|
}).s("AmazonElastiCacheV9", "ModifyUser", {}).n("ElastiCacheClient", "ModifyUserCommand").f(void 0, void 0).ser(se_ModifyUserCommand).de(de_ModifyUserCommand).build() {
|
|
11552
|
+
static {
|
|
11553
|
+
__name(this, "ModifyUserCommand");
|
|
11554
|
+
}
|
|
11449
11555
|
};
|
|
11450
|
-
__name(_ModifyUserCommand, "ModifyUserCommand");
|
|
11451
|
-
var ModifyUserCommand = _ModifyUserCommand;
|
|
11452
11556
|
|
|
11453
11557
|
// src/commands/ModifyUserGroupCommand.ts
|
|
11454
11558
|
|
|
11455
11559
|
|
|
11456
11560
|
|
|
11457
|
-
var
|
|
11561
|
+
var ModifyUserGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11458
11562
|
return [
|
|
11459
11563
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11460
11564
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11461
11565
|
];
|
|
11462
11566
|
}).s("AmazonElastiCacheV9", "ModifyUserGroup", {}).n("ElastiCacheClient", "ModifyUserGroupCommand").f(void 0, void 0).ser(se_ModifyUserGroupCommand).de(de_ModifyUserGroupCommand).build() {
|
|
11567
|
+
static {
|
|
11568
|
+
__name(this, "ModifyUserGroupCommand");
|
|
11569
|
+
}
|
|
11463
11570
|
};
|
|
11464
|
-
__name(_ModifyUserGroupCommand, "ModifyUserGroupCommand");
|
|
11465
|
-
var ModifyUserGroupCommand = _ModifyUserGroupCommand;
|
|
11466
11571
|
|
|
11467
11572
|
// src/commands/PurchaseReservedCacheNodesOfferingCommand.ts
|
|
11468
11573
|
|
|
11469
11574
|
|
|
11470
11575
|
|
|
11471
|
-
var
|
|
11576
|
+
var PurchaseReservedCacheNodesOfferingCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11472
11577
|
return [
|
|
11473
11578
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11474
11579
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11475
11580
|
];
|
|
11476
11581
|
}).s("AmazonElastiCacheV9", "PurchaseReservedCacheNodesOffering", {}).n("ElastiCacheClient", "PurchaseReservedCacheNodesOfferingCommand").f(void 0, void 0).ser(se_PurchaseReservedCacheNodesOfferingCommand).de(de_PurchaseReservedCacheNodesOfferingCommand).build() {
|
|
11582
|
+
static {
|
|
11583
|
+
__name(this, "PurchaseReservedCacheNodesOfferingCommand");
|
|
11584
|
+
}
|
|
11477
11585
|
};
|
|
11478
|
-
__name(_PurchaseReservedCacheNodesOfferingCommand, "PurchaseReservedCacheNodesOfferingCommand");
|
|
11479
|
-
var PurchaseReservedCacheNodesOfferingCommand = _PurchaseReservedCacheNodesOfferingCommand;
|
|
11480
11586
|
|
|
11481
11587
|
// src/commands/RebalanceSlotsInGlobalReplicationGroupCommand.ts
|
|
11482
11588
|
|
|
11483
11589
|
|
|
11484
11590
|
|
|
11485
|
-
var
|
|
11591
|
+
var RebalanceSlotsInGlobalReplicationGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11486
11592
|
return [
|
|
11487
11593
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11488
11594
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11489
11595
|
];
|
|
11490
11596
|
}).s("AmazonElastiCacheV9", "RebalanceSlotsInGlobalReplicationGroup", {}).n("ElastiCacheClient", "RebalanceSlotsInGlobalReplicationGroupCommand").f(void 0, void 0).ser(se_RebalanceSlotsInGlobalReplicationGroupCommand).de(de_RebalanceSlotsInGlobalReplicationGroupCommand).build() {
|
|
11597
|
+
static {
|
|
11598
|
+
__name(this, "RebalanceSlotsInGlobalReplicationGroupCommand");
|
|
11599
|
+
}
|
|
11491
11600
|
};
|
|
11492
|
-
__name(_RebalanceSlotsInGlobalReplicationGroupCommand, "RebalanceSlotsInGlobalReplicationGroupCommand");
|
|
11493
|
-
var RebalanceSlotsInGlobalReplicationGroupCommand = _RebalanceSlotsInGlobalReplicationGroupCommand;
|
|
11494
11601
|
|
|
11495
11602
|
// src/commands/RebootCacheClusterCommand.ts
|
|
11496
11603
|
|
|
11497
11604
|
|
|
11498
11605
|
|
|
11499
|
-
var
|
|
11606
|
+
var RebootCacheClusterCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11500
11607
|
return [
|
|
11501
11608
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11502
11609
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11503
11610
|
];
|
|
11504
11611
|
}).s("AmazonElastiCacheV9", "RebootCacheCluster", {}).n("ElastiCacheClient", "RebootCacheClusterCommand").f(void 0, void 0).ser(se_RebootCacheClusterCommand).de(de_RebootCacheClusterCommand).build() {
|
|
11612
|
+
static {
|
|
11613
|
+
__name(this, "RebootCacheClusterCommand");
|
|
11614
|
+
}
|
|
11505
11615
|
};
|
|
11506
|
-
__name(_RebootCacheClusterCommand, "RebootCacheClusterCommand");
|
|
11507
|
-
var RebootCacheClusterCommand = _RebootCacheClusterCommand;
|
|
11508
11616
|
|
|
11509
11617
|
// src/commands/RemoveTagsFromResourceCommand.ts
|
|
11510
11618
|
|
|
11511
11619
|
|
|
11512
11620
|
|
|
11513
|
-
var
|
|
11621
|
+
var RemoveTagsFromResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11514
11622
|
return [
|
|
11515
11623
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11516
11624
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11517
11625
|
];
|
|
11518
11626
|
}).s("AmazonElastiCacheV9", "RemoveTagsFromResource", {}).n("ElastiCacheClient", "RemoveTagsFromResourceCommand").f(void 0, void 0).ser(se_RemoveTagsFromResourceCommand).de(de_RemoveTagsFromResourceCommand).build() {
|
|
11627
|
+
static {
|
|
11628
|
+
__name(this, "RemoveTagsFromResourceCommand");
|
|
11629
|
+
}
|
|
11519
11630
|
};
|
|
11520
|
-
__name(_RemoveTagsFromResourceCommand, "RemoveTagsFromResourceCommand");
|
|
11521
|
-
var RemoveTagsFromResourceCommand = _RemoveTagsFromResourceCommand;
|
|
11522
11631
|
|
|
11523
11632
|
// src/commands/ResetCacheParameterGroupCommand.ts
|
|
11524
11633
|
|
|
11525
11634
|
|
|
11526
11635
|
|
|
11527
|
-
var
|
|
11636
|
+
var ResetCacheParameterGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11528
11637
|
return [
|
|
11529
11638
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11530
11639
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11531
11640
|
];
|
|
11532
11641
|
}).s("AmazonElastiCacheV9", "ResetCacheParameterGroup", {}).n("ElastiCacheClient", "ResetCacheParameterGroupCommand").f(void 0, void 0).ser(se_ResetCacheParameterGroupCommand).de(de_ResetCacheParameterGroupCommand).build() {
|
|
11642
|
+
static {
|
|
11643
|
+
__name(this, "ResetCacheParameterGroupCommand");
|
|
11644
|
+
}
|
|
11533
11645
|
};
|
|
11534
|
-
__name(_ResetCacheParameterGroupCommand, "ResetCacheParameterGroupCommand");
|
|
11535
|
-
var ResetCacheParameterGroupCommand = _ResetCacheParameterGroupCommand;
|
|
11536
11646
|
|
|
11537
11647
|
// src/commands/RevokeCacheSecurityGroupIngressCommand.ts
|
|
11538
11648
|
|
|
11539
11649
|
|
|
11540
11650
|
|
|
11541
|
-
var
|
|
11651
|
+
var RevokeCacheSecurityGroupIngressCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11542
11652
|
return [
|
|
11543
11653
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11544
11654
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11545
11655
|
];
|
|
11546
11656
|
}).s("AmazonElastiCacheV9", "RevokeCacheSecurityGroupIngress", {}).n("ElastiCacheClient", "RevokeCacheSecurityGroupIngressCommand").f(void 0, void 0).ser(se_RevokeCacheSecurityGroupIngressCommand).de(de_RevokeCacheSecurityGroupIngressCommand).build() {
|
|
11657
|
+
static {
|
|
11658
|
+
__name(this, "RevokeCacheSecurityGroupIngressCommand");
|
|
11659
|
+
}
|
|
11547
11660
|
};
|
|
11548
|
-
__name(_RevokeCacheSecurityGroupIngressCommand, "RevokeCacheSecurityGroupIngressCommand");
|
|
11549
|
-
var RevokeCacheSecurityGroupIngressCommand = _RevokeCacheSecurityGroupIngressCommand;
|
|
11550
11661
|
|
|
11551
11662
|
// src/commands/StartMigrationCommand.ts
|
|
11552
11663
|
|
|
11553
11664
|
|
|
11554
11665
|
|
|
11555
|
-
var
|
|
11666
|
+
var StartMigrationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11556
11667
|
return [
|
|
11557
11668
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11558
11669
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11559
11670
|
];
|
|
11560
11671
|
}).s("AmazonElastiCacheV9", "StartMigration", {}).n("ElastiCacheClient", "StartMigrationCommand").f(void 0, void 0).ser(se_StartMigrationCommand).de(de_StartMigrationCommand).build() {
|
|
11672
|
+
static {
|
|
11673
|
+
__name(this, "StartMigrationCommand");
|
|
11674
|
+
}
|
|
11561
11675
|
};
|
|
11562
|
-
__name(_StartMigrationCommand, "StartMigrationCommand");
|
|
11563
|
-
var StartMigrationCommand = _StartMigrationCommand;
|
|
11564
11676
|
|
|
11565
11677
|
// src/commands/TestFailoverCommand.ts
|
|
11566
11678
|
|
|
11567
11679
|
|
|
11568
11680
|
|
|
11569
|
-
var
|
|
11681
|
+
var TestFailoverCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11570
11682
|
return [
|
|
11571
11683
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11572
11684
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11573
11685
|
];
|
|
11574
11686
|
}).s("AmazonElastiCacheV9", "TestFailover", {}).n("ElastiCacheClient", "TestFailoverCommand").f(void 0, void 0).ser(se_TestFailoverCommand).de(de_TestFailoverCommand).build() {
|
|
11687
|
+
static {
|
|
11688
|
+
__name(this, "TestFailoverCommand");
|
|
11689
|
+
}
|
|
11575
11690
|
};
|
|
11576
|
-
__name(_TestFailoverCommand, "TestFailoverCommand");
|
|
11577
|
-
var TestFailoverCommand = _TestFailoverCommand;
|
|
11578
11691
|
|
|
11579
11692
|
// src/commands/TestMigrationCommand.ts
|
|
11580
11693
|
|
|
11581
11694
|
|
|
11582
11695
|
|
|
11583
|
-
var
|
|
11696
|
+
var TestMigrationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11584
11697
|
return [
|
|
11585
11698
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11586
11699
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11587
11700
|
];
|
|
11588
11701
|
}).s("AmazonElastiCacheV9", "TestMigration", {}).n("ElastiCacheClient", "TestMigrationCommand").f(void 0, void 0).ser(se_TestMigrationCommand).de(de_TestMigrationCommand).build() {
|
|
11702
|
+
static {
|
|
11703
|
+
__name(this, "TestMigrationCommand");
|
|
11704
|
+
}
|
|
11589
11705
|
};
|
|
11590
|
-
__name(_TestMigrationCommand, "TestMigrationCommand");
|
|
11591
|
-
var TestMigrationCommand = _TestMigrationCommand;
|
|
11592
11706
|
|
|
11593
11707
|
// src/ElastiCache.ts
|
|
11594
11708
|
var commands = {
|
|
@@ -11668,10 +11782,11 @@ var commands = {
|
|
|
11668
11782
|
TestFailoverCommand,
|
|
11669
11783
|
TestMigrationCommand
|
|
11670
11784
|
};
|
|
11671
|
-
var
|
|
11785
|
+
var ElastiCache = class extends ElastiCacheClient {
|
|
11786
|
+
static {
|
|
11787
|
+
__name(this, "ElastiCache");
|
|
11788
|
+
}
|
|
11672
11789
|
};
|
|
11673
|
-
__name(_ElastiCache, "ElastiCache");
|
|
11674
|
-
var ElastiCache = _ElastiCache;
|
|
11675
11790
|
(0, import_smithy_client.createAggregatedClient)(commands, ElastiCache);
|
|
11676
11791
|
|
|
11677
11792
|
// src/pagination/DescribeCacheClustersPaginator.ts
|