@cloudsnorkel/cdk-github-runners 0.12.3 → 0.12.5

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 CHANGED
@@ -3556,7 +3556,7 @@
3556
3556
  "stability": "experimental"
3557
3557
  },
3558
3558
  "homepage": "https://github.com/CloudSnorkel/cdk-github-runners.git",
3559
- "jsiiVersion": "5.3.2 (build 6cb444d)",
3559
+ "jsiiVersion": "5.3.33 (build 023495c)",
3560
3560
  "keywords": [
3561
3561
  "aws",
3562
3562
  "aws-cdk",
@@ -4539,6 +4539,25 @@
4539
4539
  },
4540
4540
  "name": "AwsImageBuilderRunnerImageBuilderProps",
4541
4541
  "properties": [
4542
+ {
4543
+ "abstract": true,
4544
+ "docs": {
4545
+ "default": "disabled",
4546
+ "remarks": "This is only supported for Windows AMIs.",
4547
+ "stability": "experimental",
4548
+ "summary": "Options for fast launch."
4549
+ },
4550
+ "immutable": true,
4551
+ "locationInModule": {
4552
+ "filename": "src/image-builders/aws-image-builder/builder.ts",
4553
+ "line": 46
4554
+ },
4555
+ "name": "fastLaunchOptions",
4556
+ "optional": true,
4557
+ "type": {
4558
+ "fqn": "@cloudsnorkel/cdk-github-runners.FastLaunchOptions"
4559
+ }
4560
+ },
4542
4561
  {
4543
4562
  "abstract": true,
4544
4563
  "docs": {
@@ -5349,7 +5368,7 @@
5349
5368
  },
5350
5369
  "locationInModule": {
5351
5370
  "filename": "src/providers/common.ts",
5352
- "line": 484
5371
+ "line": 489
5353
5372
  },
5354
5373
  "name": "labelsFromProperties",
5355
5374
  "parameters": [
@@ -6661,7 +6680,7 @@
6661
6680
  },
6662
6681
  "locationInModule": {
6663
6682
  "filename": "src/providers/common.ts",
6664
- "line": 484
6683
+ "line": 489
6665
6684
  },
6666
6685
  "name": "labelsFromProperties",
6667
6686
  "parameters": [
@@ -7222,7 +7241,7 @@
7222
7241
  },
7223
7242
  "locationInModule": {
7224
7243
  "filename": "src/providers/common.ts",
7225
- "line": 484
7244
+ "line": 489
7226
7245
  },
7227
7246
  "name": "labelsFromProperties",
7228
7247
  "parameters": [
@@ -7940,7 +7959,7 @@
7940
7959
  },
7941
7960
  "locationInModule": {
7942
7961
  "filename": "src/providers/common.ts",
7943
- "line": 484
7962
+ "line": 489
7944
7963
  },
7945
7964
  "name": "labelsFromProperties",
7946
7965
  "parameters": [
@@ -8540,6 +8559,83 @@
8540
8559
  ],
8541
8560
  "symbolId": "src/providers/fargate:FargateRunnerProviderProps"
8542
8561
  },
8562
+ "@cloudsnorkel/cdk-github-runners.FastLaunchOptions": {
8563
+ "assembly": "@cloudsnorkel/cdk-github-runners",
8564
+ "datatype": true,
8565
+ "docs": {
8566
+ "stability": "experimental",
8567
+ "summary": "Options for fast launch."
8568
+ },
8569
+ "fqn": "@cloudsnorkel/cdk-github-runners.FastLaunchOptions",
8570
+ "kind": "interface",
8571
+ "locationInModule": {
8572
+ "filename": "src/image-builders/aws-image-builder/builder.ts",
8573
+ "line": 52
8574
+ },
8575
+ "name": "FastLaunchOptions",
8576
+ "properties": [
8577
+ {
8578
+ "abstract": true,
8579
+ "docs": {
8580
+ "custom": {
8581
+ "note": "enabling fast launch on an existing builder will not enable it for existing AMIs. It will only affect new AMIs. If you want immediate effect, trigger a new image build. Alternatively, you can create a new builder with fast launch enabled and use it for new AMIs."
8582
+ },
8583
+ "default": "false",
8584
+ "remarks": "It creates a snapshot of the root volume and uses it to launch new instances faster.\n\nThis is only supported for Windows AMIs.",
8585
+ "stability": "experimental",
8586
+ "summary": "Enable fast launch for AMIs generated by this builder."
8587
+ },
8588
+ "immutable": true,
8589
+ "locationInModule": {
8590
+ "filename": "src/image-builders/aws-image-builder/builder.ts",
8591
+ "line": 63
8592
+ },
8593
+ "name": "enabled",
8594
+ "optional": true,
8595
+ "type": {
8596
+ "primitive": "boolean"
8597
+ }
8598
+ },
8599
+ {
8600
+ "abstract": true,
8601
+ "docs": {
8602
+ "default": "6",
8603
+ "remarks": "Must be at least 6.",
8604
+ "stability": "experimental",
8605
+ "summary": "The maximum number of parallel instances that are launched for creating resources."
8606
+ },
8607
+ "immutable": true,
8608
+ "locationInModule": {
8609
+ "filename": "src/image-builders/aws-image-builder/builder.ts",
8610
+ "line": 72
8611
+ },
8612
+ "name": "maxParallelLaunches",
8613
+ "optional": true,
8614
+ "type": {
8615
+ "primitive": "number"
8616
+ }
8617
+ },
8618
+ {
8619
+ "abstract": true,
8620
+ "docs": {
8621
+ "default": "1",
8622
+ "stability": "experimental",
8623
+ "summary": "The number of pre-provisioned snapshots to keep on hand for a fast-launch enabled Windows AMI."
8624
+ },
8625
+ "immutable": true,
8626
+ "locationInModule": {
8627
+ "filename": "src/image-builders/aws-image-builder/builder.ts",
8628
+ "line": 79
8629
+ },
8630
+ "name": "targetResourceCount",
8631
+ "optional": true,
8632
+ "type": {
8633
+ "primitive": "number"
8634
+ }
8635
+ }
8636
+ ],
8637
+ "symbolId": "src/image-builders/aws-image-builder/builder:FastLaunchOptions"
8638
+ },
8543
8639
  "@cloudsnorkel/cdk-github-runners.GitHubRunners": {
8544
8640
  "assembly": "@cloudsnorkel/cdk-github-runners",
8545
8641
  "base": "constructs.Construct",
@@ -9164,7 +9260,7 @@
9164
9260
  "kind": "interface",
9165
9261
  "locationInModule": {
9166
9262
  "filename": "src/providers/common.ts",
9167
- "line": 365
9263
+ "line": 370
9168
9264
  },
9169
9265
  "name": "IRunnerAmiStatus",
9170
9266
  "properties": [
@@ -9177,7 +9273,7 @@
9177
9273
  "immutable": true,
9178
9274
  "locationInModule": {
9179
9275
  "filename": "src/providers/common.ts",
9180
- "line": 369
9276
+ "line": 374
9181
9277
  },
9182
9278
  "name": "launchTemplate",
9183
9279
  "type": {
@@ -9193,7 +9289,7 @@
9193
9289
  "immutable": true,
9194
9290
  "locationInModule": {
9195
9291
  "filename": "src/providers/common.ts",
9196
- "line": 374
9292
+ "line": 379
9197
9293
  },
9198
9294
  "name": "amiBuilderLogGroup",
9199
9295
  "optional": true,
@@ -9268,7 +9364,7 @@
9268
9364
  "kind": "interface",
9269
9365
  "locationInModule": {
9270
9366
  "filename": "src/providers/common.ts",
9271
- "line": 345
9367
+ "line": 350
9272
9368
  },
9273
9369
  "name": "IRunnerImageStatus",
9274
9370
  "properties": [
@@ -9281,7 +9377,7 @@
9281
9377
  "immutable": true,
9282
9378
  "locationInModule": {
9283
9379
  "filename": "src/providers/common.ts",
9284
- "line": 349
9380
+ "line": 354
9285
9381
  },
9286
9382
  "name": "imageRepository",
9287
9383
  "type": {
@@ -9297,7 +9393,7 @@
9297
9393
  "immutable": true,
9298
9394
  "locationInModule": {
9299
9395
  "filename": "src/providers/common.ts",
9300
- "line": 354
9396
+ "line": 359
9301
9397
  },
9302
9398
  "name": "imageTag",
9303
9399
  "type": {
@@ -9313,7 +9409,7 @@
9313
9409
  "immutable": true,
9314
9410
  "locationInModule": {
9315
9411
  "filename": "src/providers/common.ts",
9316
- "line": 359
9412
+ "line": 364
9317
9413
  },
9318
9414
  "name": "imageBuilderLogGroup",
9319
9415
  "optional": true,
@@ -9340,7 +9436,7 @@
9340
9436
  "kind": "interface",
9341
9437
  "locationInModule": {
9342
9438
  "filename": "src/providers/common.ts",
9343
- "line": 425
9439
+ "line": 430
9344
9440
  },
9345
9441
  "methods": [
9346
9442
  {
@@ -9352,7 +9448,7 @@
9352
9448
  },
9353
9449
  "locationInModule": {
9354
9450
  "filename": "src/providers/common.ts",
9355
- "line": 456
9451
+ "line": 461
9356
9452
  },
9357
9453
  "name": "getStepFunctionTask",
9358
9454
  "parameters": [
@@ -9381,7 +9477,7 @@
9381
9477
  },
9382
9478
  "locationInModule": {
9383
9479
  "filename": "src/providers/common.ts",
9384
- "line": 464
9480
+ "line": 469
9385
9481
  },
9386
9482
  "name": "grantStateMachine",
9387
9483
  "parameters": [
@@ -9405,7 +9501,7 @@
9405
9501
  },
9406
9502
  "locationInModule": {
9407
9503
  "filename": "src/providers/common.ts",
9408
- "line": 471
9504
+ "line": 476
9409
9505
  },
9410
9506
  "name": "status",
9411
9507
  "parameters": [
@@ -9438,7 +9534,7 @@
9438
9534
  "immutable": true,
9439
9535
  "locationInModule": {
9440
9536
  "filename": "src/providers/common.ts",
9441
- "line": 433
9537
+ "line": 438
9442
9538
  },
9443
9539
  "name": "labels",
9444
9540
  "type": {
@@ -9460,7 +9556,7 @@
9460
9556
  "immutable": true,
9461
9557
  "locationInModule": {
9462
9558
  "filename": "src/providers/common.ts",
9463
- "line": 440
9559
+ "line": 445
9464
9560
  },
9465
9561
  "name": "logGroup",
9466
9562
  "type": {
@@ -9477,7 +9573,7 @@
9477
9573
  "immutable": true,
9478
9574
  "locationInModule": {
9479
9575
  "filename": "src/providers/common.ts",
9480
- "line": 447
9576
+ "line": 452
9481
9577
  },
9482
9578
  "name": "retryableErrors",
9483
9579
  "type": {
@@ -9502,7 +9598,7 @@
9502
9598
  "kind": "interface",
9503
9599
  "locationInModule": {
9504
9600
  "filename": "src/providers/common.ts",
9505
- "line": 380
9601
+ "line": 385
9506
9602
  },
9507
9603
  "name": "IRunnerProviderStatus",
9508
9604
  "properties": [
@@ -9515,7 +9611,7 @@
9515
9611
  "immutable": true,
9516
9612
  "locationInModule": {
9517
9613
  "filename": "src/providers/common.ts",
9518
- "line": 389
9614
+ "line": 394
9519
9615
  },
9520
9616
  "name": "labels",
9521
9617
  "type": {
@@ -9536,7 +9632,7 @@
9536
9632
  "immutable": true,
9537
9633
  "locationInModule": {
9538
9634
  "filename": "src/providers/common.ts",
9539
- "line": 384
9635
+ "line": 389
9540
9636
  },
9541
9637
  "name": "type",
9542
9638
  "type": {
@@ -9552,7 +9648,7 @@
9552
9648
  "immutable": true,
9553
9649
  "locationInModule": {
9554
9650
  "filename": "src/providers/common.ts",
9555
- "line": 414
9651
+ "line": 419
9556
9652
  },
9557
9653
  "name": "ami",
9558
9654
  "optional": true,
@@ -9569,7 +9665,7 @@
9569
9665
  "immutable": true,
9570
9666
  "locationInModule": {
9571
9667
  "filename": "src/providers/common.ts",
9572
- "line": 409
9668
+ "line": 414
9573
9669
  },
9574
9670
  "name": "image",
9575
9671
  "optional": true,
@@ -9586,7 +9682,7 @@
9586
9682
  "immutable": true,
9587
9683
  "locationInModule": {
9588
9684
  "filename": "src/providers/common.ts",
9589
- "line": 419
9685
+ "line": 424
9590
9686
  },
9591
9687
  "name": "logGroup",
9592
9688
  "optional": true,
@@ -9603,7 +9699,7 @@
9603
9699
  "immutable": true,
9604
9700
  "locationInModule": {
9605
9701
  "filename": "src/providers/common.ts",
9606
- "line": 404
9702
+ "line": 409
9607
9703
  },
9608
9704
  "name": "roleArn",
9609
9705
  "optional": true,
@@ -9620,7 +9716,7 @@
9620
9716
  "immutable": true,
9621
9717
  "locationInModule": {
9622
9718
  "filename": "src/providers/common.ts",
9623
- "line": 399
9719
+ "line": 404
9624
9720
  },
9625
9721
  "name": "securityGroups",
9626
9722
  "optional": true,
@@ -9642,7 +9738,7 @@
9642
9738
  "immutable": true,
9643
9739
  "locationInModule": {
9644
9740
  "filename": "src/providers/common.ts",
9645
- "line": 394
9741
+ "line": 399
9646
9742
  },
9647
9743
  "name": "vpcArn",
9648
9744
  "optional": true,
@@ -9664,7 +9760,7 @@
9664
9760
  "kind": "interface",
9665
9761
  "locationInModule": {
9666
9762
  "filename": "src/image-builders/aws-image-builder/builder.ts",
9667
- "line": 43
9763
+ "line": 85
9668
9764
  },
9669
9765
  "name": "ImageBuilderAsset",
9670
9766
  "properties": [
@@ -9677,7 +9773,7 @@
9677
9773
  "immutable": true,
9678
9774
  "locationInModule": {
9679
9775
  "filename": "src/image-builders/aws-image-builder/builder.ts",
9680
- "line": 52
9776
+ "line": 94
9681
9777
  },
9682
9778
  "name": "asset",
9683
9779
  "type": {
@@ -9693,7 +9789,7 @@
9693
9789
  "immutable": true,
9694
9790
  "locationInModule": {
9695
9791
  "filename": "src/image-builders/aws-image-builder/builder.ts",
9696
- "line": 47
9792
+ "line": 89
9697
9793
  },
9698
9794
  "name": "path",
9699
9795
  "type": {
@@ -9719,7 +9815,7 @@
9719
9815
  },
9720
9816
  "locationInModule": {
9721
9817
  "filename": "src/image-builders/aws-image-builder/builder.ts",
9722
- "line": 126
9818
+ "line": 168
9723
9819
  },
9724
9820
  "parameters": [
9725
9821
  {
@@ -9745,7 +9841,7 @@
9745
9841
  "kind": "class",
9746
9842
  "locationInModule": {
9747
9843
  "filename": "src/image-builders/aws-image-builder/builder.ts",
9748
- "line": 113
9844
+ "line": 155
9749
9845
  },
9750
9846
  "methods": [
9751
9847
  {
@@ -9791,7 +9887,7 @@
9791
9887
  },
9792
9888
  "locationInModule": {
9793
9889
  "filename": "src/image-builders/aws-image-builder/builder.ts",
9794
- "line": 228
9890
+ "line": 270
9795
9891
  },
9796
9892
  "name": "grantAssetsRead",
9797
9893
  "parameters": [
@@ -9809,7 +9905,7 @@
9809
9905
  },
9810
9906
  "locationInModule": {
9811
9907
  "filename": "src/image-builders/aws-image-builder/builder.ts",
9812
- "line": 234
9908
+ "line": 276
9813
9909
  },
9814
9910
  "name": "prefixCommandsWithErrorHandling",
9815
9911
  "parameters": [
@@ -9853,7 +9949,7 @@
9853
9949
  "immutable": true,
9854
9950
  "locationInModule": {
9855
9951
  "filename": "src/image-builders/aws-image-builder/builder.ts",
9856
- "line": 117
9952
+ "line": 159
9857
9953
  },
9858
9954
  "name": "arn",
9859
9955
  "type": {
@@ -9868,7 +9964,7 @@
9868
9964
  "immutable": true,
9869
9965
  "locationInModule": {
9870
9966
  "filename": "src/image-builders/aws-image-builder/builder.ts",
9871
- "line": 122
9967
+ "line": 164
9872
9968
  },
9873
9969
  "name": "platform",
9874
9970
  "type": {
@@ -9889,7 +9985,7 @@
9889
9985
  "kind": "interface",
9890
9986
  "locationInModule": {
9891
9987
  "filename": "src/image-builders/aws-image-builder/builder.ts",
9892
- "line": 58
9988
+ "line": 100
9893
9989
  },
9894
9990
  "name": "ImageBuilderComponentProperties",
9895
9991
  "properties": [
@@ -9903,7 +9999,7 @@
9903
9999
  "immutable": true,
9904
10000
  "locationInModule": {
9905
10001
  "filename": "src/image-builders/aws-image-builder/builder.ts",
9906
- "line": 79
10002
+ "line": 121
9907
10003
  },
9908
10004
  "name": "commands",
9909
10005
  "type": {
@@ -9924,7 +10020,7 @@
9924
10020
  "immutable": true,
9925
10021
  "locationInModule": {
9926
10022
  "filename": "src/image-builders/aws-image-builder/builder.ts",
9927
- "line": 72
10023
+ "line": 114
9928
10024
  },
9929
10025
  "name": "description",
9930
10026
  "type": {
@@ -9940,7 +10036,7 @@
9940
10036
  "immutable": true,
9941
10037
  "locationInModule": {
9942
10038
  "filename": "src/image-builders/aws-image-builder/builder.ts",
9943
- "line": 67
10039
+ "line": 109
9944
10040
  },
9945
10041
  "name": "displayName",
9946
10042
  "type": {
@@ -9957,7 +10053,7 @@
9957
10053
  "immutable": true,
9958
10054
  "locationInModule": {
9959
10055
  "filename": "src/image-builders/aws-image-builder/builder.ts",
9960
- "line": 62
10056
+ "line": 104
9961
10057
  },
9962
10058
  "name": "platform",
9963
10059
  "type": {
@@ -9973,7 +10069,7 @@
9973
10069
  "immutable": true,
9974
10070
  "locationInModule": {
9975
10071
  "filename": "src/image-builders/aws-image-builder/builder.ts",
9976
- "line": 84
10072
+ "line": 126
9977
10073
  },
9978
10074
  "name": "assets",
9979
10075
  "optional": true,
@@ -9996,7 +10092,7 @@
9996
10092
  "immutable": true,
9997
10093
  "locationInModule": {
9998
10094
  "filename": "src/image-builders/aws-image-builder/builder.ts",
9999
- "line": 91
10095
+ "line": 133
10000
10096
  },
10001
10097
  "name": "reboot",
10002
10098
  "optional": true,
@@ -10344,7 +10440,7 @@
10344
10440
  },
10345
10441
  "locationInModule": {
10346
10442
  "filename": "src/providers/common.ts",
10347
- "line": 484
10443
+ "line": 489
10348
10444
  },
10349
10445
  "name": "labelsFromProperties",
10350
10446
  "parameters": [
@@ -11222,7 +11318,7 @@
11222
11318
  },
11223
11319
  "locationInModule": {
11224
11320
  "filename": "src/providers/common.ts",
11225
- "line": 153
11321
+ "line": 158
11226
11322
  },
11227
11323
  "name": "is",
11228
11324
  "parameters": [
@@ -11249,7 +11345,7 @@
11249
11345
  },
11250
11346
  "locationInModule": {
11251
11347
  "filename": "src/providers/common.ts",
11252
- "line": 162
11348
+ "line": 167
11253
11349
  },
11254
11350
  "name": "isIn",
11255
11351
  "parameters": [
@@ -11280,7 +11376,7 @@
11280
11376
  {
11281
11377
  "const": true,
11282
11378
  "docs": {
11283
- "deprecated": "use {@link LINUX_UBUNTU } or {@link LINUX_AMAZON_2 }",
11379
+ "deprecated": "use {@link LINUX_UBUNTU } or {@link LINUX_AMAZON_2 } or {@link LINUX_AMAZON_2023 }",
11284
11380
  "stability": "deprecated",
11285
11381
  "summary": "Linux."
11286
11382
  },
@@ -11355,7 +11451,7 @@
11355
11451
  "immutable": true,
11356
11452
  "locationInModule": {
11357
11453
  "filename": "src/providers/common.ts",
11358
- "line": 139
11454
+ "line": 144
11359
11455
  },
11360
11456
  "name": "WINDOWS",
11361
11457
  "static": true,
@@ -11370,7 +11466,7 @@
11370
11466
  "immutable": true,
11371
11467
  "locationInModule": {
11372
11468
  "filename": "src/providers/common.ts",
11373
- "line": 145
11469
+ "line": 150
11374
11470
  },
11375
11471
  "name": "name",
11376
11472
  "type": {
@@ -11392,7 +11488,7 @@
11392
11488
  "kind": "interface",
11393
11489
  "locationInModule": {
11394
11490
  "filename": "src/providers/common.ts",
11395
- "line": 251
11491
+ "line": 256
11396
11492
  },
11397
11493
  "name": "ProviderRetryOptions",
11398
11494
  "properties": [
@@ -11406,7 +11502,7 @@
11406
11502
  "immutable": true,
11407
11503
  "locationInModule": {
11408
11504
  "filename": "src/providers/common.ts",
11409
- "line": 278
11505
+ "line": 283
11410
11506
  },
11411
11507
  "name": "backoffRate",
11412
11508
  "optional": true,
@@ -11425,7 +11521,7 @@
11425
11521
  "immutable": true,
11426
11522
  "locationInModule": {
11427
11523
  "filename": "src/providers/common.ts",
11428
- "line": 264
11524
+ "line": 269
11429
11525
  },
11430
11526
  "name": "interval",
11431
11527
  "optional": true,
@@ -11443,7 +11539,7 @@
11443
11539
  "immutable": true,
11444
11540
  "locationInModule": {
11445
11541
  "filename": "src/providers/common.ts",
11446
- "line": 271
11542
+ "line": 276
11447
11543
  },
11448
11544
  "name": "maxAttempts",
11449
11545
  "optional": true,
@@ -11462,7 +11558,7 @@
11462
11558
  "immutable": true,
11463
11559
  "locationInModule": {
11464
11560
  "filename": "src/providers/common.ts",
11465
- "line": 257
11561
+ "line": 262
11466
11562
  },
11467
11563
  "name": "retry",
11468
11564
  "optional": true,
@@ -11484,7 +11580,7 @@
11484
11580
  "kind": "interface",
11485
11581
  "locationInModule": {
11486
11582
  "filename": "src/providers/common.ts",
11487
- "line": 219
11583
+ "line": 224
11488
11584
  },
11489
11585
  "name": "RunnerAmi",
11490
11586
  "properties": [
@@ -11497,7 +11593,7 @@
11497
11593
  "immutable": true,
11498
11594
  "locationInModule": {
11499
11595
  "filename": "src/providers/common.ts",
11500
- "line": 228
11596
+ "line": 233
11501
11597
  },
11502
11598
  "name": "architecture",
11503
11599
  "type": {
@@ -11513,7 +11609,7 @@
11513
11609
  "immutable": true,
11514
11610
  "locationInModule": {
11515
11611
  "filename": "src/providers/common.ts",
11516
- "line": 223
11612
+ "line": 228
11517
11613
  },
11518
11614
  "name": "launchTemplate",
11519
11615
  "type": {
@@ -11529,7 +11625,7 @@
11529
11625
  "immutable": true,
11530
11626
  "locationInModule": {
11531
11627
  "filename": "src/providers/common.ts",
11532
- "line": 233
11628
+ "line": 238
11533
11629
  },
11534
11630
  "name": "os",
11535
11631
  "type": {
@@ -11546,7 +11642,7 @@
11546
11642
  "immutable": true,
11547
11643
  "locationInModule": {
11548
11644
  "filename": "src/providers/common.ts",
11549
- "line": 245
11645
+ "line": 250
11550
11646
  },
11551
11647
  "name": "runnerVersion",
11552
11648
  "type": {
@@ -11562,7 +11658,7 @@
11562
11658
  "immutable": true,
11563
11659
  "locationInModule": {
11564
11660
  "filename": "src/providers/common.ts",
11565
- "line": 238
11661
+ "line": 243
11566
11662
  },
11567
11663
  "name": "logGroup",
11568
11664
  "optional": true,
@@ -11584,7 +11680,7 @@
11584
11680
  "kind": "interface",
11585
11681
  "locationInModule": {
11586
11682
  "filename": "src/providers/common.ts",
11587
- "line": 175
11683
+ "line": 180
11588
11684
  },
11589
11685
  "name": "RunnerImage",
11590
11686
  "properties": [
@@ -11597,7 +11693,7 @@
11597
11693
  "immutable": true,
11598
11694
  "locationInModule": {
11599
11695
  "filename": "src/providers/common.ts",
11600
- "line": 189
11696
+ "line": 194
11601
11697
  },
11602
11698
  "name": "architecture",
11603
11699
  "type": {
@@ -11613,7 +11709,7 @@
11613
11709
  "immutable": true,
11614
11710
  "locationInModule": {
11615
11711
  "filename": "src/providers/common.ts",
11616
- "line": 179
11712
+ "line": 184
11617
11713
  },
11618
11714
  "name": "imageRepository",
11619
11715
  "type": {
@@ -11629,7 +11725,7 @@
11629
11725
  "immutable": true,
11630
11726
  "locationInModule": {
11631
11727
  "filename": "src/providers/common.ts",
11632
- "line": 184
11728
+ "line": 189
11633
11729
  },
11634
11730
  "name": "imageTag",
11635
11731
  "type": {
@@ -11645,7 +11741,7 @@
11645
11741
  "immutable": true,
11646
11742
  "locationInModule": {
11647
11743
  "filename": "src/providers/common.ts",
11648
- "line": 194
11744
+ "line": 199
11649
11745
  },
11650
11746
  "name": "os",
11651
11747
  "type": {
@@ -11662,7 +11758,7 @@
11662
11758
  "immutable": true,
11663
11759
  "locationInModule": {
11664
11760
  "filename": "src/providers/common.ts",
11665
- "line": 206
11761
+ "line": 211
11666
11762
  },
11667
11763
  "name": "runnerVersion",
11668
11764
  "type": {
@@ -11678,7 +11774,7 @@
11678
11774
  "immutable": true,
11679
11775
  "locationInModule": {
11680
11776
  "filename": "src/providers/common.ts",
11681
- "line": 199
11777
+ "line": 204
11682
11778
  },
11683
11779
  "name": "logGroup",
11684
11780
  "optional": true,
@@ -12388,7 +12484,7 @@
12388
12484
  },
12389
12485
  "locationInModule": {
12390
12486
  "filename": "src/image-builders/components.ts",
12391
- "line": 423
12487
+ "line": 431
12392
12488
  },
12393
12489
  "name": "dockerInDocker",
12394
12490
  "returns": {
@@ -12406,7 +12502,7 @@
12406
12502
  },
12407
12503
  "locationInModule": {
12408
12504
  "filename": "src/image-builders/components.ts",
12409
- "line": 433
12505
+ "line": 441
12410
12506
  },
12411
12507
  "name": "extraCertificates",
12412
12508
  "parameters": [
@@ -12507,7 +12603,7 @@
12507
12603
  },
12508
12604
  "locationInModule": {
12509
12605
  "filename": "src/image-builders/components.ts",
12510
- "line": 483
12606
+ "line": 491
12511
12607
  },
12512
12608
  "name": "lambdaEntrypoint",
12513
12609
  "returns": {
@@ -12559,7 +12655,7 @@
12559
12655
  },
12560
12656
  "locationInModule": {
12561
12657
  "filename": "src/image-builders/components.ts",
12562
- "line": 532
12658
+ "line": 540
12563
12659
  },
12564
12660
  "name": "getAssets",
12565
12661
  "parameters": [
@@ -12596,7 +12692,7 @@
12596
12692
  },
12597
12693
  "locationInModule": {
12598
12694
  "filename": "src/image-builders/components.ts",
12599
- "line": 527
12695
+ "line": 535
12600
12696
  },
12601
12697
  "name": "getCommands",
12602
12698
  "parameters": [
@@ -12632,7 +12728,7 @@
12632
12728
  },
12633
12729
  "locationInModule": {
12634
12730
  "filename": "src/image-builders/components.ts",
12635
- "line": 541
12731
+ "line": 549
12636
12732
  },
12637
12733
  "name": "getDockerCommands",
12638
12734
  "parameters": [
@@ -12667,7 +12763,7 @@
12667
12763
  },
12668
12764
  "locationInModule": {
12669
12765
  "filename": "src/image-builders/components.ts",
12670
- "line": 548
12766
+ "line": 556
12671
12767
  },
12672
12768
  "name": "shouldReboot",
12673
12769
  "parameters": [
@@ -12703,7 +12799,7 @@
12703
12799
  "immutable": true,
12704
12800
  "locationInModule": {
12705
12801
  "filename": "src/image-builders/components.ts",
12706
- "line": 522
12802
+ "line": 530
12707
12803
  },
12708
12804
  "name": "name",
12709
12805
  "type": {
@@ -12826,7 +12922,7 @@
12826
12922
  "kind": "interface",
12827
12923
  "locationInModule": {
12828
12924
  "filename": "src/providers/common.ts",
12829
- "line": 284
12925
+ "line": 289
12830
12926
  },
12831
12927
  "name": "RunnerProviderProps",
12832
12928
  "properties": [
@@ -12841,7 +12937,7 @@
12841
12937
  "immutable": true,
12842
12938
  "locationInModule": {
12843
12939
  "filename": "src/providers/common.ts",
12844
- "line": 292
12940
+ "line": 297
12845
12941
  },
12846
12942
  "name": "logRetention",
12847
12943
  "optional": true,
@@ -12858,7 +12954,7 @@
12858
12954
  "immutable": true,
12859
12955
  "locationInModule": {
12860
12956
  "filename": "src/providers/common.ts",
12861
- "line": 297
12957
+ "line": 302
12862
12958
  },
12863
12959
  "name": "retryOptions",
12864
12960
  "optional": true,
@@ -12881,7 +12977,7 @@
12881
12977
  "kind": "interface",
12882
12978
  "locationInModule": {
12883
12979
  "filename": "src/providers/common.ts",
12884
- "line": 309
12980
+ "line": 314
12885
12981
  },
12886
12982
  "name": "RunnerRuntimeParameters",
12887
12983
  "properties": [
@@ -12895,7 +12991,7 @@
12895
12991
  "immutable": true,
12896
12992
  "locationInModule": {
12897
12993
  "filename": "src/providers/common.ts",
12898
- "line": 323
12994
+ "line": 328
12899
12995
  },
12900
12996
  "name": "githubDomainPath",
12901
12997
  "type": {
@@ -12911,7 +13007,7 @@
12911
13007
  "immutable": true,
12912
13008
  "locationInModule": {
12913
13009
  "filename": "src/providers/common.ts",
12914
- "line": 328
13010
+ "line": 333
12915
13011
  },
12916
13012
  "name": "ownerPath",
12917
13013
  "type": {
@@ -12927,7 +13023,7 @@
12927
13023
  "immutable": true,
12928
13024
  "locationInModule": {
12929
13025
  "filename": "src/providers/common.ts",
12930
- "line": 338
13026
+ "line": 343
12931
13027
  },
12932
13028
  "name": "registrationUrl",
12933
13029
  "type": {
@@ -12943,7 +13039,7 @@
12943
13039
  "immutable": true,
12944
13040
  "locationInModule": {
12945
13041
  "filename": "src/providers/common.ts",
12946
- "line": 333
13042
+ "line": 338
12947
13043
  },
12948
13044
  "name": "repoPath",
12949
13045
  "type": {
@@ -12960,7 +13056,7 @@
12960
13056
  "immutable": true,
12961
13057
  "locationInModule": {
12962
13058
  "filename": "src/providers/common.ts",
12963
- "line": 318
13059
+ "line": 323
12964
13060
  },
12965
13061
  "name": "runnerNamePath",
12966
13062
  "type": {
@@ -12976,7 +13072,7 @@
12976
13072
  "immutable": true,
12977
13073
  "locationInModule": {
12978
13074
  "filename": "src/providers/common.ts",
12979
- "line": 313
13075
+ "line": 318
12980
13076
  },
12981
13077
  "name": "runnerTokenPath",
12982
13078
  "type": {
@@ -13603,6 +13699,6 @@
13603
13699
  "symbolId": "src/image-builders/aws-image-builder/deprecated/windows-components:WindowsComponents"
13604
13700
  }
13605
13701
  },
13606
- "version": "0.12.3",
13607
- "fingerprint": "7Nv1FSJjs9a/kRrDrPIuzqa6w9iphWC+CmRQrEvyaLU="
13702
+ "version": "0.12.5",
13703
+ "fingerprint": "/3etTTEN/LSlRsmdVkTOA4za0w/Fol3xCfMn9HRvh+w="
13608
13704
  }