@aws-sdk/client-lambda 3.721.0 → 3.726.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 +621 -404
- package/dist-es/LambdaClient.js +1 -0
- package/dist-es/models/models_0.js +144 -76
- 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 +48 -48
package/dist-cjs/index.js
CHANGED
|
@@ -309,7 +309,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
309
309
|
}, "resolveRuntimeExtensions");
|
|
310
310
|
|
|
311
311
|
// src/LambdaClient.ts
|
|
312
|
-
var
|
|
312
|
+
var LambdaClient = class extends import_smithy_client.Client {
|
|
313
|
+
static {
|
|
314
|
+
__name(this, "LambdaClient");
|
|
315
|
+
}
|
|
316
|
+
/**
|
|
317
|
+
* The resolved configuration of LambdaClient class. This is resolved and normalized from the {@link LambdaClientConfig | constructor configuration interface}.
|
|
318
|
+
*/
|
|
319
|
+
config;
|
|
313
320
|
constructor(...[configuration]) {
|
|
314
321
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
315
322
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -320,7 +327,7 @@ var _LambdaClient = class _LambdaClient extends import_smithy_client.Client {
|
|
|
320
327
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
321
328
|
const _config_7 = (0, import_eventstream_serde_config_resolver.resolveEventStreamSerdeConfig)(_config_6);
|
|
322
329
|
const _config_8 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_7);
|
|
323
|
-
const _config_9 = resolveRuntimeExtensions(_config_8,
|
|
330
|
+
const _config_9 = resolveRuntimeExtensions(_config_8, configuration?.extensions || []);
|
|
324
331
|
super(_config_9);
|
|
325
332
|
this.config = _config_9;
|
|
326
333
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -348,8 +355,6 @@ var _LambdaClient = class _LambdaClient extends import_smithy_client.Client {
|
|
|
348
355
|
super.destroy();
|
|
349
356
|
}
|
|
350
357
|
};
|
|
351
|
-
__name(_LambdaClient, "LambdaClient");
|
|
352
|
-
var LambdaClient = _LambdaClient;
|
|
353
358
|
|
|
354
359
|
// src/Lambda.ts
|
|
355
360
|
|
|
@@ -366,7 +371,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
366
371
|
|
|
367
372
|
// src/models/LambdaServiceException.ts
|
|
368
373
|
|
|
369
|
-
var
|
|
374
|
+
var LambdaServiceException = class _LambdaServiceException extends import_smithy_client.ServiceException {
|
|
375
|
+
static {
|
|
376
|
+
__name(this, "LambdaServiceException");
|
|
377
|
+
}
|
|
370
378
|
/**
|
|
371
379
|
* @internal
|
|
372
380
|
*/
|
|
@@ -375,12 +383,20 @@ var _LambdaServiceException = class _LambdaServiceException extends import_smith
|
|
|
375
383
|
Object.setPrototypeOf(this, _LambdaServiceException.prototype);
|
|
376
384
|
}
|
|
377
385
|
};
|
|
378
|
-
__name(_LambdaServiceException, "LambdaServiceException");
|
|
379
|
-
var LambdaServiceException = _LambdaServiceException;
|
|
380
386
|
|
|
381
387
|
// src/models/models_0.ts
|
|
382
388
|
|
|
383
|
-
var
|
|
389
|
+
var InvalidParameterValueException = class _InvalidParameterValueException extends LambdaServiceException {
|
|
390
|
+
static {
|
|
391
|
+
__name(this, "InvalidParameterValueException");
|
|
392
|
+
}
|
|
393
|
+
name = "InvalidParameterValueException";
|
|
394
|
+
$fault = "client";
|
|
395
|
+
/**
|
|
396
|
+
* <p>The exception type.</p>
|
|
397
|
+
* @public
|
|
398
|
+
*/
|
|
399
|
+
Type;
|
|
384
400
|
/**
|
|
385
401
|
* @internal
|
|
386
402
|
*/
|
|
@@ -390,15 +406,17 @@ var _InvalidParameterValueException = class _InvalidParameterValueException exte
|
|
|
390
406
|
$fault: "client",
|
|
391
407
|
...opts
|
|
392
408
|
});
|
|
393
|
-
this.name = "InvalidParameterValueException";
|
|
394
|
-
this.$fault = "client";
|
|
395
409
|
Object.setPrototypeOf(this, _InvalidParameterValueException.prototype);
|
|
396
410
|
this.Type = opts.Type;
|
|
397
411
|
}
|
|
398
412
|
};
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
413
|
+
var PolicyLengthExceededException = class _PolicyLengthExceededException extends LambdaServiceException {
|
|
414
|
+
static {
|
|
415
|
+
__name(this, "PolicyLengthExceededException");
|
|
416
|
+
}
|
|
417
|
+
name = "PolicyLengthExceededException";
|
|
418
|
+
$fault = "client";
|
|
419
|
+
Type;
|
|
402
420
|
/**
|
|
403
421
|
* @internal
|
|
404
422
|
*/
|
|
@@ -408,15 +426,21 @@ var _PolicyLengthExceededException = class _PolicyLengthExceededException extend
|
|
|
408
426
|
$fault: "client",
|
|
409
427
|
...opts
|
|
410
428
|
});
|
|
411
|
-
this.name = "PolicyLengthExceededException";
|
|
412
|
-
this.$fault = "client";
|
|
413
429
|
Object.setPrototypeOf(this, _PolicyLengthExceededException.prototype);
|
|
414
430
|
this.Type = opts.Type;
|
|
415
431
|
}
|
|
416
432
|
};
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
433
|
+
var PreconditionFailedException = class _PreconditionFailedException extends LambdaServiceException {
|
|
434
|
+
static {
|
|
435
|
+
__name(this, "PreconditionFailedException");
|
|
436
|
+
}
|
|
437
|
+
name = "PreconditionFailedException";
|
|
438
|
+
$fault = "client";
|
|
439
|
+
/**
|
|
440
|
+
* <p>The exception type.</p>
|
|
441
|
+
* @public
|
|
442
|
+
*/
|
|
443
|
+
Type;
|
|
420
444
|
/**
|
|
421
445
|
* @internal
|
|
422
446
|
*/
|
|
@@ -426,15 +450,21 @@ var _PreconditionFailedException = class _PreconditionFailedException extends La
|
|
|
426
450
|
$fault: "client",
|
|
427
451
|
...opts
|
|
428
452
|
});
|
|
429
|
-
this.name = "PreconditionFailedException";
|
|
430
|
-
this.$fault = "client";
|
|
431
453
|
Object.setPrototypeOf(this, _PreconditionFailedException.prototype);
|
|
432
454
|
this.Type = opts.Type;
|
|
433
455
|
}
|
|
434
456
|
};
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
457
|
+
var ResourceConflictException = class _ResourceConflictException extends LambdaServiceException {
|
|
458
|
+
static {
|
|
459
|
+
__name(this, "ResourceConflictException");
|
|
460
|
+
}
|
|
461
|
+
name = "ResourceConflictException";
|
|
462
|
+
$fault = "client";
|
|
463
|
+
/**
|
|
464
|
+
* <p>The exception type.</p>
|
|
465
|
+
* @public
|
|
466
|
+
*/
|
|
467
|
+
Type;
|
|
438
468
|
/**
|
|
439
469
|
* @internal
|
|
440
470
|
*/
|
|
@@ -444,15 +474,18 @@ var _ResourceConflictException = class _ResourceConflictException extends Lambda
|
|
|
444
474
|
$fault: "client",
|
|
445
475
|
...opts
|
|
446
476
|
});
|
|
447
|
-
this.name = "ResourceConflictException";
|
|
448
|
-
this.$fault = "client";
|
|
449
477
|
Object.setPrototypeOf(this, _ResourceConflictException.prototype);
|
|
450
478
|
this.Type = opts.Type;
|
|
451
479
|
}
|
|
452
480
|
};
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
481
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends LambdaServiceException {
|
|
482
|
+
static {
|
|
483
|
+
__name(this, "ResourceNotFoundException");
|
|
484
|
+
}
|
|
485
|
+
name = "ResourceNotFoundException";
|
|
486
|
+
$fault = "client";
|
|
487
|
+
Type;
|
|
488
|
+
Message;
|
|
456
489
|
/**
|
|
457
490
|
* @internal
|
|
458
491
|
*/
|
|
@@ -462,16 +495,19 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Lambda
|
|
|
462
495
|
$fault: "client",
|
|
463
496
|
...opts
|
|
464
497
|
});
|
|
465
|
-
this.name = "ResourceNotFoundException";
|
|
466
|
-
this.$fault = "client";
|
|
467
498
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
468
499
|
this.Type = opts.Type;
|
|
469
500
|
this.Message = opts.Message;
|
|
470
501
|
}
|
|
471
502
|
};
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
503
|
+
var ServiceException = class _ServiceException extends LambdaServiceException {
|
|
504
|
+
static {
|
|
505
|
+
__name(this, "ServiceException");
|
|
506
|
+
}
|
|
507
|
+
name = "ServiceException";
|
|
508
|
+
$fault = "server";
|
|
509
|
+
Type;
|
|
510
|
+
Message;
|
|
475
511
|
/**
|
|
476
512
|
* @internal
|
|
477
513
|
*/
|
|
@@ -481,15 +517,11 @@ var _ServiceException = class _ServiceException extends LambdaServiceException {
|
|
|
481
517
|
$fault: "server",
|
|
482
518
|
...opts
|
|
483
519
|
});
|
|
484
|
-
this.name = "ServiceException";
|
|
485
|
-
this.$fault = "server";
|
|
486
520
|
Object.setPrototypeOf(this, _ServiceException.prototype);
|
|
487
521
|
this.Type = opts.Type;
|
|
488
522
|
this.Message = opts.Message;
|
|
489
523
|
}
|
|
490
524
|
};
|
|
491
|
-
__name(_ServiceException, "ServiceException");
|
|
492
|
-
var ServiceException = _ServiceException;
|
|
493
525
|
var ThrottleReason = {
|
|
494
526
|
CallerRateLimitExceeded: "CallerRateLimitExceeded",
|
|
495
527
|
ConcurrentInvocationLimitExceeded: "ConcurrentInvocationLimitExceeded",
|
|
@@ -498,7 +530,19 @@ var ThrottleReason = {
|
|
|
498
530
|
ReservedFunctionConcurrentInvocationLimitExceeded: "ReservedFunctionConcurrentInvocationLimitExceeded",
|
|
499
531
|
ReservedFunctionInvocationRateLimitExceeded: "ReservedFunctionInvocationRateLimitExceeded"
|
|
500
532
|
};
|
|
501
|
-
var
|
|
533
|
+
var TooManyRequestsException = class _TooManyRequestsException extends LambdaServiceException {
|
|
534
|
+
static {
|
|
535
|
+
__name(this, "TooManyRequestsException");
|
|
536
|
+
}
|
|
537
|
+
name = "TooManyRequestsException";
|
|
538
|
+
$fault = "client";
|
|
539
|
+
/**
|
|
540
|
+
* <p>The number of seconds the caller should wait before retrying.</p>
|
|
541
|
+
* @public
|
|
542
|
+
*/
|
|
543
|
+
retryAfterSeconds;
|
|
544
|
+
Type;
|
|
545
|
+
Reason;
|
|
502
546
|
/**
|
|
503
547
|
* @internal
|
|
504
548
|
*/
|
|
@@ -508,16 +552,12 @@ var _TooManyRequestsException = class _TooManyRequestsException extends LambdaSe
|
|
|
508
552
|
$fault: "client",
|
|
509
553
|
...opts
|
|
510
554
|
});
|
|
511
|
-
this.name = "TooManyRequestsException";
|
|
512
|
-
this.$fault = "client";
|
|
513
555
|
Object.setPrototypeOf(this, _TooManyRequestsException.prototype);
|
|
514
556
|
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
515
557
|
this.Type = opts.Type;
|
|
516
558
|
this.Reason = opts.Reason;
|
|
517
559
|
}
|
|
518
560
|
};
|
|
519
|
-
__name(_TooManyRequestsException, "TooManyRequestsException");
|
|
520
|
-
var TooManyRequestsException = _TooManyRequestsException;
|
|
521
561
|
var FunctionUrlAuthType = {
|
|
522
562
|
AWS_IAM: "AWS_IAM",
|
|
523
563
|
NONE: "NONE"
|
|
@@ -566,7 +606,14 @@ var EventSourcePosition = {
|
|
|
566
606
|
LATEST: "LATEST",
|
|
567
607
|
TRIM_HORIZON: "TRIM_HORIZON"
|
|
568
608
|
};
|
|
569
|
-
var
|
|
609
|
+
var CodeSigningConfigNotFoundException = class _CodeSigningConfigNotFoundException extends LambdaServiceException {
|
|
610
|
+
static {
|
|
611
|
+
__name(this, "CodeSigningConfigNotFoundException");
|
|
612
|
+
}
|
|
613
|
+
name = "CodeSigningConfigNotFoundException";
|
|
614
|
+
$fault = "client";
|
|
615
|
+
Type;
|
|
616
|
+
Message;
|
|
570
617
|
/**
|
|
571
618
|
* @internal
|
|
572
619
|
*/
|
|
@@ -576,16 +623,22 @@ var _CodeSigningConfigNotFoundException = class _CodeSigningConfigNotFoundExcept
|
|
|
576
623
|
$fault: "client",
|
|
577
624
|
...opts
|
|
578
625
|
});
|
|
579
|
-
this.name = "CodeSigningConfigNotFoundException";
|
|
580
|
-
this.$fault = "client";
|
|
581
626
|
Object.setPrototypeOf(this, _CodeSigningConfigNotFoundException.prototype);
|
|
582
627
|
this.Type = opts.Type;
|
|
583
628
|
this.Message = opts.Message;
|
|
584
629
|
}
|
|
585
630
|
};
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
631
|
+
var CodeStorageExceededException = class _CodeStorageExceededException extends LambdaServiceException {
|
|
632
|
+
static {
|
|
633
|
+
__name(this, "CodeStorageExceededException");
|
|
634
|
+
}
|
|
635
|
+
name = "CodeStorageExceededException";
|
|
636
|
+
$fault = "client";
|
|
637
|
+
/**
|
|
638
|
+
* <p>The exception type.</p>
|
|
639
|
+
* @public
|
|
640
|
+
*/
|
|
641
|
+
Type;
|
|
589
642
|
/**
|
|
590
643
|
* @internal
|
|
591
644
|
*/
|
|
@@ -595,15 +648,18 @@ var _CodeStorageExceededException = class _CodeStorageExceededException extends
|
|
|
595
648
|
$fault: "client",
|
|
596
649
|
...opts
|
|
597
650
|
});
|
|
598
|
-
this.name = "CodeStorageExceededException";
|
|
599
|
-
this.$fault = "client";
|
|
600
651
|
Object.setPrototypeOf(this, _CodeStorageExceededException.prototype);
|
|
601
652
|
this.Type = opts.Type;
|
|
602
653
|
}
|
|
603
654
|
};
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
655
|
+
var CodeVerificationFailedException = class _CodeVerificationFailedException extends LambdaServiceException {
|
|
656
|
+
static {
|
|
657
|
+
__name(this, "CodeVerificationFailedException");
|
|
658
|
+
}
|
|
659
|
+
name = "CodeVerificationFailedException";
|
|
660
|
+
$fault = "client";
|
|
661
|
+
Type;
|
|
662
|
+
Message;
|
|
607
663
|
/**
|
|
608
664
|
* @internal
|
|
609
665
|
*/
|
|
@@ -613,15 +669,11 @@ var _CodeVerificationFailedException = class _CodeVerificationFailedException ex
|
|
|
613
669
|
$fault: "client",
|
|
614
670
|
...opts
|
|
615
671
|
});
|
|
616
|
-
this.name = "CodeVerificationFailedException";
|
|
617
|
-
this.$fault = "client";
|
|
618
672
|
Object.setPrototypeOf(this, _CodeVerificationFailedException.prototype);
|
|
619
673
|
this.Type = opts.Type;
|
|
620
674
|
this.Message = opts.Message;
|
|
621
675
|
}
|
|
622
676
|
};
|
|
623
|
-
__name(_CodeVerificationFailedException, "CodeVerificationFailedException");
|
|
624
|
-
var CodeVerificationFailedException = _CodeVerificationFailedException;
|
|
625
677
|
var LogFormat = {
|
|
626
678
|
Json: "JSON",
|
|
627
679
|
Text: "Text"
|
|
@@ -749,7 +801,14 @@ var StateReasonCode = {
|
|
|
749
801
|
Restoring: "Restoring",
|
|
750
802
|
SubnetOutOfIPAddresses: "SubnetOutOfIPAddresses"
|
|
751
803
|
};
|
|
752
|
-
var
|
|
804
|
+
var InvalidCodeSignatureException = class _InvalidCodeSignatureException extends LambdaServiceException {
|
|
805
|
+
static {
|
|
806
|
+
__name(this, "InvalidCodeSignatureException");
|
|
807
|
+
}
|
|
808
|
+
name = "InvalidCodeSignatureException";
|
|
809
|
+
$fault = "client";
|
|
810
|
+
Type;
|
|
811
|
+
Message;
|
|
753
812
|
/**
|
|
754
813
|
* @internal
|
|
755
814
|
*/
|
|
@@ -759,20 +818,23 @@ var _InvalidCodeSignatureException = class _InvalidCodeSignatureException extend
|
|
|
759
818
|
$fault: "client",
|
|
760
819
|
...opts
|
|
761
820
|
});
|
|
762
|
-
this.name = "InvalidCodeSignatureException";
|
|
763
|
-
this.$fault = "client";
|
|
764
821
|
Object.setPrototypeOf(this, _InvalidCodeSignatureException.prototype);
|
|
765
822
|
this.Type = opts.Type;
|
|
766
823
|
this.Message = opts.Message;
|
|
767
824
|
}
|
|
768
825
|
};
|
|
769
|
-
__name(_InvalidCodeSignatureException, "InvalidCodeSignatureException");
|
|
770
|
-
var InvalidCodeSignatureException = _InvalidCodeSignatureException;
|
|
771
826
|
var InvokeMode = {
|
|
772
827
|
BUFFERED: "BUFFERED",
|
|
773
828
|
RESPONSE_STREAM: "RESPONSE_STREAM"
|
|
774
829
|
};
|
|
775
|
-
var
|
|
830
|
+
var ResourceInUseException = class _ResourceInUseException extends LambdaServiceException {
|
|
831
|
+
static {
|
|
832
|
+
__name(this, "ResourceInUseException");
|
|
833
|
+
}
|
|
834
|
+
name = "ResourceInUseException";
|
|
835
|
+
$fault = "client";
|
|
836
|
+
Type;
|
|
837
|
+
Message;
|
|
776
838
|
/**
|
|
777
839
|
* @internal
|
|
778
840
|
*/
|
|
@@ -782,15 +844,11 @@ var _ResourceInUseException = class _ResourceInUseException extends LambdaServic
|
|
|
782
844
|
$fault: "client",
|
|
783
845
|
...opts
|
|
784
846
|
});
|
|
785
|
-
this.name = "ResourceInUseException";
|
|
786
|
-
this.$fault = "client";
|
|
787
847
|
Object.setPrototypeOf(this, _ResourceInUseException.prototype);
|
|
788
848
|
this.Type = opts.Type;
|
|
789
849
|
this.Message = opts.Message;
|
|
790
850
|
}
|
|
791
851
|
};
|
|
792
|
-
__name(_ResourceInUseException, "ResourceInUseException");
|
|
793
|
-
var ResourceInUseException = _ResourceInUseException;
|
|
794
852
|
var RecursiveLoop = {
|
|
795
853
|
Allow: "Allow",
|
|
796
854
|
Terminate: "Terminate"
|
|
@@ -800,7 +858,13 @@ var ProvisionedConcurrencyStatusEnum = {
|
|
|
800
858
|
IN_PROGRESS: "IN_PROGRESS",
|
|
801
859
|
READY: "READY"
|
|
802
860
|
};
|
|
803
|
-
var
|
|
861
|
+
var ProvisionedConcurrencyConfigNotFoundException = class _ProvisionedConcurrencyConfigNotFoundException extends LambdaServiceException {
|
|
862
|
+
static {
|
|
863
|
+
__name(this, "ProvisionedConcurrencyConfigNotFoundException");
|
|
864
|
+
}
|
|
865
|
+
name = "ProvisionedConcurrencyConfigNotFoundException";
|
|
866
|
+
$fault = "client";
|
|
867
|
+
Type;
|
|
804
868
|
/**
|
|
805
869
|
* @internal
|
|
806
870
|
*/
|
|
@@ -810,20 +874,23 @@ var _ProvisionedConcurrencyConfigNotFoundException = class _ProvisionedConcurren
|
|
|
810
874
|
$fault: "client",
|
|
811
875
|
...opts
|
|
812
876
|
});
|
|
813
|
-
this.name = "ProvisionedConcurrencyConfigNotFoundException";
|
|
814
|
-
this.$fault = "client";
|
|
815
877
|
Object.setPrototypeOf(this, _ProvisionedConcurrencyConfigNotFoundException.prototype);
|
|
816
878
|
this.Type = opts.Type;
|
|
817
879
|
}
|
|
818
880
|
};
|
|
819
|
-
__name(_ProvisionedConcurrencyConfigNotFoundException, "ProvisionedConcurrencyConfigNotFoundException");
|
|
820
|
-
var ProvisionedConcurrencyConfigNotFoundException = _ProvisionedConcurrencyConfigNotFoundException;
|
|
821
881
|
var UpdateRuntimeOn = {
|
|
822
882
|
Auto: "Auto",
|
|
823
883
|
FunctionUpdate: "FunctionUpdate",
|
|
824
884
|
Manual: "Manual"
|
|
825
885
|
};
|
|
826
|
-
var
|
|
886
|
+
var EC2AccessDeniedException = class _EC2AccessDeniedException extends LambdaServiceException {
|
|
887
|
+
static {
|
|
888
|
+
__name(this, "EC2AccessDeniedException");
|
|
889
|
+
}
|
|
890
|
+
name = "EC2AccessDeniedException";
|
|
891
|
+
$fault = "server";
|
|
892
|
+
Type;
|
|
893
|
+
Message;
|
|
827
894
|
/**
|
|
828
895
|
* @internal
|
|
829
896
|
*/
|
|
@@ -833,16 +900,19 @@ var _EC2AccessDeniedException = class _EC2AccessDeniedException extends LambdaSe
|
|
|
833
900
|
$fault: "server",
|
|
834
901
|
...opts
|
|
835
902
|
});
|
|
836
|
-
this.name = "EC2AccessDeniedException";
|
|
837
|
-
this.$fault = "server";
|
|
838
903
|
Object.setPrototypeOf(this, _EC2AccessDeniedException.prototype);
|
|
839
904
|
this.Type = opts.Type;
|
|
840
905
|
this.Message = opts.Message;
|
|
841
906
|
}
|
|
842
907
|
};
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
908
|
+
var EC2ThrottledException = class _EC2ThrottledException extends LambdaServiceException {
|
|
909
|
+
static {
|
|
910
|
+
__name(this, "EC2ThrottledException");
|
|
911
|
+
}
|
|
912
|
+
name = "EC2ThrottledException";
|
|
913
|
+
$fault = "server";
|
|
914
|
+
Type;
|
|
915
|
+
Message;
|
|
846
916
|
/**
|
|
847
917
|
* @internal
|
|
848
918
|
*/
|
|
@@ -852,16 +922,20 @@ var _EC2ThrottledException = class _EC2ThrottledException extends LambdaServiceE
|
|
|
852
922
|
$fault: "server",
|
|
853
923
|
...opts
|
|
854
924
|
});
|
|
855
|
-
this.name = "EC2ThrottledException";
|
|
856
|
-
this.$fault = "server";
|
|
857
925
|
Object.setPrototypeOf(this, _EC2ThrottledException.prototype);
|
|
858
926
|
this.Type = opts.Type;
|
|
859
927
|
this.Message = opts.Message;
|
|
860
928
|
}
|
|
861
929
|
};
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
930
|
+
var EC2UnexpectedException = class _EC2UnexpectedException extends LambdaServiceException {
|
|
931
|
+
static {
|
|
932
|
+
__name(this, "EC2UnexpectedException");
|
|
933
|
+
}
|
|
934
|
+
name = "EC2UnexpectedException";
|
|
935
|
+
$fault = "server";
|
|
936
|
+
Type;
|
|
937
|
+
Message;
|
|
938
|
+
EC2ErrorCode;
|
|
865
939
|
/**
|
|
866
940
|
* @internal
|
|
867
941
|
*/
|
|
@@ -871,17 +945,20 @@ var _EC2UnexpectedException = class _EC2UnexpectedException extends LambdaServic
|
|
|
871
945
|
$fault: "server",
|
|
872
946
|
...opts
|
|
873
947
|
});
|
|
874
|
-
this.name = "EC2UnexpectedException";
|
|
875
|
-
this.$fault = "server";
|
|
876
948
|
Object.setPrototypeOf(this, _EC2UnexpectedException.prototype);
|
|
877
949
|
this.Type = opts.Type;
|
|
878
950
|
this.Message = opts.Message;
|
|
879
951
|
this.EC2ErrorCode = opts.EC2ErrorCode;
|
|
880
952
|
}
|
|
881
953
|
};
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
954
|
+
var EFSIOException = class _EFSIOException extends LambdaServiceException {
|
|
955
|
+
static {
|
|
956
|
+
__name(this, "EFSIOException");
|
|
957
|
+
}
|
|
958
|
+
name = "EFSIOException";
|
|
959
|
+
$fault = "client";
|
|
960
|
+
Type;
|
|
961
|
+
Message;
|
|
885
962
|
/**
|
|
886
963
|
* @internal
|
|
887
964
|
*/
|
|
@@ -891,16 +968,19 @@ var _EFSIOException = class _EFSIOException extends LambdaServiceException {
|
|
|
891
968
|
$fault: "client",
|
|
892
969
|
...opts
|
|
893
970
|
});
|
|
894
|
-
this.name = "EFSIOException";
|
|
895
|
-
this.$fault = "client";
|
|
896
971
|
Object.setPrototypeOf(this, _EFSIOException.prototype);
|
|
897
972
|
this.Type = opts.Type;
|
|
898
973
|
this.Message = opts.Message;
|
|
899
974
|
}
|
|
900
975
|
};
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
976
|
+
var EFSMountConnectivityException = class _EFSMountConnectivityException extends LambdaServiceException {
|
|
977
|
+
static {
|
|
978
|
+
__name(this, "EFSMountConnectivityException");
|
|
979
|
+
}
|
|
980
|
+
name = "EFSMountConnectivityException";
|
|
981
|
+
$fault = "client";
|
|
982
|
+
Type;
|
|
983
|
+
Message;
|
|
904
984
|
/**
|
|
905
985
|
* @internal
|
|
906
986
|
*/
|
|
@@ -910,16 +990,19 @@ var _EFSMountConnectivityException = class _EFSMountConnectivityException extend
|
|
|
910
990
|
$fault: "client",
|
|
911
991
|
...opts
|
|
912
992
|
});
|
|
913
|
-
this.name = "EFSMountConnectivityException";
|
|
914
|
-
this.$fault = "client";
|
|
915
993
|
Object.setPrototypeOf(this, _EFSMountConnectivityException.prototype);
|
|
916
994
|
this.Type = opts.Type;
|
|
917
995
|
this.Message = opts.Message;
|
|
918
996
|
}
|
|
919
997
|
};
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
998
|
+
var EFSMountFailureException = class _EFSMountFailureException extends LambdaServiceException {
|
|
999
|
+
static {
|
|
1000
|
+
__name(this, "EFSMountFailureException");
|
|
1001
|
+
}
|
|
1002
|
+
name = "EFSMountFailureException";
|
|
1003
|
+
$fault = "client";
|
|
1004
|
+
Type;
|
|
1005
|
+
Message;
|
|
923
1006
|
/**
|
|
924
1007
|
* @internal
|
|
925
1008
|
*/
|
|
@@ -929,16 +1012,19 @@ var _EFSMountFailureException = class _EFSMountFailureException extends LambdaSe
|
|
|
929
1012
|
$fault: "client",
|
|
930
1013
|
...opts
|
|
931
1014
|
});
|
|
932
|
-
this.name = "EFSMountFailureException";
|
|
933
|
-
this.$fault = "client";
|
|
934
1015
|
Object.setPrototypeOf(this, _EFSMountFailureException.prototype);
|
|
935
1016
|
this.Type = opts.Type;
|
|
936
1017
|
this.Message = opts.Message;
|
|
937
1018
|
}
|
|
938
1019
|
};
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
1020
|
+
var EFSMountTimeoutException = class _EFSMountTimeoutException extends LambdaServiceException {
|
|
1021
|
+
static {
|
|
1022
|
+
__name(this, "EFSMountTimeoutException");
|
|
1023
|
+
}
|
|
1024
|
+
name = "EFSMountTimeoutException";
|
|
1025
|
+
$fault = "client";
|
|
1026
|
+
Type;
|
|
1027
|
+
Message;
|
|
942
1028
|
/**
|
|
943
1029
|
* @internal
|
|
944
1030
|
*/
|
|
@@ -948,16 +1034,19 @@ var _EFSMountTimeoutException = class _EFSMountTimeoutException extends LambdaSe
|
|
|
948
1034
|
$fault: "client",
|
|
949
1035
|
...opts
|
|
950
1036
|
});
|
|
951
|
-
this.name = "EFSMountTimeoutException";
|
|
952
|
-
this.$fault = "client";
|
|
953
1037
|
Object.setPrototypeOf(this, _EFSMountTimeoutException.prototype);
|
|
954
1038
|
this.Type = opts.Type;
|
|
955
1039
|
this.Message = opts.Message;
|
|
956
1040
|
}
|
|
957
1041
|
};
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
1042
|
+
var ENILimitReachedException = class _ENILimitReachedException extends LambdaServiceException {
|
|
1043
|
+
static {
|
|
1044
|
+
__name(this, "ENILimitReachedException");
|
|
1045
|
+
}
|
|
1046
|
+
name = "ENILimitReachedException";
|
|
1047
|
+
$fault = "server";
|
|
1048
|
+
Type;
|
|
1049
|
+
Message;
|
|
961
1050
|
/**
|
|
962
1051
|
* @internal
|
|
963
1052
|
*/
|
|
@@ -967,16 +1056,22 @@ var _ENILimitReachedException = class _ENILimitReachedException extends LambdaSe
|
|
|
967
1056
|
$fault: "server",
|
|
968
1057
|
...opts
|
|
969
1058
|
});
|
|
970
|
-
this.name = "ENILimitReachedException";
|
|
971
|
-
this.$fault = "server";
|
|
972
1059
|
Object.setPrototypeOf(this, _ENILimitReachedException.prototype);
|
|
973
1060
|
this.Type = opts.Type;
|
|
974
1061
|
this.Message = opts.Message;
|
|
975
1062
|
}
|
|
976
1063
|
};
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
1064
|
+
var InvalidRequestContentException = class _InvalidRequestContentException extends LambdaServiceException {
|
|
1065
|
+
static {
|
|
1066
|
+
__name(this, "InvalidRequestContentException");
|
|
1067
|
+
}
|
|
1068
|
+
name = "InvalidRequestContentException";
|
|
1069
|
+
$fault = "client";
|
|
1070
|
+
/**
|
|
1071
|
+
* <p>The exception type.</p>
|
|
1072
|
+
* @public
|
|
1073
|
+
*/
|
|
1074
|
+
Type;
|
|
980
1075
|
/**
|
|
981
1076
|
* @internal
|
|
982
1077
|
*/
|
|
@@ -986,15 +1081,18 @@ var _InvalidRequestContentException = class _InvalidRequestContentException exte
|
|
|
986
1081
|
$fault: "client",
|
|
987
1082
|
...opts
|
|
988
1083
|
});
|
|
989
|
-
this.name = "InvalidRequestContentException";
|
|
990
|
-
this.$fault = "client";
|
|
991
1084
|
Object.setPrototypeOf(this, _InvalidRequestContentException.prototype);
|
|
992
1085
|
this.Type = opts.Type;
|
|
993
1086
|
}
|
|
994
1087
|
};
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
1088
|
+
var InvalidRuntimeException = class _InvalidRuntimeException extends LambdaServiceException {
|
|
1089
|
+
static {
|
|
1090
|
+
__name(this, "InvalidRuntimeException");
|
|
1091
|
+
}
|
|
1092
|
+
name = "InvalidRuntimeException";
|
|
1093
|
+
$fault = "server";
|
|
1094
|
+
Type;
|
|
1095
|
+
Message;
|
|
998
1096
|
/**
|
|
999
1097
|
* @internal
|
|
1000
1098
|
*/
|
|
@@ -1004,16 +1102,19 @@ var _InvalidRuntimeException = class _InvalidRuntimeException extends LambdaServ
|
|
|
1004
1102
|
$fault: "server",
|
|
1005
1103
|
...opts
|
|
1006
1104
|
});
|
|
1007
|
-
this.name = "InvalidRuntimeException";
|
|
1008
|
-
this.$fault = "server";
|
|
1009
1105
|
Object.setPrototypeOf(this, _InvalidRuntimeException.prototype);
|
|
1010
1106
|
this.Type = opts.Type;
|
|
1011
1107
|
this.Message = opts.Message;
|
|
1012
1108
|
}
|
|
1013
1109
|
};
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1110
|
+
var InvalidSecurityGroupIDException = class _InvalidSecurityGroupIDException extends LambdaServiceException {
|
|
1111
|
+
static {
|
|
1112
|
+
__name(this, "InvalidSecurityGroupIDException");
|
|
1113
|
+
}
|
|
1114
|
+
name = "InvalidSecurityGroupIDException";
|
|
1115
|
+
$fault = "server";
|
|
1116
|
+
Type;
|
|
1117
|
+
Message;
|
|
1017
1118
|
/**
|
|
1018
1119
|
* @internal
|
|
1019
1120
|
*/
|
|
@@ -1023,16 +1124,19 @@ var _InvalidSecurityGroupIDException = class _InvalidSecurityGroupIDException ex
|
|
|
1023
1124
|
$fault: "server",
|
|
1024
1125
|
...opts
|
|
1025
1126
|
});
|
|
1026
|
-
this.name = "InvalidSecurityGroupIDException";
|
|
1027
|
-
this.$fault = "server";
|
|
1028
1127
|
Object.setPrototypeOf(this, _InvalidSecurityGroupIDException.prototype);
|
|
1029
1128
|
this.Type = opts.Type;
|
|
1030
1129
|
this.Message = opts.Message;
|
|
1031
1130
|
}
|
|
1032
1131
|
};
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1132
|
+
var InvalidSubnetIDException = class _InvalidSubnetIDException extends LambdaServiceException {
|
|
1133
|
+
static {
|
|
1134
|
+
__name(this, "InvalidSubnetIDException");
|
|
1135
|
+
}
|
|
1136
|
+
name = "InvalidSubnetIDException";
|
|
1137
|
+
$fault = "server";
|
|
1138
|
+
Type;
|
|
1139
|
+
Message;
|
|
1036
1140
|
/**
|
|
1037
1141
|
* @internal
|
|
1038
1142
|
*/
|
|
@@ -1042,16 +1146,19 @@ var _InvalidSubnetIDException = class _InvalidSubnetIDException extends LambdaSe
|
|
|
1042
1146
|
$fault: "server",
|
|
1043
1147
|
...opts
|
|
1044
1148
|
});
|
|
1045
|
-
this.name = "InvalidSubnetIDException";
|
|
1046
|
-
this.$fault = "server";
|
|
1047
1149
|
Object.setPrototypeOf(this, _InvalidSubnetIDException.prototype);
|
|
1048
1150
|
this.Type = opts.Type;
|
|
1049
1151
|
this.Message = opts.Message;
|
|
1050
1152
|
}
|
|
1051
1153
|
};
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1154
|
+
var InvalidZipFileException = class _InvalidZipFileException extends LambdaServiceException {
|
|
1155
|
+
static {
|
|
1156
|
+
__name(this, "InvalidZipFileException");
|
|
1157
|
+
}
|
|
1158
|
+
name = "InvalidZipFileException";
|
|
1159
|
+
$fault = "server";
|
|
1160
|
+
Type;
|
|
1161
|
+
Message;
|
|
1055
1162
|
/**
|
|
1056
1163
|
* @internal
|
|
1057
1164
|
*/
|
|
@@ -1061,15 +1168,11 @@ var _InvalidZipFileException = class _InvalidZipFileException extends LambdaServ
|
|
|
1061
1168
|
$fault: "server",
|
|
1062
1169
|
...opts
|
|
1063
1170
|
});
|
|
1064
|
-
this.name = "InvalidZipFileException";
|
|
1065
|
-
this.$fault = "server";
|
|
1066
1171
|
Object.setPrototypeOf(this, _InvalidZipFileException.prototype);
|
|
1067
1172
|
this.Type = opts.Type;
|
|
1068
1173
|
this.Message = opts.Message;
|
|
1069
1174
|
}
|
|
1070
1175
|
};
|
|
1071
|
-
__name(_InvalidZipFileException, "InvalidZipFileException");
|
|
1072
|
-
var InvalidZipFileException = _InvalidZipFileException;
|
|
1073
1176
|
var InvocationType = {
|
|
1074
1177
|
DryRun: "DryRun",
|
|
1075
1178
|
Event: "Event",
|
|
@@ -1079,7 +1182,14 @@ var LogType = {
|
|
|
1079
1182
|
None: "None",
|
|
1080
1183
|
Tail: "Tail"
|
|
1081
1184
|
};
|
|
1082
|
-
var
|
|
1185
|
+
var KMSAccessDeniedException = class _KMSAccessDeniedException extends LambdaServiceException {
|
|
1186
|
+
static {
|
|
1187
|
+
__name(this, "KMSAccessDeniedException");
|
|
1188
|
+
}
|
|
1189
|
+
name = "KMSAccessDeniedException";
|
|
1190
|
+
$fault = "server";
|
|
1191
|
+
Type;
|
|
1192
|
+
Message;
|
|
1083
1193
|
/**
|
|
1084
1194
|
* @internal
|
|
1085
1195
|
*/
|
|
@@ -1089,16 +1199,19 @@ var _KMSAccessDeniedException = class _KMSAccessDeniedException extends LambdaSe
|
|
|
1089
1199
|
$fault: "server",
|
|
1090
1200
|
...opts
|
|
1091
1201
|
});
|
|
1092
|
-
this.name = "KMSAccessDeniedException";
|
|
1093
|
-
this.$fault = "server";
|
|
1094
1202
|
Object.setPrototypeOf(this, _KMSAccessDeniedException.prototype);
|
|
1095
1203
|
this.Type = opts.Type;
|
|
1096
1204
|
this.Message = opts.Message;
|
|
1097
1205
|
}
|
|
1098
1206
|
};
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1207
|
+
var KMSDisabledException = class _KMSDisabledException extends LambdaServiceException {
|
|
1208
|
+
static {
|
|
1209
|
+
__name(this, "KMSDisabledException");
|
|
1210
|
+
}
|
|
1211
|
+
name = "KMSDisabledException";
|
|
1212
|
+
$fault = "server";
|
|
1213
|
+
Type;
|
|
1214
|
+
Message;
|
|
1102
1215
|
/**
|
|
1103
1216
|
* @internal
|
|
1104
1217
|
*/
|
|
@@ -1108,16 +1221,19 @@ var _KMSDisabledException = class _KMSDisabledException extends LambdaServiceExc
|
|
|
1108
1221
|
$fault: "server",
|
|
1109
1222
|
...opts
|
|
1110
1223
|
});
|
|
1111
|
-
this.name = "KMSDisabledException";
|
|
1112
|
-
this.$fault = "server";
|
|
1113
1224
|
Object.setPrototypeOf(this, _KMSDisabledException.prototype);
|
|
1114
1225
|
this.Type = opts.Type;
|
|
1115
1226
|
this.Message = opts.Message;
|
|
1116
1227
|
}
|
|
1117
1228
|
};
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1229
|
+
var KMSInvalidStateException = class _KMSInvalidStateException extends LambdaServiceException {
|
|
1230
|
+
static {
|
|
1231
|
+
__name(this, "KMSInvalidStateException");
|
|
1232
|
+
}
|
|
1233
|
+
name = "KMSInvalidStateException";
|
|
1234
|
+
$fault = "server";
|
|
1235
|
+
Type;
|
|
1236
|
+
Message;
|
|
1121
1237
|
/**
|
|
1122
1238
|
* @internal
|
|
1123
1239
|
*/
|
|
@@ -1127,16 +1243,19 @@ var _KMSInvalidStateException = class _KMSInvalidStateException extends LambdaSe
|
|
|
1127
1243
|
$fault: "server",
|
|
1128
1244
|
...opts
|
|
1129
1245
|
});
|
|
1130
|
-
this.name = "KMSInvalidStateException";
|
|
1131
|
-
this.$fault = "server";
|
|
1132
1246
|
Object.setPrototypeOf(this, _KMSInvalidStateException.prototype);
|
|
1133
1247
|
this.Type = opts.Type;
|
|
1134
1248
|
this.Message = opts.Message;
|
|
1135
1249
|
}
|
|
1136
1250
|
};
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1251
|
+
var KMSNotFoundException = class _KMSNotFoundException extends LambdaServiceException {
|
|
1252
|
+
static {
|
|
1253
|
+
__name(this, "KMSNotFoundException");
|
|
1254
|
+
}
|
|
1255
|
+
name = "KMSNotFoundException";
|
|
1256
|
+
$fault = "server";
|
|
1257
|
+
Type;
|
|
1258
|
+
Message;
|
|
1140
1259
|
/**
|
|
1141
1260
|
* @internal
|
|
1142
1261
|
*/
|
|
@@ -1146,16 +1265,27 @@ var _KMSNotFoundException = class _KMSNotFoundException extends LambdaServiceExc
|
|
|
1146
1265
|
$fault: "server",
|
|
1147
1266
|
...opts
|
|
1148
1267
|
});
|
|
1149
|
-
this.name = "KMSNotFoundException";
|
|
1150
|
-
this.$fault = "server";
|
|
1151
1268
|
Object.setPrototypeOf(this, _KMSNotFoundException.prototype);
|
|
1152
1269
|
this.Type = opts.Type;
|
|
1153
1270
|
this.Message = opts.Message;
|
|
1154
1271
|
}
|
|
1155
1272
|
};
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1273
|
+
var RecursiveInvocationException = class _RecursiveInvocationException extends LambdaServiceException {
|
|
1274
|
+
static {
|
|
1275
|
+
__name(this, "RecursiveInvocationException");
|
|
1276
|
+
}
|
|
1277
|
+
name = "RecursiveInvocationException";
|
|
1278
|
+
$fault = "client";
|
|
1279
|
+
/**
|
|
1280
|
+
* <p>The exception type.</p>
|
|
1281
|
+
* @public
|
|
1282
|
+
*/
|
|
1283
|
+
Type;
|
|
1284
|
+
/**
|
|
1285
|
+
* <p>The exception message.</p>
|
|
1286
|
+
* @public
|
|
1287
|
+
*/
|
|
1288
|
+
Message;
|
|
1159
1289
|
/**
|
|
1160
1290
|
* @internal
|
|
1161
1291
|
*/
|
|
@@ -1165,16 +1295,18 @@ var _RecursiveInvocationException = class _RecursiveInvocationException extends
|
|
|
1165
1295
|
$fault: "client",
|
|
1166
1296
|
...opts
|
|
1167
1297
|
});
|
|
1168
|
-
this.name = "RecursiveInvocationException";
|
|
1169
|
-
this.$fault = "client";
|
|
1170
1298
|
Object.setPrototypeOf(this, _RecursiveInvocationException.prototype);
|
|
1171
1299
|
this.Type = opts.Type;
|
|
1172
1300
|
this.Message = opts.Message;
|
|
1173
1301
|
}
|
|
1174
1302
|
};
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1303
|
+
var RequestTooLargeException = class _RequestTooLargeException extends LambdaServiceException {
|
|
1304
|
+
static {
|
|
1305
|
+
__name(this, "RequestTooLargeException");
|
|
1306
|
+
}
|
|
1307
|
+
name = "RequestTooLargeException";
|
|
1308
|
+
$fault = "client";
|
|
1309
|
+
Type;
|
|
1178
1310
|
/**
|
|
1179
1311
|
* @internal
|
|
1180
1312
|
*/
|
|
@@ -1184,15 +1316,21 @@ var _RequestTooLargeException = class _RequestTooLargeException extends LambdaSe
|
|
|
1184
1316
|
$fault: "client",
|
|
1185
1317
|
...opts
|
|
1186
1318
|
});
|
|
1187
|
-
this.name = "RequestTooLargeException";
|
|
1188
|
-
this.$fault = "client";
|
|
1189
1319
|
Object.setPrototypeOf(this, _RequestTooLargeException.prototype);
|
|
1190
1320
|
this.Type = opts.Type;
|
|
1191
1321
|
}
|
|
1192
1322
|
};
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1323
|
+
var ResourceNotReadyException = class _ResourceNotReadyException extends LambdaServiceException {
|
|
1324
|
+
static {
|
|
1325
|
+
__name(this, "ResourceNotReadyException");
|
|
1326
|
+
}
|
|
1327
|
+
name = "ResourceNotReadyException";
|
|
1328
|
+
$fault = "server";
|
|
1329
|
+
/**
|
|
1330
|
+
* <p>The exception type.</p>
|
|
1331
|
+
* @public
|
|
1332
|
+
*/
|
|
1333
|
+
Type;
|
|
1196
1334
|
/**
|
|
1197
1335
|
* @internal
|
|
1198
1336
|
*/
|
|
@@ -1202,15 +1340,18 @@ var _ResourceNotReadyException = class _ResourceNotReadyException extends Lambda
|
|
|
1202
1340
|
$fault: "server",
|
|
1203
1341
|
...opts
|
|
1204
1342
|
});
|
|
1205
|
-
this.name = "ResourceNotReadyException";
|
|
1206
|
-
this.$fault = "server";
|
|
1207
1343
|
Object.setPrototypeOf(this, _ResourceNotReadyException.prototype);
|
|
1208
1344
|
this.Type = opts.Type;
|
|
1209
1345
|
}
|
|
1210
1346
|
};
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1347
|
+
var SnapStartException = class _SnapStartException extends LambdaServiceException {
|
|
1348
|
+
static {
|
|
1349
|
+
__name(this, "SnapStartException");
|
|
1350
|
+
}
|
|
1351
|
+
name = "SnapStartException";
|
|
1352
|
+
$fault = "client";
|
|
1353
|
+
Type;
|
|
1354
|
+
Message;
|
|
1214
1355
|
/**
|
|
1215
1356
|
* @internal
|
|
1216
1357
|
*/
|
|
@@ -1220,16 +1361,19 @@ var _SnapStartException = class _SnapStartException extends LambdaServiceExcepti
|
|
|
1220
1361
|
$fault: "client",
|
|
1221
1362
|
...opts
|
|
1222
1363
|
});
|
|
1223
|
-
this.name = "SnapStartException";
|
|
1224
|
-
this.$fault = "client";
|
|
1225
1364
|
Object.setPrototypeOf(this, _SnapStartException.prototype);
|
|
1226
1365
|
this.Type = opts.Type;
|
|
1227
1366
|
this.Message = opts.Message;
|
|
1228
1367
|
}
|
|
1229
1368
|
};
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1369
|
+
var SnapStartNotReadyException = class _SnapStartNotReadyException extends LambdaServiceException {
|
|
1370
|
+
static {
|
|
1371
|
+
__name(this, "SnapStartNotReadyException");
|
|
1372
|
+
}
|
|
1373
|
+
name = "SnapStartNotReadyException";
|
|
1374
|
+
$fault = "client";
|
|
1375
|
+
Type;
|
|
1376
|
+
Message;
|
|
1233
1377
|
/**
|
|
1234
1378
|
* @internal
|
|
1235
1379
|
*/
|
|
@@ -1239,16 +1383,19 @@ var _SnapStartNotReadyException = class _SnapStartNotReadyException extends Lamb
|
|
|
1239
1383
|
$fault: "client",
|
|
1240
1384
|
...opts
|
|
1241
1385
|
});
|
|
1242
|
-
this.name = "SnapStartNotReadyException";
|
|
1243
|
-
this.$fault = "client";
|
|
1244
1386
|
Object.setPrototypeOf(this, _SnapStartNotReadyException.prototype);
|
|
1245
1387
|
this.Type = opts.Type;
|
|
1246
1388
|
this.Message = opts.Message;
|
|
1247
1389
|
}
|
|
1248
1390
|
};
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1391
|
+
var SnapStartTimeoutException = class _SnapStartTimeoutException extends LambdaServiceException {
|
|
1392
|
+
static {
|
|
1393
|
+
__name(this, "SnapStartTimeoutException");
|
|
1394
|
+
}
|
|
1395
|
+
name = "SnapStartTimeoutException";
|
|
1396
|
+
$fault = "client";
|
|
1397
|
+
Type;
|
|
1398
|
+
Message;
|
|
1252
1399
|
/**
|
|
1253
1400
|
* @internal
|
|
1254
1401
|
*/
|
|
@@ -1258,16 +1405,19 @@ var _SnapStartTimeoutException = class _SnapStartTimeoutException extends Lambda
|
|
|
1258
1405
|
$fault: "client",
|
|
1259
1406
|
...opts
|
|
1260
1407
|
});
|
|
1261
|
-
this.name = "SnapStartTimeoutException";
|
|
1262
|
-
this.$fault = "client";
|
|
1263
1408
|
Object.setPrototypeOf(this, _SnapStartTimeoutException.prototype);
|
|
1264
1409
|
this.Type = opts.Type;
|
|
1265
1410
|
this.Message = opts.Message;
|
|
1266
1411
|
}
|
|
1267
1412
|
};
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1413
|
+
var SubnetIPAddressLimitReachedException = class _SubnetIPAddressLimitReachedException extends LambdaServiceException {
|
|
1414
|
+
static {
|
|
1415
|
+
__name(this, "SubnetIPAddressLimitReachedException");
|
|
1416
|
+
}
|
|
1417
|
+
name = "SubnetIPAddressLimitReachedException";
|
|
1418
|
+
$fault = "server";
|
|
1419
|
+
Type;
|
|
1420
|
+
Message;
|
|
1271
1421
|
/**
|
|
1272
1422
|
* @internal
|
|
1273
1423
|
*/
|
|
@@ -1277,16 +1427,18 @@ var _SubnetIPAddressLimitReachedException = class _SubnetIPAddressLimitReachedEx
|
|
|
1277
1427
|
$fault: "server",
|
|
1278
1428
|
...opts
|
|
1279
1429
|
});
|
|
1280
|
-
this.name = "SubnetIPAddressLimitReachedException";
|
|
1281
|
-
this.$fault = "server";
|
|
1282
1430
|
Object.setPrototypeOf(this, _SubnetIPAddressLimitReachedException.prototype);
|
|
1283
1431
|
this.Type = opts.Type;
|
|
1284
1432
|
this.Message = opts.Message;
|
|
1285
1433
|
}
|
|
1286
1434
|
};
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1435
|
+
var UnsupportedMediaTypeException = class _UnsupportedMediaTypeException extends LambdaServiceException {
|
|
1436
|
+
static {
|
|
1437
|
+
__name(this, "UnsupportedMediaTypeException");
|
|
1438
|
+
}
|
|
1439
|
+
name = "UnsupportedMediaTypeException";
|
|
1440
|
+
$fault = "client";
|
|
1441
|
+
Type;
|
|
1290
1442
|
/**
|
|
1291
1443
|
* @internal
|
|
1292
1444
|
*/
|
|
@@ -1296,14 +1448,10 @@ var _UnsupportedMediaTypeException = class _UnsupportedMediaTypeException extend
|
|
|
1296
1448
|
$fault: "client",
|
|
1297
1449
|
...opts
|
|
1298
1450
|
});
|
|
1299
|
-
this.name = "UnsupportedMediaTypeException";
|
|
1300
|
-
this.$fault = "client";
|
|
1301
1451
|
Object.setPrototypeOf(this, _UnsupportedMediaTypeException.prototype);
|
|
1302
1452
|
this.Type = opts.Type;
|
|
1303
1453
|
}
|
|
1304
1454
|
};
|
|
1305
|
-
__name(_UnsupportedMediaTypeException, "UnsupportedMediaTypeException");
|
|
1306
|
-
var UnsupportedMediaTypeException = _UnsupportedMediaTypeException;
|
|
1307
1455
|
var ResponseStreamingInvocationType = {
|
|
1308
1456
|
DryRun: "DryRun",
|
|
1309
1457
|
RequestResponse: "RequestResponse"
|
|
@@ -4642,511 +4790,547 @@ var _xalr = "x-amz-log-result";
|
|
|
4642
4790
|
var _xalt = "x-amz-log-type";
|
|
4643
4791
|
|
|
4644
4792
|
// src/commands/AddLayerVersionPermissionCommand.ts
|
|
4645
|
-
var
|
|
4793
|
+
var AddLayerVersionPermissionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4646
4794
|
return [
|
|
4647
4795
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4648
4796
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4649
4797
|
];
|
|
4650
4798
|
}).s("AWSGirApiService", "AddLayerVersionPermission", {}).n("LambdaClient", "AddLayerVersionPermissionCommand").f(void 0, void 0).ser(se_AddLayerVersionPermissionCommand).de(de_AddLayerVersionPermissionCommand).build() {
|
|
4799
|
+
static {
|
|
4800
|
+
__name(this, "AddLayerVersionPermissionCommand");
|
|
4801
|
+
}
|
|
4651
4802
|
};
|
|
4652
|
-
__name(_AddLayerVersionPermissionCommand, "AddLayerVersionPermissionCommand");
|
|
4653
|
-
var AddLayerVersionPermissionCommand = _AddLayerVersionPermissionCommand;
|
|
4654
4803
|
|
|
4655
4804
|
// src/commands/AddPermissionCommand.ts
|
|
4656
4805
|
|
|
4657
4806
|
|
|
4658
4807
|
|
|
4659
|
-
var
|
|
4808
|
+
var AddPermissionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4660
4809
|
return [
|
|
4661
4810
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4662
4811
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4663
4812
|
];
|
|
4664
4813
|
}).s("AWSGirApiService", "AddPermission", {}).n("LambdaClient", "AddPermissionCommand").f(void 0, void 0).ser(se_AddPermissionCommand).de(de_AddPermissionCommand).build() {
|
|
4814
|
+
static {
|
|
4815
|
+
__name(this, "AddPermissionCommand");
|
|
4816
|
+
}
|
|
4665
4817
|
};
|
|
4666
|
-
__name(_AddPermissionCommand, "AddPermissionCommand");
|
|
4667
|
-
var AddPermissionCommand = _AddPermissionCommand;
|
|
4668
4818
|
|
|
4669
4819
|
// src/commands/CreateAliasCommand.ts
|
|
4670
4820
|
|
|
4671
4821
|
|
|
4672
4822
|
|
|
4673
|
-
var
|
|
4823
|
+
var CreateAliasCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4674
4824
|
return [
|
|
4675
4825
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4676
4826
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4677
4827
|
];
|
|
4678
4828
|
}).s("AWSGirApiService", "CreateAlias", {}).n("LambdaClient", "CreateAliasCommand").f(void 0, void 0).ser(se_CreateAliasCommand).de(de_CreateAliasCommand).build() {
|
|
4829
|
+
static {
|
|
4830
|
+
__name(this, "CreateAliasCommand");
|
|
4831
|
+
}
|
|
4679
4832
|
};
|
|
4680
|
-
__name(_CreateAliasCommand, "CreateAliasCommand");
|
|
4681
|
-
var CreateAliasCommand = _CreateAliasCommand;
|
|
4682
4833
|
|
|
4683
4834
|
// src/commands/CreateCodeSigningConfigCommand.ts
|
|
4684
4835
|
|
|
4685
4836
|
|
|
4686
4837
|
|
|
4687
|
-
var
|
|
4838
|
+
var CreateCodeSigningConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4688
4839
|
return [
|
|
4689
4840
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4690
4841
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4691
4842
|
];
|
|
4692
4843
|
}).s("AWSGirApiService", "CreateCodeSigningConfig", {}).n("LambdaClient", "CreateCodeSigningConfigCommand").f(void 0, void 0).ser(se_CreateCodeSigningConfigCommand).de(de_CreateCodeSigningConfigCommand).build() {
|
|
4844
|
+
static {
|
|
4845
|
+
__name(this, "CreateCodeSigningConfigCommand");
|
|
4846
|
+
}
|
|
4693
4847
|
};
|
|
4694
|
-
__name(_CreateCodeSigningConfigCommand, "CreateCodeSigningConfigCommand");
|
|
4695
|
-
var CreateCodeSigningConfigCommand = _CreateCodeSigningConfigCommand;
|
|
4696
4848
|
|
|
4697
4849
|
// src/commands/CreateEventSourceMappingCommand.ts
|
|
4698
4850
|
|
|
4699
4851
|
|
|
4700
4852
|
|
|
4701
|
-
var
|
|
4853
|
+
var CreateEventSourceMappingCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4702
4854
|
return [
|
|
4703
4855
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4704
4856
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4705
4857
|
];
|
|
4706
4858
|
}).s("AWSGirApiService", "CreateEventSourceMapping", {}).n("LambdaClient", "CreateEventSourceMappingCommand").f(void 0, void 0).ser(se_CreateEventSourceMappingCommand).de(de_CreateEventSourceMappingCommand).build() {
|
|
4859
|
+
static {
|
|
4860
|
+
__name(this, "CreateEventSourceMappingCommand");
|
|
4861
|
+
}
|
|
4707
4862
|
};
|
|
4708
|
-
__name(_CreateEventSourceMappingCommand, "CreateEventSourceMappingCommand");
|
|
4709
|
-
var CreateEventSourceMappingCommand = _CreateEventSourceMappingCommand;
|
|
4710
4863
|
|
|
4711
4864
|
// src/commands/CreateFunctionCommand.ts
|
|
4712
4865
|
|
|
4713
4866
|
|
|
4714
4867
|
|
|
4715
|
-
var
|
|
4868
|
+
var CreateFunctionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4716
4869
|
return [
|
|
4717
4870
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4718
4871
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4719
4872
|
];
|
|
4720
4873
|
}).s("AWSGirApiService", "CreateFunction", {}).n("LambdaClient", "CreateFunctionCommand").f(CreateFunctionRequestFilterSensitiveLog, FunctionConfigurationFilterSensitiveLog).ser(se_CreateFunctionCommand).de(de_CreateFunctionCommand).build() {
|
|
4874
|
+
static {
|
|
4875
|
+
__name(this, "CreateFunctionCommand");
|
|
4876
|
+
}
|
|
4721
4877
|
};
|
|
4722
|
-
__name(_CreateFunctionCommand, "CreateFunctionCommand");
|
|
4723
|
-
var CreateFunctionCommand = _CreateFunctionCommand;
|
|
4724
4878
|
|
|
4725
4879
|
// src/commands/CreateFunctionUrlConfigCommand.ts
|
|
4726
4880
|
|
|
4727
4881
|
|
|
4728
4882
|
|
|
4729
|
-
var
|
|
4883
|
+
var CreateFunctionUrlConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4730
4884
|
return [
|
|
4731
4885
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4732
4886
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4733
4887
|
];
|
|
4734
4888
|
}).s("AWSGirApiService", "CreateFunctionUrlConfig", {}).n("LambdaClient", "CreateFunctionUrlConfigCommand").f(void 0, void 0).ser(se_CreateFunctionUrlConfigCommand).de(de_CreateFunctionUrlConfigCommand).build() {
|
|
4889
|
+
static {
|
|
4890
|
+
__name(this, "CreateFunctionUrlConfigCommand");
|
|
4891
|
+
}
|
|
4735
4892
|
};
|
|
4736
|
-
__name(_CreateFunctionUrlConfigCommand, "CreateFunctionUrlConfigCommand");
|
|
4737
|
-
var CreateFunctionUrlConfigCommand = _CreateFunctionUrlConfigCommand;
|
|
4738
4893
|
|
|
4739
4894
|
// src/commands/DeleteAliasCommand.ts
|
|
4740
4895
|
|
|
4741
4896
|
|
|
4742
4897
|
|
|
4743
|
-
var
|
|
4898
|
+
var DeleteAliasCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4744
4899
|
return [
|
|
4745
4900
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4746
4901
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4747
4902
|
];
|
|
4748
4903
|
}).s("AWSGirApiService", "DeleteAlias", {}).n("LambdaClient", "DeleteAliasCommand").f(void 0, void 0).ser(se_DeleteAliasCommand).de(de_DeleteAliasCommand).build() {
|
|
4904
|
+
static {
|
|
4905
|
+
__name(this, "DeleteAliasCommand");
|
|
4906
|
+
}
|
|
4749
4907
|
};
|
|
4750
|
-
__name(_DeleteAliasCommand, "DeleteAliasCommand");
|
|
4751
|
-
var DeleteAliasCommand = _DeleteAliasCommand;
|
|
4752
4908
|
|
|
4753
4909
|
// src/commands/DeleteCodeSigningConfigCommand.ts
|
|
4754
4910
|
|
|
4755
4911
|
|
|
4756
4912
|
|
|
4757
|
-
var
|
|
4913
|
+
var DeleteCodeSigningConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4758
4914
|
return [
|
|
4759
4915
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4760
4916
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4761
4917
|
];
|
|
4762
4918
|
}).s("AWSGirApiService", "DeleteCodeSigningConfig", {}).n("LambdaClient", "DeleteCodeSigningConfigCommand").f(void 0, void 0).ser(se_DeleteCodeSigningConfigCommand).de(de_DeleteCodeSigningConfigCommand).build() {
|
|
4919
|
+
static {
|
|
4920
|
+
__name(this, "DeleteCodeSigningConfigCommand");
|
|
4921
|
+
}
|
|
4763
4922
|
};
|
|
4764
|
-
__name(_DeleteCodeSigningConfigCommand, "DeleteCodeSigningConfigCommand");
|
|
4765
|
-
var DeleteCodeSigningConfigCommand = _DeleteCodeSigningConfigCommand;
|
|
4766
4923
|
|
|
4767
4924
|
// src/commands/DeleteEventSourceMappingCommand.ts
|
|
4768
4925
|
|
|
4769
4926
|
|
|
4770
4927
|
|
|
4771
|
-
var
|
|
4928
|
+
var DeleteEventSourceMappingCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4772
4929
|
return [
|
|
4773
4930
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4774
4931
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4775
4932
|
];
|
|
4776
4933
|
}).s("AWSGirApiService", "DeleteEventSourceMapping", {}).n("LambdaClient", "DeleteEventSourceMappingCommand").f(void 0, void 0).ser(se_DeleteEventSourceMappingCommand).de(de_DeleteEventSourceMappingCommand).build() {
|
|
4934
|
+
static {
|
|
4935
|
+
__name(this, "DeleteEventSourceMappingCommand");
|
|
4936
|
+
}
|
|
4777
4937
|
};
|
|
4778
|
-
__name(_DeleteEventSourceMappingCommand, "DeleteEventSourceMappingCommand");
|
|
4779
|
-
var DeleteEventSourceMappingCommand = _DeleteEventSourceMappingCommand;
|
|
4780
4938
|
|
|
4781
4939
|
// src/commands/DeleteFunctionCodeSigningConfigCommand.ts
|
|
4782
4940
|
|
|
4783
4941
|
|
|
4784
4942
|
|
|
4785
|
-
var
|
|
4943
|
+
var DeleteFunctionCodeSigningConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4786
4944
|
return [
|
|
4787
4945
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4788
4946
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4789
4947
|
];
|
|
4790
4948
|
}).s("AWSGirApiService", "DeleteFunctionCodeSigningConfig", {}).n("LambdaClient", "DeleteFunctionCodeSigningConfigCommand").f(void 0, void 0).ser(se_DeleteFunctionCodeSigningConfigCommand).de(de_DeleteFunctionCodeSigningConfigCommand).build() {
|
|
4949
|
+
static {
|
|
4950
|
+
__name(this, "DeleteFunctionCodeSigningConfigCommand");
|
|
4951
|
+
}
|
|
4791
4952
|
};
|
|
4792
|
-
__name(_DeleteFunctionCodeSigningConfigCommand, "DeleteFunctionCodeSigningConfigCommand");
|
|
4793
|
-
var DeleteFunctionCodeSigningConfigCommand = _DeleteFunctionCodeSigningConfigCommand;
|
|
4794
4953
|
|
|
4795
4954
|
// src/commands/DeleteFunctionCommand.ts
|
|
4796
4955
|
|
|
4797
4956
|
|
|
4798
4957
|
|
|
4799
|
-
var
|
|
4958
|
+
var DeleteFunctionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4800
4959
|
return [
|
|
4801
4960
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4802
4961
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4803
4962
|
];
|
|
4804
4963
|
}).s("AWSGirApiService", "DeleteFunction", {}).n("LambdaClient", "DeleteFunctionCommand").f(void 0, void 0).ser(se_DeleteFunctionCommand).de(de_DeleteFunctionCommand).build() {
|
|
4964
|
+
static {
|
|
4965
|
+
__name(this, "DeleteFunctionCommand");
|
|
4966
|
+
}
|
|
4805
4967
|
};
|
|
4806
|
-
__name(_DeleteFunctionCommand, "DeleteFunctionCommand");
|
|
4807
|
-
var DeleteFunctionCommand = _DeleteFunctionCommand;
|
|
4808
4968
|
|
|
4809
4969
|
// src/commands/DeleteFunctionConcurrencyCommand.ts
|
|
4810
4970
|
|
|
4811
4971
|
|
|
4812
4972
|
|
|
4813
|
-
var
|
|
4973
|
+
var DeleteFunctionConcurrencyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4814
4974
|
return [
|
|
4815
4975
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4816
4976
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4817
4977
|
];
|
|
4818
4978
|
}).s("AWSGirApiService", "DeleteFunctionConcurrency", {}).n("LambdaClient", "DeleteFunctionConcurrencyCommand").f(void 0, void 0).ser(se_DeleteFunctionConcurrencyCommand).de(de_DeleteFunctionConcurrencyCommand).build() {
|
|
4979
|
+
static {
|
|
4980
|
+
__name(this, "DeleteFunctionConcurrencyCommand");
|
|
4981
|
+
}
|
|
4819
4982
|
};
|
|
4820
|
-
__name(_DeleteFunctionConcurrencyCommand, "DeleteFunctionConcurrencyCommand");
|
|
4821
|
-
var DeleteFunctionConcurrencyCommand = _DeleteFunctionConcurrencyCommand;
|
|
4822
4983
|
|
|
4823
4984
|
// src/commands/DeleteFunctionEventInvokeConfigCommand.ts
|
|
4824
4985
|
|
|
4825
4986
|
|
|
4826
4987
|
|
|
4827
|
-
var
|
|
4988
|
+
var DeleteFunctionEventInvokeConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4828
4989
|
return [
|
|
4829
4990
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4830
4991
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4831
4992
|
];
|
|
4832
4993
|
}).s("AWSGirApiService", "DeleteFunctionEventInvokeConfig", {}).n("LambdaClient", "DeleteFunctionEventInvokeConfigCommand").f(void 0, void 0).ser(se_DeleteFunctionEventInvokeConfigCommand).de(de_DeleteFunctionEventInvokeConfigCommand).build() {
|
|
4994
|
+
static {
|
|
4995
|
+
__name(this, "DeleteFunctionEventInvokeConfigCommand");
|
|
4996
|
+
}
|
|
4833
4997
|
};
|
|
4834
|
-
__name(_DeleteFunctionEventInvokeConfigCommand, "DeleteFunctionEventInvokeConfigCommand");
|
|
4835
|
-
var DeleteFunctionEventInvokeConfigCommand = _DeleteFunctionEventInvokeConfigCommand;
|
|
4836
4998
|
|
|
4837
4999
|
// src/commands/DeleteFunctionUrlConfigCommand.ts
|
|
4838
5000
|
|
|
4839
5001
|
|
|
4840
5002
|
|
|
4841
|
-
var
|
|
5003
|
+
var DeleteFunctionUrlConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4842
5004
|
return [
|
|
4843
5005
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4844
5006
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4845
5007
|
];
|
|
4846
5008
|
}).s("AWSGirApiService", "DeleteFunctionUrlConfig", {}).n("LambdaClient", "DeleteFunctionUrlConfigCommand").f(void 0, void 0).ser(se_DeleteFunctionUrlConfigCommand).de(de_DeleteFunctionUrlConfigCommand).build() {
|
|
5009
|
+
static {
|
|
5010
|
+
__name(this, "DeleteFunctionUrlConfigCommand");
|
|
5011
|
+
}
|
|
4847
5012
|
};
|
|
4848
|
-
__name(_DeleteFunctionUrlConfigCommand, "DeleteFunctionUrlConfigCommand");
|
|
4849
|
-
var DeleteFunctionUrlConfigCommand = _DeleteFunctionUrlConfigCommand;
|
|
4850
5013
|
|
|
4851
5014
|
// src/commands/DeleteLayerVersionCommand.ts
|
|
4852
5015
|
|
|
4853
5016
|
|
|
4854
5017
|
|
|
4855
|
-
var
|
|
5018
|
+
var DeleteLayerVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4856
5019
|
return [
|
|
4857
5020
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4858
5021
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4859
5022
|
];
|
|
4860
5023
|
}).s("AWSGirApiService", "DeleteLayerVersion", {}).n("LambdaClient", "DeleteLayerVersionCommand").f(void 0, void 0).ser(se_DeleteLayerVersionCommand).de(de_DeleteLayerVersionCommand).build() {
|
|
5024
|
+
static {
|
|
5025
|
+
__name(this, "DeleteLayerVersionCommand");
|
|
5026
|
+
}
|
|
4861
5027
|
};
|
|
4862
|
-
__name(_DeleteLayerVersionCommand, "DeleteLayerVersionCommand");
|
|
4863
|
-
var DeleteLayerVersionCommand = _DeleteLayerVersionCommand;
|
|
4864
5028
|
|
|
4865
5029
|
// src/commands/DeleteProvisionedConcurrencyConfigCommand.ts
|
|
4866
5030
|
|
|
4867
5031
|
|
|
4868
5032
|
|
|
4869
|
-
var
|
|
5033
|
+
var DeleteProvisionedConcurrencyConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4870
5034
|
return [
|
|
4871
5035
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4872
5036
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4873
5037
|
];
|
|
4874
5038
|
}).s("AWSGirApiService", "DeleteProvisionedConcurrencyConfig", {}).n("LambdaClient", "DeleteProvisionedConcurrencyConfigCommand").f(void 0, void 0).ser(se_DeleteProvisionedConcurrencyConfigCommand).de(de_DeleteProvisionedConcurrencyConfigCommand).build() {
|
|
5039
|
+
static {
|
|
5040
|
+
__name(this, "DeleteProvisionedConcurrencyConfigCommand");
|
|
5041
|
+
}
|
|
4875
5042
|
};
|
|
4876
|
-
__name(_DeleteProvisionedConcurrencyConfigCommand, "DeleteProvisionedConcurrencyConfigCommand");
|
|
4877
|
-
var DeleteProvisionedConcurrencyConfigCommand = _DeleteProvisionedConcurrencyConfigCommand;
|
|
4878
5043
|
|
|
4879
5044
|
// src/commands/GetAccountSettingsCommand.ts
|
|
4880
5045
|
|
|
4881
5046
|
|
|
4882
5047
|
|
|
4883
|
-
var
|
|
5048
|
+
var GetAccountSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4884
5049
|
return [
|
|
4885
5050
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4886
5051
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4887
5052
|
];
|
|
4888
5053
|
}).s("AWSGirApiService", "GetAccountSettings", {}).n("LambdaClient", "GetAccountSettingsCommand").f(void 0, void 0).ser(se_GetAccountSettingsCommand).de(de_GetAccountSettingsCommand).build() {
|
|
5054
|
+
static {
|
|
5055
|
+
__name(this, "GetAccountSettingsCommand");
|
|
5056
|
+
}
|
|
4889
5057
|
};
|
|
4890
|
-
__name(_GetAccountSettingsCommand, "GetAccountSettingsCommand");
|
|
4891
|
-
var GetAccountSettingsCommand = _GetAccountSettingsCommand;
|
|
4892
5058
|
|
|
4893
5059
|
// src/commands/GetAliasCommand.ts
|
|
4894
5060
|
|
|
4895
5061
|
|
|
4896
5062
|
|
|
4897
|
-
var
|
|
5063
|
+
var GetAliasCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4898
5064
|
return [
|
|
4899
5065
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4900
5066
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4901
5067
|
];
|
|
4902
5068
|
}).s("AWSGirApiService", "GetAlias", {}).n("LambdaClient", "GetAliasCommand").f(void 0, void 0).ser(se_GetAliasCommand).de(de_GetAliasCommand).build() {
|
|
5069
|
+
static {
|
|
5070
|
+
__name(this, "GetAliasCommand");
|
|
5071
|
+
}
|
|
4903
5072
|
};
|
|
4904
|
-
__name(_GetAliasCommand, "GetAliasCommand");
|
|
4905
|
-
var GetAliasCommand = _GetAliasCommand;
|
|
4906
5073
|
|
|
4907
5074
|
// src/commands/GetCodeSigningConfigCommand.ts
|
|
4908
5075
|
|
|
4909
5076
|
|
|
4910
5077
|
|
|
4911
|
-
var
|
|
5078
|
+
var GetCodeSigningConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4912
5079
|
return [
|
|
4913
5080
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4914
5081
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4915
5082
|
];
|
|
4916
5083
|
}).s("AWSGirApiService", "GetCodeSigningConfig", {}).n("LambdaClient", "GetCodeSigningConfigCommand").f(void 0, void 0).ser(se_GetCodeSigningConfigCommand).de(de_GetCodeSigningConfigCommand).build() {
|
|
5084
|
+
static {
|
|
5085
|
+
__name(this, "GetCodeSigningConfigCommand");
|
|
5086
|
+
}
|
|
4917
5087
|
};
|
|
4918
|
-
__name(_GetCodeSigningConfigCommand, "GetCodeSigningConfigCommand");
|
|
4919
|
-
var GetCodeSigningConfigCommand = _GetCodeSigningConfigCommand;
|
|
4920
5088
|
|
|
4921
5089
|
// src/commands/GetEventSourceMappingCommand.ts
|
|
4922
5090
|
|
|
4923
5091
|
|
|
4924
5092
|
|
|
4925
|
-
var
|
|
5093
|
+
var GetEventSourceMappingCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4926
5094
|
return [
|
|
4927
5095
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4928
5096
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4929
5097
|
];
|
|
4930
5098
|
}).s("AWSGirApiService", "GetEventSourceMapping", {}).n("LambdaClient", "GetEventSourceMappingCommand").f(void 0, void 0).ser(se_GetEventSourceMappingCommand).de(de_GetEventSourceMappingCommand).build() {
|
|
5099
|
+
static {
|
|
5100
|
+
__name(this, "GetEventSourceMappingCommand");
|
|
5101
|
+
}
|
|
4931
5102
|
};
|
|
4932
|
-
__name(_GetEventSourceMappingCommand, "GetEventSourceMappingCommand");
|
|
4933
|
-
var GetEventSourceMappingCommand = _GetEventSourceMappingCommand;
|
|
4934
5103
|
|
|
4935
5104
|
// src/commands/GetFunctionCodeSigningConfigCommand.ts
|
|
4936
5105
|
|
|
4937
5106
|
|
|
4938
5107
|
|
|
4939
|
-
var
|
|
5108
|
+
var GetFunctionCodeSigningConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4940
5109
|
return [
|
|
4941
5110
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4942
5111
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4943
5112
|
];
|
|
4944
5113
|
}).s("AWSGirApiService", "GetFunctionCodeSigningConfig", {}).n("LambdaClient", "GetFunctionCodeSigningConfigCommand").f(void 0, void 0).ser(se_GetFunctionCodeSigningConfigCommand).de(de_GetFunctionCodeSigningConfigCommand).build() {
|
|
5114
|
+
static {
|
|
5115
|
+
__name(this, "GetFunctionCodeSigningConfigCommand");
|
|
5116
|
+
}
|
|
4945
5117
|
};
|
|
4946
|
-
__name(_GetFunctionCodeSigningConfigCommand, "GetFunctionCodeSigningConfigCommand");
|
|
4947
|
-
var GetFunctionCodeSigningConfigCommand = _GetFunctionCodeSigningConfigCommand;
|
|
4948
5118
|
|
|
4949
5119
|
// src/commands/GetFunctionCommand.ts
|
|
4950
5120
|
|
|
4951
5121
|
|
|
4952
5122
|
|
|
4953
|
-
var
|
|
5123
|
+
var GetFunctionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4954
5124
|
return [
|
|
4955
5125
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4956
5126
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4957
5127
|
];
|
|
4958
5128
|
}).s("AWSGirApiService", "GetFunction", {}).n("LambdaClient", "GetFunctionCommand").f(void 0, GetFunctionResponseFilterSensitiveLog).ser(se_GetFunctionCommand).de(de_GetFunctionCommand).build() {
|
|
5129
|
+
static {
|
|
5130
|
+
__name(this, "GetFunctionCommand");
|
|
5131
|
+
}
|
|
4959
5132
|
};
|
|
4960
|
-
__name(_GetFunctionCommand, "GetFunctionCommand");
|
|
4961
|
-
var GetFunctionCommand = _GetFunctionCommand;
|
|
4962
5133
|
|
|
4963
5134
|
// src/commands/GetFunctionConcurrencyCommand.ts
|
|
4964
5135
|
|
|
4965
5136
|
|
|
4966
5137
|
|
|
4967
|
-
var
|
|
5138
|
+
var GetFunctionConcurrencyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4968
5139
|
return [
|
|
4969
5140
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4970
5141
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4971
5142
|
];
|
|
4972
5143
|
}).s("AWSGirApiService", "GetFunctionConcurrency", {}).n("LambdaClient", "GetFunctionConcurrencyCommand").f(void 0, void 0).ser(se_GetFunctionConcurrencyCommand).de(de_GetFunctionConcurrencyCommand).build() {
|
|
5144
|
+
static {
|
|
5145
|
+
__name(this, "GetFunctionConcurrencyCommand");
|
|
5146
|
+
}
|
|
4973
5147
|
};
|
|
4974
|
-
__name(_GetFunctionConcurrencyCommand, "GetFunctionConcurrencyCommand");
|
|
4975
|
-
var GetFunctionConcurrencyCommand = _GetFunctionConcurrencyCommand;
|
|
4976
5148
|
|
|
4977
5149
|
// src/commands/GetFunctionConfigurationCommand.ts
|
|
4978
5150
|
|
|
4979
5151
|
|
|
4980
5152
|
|
|
4981
|
-
var
|
|
5153
|
+
var GetFunctionConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4982
5154
|
return [
|
|
4983
5155
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4984
5156
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4985
5157
|
];
|
|
4986
5158
|
}).s("AWSGirApiService", "GetFunctionConfiguration", {}).n("LambdaClient", "GetFunctionConfigurationCommand").f(void 0, FunctionConfigurationFilterSensitiveLog).ser(se_GetFunctionConfigurationCommand).de(de_GetFunctionConfigurationCommand).build() {
|
|
5159
|
+
static {
|
|
5160
|
+
__name(this, "GetFunctionConfigurationCommand");
|
|
5161
|
+
}
|
|
4987
5162
|
};
|
|
4988
|
-
__name(_GetFunctionConfigurationCommand, "GetFunctionConfigurationCommand");
|
|
4989
|
-
var GetFunctionConfigurationCommand = _GetFunctionConfigurationCommand;
|
|
4990
5163
|
|
|
4991
5164
|
// src/commands/GetFunctionEventInvokeConfigCommand.ts
|
|
4992
5165
|
|
|
4993
5166
|
|
|
4994
5167
|
|
|
4995
|
-
var
|
|
5168
|
+
var GetFunctionEventInvokeConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4996
5169
|
return [
|
|
4997
5170
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4998
5171
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4999
5172
|
];
|
|
5000
5173
|
}).s("AWSGirApiService", "GetFunctionEventInvokeConfig", {}).n("LambdaClient", "GetFunctionEventInvokeConfigCommand").f(void 0, void 0).ser(se_GetFunctionEventInvokeConfigCommand).de(de_GetFunctionEventInvokeConfigCommand).build() {
|
|
5174
|
+
static {
|
|
5175
|
+
__name(this, "GetFunctionEventInvokeConfigCommand");
|
|
5176
|
+
}
|
|
5001
5177
|
};
|
|
5002
|
-
__name(_GetFunctionEventInvokeConfigCommand, "GetFunctionEventInvokeConfigCommand");
|
|
5003
|
-
var GetFunctionEventInvokeConfigCommand = _GetFunctionEventInvokeConfigCommand;
|
|
5004
5178
|
|
|
5005
5179
|
// src/commands/GetFunctionRecursionConfigCommand.ts
|
|
5006
5180
|
|
|
5007
5181
|
|
|
5008
5182
|
|
|
5009
|
-
var
|
|
5183
|
+
var GetFunctionRecursionConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5010
5184
|
return [
|
|
5011
5185
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5012
5186
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5013
5187
|
];
|
|
5014
5188
|
}).s("AWSGirApiService", "GetFunctionRecursionConfig", {}).n("LambdaClient", "GetFunctionRecursionConfigCommand").f(void 0, void 0).ser(se_GetFunctionRecursionConfigCommand).de(de_GetFunctionRecursionConfigCommand).build() {
|
|
5189
|
+
static {
|
|
5190
|
+
__name(this, "GetFunctionRecursionConfigCommand");
|
|
5191
|
+
}
|
|
5015
5192
|
};
|
|
5016
|
-
__name(_GetFunctionRecursionConfigCommand, "GetFunctionRecursionConfigCommand");
|
|
5017
|
-
var GetFunctionRecursionConfigCommand = _GetFunctionRecursionConfigCommand;
|
|
5018
5193
|
|
|
5019
5194
|
// src/commands/GetFunctionUrlConfigCommand.ts
|
|
5020
5195
|
|
|
5021
5196
|
|
|
5022
5197
|
|
|
5023
|
-
var
|
|
5198
|
+
var GetFunctionUrlConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5024
5199
|
return [
|
|
5025
5200
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5026
5201
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5027
5202
|
];
|
|
5028
5203
|
}).s("AWSGirApiService", "GetFunctionUrlConfig", {}).n("LambdaClient", "GetFunctionUrlConfigCommand").f(void 0, void 0).ser(se_GetFunctionUrlConfigCommand).de(de_GetFunctionUrlConfigCommand).build() {
|
|
5204
|
+
static {
|
|
5205
|
+
__name(this, "GetFunctionUrlConfigCommand");
|
|
5206
|
+
}
|
|
5029
5207
|
};
|
|
5030
|
-
__name(_GetFunctionUrlConfigCommand, "GetFunctionUrlConfigCommand");
|
|
5031
|
-
var GetFunctionUrlConfigCommand = _GetFunctionUrlConfigCommand;
|
|
5032
5208
|
|
|
5033
5209
|
// src/commands/GetLayerVersionByArnCommand.ts
|
|
5034
5210
|
|
|
5035
5211
|
|
|
5036
5212
|
|
|
5037
|
-
var
|
|
5213
|
+
var GetLayerVersionByArnCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5038
5214
|
return [
|
|
5039
5215
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5040
5216
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5041
5217
|
];
|
|
5042
5218
|
}).s("AWSGirApiService", "GetLayerVersionByArn", {}).n("LambdaClient", "GetLayerVersionByArnCommand").f(void 0, void 0).ser(se_GetLayerVersionByArnCommand).de(de_GetLayerVersionByArnCommand).build() {
|
|
5219
|
+
static {
|
|
5220
|
+
__name(this, "GetLayerVersionByArnCommand");
|
|
5221
|
+
}
|
|
5043
5222
|
};
|
|
5044
|
-
__name(_GetLayerVersionByArnCommand, "GetLayerVersionByArnCommand");
|
|
5045
|
-
var GetLayerVersionByArnCommand = _GetLayerVersionByArnCommand;
|
|
5046
5223
|
|
|
5047
5224
|
// src/commands/GetLayerVersionCommand.ts
|
|
5048
5225
|
|
|
5049
5226
|
|
|
5050
5227
|
|
|
5051
|
-
var
|
|
5228
|
+
var GetLayerVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5052
5229
|
return [
|
|
5053
5230
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5054
5231
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5055
5232
|
];
|
|
5056
5233
|
}).s("AWSGirApiService", "GetLayerVersion", {}).n("LambdaClient", "GetLayerVersionCommand").f(void 0, void 0).ser(se_GetLayerVersionCommand).de(de_GetLayerVersionCommand).build() {
|
|
5234
|
+
static {
|
|
5235
|
+
__name(this, "GetLayerVersionCommand");
|
|
5236
|
+
}
|
|
5057
5237
|
};
|
|
5058
|
-
__name(_GetLayerVersionCommand, "GetLayerVersionCommand");
|
|
5059
|
-
var GetLayerVersionCommand = _GetLayerVersionCommand;
|
|
5060
5238
|
|
|
5061
5239
|
// src/commands/GetLayerVersionPolicyCommand.ts
|
|
5062
5240
|
|
|
5063
5241
|
|
|
5064
5242
|
|
|
5065
|
-
var
|
|
5243
|
+
var GetLayerVersionPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5066
5244
|
return [
|
|
5067
5245
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5068
5246
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5069
5247
|
];
|
|
5070
5248
|
}).s("AWSGirApiService", "GetLayerVersionPolicy", {}).n("LambdaClient", "GetLayerVersionPolicyCommand").f(void 0, void 0).ser(se_GetLayerVersionPolicyCommand).de(de_GetLayerVersionPolicyCommand).build() {
|
|
5249
|
+
static {
|
|
5250
|
+
__name(this, "GetLayerVersionPolicyCommand");
|
|
5251
|
+
}
|
|
5071
5252
|
};
|
|
5072
|
-
__name(_GetLayerVersionPolicyCommand, "GetLayerVersionPolicyCommand");
|
|
5073
|
-
var GetLayerVersionPolicyCommand = _GetLayerVersionPolicyCommand;
|
|
5074
5253
|
|
|
5075
5254
|
// src/commands/GetPolicyCommand.ts
|
|
5076
5255
|
|
|
5077
5256
|
|
|
5078
5257
|
|
|
5079
|
-
var
|
|
5258
|
+
var GetPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5080
5259
|
return [
|
|
5081
5260
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5082
5261
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5083
5262
|
];
|
|
5084
5263
|
}).s("AWSGirApiService", "GetPolicy", {}).n("LambdaClient", "GetPolicyCommand").f(void 0, void 0).ser(se_GetPolicyCommand).de(de_GetPolicyCommand).build() {
|
|
5264
|
+
static {
|
|
5265
|
+
__name(this, "GetPolicyCommand");
|
|
5266
|
+
}
|
|
5085
5267
|
};
|
|
5086
|
-
__name(_GetPolicyCommand, "GetPolicyCommand");
|
|
5087
|
-
var GetPolicyCommand = _GetPolicyCommand;
|
|
5088
5268
|
|
|
5089
5269
|
// src/commands/GetProvisionedConcurrencyConfigCommand.ts
|
|
5090
5270
|
|
|
5091
5271
|
|
|
5092
5272
|
|
|
5093
|
-
var
|
|
5273
|
+
var GetProvisionedConcurrencyConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5094
5274
|
return [
|
|
5095
5275
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5096
5276
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5097
5277
|
];
|
|
5098
5278
|
}).s("AWSGirApiService", "GetProvisionedConcurrencyConfig", {}).n("LambdaClient", "GetProvisionedConcurrencyConfigCommand").f(void 0, void 0).ser(se_GetProvisionedConcurrencyConfigCommand).de(de_GetProvisionedConcurrencyConfigCommand).build() {
|
|
5279
|
+
static {
|
|
5280
|
+
__name(this, "GetProvisionedConcurrencyConfigCommand");
|
|
5281
|
+
}
|
|
5099
5282
|
};
|
|
5100
|
-
__name(_GetProvisionedConcurrencyConfigCommand, "GetProvisionedConcurrencyConfigCommand");
|
|
5101
|
-
var GetProvisionedConcurrencyConfigCommand = _GetProvisionedConcurrencyConfigCommand;
|
|
5102
5283
|
|
|
5103
5284
|
// src/commands/GetRuntimeManagementConfigCommand.ts
|
|
5104
5285
|
|
|
5105
5286
|
|
|
5106
5287
|
|
|
5107
|
-
var
|
|
5288
|
+
var GetRuntimeManagementConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5108
5289
|
return [
|
|
5109
5290
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5110
5291
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5111
5292
|
];
|
|
5112
5293
|
}).s("AWSGirApiService", "GetRuntimeManagementConfig", {}).n("LambdaClient", "GetRuntimeManagementConfigCommand").f(void 0, void 0).ser(se_GetRuntimeManagementConfigCommand).de(de_GetRuntimeManagementConfigCommand).build() {
|
|
5294
|
+
static {
|
|
5295
|
+
__name(this, "GetRuntimeManagementConfigCommand");
|
|
5296
|
+
}
|
|
5113
5297
|
};
|
|
5114
|
-
__name(_GetRuntimeManagementConfigCommand, "GetRuntimeManagementConfigCommand");
|
|
5115
|
-
var GetRuntimeManagementConfigCommand = _GetRuntimeManagementConfigCommand;
|
|
5116
5298
|
|
|
5117
5299
|
// src/commands/InvokeAsyncCommand.ts
|
|
5118
5300
|
|
|
5119
5301
|
|
|
5120
5302
|
|
|
5121
|
-
var
|
|
5303
|
+
var InvokeAsyncCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5122
5304
|
return [
|
|
5123
5305
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5124
5306
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5125
5307
|
];
|
|
5126
5308
|
}).s("AWSGirApiService", "InvokeAsync", {}).n("LambdaClient", "InvokeAsyncCommand").f(InvokeAsyncRequestFilterSensitiveLog, void 0).ser(se_InvokeAsyncCommand).de(de_InvokeAsyncCommand).build() {
|
|
5309
|
+
static {
|
|
5310
|
+
__name(this, "InvokeAsyncCommand");
|
|
5311
|
+
}
|
|
5127
5312
|
};
|
|
5128
|
-
__name(_InvokeAsyncCommand, "InvokeAsyncCommand");
|
|
5129
|
-
var InvokeAsyncCommand = _InvokeAsyncCommand;
|
|
5130
5313
|
|
|
5131
5314
|
// src/commands/InvokeCommand.ts
|
|
5132
5315
|
|
|
5133
5316
|
|
|
5134
5317
|
|
|
5135
|
-
var
|
|
5318
|
+
var InvokeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5136
5319
|
return [
|
|
5137
5320
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5138
5321
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5139
5322
|
];
|
|
5140
5323
|
}).s("AWSGirApiService", "Invoke", {}).n("LambdaClient", "InvokeCommand").f(InvocationRequestFilterSensitiveLog, InvocationResponseFilterSensitiveLog).ser(se_InvokeCommand).de(de_InvokeCommand).build() {
|
|
5324
|
+
static {
|
|
5325
|
+
__name(this, "InvokeCommand");
|
|
5326
|
+
}
|
|
5141
5327
|
};
|
|
5142
|
-
__name(_InvokeCommand, "InvokeCommand");
|
|
5143
|
-
var InvokeCommand = _InvokeCommand;
|
|
5144
5328
|
|
|
5145
5329
|
// src/commands/InvokeWithResponseStreamCommand.ts
|
|
5146
5330
|
|
|
5147
5331
|
|
|
5148
5332
|
|
|
5149
|
-
var
|
|
5333
|
+
var InvokeWithResponseStreamCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5150
5334
|
return [
|
|
5151
5335
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5152
5336
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -5159,443 +5343,475 @@ var _InvokeWithResponseStreamCommand = class _InvokeWithResponseStreamCommand ex
|
|
|
5159
5343
|
output: true
|
|
5160
5344
|
}
|
|
5161
5345
|
}).n("LambdaClient", "InvokeWithResponseStreamCommand").f(InvokeWithResponseStreamRequestFilterSensitiveLog, InvokeWithResponseStreamResponseFilterSensitiveLog).ser(se_InvokeWithResponseStreamCommand).de(de_InvokeWithResponseStreamCommand).build() {
|
|
5346
|
+
static {
|
|
5347
|
+
__name(this, "InvokeWithResponseStreamCommand");
|
|
5348
|
+
}
|
|
5162
5349
|
};
|
|
5163
|
-
__name(_InvokeWithResponseStreamCommand, "InvokeWithResponseStreamCommand");
|
|
5164
|
-
var InvokeWithResponseStreamCommand = _InvokeWithResponseStreamCommand;
|
|
5165
5350
|
|
|
5166
5351
|
// src/commands/ListAliasesCommand.ts
|
|
5167
5352
|
|
|
5168
5353
|
|
|
5169
5354
|
|
|
5170
|
-
var
|
|
5355
|
+
var ListAliasesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5171
5356
|
return [
|
|
5172
5357
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5173
5358
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5174
5359
|
];
|
|
5175
5360
|
}).s("AWSGirApiService", "ListAliases", {}).n("LambdaClient", "ListAliasesCommand").f(void 0, void 0).ser(se_ListAliasesCommand).de(de_ListAliasesCommand).build() {
|
|
5361
|
+
static {
|
|
5362
|
+
__name(this, "ListAliasesCommand");
|
|
5363
|
+
}
|
|
5176
5364
|
};
|
|
5177
|
-
__name(_ListAliasesCommand, "ListAliasesCommand");
|
|
5178
|
-
var ListAliasesCommand = _ListAliasesCommand;
|
|
5179
5365
|
|
|
5180
5366
|
// src/commands/ListCodeSigningConfigsCommand.ts
|
|
5181
5367
|
|
|
5182
5368
|
|
|
5183
5369
|
|
|
5184
|
-
var
|
|
5370
|
+
var ListCodeSigningConfigsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5185
5371
|
return [
|
|
5186
5372
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5187
5373
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5188
5374
|
];
|
|
5189
5375
|
}).s("AWSGirApiService", "ListCodeSigningConfigs", {}).n("LambdaClient", "ListCodeSigningConfigsCommand").f(void 0, void 0).ser(se_ListCodeSigningConfigsCommand).de(de_ListCodeSigningConfigsCommand).build() {
|
|
5376
|
+
static {
|
|
5377
|
+
__name(this, "ListCodeSigningConfigsCommand");
|
|
5378
|
+
}
|
|
5190
5379
|
};
|
|
5191
|
-
__name(_ListCodeSigningConfigsCommand, "ListCodeSigningConfigsCommand");
|
|
5192
|
-
var ListCodeSigningConfigsCommand = _ListCodeSigningConfigsCommand;
|
|
5193
5380
|
|
|
5194
5381
|
// src/commands/ListEventSourceMappingsCommand.ts
|
|
5195
5382
|
|
|
5196
5383
|
|
|
5197
5384
|
|
|
5198
|
-
var
|
|
5385
|
+
var ListEventSourceMappingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5199
5386
|
return [
|
|
5200
5387
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5201
5388
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5202
5389
|
];
|
|
5203
5390
|
}).s("AWSGirApiService", "ListEventSourceMappings", {}).n("LambdaClient", "ListEventSourceMappingsCommand").f(void 0, void 0).ser(se_ListEventSourceMappingsCommand).de(de_ListEventSourceMappingsCommand).build() {
|
|
5391
|
+
static {
|
|
5392
|
+
__name(this, "ListEventSourceMappingsCommand");
|
|
5393
|
+
}
|
|
5204
5394
|
};
|
|
5205
|
-
__name(_ListEventSourceMappingsCommand, "ListEventSourceMappingsCommand");
|
|
5206
|
-
var ListEventSourceMappingsCommand = _ListEventSourceMappingsCommand;
|
|
5207
5395
|
|
|
5208
5396
|
// src/commands/ListFunctionEventInvokeConfigsCommand.ts
|
|
5209
5397
|
|
|
5210
5398
|
|
|
5211
5399
|
|
|
5212
|
-
var
|
|
5400
|
+
var ListFunctionEventInvokeConfigsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5213
5401
|
return [
|
|
5214
5402
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5215
5403
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5216
5404
|
];
|
|
5217
5405
|
}).s("AWSGirApiService", "ListFunctionEventInvokeConfigs", {}).n("LambdaClient", "ListFunctionEventInvokeConfigsCommand").f(void 0, void 0).ser(se_ListFunctionEventInvokeConfigsCommand).de(de_ListFunctionEventInvokeConfigsCommand).build() {
|
|
5406
|
+
static {
|
|
5407
|
+
__name(this, "ListFunctionEventInvokeConfigsCommand");
|
|
5408
|
+
}
|
|
5218
5409
|
};
|
|
5219
|
-
__name(_ListFunctionEventInvokeConfigsCommand, "ListFunctionEventInvokeConfigsCommand");
|
|
5220
|
-
var ListFunctionEventInvokeConfigsCommand = _ListFunctionEventInvokeConfigsCommand;
|
|
5221
5410
|
|
|
5222
5411
|
// src/commands/ListFunctionsByCodeSigningConfigCommand.ts
|
|
5223
5412
|
|
|
5224
5413
|
|
|
5225
5414
|
|
|
5226
|
-
var
|
|
5415
|
+
var ListFunctionsByCodeSigningConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5227
5416
|
return [
|
|
5228
5417
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5229
5418
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5230
5419
|
];
|
|
5231
5420
|
}).s("AWSGirApiService", "ListFunctionsByCodeSigningConfig", {}).n("LambdaClient", "ListFunctionsByCodeSigningConfigCommand").f(void 0, void 0).ser(se_ListFunctionsByCodeSigningConfigCommand).de(de_ListFunctionsByCodeSigningConfigCommand).build() {
|
|
5421
|
+
static {
|
|
5422
|
+
__name(this, "ListFunctionsByCodeSigningConfigCommand");
|
|
5423
|
+
}
|
|
5232
5424
|
};
|
|
5233
|
-
__name(_ListFunctionsByCodeSigningConfigCommand, "ListFunctionsByCodeSigningConfigCommand");
|
|
5234
|
-
var ListFunctionsByCodeSigningConfigCommand = _ListFunctionsByCodeSigningConfigCommand;
|
|
5235
5425
|
|
|
5236
5426
|
// src/commands/ListFunctionsCommand.ts
|
|
5237
5427
|
|
|
5238
5428
|
|
|
5239
5429
|
|
|
5240
|
-
var
|
|
5430
|
+
var ListFunctionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5241
5431
|
return [
|
|
5242
5432
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5243
5433
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5244
5434
|
];
|
|
5245
5435
|
}).s("AWSGirApiService", "ListFunctions", {}).n("LambdaClient", "ListFunctionsCommand").f(void 0, ListFunctionsResponseFilterSensitiveLog).ser(se_ListFunctionsCommand).de(de_ListFunctionsCommand).build() {
|
|
5436
|
+
static {
|
|
5437
|
+
__name(this, "ListFunctionsCommand");
|
|
5438
|
+
}
|
|
5246
5439
|
};
|
|
5247
|
-
__name(_ListFunctionsCommand, "ListFunctionsCommand");
|
|
5248
|
-
var ListFunctionsCommand = _ListFunctionsCommand;
|
|
5249
5440
|
|
|
5250
5441
|
// src/commands/ListFunctionUrlConfigsCommand.ts
|
|
5251
5442
|
|
|
5252
5443
|
|
|
5253
5444
|
|
|
5254
|
-
var
|
|
5445
|
+
var ListFunctionUrlConfigsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5255
5446
|
return [
|
|
5256
5447
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5257
5448
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5258
5449
|
];
|
|
5259
5450
|
}).s("AWSGirApiService", "ListFunctionUrlConfigs", {}).n("LambdaClient", "ListFunctionUrlConfigsCommand").f(void 0, void 0).ser(se_ListFunctionUrlConfigsCommand).de(de_ListFunctionUrlConfigsCommand).build() {
|
|
5451
|
+
static {
|
|
5452
|
+
__name(this, "ListFunctionUrlConfigsCommand");
|
|
5453
|
+
}
|
|
5260
5454
|
};
|
|
5261
|
-
__name(_ListFunctionUrlConfigsCommand, "ListFunctionUrlConfigsCommand");
|
|
5262
|
-
var ListFunctionUrlConfigsCommand = _ListFunctionUrlConfigsCommand;
|
|
5263
5455
|
|
|
5264
5456
|
// src/commands/ListLayersCommand.ts
|
|
5265
5457
|
|
|
5266
5458
|
|
|
5267
5459
|
|
|
5268
|
-
var
|
|
5460
|
+
var ListLayersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5269
5461
|
return [
|
|
5270
5462
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5271
5463
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5272
5464
|
];
|
|
5273
5465
|
}).s("AWSGirApiService", "ListLayers", {}).n("LambdaClient", "ListLayersCommand").f(void 0, void 0).ser(se_ListLayersCommand).de(de_ListLayersCommand).build() {
|
|
5466
|
+
static {
|
|
5467
|
+
__name(this, "ListLayersCommand");
|
|
5468
|
+
}
|
|
5274
5469
|
};
|
|
5275
|
-
__name(_ListLayersCommand, "ListLayersCommand");
|
|
5276
|
-
var ListLayersCommand = _ListLayersCommand;
|
|
5277
5470
|
|
|
5278
5471
|
// src/commands/ListLayerVersionsCommand.ts
|
|
5279
5472
|
|
|
5280
5473
|
|
|
5281
5474
|
|
|
5282
|
-
var
|
|
5475
|
+
var ListLayerVersionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5283
5476
|
return [
|
|
5284
5477
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5285
5478
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5286
5479
|
];
|
|
5287
5480
|
}).s("AWSGirApiService", "ListLayerVersions", {}).n("LambdaClient", "ListLayerVersionsCommand").f(void 0, void 0).ser(se_ListLayerVersionsCommand).de(de_ListLayerVersionsCommand).build() {
|
|
5481
|
+
static {
|
|
5482
|
+
__name(this, "ListLayerVersionsCommand");
|
|
5483
|
+
}
|
|
5288
5484
|
};
|
|
5289
|
-
__name(_ListLayerVersionsCommand, "ListLayerVersionsCommand");
|
|
5290
|
-
var ListLayerVersionsCommand = _ListLayerVersionsCommand;
|
|
5291
5485
|
|
|
5292
5486
|
// src/commands/ListProvisionedConcurrencyConfigsCommand.ts
|
|
5293
5487
|
|
|
5294
5488
|
|
|
5295
5489
|
|
|
5296
|
-
var
|
|
5490
|
+
var ListProvisionedConcurrencyConfigsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5297
5491
|
return [
|
|
5298
5492
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5299
5493
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5300
5494
|
];
|
|
5301
5495
|
}).s("AWSGirApiService", "ListProvisionedConcurrencyConfigs", {}).n("LambdaClient", "ListProvisionedConcurrencyConfigsCommand").f(void 0, void 0).ser(se_ListProvisionedConcurrencyConfigsCommand).de(de_ListProvisionedConcurrencyConfigsCommand).build() {
|
|
5496
|
+
static {
|
|
5497
|
+
__name(this, "ListProvisionedConcurrencyConfigsCommand");
|
|
5498
|
+
}
|
|
5302
5499
|
};
|
|
5303
|
-
__name(_ListProvisionedConcurrencyConfigsCommand, "ListProvisionedConcurrencyConfigsCommand");
|
|
5304
|
-
var ListProvisionedConcurrencyConfigsCommand = _ListProvisionedConcurrencyConfigsCommand;
|
|
5305
5500
|
|
|
5306
5501
|
// src/commands/ListTagsCommand.ts
|
|
5307
5502
|
|
|
5308
5503
|
|
|
5309
5504
|
|
|
5310
|
-
var
|
|
5505
|
+
var ListTagsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5311
5506
|
return [
|
|
5312
5507
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5313
5508
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5314
5509
|
];
|
|
5315
5510
|
}).s("AWSGirApiService", "ListTags", {}).n("LambdaClient", "ListTagsCommand").f(void 0, void 0).ser(se_ListTagsCommand).de(de_ListTagsCommand).build() {
|
|
5511
|
+
static {
|
|
5512
|
+
__name(this, "ListTagsCommand");
|
|
5513
|
+
}
|
|
5316
5514
|
};
|
|
5317
|
-
__name(_ListTagsCommand, "ListTagsCommand");
|
|
5318
|
-
var ListTagsCommand = _ListTagsCommand;
|
|
5319
5515
|
|
|
5320
5516
|
// src/commands/ListVersionsByFunctionCommand.ts
|
|
5321
5517
|
|
|
5322
5518
|
|
|
5323
5519
|
|
|
5324
|
-
var
|
|
5520
|
+
var ListVersionsByFunctionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5325
5521
|
return [
|
|
5326
5522
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5327
5523
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5328
5524
|
];
|
|
5329
5525
|
}).s("AWSGirApiService", "ListVersionsByFunction", {}).n("LambdaClient", "ListVersionsByFunctionCommand").f(void 0, ListVersionsByFunctionResponseFilterSensitiveLog).ser(se_ListVersionsByFunctionCommand).de(de_ListVersionsByFunctionCommand).build() {
|
|
5526
|
+
static {
|
|
5527
|
+
__name(this, "ListVersionsByFunctionCommand");
|
|
5528
|
+
}
|
|
5330
5529
|
};
|
|
5331
|
-
__name(_ListVersionsByFunctionCommand, "ListVersionsByFunctionCommand");
|
|
5332
|
-
var ListVersionsByFunctionCommand = _ListVersionsByFunctionCommand;
|
|
5333
5530
|
|
|
5334
5531
|
// src/commands/PublishLayerVersionCommand.ts
|
|
5335
5532
|
|
|
5336
5533
|
|
|
5337
5534
|
|
|
5338
|
-
var
|
|
5535
|
+
var PublishLayerVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5339
5536
|
return [
|
|
5340
5537
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5341
5538
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5342
5539
|
];
|
|
5343
5540
|
}).s("AWSGirApiService", "PublishLayerVersion", {}).n("LambdaClient", "PublishLayerVersionCommand").f(PublishLayerVersionRequestFilterSensitiveLog, void 0).ser(se_PublishLayerVersionCommand).de(de_PublishLayerVersionCommand).build() {
|
|
5541
|
+
static {
|
|
5542
|
+
__name(this, "PublishLayerVersionCommand");
|
|
5543
|
+
}
|
|
5344
5544
|
};
|
|
5345
|
-
__name(_PublishLayerVersionCommand, "PublishLayerVersionCommand");
|
|
5346
|
-
var PublishLayerVersionCommand = _PublishLayerVersionCommand;
|
|
5347
5545
|
|
|
5348
5546
|
// src/commands/PublishVersionCommand.ts
|
|
5349
5547
|
|
|
5350
5548
|
|
|
5351
5549
|
|
|
5352
|
-
var
|
|
5550
|
+
var PublishVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5353
5551
|
return [
|
|
5354
5552
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5355
5553
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5356
5554
|
];
|
|
5357
5555
|
}).s("AWSGirApiService", "PublishVersion", {}).n("LambdaClient", "PublishVersionCommand").f(void 0, FunctionConfigurationFilterSensitiveLog).ser(se_PublishVersionCommand).de(de_PublishVersionCommand).build() {
|
|
5556
|
+
static {
|
|
5557
|
+
__name(this, "PublishVersionCommand");
|
|
5558
|
+
}
|
|
5358
5559
|
};
|
|
5359
|
-
__name(_PublishVersionCommand, "PublishVersionCommand");
|
|
5360
|
-
var PublishVersionCommand = _PublishVersionCommand;
|
|
5361
5560
|
|
|
5362
5561
|
// src/commands/PutFunctionCodeSigningConfigCommand.ts
|
|
5363
5562
|
|
|
5364
5563
|
|
|
5365
5564
|
|
|
5366
|
-
var
|
|
5565
|
+
var PutFunctionCodeSigningConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5367
5566
|
return [
|
|
5368
5567
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5369
5568
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5370
5569
|
];
|
|
5371
5570
|
}).s("AWSGirApiService", "PutFunctionCodeSigningConfig", {}).n("LambdaClient", "PutFunctionCodeSigningConfigCommand").f(void 0, void 0).ser(se_PutFunctionCodeSigningConfigCommand).de(de_PutFunctionCodeSigningConfigCommand).build() {
|
|
5571
|
+
static {
|
|
5572
|
+
__name(this, "PutFunctionCodeSigningConfigCommand");
|
|
5573
|
+
}
|
|
5372
5574
|
};
|
|
5373
|
-
__name(_PutFunctionCodeSigningConfigCommand, "PutFunctionCodeSigningConfigCommand");
|
|
5374
|
-
var PutFunctionCodeSigningConfigCommand = _PutFunctionCodeSigningConfigCommand;
|
|
5375
5575
|
|
|
5376
5576
|
// src/commands/PutFunctionConcurrencyCommand.ts
|
|
5377
5577
|
|
|
5378
5578
|
|
|
5379
5579
|
|
|
5380
|
-
var
|
|
5580
|
+
var PutFunctionConcurrencyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5381
5581
|
return [
|
|
5382
5582
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5383
5583
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5384
5584
|
];
|
|
5385
5585
|
}).s("AWSGirApiService", "PutFunctionConcurrency", {}).n("LambdaClient", "PutFunctionConcurrencyCommand").f(void 0, void 0).ser(se_PutFunctionConcurrencyCommand).de(de_PutFunctionConcurrencyCommand).build() {
|
|
5586
|
+
static {
|
|
5587
|
+
__name(this, "PutFunctionConcurrencyCommand");
|
|
5588
|
+
}
|
|
5386
5589
|
};
|
|
5387
|
-
__name(_PutFunctionConcurrencyCommand, "PutFunctionConcurrencyCommand");
|
|
5388
|
-
var PutFunctionConcurrencyCommand = _PutFunctionConcurrencyCommand;
|
|
5389
5590
|
|
|
5390
5591
|
// src/commands/PutFunctionEventInvokeConfigCommand.ts
|
|
5391
5592
|
|
|
5392
5593
|
|
|
5393
5594
|
|
|
5394
|
-
var
|
|
5595
|
+
var PutFunctionEventInvokeConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5395
5596
|
return [
|
|
5396
5597
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5397
5598
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5398
5599
|
];
|
|
5399
5600
|
}).s("AWSGirApiService", "PutFunctionEventInvokeConfig", {}).n("LambdaClient", "PutFunctionEventInvokeConfigCommand").f(void 0, void 0).ser(se_PutFunctionEventInvokeConfigCommand).de(de_PutFunctionEventInvokeConfigCommand).build() {
|
|
5601
|
+
static {
|
|
5602
|
+
__name(this, "PutFunctionEventInvokeConfigCommand");
|
|
5603
|
+
}
|
|
5400
5604
|
};
|
|
5401
|
-
__name(_PutFunctionEventInvokeConfigCommand, "PutFunctionEventInvokeConfigCommand");
|
|
5402
|
-
var PutFunctionEventInvokeConfigCommand = _PutFunctionEventInvokeConfigCommand;
|
|
5403
5605
|
|
|
5404
5606
|
// src/commands/PutFunctionRecursionConfigCommand.ts
|
|
5405
5607
|
|
|
5406
5608
|
|
|
5407
5609
|
|
|
5408
|
-
var
|
|
5610
|
+
var PutFunctionRecursionConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5409
5611
|
return [
|
|
5410
5612
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5411
5613
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5412
5614
|
];
|
|
5413
5615
|
}).s("AWSGirApiService", "PutFunctionRecursionConfig", {}).n("LambdaClient", "PutFunctionRecursionConfigCommand").f(void 0, void 0).ser(se_PutFunctionRecursionConfigCommand).de(de_PutFunctionRecursionConfigCommand).build() {
|
|
5616
|
+
static {
|
|
5617
|
+
__name(this, "PutFunctionRecursionConfigCommand");
|
|
5618
|
+
}
|
|
5414
5619
|
};
|
|
5415
|
-
__name(_PutFunctionRecursionConfigCommand, "PutFunctionRecursionConfigCommand");
|
|
5416
|
-
var PutFunctionRecursionConfigCommand = _PutFunctionRecursionConfigCommand;
|
|
5417
5620
|
|
|
5418
5621
|
// src/commands/PutProvisionedConcurrencyConfigCommand.ts
|
|
5419
5622
|
|
|
5420
5623
|
|
|
5421
5624
|
|
|
5422
|
-
var
|
|
5625
|
+
var PutProvisionedConcurrencyConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5423
5626
|
return [
|
|
5424
5627
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5425
5628
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5426
5629
|
];
|
|
5427
5630
|
}).s("AWSGirApiService", "PutProvisionedConcurrencyConfig", {}).n("LambdaClient", "PutProvisionedConcurrencyConfigCommand").f(void 0, void 0).ser(se_PutProvisionedConcurrencyConfigCommand).de(de_PutProvisionedConcurrencyConfigCommand).build() {
|
|
5631
|
+
static {
|
|
5632
|
+
__name(this, "PutProvisionedConcurrencyConfigCommand");
|
|
5633
|
+
}
|
|
5428
5634
|
};
|
|
5429
|
-
__name(_PutProvisionedConcurrencyConfigCommand, "PutProvisionedConcurrencyConfigCommand");
|
|
5430
|
-
var PutProvisionedConcurrencyConfigCommand = _PutProvisionedConcurrencyConfigCommand;
|
|
5431
5635
|
|
|
5432
5636
|
// src/commands/PutRuntimeManagementConfigCommand.ts
|
|
5433
5637
|
|
|
5434
5638
|
|
|
5435
5639
|
|
|
5436
|
-
var
|
|
5640
|
+
var PutRuntimeManagementConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5437
5641
|
return [
|
|
5438
5642
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5439
5643
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5440
5644
|
];
|
|
5441
5645
|
}).s("AWSGirApiService", "PutRuntimeManagementConfig", {}).n("LambdaClient", "PutRuntimeManagementConfigCommand").f(void 0, void 0).ser(se_PutRuntimeManagementConfigCommand).de(de_PutRuntimeManagementConfigCommand).build() {
|
|
5646
|
+
static {
|
|
5647
|
+
__name(this, "PutRuntimeManagementConfigCommand");
|
|
5648
|
+
}
|
|
5442
5649
|
};
|
|
5443
|
-
__name(_PutRuntimeManagementConfigCommand, "PutRuntimeManagementConfigCommand");
|
|
5444
|
-
var PutRuntimeManagementConfigCommand = _PutRuntimeManagementConfigCommand;
|
|
5445
5650
|
|
|
5446
5651
|
// src/commands/RemoveLayerVersionPermissionCommand.ts
|
|
5447
5652
|
|
|
5448
5653
|
|
|
5449
5654
|
|
|
5450
|
-
var
|
|
5655
|
+
var RemoveLayerVersionPermissionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5451
5656
|
return [
|
|
5452
5657
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5453
5658
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5454
5659
|
];
|
|
5455
5660
|
}).s("AWSGirApiService", "RemoveLayerVersionPermission", {}).n("LambdaClient", "RemoveLayerVersionPermissionCommand").f(void 0, void 0).ser(se_RemoveLayerVersionPermissionCommand).de(de_RemoveLayerVersionPermissionCommand).build() {
|
|
5661
|
+
static {
|
|
5662
|
+
__name(this, "RemoveLayerVersionPermissionCommand");
|
|
5663
|
+
}
|
|
5456
5664
|
};
|
|
5457
|
-
__name(_RemoveLayerVersionPermissionCommand, "RemoveLayerVersionPermissionCommand");
|
|
5458
|
-
var RemoveLayerVersionPermissionCommand = _RemoveLayerVersionPermissionCommand;
|
|
5459
5665
|
|
|
5460
5666
|
// src/commands/RemovePermissionCommand.ts
|
|
5461
5667
|
|
|
5462
5668
|
|
|
5463
5669
|
|
|
5464
|
-
var
|
|
5670
|
+
var RemovePermissionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5465
5671
|
return [
|
|
5466
5672
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5467
5673
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5468
5674
|
];
|
|
5469
5675
|
}).s("AWSGirApiService", "RemovePermission", {}).n("LambdaClient", "RemovePermissionCommand").f(void 0, void 0).ser(se_RemovePermissionCommand).de(de_RemovePermissionCommand).build() {
|
|
5676
|
+
static {
|
|
5677
|
+
__name(this, "RemovePermissionCommand");
|
|
5678
|
+
}
|
|
5470
5679
|
};
|
|
5471
|
-
__name(_RemovePermissionCommand, "RemovePermissionCommand");
|
|
5472
|
-
var RemovePermissionCommand = _RemovePermissionCommand;
|
|
5473
5680
|
|
|
5474
5681
|
// src/commands/TagResourceCommand.ts
|
|
5475
5682
|
|
|
5476
5683
|
|
|
5477
5684
|
|
|
5478
|
-
var
|
|
5685
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5479
5686
|
return [
|
|
5480
5687
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5481
5688
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5482
5689
|
];
|
|
5483
5690
|
}).s("AWSGirApiService", "TagResource", {}).n("LambdaClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
5691
|
+
static {
|
|
5692
|
+
__name(this, "TagResourceCommand");
|
|
5693
|
+
}
|
|
5484
5694
|
};
|
|
5485
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
5486
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
5487
5695
|
|
|
5488
5696
|
// src/commands/UntagResourceCommand.ts
|
|
5489
5697
|
|
|
5490
5698
|
|
|
5491
5699
|
|
|
5492
|
-
var
|
|
5700
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5493
5701
|
return [
|
|
5494
5702
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5495
5703
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5496
5704
|
];
|
|
5497
5705
|
}).s("AWSGirApiService", "UntagResource", {}).n("LambdaClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
5706
|
+
static {
|
|
5707
|
+
__name(this, "UntagResourceCommand");
|
|
5708
|
+
}
|
|
5498
5709
|
};
|
|
5499
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
5500
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
5501
5710
|
|
|
5502
5711
|
// src/commands/UpdateAliasCommand.ts
|
|
5503
5712
|
|
|
5504
5713
|
|
|
5505
5714
|
|
|
5506
|
-
var
|
|
5715
|
+
var UpdateAliasCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5507
5716
|
return [
|
|
5508
5717
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5509
5718
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5510
5719
|
];
|
|
5511
5720
|
}).s("AWSGirApiService", "UpdateAlias", {}).n("LambdaClient", "UpdateAliasCommand").f(void 0, void 0).ser(se_UpdateAliasCommand).de(de_UpdateAliasCommand).build() {
|
|
5721
|
+
static {
|
|
5722
|
+
__name(this, "UpdateAliasCommand");
|
|
5723
|
+
}
|
|
5512
5724
|
};
|
|
5513
|
-
__name(_UpdateAliasCommand, "UpdateAliasCommand");
|
|
5514
|
-
var UpdateAliasCommand = _UpdateAliasCommand;
|
|
5515
5725
|
|
|
5516
5726
|
// src/commands/UpdateCodeSigningConfigCommand.ts
|
|
5517
5727
|
|
|
5518
5728
|
|
|
5519
5729
|
|
|
5520
|
-
var
|
|
5730
|
+
var UpdateCodeSigningConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5521
5731
|
return [
|
|
5522
5732
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5523
5733
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5524
5734
|
];
|
|
5525
5735
|
}).s("AWSGirApiService", "UpdateCodeSigningConfig", {}).n("LambdaClient", "UpdateCodeSigningConfigCommand").f(void 0, void 0).ser(se_UpdateCodeSigningConfigCommand).de(de_UpdateCodeSigningConfigCommand).build() {
|
|
5736
|
+
static {
|
|
5737
|
+
__name(this, "UpdateCodeSigningConfigCommand");
|
|
5738
|
+
}
|
|
5526
5739
|
};
|
|
5527
|
-
__name(_UpdateCodeSigningConfigCommand, "UpdateCodeSigningConfigCommand");
|
|
5528
|
-
var UpdateCodeSigningConfigCommand = _UpdateCodeSigningConfigCommand;
|
|
5529
5740
|
|
|
5530
5741
|
// src/commands/UpdateEventSourceMappingCommand.ts
|
|
5531
5742
|
|
|
5532
5743
|
|
|
5533
5744
|
|
|
5534
|
-
var
|
|
5745
|
+
var UpdateEventSourceMappingCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5535
5746
|
return [
|
|
5536
5747
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5537
5748
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5538
5749
|
];
|
|
5539
5750
|
}).s("AWSGirApiService", "UpdateEventSourceMapping", {}).n("LambdaClient", "UpdateEventSourceMappingCommand").f(void 0, void 0).ser(se_UpdateEventSourceMappingCommand).de(de_UpdateEventSourceMappingCommand).build() {
|
|
5751
|
+
static {
|
|
5752
|
+
__name(this, "UpdateEventSourceMappingCommand");
|
|
5753
|
+
}
|
|
5540
5754
|
};
|
|
5541
|
-
__name(_UpdateEventSourceMappingCommand, "UpdateEventSourceMappingCommand");
|
|
5542
|
-
var UpdateEventSourceMappingCommand = _UpdateEventSourceMappingCommand;
|
|
5543
5755
|
|
|
5544
5756
|
// src/commands/UpdateFunctionCodeCommand.ts
|
|
5545
5757
|
|
|
5546
5758
|
|
|
5547
5759
|
|
|
5548
|
-
var
|
|
5760
|
+
var UpdateFunctionCodeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5549
5761
|
return [
|
|
5550
5762
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5551
5763
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5552
5764
|
];
|
|
5553
5765
|
}).s("AWSGirApiService", "UpdateFunctionCode", {}).n("LambdaClient", "UpdateFunctionCodeCommand").f(UpdateFunctionCodeRequestFilterSensitiveLog, FunctionConfigurationFilterSensitiveLog).ser(se_UpdateFunctionCodeCommand).de(de_UpdateFunctionCodeCommand).build() {
|
|
5766
|
+
static {
|
|
5767
|
+
__name(this, "UpdateFunctionCodeCommand");
|
|
5768
|
+
}
|
|
5554
5769
|
};
|
|
5555
|
-
__name(_UpdateFunctionCodeCommand, "UpdateFunctionCodeCommand");
|
|
5556
|
-
var UpdateFunctionCodeCommand = _UpdateFunctionCodeCommand;
|
|
5557
5770
|
|
|
5558
5771
|
// src/commands/UpdateFunctionConfigurationCommand.ts
|
|
5559
5772
|
|
|
5560
5773
|
|
|
5561
5774
|
|
|
5562
|
-
var
|
|
5775
|
+
var UpdateFunctionConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5563
5776
|
return [
|
|
5564
5777
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5565
5778
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5566
5779
|
];
|
|
5567
5780
|
}).s("AWSGirApiService", "UpdateFunctionConfiguration", {}).n("LambdaClient", "UpdateFunctionConfigurationCommand").f(UpdateFunctionConfigurationRequestFilterSensitiveLog, FunctionConfigurationFilterSensitiveLog).ser(se_UpdateFunctionConfigurationCommand).de(de_UpdateFunctionConfigurationCommand).build() {
|
|
5781
|
+
static {
|
|
5782
|
+
__name(this, "UpdateFunctionConfigurationCommand");
|
|
5783
|
+
}
|
|
5568
5784
|
};
|
|
5569
|
-
__name(_UpdateFunctionConfigurationCommand, "UpdateFunctionConfigurationCommand");
|
|
5570
|
-
var UpdateFunctionConfigurationCommand = _UpdateFunctionConfigurationCommand;
|
|
5571
5785
|
|
|
5572
5786
|
// src/commands/UpdateFunctionEventInvokeConfigCommand.ts
|
|
5573
5787
|
|
|
5574
5788
|
|
|
5575
5789
|
|
|
5576
|
-
var
|
|
5790
|
+
var UpdateFunctionEventInvokeConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5577
5791
|
return [
|
|
5578
5792
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5579
5793
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5580
5794
|
];
|
|
5581
5795
|
}).s("AWSGirApiService", "UpdateFunctionEventInvokeConfig", {}).n("LambdaClient", "UpdateFunctionEventInvokeConfigCommand").f(void 0, void 0).ser(se_UpdateFunctionEventInvokeConfigCommand).de(de_UpdateFunctionEventInvokeConfigCommand).build() {
|
|
5796
|
+
static {
|
|
5797
|
+
__name(this, "UpdateFunctionEventInvokeConfigCommand");
|
|
5798
|
+
}
|
|
5582
5799
|
};
|
|
5583
|
-
__name(_UpdateFunctionEventInvokeConfigCommand, "UpdateFunctionEventInvokeConfigCommand");
|
|
5584
|
-
var UpdateFunctionEventInvokeConfigCommand = _UpdateFunctionEventInvokeConfigCommand;
|
|
5585
5800
|
|
|
5586
5801
|
// src/commands/UpdateFunctionUrlConfigCommand.ts
|
|
5587
5802
|
|
|
5588
5803
|
|
|
5589
5804
|
|
|
5590
|
-
var
|
|
5805
|
+
var UpdateFunctionUrlConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5591
5806
|
return [
|
|
5592
5807
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5593
5808
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5594
5809
|
];
|
|
5595
5810
|
}).s("AWSGirApiService", "UpdateFunctionUrlConfig", {}).n("LambdaClient", "UpdateFunctionUrlConfigCommand").f(void 0, void 0).ser(se_UpdateFunctionUrlConfigCommand).de(de_UpdateFunctionUrlConfigCommand).build() {
|
|
5811
|
+
static {
|
|
5812
|
+
__name(this, "UpdateFunctionUrlConfigCommand");
|
|
5813
|
+
}
|
|
5596
5814
|
};
|
|
5597
|
-
__name(_UpdateFunctionUrlConfigCommand, "UpdateFunctionUrlConfigCommand");
|
|
5598
|
-
var UpdateFunctionUrlConfigCommand = _UpdateFunctionUrlConfigCommand;
|
|
5599
5815
|
|
|
5600
5816
|
// src/Lambda.ts
|
|
5601
5817
|
var commands = {
|
|
@@ -5668,10 +5884,11 @@ var commands = {
|
|
|
5668
5884
|
UpdateFunctionEventInvokeConfigCommand,
|
|
5669
5885
|
UpdateFunctionUrlConfigCommand
|
|
5670
5886
|
};
|
|
5671
|
-
var
|
|
5887
|
+
var Lambda = class extends LambdaClient {
|
|
5888
|
+
static {
|
|
5889
|
+
__name(this, "Lambda");
|
|
5890
|
+
}
|
|
5672
5891
|
};
|
|
5673
|
-
__name(_Lambda, "Lambda");
|
|
5674
|
-
var Lambda = _Lambda;
|
|
5675
5892
|
(0, import_smithy_client.createAggregatedClient)(commands, Lambda);
|
|
5676
5893
|
|
|
5677
5894
|
// src/pagination/ListAliasesPaginator.ts
|