projen-pipelines 0.0.55 → 0.0.57
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 +666 -93
- package/API.md +482 -9
- package/lib/awscdk/base.d.ts +6 -10
- package/lib/awscdk/base.js +3 -18
- package/lib/awscdk/bash.d.ts +2 -0
- package/lib/awscdk/bash.js +14 -2
- package/lib/awscdk/github.d.ts +34 -0
- package/lib/awscdk/github.js +50 -4
- package/lib/awscdk/gitlab.d.ts +2 -0
- package/lib/awscdk/gitlab.js +35 -10
- package/lib/engine.d.ts +12 -0
- package/lib/engine.js +19 -0
- package/lib/index.d.ts +2 -0
- package/lib/index.js +3 -1
- package/lib/steps/index.d.ts +1 -0
- package/lib/steps/index.js +14 -0
- package/lib/steps/step.d.ts +77 -0
- package/lib/steps/step.js +66 -0
- package/package.json +4 -4
package/.jsii
CHANGED
|
@@ -130,7 +130,7 @@
|
|
|
130
130
|
},
|
|
131
131
|
"locationInModule": {
|
|
132
132
|
"filename": "src/awscdk/bash.ts",
|
|
133
|
-
"line":
|
|
133
|
+
"line": 11
|
|
134
134
|
},
|
|
135
135
|
"parameters": [
|
|
136
136
|
{
|
|
@@ -150,8 +150,26 @@
|
|
|
150
150
|
"kind": "class",
|
|
151
151
|
"locationInModule": {
|
|
152
152
|
"filename": "src/awscdk/bash.ts",
|
|
153
|
-
"line":
|
|
153
|
+
"line": 9
|
|
154
154
|
},
|
|
155
|
+
"methods": [
|
|
156
|
+
{
|
|
157
|
+
"docs": {
|
|
158
|
+
"stability": "stable"
|
|
159
|
+
},
|
|
160
|
+
"locationInModule": {
|
|
161
|
+
"filename": "src/awscdk/bash.ts",
|
|
162
|
+
"line": 78
|
|
163
|
+
},
|
|
164
|
+
"name": "engineType",
|
|
165
|
+
"overrides": "projen-pipelines.CDKPipeline",
|
|
166
|
+
"returns": {
|
|
167
|
+
"type": {
|
|
168
|
+
"fqn": "projen-pipelines.PipelineEngine"
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
],
|
|
155
173
|
"name": "BashCDKPipeline",
|
|
156
174
|
"symbolId": "src/awscdk/bash:BashCDKPipeline"
|
|
157
175
|
},
|
|
@@ -168,11 +186,50 @@
|
|
|
168
186
|
"kind": "interface",
|
|
169
187
|
"locationInModule": {
|
|
170
188
|
"filename": "src/awscdk/bash.ts",
|
|
171
|
-
"line":
|
|
189
|
+
"line": 5
|
|
172
190
|
},
|
|
173
191
|
"name": "BashCDKPipelineOptions",
|
|
174
192
|
"symbolId": "src/awscdk/bash:BashCDKPipelineOptions"
|
|
175
193
|
},
|
|
194
|
+
"projen-pipelines.BashStepConfig": {
|
|
195
|
+
"assembly": "projen-pipelines",
|
|
196
|
+
"datatype": true,
|
|
197
|
+
"docs": {
|
|
198
|
+
"stability": "stable",
|
|
199
|
+
"summary": "Configuration interface for a bash script step."
|
|
200
|
+
},
|
|
201
|
+
"fqn": "projen-pipelines.BashStepConfig",
|
|
202
|
+
"kind": "interface",
|
|
203
|
+
"locationInModule": {
|
|
204
|
+
"filename": "src/steps/step.ts",
|
|
205
|
+
"line": 35
|
|
206
|
+
},
|
|
207
|
+
"name": "BashStepConfig",
|
|
208
|
+
"properties": [
|
|
209
|
+
{
|
|
210
|
+
"abstract": true,
|
|
211
|
+
"docs": {
|
|
212
|
+
"stability": "stable",
|
|
213
|
+
"summary": "Shell commands to execute."
|
|
214
|
+
},
|
|
215
|
+
"immutable": true,
|
|
216
|
+
"locationInModule": {
|
|
217
|
+
"filename": "src/steps/step.ts",
|
|
218
|
+
"line": 38
|
|
219
|
+
},
|
|
220
|
+
"name": "commands",
|
|
221
|
+
"type": {
|
|
222
|
+
"collection": {
|
|
223
|
+
"elementtype": {
|
|
224
|
+
"primitive": "string"
|
|
225
|
+
},
|
|
226
|
+
"kind": "array"
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
],
|
|
231
|
+
"symbolId": "src/steps/step:BashStepConfig"
|
|
232
|
+
},
|
|
176
233
|
"projen-pipelines.CDKPipeline": {
|
|
177
234
|
"abstract": true,
|
|
178
235
|
"assembly": "projen-pipelines",
|
|
@@ -189,7 +246,7 @@
|
|
|
189
246
|
},
|
|
190
247
|
"locationInModule": {
|
|
191
248
|
"filename": "src/awscdk/base.ts",
|
|
192
|
-
"line":
|
|
249
|
+
"line": 118
|
|
193
250
|
},
|
|
194
251
|
"parameters": [
|
|
195
252
|
{
|
|
@@ -209,7 +266,7 @@
|
|
|
209
266
|
"kind": "class",
|
|
210
267
|
"locationInModule": {
|
|
211
268
|
"filename": "src/awscdk/base.ts",
|
|
212
|
-
"line":
|
|
269
|
+
"line": 113
|
|
213
270
|
},
|
|
214
271
|
"methods": [
|
|
215
272
|
{
|
|
@@ -219,7 +276,7 @@
|
|
|
219
276
|
},
|
|
220
277
|
"locationInModule": {
|
|
221
278
|
"filename": "src/awscdk/base.ts",
|
|
222
|
-
"line":
|
|
279
|
+
"line": 225
|
|
223
280
|
},
|
|
224
281
|
"name": "createApplicationEntrypoint",
|
|
225
282
|
"protected": true
|
|
@@ -231,7 +288,7 @@
|
|
|
231
288
|
},
|
|
232
289
|
"locationInModule": {
|
|
233
290
|
"filename": "src/awscdk/base.ts",
|
|
234
|
-
"line":
|
|
291
|
+
"line": 370
|
|
235
292
|
},
|
|
236
293
|
"name": "createFeatureStage",
|
|
237
294
|
"protected": true
|
|
@@ -243,7 +300,7 @@
|
|
|
243
300
|
},
|
|
244
301
|
"locationInModule": {
|
|
245
302
|
"filename": "src/awscdk/base.ts",
|
|
246
|
-
"line":
|
|
303
|
+
"line": 350
|
|
247
304
|
},
|
|
248
305
|
"name": "createPersonalStage",
|
|
249
306
|
"protected": true
|
|
@@ -255,7 +312,7 @@
|
|
|
255
312
|
},
|
|
256
313
|
"locationInModule": {
|
|
257
314
|
"filename": "src/awscdk/base.ts",
|
|
258
|
-
"line":
|
|
315
|
+
"line": 387
|
|
259
316
|
},
|
|
260
317
|
"name": "createPipelineStage",
|
|
261
318
|
"parameters": [
|
|
@@ -278,18 +335,34 @@
|
|
|
278
335
|
},
|
|
279
336
|
"locationInModule": {
|
|
280
337
|
"filename": "src/awscdk/base.ts",
|
|
281
|
-
"line":
|
|
338
|
+
"line": 310
|
|
282
339
|
},
|
|
283
340
|
"name": "createReleaseTasks",
|
|
284
341
|
"protected": true
|
|
285
342
|
},
|
|
343
|
+
{
|
|
344
|
+
"abstract": true,
|
|
345
|
+
"docs": {
|
|
346
|
+
"stability": "stable"
|
|
347
|
+
},
|
|
348
|
+
"locationInModule": {
|
|
349
|
+
"filename": "src/awscdk/base.ts",
|
|
350
|
+
"line": 163
|
|
351
|
+
},
|
|
352
|
+
"name": "engineType",
|
|
353
|
+
"returns": {
|
|
354
|
+
"type": {
|
|
355
|
+
"fqn": "projen-pipelines.PipelineEngine"
|
|
356
|
+
}
|
|
357
|
+
}
|
|
358
|
+
},
|
|
286
359
|
{
|
|
287
360
|
"docs": {
|
|
288
361
|
"stability": "stable"
|
|
289
362
|
},
|
|
290
363
|
"locationInModule": {
|
|
291
364
|
"filename": "src/awscdk/base.ts",
|
|
292
|
-
"line":
|
|
365
|
+
"line": 199
|
|
293
366
|
},
|
|
294
367
|
"name": "getAssetUploadCommands",
|
|
295
368
|
"parameters": [
|
|
@@ -318,7 +391,7 @@
|
|
|
318
391
|
},
|
|
319
392
|
"locationInModule": {
|
|
320
393
|
"filename": "src/awscdk/base.ts",
|
|
321
|
-
"line":
|
|
394
|
+
"line": 397
|
|
322
395
|
},
|
|
323
396
|
"name": "getCliStackPattern",
|
|
324
397
|
"parameters": [
|
|
@@ -342,7 +415,7 @@
|
|
|
342
415
|
},
|
|
343
416
|
"locationInModule": {
|
|
344
417
|
"filename": "src/awscdk/base.ts",
|
|
345
|
-
"line":
|
|
418
|
+
"line": 209
|
|
346
419
|
},
|
|
347
420
|
"name": "renderDeployCommands",
|
|
348
421
|
"parameters": [
|
|
@@ -371,7 +444,7 @@
|
|
|
371
444
|
},
|
|
372
445
|
"locationInModule": {
|
|
373
446
|
"filename": "src/awscdk/base.ts",
|
|
374
|
-
"line":
|
|
447
|
+
"line": 215
|
|
375
448
|
},
|
|
376
449
|
"name": "renderDiffCommands",
|
|
377
450
|
"parameters": [
|
|
@@ -400,7 +473,7 @@
|
|
|
400
473
|
},
|
|
401
474
|
"locationInModule": {
|
|
402
475
|
"filename": "src/awscdk/base.ts",
|
|
403
|
-
"line":
|
|
476
|
+
"line": 165
|
|
404
477
|
},
|
|
405
478
|
"name": "renderInstallCommands",
|
|
406
479
|
"protected": true,
|
|
@@ -421,7 +494,7 @@
|
|
|
421
494
|
},
|
|
422
495
|
"locationInModule": {
|
|
423
496
|
"filename": "src/awscdk/base.ts",
|
|
424
|
-
"line":
|
|
497
|
+
"line": 172
|
|
425
498
|
},
|
|
426
499
|
"name": "renderInstallPackageCommands",
|
|
427
500
|
"parameters": [
|
|
@@ -457,7 +530,7 @@
|
|
|
457
530
|
},
|
|
458
531
|
"locationInModule": {
|
|
459
532
|
"filename": "src/awscdk/base.ts",
|
|
460
|
-
"line":
|
|
533
|
+
"line": 191
|
|
461
534
|
},
|
|
462
535
|
"name": "renderSynthCommands",
|
|
463
536
|
"protected": true,
|
|
@@ -482,7 +555,7 @@
|
|
|
482
555
|
"immutable": true,
|
|
483
556
|
"locationInModule": {
|
|
484
557
|
"filename": "src/awscdk/base.ts",
|
|
485
|
-
"line":
|
|
558
|
+
"line": 116
|
|
486
559
|
},
|
|
487
560
|
"name": "branchName",
|
|
488
561
|
"type": {
|
|
@@ -496,7 +569,7 @@
|
|
|
496
569
|
"immutable": true,
|
|
497
570
|
"locationInModule": {
|
|
498
571
|
"filename": "src/awscdk/base.ts",
|
|
499
|
-
"line":
|
|
572
|
+
"line": 115
|
|
500
573
|
},
|
|
501
574
|
"name": "stackPrefix",
|
|
502
575
|
"type": {
|
|
@@ -509,7 +582,7 @@
|
|
|
509
582
|
},
|
|
510
583
|
"locationInModule": {
|
|
511
584
|
"filename": "src/awscdk/base.ts",
|
|
512
|
-
"line":
|
|
585
|
+
"line": 118
|
|
513
586
|
},
|
|
514
587
|
"name": "app",
|
|
515
588
|
"protected": true,
|
|
@@ -532,7 +605,7 @@
|
|
|
532
605
|
"kind": "interface",
|
|
533
606
|
"locationInModule": {
|
|
534
607
|
"filename": "src/awscdk/base.ts",
|
|
535
|
-
"line":
|
|
608
|
+
"line": 54
|
|
536
609
|
},
|
|
537
610
|
"name": "CDKPipelineOptions",
|
|
538
611
|
"properties": [
|
|
@@ -546,7 +619,7 @@
|
|
|
546
619
|
"immutable": true,
|
|
547
620
|
"locationInModule": {
|
|
548
621
|
"filename": "src/awscdk/base.ts",
|
|
549
|
-
"line":
|
|
622
|
+
"line": 83
|
|
550
623
|
},
|
|
551
624
|
"name": "pkgNamespace",
|
|
552
625
|
"type": {
|
|
@@ -561,7 +634,7 @@
|
|
|
561
634
|
"immutable": true,
|
|
562
635
|
"locationInModule": {
|
|
563
636
|
"filename": "src/awscdk/base.ts",
|
|
564
|
-
"line":
|
|
637
|
+
"line": 85
|
|
565
638
|
},
|
|
566
639
|
"name": "stages",
|
|
567
640
|
"type": {
|
|
@@ -583,7 +656,7 @@
|
|
|
583
656
|
"immutable": true,
|
|
584
657
|
"locationInModule": {
|
|
585
658
|
"filename": "src/awscdk/base.ts",
|
|
586
|
-
"line":
|
|
659
|
+
"line": 60
|
|
587
660
|
},
|
|
588
661
|
"name": "branchName",
|
|
589
662
|
"optional": true,
|
|
@@ -602,7 +675,7 @@
|
|
|
602
675
|
"immutable": true,
|
|
603
676
|
"locationInModule": {
|
|
604
677
|
"filename": "src/awscdk/base.ts",
|
|
605
|
-
"line":
|
|
678
|
+
"line": 76
|
|
606
679
|
},
|
|
607
680
|
"name": "deploySubStacks",
|
|
608
681
|
"optional": true,
|
|
@@ -618,7 +691,7 @@
|
|
|
618
691
|
"immutable": true,
|
|
619
692
|
"locationInModule": {
|
|
620
693
|
"filename": "src/awscdk/base.ts",
|
|
621
|
-
"line":
|
|
694
|
+
"line": 89
|
|
622
695
|
},
|
|
623
696
|
"name": "featureStages",
|
|
624
697
|
"optional": true,
|
|
@@ -634,7 +707,7 @@
|
|
|
634
707
|
"immutable": true,
|
|
635
708
|
"locationInModule": {
|
|
636
709
|
"filename": "src/awscdk/base.ts",
|
|
637
|
-
"line":
|
|
710
|
+
"line": 87
|
|
638
711
|
},
|
|
639
712
|
"name": "personalStage",
|
|
640
713
|
"optional": true,
|
|
@@ -650,7 +723,7 @@
|
|
|
650
723
|
"immutable": true,
|
|
651
724
|
"locationInModule": {
|
|
652
725
|
"filename": "src/awscdk/base.ts",
|
|
653
|
-
"line":
|
|
726
|
+
"line": 102
|
|
654
727
|
},
|
|
655
728
|
"name": "postSynthCommands",
|
|
656
729
|
"optional": true,
|
|
@@ -671,7 +744,28 @@
|
|
|
671
744
|
"immutable": true,
|
|
672
745
|
"locationInModule": {
|
|
673
746
|
"filename": "src/awscdk/base.ts",
|
|
674
|
-
"line":
|
|
747
|
+
"line": 106
|
|
748
|
+
},
|
|
749
|
+
"name": "postSynthSteps",
|
|
750
|
+
"optional": true,
|
|
751
|
+
"type": {
|
|
752
|
+
"collection": {
|
|
753
|
+
"elementtype": {
|
|
754
|
+
"fqn": "projen-pipelines.PipelineStep"
|
|
755
|
+
},
|
|
756
|
+
"kind": "array"
|
|
757
|
+
}
|
|
758
|
+
}
|
|
759
|
+
},
|
|
760
|
+
{
|
|
761
|
+
"abstract": true,
|
|
762
|
+
"docs": {
|
|
763
|
+
"stability": "stable"
|
|
764
|
+
},
|
|
765
|
+
"immutable": true,
|
|
766
|
+
"locationInModule": {
|
|
767
|
+
"filename": "src/awscdk/base.ts",
|
|
768
|
+
"line": 100
|
|
675
769
|
},
|
|
676
770
|
"name": "preInstallCommands",
|
|
677
771
|
"optional": true,
|
|
@@ -692,7 +786,28 @@
|
|
|
692
786
|
"immutable": true,
|
|
693
787
|
"locationInModule": {
|
|
694
788
|
"filename": "src/awscdk/base.ts",
|
|
695
|
-
"line":
|
|
789
|
+
"line": 104
|
|
790
|
+
},
|
|
791
|
+
"name": "preInstallSteps",
|
|
792
|
+
"optional": true,
|
|
793
|
+
"type": {
|
|
794
|
+
"collection": {
|
|
795
|
+
"elementtype": {
|
|
796
|
+
"fqn": "projen-pipelines.PipelineStep"
|
|
797
|
+
},
|
|
798
|
+
"kind": "array"
|
|
799
|
+
}
|
|
800
|
+
}
|
|
801
|
+
},
|
|
802
|
+
{
|
|
803
|
+
"abstract": true,
|
|
804
|
+
"docs": {
|
|
805
|
+
"stability": "stable"
|
|
806
|
+
},
|
|
807
|
+
"immutable": true,
|
|
808
|
+
"locationInModule": {
|
|
809
|
+
"filename": "src/awscdk/base.ts",
|
|
810
|
+
"line": 101
|
|
696
811
|
},
|
|
697
812
|
"name": "preSynthCommands",
|
|
698
813
|
"optional": true,
|
|
@@ -705,6 +820,27 @@
|
|
|
705
820
|
}
|
|
706
821
|
}
|
|
707
822
|
},
|
|
823
|
+
{
|
|
824
|
+
"abstract": true,
|
|
825
|
+
"docs": {
|
|
826
|
+
"stability": "stable"
|
|
827
|
+
},
|
|
828
|
+
"immutable": true,
|
|
829
|
+
"locationInModule": {
|
|
830
|
+
"filename": "src/awscdk/base.ts",
|
|
831
|
+
"line": 105
|
|
832
|
+
},
|
|
833
|
+
"name": "preSynthSteps",
|
|
834
|
+
"optional": true,
|
|
835
|
+
"type": {
|
|
836
|
+
"collection": {
|
|
837
|
+
"elementtype": {
|
|
838
|
+
"fqn": "projen-pipelines.PipelineStep"
|
|
839
|
+
},
|
|
840
|
+
"kind": "array"
|
|
841
|
+
}
|
|
842
|
+
}
|
|
843
|
+
},
|
|
708
844
|
{
|
|
709
845
|
"abstract": true,
|
|
710
846
|
"docs": {
|
|
@@ -715,7 +851,7 @@
|
|
|
715
851
|
"immutable": true,
|
|
716
852
|
"locationInModule": {
|
|
717
853
|
"filename": "src/awscdk/base.ts",
|
|
718
|
-
"line":
|
|
854
|
+
"line": 68
|
|
719
855
|
},
|
|
720
856
|
"name": "stackPrefix",
|
|
721
857
|
"optional": true,
|
|
@@ -736,7 +872,7 @@
|
|
|
736
872
|
"kind": "interface",
|
|
737
873
|
"locationInModule": {
|
|
738
874
|
"filename": "src/awscdk/base.ts",
|
|
739
|
-
"line":
|
|
875
|
+
"line": 38
|
|
740
876
|
},
|
|
741
877
|
"name": "DeploymentStage",
|
|
742
878
|
"properties": [
|
|
@@ -748,7 +884,7 @@
|
|
|
748
884
|
"immutable": true,
|
|
749
885
|
"locationInModule": {
|
|
750
886
|
"filename": "src/awscdk/base.ts",
|
|
751
|
-
"line":
|
|
887
|
+
"line": 40
|
|
752
888
|
},
|
|
753
889
|
"name": "env",
|
|
754
890
|
"type": {
|
|
@@ -763,7 +899,7 @@
|
|
|
763
899
|
"immutable": true,
|
|
764
900
|
"locationInModule": {
|
|
765
901
|
"filename": "src/awscdk/base.ts",
|
|
766
|
-
"line":
|
|
902
|
+
"line": 39
|
|
767
903
|
},
|
|
768
904
|
"name": "name",
|
|
769
905
|
"type": {
|
|
@@ -778,7 +914,7 @@
|
|
|
778
914
|
"immutable": true,
|
|
779
915
|
"locationInModule": {
|
|
780
916
|
"filename": "src/awscdk/base.ts",
|
|
781
|
-
"line":
|
|
917
|
+
"line": 41
|
|
782
918
|
},
|
|
783
919
|
"name": "manualApproval",
|
|
784
920
|
"optional": true,
|
|
@@ -801,7 +937,7 @@
|
|
|
801
937
|
"kind": "interface",
|
|
802
938
|
"locationInModule": {
|
|
803
939
|
"filename": "src/awscdk/base.ts",
|
|
804
|
-
"line":
|
|
940
|
+
"line": 12
|
|
805
941
|
},
|
|
806
942
|
"name": "Environment",
|
|
807
943
|
"properties": [
|
|
@@ -815,7 +951,7 @@
|
|
|
815
951
|
"immutable": true,
|
|
816
952
|
"locationInModule": {
|
|
817
953
|
"filename": "src/awscdk/base.ts",
|
|
818
|
-
"line":
|
|
954
|
+
"line": 18
|
|
819
955
|
},
|
|
820
956
|
"name": "account",
|
|
821
957
|
"type": {
|
|
@@ -832,7 +968,7 @@
|
|
|
832
968
|
"immutable": true,
|
|
833
969
|
"locationInModule": {
|
|
834
970
|
"filename": "src/awscdk/base.ts",
|
|
835
|
-
"line":
|
|
971
|
+
"line": 25
|
|
836
972
|
},
|
|
837
973
|
"name": "region",
|
|
838
974
|
"type": {
|
|
@@ -846,25 +982,33 @@
|
|
|
846
982
|
"assembly": "projen-pipelines",
|
|
847
983
|
"base": "projen-pipelines.CDKPipeline",
|
|
848
984
|
"docs": {
|
|
849
|
-
"stability": "stable"
|
|
985
|
+
"stability": "stable",
|
|
986
|
+
"summary": "Implements a CDK Pipeline configured specifically for GitHub workflows."
|
|
850
987
|
},
|
|
851
988
|
"fqn": "projen-pipelines.GithubCDKPipeline",
|
|
852
989
|
"initializer": {
|
|
853
990
|
"docs": {
|
|
854
|
-
"stability": "stable"
|
|
991
|
+
"stability": "stable",
|
|
992
|
+
"summary": "Constructs a new GithubCDKPipeline instance."
|
|
855
993
|
},
|
|
856
994
|
"locationInModule": {
|
|
857
995
|
"filename": "src/awscdk/github.ts",
|
|
858
|
-
"line":
|
|
996
|
+
"line": 48
|
|
859
997
|
},
|
|
860
998
|
"parameters": [
|
|
861
999
|
{
|
|
1000
|
+
"docs": {
|
|
1001
|
+
"summary": "- The CDK app associated with this pipeline."
|
|
1002
|
+
},
|
|
862
1003
|
"name": "app",
|
|
863
1004
|
"type": {
|
|
864
1005
|
"fqn": "projen.awscdk.AwsCdkTypeScriptApp"
|
|
865
1006
|
}
|
|
866
1007
|
},
|
|
867
1008
|
{
|
|
1009
|
+
"docs": {
|
|
1010
|
+
"summary": "- Configuration options for the pipeline."
|
|
1011
|
+
},
|
|
868
1012
|
"name": "options",
|
|
869
1013
|
"type": {
|
|
870
1014
|
"fqn": "projen-pipelines.GithubCDKPipelineOptions"
|
|
@@ -875,48 +1019,71 @@
|
|
|
875
1019
|
"kind": "class",
|
|
876
1020
|
"locationInModule": {
|
|
877
1021
|
"filename": "src/awscdk/github.ts",
|
|
878
|
-
"line":
|
|
1022
|
+
"line": 33
|
|
879
1023
|
},
|
|
880
1024
|
"methods": [
|
|
881
1025
|
{
|
|
882
1026
|
"docs": {
|
|
883
|
-
"stability": "stable"
|
|
1027
|
+
"stability": "stable",
|
|
1028
|
+
"summary": "Creates a job to upload assets to AWS as part of the pipeline."
|
|
884
1029
|
},
|
|
885
1030
|
"locationInModule": {
|
|
886
1031
|
"filename": "src/awscdk/github.ts",
|
|
887
|
-
"line":
|
|
1032
|
+
"line": 136
|
|
888
1033
|
},
|
|
889
1034
|
"name": "createAssetUpload"
|
|
890
1035
|
},
|
|
891
1036
|
{
|
|
892
1037
|
"docs": {
|
|
893
|
-
"stability": "stable"
|
|
1038
|
+
"stability": "stable",
|
|
1039
|
+
"summary": "Creates a job to deploy the CDK application to AWS."
|
|
894
1040
|
},
|
|
895
1041
|
"locationInModule": {
|
|
896
1042
|
"filename": "src/awscdk/github.ts",
|
|
897
|
-
"line":
|
|
1043
|
+
"line": 185
|
|
898
1044
|
},
|
|
899
1045
|
"name": "createDeployment",
|
|
900
1046
|
"parameters": [
|
|
901
1047
|
{
|
|
1048
|
+
"docs": {
|
|
1049
|
+
"summary": "- The deployment stage to create."
|
|
1050
|
+
},
|
|
902
1051
|
"name": "stage",
|
|
903
1052
|
"type": {
|
|
904
1053
|
"fqn": "projen-pipelines.DeploymentStage"
|
|
905
1054
|
}
|
|
906
1055
|
}
|
|
907
1056
|
]
|
|
1057
|
+
},
|
|
1058
|
+
{
|
|
1059
|
+
"docs": {
|
|
1060
|
+
"stability": "stable",
|
|
1061
|
+
"summary": "the type of engine this implementation of CDKPipeline is for."
|
|
1062
|
+
},
|
|
1063
|
+
"locationInModule": {
|
|
1064
|
+
"filename": "src/awscdk/github.ts",
|
|
1065
|
+
"line": 74
|
|
1066
|
+
},
|
|
1067
|
+
"name": "engineType",
|
|
1068
|
+
"overrides": "projen-pipelines.CDKPipeline",
|
|
1069
|
+
"returns": {
|
|
1070
|
+
"type": {
|
|
1071
|
+
"fqn": "projen-pipelines.PipelineEngine"
|
|
1072
|
+
}
|
|
1073
|
+
}
|
|
908
1074
|
}
|
|
909
1075
|
],
|
|
910
1076
|
"name": "GithubCDKPipeline",
|
|
911
1077
|
"properties": [
|
|
912
1078
|
{
|
|
913
1079
|
"docs": {
|
|
914
|
-
"stability": "stable"
|
|
1080
|
+
"stability": "stable",
|
|
1081
|
+
"summary": "Indicates if versioned artifacts are needed based on manual approval requirements."
|
|
915
1082
|
},
|
|
916
1083
|
"immutable": true,
|
|
917
1084
|
"locationInModule": {
|
|
918
1085
|
"filename": "src/awscdk/github.ts",
|
|
919
|
-
"line":
|
|
1086
|
+
"line": 36
|
|
920
1087
|
},
|
|
921
1088
|
"name": "needsVersionedArtifacts",
|
|
922
1089
|
"type": {
|
|
@@ -930,7 +1097,8 @@
|
|
|
930
1097
|
"assembly": "projen-pipelines",
|
|
931
1098
|
"datatype": true,
|
|
932
1099
|
"docs": {
|
|
933
|
-
"stability": "stable"
|
|
1100
|
+
"stability": "stable",
|
|
1101
|
+
"summary": "Extension of the base CDKPipeline options including specific configurations for GitHub."
|
|
934
1102
|
},
|
|
935
1103
|
"fqn": "projen-pipelines.GithubCDKPipelineOptions",
|
|
936
1104
|
"interfaces": [
|
|
@@ -939,7 +1107,7 @@
|
|
|
939
1107
|
"kind": "interface",
|
|
940
1108
|
"locationInModule": {
|
|
941
1109
|
"filename": "src/awscdk/github.ts",
|
|
942
|
-
"line":
|
|
1110
|
+
"line": 25
|
|
943
1111
|
},
|
|
944
1112
|
"name": "GithubCDKPipelineOptions",
|
|
945
1113
|
"properties": [
|
|
@@ -951,7 +1119,7 @@
|
|
|
951
1119
|
"immutable": true,
|
|
952
1120
|
"locationInModule": {
|
|
953
1121
|
"filename": "src/awscdk/github.ts",
|
|
954
|
-
"line":
|
|
1122
|
+
"line": 26
|
|
955
1123
|
},
|
|
956
1124
|
"name": "iamRoleArns",
|
|
957
1125
|
"type": {
|
|
@@ -965,25 +1133,27 @@
|
|
|
965
1133
|
"assembly": "projen-pipelines",
|
|
966
1134
|
"datatype": true,
|
|
967
1135
|
"docs": {
|
|
968
|
-
"stability": "stable"
|
|
1136
|
+
"stability": "stable",
|
|
1137
|
+
"summary": "Configuration interface for GitHub-specific IAM roles used in the CDK pipeline."
|
|
969
1138
|
},
|
|
970
1139
|
"fqn": "projen-pipelines.GithubIamRoleConfig",
|
|
971
1140
|
"kind": "interface",
|
|
972
1141
|
"locationInModule": {
|
|
973
1142
|
"filename": "src/awscdk/github.ts",
|
|
974
|
-
"line":
|
|
1143
|
+
"line": 10
|
|
975
1144
|
},
|
|
976
1145
|
"name": "GithubIamRoleConfig",
|
|
977
1146
|
"properties": [
|
|
978
1147
|
{
|
|
979
1148
|
"abstract": true,
|
|
980
1149
|
"docs": {
|
|
981
|
-
"stability": "stable"
|
|
1150
|
+
"stability": "stable",
|
|
1151
|
+
"summary": "IAM role ARN for the asset publishing step."
|
|
982
1152
|
},
|
|
983
1153
|
"immutable": true,
|
|
984
1154
|
"locationInModule": {
|
|
985
1155
|
"filename": "src/awscdk/github.ts",
|
|
986
|
-
"line":
|
|
1156
|
+
"line": 17
|
|
987
1157
|
},
|
|
988
1158
|
"name": "assetPublishing",
|
|
989
1159
|
"optional": true,
|
|
@@ -994,12 +1164,13 @@
|
|
|
994
1164
|
{
|
|
995
1165
|
"abstract": true,
|
|
996
1166
|
"docs": {
|
|
997
|
-
"stability": "stable"
|
|
1167
|
+
"stability": "stable",
|
|
1168
|
+
"summary": "Default IAM role ARN used if no specific role is provided."
|
|
998
1169
|
},
|
|
999
1170
|
"immutable": true,
|
|
1000
1171
|
"locationInModule": {
|
|
1001
1172
|
"filename": "src/awscdk/github.ts",
|
|
1002
|
-
"line":
|
|
1173
|
+
"line": 13
|
|
1003
1174
|
},
|
|
1004
1175
|
"name": "default",
|
|
1005
1176
|
"optional": true,
|
|
@@ -1010,12 +1181,13 @@
|
|
|
1010
1181
|
{
|
|
1011
1182
|
"abstract": true,
|
|
1012
1183
|
"docs": {
|
|
1013
|
-
"stability": "stable"
|
|
1184
|
+
"stability": "stable",
|
|
1185
|
+
"summary": "IAM role ARNs for different deployment stages."
|
|
1014
1186
|
},
|
|
1015
1187
|
"immutable": true,
|
|
1016
1188
|
"locationInModule": {
|
|
1017
1189
|
"filename": "src/awscdk/github.ts",
|
|
1018
|
-
"line":
|
|
1190
|
+
"line": 19
|
|
1019
1191
|
},
|
|
1020
1192
|
"name": "deployment",
|
|
1021
1193
|
"optional": true,
|
|
@@ -1031,12 +1203,13 @@
|
|
|
1031
1203
|
{
|
|
1032
1204
|
"abstract": true,
|
|
1033
1205
|
"docs": {
|
|
1034
|
-
"stability": "stable"
|
|
1206
|
+
"stability": "stable",
|
|
1207
|
+
"summary": "IAM role ARN for the synthesis step."
|
|
1035
1208
|
},
|
|
1036
1209
|
"immutable": true,
|
|
1037
1210
|
"locationInModule": {
|
|
1038
1211
|
"filename": "src/awscdk/github.ts",
|
|
1039
|
-
"line":
|
|
1212
|
+
"line": 15
|
|
1040
1213
|
},
|
|
1041
1214
|
"name": "synth",
|
|
1042
1215
|
"optional": true,
|
|
@@ -1047,6 +1220,66 @@
|
|
|
1047
1220
|
],
|
|
1048
1221
|
"symbolId": "src/awscdk/github:GithubIamRoleConfig"
|
|
1049
1222
|
},
|
|
1223
|
+
"projen-pipelines.GithubStepConfig": {
|
|
1224
|
+
"assembly": "projen-pipelines",
|
|
1225
|
+
"datatype": true,
|
|
1226
|
+
"docs": {
|
|
1227
|
+
"stability": "stable",
|
|
1228
|
+
"summary": "Configuration interface for a GitHub Actions step."
|
|
1229
|
+
},
|
|
1230
|
+
"fqn": "projen-pipelines.GithubStepConfig",
|
|
1231
|
+
"kind": "interface",
|
|
1232
|
+
"locationInModule": {
|
|
1233
|
+
"filename": "src/steps/step.ts",
|
|
1234
|
+
"line": 23
|
|
1235
|
+
},
|
|
1236
|
+
"name": "GithubStepConfig",
|
|
1237
|
+
"properties": [
|
|
1238
|
+
{
|
|
1239
|
+
"abstract": true,
|
|
1240
|
+
"docs": {
|
|
1241
|
+
"stability": "stable",
|
|
1242
|
+
"summary": "Dependencies which need to be completed before this step."
|
|
1243
|
+
},
|
|
1244
|
+
"immutable": true,
|
|
1245
|
+
"locationInModule": {
|
|
1246
|
+
"filename": "src/steps/step.ts",
|
|
1247
|
+
"line": 26
|
|
1248
|
+
},
|
|
1249
|
+
"name": "needs",
|
|
1250
|
+
"type": {
|
|
1251
|
+
"collection": {
|
|
1252
|
+
"elementtype": {
|
|
1253
|
+
"primitive": "string"
|
|
1254
|
+
},
|
|
1255
|
+
"kind": "array"
|
|
1256
|
+
}
|
|
1257
|
+
}
|
|
1258
|
+
},
|
|
1259
|
+
{
|
|
1260
|
+
"abstract": true,
|
|
1261
|
+
"docs": {
|
|
1262
|
+
"stability": "stable",
|
|
1263
|
+
"summary": "Commands wrapped as GitHub Action job steps."
|
|
1264
|
+
},
|
|
1265
|
+
"immutable": true,
|
|
1266
|
+
"locationInModule": {
|
|
1267
|
+
"filename": "src/steps/step.ts",
|
|
1268
|
+
"line": 29
|
|
1269
|
+
},
|
|
1270
|
+
"name": "steps",
|
|
1271
|
+
"type": {
|
|
1272
|
+
"collection": {
|
|
1273
|
+
"elementtype": {
|
|
1274
|
+
"fqn": "projen.github.workflows.JobStep"
|
|
1275
|
+
},
|
|
1276
|
+
"kind": "array"
|
|
1277
|
+
}
|
|
1278
|
+
}
|
|
1279
|
+
}
|
|
1280
|
+
],
|
|
1281
|
+
"symbolId": "src/steps/step:GithubStepConfig"
|
|
1282
|
+
},
|
|
1050
1283
|
"projen-pipelines.GitlabCDKPipeline": {
|
|
1051
1284
|
"assembly": "projen-pipelines",
|
|
1052
1285
|
"base": "projen-pipelines.CDKPipeline",
|
|
@@ -1063,7 +1296,7 @@
|
|
|
1063
1296
|
},
|
|
1064
1297
|
"locationInModule": {
|
|
1065
1298
|
"filename": "src/awscdk/gitlab.ts",
|
|
1066
|
-
"line":
|
|
1299
|
+
"line": 80
|
|
1067
1300
|
},
|
|
1068
1301
|
"parameters": [
|
|
1069
1302
|
{
|
|
@@ -1089,7 +1322,7 @@
|
|
|
1089
1322
|
"kind": "class",
|
|
1090
1323
|
"locationInModule": {
|
|
1091
1324
|
"filename": "src/awscdk/gitlab.ts",
|
|
1092
|
-
"line":
|
|
1325
|
+
"line": 59
|
|
1093
1326
|
},
|
|
1094
1327
|
"methods": [
|
|
1095
1328
|
{
|
|
@@ -1100,7 +1333,7 @@
|
|
|
1100
1333
|
},
|
|
1101
1334
|
"locationInModule": {
|
|
1102
1335
|
"filename": "src/awscdk/gitlab.ts",
|
|
1103
|
-
"line":
|
|
1336
|
+
"line": 211
|
|
1104
1337
|
},
|
|
1105
1338
|
"name": "createAssetUpload",
|
|
1106
1339
|
"protected": true
|
|
@@ -1113,7 +1346,7 @@
|
|
|
1113
1346
|
},
|
|
1114
1347
|
"locationInModule": {
|
|
1115
1348
|
"filename": "src/awscdk/gitlab.ts",
|
|
1116
|
-
"line":
|
|
1349
|
+
"line": 242
|
|
1117
1350
|
},
|
|
1118
1351
|
"name": "createDeployment",
|
|
1119
1352
|
"parameters": [
|
|
@@ -1137,11 +1370,27 @@
|
|
|
1137
1370
|
},
|
|
1138
1371
|
"locationInModule": {
|
|
1139
1372
|
"filename": "src/awscdk/gitlab.ts",
|
|
1140
|
-
"line":
|
|
1373
|
+
"line": 166
|
|
1141
1374
|
},
|
|
1142
1375
|
"name": "createSynth",
|
|
1143
1376
|
"protected": true
|
|
1144
1377
|
},
|
|
1378
|
+
{
|
|
1379
|
+
"docs": {
|
|
1380
|
+
"stability": "stable"
|
|
1381
|
+
},
|
|
1382
|
+
"locationInModule": {
|
|
1383
|
+
"filename": "src/awscdk/gitlab.ts",
|
|
1384
|
+
"line": 294
|
|
1385
|
+
},
|
|
1386
|
+
"name": "engineType",
|
|
1387
|
+
"overrides": "projen-pipelines.CDKPipeline",
|
|
1388
|
+
"returns": {
|
|
1389
|
+
"type": {
|
|
1390
|
+
"fqn": "projen-pipelines.PipelineEngine"
|
|
1391
|
+
}
|
|
1392
|
+
}
|
|
1393
|
+
},
|
|
1145
1394
|
{
|
|
1146
1395
|
"docs": {
|
|
1147
1396
|
"remarks": "This method defines reusable job configurations to be extended by specific pipeline jobs,\nfacilitating artifact caching and AWS authentication setup.",
|
|
@@ -1150,7 +1399,7 @@
|
|
|
1150
1399
|
},
|
|
1151
1400
|
"locationInModule": {
|
|
1152
1401
|
"filename": "src/awscdk/gitlab.ts",
|
|
1153
|
-
"line":
|
|
1402
|
+
"line": 108
|
|
1154
1403
|
},
|
|
1155
1404
|
"name": "setupSnippets",
|
|
1156
1405
|
"protected": true
|
|
@@ -1166,7 +1415,7 @@
|
|
|
1166
1415
|
"immutable": true,
|
|
1167
1416
|
"locationInModule": {
|
|
1168
1417
|
"filename": "src/awscdk/gitlab.ts",
|
|
1169
|
-
"line":
|
|
1418
|
+
"line": 68
|
|
1170
1419
|
},
|
|
1171
1420
|
"name": "config",
|
|
1172
1421
|
"type": {
|
|
@@ -1182,7 +1431,7 @@
|
|
|
1182
1431
|
"immutable": true,
|
|
1183
1432
|
"locationInModule": {
|
|
1184
1433
|
"filename": "src/awscdk/gitlab.ts",
|
|
1185
|
-
"line":
|
|
1434
|
+
"line": 65
|
|
1186
1435
|
},
|
|
1187
1436
|
"name": "jobImage",
|
|
1188
1437
|
"type": {
|
|
@@ -1198,7 +1447,7 @@
|
|
|
1198
1447
|
"immutable": true,
|
|
1199
1448
|
"locationInModule": {
|
|
1200
1449
|
"filename": "src/awscdk/gitlab.ts",
|
|
1201
|
-
"line":
|
|
1450
|
+
"line": 62
|
|
1202
1451
|
},
|
|
1203
1452
|
"name": "needsVersionedArtifacts",
|
|
1204
1453
|
"type": {
|
|
@@ -1222,7 +1471,7 @@
|
|
|
1222
1471
|
"kind": "interface",
|
|
1223
1472
|
"locationInModule": {
|
|
1224
1473
|
"filename": "src/awscdk/gitlab.ts",
|
|
1225
|
-
"line":
|
|
1474
|
+
"line": 43
|
|
1226
1475
|
},
|
|
1227
1476
|
"name": "GitlabCDKPipelineOptions",
|
|
1228
1477
|
"properties": [
|
|
@@ -1235,7 +1484,7 @@
|
|
|
1235
1484
|
"immutable": true,
|
|
1236
1485
|
"locationInModule": {
|
|
1237
1486
|
"filename": "src/awscdk/gitlab.ts",
|
|
1238
|
-
"line":
|
|
1487
|
+
"line": 45
|
|
1239
1488
|
},
|
|
1240
1489
|
"name": "iamRoleArns",
|
|
1241
1490
|
"type": {
|
|
@@ -1251,7 +1500,7 @@
|
|
|
1251
1500
|
"immutable": true,
|
|
1252
1501
|
"locationInModule": {
|
|
1253
1502
|
"filename": "src/awscdk/gitlab.ts",
|
|
1254
|
-
"line":
|
|
1503
|
+
"line": 49
|
|
1255
1504
|
},
|
|
1256
1505
|
"name": "image",
|
|
1257
1506
|
"optional": true,
|
|
@@ -1268,7 +1517,7 @@
|
|
|
1268
1517
|
"immutable": true,
|
|
1269
1518
|
"locationInModule": {
|
|
1270
1519
|
"filename": "src/awscdk/gitlab.ts",
|
|
1271
|
-
"line":
|
|
1520
|
+
"line": 47
|
|
1272
1521
|
},
|
|
1273
1522
|
"name": "runnerTags",
|
|
1274
1523
|
"optional": true,
|
|
@@ -1291,7 +1540,7 @@
|
|
|
1291
1540
|
"kind": "interface",
|
|
1292
1541
|
"locationInModule": {
|
|
1293
1542
|
"filename": "src/awscdk/gitlab.ts",
|
|
1294
|
-
"line":
|
|
1543
|
+
"line": 10
|
|
1295
1544
|
},
|
|
1296
1545
|
"name": "GitlabIamRoleConfig",
|
|
1297
1546
|
"properties": [
|
|
@@ -1304,7 +1553,7 @@
|
|
|
1304
1553
|
"immutable": true,
|
|
1305
1554
|
"locationInModule": {
|
|
1306
1555
|
"filename": "src/awscdk/gitlab.ts",
|
|
1307
|
-
"line":
|
|
1556
|
+
"line": 16
|
|
1308
1557
|
},
|
|
1309
1558
|
"name": "assetPublishing",
|
|
1310
1559
|
"optional": true,
|
|
@@ -1321,7 +1570,7 @@
|
|
|
1321
1570
|
"immutable": true,
|
|
1322
1571
|
"locationInModule": {
|
|
1323
1572
|
"filename": "src/awscdk/gitlab.ts",
|
|
1324
|
-
"line":
|
|
1573
|
+
"line": 12
|
|
1325
1574
|
},
|
|
1326
1575
|
"name": "default",
|
|
1327
1576
|
"optional": true,
|
|
@@ -1338,7 +1587,7 @@
|
|
|
1338
1587
|
"immutable": true,
|
|
1339
1588
|
"locationInModule": {
|
|
1340
1589
|
"filename": "src/awscdk/gitlab.ts",
|
|
1341
|
-
"line":
|
|
1590
|
+
"line": 20
|
|
1342
1591
|
},
|
|
1343
1592
|
"name": "deployment",
|
|
1344
1593
|
"optional": true,
|
|
@@ -1360,7 +1609,7 @@
|
|
|
1360
1609
|
"immutable": true,
|
|
1361
1610
|
"locationInModule": {
|
|
1362
1611
|
"filename": "src/awscdk/gitlab.ts",
|
|
1363
|
-
"line":
|
|
1612
|
+
"line": 18
|
|
1364
1613
|
},
|
|
1365
1614
|
"name": "diff",
|
|
1366
1615
|
"optional": true,
|
|
@@ -1382,7 +1631,7 @@
|
|
|
1382
1631
|
"immutable": true,
|
|
1383
1632
|
"locationInModule": {
|
|
1384
1633
|
"filename": "src/awscdk/gitlab.ts",
|
|
1385
|
-
"line":
|
|
1634
|
+
"line": 14
|
|
1386
1635
|
},
|
|
1387
1636
|
"name": "synth",
|
|
1388
1637
|
"optional": true,
|
|
@@ -1405,7 +1654,7 @@
|
|
|
1405
1654
|
"kind": "interface",
|
|
1406
1655
|
"locationInModule": {
|
|
1407
1656
|
"filename": "src/awscdk/gitlab.ts",
|
|
1408
|
-
"line":
|
|
1657
|
+
"line": 27
|
|
1409
1658
|
},
|
|
1410
1659
|
"name": "GitlabRunnerTags",
|
|
1411
1660
|
"properties": [
|
|
@@ -1418,7 +1667,7 @@
|
|
|
1418
1667
|
"immutable": true,
|
|
1419
1668
|
"locationInModule": {
|
|
1420
1669
|
"filename": "src/awscdk/gitlab.ts",
|
|
1421
|
-
"line":
|
|
1670
|
+
"line": 33
|
|
1422
1671
|
},
|
|
1423
1672
|
"name": "assetPublishing",
|
|
1424
1673
|
"optional": true,
|
|
@@ -1440,7 +1689,7 @@
|
|
|
1440
1689
|
"immutable": true,
|
|
1441
1690
|
"locationInModule": {
|
|
1442
1691
|
"filename": "src/awscdk/gitlab.ts",
|
|
1443
|
-
"line":
|
|
1692
|
+
"line": 29
|
|
1444
1693
|
},
|
|
1445
1694
|
"name": "default",
|
|
1446
1695
|
"optional": true,
|
|
@@ -1462,7 +1711,7 @@
|
|
|
1462
1711
|
"immutable": true,
|
|
1463
1712
|
"locationInModule": {
|
|
1464
1713
|
"filename": "src/awscdk/gitlab.ts",
|
|
1465
|
-
"line":
|
|
1714
|
+
"line": 37
|
|
1466
1715
|
},
|
|
1467
1716
|
"name": "deployment",
|
|
1468
1717
|
"optional": true,
|
|
@@ -1489,7 +1738,7 @@
|
|
|
1489
1738
|
"immutable": true,
|
|
1490
1739
|
"locationInModule": {
|
|
1491
1740
|
"filename": "src/awscdk/gitlab.ts",
|
|
1492
|
-
"line":
|
|
1741
|
+
"line": 35
|
|
1493
1742
|
},
|
|
1494
1743
|
"name": "diff",
|
|
1495
1744
|
"optional": true,
|
|
@@ -1516,7 +1765,7 @@
|
|
|
1516
1765
|
"immutable": true,
|
|
1517
1766
|
"locationInModule": {
|
|
1518
1767
|
"filename": "src/awscdk/gitlab.ts",
|
|
1519
|
-
"line":
|
|
1768
|
+
"line": 31
|
|
1520
1769
|
},
|
|
1521
1770
|
"name": "synth",
|
|
1522
1771
|
"optional": true,
|
|
@@ -1532,6 +1781,87 @@
|
|
|
1532
1781
|
],
|
|
1533
1782
|
"symbolId": "src/awscdk/gitlab:GitlabRunnerTags"
|
|
1534
1783
|
},
|
|
1784
|
+
"projen-pipelines.GitlabStepConfig": {
|
|
1785
|
+
"assembly": "projen-pipelines",
|
|
1786
|
+
"datatype": true,
|
|
1787
|
+
"docs": {
|
|
1788
|
+
"stability": "stable",
|
|
1789
|
+
"summary": "Configuration interface for a GitLab CI step."
|
|
1790
|
+
},
|
|
1791
|
+
"fqn": "projen-pipelines.GitlabStepConfig",
|
|
1792
|
+
"kind": "interface",
|
|
1793
|
+
"locationInModule": {
|
|
1794
|
+
"filename": "src/steps/step.ts",
|
|
1795
|
+
"line": 8
|
|
1796
|
+
},
|
|
1797
|
+
"name": "GitlabStepConfig",
|
|
1798
|
+
"properties": [
|
|
1799
|
+
{
|
|
1800
|
+
"abstract": true,
|
|
1801
|
+
"docs": {
|
|
1802
|
+
"stability": "stable",
|
|
1803
|
+
"summary": "Shell commands to execute in this step."
|
|
1804
|
+
},
|
|
1805
|
+
"immutable": true,
|
|
1806
|
+
"locationInModule": {
|
|
1807
|
+
"filename": "src/steps/step.ts",
|
|
1808
|
+
"line": 17
|
|
1809
|
+
},
|
|
1810
|
+
"name": "commands",
|
|
1811
|
+
"type": {
|
|
1812
|
+
"collection": {
|
|
1813
|
+
"elementtype": {
|
|
1814
|
+
"primitive": "string"
|
|
1815
|
+
},
|
|
1816
|
+
"kind": "array"
|
|
1817
|
+
}
|
|
1818
|
+
}
|
|
1819
|
+
},
|
|
1820
|
+
{
|
|
1821
|
+
"abstract": true,
|
|
1822
|
+
"docs": {
|
|
1823
|
+
"stability": "stable",
|
|
1824
|
+
"summary": "List of job extensions related to the step."
|
|
1825
|
+
},
|
|
1826
|
+
"immutable": true,
|
|
1827
|
+
"locationInModule": {
|
|
1828
|
+
"filename": "src/steps/step.ts",
|
|
1829
|
+
"line": 11
|
|
1830
|
+
},
|
|
1831
|
+
"name": "extensions",
|
|
1832
|
+
"type": {
|
|
1833
|
+
"collection": {
|
|
1834
|
+
"elementtype": {
|
|
1835
|
+
"primitive": "string"
|
|
1836
|
+
},
|
|
1837
|
+
"kind": "array"
|
|
1838
|
+
}
|
|
1839
|
+
}
|
|
1840
|
+
},
|
|
1841
|
+
{
|
|
1842
|
+
"abstract": true,
|
|
1843
|
+
"docs": {
|
|
1844
|
+
"stability": "stable",
|
|
1845
|
+
"summary": "Dependencies which need to be completed before this step."
|
|
1846
|
+
},
|
|
1847
|
+
"immutable": true,
|
|
1848
|
+
"locationInModule": {
|
|
1849
|
+
"filename": "src/steps/step.ts",
|
|
1850
|
+
"line": 14
|
|
1851
|
+
},
|
|
1852
|
+
"name": "needs",
|
|
1853
|
+
"type": {
|
|
1854
|
+
"collection": {
|
|
1855
|
+
"elementtype": {
|
|
1856
|
+
"fqn": "projen.gitlab.Need"
|
|
1857
|
+
},
|
|
1858
|
+
"kind": "array"
|
|
1859
|
+
}
|
|
1860
|
+
}
|
|
1861
|
+
}
|
|
1862
|
+
],
|
|
1863
|
+
"symbolId": "src/steps/step:GitlabStepConfig"
|
|
1864
|
+
},
|
|
1535
1865
|
"projen-pipelines.PipelineEngine": {
|
|
1536
1866
|
"assembly": "projen-pipelines",
|
|
1537
1867
|
"docs": {
|
|
@@ -1542,8 +1872,8 @@
|
|
|
1542
1872
|
"fqn": "projen-pipelines.PipelineEngine",
|
|
1543
1873
|
"kind": "enum",
|
|
1544
1874
|
"locationInModule": {
|
|
1545
|
-
"filename": "src/
|
|
1546
|
-
"line":
|
|
1875
|
+
"filename": "src/engine.ts",
|
|
1876
|
+
"line": 6
|
|
1547
1877
|
},
|
|
1548
1878
|
"members": [
|
|
1549
1879
|
{
|
|
@@ -1559,10 +1889,253 @@
|
|
|
1559
1889
|
"summary": "Create a .gitlab-ci.yaml file."
|
|
1560
1890
|
},
|
|
1561
1891
|
"name": "GITLAB"
|
|
1892
|
+
},
|
|
1893
|
+
{
|
|
1894
|
+
"docs": {
|
|
1895
|
+
"stability": "stable",
|
|
1896
|
+
"summary": "Create bash scripts."
|
|
1897
|
+
},
|
|
1898
|
+
"name": "BASH"
|
|
1562
1899
|
}
|
|
1563
1900
|
],
|
|
1564
1901
|
"name": "PipelineEngine",
|
|
1565
|
-
"symbolId": "src/
|
|
1902
|
+
"symbolId": "src/engine:PipelineEngine"
|
|
1903
|
+
},
|
|
1904
|
+
"projen-pipelines.PipelineStep": {
|
|
1905
|
+
"abstract": true,
|
|
1906
|
+
"assembly": "projen-pipelines",
|
|
1907
|
+
"docs": {
|
|
1908
|
+
"stability": "stable",
|
|
1909
|
+
"summary": "Abstract class defining the structure of a pipeline step."
|
|
1910
|
+
},
|
|
1911
|
+
"fqn": "projen-pipelines.PipelineStep",
|
|
1912
|
+
"initializer": {
|
|
1913
|
+
"docs": {
|
|
1914
|
+
"stability": "stable",
|
|
1915
|
+
"summary": "Initializes a new instance of a PipelineStep with a reference to a projen project."
|
|
1916
|
+
},
|
|
1917
|
+
"locationInModule": {
|
|
1918
|
+
"filename": "src/steps/step.ts",
|
|
1919
|
+
"line": 50
|
|
1920
|
+
},
|
|
1921
|
+
"parameters": [
|
|
1922
|
+
{
|
|
1923
|
+
"docs": {
|
|
1924
|
+
"summary": "- The projen project reference."
|
|
1925
|
+
},
|
|
1926
|
+
"name": "project",
|
|
1927
|
+
"type": {
|
|
1928
|
+
"fqn": "projen.Project"
|
|
1929
|
+
}
|
|
1930
|
+
}
|
|
1931
|
+
]
|
|
1932
|
+
},
|
|
1933
|
+
"kind": "class",
|
|
1934
|
+
"locationInModule": {
|
|
1935
|
+
"filename": "src/steps/step.ts",
|
|
1936
|
+
"line": 44
|
|
1937
|
+
},
|
|
1938
|
+
"methods": [
|
|
1939
|
+
{
|
|
1940
|
+
"abstract": true,
|
|
1941
|
+
"docs": {
|
|
1942
|
+
"remarks": "Must be implemented by subclasses.",
|
|
1943
|
+
"stability": "stable",
|
|
1944
|
+
"summary": "Generates a configuration for a bash script step."
|
|
1945
|
+
},
|
|
1946
|
+
"locationInModule": {
|
|
1947
|
+
"filename": "src/steps/step.ts",
|
|
1948
|
+
"line": 67
|
|
1949
|
+
},
|
|
1950
|
+
"name": "toBash",
|
|
1951
|
+
"returns": {
|
|
1952
|
+
"type": {
|
|
1953
|
+
"fqn": "projen-pipelines.BashStepConfig"
|
|
1954
|
+
}
|
|
1955
|
+
}
|
|
1956
|
+
},
|
|
1957
|
+
{
|
|
1958
|
+
"abstract": true,
|
|
1959
|
+
"docs": {
|
|
1960
|
+
"remarks": "Must be implemented by subclasses.",
|
|
1961
|
+
"stability": "stable",
|
|
1962
|
+
"summary": "Generates a configuration for a GitHub Actions step."
|
|
1963
|
+
},
|
|
1964
|
+
"locationInModule": {
|
|
1965
|
+
"filename": "src/steps/step.ts",
|
|
1966
|
+
"line": 62
|
|
1967
|
+
},
|
|
1968
|
+
"name": "toGithub",
|
|
1969
|
+
"returns": {
|
|
1970
|
+
"type": {
|
|
1971
|
+
"fqn": "projen-pipelines.GithubStepConfig"
|
|
1972
|
+
}
|
|
1973
|
+
}
|
|
1974
|
+
},
|
|
1975
|
+
{
|
|
1976
|
+
"abstract": true,
|
|
1977
|
+
"docs": {
|
|
1978
|
+
"remarks": "Must be implemented by subclasses.",
|
|
1979
|
+
"stability": "stable",
|
|
1980
|
+
"summary": "Generates a configuration for a GitLab CI step."
|
|
1981
|
+
},
|
|
1982
|
+
"locationInModule": {
|
|
1983
|
+
"filename": "src/steps/step.ts",
|
|
1984
|
+
"line": 57
|
|
1985
|
+
},
|
|
1986
|
+
"name": "toGitlab",
|
|
1987
|
+
"returns": {
|
|
1988
|
+
"type": {
|
|
1989
|
+
"fqn": "projen-pipelines.GitlabStepConfig"
|
|
1990
|
+
}
|
|
1991
|
+
}
|
|
1992
|
+
}
|
|
1993
|
+
],
|
|
1994
|
+
"name": "PipelineStep",
|
|
1995
|
+
"properties": [
|
|
1996
|
+
{
|
|
1997
|
+
"docs": {
|
|
1998
|
+
"stability": "stable",
|
|
1999
|
+
"summary": "- The projen project reference."
|
|
2000
|
+
},
|
|
2001
|
+
"locationInModule": {
|
|
2002
|
+
"filename": "src/steps/step.ts",
|
|
2003
|
+
"line": 50
|
|
2004
|
+
},
|
|
2005
|
+
"name": "project",
|
|
2006
|
+
"protected": true,
|
|
2007
|
+
"type": {
|
|
2008
|
+
"fqn": "projen.Project"
|
|
2009
|
+
}
|
|
2010
|
+
}
|
|
2011
|
+
],
|
|
2012
|
+
"symbolId": "src/steps/step:PipelineStep"
|
|
2013
|
+
},
|
|
2014
|
+
"projen-pipelines.SimpleCommandStep": {
|
|
2015
|
+
"assembly": "projen-pipelines",
|
|
2016
|
+
"base": "projen-pipelines.PipelineStep",
|
|
2017
|
+
"docs": {
|
|
2018
|
+
"stability": "stable",
|
|
2019
|
+
"summary": "Concrete implementation of PipelineStep that executes simple commands."
|
|
2020
|
+
},
|
|
2021
|
+
"fqn": "projen-pipelines.SimpleCommandStep",
|
|
2022
|
+
"initializer": {
|
|
2023
|
+
"docs": {
|
|
2024
|
+
"stability": "stable",
|
|
2025
|
+
"summary": "Constructs a simple command step with a specified set of commands."
|
|
2026
|
+
},
|
|
2027
|
+
"locationInModule": {
|
|
2028
|
+
"filename": "src/steps/step.ts",
|
|
2029
|
+
"line": 80
|
|
2030
|
+
},
|
|
2031
|
+
"parameters": [
|
|
2032
|
+
{
|
|
2033
|
+
"docs": {
|
|
2034
|
+
"summary": "- The projen project reference."
|
|
2035
|
+
},
|
|
2036
|
+
"name": "project",
|
|
2037
|
+
"type": {
|
|
2038
|
+
"fqn": "projen.Project"
|
|
2039
|
+
}
|
|
2040
|
+
},
|
|
2041
|
+
{
|
|
2042
|
+
"docs": {
|
|
2043
|
+
"summary": "- Shell commands to execute."
|
|
2044
|
+
},
|
|
2045
|
+
"name": "commands",
|
|
2046
|
+
"type": {
|
|
2047
|
+
"collection": {
|
|
2048
|
+
"elementtype": {
|
|
2049
|
+
"primitive": "string"
|
|
2050
|
+
},
|
|
2051
|
+
"kind": "array"
|
|
2052
|
+
}
|
|
2053
|
+
}
|
|
2054
|
+
}
|
|
2055
|
+
]
|
|
2056
|
+
},
|
|
2057
|
+
"kind": "class",
|
|
2058
|
+
"locationInModule": {
|
|
2059
|
+
"filename": "src/steps/step.ts",
|
|
2060
|
+
"line": 73
|
|
2061
|
+
},
|
|
2062
|
+
"methods": [
|
|
2063
|
+
{
|
|
2064
|
+
"docs": {
|
|
2065
|
+
"stability": "stable",
|
|
2066
|
+
"summary": "Converts the step into a Bash script configuration."
|
|
2067
|
+
},
|
|
2068
|
+
"locationInModule": {
|
|
2069
|
+
"filename": "src/steps/step.ts",
|
|
2070
|
+
"line": 98
|
|
2071
|
+
},
|
|
2072
|
+
"name": "toBash",
|
|
2073
|
+
"overrides": "projen-pipelines.PipelineStep",
|
|
2074
|
+
"returns": {
|
|
2075
|
+
"type": {
|
|
2076
|
+
"fqn": "projen-pipelines.BashStepConfig"
|
|
2077
|
+
}
|
|
2078
|
+
}
|
|
2079
|
+
},
|
|
2080
|
+
{
|
|
2081
|
+
"docs": {
|
|
2082
|
+
"stability": "stable",
|
|
2083
|
+
"summary": "Converts the step into a GitHub Actions step configuration."
|
|
2084
|
+
},
|
|
2085
|
+
"locationInModule": {
|
|
2086
|
+
"filename": "src/steps/step.ts",
|
|
2087
|
+
"line": 107
|
|
2088
|
+
},
|
|
2089
|
+
"name": "toGithub",
|
|
2090
|
+
"overrides": "projen-pipelines.PipelineStep",
|
|
2091
|
+
"returns": {
|
|
2092
|
+
"type": {
|
|
2093
|
+
"fqn": "projen-pipelines.GithubStepConfig"
|
|
2094
|
+
}
|
|
2095
|
+
}
|
|
2096
|
+
},
|
|
2097
|
+
{
|
|
2098
|
+
"docs": {
|
|
2099
|
+
"stability": "stable",
|
|
2100
|
+
"summary": "Converts the step into a GitLab CI configuration."
|
|
2101
|
+
},
|
|
2102
|
+
"locationInModule": {
|
|
2103
|
+
"filename": "src/steps/step.ts",
|
|
2104
|
+
"line": 87
|
|
2105
|
+
},
|
|
2106
|
+
"name": "toGitlab",
|
|
2107
|
+
"overrides": "projen-pipelines.PipelineStep",
|
|
2108
|
+
"returns": {
|
|
2109
|
+
"type": {
|
|
2110
|
+
"fqn": "projen-pipelines.GitlabStepConfig"
|
|
2111
|
+
}
|
|
2112
|
+
}
|
|
2113
|
+
}
|
|
2114
|
+
],
|
|
2115
|
+
"name": "SimpleCommandStep",
|
|
2116
|
+
"properties": [
|
|
2117
|
+
{
|
|
2118
|
+
"docs": {
|
|
2119
|
+
"stability": "stable",
|
|
2120
|
+
"summary": "- Shell commands to execute."
|
|
2121
|
+
},
|
|
2122
|
+
"locationInModule": {
|
|
2123
|
+
"filename": "src/steps/step.ts",
|
|
2124
|
+
"line": 80
|
|
2125
|
+
},
|
|
2126
|
+
"name": "commands",
|
|
2127
|
+
"protected": true,
|
|
2128
|
+
"type": {
|
|
2129
|
+
"collection": {
|
|
2130
|
+
"elementtype": {
|
|
2131
|
+
"primitive": "string"
|
|
2132
|
+
},
|
|
2133
|
+
"kind": "array"
|
|
2134
|
+
}
|
|
2135
|
+
}
|
|
2136
|
+
}
|
|
2137
|
+
],
|
|
2138
|
+
"symbolId": "src/steps/step:SimpleCommandStep"
|
|
1566
2139
|
},
|
|
1567
2140
|
"projen-pipelines.StageOptions": {
|
|
1568
2141
|
"assembly": "projen-pipelines",
|
|
@@ -1574,7 +2147,7 @@
|
|
|
1574
2147
|
"kind": "interface",
|
|
1575
2148
|
"locationInModule": {
|
|
1576
2149
|
"filename": "src/awscdk/base.ts",
|
|
1577
|
-
"line":
|
|
2150
|
+
"line": 44
|
|
1578
2151
|
},
|
|
1579
2152
|
"name": "StageOptions",
|
|
1580
2153
|
"properties": [
|
|
@@ -1586,7 +2159,7 @@
|
|
|
1586
2159
|
"immutable": true,
|
|
1587
2160
|
"locationInModule": {
|
|
1588
2161
|
"filename": "src/awscdk/base.ts",
|
|
1589
|
-
"line":
|
|
2162
|
+
"line": 45
|
|
1590
2163
|
},
|
|
1591
2164
|
"name": "env",
|
|
1592
2165
|
"type": {
|
|
@@ -1597,6 +2170,6 @@
|
|
|
1597
2170
|
"symbolId": "src/awscdk/base:StageOptions"
|
|
1598
2171
|
}
|
|
1599
2172
|
},
|
|
1600
|
-
"version": "0.0.
|
|
1601
|
-
"fingerprint": "
|
|
2173
|
+
"version": "0.0.57",
|
|
2174
|
+
"fingerprint": "lOrDXXj98+hCqqxr9eEOPb1la3EmN65btPIhGoWmduY="
|
|
1602
2175
|
}
|