projen-pipelines 0.1.1 → 0.2.1
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/.jsii +813 -644
- package/API.md +692 -370
- package/integ/existing/LICENSE +202 -0
- package/integ/existing/README.md +1 -0
- package/integ/existing/cdk.json +22 -0
- package/integ/existing/package.json +102 -0
- package/lib/awscdk/base.d.ts +42 -8
- package/lib/awscdk/base.js +117 -36
- package/lib/awscdk/bash.js +14 -17
- package/lib/awscdk/codecatalyst.d.ts +0 -17
- package/lib/awscdk/codecatalyst.js +23 -27
- package/lib/awscdk/github.d.ts +0 -21
- package/lib/awscdk/github.js +15 -65
- package/lib/awscdk/gitlab.d.ts +0 -27
- package/lib/awscdk/gitlab.js +35 -78
- package/lib/steps/artifact-steps.js +2 -2
- package/lib/steps/aws-assume-role.step.d.ts +3 -1
- package/lib/steps/aws-assume-role.step.js +17 -2
- package/lib/steps/registries.d.ts +11 -1
- package/lib/steps/registries.js +21 -4
- package/lib/steps/set-env.step.d.ts +14 -0
- package/lib/steps/set-env.step.js +44 -0
- package/lib/steps/step.d.ts +30 -0
- package/lib/steps/step.js +112 -6
- package/package.json +1 -1
package/.jsii
CHANGED
|
@@ -161,6 +161,42 @@
|
|
|
161
161
|
"line": 21
|
|
162
162
|
},
|
|
163
163
|
"methods": [
|
|
164
|
+
{
|
|
165
|
+
"docs": {
|
|
166
|
+
"remarks": "Should be implemented by subclasses.",
|
|
167
|
+
"stability": "stable",
|
|
168
|
+
"summary": "Generates a configuration for a bash script step."
|
|
169
|
+
},
|
|
170
|
+
"locationInModule": {
|
|
171
|
+
"filename": "src/steps/aws-assume-role.step.ts",
|
|
172
|
+
"line": 59
|
|
173
|
+
},
|
|
174
|
+
"name": "toBash",
|
|
175
|
+
"overrides": "projen-pipelines.PipelineStep",
|
|
176
|
+
"returns": {
|
|
177
|
+
"type": {
|
|
178
|
+
"fqn": "projen-pipelines.BashStepConfig"
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"docs": {
|
|
184
|
+
"remarks": "Should be implemented by subclasses.",
|
|
185
|
+
"stability": "stable",
|
|
186
|
+
"summary": "Generates a configuration for a CodeCatalyst Actions step."
|
|
187
|
+
},
|
|
188
|
+
"locationInModule": {
|
|
189
|
+
"filename": "src/steps/aws-assume-role.step.ts",
|
|
190
|
+
"line": 67
|
|
191
|
+
},
|
|
192
|
+
"name": "toCodeCatalyst",
|
|
193
|
+
"overrides": "projen-pipelines.PipelineStep",
|
|
194
|
+
"returns": {
|
|
195
|
+
"type": {
|
|
196
|
+
"fqn": "projen-pipelines.CodeCatalystStepConfig"
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
},
|
|
164
200
|
{
|
|
165
201
|
"docs": {
|
|
166
202
|
"remarks": "Should be implemented by subclasses.",
|
|
@@ -311,7 +347,7 @@
|
|
|
311
347
|
},
|
|
312
348
|
"locationInModule": {
|
|
313
349
|
"filename": "src/awscdk/bash.ts",
|
|
314
|
-
"line":
|
|
350
|
+
"line": 76
|
|
315
351
|
},
|
|
316
352
|
"name": "engineType",
|
|
317
353
|
"overrides": "projen-pipelines.CDKPipeline",
|
|
@@ -354,7 +390,7 @@
|
|
|
354
390
|
"kind": "interface",
|
|
355
391
|
"locationInModule": {
|
|
356
392
|
"filename": "src/steps/step.ts",
|
|
357
|
-
"line":
|
|
393
|
+
"line": 61
|
|
358
394
|
},
|
|
359
395
|
"name": "BashStepConfig",
|
|
360
396
|
"properties": [
|
|
@@ -367,7 +403,7 @@
|
|
|
367
403
|
"immutable": true,
|
|
368
404
|
"locationInModule": {
|
|
369
405
|
"filename": "src/steps/step.ts",
|
|
370
|
-
"line":
|
|
406
|
+
"line": 64
|
|
371
407
|
},
|
|
372
408
|
"name": "commands",
|
|
373
409
|
"type": {
|
|
@@ -398,7 +434,7 @@
|
|
|
398
434
|
},
|
|
399
435
|
"locationInModule": {
|
|
400
436
|
"filename": "src/awscdk/base.ts",
|
|
401
|
-
"line":
|
|
437
|
+
"line": 183
|
|
402
438
|
},
|
|
403
439
|
"parameters": [
|
|
404
440
|
{
|
|
@@ -418,7 +454,7 @@
|
|
|
418
454
|
"kind": "class",
|
|
419
455
|
"locationInModule": {
|
|
420
456
|
"filename": "src/awscdk/base.ts",
|
|
421
|
-
"line":
|
|
457
|
+
"line": 179
|
|
422
458
|
},
|
|
423
459
|
"methods": [
|
|
424
460
|
{
|
|
@@ -428,7 +464,7 @@
|
|
|
428
464
|
},
|
|
429
465
|
"locationInModule": {
|
|
430
466
|
"filename": "src/awscdk/base.ts",
|
|
431
|
-
"line":
|
|
467
|
+
"line": 360
|
|
432
468
|
},
|
|
433
469
|
"name": "createApplicationEntrypoint",
|
|
434
470
|
"protected": true
|
|
@@ -440,7 +476,7 @@
|
|
|
440
476
|
},
|
|
441
477
|
"locationInModule": {
|
|
442
478
|
"filename": "src/awscdk/base.ts",
|
|
443
|
-
"line":
|
|
479
|
+
"line": 529
|
|
444
480
|
},
|
|
445
481
|
"name": "createFeatureStage",
|
|
446
482
|
"protected": true
|
|
@@ -452,7 +488,7 @@
|
|
|
452
488
|
},
|
|
453
489
|
"locationInModule": {
|
|
454
490
|
"filename": "src/awscdk/base.ts",
|
|
455
|
-
"line":
|
|
491
|
+
"line": 574
|
|
456
492
|
},
|
|
457
493
|
"name": "createIndependentStage",
|
|
458
494
|
"parameters": [
|
|
@@ -475,7 +511,7 @@
|
|
|
475
511
|
},
|
|
476
512
|
"locationInModule": {
|
|
477
513
|
"filename": "src/awscdk/base.ts",
|
|
478
|
-
"line":
|
|
514
|
+
"line": 506
|
|
479
515
|
},
|
|
480
516
|
"name": "createPersonalStage",
|
|
481
517
|
"protected": true
|
|
@@ -487,7 +523,7 @@
|
|
|
487
523
|
},
|
|
488
524
|
"locationInModule": {
|
|
489
525
|
"filename": "src/awscdk/base.ts",
|
|
490
|
-
"line":
|
|
526
|
+
"line": 552
|
|
491
527
|
},
|
|
492
528
|
"name": "createPipelineStage",
|
|
493
529
|
"parameters": [
|
|
@@ -510,7 +546,7 @@
|
|
|
510
546
|
},
|
|
511
547
|
"locationInModule": {
|
|
512
548
|
"filename": "src/awscdk/base.ts",
|
|
513
|
-
"line":
|
|
549
|
+
"line": 458
|
|
514
550
|
},
|
|
515
551
|
"name": "createReleaseTasks",
|
|
516
552
|
"protected": true
|
|
@@ -521,7 +557,7 @@
|
|
|
521
557
|
},
|
|
522
558
|
"locationInModule": {
|
|
523
559
|
"filename": "src/awscdk/base.ts",
|
|
524
|
-
"line":
|
|
560
|
+
"line": 346
|
|
525
561
|
},
|
|
526
562
|
"name": "createSafeStageName",
|
|
527
563
|
"parameters": [
|
|
@@ -546,7 +582,7 @@
|
|
|
546
582
|
},
|
|
547
583
|
"locationInModule": {
|
|
548
584
|
"filename": "src/awscdk/base.ts",
|
|
549
|
-
"line":
|
|
585
|
+
"line": 231
|
|
550
586
|
},
|
|
551
587
|
"name": "engineType",
|
|
552
588
|
"returns": {
|
|
@@ -561,7 +597,7 @@
|
|
|
561
597
|
},
|
|
562
598
|
"locationInModule": {
|
|
563
599
|
"filename": "src/awscdk/base.ts",
|
|
564
|
-
"line":
|
|
600
|
+
"line": 592
|
|
565
601
|
},
|
|
566
602
|
"name": "getCliStackPattern",
|
|
567
603
|
"parameters": [
|
|
@@ -585,18 +621,13 @@
|
|
|
585
621
|
},
|
|
586
622
|
"locationInModule": {
|
|
587
623
|
"filename": "src/awscdk/base.ts",
|
|
588
|
-
"line":
|
|
624
|
+
"line": 296
|
|
589
625
|
},
|
|
590
|
-
"name": "
|
|
626
|
+
"name": "provideAssemblyUploadStep",
|
|
591
627
|
"protected": true,
|
|
592
628
|
"returns": {
|
|
593
629
|
"type": {
|
|
594
|
-
"
|
|
595
|
-
"elementtype": {
|
|
596
|
-
"primitive": "string"
|
|
597
|
-
},
|
|
598
|
-
"kind": "array"
|
|
599
|
-
}
|
|
630
|
+
"fqn": "projen-pipelines.PipelineStep"
|
|
600
631
|
}
|
|
601
632
|
}
|
|
602
633
|
},
|
|
@@ -606,9 +637,9 @@
|
|
|
606
637
|
},
|
|
607
638
|
"locationInModule": {
|
|
608
639
|
"filename": "src/awscdk/base.ts",
|
|
609
|
-
"line":
|
|
640
|
+
"line": 265
|
|
610
641
|
},
|
|
611
|
-
"name": "
|
|
642
|
+
"name": "provideAssetUploadStep",
|
|
612
643
|
"parameters": [
|
|
613
644
|
{
|
|
614
645
|
"name": "stageName",
|
|
@@ -621,12 +652,7 @@
|
|
|
621
652
|
"protected": true,
|
|
622
653
|
"returns": {
|
|
623
654
|
"type": {
|
|
624
|
-
"
|
|
625
|
-
"elementtype": {
|
|
626
|
-
"primitive": "string"
|
|
627
|
-
},
|
|
628
|
-
"kind": "array"
|
|
629
|
-
}
|
|
655
|
+
"fqn": "projen-pipelines.PipelineStep"
|
|
630
656
|
}
|
|
631
657
|
}
|
|
632
658
|
},
|
|
@@ -636,26 +662,21 @@
|
|
|
636
662
|
},
|
|
637
663
|
"locationInModule": {
|
|
638
664
|
"filename": "src/awscdk/base.ts",
|
|
639
|
-
"line":
|
|
665
|
+
"line": 303
|
|
640
666
|
},
|
|
641
|
-
"name": "
|
|
667
|
+
"name": "provideDeployStep",
|
|
642
668
|
"parameters": [
|
|
643
669
|
{
|
|
644
|
-
"name": "
|
|
670
|
+
"name": "stage",
|
|
645
671
|
"type": {
|
|
646
|
-
"
|
|
672
|
+
"fqn": "projen-pipelines.NamedStageOptions"
|
|
647
673
|
}
|
|
648
674
|
}
|
|
649
675
|
],
|
|
650
676
|
"protected": true,
|
|
651
677
|
"returns": {
|
|
652
678
|
"type": {
|
|
653
|
-
"
|
|
654
|
-
"elementtype": {
|
|
655
|
-
"primitive": "string"
|
|
656
|
-
},
|
|
657
|
-
"kind": "array"
|
|
658
|
-
}
|
|
679
|
+
"fqn": "projen-pipelines.PipelineStep"
|
|
659
680
|
}
|
|
660
681
|
}
|
|
661
682
|
},
|
|
@@ -665,26 +686,28 @@
|
|
|
665
686
|
},
|
|
666
687
|
"locationInModule": {
|
|
667
688
|
"filename": "src/awscdk/base.ts",
|
|
668
|
-
"line":
|
|
689
|
+
"line": 314
|
|
669
690
|
},
|
|
670
|
-
"name": "
|
|
691
|
+
"name": "provideDiffStep",
|
|
671
692
|
"parameters": [
|
|
672
693
|
{
|
|
673
|
-
"name": "
|
|
694
|
+
"name": "stage",
|
|
674
695
|
"type": {
|
|
675
|
-
"
|
|
696
|
+
"fqn": "projen-pipelines.NamedStageOptions"
|
|
697
|
+
}
|
|
698
|
+
},
|
|
699
|
+
{
|
|
700
|
+
"name": "fast",
|
|
701
|
+
"optional": true,
|
|
702
|
+
"type": {
|
|
703
|
+
"primitive": "boolean"
|
|
676
704
|
}
|
|
677
705
|
}
|
|
678
706
|
],
|
|
679
707
|
"protected": true,
|
|
680
708
|
"returns": {
|
|
681
709
|
"type": {
|
|
682
|
-
"
|
|
683
|
-
"elementtype": {
|
|
684
|
-
"primitive": "string"
|
|
685
|
-
},
|
|
686
|
-
"kind": "array"
|
|
687
|
-
}
|
|
710
|
+
"fqn": "projen-pipelines.PipelineStep"
|
|
688
711
|
}
|
|
689
712
|
}
|
|
690
713
|
},
|
|
@@ -694,18 +717,29 @@
|
|
|
694
717
|
},
|
|
695
718
|
"locationInModule": {
|
|
696
719
|
"filename": "src/awscdk/base.ts",
|
|
697
|
-
"line":
|
|
720
|
+
"line": 233
|
|
698
721
|
},
|
|
699
|
-
"name": "
|
|
722
|
+
"name": "provideInstallStep",
|
|
700
723
|
"protected": true,
|
|
701
724
|
"returns": {
|
|
702
725
|
"type": {
|
|
703
|
-
"
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
726
|
+
"fqn": "projen-pipelines.PipelineStep"
|
|
727
|
+
}
|
|
728
|
+
}
|
|
729
|
+
},
|
|
730
|
+
{
|
|
731
|
+
"docs": {
|
|
732
|
+
"stability": "stable"
|
|
733
|
+
},
|
|
734
|
+
"locationInModule": {
|
|
735
|
+
"filename": "src/awscdk/base.ts",
|
|
736
|
+
"line": 242
|
|
737
|
+
},
|
|
738
|
+
"name": "provideSynthStep",
|
|
739
|
+
"protected": true,
|
|
740
|
+
"returns": {
|
|
741
|
+
"type": {
|
|
742
|
+
"fqn": "projen-pipelines.PipelineStep"
|
|
709
743
|
}
|
|
710
744
|
}
|
|
711
745
|
},
|
|
@@ -715,7 +749,7 @@
|
|
|
715
749
|
},
|
|
716
750
|
"locationInModule": {
|
|
717
751
|
"filename": "src/awscdk/base.ts",
|
|
718
|
-
"line":
|
|
752
|
+
"line": 327
|
|
719
753
|
},
|
|
720
754
|
"name": "renderInstallPackageCommands",
|
|
721
755
|
"parameters": [
|
|
@@ -744,27 +778,6 @@
|
|
|
744
778
|
}
|
|
745
779
|
}
|
|
746
780
|
}
|
|
747
|
-
},
|
|
748
|
-
{
|
|
749
|
-
"docs": {
|
|
750
|
-
"stability": "stable"
|
|
751
|
-
},
|
|
752
|
-
"locationInModule": {
|
|
753
|
-
"filename": "src/awscdk/base.ts",
|
|
754
|
-
"line": 228
|
|
755
|
-
},
|
|
756
|
-
"name": "renderSynthCommands",
|
|
757
|
-
"protected": true,
|
|
758
|
-
"returns": {
|
|
759
|
-
"type": {
|
|
760
|
-
"collection": {
|
|
761
|
-
"elementtype": {
|
|
762
|
-
"primitive": "string"
|
|
763
|
-
},
|
|
764
|
-
"kind": "array"
|
|
765
|
-
}
|
|
766
|
-
}
|
|
767
|
-
}
|
|
768
781
|
}
|
|
769
782
|
],
|
|
770
783
|
"name": "CDKPipeline",
|
|
@@ -776,7 +789,7 @@
|
|
|
776
789
|
"immutable": true,
|
|
777
790
|
"locationInModule": {
|
|
778
791
|
"filename": "src/awscdk/base.ts",
|
|
779
|
-
"line":
|
|
792
|
+
"line": 181
|
|
780
793
|
},
|
|
781
794
|
"name": "branchName",
|
|
782
795
|
"type": {
|
|
@@ -790,7 +803,7 @@
|
|
|
790
803
|
"immutable": true,
|
|
791
804
|
"locationInModule": {
|
|
792
805
|
"filename": "src/awscdk/base.ts",
|
|
793
|
-
"line":
|
|
806
|
+
"line": 180
|
|
794
807
|
},
|
|
795
808
|
"name": "stackPrefix",
|
|
796
809
|
"type": {
|
|
@@ -803,7 +816,7 @@
|
|
|
803
816
|
},
|
|
804
817
|
"locationInModule": {
|
|
805
818
|
"filename": "src/awscdk/base.ts",
|
|
806
|
-
"line":
|
|
819
|
+
"line": 183
|
|
807
820
|
},
|
|
808
821
|
"name": "app",
|
|
809
822
|
"protected": true,
|
|
@@ -817,7 +830,7 @@
|
|
|
817
830
|
},
|
|
818
831
|
"locationInModule": {
|
|
819
832
|
"filename": "src/awscdk/base.ts",
|
|
820
|
-
"line":
|
|
833
|
+
"line": 183
|
|
821
834
|
},
|
|
822
835
|
"name": "baseOptions",
|
|
823
836
|
"protected": true,
|
|
@@ -840,10 +853,26 @@
|
|
|
840
853
|
"kind": "interface",
|
|
841
854
|
"locationInModule": {
|
|
842
855
|
"filename": "src/awscdk/base.ts",
|
|
843
|
-
"line":
|
|
856
|
+
"line": 109
|
|
844
857
|
},
|
|
845
858
|
"name": "CDKPipelineOptions",
|
|
846
859
|
"properties": [
|
|
860
|
+
{
|
|
861
|
+
"abstract": true,
|
|
862
|
+
"docs": {
|
|
863
|
+
"stability": "stable",
|
|
864
|
+
"summary": "IAM config."
|
|
865
|
+
},
|
|
866
|
+
"immutable": true,
|
|
867
|
+
"locationInModule": {
|
|
868
|
+
"filename": "src/awscdk/base.ts",
|
|
869
|
+
"line": 141
|
|
870
|
+
},
|
|
871
|
+
"name": "iamRoleArns",
|
|
872
|
+
"type": {
|
|
873
|
+
"fqn": "projen-pipelines.IamRoleConfig"
|
|
874
|
+
}
|
|
875
|
+
},
|
|
847
876
|
{
|
|
848
877
|
"abstract": true,
|
|
849
878
|
"docs": {
|
|
@@ -854,7 +883,7 @@
|
|
|
854
883
|
"immutable": true,
|
|
855
884
|
"locationInModule": {
|
|
856
885
|
"filename": "src/awscdk/base.ts",
|
|
857
|
-
"line":
|
|
886
|
+
"line": 138
|
|
858
887
|
},
|
|
859
888
|
"name": "pkgNamespace",
|
|
860
889
|
"type": {
|
|
@@ -870,7 +899,7 @@
|
|
|
870
899
|
"immutable": true,
|
|
871
900
|
"locationInModule": {
|
|
872
901
|
"filename": "src/awscdk/base.ts",
|
|
873
|
-
"line":
|
|
902
|
+
"line": 146
|
|
874
903
|
},
|
|
875
904
|
"name": "stages",
|
|
876
905
|
"type": {
|
|
@@ -892,7 +921,7 @@
|
|
|
892
921
|
"immutable": true,
|
|
893
922
|
"locationInModule": {
|
|
894
923
|
"filename": "src/awscdk/base.ts",
|
|
895
|
-
"line":
|
|
924
|
+
"line": 115
|
|
896
925
|
},
|
|
897
926
|
"name": "branchName",
|
|
898
927
|
"optional": true,
|
|
@@ -911,7 +940,7 @@
|
|
|
911
940
|
"immutable": true,
|
|
912
941
|
"locationInModule": {
|
|
913
942
|
"filename": "src/awscdk/base.ts",
|
|
914
|
-
"line":
|
|
943
|
+
"line": 131
|
|
915
944
|
},
|
|
916
945
|
"name": "deploySubStacks",
|
|
917
946
|
"optional": true,
|
|
@@ -928,7 +957,7 @@
|
|
|
928
957
|
"immutable": true,
|
|
929
958
|
"locationInModule": {
|
|
930
959
|
"filename": "src/awscdk/base.ts",
|
|
931
|
-
"line":
|
|
960
|
+
"line": 155
|
|
932
961
|
},
|
|
933
962
|
"name": "featureStages",
|
|
934
963
|
"optional": true,
|
|
@@ -945,7 +974,7 @@
|
|
|
945
974
|
"immutable": true,
|
|
946
975
|
"locationInModule": {
|
|
947
976
|
"filename": "src/awscdk/base.ts",
|
|
948
|
-
"line":
|
|
977
|
+
"line": 149
|
|
949
978
|
},
|
|
950
979
|
"name": "independentStages",
|
|
951
980
|
"optional": true,
|
|
@@ -967,7 +996,7 @@
|
|
|
967
996
|
"immutable": true,
|
|
968
997
|
"locationInModule": {
|
|
969
998
|
"filename": "src/awscdk/base.ts",
|
|
970
|
-
"line":
|
|
999
|
+
"line": 152
|
|
971
1000
|
},
|
|
972
1001
|
"name": "personalStage",
|
|
973
1002
|
"optional": true,
|
|
@@ -983,7 +1012,7 @@
|
|
|
983
1012
|
"immutable": true,
|
|
984
1013
|
"locationInModule": {
|
|
985
1014
|
"filename": "src/awscdk/base.ts",
|
|
986
|
-
"line":
|
|
1015
|
+
"line": 168
|
|
987
1016
|
},
|
|
988
1017
|
"name": "postSynthCommands",
|
|
989
1018
|
"optional": true,
|
|
@@ -1004,7 +1033,7 @@
|
|
|
1004
1033
|
"immutable": true,
|
|
1005
1034
|
"locationInModule": {
|
|
1006
1035
|
"filename": "src/awscdk/base.ts",
|
|
1007
|
-
"line":
|
|
1036
|
+
"line": 172
|
|
1008
1037
|
},
|
|
1009
1038
|
"name": "postSynthSteps",
|
|
1010
1039
|
"optional": true,
|
|
@@ -1025,7 +1054,7 @@
|
|
|
1025
1054
|
"immutable": true,
|
|
1026
1055
|
"locationInModule": {
|
|
1027
1056
|
"filename": "src/awscdk/base.ts",
|
|
1028
|
-
"line":
|
|
1057
|
+
"line": 166
|
|
1029
1058
|
},
|
|
1030
1059
|
"name": "preInstallCommands",
|
|
1031
1060
|
"optional": true,
|
|
@@ -1046,7 +1075,7 @@
|
|
|
1046
1075
|
"immutable": true,
|
|
1047
1076
|
"locationInModule": {
|
|
1048
1077
|
"filename": "src/awscdk/base.ts",
|
|
1049
|
-
"line":
|
|
1078
|
+
"line": 170
|
|
1050
1079
|
},
|
|
1051
1080
|
"name": "preInstallSteps",
|
|
1052
1081
|
"optional": true,
|
|
@@ -1067,7 +1096,7 @@
|
|
|
1067
1096
|
"immutable": true,
|
|
1068
1097
|
"locationInModule": {
|
|
1069
1098
|
"filename": "src/awscdk/base.ts",
|
|
1070
|
-
"line":
|
|
1099
|
+
"line": 167
|
|
1071
1100
|
},
|
|
1072
1101
|
"name": "preSynthCommands",
|
|
1073
1102
|
"optional": true,
|
|
@@ -1088,7 +1117,7 @@
|
|
|
1088
1117
|
"immutable": true,
|
|
1089
1118
|
"locationInModule": {
|
|
1090
1119
|
"filename": "src/awscdk/base.ts",
|
|
1091
|
-
"line":
|
|
1120
|
+
"line": 171
|
|
1092
1121
|
},
|
|
1093
1122
|
"name": "preSynthSteps",
|
|
1094
1123
|
"optional": true,
|
|
@@ -1111,7 +1140,7 @@
|
|
|
1111
1140
|
"immutable": true,
|
|
1112
1141
|
"locationInModule": {
|
|
1113
1142
|
"filename": "src/awscdk/base.ts",
|
|
1114
|
-
"line":
|
|
1143
|
+
"line": 123
|
|
1115
1144
|
},
|
|
1116
1145
|
"name": "stackPrefix",
|
|
1117
1146
|
"optional": true,
|
|
@@ -1122,281 +1151,323 @@
|
|
|
1122
1151
|
],
|
|
1123
1152
|
"symbolId": "src/awscdk/base:CDKPipelineOptions"
|
|
1124
1153
|
},
|
|
1125
|
-
"projen-pipelines.
|
|
1154
|
+
"projen-pipelines.CdkDiffType": {
|
|
1126
1155
|
"assembly": "projen-pipelines",
|
|
1127
|
-
"base": "projen-pipelines.CDKPipeline",
|
|
1128
1156
|
"docs": {
|
|
1129
1157
|
"stability": "stable"
|
|
1130
1158
|
},
|
|
1131
|
-
"fqn": "projen-pipelines.
|
|
1159
|
+
"fqn": "projen-pipelines.CdkDiffType",
|
|
1160
|
+
"kind": "enum",
|
|
1161
|
+
"locationInModule": {
|
|
1162
|
+
"filename": "src/awscdk/base.ts",
|
|
1163
|
+
"line": 38
|
|
1164
|
+
},
|
|
1165
|
+
"members": [
|
|
1166
|
+
{
|
|
1167
|
+
"docs": {
|
|
1168
|
+
"stability": "stable",
|
|
1169
|
+
"summary": "Do not perform a diff."
|
|
1170
|
+
},
|
|
1171
|
+
"name": "NONE"
|
|
1172
|
+
},
|
|
1173
|
+
{
|
|
1174
|
+
"docs": {
|
|
1175
|
+
"stability": "stable",
|
|
1176
|
+
"summary": "Perform a fast template diff (--no-changeset)."
|
|
1177
|
+
},
|
|
1178
|
+
"name": "FAST"
|
|
1179
|
+
},
|
|
1180
|
+
{
|
|
1181
|
+
"docs": {
|
|
1182
|
+
"stability": "stable",
|
|
1183
|
+
"summary": "Perform a full CloudFormation diff (--changeset)."
|
|
1184
|
+
},
|
|
1185
|
+
"name": "FULL"
|
|
1186
|
+
}
|
|
1187
|
+
],
|
|
1188
|
+
"name": "CdkDiffType",
|
|
1189
|
+
"symbolId": "src/awscdk/base:CdkDiffType"
|
|
1190
|
+
},
|
|
1191
|
+
"projen-pipelines.CodeArtifactLoginStep": {
|
|
1192
|
+
"assembly": "projen-pipelines",
|
|
1193
|
+
"base": "projen-pipelines.StepSequence",
|
|
1194
|
+
"docs": {
|
|
1195
|
+
"stability": "stable"
|
|
1196
|
+
},
|
|
1197
|
+
"fqn": "projen-pipelines.CodeArtifactLoginStep",
|
|
1132
1198
|
"initializer": {
|
|
1133
1199
|
"docs": {
|
|
1134
1200
|
"stability": "stable"
|
|
1135
1201
|
},
|
|
1136
1202
|
"locationInModule": {
|
|
1137
|
-
"filename": "src/
|
|
1138
|
-
"line":
|
|
1203
|
+
"filename": "src/steps/registries.ts",
|
|
1204
|
+
"line": 42
|
|
1139
1205
|
},
|
|
1140
1206
|
"parameters": [
|
|
1141
1207
|
{
|
|
1142
|
-
"
|
|
1208
|
+
"docs": {
|
|
1209
|
+
"summary": "- The projen project reference."
|
|
1210
|
+
},
|
|
1211
|
+
"name": "project",
|
|
1143
1212
|
"type": {
|
|
1144
|
-
"fqn": "projen.
|
|
1213
|
+
"fqn": "projen.Project"
|
|
1145
1214
|
}
|
|
1146
1215
|
},
|
|
1147
1216
|
{
|
|
1148
1217
|
"name": "options",
|
|
1149
1218
|
"type": {
|
|
1150
|
-
"fqn": "projen-pipelines.
|
|
1219
|
+
"fqn": "projen-pipelines.CodeArtifactLoginStepOptions"
|
|
1151
1220
|
}
|
|
1152
1221
|
}
|
|
1153
1222
|
]
|
|
1154
1223
|
},
|
|
1155
1224
|
"kind": "class",
|
|
1156
1225
|
"locationInModule": {
|
|
1157
|
-
"filename": "src/
|
|
1158
|
-
"line":
|
|
1226
|
+
"filename": "src/steps/registries.ts",
|
|
1227
|
+
"line": 41
|
|
1159
1228
|
},
|
|
1160
|
-
"
|
|
1229
|
+
"name": "CodeArtifactLoginStep",
|
|
1230
|
+
"properties": [
|
|
1161
1231
|
{
|
|
1162
1232
|
"docs": {
|
|
1163
1233
|
"stability": "stable"
|
|
1164
1234
|
},
|
|
1165
1235
|
"locationInModule": {
|
|
1166
|
-
"filename": "src/
|
|
1167
|
-
"line":
|
|
1236
|
+
"filename": "src/steps/registries.ts",
|
|
1237
|
+
"line": 42
|
|
1168
1238
|
},
|
|
1169
|
-
"name": "
|
|
1170
|
-
|
|
1239
|
+
"name": "options",
|
|
1240
|
+
"protected": true,
|
|
1241
|
+
"type": {
|
|
1242
|
+
"fqn": "projen-pipelines.CodeArtifactLoginStepOptions"
|
|
1243
|
+
}
|
|
1244
|
+
}
|
|
1245
|
+
],
|
|
1246
|
+
"symbolId": "src/steps/registries:CodeArtifactLoginStep"
|
|
1247
|
+
},
|
|
1248
|
+
"projen-pipelines.CodeArtifactLoginStepOptions": {
|
|
1249
|
+
"assembly": "projen-pipelines",
|
|
1250
|
+
"datatype": true,
|
|
1251
|
+
"docs": {
|
|
1252
|
+
"stability": "stable"
|
|
1253
|
+
},
|
|
1254
|
+
"fqn": "projen-pipelines.CodeArtifactLoginStepOptions",
|
|
1255
|
+
"kind": "interface",
|
|
1256
|
+
"locationInModule": {
|
|
1257
|
+
"filename": "src/steps/registries.ts",
|
|
1258
|
+
"line": 34
|
|
1259
|
+
},
|
|
1260
|
+
"name": "CodeArtifactLoginStepOptions",
|
|
1261
|
+
"properties": [
|
|
1171
1262
|
{
|
|
1263
|
+
"abstract": true,
|
|
1172
1264
|
"docs": {
|
|
1173
1265
|
"stability": "stable"
|
|
1174
1266
|
},
|
|
1267
|
+
"immutable": true,
|
|
1175
1268
|
"locationInModule": {
|
|
1176
|
-
"filename": "src/
|
|
1177
|
-
"line":
|
|
1269
|
+
"filename": "src/steps/registries.ts",
|
|
1270
|
+
"line": 37
|
|
1178
1271
|
},
|
|
1179
|
-
"name": "
|
|
1180
|
-
"
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
"type": {
|
|
1184
|
-
"fqn": "projen-pipelines.DeploymentStage"
|
|
1185
|
-
}
|
|
1186
|
-
}
|
|
1187
|
-
]
|
|
1272
|
+
"name": "domainName",
|
|
1273
|
+
"type": {
|
|
1274
|
+
"primitive": "string"
|
|
1275
|
+
}
|
|
1188
1276
|
},
|
|
1189
1277
|
{
|
|
1278
|
+
"abstract": true,
|
|
1190
1279
|
"docs": {
|
|
1191
1280
|
"stability": "stable"
|
|
1192
1281
|
},
|
|
1282
|
+
"immutable": true,
|
|
1193
1283
|
"locationInModule": {
|
|
1194
|
-
"filename": "src/
|
|
1195
|
-
"line":
|
|
1284
|
+
"filename": "src/steps/registries.ts",
|
|
1285
|
+
"line": 35
|
|
1196
1286
|
},
|
|
1197
|
-
"name": "
|
|
1287
|
+
"name": "ownerAccount",
|
|
1288
|
+
"type": {
|
|
1289
|
+
"primitive": "string"
|
|
1290
|
+
}
|
|
1198
1291
|
},
|
|
1199
1292
|
{
|
|
1293
|
+
"abstract": true,
|
|
1200
1294
|
"docs": {
|
|
1201
1295
|
"stability": "stable"
|
|
1202
1296
|
},
|
|
1297
|
+
"immutable": true,
|
|
1203
1298
|
"locationInModule": {
|
|
1204
|
-
"filename": "src/
|
|
1205
|
-
"line":
|
|
1299
|
+
"filename": "src/steps/registries.ts",
|
|
1300
|
+
"line": 36
|
|
1206
1301
|
},
|
|
1207
|
-
"name": "
|
|
1208
|
-
"
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
"type": {
|
|
1212
|
-
"fqn": "projen-pipelines.DeploymentStage"
|
|
1213
|
-
}
|
|
1214
|
-
}
|
|
1215
|
-
]
|
|
1302
|
+
"name": "region",
|
|
1303
|
+
"type": {
|
|
1304
|
+
"primitive": "string"
|
|
1305
|
+
}
|
|
1216
1306
|
},
|
|
1217
1307
|
{
|
|
1308
|
+
"abstract": true,
|
|
1218
1309
|
"docs": {
|
|
1219
|
-
"stability": "stable"
|
|
1220
|
-
"summary": "the type of engine this implementation of CDKPipeline is for."
|
|
1310
|
+
"stability": "stable"
|
|
1221
1311
|
},
|
|
1312
|
+
"immutable": true,
|
|
1222
1313
|
"locationInModule": {
|
|
1223
|
-
"filename": "src/
|
|
1224
|
-
"line":
|
|
1225
|
-
},
|
|
1226
|
-
"name": "engineType",
|
|
1227
|
-
"overrides": "projen-pipelines.CDKPipeline",
|
|
1228
|
-
"returns": {
|
|
1229
|
-
"type": {
|
|
1230
|
-
"fqn": "projen-pipelines.PipelineEngine"
|
|
1231
|
-
}
|
|
1232
|
-
}
|
|
1233
|
-
}
|
|
1234
|
-
],
|
|
1235
|
-
"name": "CodeCatalystCDKPipeline",
|
|
1236
|
-
"properties": [
|
|
1237
|
-
{
|
|
1238
|
-
"docs": {
|
|
1239
|
-
"stability": "stable"
|
|
1240
|
-
},
|
|
1241
|
-
"immutable": true,
|
|
1242
|
-
"locationInModule": {
|
|
1243
|
-
"filename": "src/awscdk/codecatalyst.ts",
|
|
1244
|
-
"line": 57
|
|
1314
|
+
"filename": "src/steps/registries.ts",
|
|
1315
|
+
"line": 38
|
|
1245
1316
|
},
|
|
1246
|
-
"name": "
|
|
1317
|
+
"name": "role",
|
|
1247
1318
|
"type": {
|
|
1248
|
-
"primitive": "
|
|
1319
|
+
"primitive": "string"
|
|
1249
1320
|
}
|
|
1250
1321
|
}
|
|
1251
1322
|
],
|
|
1252
|
-
"symbolId": "src/
|
|
1323
|
+
"symbolId": "src/steps/registries:CodeArtifactLoginStepOptions"
|
|
1253
1324
|
},
|
|
1254
|
-
"projen-pipelines.
|
|
1325
|
+
"projen-pipelines.CodeCatalystCDKPipeline": {
|
|
1255
1326
|
"assembly": "projen-pipelines",
|
|
1256
|
-
"
|
|
1327
|
+
"base": "projen-pipelines.CDKPipeline",
|
|
1257
1328
|
"docs": {
|
|
1258
1329
|
"stability": "stable"
|
|
1259
1330
|
},
|
|
1260
|
-
"fqn": "projen-pipelines.
|
|
1261
|
-
"
|
|
1262
|
-
"
|
|
1263
|
-
|
|
1264
|
-
|
|
1331
|
+
"fqn": "projen-pipelines.CodeCatalystCDKPipeline",
|
|
1332
|
+
"initializer": {
|
|
1333
|
+
"docs": {
|
|
1334
|
+
"stability": "stable"
|
|
1335
|
+
},
|
|
1336
|
+
"locationInModule": {
|
|
1337
|
+
"filename": "src/awscdk/codecatalyst.ts",
|
|
1338
|
+
"line": 52
|
|
1339
|
+
},
|
|
1340
|
+
"parameters": [
|
|
1341
|
+
{
|
|
1342
|
+
"name": "app",
|
|
1343
|
+
"type": {
|
|
1344
|
+
"fqn": "projen.awscdk.AwsCdkTypeScriptApp"
|
|
1345
|
+
}
|
|
1346
|
+
},
|
|
1347
|
+
{
|
|
1348
|
+
"name": "options",
|
|
1349
|
+
"type": {
|
|
1350
|
+
"fqn": "projen-pipelines.CodeCatalystCDKPipelineOptions"
|
|
1351
|
+
}
|
|
1352
|
+
}
|
|
1353
|
+
]
|
|
1354
|
+
},
|
|
1355
|
+
"kind": "class",
|
|
1265
1356
|
"locationInModule": {
|
|
1266
1357
|
"filename": "src/awscdk/codecatalyst.ts",
|
|
1267
|
-
"line":
|
|
1358
|
+
"line": 42
|
|
1268
1359
|
},
|
|
1269
|
-
"
|
|
1270
|
-
"properties": [
|
|
1360
|
+
"methods": [
|
|
1271
1361
|
{
|
|
1272
|
-
"abstract": true,
|
|
1273
1362
|
"docs": {
|
|
1274
1363
|
"stability": "stable"
|
|
1275
1364
|
},
|
|
1276
|
-
"immutable": true,
|
|
1277
1365
|
"locationInModule": {
|
|
1278
1366
|
"filename": "src/awscdk/codecatalyst.ts",
|
|
1279
|
-
"line":
|
|
1367
|
+
"line": 207
|
|
1280
1368
|
},
|
|
1281
|
-
"name": "
|
|
1282
|
-
|
|
1283
|
-
"fqn": "projen-pipelines.CodeCatalystIamRoleConfig"
|
|
1284
|
-
}
|
|
1285
|
-
}
|
|
1286
|
-
],
|
|
1287
|
-
"symbolId": "src/awscdk/codecatalyst:CodeCatalystCDKPipelineOptions"
|
|
1288
|
-
},
|
|
1289
|
-
"projen-pipelines.CodeCatalystIamRoleConfig": {
|
|
1290
|
-
"assembly": "projen-pipelines",
|
|
1291
|
-
"datatype": true,
|
|
1292
|
-
"docs": {
|
|
1293
|
-
"stability": "stable"
|
|
1294
|
-
},
|
|
1295
|
-
"fqn": "projen-pipelines.CodeCatalystIamRoleConfig",
|
|
1296
|
-
"kind": "interface",
|
|
1297
|
-
"locationInModule": {
|
|
1298
|
-
"filename": "src/awscdk/codecatalyst.ts",
|
|
1299
|
-
"line": 38
|
|
1300
|
-
},
|
|
1301
|
-
"name": "CodeCatalystIamRoleConfig",
|
|
1302
|
-
"properties": [
|
|
1369
|
+
"name": "createAssetUpload"
|
|
1370
|
+
},
|
|
1303
1371
|
{
|
|
1304
|
-
"abstract": true,
|
|
1305
1372
|
"docs": {
|
|
1306
|
-
"stability": "stable"
|
|
1307
|
-
"summary": "IAM role ARN for the asset publishing step."
|
|
1373
|
+
"stability": "stable"
|
|
1308
1374
|
},
|
|
1309
|
-
"immutable": true,
|
|
1310
1375
|
"locationInModule": {
|
|
1311
1376
|
"filename": "src/awscdk/codecatalyst.ts",
|
|
1312
|
-
"line":
|
|
1377
|
+
"line": 235
|
|
1313
1378
|
},
|
|
1314
|
-
"name": "
|
|
1315
|
-
"
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1379
|
+
"name": "createDeployment",
|
|
1380
|
+
"parameters": [
|
|
1381
|
+
{
|
|
1382
|
+
"name": "stage",
|
|
1383
|
+
"type": {
|
|
1384
|
+
"fqn": "projen-pipelines.DeploymentStage"
|
|
1385
|
+
}
|
|
1386
|
+
}
|
|
1387
|
+
]
|
|
1319
1388
|
},
|
|
1320
1389
|
{
|
|
1321
|
-
"abstract": true,
|
|
1322
1390
|
"docs": {
|
|
1323
|
-
"stability": "stable"
|
|
1324
|
-
"summary": "IAM role ARN for the asset publishing step for a specific stage."
|
|
1391
|
+
"stability": "stable"
|
|
1325
1392
|
},
|
|
1326
|
-
"immutable": true,
|
|
1327
1393
|
"locationInModule": {
|
|
1328
1394
|
"filename": "src/awscdk/codecatalyst.ts",
|
|
1329
|
-
"line":
|
|
1395
|
+
"line": 86
|
|
1330
1396
|
},
|
|
1331
|
-
"name": "
|
|
1332
|
-
"optional": true,
|
|
1333
|
-
"type": {
|
|
1334
|
-
"collection": {
|
|
1335
|
-
"elementtype": {
|
|
1336
|
-
"primitive": "string"
|
|
1337
|
-
},
|
|
1338
|
-
"kind": "map"
|
|
1339
|
-
}
|
|
1340
|
-
}
|
|
1397
|
+
"name": "createEnvironments"
|
|
1341
1398
|
},
|
|
1342
1399
|
{
|
|
1343
|
-
"abstract": true,
|
|
1344
1400
|
"docs": {
|
|
1345
|
-
"stability": "stable"
|
|
1346
|
-
"summary": "Default IAM role ARN used if no specific role is provided."
|
|
1401
|
+
"stability": "stable"
|
|
1347
1402
|
},
|
|
1348
|
-
"immutable": true,
|
|
1349
1403
|
"locationInModule": {
|
|
1350
1404
|
"filename": "src/awscdk/codecatalyst.ts",
|
|
1351
|
-
"line":
|
|
1405
|
+
"line": 278
|
|
1352
1406
|
},
|
|
1353
|
-
"name": "
|
|
1354
|
-
"
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1407
|
+
"name": "createIndependentDeployment",
|
|
1408
|
+
"parameters": [
|
|
1409
|
+
{
|
|
1410
|
+
"name": "stage",
|
|
1411
|
+
"type": {
|
|
1412
|
+
"fqn": "projen-pipelines.DeploymentStage"
|
|
1413
|
+
}
|
|
1414
|
+
}
|
|
1415
|
+
]
|
|
1358
1416
|
},
|
|
1359
1417
|
{
|
|
1360
|
-
"abstract": true,
|
|
1361
1418
|
"docs": {
|
|
1362
1419
|
"stability": "stable",
|
|
1363
|
-
"summary": "
|
|
1420
|
+
"summary": "the type of engine this implementation of CDKPipeline is for."
|
|
1364
1421
|
},
|
|
1365
|
-
"immutable": true,
|
|
1366
1422
|
"locationInModule": {
|
|
1367
1423
|
"filename": "src/awscdk/codecatalyst.ts",
|
|
1368
|
-
"line":
|
|
1424
|
+
"line": 163
|
|
1369
1425
|
},
|
|
1370
|
-
"name": "
|
|
1371
|
-
"
|
|
1372
|
-
"
|
|
1373
|
-
"
|
|
1374
|
-
"
|
|
1375
|
-
"primitive": "string"
|
|
1376
|
-
},
|
|
1377
|
-
"kind": "map"
|
|
1426
|
+
"name": "engineType",
|
|
1427
|
+
"overrides": "projen-pipelines.CDKPipeline",
|
|
1428
|
+
"returns": {
|
|
1429
|
+
"type": {
|
|
1430
|
+
"fqn": "projen-pipelines.PipelineEngine"
|
|
1378
1431
|
}
|
|
1379
1432
|
}
|
|
1380
|
-
}
|
|
1433
|
+
}
|
|
1434
|
+
],
|
|
1435
|
+
"name": "CodeCatalystCDKPipeline",
|
|
1436
|
+
"properties": [
|
|
1381
1437
|
{
|
|
1382
|
-
"abstract": true,
|
|
1383
1438
|
"docs": {
|
|
1384
|
-
"stability": "stable"
|
|
1385
|
-
"summary": "IAM role ARN for the synthesis step."
|
|
1439
|
+
"stability": "stable"
|
|
1386
1440
|
},
|
|
1387
1441
|
"immutable": true,
|
|
1388
1442
|
"locationInModule": {
|
|
1389
1443
|
"filename": "src/awscdk/codecatalyst.ts",
|
|
1390
|
-
"line":
|
|
1444
|
+
"line": 44
|
|
1391
1445
|
},
|
|
1392
|
-
"name": "
|
|
1393
|
-
"optional": true,
|
|
1446
|
+
"name": "needsVersionedArtifacts",
|
|
1394
1447
|
"type": {
|
|
1395
|
-
"primitive": "
|
|
1448
|
+
"primitive": "boolean"
|
|
1396
1449
|
}
|
|
1397
1450
|
}
|
|
1398
1451
|
],
|
|
1399
|
-
"symbolId": "src/awscdk/codecatalyst:
|
|
1452
|
+
"symbolId": "src/awscdk/codecatalyst:CodeCatalystCDKPipeline"
|
|
1453
|
+
},
|
|
1454
|
+
"projen-pipelines.CodeCatalystCDKPipelineOptions": {
|
|
1455
|
+
"assembly": "projen-pipelines",
|
|
1456
|
+
"datatype": true,
|
|
1457
|
+
"docs": {
|
|
1458
|
+
"stability": "stable"
|
|
1459
|
+
},
|
|
1460
|
+
"fqn": "projen-pipelines.CodeCatalystCDKPipelineOptions",
|
|
1461
|
+
"interfaces": [
|
|
1462
|
+
"projen-pipelines.CDKPipelineOptions"
|
|
1463
|
+
],
|
|
1464
|
+
"kind": "interface",
|
|
1465
|
+
"locationInModule": {
|
|
1466
|
+
"filename": "src/awscdk/codecatalyst.ts",
|
|
1467
|
+
"line": 38
|
|
1468
|
+
},
|
|
1469
|
+
"name": "CodeCatalystCDKPipelineOptions",
|
|
1470
|
+
"symbolId": "src/awscdk/codecatalyst:CodeCatalystCDKPipelineOptions"
|
|
1400
1471
|
},
|
|
1401
1472
|
"projen-pipelines.CodeCatalystStepConfig": {
|
|
1402
1473
|
"assembly": "projen-pipelines",
|
|
@@ -1409,7 +1480,7 @@
|
|
|
1409
1480
|
"kind": "interface",
|
|
1410
1481
|
"locationInModule": {
|
|
1411
1482
|
"filename": "src/steps/step.ts",
|
|
1412
|
-
"line":
|
|
1483
|
+
"line": 45
|
|
1413
1484
|
},
|
|
1414
1485
|
"name": "CodeCatalystStepConfig",
|
|
1415
1486
|
"properties": [
|
|
@@ -1422,7 +1493,7 @@
|
|
|
1422
1493
|
"immutable": true,
|
|
1423
1494
|
"locationInModule": {
|
|
1424
1495
|
"filename": "src/steps/step.ts",
|
|
1425
|
-
"line":
|
|
1496
|
+
"line": 51
|
|
1426
1497
|
},
|
|
1427
1498
|
"name": "commands",
|
|
1428
1499
|
"type": {
|
|
@@ -1443,7 +1514,7 @@
|
|
|
1443
1514
|
"immutable": true,
|
|
1444
1515
|
"locationInModule": {
|
|
1445
1516
|
"filename": "src/steps/step.ts",
|
|
1446
|
-
"line":
|
|
1517
|
+
"line": 54
|
|
1447
1518
|
},
|
|
1448
1519
|
"name": "env",
|
|
1449
1520
|
"type": {
|
|
@@ -1464,7 +1535,7 @@
|
|
|
1464
1535
|
"immutable": true,
|
|
1465
1536
|
"locationInModule": {
|
|
1466
1537
|
"filename": "src/steps/step.ts",
|
|
1467
|
-
"line":
|
|
1538
|
+
"line": 48
|
|
1468
1539
|
},
|
|
1469
1540
|
"name": "needs",
|
|
1470
1541
|
"type": {
|
|
@@ -1493,7 +1564,7 @@
|
|
|
1493
1564
|
"kind": "interface",
|
|
1494
1565
|
"locationInModule": {
|
|
1495
1566
|
"filename": "src/awscdk/base.ts",
|
|
1496
|
-
"line":
|
|
1567
|
+
"line": 50
|
|
1497
1568
|
},
|
|
1498
1569
|
"name": "DeploymentStage",
|
|
1499
1570
|
"properties": [
|
|
@@ -1505,7 +1576,7 @@
|
|
|
1505
1576
|
"immutable": true,
|
|
1506
1577
|
"locationInModule": {
|
|
1507
1578
|
"filename": "src/awscdk/base.ts",
|
|
1508
|
-
"line":
|
|
1579
|
+
"line": 51
|
|
1509
1580
|
},
|
|
1510
1581
|
"name": "manualApproval",
|
|
1511
1582
|
"optional": true,
|
|
@@ -1727,7 +1798,7 @@
|
|
|
1727
1798
|
},
|
|
1728
1799
|
"locationInModule": {
|
|
1729
1800
|
"filename": "src/awscdk/github.ts",
|
|
1730
|
-
"line":
|
|
1801
|
+
"line": 60
|
|
1731
1802
|
},
|
|
1732
1803
|
"parameters": [
|
|
1733
1804
|
{
|
|
@@ -1753,7 +1824,7 @@
|
|
|
1753
1824
|
"kind": "class",
|
|
1754
1825
|
"locationInModule": {
|
|
1755
1826
|
"filename": "src/awscdk/github.ts",
|
|
1756
|
-
"line":
|
|
1827
|
+
"line": 43
|
|
1757
1828
|
},
|
|
1758
1829
|
"methods": [
|
|
1759
1830
|
{
|
|
@@ -1763,7 +1834,7 @@
|
|
|
1763
1834
|
},
|
|
1764
1835
|
"locationInModule": {
|
|
1765
1836
|
"filename": "src/awscdk/github.ts",
|
|
1766
|
-
"line":
|
|
1837
|
+
"line": 147
|
|
1767
1838
|
},
|
|
1768
1839
|
"name": "createAssetUpload"
|
|
1769
1840
|
},
|
|
@@ -1774,7 +1845,7 @@
|
|
|
1774
1845
|
},
|
|
1775
1846
|
"locationInModule": {
|
|
1776
1847
|
"filename": "src/awscdk/github.ts",
|
|
1777
|
-
"line":
|
|
1848
|
+
"line": 197
|
|
1778
1849
|
},
|
|
1779
1850
|
"name": "createDeployment",
|
|
1780
1851
|
"parameters": [
|
|
@@ -1796,7 +1867,7 @@
|
|
|
1796
1867
|
},
|
|
1797
1868
|
"locationInModule": {
|
|
1798
1869
|
"filename": "src/awscdk/github.ts",
|
|
1799
|
-
"line":
|
|
1870
|
+
"line": 295
|
|
1800
1871
|
},
|
|
1801
1872
|
"name": "createIndependentDeployment",
|
|
1802
1873
|
"parameters": [
|
|
@@ -1818,7 +1889,7 @@
|
|
|
1818
1889
|
},
|
|
1819
1890
|
"locationInModule": {
|
|
1820
1891
|
"filename": "src/awscdk/github.ts",
|
|
1821
|
-
"line":
|
|
1892
|
+
"line": 104
|
|
1822
1893
|
},
|
|
1823
1894
|
"name": "engineType",
|
|
1824
1895
|
"overrides": "projen-pipelines.CDKPipeline",
|
|
@@ -1839,7 +1910,7 @@
|
|
|
1839
1910
|
"immutable": true,
|
|
1840
1911
|
"locationInModule": {
|
|
1841
1912
|
"filename": "src/awscdk/github.ts",
|
|
1842
|
-
"line":
|
|
1913
|
+
"line": 46
|
|
1843
1914
|
},
|
|
1844
1915
|
"name": "needsVersionedArtifacts",
|
|
1845
1916
|
"type": {
|
|
@@ -1852,7 +1923,7 @@
|
|
|
1852
1923
|
},
|
|
1853
1924
|
"locationInModule": {
|
|
1854
1925
|
"filename": "src/awscdk/github.ts",
|
|
1855
|
-
"line":
|
|
1926
|
+
"line": 53
|
|
1856
1927
|
},
|
|
1857
1928
|
"name": "useGithubPackages",
|
|
1858
1929
|
"protected": true,
|
|
@@ -1877,26 +1948,10 @@
|
|
|
1877
1948
|
"kind": "interface",
|
|
1878
1949
|
"locationInModule": {
|
|
1879
1950
|
"filename": "src/awscdk/github.ts",
|
|
1880
|
-
"line":
|
|
1951
|
+
"line": 17
|
|
1881
1952
|
},
|
|
1882
1953
|
"name": "GithubCDKPipelineOptions",
|
|
1883
1954
|
"properties": [
|
|
1884
|
-
{
|
|
1885
|
-
"abstract": true,
|
|
1886
|
-
"docs": {
|
|
1887
|
-
"stability": "stable",
|
|
1888
|
-
"summary": "IAM config for GitHub Actions."
|
|
1889
|
-
},
|
|
1890
|
-
"immutable": true,
|
|
1891
|
-
"locationInModule": {
|
|
1892
|
-
"filename": "src/awscdk/github.ts",
|
|
1893
|
-
"line": 37
|
|
1894
|
-
},
|
|
1895
|
-
"name": "iamRoleArns",
|
|
1896
|
-
"type": {
|
|
1897
|
-
"fqn": "projen-pipelines.GithubIamRoleConfig"
|
|
1898
|
-
}
|
|
1899
|
-
},
|
|
1900
1955
|
{
|
|
1901
1956
|
"abstract": true,
|
|
1902
1957
|
"docs": {
|
|
@@ -1907,7 +1962,7 @@
|
|
|
1907
1962
|
"immutable": true,
|
|
1908
1963
|
"locationInModule": {
|
|
1909
1964
|
"filename": "src/awscdk/github.ts",
|
|
1910
|
-
"line":
|
|
1965
|
+
"line": 24
|
|
1911
1966
|
},
|
|
1912
1967
|
"name": "runnerTags",
|
|
1913
1968
|
"optional": true,
|
|
@@ -1931,7 +1986,7 @@
|
|
|
1931
1986
|
"immutable": true,
|
|
1932
1987
|
"locationInModule": {
|
|
1933
1988
|
"filename": "src/awscdk/github.ts",
|
|
1934
|
-
"line":
|
|
1989
|
+
"line": 36
|
|
1935
1990
|
},
|
|
1936
1991
|
"name": "useGithubEnvironments",
|
|
1937
1992
|
"optional": true,
|
|
@@ -1949,7 +2004,7 @@
|
|
|
1949
2004
|
"immutable": true,
|
|
1950
2005
|
"locationInModule": {
|
|
1951
2006
|
"filename": "src/awscdk/github.ts",
|
|
1952
|
-
"line":
|
|
2007
|
+
"line": 27
|
|
1953
2008
|
},
|
|
1954
2009
|
"name": "useGithubPackagesForAssembly",
|
|
1955
2010
|
"optional": true,
|
|
@@ -1960,133 +2015,20 @@
|
|
|
1960
2015
|
],
|
|
1961
2016
|
"symbolId": "src/awscdk/github:GithubCDKPipelineOptions"
|
|
1962
2017
|
},
|
|
1963
|
-
"projen-pipelines.
|
|
2018
|
+
"projen-pipelines.GithubPackagesLoginStep": {
|
|
1964
2019
|
"assembly": "projen-pipelines",
|
|
1965
|
-
"
|
|
2020
|
+
"base": "projen-pipelines.PipelineStep",
|
|
1966
2021
|
"docs": {
|
|
1967
|
-
"stability": "stable"
|
|
1968
|
-
"summary": "Configuration interface for GitHub-specific IAM roles used in the CDK pipeline."
|
|
1969
|
-
},
|
|
1970
|
-
"fqn": "projen-pipelines.GithubIamRoleConfig",
|
|
1971
|
-
"kind": "interface",
|
|
1972
|
-
"locationInModule": {
|
|
1973
|
-
"filename": "src/awscdk/github.ts",
|
|
1974
|
-
"line": 17
|
|
2022
|
+
"stability": "stable"
|
|
1975
2023
|
},
|
|
1976
|
-
"
|
|
1977
|
-
"
|
|
1978
|
-
{
|
|
1979
|
-
"
|
|
1980
|
-
"docs": {
|
|
1981
|
-
"stability": "stable",
|
|
1982
|
-
"summary": "IAM role ARN for the asset publishing step."
|
|
1983
|
-
},
|
|
1984
|
-
"immutable": true,
|
|
1985
|
-
"locationInModule": {
|
|
1986
|
-
"filename": "src/awscdk/github.ts",
|
|
1987
|
-
"line": 24
|
|
1988
|
-
},
|
|
1989
|
-
"name": "assetPublishing",
|
|
1990
|
-
"optional": true,
|
|
1991
|
-
"type": {
|
|
1992
|
-
"primitive": "string"
|
|
1993
|
-
}
|
|
1994
|
-
},
|
|
1995
|
-
{
|
|
1996
|
-
"abstract": true,
|
|
1997
|
-
"docs": {
|
|
1998
|
-
"stability": "stable",
|
|
1999
|
-
"summary": "IAM role ARN for the asset publishing step for a specific stage."
|
|
2000
|
-
},
|
|
2001
|
-
"immutable": true,
|
|
2002
|
-
"locationInModule": {
|
|
2003
|
-
"filename": "src/awscdk/github.ts",
|
|
2004
|
-
"line": 26
|
|
2005
|
-
},
|
|
2006
|
-
"name": "assetPublishingPerStage",
|
|
2007
|
-
"optional": true,
|
|
2008
|
-
"type": {
|
|
2009
|
-
"collection": {
|
|
2010
|
-
"elementtype": {
|
|
2011
|
-
"primitive": "string"
|
|
2012
|
-
},
|
|
2013
|
-
"kind": "map"
|
|
2014
|
-
}
|
|
2015
|
-
}
|
|
2016
|
-
},
|
|
2017
|
-
{
|
|
2018
|
-
"abstract": true,
|
|
2019
|
-
"docs": {
|
|
2020
|
-
"stability": "stable",
|
|
2021
|
-
"summary": "Default IAM role ARN used if no specific role is provided."
|
|
2022
|
-
},
|
|
2023
|
-
"immutable": true,
|
|
2024
|
-
"locationInModule": {
|
|
2025
|
-
"filename": "src/awscdk/github.ts",
|
|
2026
|
-
"line": 20
|
|
2027
|
-
},
|
|
2028
|
-
"name": "default",
|
|
2029
|
-
"optional": true,
|
|
2030
|
-
"type": {
|
|
2031
|
-
"primitive": "string"
|
|
2032
|
-
}
|
|
2033
|
-
},
|
|
2034
|
-
{
|
|
2035
|
-
"abstract": true,
|
|
2036
|
-
"docs": {
|
|
2037
|
-
"stability": "stable",
|
|
2038
|
-
"summary": "IAM role ARNs for different deployment stages."
|
|
2039
|
-
},
|
|
2040
|
-
"immutable": true,
|
|
2041
|
-
"locationInModule": {
|
|
2042
|
-
"filename": "src/awscdk/github.ts",
|
|
2043
|
-
"line": 28
|
|
2044
|
-
},
|
|
2045
|
-
"name": "deployment",
|
|
2046
|
-
"optional": true,
|
|
2047
|
-
"type": {
|
|
2048
|
-
"collection": {
|
|
2049
|
-
"elementtype": {
|
|
2050
|
-
"primitive": "string"
|
|
2051
|
-
},
|
|
2052
|
-
"kind": "map"
|
|
2053
|
-
}
|
|
2054
|
-
}
|
|
2055
|
-
},
|
|
2056
|
-
{
|
|
2057
|
-
"abstract": true,
|
|
2058
|
-
"docs": {
|
|
2059
|
-
"stability": "stable",
|
|
2060
|
-
"summary": "IAM role ARN for the synthesis step."
|
|
2061
|
-
},
|
|
2062
|
-
"immutable": true,
|
|
2063
|
-
"locationInModule": {
|
|
2064
|
-
"filename": "src/awscdk/github.ts",
|
|
2065
|
-
"line": 22
|
|
2066
|
-
},
|
|
2067
|
-
"name": "synth",
|
|
2068
|
-
"optional": true,
|
|
2069
|
-
"type": {
|
|
2070
|
-
"primitive": "string"
|
|
2071
|
-
}
|
|
2072
|
-
}
|
|
2073
|
-
],
|
|
2074
|
-
"symbolId": "src/awscdk/github:GithubIamRoleConfig"
|
|
2075
|
-
},
|
|
2076
|
-
"projen-pipelines.GithubPackagesLoginStep": {
|
|
2077
|
-
"assembly": "projen-pipelines",
|
|
2078
|
-
"base": "projen-pipelines.PipelineStep",
|
|
2079
|
-
"docs": {
|
|
2080
|
-
"stability": "stable"
|
|
2081
|
-
},
|
|
2082
|
-
"fqn": "projen-pipelines.GithubPackagesLoginStep",
|
|
2083
|
-
"initializer": {
|
|
2084
|
-
"docs": {
|
|
2085
|
-
"stability": "stable"
|
|
2024
|
+
"fqn": "projen-pipelines.GithubPackagesLoginStep",
|
|
2025
|
+
"initializer": {
|
|
2026
|
+
"docs": {
|
|
2027
|
+
"stability": "stable"
|
|
2086
2028
|
},
|
|
2087
2029
|
"locationInModule": {
|
|
2088
2030
|
"filename": "src/steps/registries.ts",
|
|
2089
|
-
"line":
|
|
2031
|
+
"line": 18
|
|
2090
2032
|
},
|
|
2091
2033
|
"parameters": [
|
|
2092
2034
|
{
|
|
@@ -2109,7 +2051,7 @@
|
|
|
2109
2051
|
"kind": "class",
|
|
2110
2052
|
"locationInModule": {
|
|
2111
2053
|
"filename": "src/steps/registries.ts",
|
|
2112
|
-
"line":
|
|
2054
|
+
"line": 16
|
|
2113
2055
|
},
|
|
2114
2056
|
"methods": [
|
|
2115
2057
|
{
|
|
@@ -2120,7 +2062,7 @@
|
|
|
2120
2062
|
},
|
|
2121
2063
|
"locationInModule": {
|
|
2122
2064
|
"filename": "src/steps/registries.ts",
|
|
2123
|
-
"line":
|
|
2065
|
+
"line": 22
|
|
2124
2066
|
},
|
|
2125
2067
|
"name": "toGithub",
|
|
2126
2068
|
"overrides": "projen-pipelines.PipelineStep",
|
|
@@ -2144,7 +2086,7 @@
|
|
|
2144
2086
|
"kind": "interface",
|
|
2145
2087
|
"locationInModule": {
|
|
2146
2088
|
"filename": "src/steps/registries.ts",
|
|
2147
|
-
"line":
|
|
2089
|
+
"line": 7
|
|
2148
2090
|
},
|
|
2149
2091
|
"name": "GithubPackagesLoginStepOptions",
|
|
2150
2092
|
"properties": [
|
|
@@ -2158,7 +2100,7 @@
|
|
|
2158
2100
|
"immutable": true,
|
|
2159
2101
|
"locationInModule": {
|
|
2160
2102
|
"filename": "src/steps/registries.ts",
|
|
2161
|
-
"line":
|
|
2103
|
+
"line": 13
|
|
2162
2104
|
},
|
|
2163
2105
|
"name": "write",
|
|
2164
2106
|
"optional": true,
|
|
@@ -2180,7 +2122,7 @@
|
|
|
2180
2122
|
"kind": "interface",
|
|
2181
2123
|
"locationInModule": {
|
|
2182
2124
|
"filename": "src/steps/step.ts",
|
|
2183
|
-
"line":
|
|
2125
|
+
"line": 27
|
|
2184
2126
|
},
|
|
2185
2127
|
"name": "GithubStepConfig",
|
|
2186
2128
|
"properties": [
|
|
@@ -2193,7 +2135,7 @@
|
|
|
2193
2135
|
"immutable": true,
|
|
2194
2136
|
"locationInModule": {
|
|
2195
2137
|
"filename": "src/steps/step.ts",
|
|
2196
|
-
"line":
|
|
2138
|
+
"line": 36
|
|
2197
2139
|
},
|
|
2198
2140
|
"name": "env",
|
|
2199
2141
|
"type": {
|
|
@@ -2214,7 +2156,7 @@
|
|
|
2214
2156
|
"immutable": true,
|
|
2215
2157
|
"locationInModule": {
|
|
2216
2158
|
"filename": "src/steps/step.ts",
|
|
2217
|
-
"line":
|
|
2159
|
+
"line": 30
|
|
2218
2160
|
},
|
|
2219
2161
|
"name": "needs",
|
|
2220
2162
|
"type": {
|
|
@@ -2235,7 +2177,7 @@
|
|
|
2235
2177
|
"immutable": true,
|
|
2236
2178
|
"locationInModule": {
|
|
2237
2179
|
"filename": "src/steps/step.ts",
|
|
2238
|
-
"line":
|
|
2180
|
+
"line": 33
|
|
2239
2181
|
},
|
|
2240
2182
|
"name": "steps",
|
|
2241
2183
|
"type": {
|
|
@@ -2256,7 +2198,7 @@
|
|
|
2256
2198
|
"immutable": true,
|
|
2257
2199
|
"locationInModule": {
|
|
2258
2200
|
"filename": "src/steps/step.ts",
|
|
2259
|
-
"line":
|
|
2201
|
+
"line": 39
|
|
2260
2202
|
},
|
|
2261
2203
|
"name": "permissions",
|
|
2262
2204
|
"optional": true,
|
|
@@ -2283,7 +2225,7 @@
|
|
|
2283
2225
|
},
|
|
2284
2226
|
"locationInModule": {
|
|
2285
2227
|
"filename": "src/awscdk/gitlab.ts",
|
|
2286
|
-
"line":
|
|
2228
|
+
"line": 61
|
|
2287
2229
|
},
|
|
2288
2230
|
"parameters": [
|
|
2289
2231
|
{
|
|
@@ -2309,7 +2251,7 @@
|
|
|
2309
2251
|
"kind": "class",
|
|
2310
2252
|
"locationInModule": {
|
|
2311
2253
|
"filename": "src/awscdk/gitlab.ts",
|
|
2312
|
-
"line":
|
|
2254
|
+
"line": 40
|
|
2313
2255
|
},
|
|
2314
2256
|
"methods": [
|
|
2315
2257
|
{
|
|
@@ -2320,7 +2262,7 @@
|
|
|
2320
2262
|
},
|
|
2321
2263
|
"locationInModule": {
|
|
2322
2264
|
"filename": "src/awscdk/gitlab.ts",
|
|
2323
|
-
"line":
|
|
2265
|
+
"line": 179
|
|
2324
2266
|
},
|
|
2325
2267
|
"name": "createAssetUpload",
|
|
2326
2268
|
"protected": true
|
|
@@ -2333,7 +2275,7 @@
|
|
|
2333
2275
|
},
|
|
2334
2276
|
"locationInModule": {
|
|
2335
2277
|
"filename": "src/awscdk/gitlab.ts",
|
|
2336
|
-
"line":
|
|
2278
|
+
"line": 212
|
|
2337
2279
|
},
|
|
2338
2280
|
"name": "createDeployment",
|
|
2339
2281
|
"parameters": [
|
|
@@ -2356,7 +2298,7 @@
|
|
|
2356
2298
|
},
|
|
2357
2299
|
"locationInModule": {
|
|
2358
2300
|
"filename": "src/awscdk/gitlab.ts",
|
|
2359
|
-
"line":
|
|
2301
|
+
"line": 271
|
|
2360
2302
|
},
|
|
2361
2303
|
"name": "createIndependentDeployment",
|
|
2362
2304
|
"parameters": [
|
|
@@ -2379,7 +2321,7 @@
|
|
|
2379
2321
|
},
|
|
2380
2322
|
"locationInModule": {
|
|
2381
2323
|
"filename": "src/awscdk/gitlab.ts",
|
|
2382
|
-
"line":
|
|
2324
|
+
"line": 152
|
|
2383
2325
|
},
|
|
2384
2326
|
"name": "createSynth",
|
|
2385
2327
|
"protected": true
|
|
@@ -2390,7 +2332,7 @@
|
|
|
2390
2332
|
},
|
|
2391
2333
|
"locationInModule": {
|
|
2392
2334
|
"filename": "src/awscdk/gitlab.ts",
|
|
2393
|
-
"line":
|
|
2335
|
+
"line": 301
|
|
2394
2336
|
},
|
|
2395
2337
|
"name": "engineType",
|
|
2396
2338
|
"overrides": "projen-pipelines.CDKPipeline",
|
|
@@ -2408,7 +2350,7 @@
|
|
|
2408
2350
|
},
|
|
2409
2351
|
"locationInModule": {
|
|
2410
2352
|
"filename": "src/awscdk/gitlab.ts",
|
|
2411
|
-
"line":
|
|
2353
|
+
"line": 93
|
|
2412
2354
|
},
|
|
2413
2355
|
"name": "setupSnippets",
|
|
2414
2356
|
"protected": true
|
|
@@ -2424,7 +2366,7 @@
|
|
|
2424
2366
|
"immutable": true,
|
|
2425
2367
|
"locationInModule": {
|
|
2426
2368
|
"filename": "src/awscdk/gitlab.ts",
|
|
2427
|
-
"line":
|
|
2369
|
+
"line": 49
|
|
2428
2370
|
},
|
|
2429
2371
|
"name": "config",
|
|
2430
2372
|
"type": {
|
|
@@ -2440,7 +2382,7 @@
|
|
|
2440
2382
|
"immutable": true,
|
|
2441
2383
|
"locationInModule": {
|
|
2442
2384
|
"filename": "src/awscdk/gitlab.ts",
|
|
2443
|
-
"line":
|
|
2385
|
+
"line": 46
|
|
2444
2386
|
},
|
|
2445
2387
|
"name": "jobImage",
|
|
2446
2388
|
"type": {
|
|
@@ -2456,7 +2398,7 @@
|
|
|
2456
2398
|
"immutable": true,
|
|
2457
2399
|
"locationInModule": {
|
|
2458
2400
|
"filename": "src/awscdk/gitlab.ts",
|
|
2459
|
-
"line":
|
|
2401
|
+
"line": 43
|
|
2460
2402
|
},
|
|
2461
2403
|
"name": "needsVersionedArtifacts",
|
|
2462
2404
|
"type": {
|
|
@@ -2480,26 +2422,10 @@
|
|
|
2480
2422
|
"kind": "interface",
|
|
2481
2423
|
"locationInModule": {
|
|
2482
2424
|
"filename": "src/awscdk/gitlab.ts",
|
|
2483
|
-
"line":
|
|
2425
|
+
"line": 26
|
|
2484
2426
|
},
|
|
2485
2427
|
"name": "GitlabCDKPipelineOptions",
|
|
2486
2428
|
"properties": [
|
|
2487
|
-
{
|
|
2488
|
-
"abstract": true,
|
|
2489
|
-
"docs": {
|
|
2490
|
-
"stability": "stable",
|
|
2491
|
-
"summary": "IAM role ARNs configuration for the pipeline."
|
|
2492
|
-
},
|
|
2493
|
-
"immutable": true,
|
|
2494
|
-
"locationInModule": {
|
|
2495
|
-
"filename": "src/awscdk/gitlab.ts",
|
|
2496
|
-
"line": 49
|
|
2497
|
-
},
|
|
2498
|
-
"name": "iamRoleArns",
|
|
2499
|
-
"type": {
|
|
2500
|
-
"fqn": "projen-pipelines.GitlabIamRoleConfig"
|
|
2501
|
-
}
|
|
2502
|
-
},
|
|
2503
2429
|
{
|
|
2504
2430
|
"abstract": true,
|
|
2505
2431
|
"docs": {
|
|
@@ -2509,7 +2435,7 @@
|
|
|
2509
2435
|
"immutable": true,
|
|
2510
2436
|
"locationInModule": {
|
|
2511
2437
|
"filename": "src/awscdk/gitlab.ts",
|
|
2512
|
-
"line":
|
|
2438
|
+
"line": 30
|
|
2513
2439
|
},
|
|
2514
2440
|
"name": "image",
|
|
2515
2441
|
"optional": true,
|
|
@@ -2526,7 +2452,7 @@
|
|
|
2526
2452
|
"immutable": true,
|
|
2527
2453
|
"locationInModule": {
|
|
2528
2454
|
"filename": "src/awscdk/gitlab.ts",
|
|
2529
|
-
"line":
|
|
2455
|
+
"line": 28
|
|
2530
2456
|
},
|
|
2531
2457
|
"name": "runnerTags",
|
|
2532
2458
|
"optional": true,
|
|
@@ -2537,58 +2463,41 @@
|
|
|
2537
2463
|
],
|
|
2538
2464
|
"symbolId": "src/awscdk/gitlab:GitlabCDKPipelineOptions"
|
|
2539
2465
|
},
|
|
2540
|
-
"projen-pipelines.
|
|
2466
|
+
"projen-pipelines.GitlabRunnerTags": {
|
|
2541
2467
|
"assembly": "projen-pipelines",
|
|
2542
2468
|
"datatype": true,
|
|
2543
2469
|
"docs": {
|
|
2544
|
-
"remarks": "
|
|
2470
|
+
"remarks": "This allows for specifying different runners based on the tags for different stages of the pipeline.",
|
|
2545
2471
|
"stability": "stable",
|
|
2546
|
-
"summary": "Configuration for
|
|
2472
|
+
"summary": "Configuration for GitLab runner tags used within the CI/CD pipeline for various stages."
|
|
2547
2473
|
},
|
|
2548
|
-
"fqn": "projen-pipelines.
|
|
2474
|
+
"fqn": "projen-pipelines.GitlabRunnerTags",
|
|
2549
2475
|
"kind": "interface",
|
|
2550
2476
|
"locationInModule": {
|
|
2551
2477
|
"filename": "src/awscdk/gitlab.ts",
|
|
2552
|
-
"line":
|
|
2478
|
+
"line": 10
|
|
2553
2479
|
},
|
|
2554
|
-
"name": "
|
|
2480
|
+
"name": "GitlabRunnerTags",
|
|
2555
2481
|
"properties": [
|
|
2556
2482
|
{
|
|
2557
2483
|
"abstract": true,
|
|
2558
2484
|
"docs": {
|
|
2559
2485
|
"stability": "stable",
|
|
2560
|
-
"summary": "
|
|
2486
|
+
"summary": "Runner tags for the asset publishing stage."
|
|
2561
2487
|
},
|
|
2562
2488
|
"immutable": true,
|
|
2563
2489
|
"locationInModule": {
|
|
2564
2490
|
"filename": "src/awscdk/gitlab.ts",
|
|
2565
|
-
"line":
|
|
2491
|
+
"line": 16
|
|
2566
2492
|
},
|
|
2567
2493
|
"name": "assetPublishing",
|
|
2568
2494
|
"optional": true,
|
|
2569
|
-
"type": {
|
|
2570
|
-
"primitive": "string"
|
|
2571
|
-
}
|
|
2572
|
-
},
|
|
2573
|
-
{
|
|
2574
|
-
"abstract": true,
|
|
2575
|
-
"docs": {
|
|
2576
|
-
"stability": "stable",
|
|
2577
|
-
"summary": "IAM role ARN for the asset publishing step for a specific stage."
|
|
2578
|
-
},
|
|
2579
|
-
"immutable": true,
|
|
2580
|
-
"locationInModule": {
|
|
2581
|
-
"filename": "src/awscdk/gitlab.ts",
|
|
2582
|
-
"line": 20
|
|
2583
|
-
},
|
|
2584
|
-
"name": "assetPublishingPerStage",
|
|
2585
|
-
"optional": true,
|
|
2586
2495
|
"type": {
|
|
2587
2496
|
"collection": {
|
|
2588
2497
|
"elementtype": {
|
|
2589
2498
|
"primitive": "string"
|
|
2590
2499
|
},
|
|
2591
|
-
"kind": "
|
|
2500
|
+
"kind": "array"
|
|
2592
2501
|
}
|
|
2593
2502
|
}
|
|
2594
2503
|
},
|
|
@@ -2596,36 +2505,46 @@
|
|
|
2596
2505
|
"abstract": true,
|
|
2597
2506
|
"docs": {
|
|
2598
2507
|
"stability": "stable",
|
|
2599
|
-
"summary": "Default
|
|
2508
|
+
"summary": "Default runner tags used if specific stage tags are not provided."
|
|
2600
2509
|
},
|
|
2601
2510
|
"immutable": true,
|
|
2602
2511
|
"locationInModule": {
|
|
2603
2512
|
"filename": "src/awscdk/gitlab.ts",
|
|
2604
|
-
"line":
|
|
2513
|
+
"line": 12
|
|
2605
2514
|
},
|
|
2606
2515
|
"name": "default",
|
|
2607
2516
|
"optional": true,
|
|
2608
2517
|
"type": {
|
|
2609
|
-
"
|
|
2518
|
+
"collection": {
|
|
2519
|
+
"elementtype": {
|
|
2520
|
+
"primitive": "string"
|
|
2521
|
+
},
|
|
2522
|
+
"kind": "array"
|
|
2523
|
+
}
|
|
2610
2524
|
}
|
|
2611
2525
|
},
|
|
2612
2526
|
{
|
|
2613
2527
|
"abstract": true,
|
|
2614
2528
|
"docs": {
|
|
2615
2529
|
"stability": "stable",
|
|
2616
|
-
"summary": "A map of stage names to
|
|
2530
|
+
"summary": "A map of stage names to runner tags for the deployment operation."
|
|
2617
2531
|
},
|
|
2618
2532
|
"immutable": true,
|
|
2619
2533
|
"locationInModule": {
|
|
2620
2534
|
"filename": "src/awscdk/gitlab.ts",
|
|
2621
|
-
"line":
|
|
2535
|
+
"line": 20
|
|
2622
2536
|
},
|
|
2623
2537
|
"name": "deployment",
|
|
2624
2538
|
"optional": true,
|
|
2625
2539
|
"type": {
|
|
2626
2540
|
"collection": {
|
|
2627
2541
|
"elementtype": {
|
|
2628
|
-
"
|
|
2542
|
+
"collection": {
|
|
2543
|
+
"elementtype": {
|
|
2544
|
+
"primitive": "string"
|
|
2545
|
+
},
|
|
2546
|
+
"kind": "array"
|
|
2547
|
+
}
|
|
2629
2548
|
},
|
|
2630
2549
|
"kind": "map"
|
|
2631
2550
|
}
|
|
@@ -2635,19 +2554,24 @@
|
|
|
2635
2554
|
"abstract": true,
|
|
2636
2555
|
"docs": {
|
|
2637
2556
|
"stability": "stable",
|
|
2638
|
-
"summary": "A map of stage names to
|
|
2557
|
+
"summary": "A map of stage names to runner tags for the diff operation."
|
|
2639
2558
|
},
|
|
2640
2559
|
"immutable": true,
|
|
2641
2560
|
"locationInModule": {
|
|
2642
2561
|
"filename": "src/awscdk/gitlab.ts",
|
|
2643
|
-
"line":
|
|
2562
|
+
"line": 18
|
|
2644
2563
|
},
|
|
2645
2564
|
"name": "diff",
|
|
2646
2565
|
"optional": true,
|
|
2647
2566
|
"type": {
|
|
2648
2567
|
"collection": {
|
|
2649
2568
|
"elementtype": {
|
|
2650
|
-
"
|
|
2569
|
+
"collection": {
|
|
2570
|
+
"elementtype": {
|
|
2571
|
+
"primitive": "string"
|
|
2572
|
+
},
|
|
2573
|
+
"kind": "array"
|
|
2574
|
+
}
|
|
2651
2575
|
},
|
|
2652
2576
|
"kind": "map"
|
|
2653
2577
|
}
|
|
@@ -2657,51 +2581,54 @@
|
|
|
2657
2581
|
"abstract": true,
|
|
2658
2582
|
"docs": {
|
|
2659
2583
|
"stability": "stable",
|
|
2660
|
-
"summary": "
|
|
2584
|
+
"summary": "Runner tags for the synthesis stage."
|
|
2661
2585
|
},
|
|
2662
2586
|
"immutable": true,
|
|
2663
2587
|
"locationInModule": {
|
|
2664
2588
|
"filename": "src/awscdk/gitlab.ts",
|
|
2665
|
-
"line":
|
|
2589
|
+
"line": 14
|
|
2666
2590
|
},
|
|
2667
2591
|
"name": "synth",
|
|
2668
2592
|
"optional": true,
|
|
2669
2593
|
"type": {
|
|
2670
|
-
"
|
|
2594
|
+
"collection": {
|
|
2595
|
+
"elementtype": {
|
|
2596
|
+
"primitive": "string"
|
|
2597
|
+
},
|
|
2598
|
+
"kind": "array"
|
|
2599
|
+
}
|
|
2671
2600
|
}
|
|
2672
2601
|
}
|
|
2673
2602
|
],
|
|
2674
|
-
"symbolId": "src/awscdk/gitlab:
|
|
2603
|
+
"symbolId": "src/awscdk/gitlab:GitlabRunnerTags"
|
|
2675
2604
|
},
|
|
2676
|
-
"projen-pipelines.
|
|
2605
|
+
"projen-pipelines.GitlabStepConfig": {
|
|
2677
2606
|
"assembly": "projen-pipelines",
|
|
2678
2607
|
"datatype": true,
|
|
2679
2608
|
"docs": {
|
|
2680
|
-
"remarks": "This allows for specifying different runners based on the tags for different stages of the pipeline.",
|
|
2681
2609
|
"stability": "stable",
|
|
2682
|
-
"summary": "Configuration for GitLab
|
|
2610
|
+
"summary": "Configuration interface for a GitLab CI step."
|
|
2683
2611
|
},
|
|
2684
|
-
"fqn": "projen-pipelines.
|
|
2612
|
+
"fqn": "projen-pipelines.GitlabStepConfig",
|
|
2685
2613
|
"kind": "interface",
|
|
2686
2614
|
"locationInModule": {
|
|
2687
|
-
"filename": "src/
|
|
2688
|
-
"line":
|
|
2615
|
+
"filename": "src/steps/step.ts",
|
|
2616
|
+
"line": 9
|
|
2689
2617
|
},
|
|
2690
|
-
"name": "
|
|
2618
|
+
"name": "GitlabStepConfig",
|
|
2691
2619
|
"properties": [
|
|
2692
2620
|
{
|
|
2693
2621
|
"abstract": true,
|
|
2694
2622
|
"docs": {
|
|
2695
2623
|
"stability": "stable",
|
|
2696
|
-
"summary": "
|
|
2624
|
+
"summary": "Shell commands to execute in this step."
|
|
2697
2625
|
},
|
|
2698
2626
|
"immutable": true,
|
|
2699
2627
|
"locationInModule": {
|
|
2700
|
-
"filename": "src/
|
|
2701
|
-
"line":
|
|
2628
|
+
"filename": "src/steps/step.ts",
|
|
2629
|
+
"line": 18
|
|
2702
2630
|
},
|
|
2703
|
-
"name": "
|
|
2704
|
-
"optional": true,
|
|
2631
|
+
"name": "commands",
|
|
2705
2632
|
"type": {
|
|
2706
2633
|
"collection": {
|
|
2707
2634
|
"elementtype": {
|
|
@@ -2715,21 +2642,20 @@
|
|
|
2715
2642
|
"abstract": true,
|
|
2716
2643
|
"docs": {
|
|
2717
2644
|
"stability": "stable",
|
|
2718
|
-
"summary": "
|
|
2645
|
+
"summary": "Additional environment variables to set for this step."
|
|
2719
2646
|
},
|
|
2720
2647
|
"immutable": true,
|
|
2721
2648
|
"locationInModule": {
|
|
2722
|
-
"filename": "src/
|
|
2723
|
-
"line":
|
|
2649
|
+
"filename": "src/steps/step.ts",
|
|
2650
|
+
"line": 21
|
|
2724
2651
|
},
|
|
2725
|
-
"name": "
|
|
2726
|
-
"optional": true,
|
|
2652
|
+
"name": "env",
|
|
2727
2653
|
"type": {
|
|
2728
2654
|
"collection": {
|
|
2729
2655
|
"elementtype": {
|
|
2730
2656
|
"primitive": "string"
|
|
2731
2657
|
},
|
|
2732
|
-
"kind": "
|
|
2658
|
+
"kind": "map"
|
|
2733
2659
|
}
|
|
2734
2660
|
}
|
|
2735
2661
|
},
|
|
@@ -2737,26 +2663,20 @@
|
|
|
2737
2663
|
"abstract": true,
|
|
2738
2664
|
"docs": {
|
|
2739
2665
|
"stability": "stable",
|
|
2740
|
-
"summary": "
|
|
2666
|
+
"summary": "List of job extensions related to the step."
|
|
2741
2667
|
},
|
|
2742
2668
|
"immutable": true,
|
|
2743
2669
|
"locationInModule": {
|
|
2744
|
-
"filename": "src/
|
|
2745
|
-
"line":
|
|
2670
|
+
"filename": "src/steps/step.ts",
|
|
2671
|
+
"line": 12
|
|
2746
2672
|
},
|
|
2747
|
-
"name": "
|
|
2748
|
-
"optional": true,
|
|
2673
|
+
"name": "extensions",
|
|
2749
2674
|
"type": {
|
|
2750
2675
|
"collection": {
|
|
2751
2676
|
"elementtype": {
|
|
2752
|
-
"
|
|
2753
|
-
"elementtype": {
|
|
2754
|
-
"primitive": "string"
|
|
2755
|
-
},
|
|
2756
|
-
"kind": "array"
|
|
2757
|
-
}
|
|
2677
|
+
"primitive": "string"
|
|
2758
2678
|
},
|
|
2759
|
-
"kind": "
|
|
2679
|
+
"kind": "array"
|
|
2760
2680
|
}
|
|
2761
2681
|
}
|
|
2762
2682
|
},
|
|
@@ -2764,87 +2684,77 @@
|
|
|
2764
2684
|
"abstract": true,
|
|
2765
2685
|
"docs": {
|
|
2766
2686
|
"stability": "stable",
|
|
2767
|
-
"summary": "
|
|
2687
|
+
"summary": "Dependencies which need to be completed before this step."
|
|
2768
2688
|
},
|
|
2769
2689
|
"immutable": true,
|
|
2770
2690
|
"locationInModule": {
|
|
2771
|
-
"filename": "src/
|
|
2772
|
-
"line":
|
|
2691
|
+
"filename": "src/steps/step.ts",
|
|
2692
|
+
"line": 15
|
|
2773
2693
|
},
|
|
2774
|
-
"name": "
|
|
2775
|
-
"optional": true,
|
|
2694
|
+
"name": "needs",
|
|
2776
2695
|
"type": {
|
|
2777
2696
|
"collection": {
|
|
2778
2697
|
"elementtype": {
|
|
2779
|
-
"
|
|
2780
|
-
"elementtype": {
|
|
2781
|
-
"primitive": "string"
|
|
2782
|
-
},
|
|
2783
|
-
"kind": "array"
|
|
2784
|
-
}
|
|
2698
|
+
"fqn": "projen.gitlab.Need"
|
|
2785
2699
|
},
|
|
2786
|
-
"kind": "
|
|
2787
|
-
}
|
|
2788
|
-
}
|
|
2789
|
-
},
|
|
2790
|
-
{
|
|
2791
|
-
"abstract": true,
|
|
2792
|
-
"docs": {
|
|
2793
|
-
"stability": "stable",
|
|
2794
|
-
"summary": "Runner tags for the synthesis stage."
|
|
2795
|
-
},
|
|
2796
|
-
"immutable": true,
|
|
2797
|
-
"locationInModule": {
|
|
2798
|
-
"filename": "src/awscdk/gitlab.ts",
|
|
2799
|
-
"line": 35
|
|
2800
|
-
},
|
|
2801
|
-
"name": "synth",
|
|
2802
|
-
"optional": true,
|
|
2803
|
-
"type": {
|
|
2804
|
-
"collection": {
|
|
2805
|
-
"elementtype": {
|
|
2806
|
-
"primitive": "string"
|
|
2807
|
-
},
|
|
2808
|
-
"kind": "array"
|
|
2700
|
+
"kind": "array"
|
|
2809
2701
|
}
|
|
2810
2702
|
}
|
|
2811
2703
|
}
|
|
2812
2704
|
],
|
|
2813
|
-
"symbolId": "src/
|
|
2705
|
+
"symbolId": "src/steps/step:GitlabStepConfig"
|
|
2814
2706
|
},
|
|
2815
|
-
"projen-pipelines.
|
|
2707
|
+
"projen-pipelines.IamRoleConfig": {
|
|
2816
2708
|
"assembly": "projen-pipelines",
|
|
2817
2709
|
"datatype": true,
|
|
2818
2710
|
"docs": {
|
|
2819
2711
|
"stability": "stable",
|
|
2820
|
-
"summary": "Configuration interface for
|
|
2712
|
+
"summary": "Configuration interface for IAM roles used in the CDK pipeline."
|
|
2821
2713
|
},
|
|
2822
|
-
"fqn": "projen-pipelines.
|
|
2714
|
+
"fqn": "projen-pipelines.IamRoleConfig",
|
|
2823
2715
|
"kind": "interface",
|
|
2824
2716
|
"locationInModule": {
|
|
2825
|
-
"filename": "src/
|
|
2826
|
-
"line":
|
|
2717
|
+
"filename": "src/awscdk/base.ts",
|
|
2718
|
+
"line": 87
|
|
2827
2719
|
},
|
|
2828
|
-
"name": "
|
|
2720
|
+
"name": "IamRoleConfig",
|
|
2829
2721
|
"properties": [
|
|
2830
2722
|
{
|
|
2831
2723
|
"abstract": true,
|
|
2832
2724
|
"docs": {
|
|
2833
2725
|
"stability": "stable",
|
|
2834
|
-
"summary": "
|
|
2726
|
+
"summary": "IAM role ARN for the asset publishing step."
|
|
2835
2727
|
},
|
|
2836
2728
|
"immutable": true,
|
|
2837
2729
|
"locationInModule": {
|
|
2838
|
-
"filename": "src/
|
|
2839
|
-
"line":
|
|
2730
|
+
"filename": "src/awscdk/base.ts",
|
|
2731
|
+
"line": 94
|
|
2840
2732
|
},
|
|
2841
|
-
"name": "
|
|
2733
|
+
"name": "assetPublishing",
|
|
2734
|
+
"optional": true,
|
|
2735
|
+
"type": {
|
|
2736
|
+
"primitive": "string"
|
|
2737
|
+
}
|
|
2738
|
+
},
|
|
2739
|
+
{
|
|
2740
|
+
"abstract": true,
|
|
2741
|
+
"docs": {
|
|
2742
|
+
"stability": "stable",
|
|
2743
|
+
"summary": "IAM role ARN for the asset publishing step for a specific stage."
|
|
2744
|
+
},
|
|
2745
|
+
"immutable": true,
|
|
2746
|
+
"locationInModule": {
|
|
2747
|
+
"filename": "src/awscdk/base.ts",
|
|
2748
|
+
"line": 96
|
|
2749
|
+
},
|
|
2750
|
+
"name": "assetPublishingPerStage",
|
|
2751
|
+
"optional": true,
|
|
2842
2752
|
"type": {
|
|
2843
2753
|
"collection": {
|
|
2844
2754
|
"elementtype": {
|
|
2845
2755
|
"primitive": "string"
|
|
2846
2756
|
},
|
|
2847
|
-
"kind": "
|
|
2757
|
+
"kind": "map"
|
|
2848
2758
|
}
|
|
2849
2759
|
}
|
|
2850
2760
|
},
|
|
@@ -2852,14 +2762,32 @@
|
|
|
2852
2762
|
"abstract": true,
|
|
2853
2763
|
"docs": {
|
|
2854
2764
|
"stability": "stable",
|
|
2855
|
-
"summary": "
|
|
2765
|
+
"summary": "Default IAM role ARN used if no specific role is provided."
|
|
2856
2766
|
},
|
|
2857
2767
|
"immutable": true,
|
|
2858
2768
|
"locationInModule": {
|
|
2859
|
-
"filename": "src/
|
|
2860
|
-
"line":
|
|
2769
|
+
"filename": "src/awscdk/base.ts",
|
|
2770
|
+
"line": 90
|
|
2861
2771
|
},
|
|
2862
|
-
"name": "
|
|
2772
|
+
"name": "default",
|
|
2773
|
+
"optional": true,
|
|
2774
|
+
"type": {
|
|
2775
|
+
"primitive": "string"
|
|
2776
|
+
}
|
|
2777
|
+
},
|
|
2778
|
+
{
|
|
2779
|
+
"abstract": true,
|
|
2780
|
+
"docs": {
|
|
2781
|
+
"stability": "stable",
|
|
2782
|
+
"summary": "IAM role ARNs for different deployment stages."
|
|
2783
|
+
},
|
|
2784
|
+
"immutable": true,
|
|
2785
|
+
"locationInModule": {
|
|
2786
|
+
"filename": "src/awscdk/base.ts",
|
|
2787
|
+
"line": 100
|
|
2788
|
+
},
|
|
2789
|
+
"name": "deployment",
|
|
2790
|
+
"optional": true,
|
|
2863
2791
|
"type": {
|
|
2864
2792
|
"collection": {
|
|
2865
2793
|
"elementtype": {
|
|
@@ -2873,20 +2801,21 @@
|
|
|
2873
2801
|
"abstract": true,
|
|
2874
2802
|
"docs": {
|
|
2875
2803
|
"stability": "stable",
|
|
2876
|
-
"summary": "
|
|
2804
|
+
"summary": "IAM role ARNs for different diff stages."
|
|
2877
2805
|
},
|
|
2878
2806
|
"immutable": true,
|
|
2879
2807
|
"locationInModule": {
|
|
2880
|
-
"filename": "src/
|
|
2881
|
-
"line":
|
|
2808
|
+
"filename": "src/awscdk/base.ts",
|
|
2809
|
+
"line": 98
|
|
2882
2810
|
},
|
|
2883
|
-
"name": "
|
|
2811
|
+
"name": "diff",
|
|
2812
|
+
"optional": true,
|
|
2884
2813
|
"type": {
|
|
2885
2814
|
"collection": {
|
|
2886
2815
|
"elementtype": {
|
|
2887
2816
|
"primitive": "string"
|
|
2888
2817
|
},
|
|
2889
|
-
"kind": "
|
|
2818
|
+
"kind": "map"
|
|
2890
2819
|
}
|
|
2891
2820
|
}
|
|
2892
2821
|
},
|
|
@@ -2894,25 +2823,21 @@
|
|
|
2894
2823
|
"abstract": true,
|
|
2895
2824
|
"docs": {
|
|
2896
2825
|
"stability": "stable",
|
|
2897
|
-
"summary": "
|
|
2826
|
+
"summary": "IAM role ARN for the synthesis step."
|
|
2898
2827
|
},
|
|
2899
2828
|
"immutable": true,
|
|
2900
2829
|
"locationInModule": {
|
|
2901
|
-
"filename": "src/
|
|
2902
|
-
"line":
|
|
2830
|
+
"filename": "src/awscdk/base.ts",
|
|
2831
|
+
"line": 92
|
|
2903
2832
|
},
|
|
2904
|
-
"name": "
|
|
2833
|
+
"name": "synth",
|
|
2834
|
+
"optional": true,
|
|
2905
2835
|
"type": {
|
|
2906
|
-
"
|
|
2907
|
-
"elementtype": {
|
|
2908
|
-
"fqn": "projen.gitlab.Need"
|
|
2909
|
-
},
|
|
2910
|
-
"kind": "array"
|
|
2911
|
-
}
|
|
2836
|
+
"primitive": "string"
|
|
2912
2837
|
}
|
|
2913
2838
|
}
|
|
2914
2839
|
],
|
|
2915
|
-
"symbolId": "src/
|
|
2840
|
+
"symbolId": "src/awscdk/base:IamRoleConfig"
|
|
2916
2841
|
},
|
|
2917
2842
|
"projen-pipelines.IndependentStage": {
|
|
2918
2843
|
"assembly": "projen-pipelines",
|
|
@@ -2928,7 +2853,7 @@
|
|
|
2928
2853
|
"kind": "interface",
|
|
2929
2854
|
"locationInModule": {
|
|
2930
2855
|
"filename": "src/awscdk/base.ts",
|
|
2931
|
-
"line":
|
|
2856
|
+
"line": 57
|
|
2932
2857
|
},
|
|
2933
2858
|
"name": "IndependentStage",
|
|
2934
2859
|
"properties": [
|
|
@@ -2942,13 +2867,49 @@
|
|
|
2942
2867
|
"immutable": true,
|
|
2943
2868
|
"locationInModule": {
|
|
2944
2869
|
"filename": "src/awscdk/base.ts",
|
|
2945
|
-
"line":
|
|
2870
|
+
"line": 63
|
|
2946
2871
|
},
|
|
2947
2872
|
"name": "deployOnPush",
|
|
2948
2873
|
"optional": true,
|
|
2949
2874
|
"type": {
|
|
2950
2875
|
"primitive": "boolean"
|
|
2951
2876
|
}
|
|
2877
|
+
}
|
|
2878
|
+
],
|
|
2879
|
+
"symbolId": "src/awscdk/base:IndependentStage"
|
|
2880
|
+
},
|
|
2881
|
+
"projen-pipelines.NamedStageOptions": {
|
|
2882
|
+
"assembly": "projen-pipelines",
|
|
2883
|
+
"datatype": true,
|
|
2884
|
+
"docs": {
|
|
2885
|
+
"stability": "stable",
|
|
2886
|
+
"summary": "Options for a CDK stage with a name."
|
|
2887
|
+
},
|
|
2888
|
+
"fqn": "projen-pipelines.NamedStageOptions",
|
|
2889
|
+
"interfaces": [
|
|
2890
|
+
"projen-pipelines.StageOptions"
|
|
2891
|
+
],
|
|
2892
|
+
"kind": "interface",
|
|
2893
|
+
"locationInModule": {
|
|
2894
|
+
"filename": "src/awscdk/base.ts",
|
|
2895
|
+
"line": 69
|
|
2896
|
+
},
|
|
2897
|
+
"name": "NamedStageOptions",
|
|
2898
|
+
"properties": [
|
|
2899
|
+
{
|
|
2900
|
+
"abstract": true,
|
|
2901
|
+
"docs": {
|
|
2902
|
+
"stability": "stable"
|
|
2903
|
+
},
|
|
2904
|
+
"immutable": true,
|
|
2905
|
+
"locationInModule": {
|
|
2906
|
+
"filename": "src/awscdk/base.ts",
|
|
2907
|
+
"line": 70
|
|
2908
|
+
},
|
|
2909
|
+
"name": "name",
|
|
2910
|
+
"type": {
|
|
2911
|
+
"primitive": "string"
|
|
2912
|
+
}
|
|
2952
2913
|
},
|
|
2953
2914
|
{
|
|
2954
2915
|
"abstract": true,
|
|
@@ -2958,17 +2919,12 @@
|
|
|
2958
2919
|
"immutable": true,
|
|
2959
2920
|
"locationInModule": {
|
|
2960
2921
|
"filename": "src/awscdk/base.ts",
|
|
2961
|
-
"line":
|
|
2922
|
+
"line": 72
|
|
2962
2923
|
},
|
|
2963
|
-
"name": "
|
|
2924
|
+
"name": "diffType",
|
|
2964
2925
|
"optional": true,
|
|
2965
2926
|
"type": {
|
|
2966
|
-
"
|
|
2967
|
-
"elementtype": {
|
|
2968
|
-
"fqn": "projen-pipelines.PipelineStep"
|
|
2969
|
-
},
|
|
2970
|
-
"kind": "array"
|
|
2971
|
-
}
|
|
2927
|
+
"fqn": "projen-pipelines.CdkDiffType"
|
|
2972
2928
|
}
|
|
2973
2929
|
},
|
|
2974
2930
|
{
|
|
@@ -2979,9 +2935,9 @@
|
|
|
2979
2935
|
"immutable": true,
|
|
2980
2936
|
"locationInModule": {
|
|
2981
2937
|
"filename": "src/awscdk/base.ts",
|
|
2982
|
-
"line":
|
|
2938
|
+
"line": 74
|
|
2983
2939
|
},
|
|
2984
|
-
"name": "
|
|
2940
|
+
"name": "postDeploySteps",
|
|
2985
2941
|
"optional": true,
|
|
2986
2942
|
"type": {
|
|
2987
2943
|
"collection": {
|
|
@@ -2991,28 +2947,7 @@
|
|
|
2991
2947
|
"kind": "array"
|
|
2992
2948
|
}
|
|
2993
2949
|
}
|
|
2994
|
-
}
|
|
2995
|
-
],
|
|
2996
|
-
"symbolId": "src/awscdk/base:IndependentStage"
|
|
2997
|
-
},
|
|
2998
|
-
"projen-pipelines.NamedStageOptions": {
|
|
2999
|
-
"assembly": "projen-pipelines",
|
|
3000
|
-
"datatype": true,
|
|
3001
|
-
"docs": {
|
|
3002
|
-
"stability": "stable",
|
|
3003
|
-
"summary": "Options for a CDK stage with a name."
|
|
3004
|
-
},
|
|
3005
|
-
"fqn": "projen-pipelines.NamedStageOptions",
|
|
3006
|
-
"interfaces": [
|
|
3007
|
-
"projen-pipelines.StageOptions"
|
|
3008
|
-
],
|
|
3009
|
-
"kind": "interface",
|
|
3010
|
-
"locationInModule": {
|
|
3011
|
-
"filename": "src/awscdk/base.ts",
|
|
3012
|
-
"line": 63
|
|
3013
|
-
},
|
|
3014
|
-
"name": "NamedStageOptions",
|
|
3015
|
-
"properties": [
|
|
2950
|
+
},
|
|
3016
2951
|
{
|
|
3017
2952
|
"abstract": true,
|
|
3018
2953
|
"docs": {
|
|
@@ -3021,11 +2956,17 @@
|
|
|
3021
2956
|
"immutable": true,
|
|
3022
2957
|
"locationInModule": {
|
|
3023
2958
|
"filename": "src/awscdk/base.ts",
|
|
3024
|
-
"line":
|
|
2959
|
+
"line": 73
|
|
3025
2960
|
},
|
|
3026
|
-
"name": "
|
|
2961
|
+
"name": "postDiffSteps",
|
|
2962
|
+
"optional": true,
|
|
3027
2963
|
"type": {
|
|
3028
|
-
"
|
|
2964
|
+
"collection": {
|
|
2965
|
+
"elementtype": {
|
|
2966
|
+
"fqn": "projen-pipelines.PipelineStep"
|
|
2967
|
+
},
|
|
2968
|
+
"kind": "array"
|
|
2969
|
+
}
|
|
3029
2970
|
}
|
|
3030
2971
|
},
|
|
3031
2972
|
{
|
|
@@ -3036,7 +2977,7 @@
|
|
|
3036
2977
|
"immutable": true,
|
|
3037
2978
|
"locationInModule": {
|
|
3038
2979
|
"filename": "src/awscdk/base.ts",
|
|
3039
|
-
"line":
|
|
2980
|
+
"line": 71
|
|
3040
2981
|
},
|
|
3041
2982
|
"name": "watchable",
|
|
3042
2983
|
"optional": true,
|
|
@@ -3107,7 +3048,7 @@
|
|
|
3107
3048
|
},
|
|
3108
3049
|
"locationInModule": {
|
|
3109
3050
|
"filename": "src/steps/step.ts",
|
|
3110
|
-
"line":
|
|
3051
|
+
"line": 76
|
|
3111
3052
|
},
|
|
3112
3053
|
"parameters": [
|
|
3113
3054
|
{
|
|
@@ -3124,7 +3065,7 @@
|
|
|
3124
3065
|
"kind": "class",
|
|
3125
3066
|
"locationInModule": {
|
|
3126
3067
|
"filename": "src/steps/step.ts",
|
|
3127
|
-
"line":
|
|
3068
|
+
"line": 70
|
|
3128
3069
|
},
|
|
3129
3070
|
"methods": [
|
|
3130
3071
|
{
|
|
@@ -3135,7 +3076,7 @@
|
|
|
3135
3076
|
},
|
|
3136
3077
|
"locationInModule": {
|
|
3137
3078
|
"filename": "src/steps/step.ts",
|
|
3138
|
-
"line":
|
|
3079
|
+
"line": 104
|
|
3139
3080
|
},
|
|
3140
3081
|
"name": "toBash",
|
|
3141
3082
|
"returns": {
|
|
@@ -3152,7 +3093,7 @@
|
|
|
3152
3093
|
},
|
|
3153
3094
|
"locationInModule": {
|
|
3154
3095
|
"filename": "src/steps/step.ts",
|
|
3155
|
-
"line":
|
|
3096
|
+
"line": 97
|
|
3156
3097
|
},
|
|
3157
3098
|
"name": "toCodeCatalyst",
|
|
3158
3099
|
"returns": {
|
|
@@ -3169,7 +3110,7 @@
|
|
|
3169
3110
|
},
|
|
3170
3111
|
"locationInModule": {
|
|
3171
3112
|
"filename": "src/steps/step.ts",
|
|
3172
|
-
"line":
|
|
3113
|
+
"line": 90
|
|
3173
3114
|
},
|
|
3174
3115
|
"name": "toGithub",
|
|
3175
3116
|
"returns": {
|
|
@@ -3186,7 +3127,7 @@
|
|
|
3186
3127
|
},
|
|
3187
3128
|
"locationInModule": {
|
|
3188
3129
|
"filename": "src/steps/step.ts",
|
|
3189
|
-
"line":
|
|
3130
|
+
"line": 83
|
|
3190
3131
|
},
|
|
3191
3132
|
"name": "toGitlab",
|
|
3192
3133
|
"returns": {
|
|
@@ -3205,7 +3146,7 @@
|
|
|
3205
3146
|
},
|
|
3206
3147
|
"locationInModule": {
|
|
3207
3148
|
"filename": "src/steps/step.ts",
|
|
3208
|
-
"line":
|
|
3149
|
+
"line": 76
|
|
3209
3150
|
},
|
|
3210
3151
|
"name": "project",
|
|
3211
3152
|
"protected": true,
|
|
@@ -3216,6 +3157,54 @@
|
|
|
3216
3157
|
],
|
|
3217
3158
|
"symbolId": "src/steps/step:PipelineStep"
|
|
3218
3159
|
},
|
|
3160
|
+
"projen-pipelines.ProjenScriptStep": {
|
|
3161
|
+
"assembly": "projen-pipelines",
|
|
3162
|
+
"base": "projen-pipelines.SimpleCommandStep",
|
|
3163
|
+
"docs": {
|
|
3164
|
+
"stability": "stable"
|
|
3165
|
+
},
|
|
3166
|
+
"fqn": "projen-pipelines.ProjenScriptStep",
|
|
3167
|
+
"initializer": {
|
|
3168
|
+
"docs": {
|
|
3169
|
+
"stability": "stable"
|
|
3170
|
+
},
|
|
3171
|
+
"locationInModule": {
|
|
3172
|
+
"filename": "src/steps/step.ts",
|
|
3173
|
+
"line": 171
|
|
3174
|
+
},
|
|
3175
|
+
"parameters": [
|
|
3176
|
+
{
|
|
3177
|
+
"docs": {
|
|
3178
|
+
"summary": "- The projen project reference."
|
|
3179
|
+
},
|
|
3180
|
+
"name": "project",
|
|
3181
|
+
"type": {
|
|
3182
|
+
"fqn": "projen.Project"
|
|
3183
|
+
}
|
|
3184
|
+
},
|
|
3185
|
+
{
|
|
3186
|
+
"name": "scriptName",
|
|
3187
|
+
"type": {
|
|
3188
|
+
"primitive": "string"
|
|
3189
|
+
}
|
|
3190
|
+
},
|
|
3191
|
+
{
|
|
3192
|
+
"name": "args",
|
|
3193
|
+
"optional": true,
|
|
3194
|
+
"type": {
|
|
3195
|
+
"primitive": "string"
|
|
3196
|
+
}
|
|
3197
|
+
}
|
|
3198
|
+
]
|
|
3199
|
+
},
|
|
3200
|
+
"kind": "class",
|
|
3201
|
+
"locationInModule": {
|
|
3202
|
+
"filename": "src/steps/step.ts",
|
|
3203
|
+
"line": 170
|
|
3204
|
+
},
|
|
3205
|
+
"name": "ProjenScriptStep",
|
|
3206
|
+
"symbolId": "src/steps/step:ProjenScriptStep"
|
|
3207
|
+
},
|
|
3219
3208
|
"projen-pipelines.SimpleCommandStep": {
|
|
3220
3209
|
"assembly": "projen-pipelines",
|
|
3221
3210
|
"base": "projen-pipelines.PipelineStep",
|
|
@@ -3231,7 +3220,7 @@
|
|
|
3231
3220
|
},
|
|
3232
3221
|
"locationInModule": {
|
|
3233
3222
|
"filename": "src/steps/step.ts",
|
|
3234
|
-
"line":
|
|
3223
|
+
"line": 121
|
|
3235
3224
|
},
|
|
3236
3225
|
"parameters": [
|
|
3237
3226
|
{
|
|
@@ -3262,7 +3251,7 @@
|
|
|
3262
3251
|
"kind": "class",
|
|
3263
3252
|
"locationInModule": {
|
|
3264
3253
|
"filename": "src/steps/step.ts",
|
|
3265
|
-
"line":
|
|
3254
|
+
"line": 112
|
|
3266
3255
|
},
|
|
3267
3256
|
"methods": [
|
|
3268
3257
|
{
|
|
@@ -3272,7 +3261,7 @@
|
|
|
3272
3261
|
},
|
|
3273
3262
|
"locationInModule": {
|
|
3274
3263
|
"filename": "src/steps/step.ts",
|
|
3275
|
-
"line":
|
|
3264
|
+
"line": 141
|
|
3276
3265
|
},
|
|
3277
3266
|
"name": "toBash",
|
|
3278
3267
|
"overrides": "projen-pipelines.PipelineStep",
|
|
@@ -3289,7 +3278,7 @@
|
|
|
3289
3278
|
},
|
|
3290
3279
|
"locationInModule": {
|
|
3291
3280
|
"filename": "src/steps/step.ts",
|
|
3292
|
-
"line":
|
|
3281
|
+
"line": 161
|
|
3293
3282
|
},
|
|
3294
3283
|
"name": "toCodeCatalyst",
|
|
3295
3284
|
"overrides": "projen-pipelines.PipelineStep",
|
|
@@ -3306,7 +3295,7 @@
|
|
|
3306
3295
|
},
|
|
3307
3296
|
"locationInModule": {
|
|
3308
3297
|
"filename": "src/steps/step.ts",
|
|
3309
|
-
"line":
|
|
3298
|
+
"line": 150
|
|
3310
3299
|
},
|
|
3311
3300
|
"name": "toGithub",
|
|
3312
3301
|
"overrides": "projen-pipelines.PipelineStep",
|
|
@@ -3323,7 +3312,7 @@
|
|
|
3323
3312
|
},
|
|
3324
3313
|
"locationInModule": {
|
|
3325
3314
|
"filename": "src/steps/step.ts",
|
|
3326
|
-
"line":
|
|
3315
|
+
"line": 129
|
|
3327
3316
|
},
|
|
3328
3317
|
"name": "toGitlab",
|
|
3329
3318
|
"overrides": "projen-pipelines.PipelineStep",
|
|
@@ -3338,12 +3327,11 @@
|
|
|
3338
3327
|
"properties": [
|
|
3339
3328
|
{
|
|
3340
3329
|
"docs": {
|
|
3341
|
-
"stability": "stable"
|
|
3342
|
-
"summary": "- Shell commands to execute."
|
|
3330
|
+
"stability": "stable"
|
|
3343
3331
|
},
|
|
3344
3332
|
"locationInModule": {
|
|
3345
3333
|
"filename": "src/steps/step.ts",
|
|
3346
|
-
"line":
|
|
3334
|
+
"line": 114
|
|
3347
3335
|
},
|
|
3348
3336
|
"name": "commands",
|
|
3349
3337
|
"protected": true,
|
|
@@ -3370,7 +3358,7 @@
|
|
|
3370
3358
|
"kind": "interface",
|
|
3371
3359
|
"locationInModule": {
|
|
3372
3360
|
"filename": "src/awscdk/base.ts",
|
|
3373
|
-
"line":
|
|
3361
|
+
"line": 80
|
|
3374
3362
|
},
|
|
3375
3363
|
"name": "StageOptions",
|
|
3376
3364
|
"properties": [
|
|
@@ -3382,7 +3370,7 @@
|
|
|
3382
3370
|
"immutable": true,
|
|
3383
3371
|
"locationInModule": {
|
|
3384
3372
|
"filename": "src/awscdk/base.ts",
|
|
3385
|
-
"line":
|
|
3373
|
+
"line": 81
|
|
3386
3374
|
},
|
|
3387
3375
|
"name": "env",
|
|
3388
3376
|
"type": {
|
|
@@ -3392,6 +3380,187 @@
|
|
|
3392
3380
|
],
|
|
3393
3381
|
"symbolId": "src/awscdk/base:StageOptions"
|
|
3394
3382
|
},
|
|
3383
|
+
"projen-pipelines.StepSequence": {
|
|
3384
|
+
"assembly": "projen-pipelines",
|
|
3385
|
+
"base": "projen-pipelines.PipelineStep",
|
|
3386
|
+
"docs": {
|
|
3387
|
+
"stability": "stable"
|
|
3388
|
+
},
|
|
3389
|
+
"fqn": "projen-pipelines.StepSequence",
|
|
3390
|
+
"initializer": {
|
|
3391
|
+
"docs": {
|
|
3392
|
+
"stability": "stable",
|
|
3393
|
+
"summary": "Constructs a sequence of pipeline steps."
|
|
3394
|
+
},
|
|
3395
|
+
"locationInModule": {
|
|
3396
|
+
"filename": "src/steps/step.ts",
|
|
3397
|
+
"line": 186
|
|
3398
|
+
},
|
|
3399
|
+
"parameters": [
|
|
3400
|
+
{
|
|
3401
|
+
"docs": {
|
|
3402
|
+
"summary": "- The projen project reference."
|
|
3403
|
+
},
|
|
3404
|
+
"name": "project",
|
|
3405
|
+
"type": {
|
|
3406
|
+
"fqn": "projen.Project"
|
|
3407
|
+
}
|
|
3408
|
+
},
|
|
3409
|
+
{
|
|
3410
|
+
"docs": {
|
|
3411
|
+
"summary": "- The sequence of pipeline steps."
|
|
3412
|
+
},
|
|
3413
|
+
"name": "steps",
|
|
3414
|
+
"type": {
|
|
3415
|
+
"collection": {
|
|
3416
|
+
"elementtype": {
|
|
3417
|
+
"fqn": "projen-pipelines.PipelineStep"
|
|
3418
|
+
},
|
|
3419
|
+
"kind": "array"
|
|
3420
|
+
}
|
|
3421
|
+
}
|
|
3422
|
+
}
|
|
3423
|
+
]
|
|
3424
|
+
},
|
|
3425
|
+
"kind": "class",
|
|
3426
|
+
"locationInModule": {
|
|
3427
|
+
"filename": "src/steps/step.ts",
|
|
3428
|
+
"line": 177
|
|
3429
|
+
},
|
|
3430
|
+
"methods": [
|
|
3431
|
+
{
|
|
3432
|
+
"docs": {
|
|
3433
|
+
"stability": "stable"
|
|
3434
|
+
},
|
|
3435
|
+
"locationInModule": {
|
|
3436
|
+
"filename": "src/steps/step.ts",
|
|
3437
|
+
"line": 271
|
|
3438
|
+
},
|
|
3439
|
+
"name": "addSteps",
|
|
3440
|
+
"parameters": [
|
|
3441
|
+
{
|
|
3442
|
+
"name": "steps",
|
|
3443
|
+
"type": {
|
|
3444
|
+
"fqn": "projen-pipelines.PipelineStep"
|
|
3445
|
+
},
|
|
3446
|
+
"variadic": true
|
|
3447
|
+
}
|
|
3448
|
+
],
|
|
3449
|
+
"variadic": true
|
|
3450
|
+
},
|
|
3451
|
+
{
|
|
3452
|
+
"docs": {
|
|
3453
|
+
"stability": "stable"
|
|
3454
|
+
},
|
|
3455
|
+
"locationInModule": {
|
|
3456
|
+
"filename": "src/steps/step.ts",
|
|
3457
|
+
"line": 275
|
|
3458
|
+
},
|
|
3459
|
+
"name": "prependSteps",
|
|
3460
|
+
"parameters": [
|
|
3461
|
+
{
|
|
3462
|
+
"name": "steps",
|
|
3463
|
+
"type": {
|
|
3464
|
+
"fqn": "projen-pipelines.PipelineStep"
|
|
3465
|
+
},
|
|
3466
|
+
"variadic": true
|
|
3467
|
+
}
|
|
3468
|
+
],
|
|
3469
|
+
"variadic": true
|
|
3470
|
+
},
|
|
3471
|
+
{
|
|
3472
|
+
"docs": {
|
|
3473
|
+
"stability": "stable",
|
|
3474
|
+
"summary": "Converts the sequence of steps into a Bash script configuration."
|
|
3475
|
+
},
|
|
3476
|
+
"locationInModule": {
|
|
3477
|
+
"filename": "src/steps/step.ts",
|
|
3478
|
+
"line": 217
|
|
3479
|
+
},
|
|
3480
|
+
"name": "toBash",
|
|
3481
|
+
"overrides": "projen-pipelines.PipelineStep",
|
|
3482
|
+
"returns": {
|
|
3483
|
+
"type": {
|
|
3484
|
+
"fqn": "projen-pipelines.BashStepConfig"
|
|
3485
|
+
}
|
|
3486
|
+
}
|
|
3487
|
+
},
|
|
3488
|
+
{
|
|
3489
|
+
"docs": {
|
|
3490
|
+
"stability": "stable",
|
|
3491
|
+
"summary": "Converts the sequence of steps into a CodeCatalyst Actions step configuration."
|
|
3492
|
+
},
|
|
3493
|
+
"locationInModule": {
|
|
3494
|
+
"filename": "src/steps/step.ts",
|
|
3495
|
+
"line": 254
|
|
3496
|
+
},
|
|
3497
|
+
"name": "toCodeCatalyst",
|
|
3498
|
+
"overrides": "projen-pipelines.PipelineStep",
|
|
3499
|
+
"returns": {
|
|
3500
|
+
"type": {
|
|
3501
|
+
"fqn": "projen-pipelines.CodeCatalystStepConfig"
|
|
3502
|
+
}
|
|
3503
|
+
}
|
|
3504
|
+
},
|
|
3505
|
+
{
|
|
3506
|
+
"docs": {
|
|
3507
|
+
"stability": "stable",
|
|
3508
|
+
"summary": "Converts the sequence of steps into a GitHub Actions step configuration."
|
|
3509
|
+
},
|
|
3510
|
+
"locationInModule": {
|
|
3511
|
+
"filename": "src/steps/step.ts",
|
|
3512
|
+
"line": 229
|
|
3513
|
+
},
|
|
3514
|
+
"name": "toGithub",
|
|
3515
|
+
"overrides": "projen-pipelines.PipelineStep",
|
|
3516
|
+
"returns": {
|
|
3517
|
+
"type": {
|
|
3518
|
+
"fqn": "projen-pipelines.GithubStepConfig"
|
|
3519
|
+
}
|
|
3520
|
+
}
|
|
3521
|
+
},
|
|
3522
|
+
{
|
|
3523
|
+
"docs": {
|
|
3524
|
+
"stability": "stable",
|
|
3525
|
+
"summary": "Converts the sequence of steps into a GitLab CI configuration."
|
|
3526
|
+
},
|
|
3527
|
+
"locationInModule": {
|
|
3528
|
+
"filename": "src/steps/step.ts",
|
|
3529
|
+
"line": 194
|
|
3530
|
+
},
|
|
3531
|
+
"name": "toGitlab",
|
|
3532
|
+
"overrides": "projen-pipelines.PipelineStep",
|
|
3533
|
+
"returns": {
|
|
3534
|
+
"type": {
|
|
3535
|
+
"fqn": "projen-pipelines.GitlabStepConfig"
|
|
3536
|
+
}
|
|
3537
|
+
}
|
|
3538
|
+
}
|
|
3539
|
+
],
|
|
3540
|
+
"name": "StepSequence",
|
|
3541
|
+
"properties": [
|
|
3542
|
+
{
|
|
3543
|
+
"docs": {
|
|
3544
|
+
"stability": "stable"
|
|
3545
|
+
},
|
|
3546
|
+
"locationInModule": {
|
|
3547
|
+
"filename": "src/steps/step.ts",
|
|
3548
|
+
"line": 179
|
|
3549
|
+
},
|
|
3550
|
+
"name": "steps",
|
|
3551
|
+
"protected": true,
|
|
3552
|
+
"type": {
|
|
3553
|
+
"collection": {
|
|
3554
|
+
"elementtype": {
|
|
3555
|
+
"fqn": "projen-pipelines.PipelineStep"
|
|
3556
|
+
},
|
|
3557
|
+
"kind": "array"
|
|
3558
|
+
}
|
|
3559
|
+
}
|
|
3560
|
+
}
|
|
3561
|
+
],
|
|
3562
|
+
"symbolId": "src/steps/step:StepSequence"
|
|
3563
|
+
},
|
|
3395
3564
|
"projen-pipelines.UploadArtifactStep": {
|
|
3396
3565
|
"assembly": "projen-pipelines",
|
|
3397
3566
|
"base": "projen-pipelines.PipelineStep",
|
|
@@ -3518,6 +3687,6 @@
|
|
|
3518
3687
|
"symbolId": "src/steps/artifact-steps:UploadArtifactStepConfig"
|
|
3519
3688
|
}
|
|
3520
3689
|
},
|
|
3521
|
-
"version": "0.
|
|
3522
|
-
"fingerprint": "
|
|
3690
|
+
"version": "0.2.1",
|
|
3691
|
+
"fingerprint": "00beJnQJmNXbYjv8I71Wc8Ef51I4PU0R6ueePngio0I="
|
|
3523
3692
|
}
|