@cdktf/provider-acme 9.0.2 → 10.0.0

Sign up to get free protection for your applications and to get access to all the features.
package/.jsii CHANGED
@@ -8,7 +8,7 @@
8
8
  "url": "https://hashicorp.com"
9
9
  },
10
10
  "dependencies": {
11
- "cdktf": "^0.18.0",
11
+ "cdktf": "^0.19.0",
12
12
  "constructs": "^10.0.0"
13
13
  },
14
14
  "dependencyClosure": {
@@ -72,7 +72,7 @@
72
72
  "stability": "stable"
73
73
  },
74
74
  "homepage": "https://github.com/cdktf/cdktf-provider-acme.git",
75
- "jsiiVersion": "5.2.8 (build 02112e0)",
75
+ "jsiiVersion": "5.2.14 (build 3ac02dc)",
76
76
  "keywords": [
77
77
  "acme",
78
78
  "cdk",
@@ -105,7 +105,7 @@
105
105
  "line": 7
106
106
  },
107
107
  "readme": {
108
- "markdown": "# `acme_certificate`\n\nRefer to the Terraform Registory for docs: [`acme_certificate`](https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs/resources/certificate).\n"
108
+ "markdown": "# `acme_certificate`\n\nRefer to the Terraform Registory for docs: [`acme_certificate`](https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate).\n"
109
109
  },
110
110
  "symbolId": "src/certificate/index:"
111
111
  },
@@ -115,7 +115,7 @@
115
115
  "line": 9
116
116
  },
117
117
  "readme": {
118
- "markdown": "# `provider`\n\nRefer to the Terraform Registory for docs: [`acme`](https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs).\n"
118
+ "markdown": "# `provider`\n\nRefer to the Terraform Registory for docs: [`acme`](https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs).\n"
119
119
  },
120
120
  "symbolId": "src/provider/index:"
121
121
  },
@@ -125,7 +125,7 @@
125
125
  "line": 8
126
126
  },
127
127
  "readme": {
128
- "markdown": "# `acme_registration`\n\nRefer to the Terraform Registory for docs: [`acme_registration`](https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs/resources/registration).\n"
128
+ "markdown": "# `acme_registration`\n\nRefer to the Terraform Registory for docs: [`acme_registration`](https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/registration).\n"
129
129
  },
130
130
  "symbolId": "src/registration/index:"
131
131
  }
@@ -160,17 +160,17 @@
160
160
  "base": "cdktf.TerraformResource",
161
161
  "docs": {
162
162
  "stability": "stable",
163
- "summary": "Represents a {@link https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs/resources/certificate acme_certificate}."
163
+ "summary": "Represents a {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate acme_certificate}."
164
164
  },
165
165
  "fqn": "@cdktf/provider-acme.certificate.Certificate",
166
166
  "initializer": {
167
167
  "docs": {
168
168
  "stability": "stable",
169
- "summary": "Create a new {@link https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs/resources/certificate acme_certificate} Resource."
169
+ "summary": "Create a new {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate acme_certificate} Resource."
170
170
  },
171
171
  "locationInModule": {
172
172
  "filename": "src/certificate/index.ts",
173
- "line": 597
173
+ "line": 615
174
174
  },
175
175
  "parameters": [
176
176
  {
@@ -203,16 +203,73 @@
203
203
  "kind": "class",
204
204
  "locationInModule": {
205
205
  "filename": "src/certificate/index.ts",
206
- "line": 579
206
+ "line": 583
207
207
  },
208
208
  "methods": [
209
+ {
210
+ "docs": {
211
+ "stability": "stable",
212
+ "summary": "Generates CDKTF code for importing a Certificate resource upon running \"cdktf plan <stack-name>\"."
213
+ },
214
+ "locationInModule": {
215
+ "filename": "src/certificate/index.ts",
216
+ "line": 600
217
+ },
218
+ "name": "generateConfigForImport",
219
+ "parameters": [
220
+ {
221
+ "docs": {
222
+ "summary": "The scope in which to define this construct."
223
+ },
224
+ "name": "scope",
225
+ "type": {
226
+ "fqn": "constructs.Construct"
227
+ }
228
+ },
229
+ {
230
+ "docs": {
231
+ "summary": "The construct id used in the generated config for the Certificate to import."
232
+ },
233
+ "name": "importToId",
234
+ "type": {
235
+ "primitive": "string"
236
+ }
237
+ },
238
+ {
239
+ "docs": {
240
+ "remarks": "Refer to the {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#import import section} in the documentation of this resource for the id to use",
241
+ "summary": "The id of the existing Certificate that should be imported."
242
+ },
243
+ "name": "importFromId",
244
+ "type": {
245
+ "primitive": "string"
246
+ }
247
+ },
248
+ {
249
+ "docs": {
250
+ "summary": "? Optional instance of the provider where the Certificate to import is found."
251
+ },
252
+ "name": "provider",
253
+ "optional": true,
254
+ "type": {
255
+ "fqn": "cdktf.TerraformProvider"
256
+ }
257
+ }
258
+ ],
259
+ "returns": {
260
+ "type": {
261
+ "fqn": "cdktf.ImportableResource"
262
+ }
263
+ },
264
+ "static": true
265
+ },
209
266
  {
210
267
  "docs": {
211
268
  "stability": "stable"
212
269
  },
213
270
  "locationInModule": {
214
271
  "filename": "src/certificate/index.ts",
215
- "line": 900
272
+ "line": 935
216
273
  },
217
274
  "name": "putDnsChallenge",
218
275
  "parameters": [
@@ -244,7 +301,7 @@
244
301
  },
245
302
  "locationInModule": {
246
303
  "filename": "src/certificate/index.ts",
247
- "line": 916
304
+ "line": 951
248
305
  },
249
306
  "name": "putHttpChallenge",
250
307
  "parameters": [
@@ -262,7 +319,7 @@
262
319
  },
263
320
  "locationInModule": {
264
321
  "filename": "src/certificate/index.ts",
265
- "line": 932
322
+ "line": 967
266
323
  },
267
324
  "name": "putHttpMemcachedChallenge",
268
325
  "parameters": [
@@ -280,7 +337,7 @@
280
337
  },
281
338
  "locationInModule": {
282
339
  "filename": "src/certificate/index.ts",
283
- "line": 948
340
+ "line": 983
284
341
  },
285
342
  "name": "putHttpS3Challenge",
286
343
  "parameters": [
@@ -298,7 +355,7 @@
298
355
  },
299
356
  "locationInModule": {
300
357
  "filename": "src/certificate/index.ts",
301
- "line": 964
358
+ "line": 999
302
359
  },
303
360
  "name": "putHttpWebrootChallenge",
304
361
  "parameters": [
@@ -316,7 +373,7 @@
316
373
  },
317
374
  "locationInModule": {
318
375
  "filename": "src/certificate/index.ts",
319
- "line": 980
376
+ "line": 1015
320
377
  },
321
378
  "name": "putTlsChallenge",
322
379
  "parameters": [
@@ -334,7 +391,7 @@
334
391
  },
335
392
  "locationInModule": {
336
393
  "filename": "src/certificate/index.ts",
337
- "line": 675
394
+ "line": 710
338
395
  },
339
396
  "name": "resetCertificateP12Password"
340
397
  },
@@ -344,7 +401,7 @@
344
401
  },
345
402
  "locationInModule": {
346
403
  "filename": "src/certificate/index.ts",
347
- "line": 696
404
+ "line": 731
348
405
  },
349
406
  "name": "resetCertificateRequestPem"
350
407
  },
@@ -354,7 +411,17 @@
354
411
  },
355
412
  "locationInModule": {
356
413
  "filename": "src/certificate/index.ts",
357
- "line": 717
414
+ "line": 679
415
+ },
416
+ "name": "resetCertTimeout"
417
+ },
418
+ {
419
+ "docs": {
420
+ "stability": "stable"
421
+ },
422
+ "locationInModule": {
423
+ "filename": "src/certificate/index.ts",
424
+ "line": 752
358
425
  },
359
426
  "name": "resetCommonName"
360
427
  },
@@ -364,7 +431,7 @@
364
431
  },
365
432
  "locationInModule": {
366
433
  "filename": "src/certificate/index.ts",
367
- "line": 733
434
+ "line": 768
368
435
  },
369
436
  "name": "resetDisableCompletePropagation"
370
437
  },
@@ -374,7 +441,7 @@
374
441
  },
375
442
  "locationInModule": {
376
443
  "filename": "src/certificate/index.ts",
377
- "line": 903
444
+ "line": 938
378
445
  },
379
446
  "name": "resetDnsChallenge"
380
447
  },
@@ -384,7 +451,7 @@
384
451
  },
385
452
  "locationInModule": {
386
453
  "filename": "src/certificate/index.ts",
387
- "line": 919
454
+ "line": 954
388
455
  },
389
456
  "name": "resetHttpChallenge"
390
457
  },
@@ -394,7 +461,7 @@
394
461
  },
395
462
  "locationInModule": {
396
463
  "filename": "src/certificate/index.ts",
397
- "line": 935
464
+ "line": 970
398
465
  },
399
466
  "name": "resetHttpMemcachedChallenge"
400
467
  },
@@ -404,7 +471,7 @@
404
471
  },
405
472
  "locationInModule": {
406
473
  "filename": "src/certificate/index.ts",
407
- "line": 951
474
+ "line": 986
408
475
  },
409
476
  "name": "resetHttpS3Challenge"
410
477
  },
@@ -414,7 +481,7 @@
414
481
  },
415
482
  "locationInModule": {
416
483
  "filename": "src/certificate/index.ts",
417
- "line": 967
484
+ "line": 1002
418
485
  },
419
486
  "name": "resetHttpWebrootChallenge"
420
487
  },
@@ -424,7 +491,7 @@
424
491
  },
425
492
  "locationInModule": {
426
493
  "filename": "src/certificate/index.ts",
427
- "line": 749
494
+ "line": 784
428
495
  },
429
496
  "name": "resetId"
430
497
  },
@@ -434,7 +501,7 @@
434
501
  },
435
502
  "locationInModule": {
436
503
  "filename": "src/certificate/index.ts",
437
- "line": 770
504
+ "line": 805
438
505
  },
439
506
  "name": "resetKeyType"
440
507
  },
@@ -444,7 +511,7 @@
444
511
  },
445
512
  "locationInModule": {
446
513
  "filename": "src/certificate/index.ts",
447
- "line": 786
514
+ "line": 821
448
515
  },
449
516
  "name": "resetMinDaysRemaining"
450
517
  },
@@ -454,7 +521,7 @@
454
521
  },
455
522
  "locationInModule": {
456
523
  "filename": "src/certificate/index.ts",
457
- "line": 802
524
+ "line": 837
458
525
  },
459
526
  "name": "resetMustStaple"
460
527
  },
@@ -464,7 +531,7 @@
464
531
  },
465
532
  "locationInModule": {
466
533
  "filename": "src/certificate/index.ts",
467
- "line": 818
534
+ "line": 853
468
535
  },
469
536
  "name": "resetPreCheckDelay"
470
537
  },
@@ -474,7 +541,7 @@
474
541
  },
475
542
  "locationInModule": {
476
543
  "filename": "src/certificate/index.ts",
477
- "line": 834
544
+ "line": 869
478
545
  },
479
546
  "name": "resetPreferredChain"
480
547
  },
@@ -484,7 +551,7 @@
484
551
  },
485
552
  "locationInModule": {
486
553
  "filename": "src/certificate/index.ts",
487
- "line": 855
554
+ "line": 890
488
555
  },
489
556
  "name": "resetRecursiveNameservers"
490
557
  },
@@ -494,7 +561,7 @@
494
561
  },
495
562
  "locationInModule": {
496
563
  "filename": "src/certificate/index.ts",
497
- "line": 871
564
+ "line": 906
498
565
  },
499
566
  "name": "resetRevokeCertificateOnDestroy"
500
567
  },
@@ -504,7 +571,7 @@
504
571
  },
505
572
  "locationInModule": {
506
573
  "filename": "src/certificate/index.ts",
507
- "line": 887
574
+ "line": 922
508
575
  },
509
576
  "name": "resetSubjectAlternativeNames"
510
577
  },
@@ -514,7 +581,7 @@
514
581
  },
515
582
  "locationInModule": {
516
583
  "filename": "src/certificate/index.ts",
517
- "line": 983
584
+ "line": 1018
518
585
  },
519
586
  "name": "resetTlsChallenge"
520
587
  },
@@ -524,7 +591,7 @@
524
591
  },
525
592
  "locationInModule": {
526
593
  "filename": "src/certificate/index.ts",
527
- "line": 995
594
+ "line": 1030
528
595
  },
529
596
  "name": "synthesizeAttributes",
530
597
  "overrides": "cdktf.TerraformResource",
@@ -552,7 +619,7 @@
552
619
  "immutable": true,
553
620
  "locationInModule": {
554
621
  "filename": "src/certificate/index.ts",
555
- "line": 584
622
+ "line": 588
556
623
  },
557
624
  "name": "tfResourceType",
558
625
  "static": true,
@@ -567,7 +634,7 @@
567
634
  "immutable": true,
568
635
  "locationInModule": {
569
636
  "filename": "src/certificate/index.ts",
570
- "line": 653
637
+ "line": 688
571
638
  },
572
639
  "name": "certificateDomain",
573
640
  "type": {
@@ -581,7 +648,7 @@
581
648
  "immutable": true,
582
649
  "locationInModule": {
583
650
  "filename": "src/certificate/index.ts",
584
- "line": 658
651
+ "line": 693
585
652
  },
586
653
  "name": "certificateNotAfter",
587
654
  "type": {
@@ -595,7 +662,7 @@
595
662
  "immutable": true,
596
663
  "locationInModule": {
597
664
  "filename": "src/certificate/index.ts",
598
- "line": 663
665
+ "line": 698
599
666
  },
600
667
  "name": "certificateP12",
601
668
  "type": {
@@ -609,7 +676,7 @@
609
676
  "immutable": true,
610
677
  "locationInModule": {
611
678
  "filename": "src/certificate/index.ts",
612
- "line": 684
679
+ "line": 719
613
680
  },
614
681
  "name": "certificatePem",
615
682
  "type": {
@@ -623,7 +690,7 @@
623
690
  "immutable": true,
624
691
  "locationInModule": {
625
692
  "filename": "src/certificate/index.ts",
626
- "line": 705
693
+ "line": 740
627
694
  },
628
695
  "name": "certificateUrl",
629
696
  "type": {
@@ -637,7 +704,7 @@
637
704
  "immutable": true,
638
705
  "locationInModule": {
639
706
  "filename": "src/certificate/index.ts",
640
- "line": 897
707
+ "line": 932
641
708
  },
642
709
  "name": "dnsChallenge",
643
710
  "type": {
@@ -651,7 +718,7 @@
651
718
  "immutable": true,
652
719
  "locationInModule": {
653
720
  "filename": "src/certificate/index.ts",
654
- "line": 913
721
+ "line": 948
655
722
  },
656
723
  "name": "httpChallenge",
657
724
  "type": {
@@ -665,7 +732,7 @@
665
732
  "immutable": true,
666
733
  "locationInModule": {
667
734
  "filename": "src/certificate/index.ts",
668
- "line": 929
735
+ "line": 964
669
736
  },
670
737
  "name": "httpMemcachedChallenge",
671
738
  "type": {
@@ -679,7 +746,7 @@
679
746
  "immutable": true,
680
747
  "locationInModule": {
681
748
  "filename": "src/certificate/index.ts",
682
- "line": 945
749
+ "line": 980
683
750
  },
684
751
  "name": "httpS3Challenge",
685
752
  "type": {
@@ -693,7 +760,7 @@
693
760
  "immutable": true,
694
761
  "locationInModule": {
695
762
  "filename": "src/certificate/index.ts",
696
- "line": 961
763
+ "line": 996
697
764
  },
698
765
  "name": "httpWebrootChallenge",
699
766
  "type": {
@@ -707,7 +774,7 @@
707
774
  "immutable": true,
708
775
  "locationInModule": {
709
776
  "filename": "src/certificate/index.ts",
710
- "line": 758
777
+ "line": 793
711
778
  },
712
779
  "name": "issuerPem",
713
780
  "type": {
@@ -721,7 +788,7 @@
721
788
  "immutable": true,
722
789
  "locationInModule": {
723
790
  "filename": "src/certificate/index.ts",
724
- "line": 843
791
+ "line": 878
725
792
  },
726
793
  "name": "privateKeyPem",
727
794
  "type": {
@@ -735,7 +802,7 @@
735
802
  "immutable": true,
736
803
  "locationInModule": {
737
804
  "filename": "src/certificate/index.ts",
738
- "line": 977
805
+ "line": 1012
739
806
  },
740
807
  "name": "tlsChallenge",
741
808
  "type": {
@@ -749,7 +816,7 @@
749
816
  "immutable": true,
750
817
  "locationInModule": {
751
818
  "filename": "src/certificate/index.ts",
752
- "line": 648
819
+ "line": 667
753
820
  },
754
821
  "name": "accountKeyPemInput",
755
822
  "optional": true,
@@ -764,7 +831,7 @@
764
831
  "immutable": true,
765
832
  "locationInModule": {
766
833
  "filename": "src/certificate/index.ts",
767
- "line": 679
834
+ "line": 714
768
835
  },
769
836
  "name": "certificateP12PasswordInput",
770
837
  "optional": true,
@@ -779,7 +846,7 @@
779
846
  "immutable": true,
780
847
  "locationInModule": {
781
848
  "filename": "src/certificate/index.ts",
782
- "line": 700
849
+ "line": 735
783
850
  },
784
851
  "name": "certificateRequestPemInput",
785
852
  "optional": true,
@@ -794,7 +861,22 @@
794
861
  "immutable": true,
795
862
  "locationInModule": {
796
863
  "filename": "src/certificate/index.ts",
797
- "line": 721
864
+ "line": 683
865
+ },
866
+ "name": "certTimeoutInput",
867
+ "optional": true,
868
+ "type": {
869
+ "primitive": "number"
870
+ }
871
+ },
872
+ {
873
+ "docs": {
874
+ "stability": "stable"
875
+ },
876
+ "immutable": true,
877
+ "locationInModule": {
878
+ "filename": "src/certificate/index.ts",
879
+ "line": 756
798
880
  },
799
881
  "name": "commonNameInput",
800
882
  "optional": true,
@@ -809,7 +891,7 @@
809
891
  "immutable": true,
810
892
  "locationInModule": {
811
893
  "filename": "src/certificate/index.ts",
812
- "line": 737
894
+ "line": 772
813
895
  },
814
896
  "name": "disableCompletePropagationInput",
815
897
  "optional": true,
@@ -833,7 +915,7 @@
833
915
  "immutable": true,
834
916
  "locationInModule": {
835
917
  "filename": "src/certificate/index.ts",
836
- "line": 907
918
+ "line": 942
837
919
  },
838
920
  "name": "dnsChallengeInput",
839
921
  "optional": true,
@@ -862,7 +944,7 @@
862
944
  "immutable": true,
863
945
  "locationInModule": {
864
946
  "filename": "src/certificate/index.ts",
865
- "line": 923
947
+ "line": 958
866
948
  },
867
949
  "name": "httpChallengeInput",
868
950
  "optional": true,
@@ -877,7 +959,7 @@
877
959
  "immutable": true,
878
960
  "locationInModule": {
879
961
  "filename": "src/certificate/index.ts",
880
- "line": 939
962
+ "line": 974
881
963
  },
882
964
  "name": "httpMemcachedChallengeInput",
883
965
  "optional": true,
@@ -892,7 +974,7 @@
892
974
  "immutable": true,
893
975
  "locationInModule": {
894
976
  "filename": "src/certificate/index.ts",
895
- "line": 955
977
+ "line": 990
896
978
  },
897
979
  "name": "httpS3ChallengeInput",
898
980
  "optional": true,
@@ -907,7 +989,7 @@
907
989
  "immutable": true,
908
990
  "locationInModule": {
909
991
  "filename": "src/certificate/index.ts",
910
- "line": 971
992
+ "line": 1006
911
993
  },
912
994
  "name": "httpWebrootChallengeInput",
913
995
  "optional": true,
@@ -922,7 +1004,7 @@
922
1004
  "immutable": true,
923
1005
  "locationInModule": {
924
1006
  "filename": "src/certificate/index.ts",
925
- "line": 753
1007
+ "line": 788
926
1008
  },
927
1009
  "name": "idInput",
928
1010
  "optional": true,
@@ -937,7 +1019,7 @@
937
1019
  "immutable": true,
938
1020
  "locationInModule": {
939
1021
  "filename": "src/certificate/index.ts",
940
- "line": 774
1022
+ "line": 809
941
1023
  },
942
1024
  "name": "keyTypeInput",
943
1025
  "optional": true,
@@ -952,7 +1034,7 @@
952
1034
  "immutable": true,
953
1035
  "locationInModule": {
954
1036
  "filename": "src/certificate/index.ts",
955
- "line": 790
1037
+ "line": 825
956
1038
  },
957
1039
  "name": "minDaysRemainingInput",
958
1040
  "optional": true,
@@ -967,7 +1049,7 @@
967
1049
  "immutable": true,
968
1050
  "locationInModule": {
969
1051
  "filename": "src/certificate/index.ts",
970
- "line": 806
1052
+ "line": 841
971
1053
  },
972
1054
  "name": "mustStapleInput",
973
1055
  "optional": true,
@@ -991,7 +1073,7 @@
991
1073
  "immutable": true,
992
1074
  "locationInModule": {
993
1075
  "filename": "src/certificate/index.ts",
994
- "line": 822
1076
+ "line": 857
995
1077
  },
996
1078
  "name": "preCheckDelayInput",
997
1079
  "optional": true,
@@ -1006,7 +1088,7 @@
1006
1088
  "immutable": true,
1007
1089
  "locationInModule": {
1008
1090
  "filename": "src/certificate/index.ts",
1009
- "line": 838
1091
+ "line": 873
1010
1092
  },
1011
1093
  "name": "preferredChainInput",
1012
1094
  "optional": true,
@@ -1021,7 +1103,7 @@
1021
1103
  "immutable": true,
1022
1104
  "locationInModule": {
1023
1105
  "filename": "src/certificate/index.ts",
1024
- "line": 859
1106
+ "line": 894
1025
1107
  },
1026
1108
  "name": "recursiveNameserversInput",
1027
1109
  "optional": true,
@@ -1041,7 +1123,7 @@
1041
1123
  "immutable": true,
1042
1124
  "locationInModule": {
1043
1125
  "filename": "src/certificate/index.ts",
1044
- "line": 875
1126
+ "line": 910
1045
1127
  },
1046
1128
  "name": "revokeCertificateOnDestroyInput",
1047
1129
  "optional": true,
@@ -1065,7 +1147,7 @@
1065
1147
  "immutable": true,
1066
1148
  "locationInModule": {
1067
1149
  "filename": "src/certificate/index.ts",
1068
- "line": 891
1150
+ "line": 926
1069
1151
  },
1070
1152
  "name": "subjectAlternativeNamesInput",
1071
1153
  "optional": true,
@@ -1085,7 +1167,7 @@
1085
1167
  "immutable": true,
1086
1168
  "locationInModule": {
1087
1169
  "filename": "src/certificate/index.ts",
1088
- "line": 987
1170
+ "line": 1022
1089
1171
  },
1090
1172
  "name": "tlsChallengeInput",
1091
1173
  "optional": true,
@@ -1099,7 +1181,7 @@
1099
1181
  },
1100
1182
  "locationInModule": {
1101
1183
  "filename": "src/certificate/index.ts",
1102
- "line": 641
1184
+ "line": 660
1103
1185
  },
1104
1186
  "name": "accountKeyPem",
1105
1187
  "type": {
@@ -1112,7 +1194,7 @@
1112
1194
  },
1113
1195
  "locationInModule": {
1114
1196
  "filename": "src/certificate/index.ts",
1115
- "line": 669
1197
+ "line": 704
1116
1198
  },
1117
1199
  "name": "certificateP12Password",
1118
1200
  "type": {
@@ -1125,7 +1207,7 @@
1125
1207
  },
1126
1208
  "locationInModule": {
1127
1209
  "filename": "src/certificate/index.ts",
1128
- "line": 690
1210
+ "line": 725
1129
1211
  },
1130
1212
  "name": "certificateRequestPem",
1131
1213
  "type": {
@@ -1138,7 +1220,20 @@
1138
1220
  },
1139
1221
  "locationInModule": {
1140
1222
  "filename": "src/certificate/index.ts",
1141
- "line": 711
1223
+ "line": 673
1224
+ },
1225
+ "name": "certTimeout",
1226
+ "type": {
1227
+ "primitive": "number"
1228
+ }
1229
+ },
1230
+ {
1231
+ "docs": {
1232
+ "stability": "stable"
1233
+ },
1234
+ "locationInModule": {
1235
+ "filename": "src/certificate/index.ts",
1236
+ "line": 746
1142
1237
  },
1143
1238
  "name": "commonName",
1144
1239
  "type": {
@@ -1151,7 +1246,7 @@
1151
1246
  },
1152
1247
  "locationInModule": {
1153
1248
  "filename": "src/certificate/index.ts",
1154
- "line": 727
1249
+ "line": 762
1155
1250
  },
1156
1251
  "name": "disableCompletePropagation",
1157
1252
  "type": {
@@ -1173,7 +1268,7 @@
1173
1268
  },
1174
1269
  "locationInModule": {
1175
1270
  "filename": "src/certificate/index.ts",
1176
- "line": 743
1271
+ "line": 778
1177
1272
  },
1178
1273
  "name": "id",
1179
1274
  "type": {
@@ -1186,7 +1281,7 @@
1186
1281
  },
1187
1282
  "locationInModule": {
1188
1283
  "filename": "src/certificate/index.ts",
1189
- "line": 764
1284
+ "line": 799
1190
1285
  },
1191
1286
  "name": "keyType",
1192
1287
  "type": {
@@ -1199,7 +1294,7 @@
1199
1294
  },
1200
1295
  "locationInModule": {
1201
1296
  "filename": "src/certificate/index.ts",
1202
- "line": 780
1297
+ "line": 815
1203
1298
  },
1204
1299
  "name": "minDaysRemaining",
1205
1300
  "type": {
@@ -1212,7 +1307,7 @@
1212
1307
  },
1213
1308
  "locationInModule": {
1214
1309
  "filename": "src/certificate/index.ts",
1215
- "line": 796
1310
+ "line": 831
1216
1311
  },
1217
1312
  "name": "mustStaple",
1218
1313
  "type": {
@@ -1234,7 +1329,7 @@
1234
1329
  },
1235
1330
  "locationInModule": {
1236
1331
  "filename": "src/certificate/index.ts",
1237
- "line": 812
1332
+ "line": 847
1238
1333
  },
1239
1334
  "name": "preCheckDelay",
1240
1335
  "type": {
@@ -1247,7 +1342,7 @@
1247
1342
  },
1248
1343
  "locationInModule": {
1249
1344
  "filename": "src/certificate/index.ts",
1250
- "line": 828
1345
+ "line": 863
1251
1346
  },
1252
1347
  "name": "preferredChain",
1253
1348
  "type": {
@@ -1260,7 +1355,7 @@
1260
1355
  },
1261
1356
  "locationInModule": {
1262
1357
  "filename": "src/certificate/index.ts",
1263
- "line": 849
1358
+ "line": 884
1264
1359
  },
1265
1360
  "name": "recursiveNameservers",
1266
1361
  "type": {
@@ -1278,7 +1373,7 @@
1278
1373
  },
1279
1374
  "locationInModule": {
1280
1375
  "filename": "src/certificate/index.ts",
1281
- "line": 865
1376
+ "line": 900
1282
1377
  },
1283
1378
  "name": "revokeCertificateOnDestroy",
1284
1379
  "type": {
@@ -1300,7 +1395,7 @@
1300
1395
  },
1301
1396
  "locationInModule": {
1302
1397
  "filename": "src/certificate/index.ts",
1303
- "line": 881
1398
+ "line": 916
1304
1399
  },
1305
1400
  "name": "subjectAlternativeNames",
1306
1401
  "type": {
@@ -1337,7 +1432,7 @@
1337
1432
  "abstract": true,
1338
1433
  "docs": {
1339
1434
  "stability": "stable",
1340
- "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs/resources/certificate#account_key_pem Certificate#account_key_pem}."
1435
+ "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#account_key_pem Certificate#account_key_pem}."
1341
1436
  },
1342
1437
  "immutable": true,
1343
1438
  "locationInModule": {
@@ -1353,12 +1448,12 @@
1353
1448
  "abstract": true,
1354
1449
  "docs": {
1355
1450
  "stability": "stable",
1356
- "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs/resources/certificate#certificate_p12_password Certificate#certificate_p12_password}."
1451
+ "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#certificate_p12_password Certificate#certificate_p12_password}."
1357
1452
  },
1358
1453
  "immutable": true,
1359
1454
  "locationInModule": {
1360
1455
  "filename": "src/certificate/index.ts",
1361
- "line": 22
1456
+ "line": 26
1362
1457
  },
1363
1458
  "name": "certificateP12Password",
1364
1459
  "optional": true,
@@ -1370,12 +1465,12 @@
1370
1465
  "abstract": true,
1371
1466
  "docs": {
1372
1467
  "stability": "stable",
1373
- "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs/resources/certificate#certificate_request_pem Certificate#certificate_request_pem}."
1468
+ "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#certificate_request_pem Certificate#certificate_request_pem}."
1374
1469
  },
1375
1470
  "immutable": true,
1376
1471
  "locationInModule": {
1377
1472
  "filename": "src/certificate/index.ts",
1378
- "line": 26
1473
+ "line": 30
1379
1474
  },
1380
1475
  "name": "certificateRequestPem",
1381
1476
  "optional": true,
@@ -1387,12 +1482,29 @@
1387
1482
  "abstract": true,
1388
1483
  "docs": {
1389
1484
  "stability": "stable",
1390
- "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs/resources/certificate#common_name Certificate#common_name}."
1485
+ "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#cert_timeout Certificate#cert_timeout}."
1391
1486
  },
1392
1487
  "immutable": true,
1393
1488
  "locationInModule": {
1394
1489
  "filename": "src/certificate/index.ts",
1395
- "line": 30
1490
+ "line": 22
1491
+ },
1492
+ "name": "certTimeout",
1493
+ "optional": true,
1494
+ "type": {
1495
+ "primitive": "number"
1496
+ }
1497
+ },
1498
+ {
1499
+ "abstract": true,
1500
+ "docs": {
1501
+ "stability": "stable",
1502
+ "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#common_name Certificate#common_name}."
1503
+ },
1504
+ "immutable": true,
1505
+ "locationInModule": {
1506
+ "filename": "src/certificate/index.ts",
1507
+ "line": 34
1396
1508
  },
1397
1509
  "name": "commonName",
1398
1510
  "optional": true,
@@ -1404,12 +1516,12 @@
1404
1516
  "abstract": true,
1405
1517
  "docs": {
1406
1518
  "stability": "stable",
1407
- "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs/resources/certificate#disable_complete_propagation Certificate#disable_complete_propagation}."
1519
+ "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#disable_complete_propagation Certificate#disable_complete_propagation}."
1408
1520
  },
1409
1521
  "immutable": true,
1410
1522
  "locationInModule": {
1411
1523
  "filename": "src/certificate/index.ts",
1412
- "line": 34
1524
+ "line": 38
1413
1525
  },
1414
1526
  "name": "disableCompletePropagation",
1415
1527
  "optional": true,
@@ -1429,14 +1541,14 @@
1429
1541
  {
1430
1542
  "abstract": true,
1431
1543
  "docs": {
1432
- "remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs/resources/certificate#dns_challenge Certificate#dns_challenge}",
1544
+ "remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#dns_challenge Certificate#dns_challenge}",
1433
1545
  "stability": "stable",
1434
1546
  "summary": "dns_challenge block."
1435
1547
  },
1436
1548
  "immutable": true,
1437
1549
  "locationInModule": {
1438
1550
  "filename": "src/certificate/index.ts",
1439
- "line": 79
1551
+ "line": 83
1440
1552
  },
1441
1553
  "name": "dnsChallenge",
1442
1554
  "optional": true,
@@ -1461,14 +1573,14 @@
1461
1573
  {
1462
1574
  "abstract": true,
1463
1575
  "docs": {
1464
- "remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs/resources/certificate#http_challenge Certificate#http_challenge}",
1576
+ "remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#http_challenge Certificate#http_challenge}",
1465
1577
  "stability": "stable",
1466
1578
  "summary": "http_challenge block."
1467
1579
  },
1468
1580
  "immutable": true,
1469
1581
  "locationInModule": {
1470
1582
  "filename": "src/certificate/index.ts",
1471
- "line": 85
1583
+ "line": 89
1472
1584
  },
1473
1585
  "name": "httpChallenge",
1474
1586
  "optional": true,
@@ -1479,14 +1591,14 @@
1479
1591
  {
1480
1592
  "abstract": true,
1481
1593
  "docs": {
1482
- "remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs/resources/certificate#http_memcached_challenge Certificate#http_memcached_challenge}",
1594
+ "remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#http_memcached_challenge Certificate#http_memcached_challenge}",
1483
1595
  "stability": "stable",
1484
1596
  "summary": "http_memcached_challenge block."
1485
1597
  },
1486
1598
  "immutable": true,
1487
1599
  "locationInModule": {
1488
1600
  "filename": "src/certificate/index.ts",
1489
- "line": 91
1601
+ "line": 95
1490
1602
  },
1491
1603
  "name": "httpMemcachedChallenge",
1492
1604
  "optional": true,
@@ -1497,14 +1609,14 @@
1497
1609
  {
1498
1610
  "abstract": true,
1499
1611
  "docs": {
1500
- "remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs/resources/certificate#http_s3_challenge Certificate#http_s3_challenge}",
1612
+ "remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#http_s3_challenge Certificate#http_s3_challenge}",
1501
1613
  "stability": "stable",
1502
1614
  "summary": "http_s3_challenge block."
1503
1615
  },
1504
1616
  "immutable": true,
1505
1617
  "locationInModule": {
1506
1618
  "filename": "src/certificate/index.ts",
1507
- "line": 97
1619
+ "line": 101
1508
1620
  },
1509
1621
  "name": "httpS3Challenge",
1510
1622
  "optional": true,
@@ -1515,14 +1627,14 @@
1515
1627
  {
1516
1628
  "abstract": true,
1517
1629
  "docs": {
1518
- "remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs/resources/certificate#http_webroot_challenge Certificate#http_webroot_challenge}",
1630
+ "remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#http_webroot_challenge Certificate#http_webroot_challenge}",
1519
1631
  "stability": "stable",
1520
1632
  "summary": "http_webroot_challenge block."
1521
1633
  },
1522
1634
  "immutable": true,
1523
1635
  "locationInModule": {
1524
1636
  "filename": "src/certificate/index.ts",
1525
- "line": 103
1637
+ "line": 107
1526
1638
  },
1527
1639
  "name": "httpWebrootChallenge",
1528
1640
  "optional": true,
@@ -1535,12 +1647,12 @@
1535
1647
  "docs": {
1536
1648
  "remarks": "Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.\nIf you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.",
1537
1649
  "stability": "stable",
1538
- "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs/resources/certificate#id Certificate#id}."
1650
+ "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#id Certificate#id}."
1539
1651
  },
1540
1652
  "immutable": true,
1541
1653
  "locationInModule": {
1542
1654
  "filename": "src/certificate/index.ts",
1543
- "line": 41
1655
+ "line": 45
1544
1656
  },
1545
1657
  "name": "id",
1546
1658
  "optional": true,
@@ -1552,12 +1664,12 @@
1552
1664
  "abstract": true,
1553
1665
  "docs": {
1554
1666
  "stability": "stable",
1555
- "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs/resources/certificate#key_type Certificate#key_type}."
1667
+ "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#key_type Certificate#key_type}."
1556
1668
  },
1557
1669
  "immutable": true,
1558
1670
  "locationInModule": {
1559
1671
  "filename": "src/certificate/index.ts",
1560
- "line": 45
1672
+ "line": 49
1561
1673
  },
1562
1674
  "name": "keyType",
1563
1675
  "optional": true,
@@ -1569,12 +1681,12 @@
1569
1681
  "abstract": true,
1570
1682
  "docs": {
1571
1683
  "stability": "stable",
1572
- "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs/resources/certificate#min_days_remaining Certificate#min_days_remaining}."
1684
+ "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#min_days_remaining Certificate#min_days_remaining}."
1573
1685
  },
1574
1686
  "immutable": true,
1575
1687
  "locationInModule": {
1576
1688
  "filename": "src/certificate/index.ts",
1577
- "line": 49
1689
+ "line": 53
1578
1690
  },
1579
1691
  "name": "minDaysRemaining",
1580
1692
  "optional": true,
@@ -1586,12 +1698,12 @@
1586
1698
  "abstract": true,
1587
1699
  "docs": {
1588
1700
  "stability": "stable",
1589
- "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs/resources/certificate#must_staple Certificate#must_staple}."
1701
+ "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#must_staple Certificate#must_staple}."
1590
1702
  },
1591
1703
  "immutable": true,
1592
1704
  "locationInModule": {
1593
1705
  "filename": "src/certificate/index.ts",
1594
- "line": 53
1706
+ "line": 57
1595
1707
  },
1596
1708
  "name": "mustStaple",
1597
1709
  "optional": true,
@@ -1612,12 +1724,12 @@
1612
1724
  "abstract": true,
1613
1725
  "docs": {
1614
1726
  "stability": "stable",
1615
- "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs/resources/certificate#pre_check_delay Certificate#pre_check_delay}."
1727
+ "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#pre_check_delay Certificate#pre_check_delay}."
1616
1728
  },
1617
1729
  "immutable": true,
1618
1730
  "locationInModule": {
1619
1731
  "filename": "src/certificate/index.ts",
1620
- "line": 57
1732
+ "line": 61
1621
1733
  },
1622
1734
  "name": "preCheckDelay",
1623
1735
  "optional": true,
@@ -1629,12 +1741,12 @@
1629
1741
  "abstract": true,
1630
1742
  "docs": {
1631
1743
  "stability": "stable",
1632
- "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs/resources/certificate#preferred_chain Certificate#preferred_chain}."
1744
+ "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#preferred_chain Certificate#preferred_chain}."
1633
1745
  },
1634
1746
  "immutable": true,
1635
1747
  "locationInModule": {
1636
1748
  "filename": "src/certificate/index.ts",
1637
- "line": 61
1749
+ "line": 65
1638
1750
  },
1639
1751
  "name": "preferredChain",
1640
1752
  "optional": true,
@@ -1646,12 +1758,12 @@
1646
1758
  "abstract": true,
1647
1759
  "docs": {
1648
1760
  "stability": "stable",
1649
- "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs/resources/certificate#recursive_nameservers Certificate#recursive_nameservers}."
1761
+ "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#recursive_nameservers Certificate#recursive_nameservers}."
1650
1762
  },
1651
1763
  "immutable": true,
1652
1764
  "locationInModule": {
1653
1765
  "filename": "src/certificate/index.ts",
1654
- "line": 65
1766
+ "line": 69
1655
1767
  },
1656
1768
  "name": "recursiveNameservers",
1657
1769
  "optional": true,
@@ -1668,12 +1780,12 @@
1668
1780
  "abstract": true,
1669
1781
  "docs": {
1670
1782
  "stability": "stable",
1671
- "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs/resources/certificate#revoke_certificate_on_destroy Certificate#revoke_certificate_on_destroy}."
1783
+ "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#revoke_certificate_on_destroy Certificate#revoke_certificate_on_destroy}."
1672
1784
  },
1673
1785
  "immutable": true,
1674
1786
  "locationInModule": {
1675
1787
  "filename": "src/certificate/index.ts",
1676
- "line": 69
1788
+ "line": 73
1677
1789
  },
1678
1790
  "name": "revokeCertificateOnDestroy",
1679
1791
  "optional": true,
@@ -1694,12 +1806,12 @@
1694
1806
  "abstract": true,
1695
1807
  "docs": {
1696
1808
  "stability": "stable",
1697
- "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs/resources/certificate#subject_alternative_names Certificate#subject_alternative_names}."
1809
+ "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#subject_alternative_names Certificate#subject_alternative_names}."
1698
1810
  },
1699
1811
  "immutable": true,
1700
1812
  "locationInModule": {
1701
1813
  "filename": "src/certificate/index.ts",
1702
- "line": 73
1814
+ "line": 77
1703
1815
  },
1704
1816
  "name": "subjectAlternativeNames",
1705
1817
  "optional": true,
@@ -1715,14 +1827,14 @@
1715
1827
  {
1716
1828
  "abstract": true,
1717
1829
  "docs": {
1718
- "remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs/resources/certificate#tls_challenge Certificate#tls_challenge}",
1830
+ "remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#tls_challenge Certificate#tls_challenge}",
1719
1831
  "stability": "stable",
1720
1832
  "summary": "tls_challenge block."
1721
1833
  },
1722
1834
  "immutable": true,
1723
1835
  "locationInModule": {
1724
1836
  "filename": "src/certificate/index.ts",
1725
- "line": 109
1837
+ "line": 113
1726
1838
  },
1727
1839
  "name": "tlsChallenge",
1728
1840
  "optional": true,
@@ -1743,7 +1855,7 @@
1743
1855
  "kind": "interface",
1744
1856
  "locationInModule": {
1745
1857
  "filename": "src/certificate/index.ts",
1746
- "line": 111
1858
+ "line": 115
1747
1859
  },
1748
1860
  "name": "CertificateDnsChallenge",
1749
1861
  "namespace": "certificate",
@@ -1752,12 +1864,12 @@
1752
1864
  "abstract": true,
1753
1865
  "docs": {
1754
1866
  "stability": "stable",
1755
- "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs/resources/certificate#provider Certificate#provider}."
1867
+ "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#provider Certificate#provider}."
1756
1868
  },
1757
1869
  "immutable": true,
1758
1870
  "locationInModule": {
1759
1871
  "filename": "src/certificate/index.ts",
1760
- "line": 119
1872
+ "line": 123
1761
1873
  },
1762
1874
  "name": "provider",
1763
1875
  "type": {
@@ -1768,12 +1880,12 @@
1768
1880
  "abstract": true,
1769
1881
  "docs": {
1770
1882
  "stability": "stable",
1771
- "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs/resources/certificate#config Certificate#config}."
1883
+ "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#config Certificate#config}."
1772
1884
  },
1773
1885
  "immutable": true,
1774
1886
  "locationInModule": {
1775
1887
  "filename": "src/certificate/index.ts",
1776
- "line": 115
1888
+ "line": 119
1777
1889
  },
1778
1890
  "name": "config",
1779
1891
  "optional": true,
@@ -1802,7 +1914,7 @@
1802
1914
  },
1803
1915
  "locationInModule": {
1804
1916
  "filename": "src/certificate/index.ts",
1805
- "line": 221
1917
+ "line": 225
1806
1918
  },
1807
1919
  "parameters": [
1808
1920
  {
@@ -1837,7 +1949,7 @@
1837
1949
  "kind": "class",
1838
1950
  "locationInModule": {
1839
1951
  "filename": "src/certificate/index.ts",
1840
- "line": 213
1952
+ "line": 217
1841
1953
  },
1842
1954
  "methods": [
1843
1955
  {
@@ -1846,7 +1958,7 @@
1846
1958
  },
1847
1959
  "locationInModule": {
1848
1960
  "filename": "src/certificate/index.ts",
1849
- "line": 228
1961
+ "line": 232
1850
1962
  },
1851
1963
  "name": "get",
1852
1964
  "parameters": [
@@ -1877,7 +1989,7 @@
1877
1989
  },
1878
1990
  "locationInModule": {
1879
1991
  "filename": "src/certificate/index.ts",
1880
- "line": 221
1992
+ "line": 225
1881
1993
  },
1882
1994
  "name": "terraformAttribute",
1883
1995
  "overrides": "cdktf.ComplexList",
@@ -1893,7 +2005,7 @@
1893
2005
  },
1894
2006
  "locationInModule": {
1895
2007
  "filename": "src/certificate/index.ts",
1896
- "line": 221
2008
+ "line": 225
1897
2009
  },
1898
2010
  "name": "terraformResource",
1899
2011
  "overrides": "cdktf.ComplexList",
@@ -1909,7 +2021,7 @@
1909
2021
  },
1910
2022
  "locationInModule": {
1911
2023
  "filename": "src/certificate/index.ts",
1912
- "line": 221
2024
+ "line": 225
1913
2025
  },
1914
2026
  "name": "wrapsSet",
1915
2027
  "overrides": "cdktf.ComplexList",
@@ -1924,7 +2036,7 @@
1924
2036
  },
1925
2037
  "locationInModule": {
1926
2038
  "filename": "src/certificate/index.ts",
1927
- "line": 214
2039
+ "line": 218
1928
2040
  },
1929
2041
  "name": "internalValue",
1930
2042
  "optional": true,
@@ -1962,7 +2074,7 @@
1962
2074
  },
1963
2075
  "locationInModule": {
1964
2076
  "filename": "src/certificate/index.ts",
1965
- "line": 143
2077
+ "line": 147
1966
2078
  },
1967
2079
  "parameters": [
1968
2080
  {
@@ -2006,7 +2118,7 @@
2006
2118
  "kind": "class",
2007
2119
  "locationInModule": {
2008
2120
  "filename": "src/certificate/index.ts",
2009
- "line": 133
2121
+ "line": 137
2010
2122
  },
2011
2123
  "methods": [
2012
2124
  {
@@ -2015,7 +2127,7 @@
2015
2127
  },
2016
2128
  "locationInModule": {
2017
2129
  "filename": "src/certificate/index.ts",
2018
- "line": 191
2130
+ "line": 195
2019
2131
  },
2020
2132
  "name": "resetConfig"
2021
2133
  }
@@ -2030,7 +2142,7 @@
2030
2142
  "immutable": true,
2031
2143
  "locationInModule": {
2032
2144
  "filename": "src/certificate/index.ts",
2033
- "line": 195
2145
+ "line": 199
2034
2146
  },
2035
2147
  "name": "configInput",
2036
2148
  "optional": true,
@@ -2050,7 +2162,7 @@
2050
2162
  "immutable": true,
2051
2163
  "locationInModule": {
2052
2164
  "filename": "src/certificate/index.ts",
2053
- "line": 208
2165
+ "line": 212
2054
2166
  },
2055
2167
  "name": "providerInput",
2056
2168
  "optional": true,
@@ -2064,7 +2176,7 @@
2064
2176
  },
2065
2177
  "locationInModule": {
2066
2178
  "filename": "src/certificate/index.ts",
2067
- "line": 185
2179
+ "line": 189
2068
2180
  },
2069
2181
  "name": "config",
2070
2182
  "type": {
@@ -2082,7 +2194,7 @@
2082
2194
  },
2083
2195
  "locationInModule": {
2084
2196
  "filename": "src/certificate/index.ts",
2085
- "line": 201
2197
+ "line": 205
2086
2198
  },
2087
2199
  "name": "provider",
2088
2200
  "type": {
@@ -2095,7 +2207,7 @@
2095
2207
  },
2096
2208
  "locationInModule": {
2097
2209
  "filename": "src/certificate/index.ts",
2098
- "line": 147
2210
+ "line": 151
2099
2211
  },
2100
2212
  "name": "internalValue",
2101
2213
  "optional": true,
@@ -2125,7 +2237,7 @@
2125
2237
  "kind": "interface",
2126
2238
  "locationInModule": {
2127
2239
  "filename": "src/certificate/index.ts",
2128
- "line": 232
2240
+ "line": 236
2129
2241
  },
2130
2242
  "name": "CertificateHttpChallenge",
2131
2243
  "namespace": "certificate",
@@ -2134,12 +2246,12 @@
2134
2246
  "abstract": true,
2135
2247
  "docs": {
2136
2248
  "stability": "stable",
2137
- "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs/resources/certificate#port Certificate#port}."
2249
+ "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#port Certificate#port}."
2138
2250
  },
2139
2251
  "immutable": true,
2140
2252
  "locationInModule": {
2141
2253
  "filename": "src/certificate/index.ts",
2142
- "line": 236
2254
+ "line": 240
2143
2255
  },
2144
2256
  "name": "port",
2145
2257
  "optional": true,
@@ -2151,12 +2263,12 @@
2151
2263
  "abstract": true,
2152
2264
  "docs": {
2153
2265
  "stability": "stable",
2154
- "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs/resources/certificate#proxy_header Certificate#proxy_header}."
2266
+ "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#proxy_header Certificate#proxy_header}."
2155
2267
  },
2156
2268
  "immutable": true,
2157
2269
  "locationInModule": {
2158
2270
  "filename": "src/certificate/index.ts",
2159
- "line": 240
2271
+ "line": 244
2160
2272
  },
2161
2273
  "name": "proxyHeader",
2162
2274
  "optional": true,
@@ -2180,7 +2292,7 @@
2180
2292
  },
2181
2293
  "locationInModule": {
2182
2294
  "filename": "src/certificate/index.ts",
2183
- "line": 261
2295
+ "line": 265
2184
2296
  },
2185
2297
  "parameters": [
2186
2298
  {
@@ -2206,7 +2318,7 @@
2206
2318
  "kind": "class",
2207
2319
  "locationInModule": {
2208
2320
  "filename": "src/certificate/index.ts",
2209
- "line": 254
2321
+ "line": 258
2210
2322
  },
2211
2323
  "methods": [
2212
2324
  {
@@ -2215,7 +2327,7 @@
2215
2327
  },
2216
2328
  "locationInModule": {
2217
2329
  "filename": "src/certificate/index.ts",
2218
- "line": 300
2330
+ "line": 304
2219
2331
  },
2220
2332
  "name": "resetPort"
2221
2333
  },
@@ -2225,7 +2337,7 @@
2225
2337
  },
2226
2338
  "locationInModule": {
2227
2339
  "filename": "src/certificate/index.ts",
2228
- "line": 316
2340
+ "line": 320
2229
2341
  },
2230
2342
  "name": "resetProxyHeader"
2231
2343
  }
@@ -2240,7 +2352,7 @@
2240
2352
  "immutable": true,
2241
2353
  "locationInModule": {
2242
2354
  "filename": "src/certificate/index.ts",
2243
- "line": 304
2355
+ "line": 308
2244
2356
  },
2245
2357
  "name": "portInput",
2246
2358
  "optional": true,
@@ -2255,7 +2367,7 @@
2255
2367
  "immutable": true,
2256
2368
  "locationInModule": {
2257
2369
  "filename": "src/certificate/index.ts",
2258
- "line": 320
2370
+ "line": 324
2259
2371
  },
2260
2372
  "name": "proxyHeaderInput",
2261
2373
  "optional": true,
@@ -2269,7 +2381,7 @@
2269
2381
  },
2270
2382
  "locationInModule": {
2271
2383
  "filename": "src/certificate/index.ts",
2272
- "line": 294
2384
+ "line": 298
2273
2385
  },
2274
2386
  "name": "port",
2275
2387
  "type": {
@@ -2282,7 +2394,7 @@
2282
2394
  },
2283
2395
  "locationInModule": {
2284
2396
  "filename": "src/certificate/index.ts",
2285
- "line": 310
2397
+ "line": 314
2286
2398
  },
2287
2399
  "name": "proxyHeader",
2288
2400
  "type": {
@@ -2295,7 +2407,7 @@
2295
2407
  },
2296
2408
  "locationInModule": {
2297
2409
  "filename": "src/certificate/index.ts",
2298
- "line": 265
2410
+ "line": 269
2299
2411
  },
2300
2412
  "name": "internalValue",
2301
2413
  "optional": true,
@@ -2316,7 +2428,7 @@
2316
2428
  "kind": "interface",
2317
2429
  "locationInModule": {
2318
2430
  "filename": "src/certificate/index.ts",
2319
- "line": 324
2431
+ "line": 328
2320
2432
  },
2321
2433
  "name": "CertificateHttpMemcachedChallenge",
2322
2434
  "namespace": "certificate",
@@ -2325,12 +2437,12 @@
2325
2437
  "abstract": true,
2326
2438
  "docs": {
2327
2439
  "stability": "stable",
2328
- "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs/resources/certificate#hosts Certificate#hosts}."
2440
+ "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#hosts Certificate#hosts}."
2329
2441
  },
2330
2442
  "immutable": true,
2331
2443
  "locationInModule": {
2332
2444
  "filename": "src/certificate/index.ts",
2333
- "line": 328
2445
+ "line": 332
2334
2446
  },
2335
2447
  "name": "hosts",
2336
2448
  "type": {
@@ -2358,7 +2470,7 @@
2358
2470
  },
2359
2471
  "locationInModule": {
2360
2472
  "filename": "src/certificate/index.ts",
2361
- "line": 348
2473
+ "line": 352
2362
2474
  },
2363
2475
  "parameters": [
2364
2476
  {
@@ -2384,7 +2496,7 @@
2384
2496
  "kind": "class",
2385
2497
  "locationInModule": {
2386
2498
  "filename": "src/certificate/index.ts",
2387
- "line": 341
2499
+ "line": 345
2388
2500
  },
2389
2501
  "name": "CertificateHttpMemcachedChallengeOutputReference",
2390
2502
  "namespace": "certificate",
@@ -2396,7 +2508,7 @@
2396
2508
  "immutable": true,
2397
2509
  "locationInModule": {
2398
2510
  "filename": "src/certificate/index.ts",
2399
- "line": 382
2511
+ "line": 386
2400
2512
  },
2401
2513
  "name": "hostsInput",
2402
2514
  "optional": true,
@@ -2415,7 +2527,7 @@
2415
2527
  },
2416
2528
  "locationInModule": {
2417
2529
  "filename": "src/certificate/index.ts",
2418
- "line": 375
2530
+ "line": 379
2419
2531
  },
2420
2532
  "name": "hosts",
2421
2533
  "type": {
@@ -2433,7 +2545,7 @@
2433
2545
  },
2434
2546
  "locationInModule": {
2435
2547
  "filename": "src/certificate/index.ts",
2436
- "line": 352
2548
+ "line": 356
2437
2549
  },
2438
2550
  "name": "internalValue",
2439
2551
  "optional": true,
@@ -2454,7 +2566,7 @@
2454
2566
  "kind": "interface",
2455
2567
  "locationInModule": {
2456
2568
  "filename": "src/certificate/index.ts",
2457
- "line": 386
2569
+ "line": 390
2458
2570
  },
2459
2571
  "name": "CertificateHttpS3Challenge",
2460
2572
  "namespace": "certificate",
@@ -2463,12 +2575,12 @@
2463
2575
  "abstract": true,
2464
2576
  "docs": {
2465
2577
  "stability": "stable",
2466
- "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs/resources/certificate#s3_bucket Certificate#s3_bucket}."
2578
+ "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#s3_bucket Certificate#s3_bucket}."
2467
2579
  },
2468
2580
  "immutable": true,
2469
2581
  "locationInModule": {
2470
2582
  "filename": "src/certificate/index.ts",
2471
- "line": 390
2583
+ "line": 394
2472
2584
  },
2473
2585
  "name": "s3Bucket",
2474
2586
  "type": {
@@ -2491,7 +2603,7 @@
2491
2603
  },
2492
2604
  "locationInModule": {
2493
2605
  "filename": "src/certificate/index.ts",
2494
- "line": 410
2606
+ "line": 414
2495
2607
  },
2496
2608
  "parameters": [
2497
2609
  {
@@ -2517,7 +2629,7 @@
2517
2629
  "kind": "class",
2518
2630
  "locationInModule": {
2519
2631
  "filename": "src/certificate/index.ts",
2520
- "line": 403
2632
+ "line": 407
2521
2633
  },
2522
2634
  "name": "CertificateHttpS3ChallengeOutputReference",
2523
2635
  "namespace": "certificate",
@@ -2529,7 +2641,7 @@
2529
2641
  "immutable": true,
2530
2642
  "locationInModule": {
2531
2643
  "filename": "src/certificate/index.ts",
2532
- "line": 444
2644
+ "line": 448
2533
2645
  },
2534
2646
  "name": "s3BucketInput",
2535
2647
  "optional": true,
@@ -2543,7 +2655,7 @@
2543
2655
  },
2544
2656
  "locationInModule": {
2545
2657
  "filename": "src/certificate/index.ts",
2546
- "line": 437
2658
+ "line": 441
2547
2659
  },
2548
2660
  "name": "s3Bucket",
2549
2661
  "type": {
@@ -2556,7 +2668,7 @@
2556
2668
  },
2557
2669
  "locationInModule": {
2558
2670
  "filename": "src/certificate/index.ts",
2559
- "line": 414
2671
+ "line": 418
2560
2672
  },
2561
2673
  "name": "internalValue",
2562
2674
  "optional": true,
@@ -2577,7 +2689,7 @@
2577
2689
  "kind": "interface",
2578
2690
  "locationInModule": {
2579
2691
  "filename": "src/certificate/index.ts",
2580
- "line": 448
2692
+ "line": 452
2581
2693
  },
2582
2694
  "name": "CertificateHttpWebrootChallenge",
2583
2695
  "namespace": "certificate",
@@ -2586,12 +2698,12 @@
2586
2698
  "abstract": true,
2587
2699
  "docs": {
2588
2700
  "stability": "stable",
2589
- "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs/resources/certificate#directory Certificate#directory}."
2701
+ "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#directory Certificate#directory}."
2590
2702
  },
2591
2703
  "immutable": true,
2592
2704
  "locationInModule": {
2593
2705
  "filename": "src/certificate/index.ts",
2594
- "line": 452
2706
+ "line": 456
2595
2707
  },
2596
2708
  "name": "directory",
2597
2709
  "type": {
@@ -2614,7 +2726,7 @@
2614
2726
  },
2615
2727
  "locationInModule": {
2616
2728
  "filename": "src/certificate/index.ts",
2617
- "line": 472
2729
+ "line": 476
2618
2730
  },
2619
2731
  "parameters": [
2620
2732
  {
@@ -2640,7 +2752,7 @@
2640
2752
  "kind": "class",
2641
2753
  "locationInModule": {
2642
2754
  "filename": "src/certificate/index.ts",
2643
- "line": 465
2755
+ "line": 469
2644
2756
  },
2645
2757
  "name": "CertificateHttpWebrootChallengeOutputReference",
2646
2758
  "namespace": "certificate",
@@ -2652,7 +2764,7 @@
2652
2764
  "immutable": true,
2653
2765
  "locationInModule": {
2654
2766
  "filename": "src/certificate/index.ts",
2655
- "line": 506
2767
+ "line": 510
2656
2768
  },
2657
2769
  "name": "directoryInput",
2658
2770
  "optional": true,
@@ -2666,7 +2778,7 @@
2666
2778
  },
2667
2779
  "locationInModule": {
2668
2780
  "filename": "src/certificate/index.ts",
2669
- "line": 499
2781
+ "line": 503
2670
2782
  },
2671
2783
  "name": "directory",
2672
2784
  "type": {
@@ -2679,7 +2791,7 @@
2679
2791
  },
2680
2792
  "locationInModule": {
2681
2793
  "filename": "src/certificate/index.ts",
2682
- "line": 476
2794
+ "line": 480
2683
2795
  },
2684
2796
  "name": "internalValue",
2685
2797
  "optional": true,
@@ -2700,7 +2812,7 @@
2700
2812
  "kind": "interface",
2701
2813
  "locationInModule": {
2702
2814
  "filename": "src/certificate/index.ts",
2703
- "line": 510
2815
+ "line": 514
2704
2816
  },
2705
2817
  "name": "CertificateTlsChallenge",
2706
2818
  "namespace": "certificate",
@@ -2709,12 +2821,12 @@
2709
2821
  "abstract": true,
2710
2822
  "docs": {
2711
2823
  "stability": "stable",
2712
- "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs/resources/certificate#port Certificate#port}."
2824
+ "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/certificate#port Certificate#port}."
2713
2825
  },
2714
2826
  "immutable": true,
2715
2827
  "locationInModule": {
2716
2828
  "filename": "src/certificate/index.ts",
2717
- "line": 514
2829
+ "line": 518
2718
2830
  },
2719
2831
  "name": "port",
2720
2832
  "optional": true,
@@ -2738,7 +2850,7 @@
2738
2850
  },
2739
2851
  "locationInModule": {
2740
2852
  "filename": "src/certificate/index.ts",
2741
- "line": 534
2853
+ "line": 538
2742
2854
  },
2743
2855
  "parameters": [
2744
2856
  {
@@ -2764,7 +2876,7 @@
2764
2876
  "kind": "class",
2765
2877
  "locationInModule": {
2766
2878
  "filename": "src/certificate/index.ts",
2767
- "line": 527
2879
+ "line": 531
2768
2880
  },
2769
2881
  "methods": [
2770
2882
  {
@@ -2773,7 +2885,7 @@
2773
2885
  },
2774
2886
  "locationInModule": {
2775
2887
  "filename": "src/certificate/index.ts",
2776
- "line": 567
2888
+ "line": 571
2777
2889
  },
2778
2890
  "name": "resetPort"
2779
2891
  }
@@ -2788,7 +2900,7 @@
2788
2900
  "immutable": true,
2789
2901
  "locationInModule": {
2790
2902
  "filename": "src/certificate/index.ts",
2791
- "line": 571
2903
+ "line": 575
2792
2904
  },
2793
2905
  "name": "portInput",
2794
2906
  "optional": true,
@@ -2802,7 +2914,7 @@
2802
2914
  },
2803
2915
  "locationInModule": {
2804
2916
  "filename": "src/certificate/index.ts",
2805
- "line": 561
2917
+ "line": 565
2806
2918
  },
2807
2919
  "name": "port",
2808
2920
  "type": {
@@ -2815,7 +2927,7 @@
2815
2927
  },
2816
2928
  "locationInModule": {
2817
2929
  "filename": "src/certificate/index.ts",
2818
- "line": 538
2930
+ "line": 542
2819
2931
  },
2820
2932
  "name": "internalValue",
2821
2933
  "optional": true,
@@ -2831,17 +2943,17 @@
2831
2943
  "base": "cdktf.TerraformProvider",
2832
2944
  "docs": {
2833
2945
  "stability": "stable",
2834
- "summary": "Represents a {@link https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs acme}."
2946
+ "summary": "Represents a {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs acme}."
2835
2947
  },
2836
2948
  "fqn": "@cdktf/provider-acme.provider.AcmeProvider",
2837
2949
  "initializer": {
2838
2950
  "docs": {
2839
2951
  "stability": "stable",
2840
- "summary": "Create a new {@link https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs acme} Resource."
2952
+ "summary": "Create a new {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs acme} Resource."
2841
2953
  },
2842
2954
  "locationInModule": {
2843
2955
  "filename": "src/provider/index.ts",
2844
- "line": 48
2956
+ "line": 62
2845
2957
  },
2846
2958
  "parameters": [
2847
2959
  {
@@ -2877,13 +2989,70 @@
2877
2989
  "line": 30
2878
2990
  },
2879
2991
  "methods": [
2992
+ {
2993
+ "docs": {
2994
+ "stability": "stable",
2995
+ "summary": "Generates CDKTF code for importing a AcmeProvider resource upon running \"cdktf plan <stack-name>\"."
2996
+ },
2997
+ "locationInModule": {
2998
+ "filename": "src/provider/index.ts",
2999
+ "line": 47
3000
+ },
3001
+ "name": "generateConfigForImport",
3002
+ "parameters": [
3003
+ {
3004
+ "docs": {
3005
+ "summary": "The scope in which to define this construct."
3006
+ },
3007
+ "name": "scope",
3008
+ "type": {
3009
+ "fqn": "constructs.Construct"
3010
+ }
3011
+ },
3012
+ {
3013
+ "docs": {
3014
+ "summary": "The construct id used in the generated config for the AcmeProvider to import."
3015
+ },
3016
+ "name": "importToId",
3017
+ "type": {
3018
+ "primitive": "string"
3019
+ }
3020
+ },
3021
+ {
3022
+ "docs": {
3023
+ "remarks": "Refer to the {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs#import import section} in the documentation of this resource for the id to use",
3024
+ "summary": "The id of the existing AcmeProvider that should be imported."
3025
+ },
3026
+ "name": "importFromId",
3027
+ "type": {
3028
+ "primitive": "string"
3029
+ }
3030
+ },
3031
+ {
3032
+ "docs": {
3033
+ "summary": "? Optional instance of the provider where the AcmeProvider to import is found."
3034
+ },
3035
+ "name": "provider",
3036
+ "optional": true,
3037
+ "type": {
3038
+ "fqn": "cdktf.TerraformProvider"
3039
+ }
3040
+ }
3041
+ ],
3042
+ "returns": {
3043
+ "type": {
3044
+ "fqn": "cdktf.ImportableResource"
3045
+ }
3046
+ },
3047
+ "static": true
3048
+ },
2880
3049
  {
2881
3050
  "docs": {
2882
3051
  "stability": "stable"
2883
3052
  },
2884
3053
  "locationInModule": {
2885
3054
  "filename": "src/provider/index.ts",
2886
- "line": 87
3055
+ "line": 101
2887
3056
  },
2888
3057
  "name": "resetAlias"
2889
3058
  },
@@ -2893,7 +3062,7 @@
2893
3062
  },
2894
3063
  "locationInModule": {
2895
3064
  "filename": "src/provider/index.ts",
2896
- "line": 99
3065
+ "line": 113
2897
3066
  },
2898
3067
  "name": "synthesizeAttributes",
2899
3068
  "overrides": "cdktf.TerraformProvider",
@@ -2936,7 +3105,7 @@
2936
3105
  "immutable": true,
2937
3106
  "locationInModule": {
2938
3107
  "filename": "src/provider/index.ts",
2939
- "line": 91
3108
+ "line": 105
2940
3109
  },
2941
3110
  "name": "aliasInput",
2942
3111
  "optional": true,
@@ -2951,7 +3120,7 @@
2951
3120
  "immutable": true,
2952
3121
  "locationInModule": {
2953
3122
  "filename": "src/provider/index.ts",
2954
- "line": 75
3123
+ "line": 89
2955
3124
  },
2956
3125
  "name": "serverUrlInput",
2957
3126
  "optional": true,
@@ -2965,7 +3134,7 @@
2965
3134
  },
2966
3135
  "locationInModule": {
2967
3136
  "filename": "src/provider/index.ts",
2968
- "line": 81
3137
+ "line": 95
2969
3138
  },
2970
3139
  "name": "alias",
2971
3140
  "optional": true,
@@ -2980,7 +3149,7 @@
2980
3149
  },
2981
3150
  "locationInModule": {
2982
3151
  "filename": "src/provider/index.ts",
2983
- "line": 68
3152
+ "line": 82
2984
3153
  },
2985
3154
  "name": "serverUrl",
2986
3155
  "optional": true,
@@ -3010,7 +3179,7 @@
3010
3179
  "abstract": true,
3011
3180
  "docs": {
3012
3181
  "stability": "stable",
3013
- "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs#server_url AcmeProvider#server_url}."
3182
+ "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs#server_url AcmeProvider#server_url}."
3014
3183
  },
3015
3184
  "immutable": true,
3016
3185
  "locationInModule": {
@@ -3025,7 +3194,7 @@
3025
3194
  {
3026
3195
  "abstract": true,
3027
3196
  "docs": {
3028
- "remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs#alias AcmeProvider#alias}",
3197
+ "remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs#alias AcmeProvider#alias}",
3029
3198
  "stability": "stable",
3030
3199
  "summary": "Alias name."
3031
3200
  },
@@ -3048,17 +3217,17 @@
3048
3217
  "base": "cdktf.TerraformResource",
3049
3218
  "docs": {
3050
3219
  "stability": "stable",
3051
- "summary": "Represents a {@link https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs/resources/registration acme_registration}."
3220
+ "summary": "Represents a {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/registration acme_registration}."
3052
3221
  },
3053
3222
  "fqn": "@cdktf/provider-acme.registration.Registration",
3054
3223
  "initializer": {
3055
3224
  "docs": {
3056
3225
  "stability": "stable",
3057
- "summary": "Create a new {@link https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs/resources/registration acme_registration} Resource."
3226
+ "summary": "Create a new {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/registration acme_registration} Resource."
3058
3227
  },
3059
3228
  "locationInModule": {
3060
3229
  "filename": "src/registration/index.ts",
3061
- "line": 145
3230
+ "line": 159
3062
3231
  },
3063
3232
  "parameters": [
3064
3233
  {
@@ -3094,13 +3263,70 @@
3094
3263
  "line": 127
3095
3264
  },
3096
3265
  "methods": [
3266
+ {
3267
+ "docs": {
3268
+ "stability": "stable",
3269
+ "summary": "Generates CDKTF code for importing a Registration resource upon running \"cdktf plan <stack-name>\"."
3270
+ },
3271
+ "locationInModule": {
3272
+ "filename": "src/registration/index.ts",
3273
+ "line": 144
3274
+ },
3275
+ "name": "generateConfigForImport",
3276
+ "parameters": [
3277
+ {
3278
+ "docs": {
3279
+ "summary": "The scope in which to define this construct."
3280
+ },
3281
+ "name": "scope",
3282
+ "type": {
3283
+ "fqn": "constructs.Construct"
3284
+ }
3285
+ },
3286
+ {
3287
+ "docs": {
3288
+ "summary": "The construct id used in the generated config for the Registration to import."
3289
+ },
3290
+ "name": "importToId",
3291
+ "type": {
3292
+ "primitive": "string"
3293
+ }
3294
+ },
3295
+ {
3296
+ "docs": {
3297
+ "remarks": "Refer to the {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/registration#import import section} in the documentation of this resource for the id to use",
3298
+ "summary": "The id of the existing Registration that should be imported."
3299
+ },
3300
+ "name": "importFromId",
3301
+ "type": {
3302
+ "primitive": "string"
3303
+ }
3304
+ },
3305
+ {
3306
+ "docs": {
3307
+ "summary": "? Optional instance of the provider where the Registration to import is found."
3308
+ },
3309
+ "name": "provider",
3310
+ "optional": true,
3311
+ "type": {
3312
+ "fqn": "cdktf.TerraformProvider"
3313
+ }
3314
+ }
3315
+ ],
3316
+ "returns": {
3317
+ "type": {
3318
+ "fqn": "cdktf.ImportableResource"
3319
+ }
3320
+ },
3321
+ "static": true
3322
+ },
3097
3323
  {
3098
3324
  "docs": {
3099
3325
  "stability": "stable"
3100
3326
  },
3101
3327
  "locationInModule": {
3102
3328
  "filename": "src/registration/index.ts",
3103
- "line": 223
3329
+ "line": 237
3104
3330
  },
3105
3331
  "name": "putExternalAccountBinding",
3106
3332
  "parameters": [
@@ -3118,7 +3344,7 @@
3118
3344
  },
3119
3345
  "locationInModule": {
3120
3346
  "filename": "src/registration/index.ts",
3121
- "line": 226
3347
+ "line": 240
3122
3348
  },
3123
3349
  "name": "resetExternalAccountBinding"
3124
3350
  },
@@ -3128,7 +3354,7 @@
3128
3354
  },
3129
3355
  "locationInModule": {
3130
3356
  "filename": "src/registration/index.ts",
3131
- "line": 205
3357
+ "line": 219
3132
3358
  },
3133
3359
  "name": "resetId"
3134
3360
  },
@@ -3138,7 +3364,7 @@
3138
3364
  },
3139
3365
  "locationInModule": {
3140
3366
  "filename": "src/registration/index.ts",
3141
- "line": 238
3367
+ "line": 252
3142
3368
  },
3143
3369
  "name": "synthesizeAttributes",
3144
3370
  "overrides": "cdktf.TerraformResource",
@@ -3181,7 +3407,7 @@
3181
3407
  "immutable": true,
3182
3408
  "locationInModule": {
3183
3409
  "filename": "src/registration/index.ts",
3184
- "line": 220
3410
+ "line": 234
3185
3411
  },
3186
3412
  "name": "externalAccountBinding",
3187
3413
  "type": {
@@ -3195,7 +3421,7 @@
3195
3421
  "immutable": true,
3196
3422
  "locationInModule": {
3197
3423
  "filename": "src/registration/index.ts",
3198
- "line": 214
3424
+ "line": 228
3199
3425
  },
3200
3426
  "name": "registrationUrl",
3201
3427
  "type": {
@@ -3209,7 +3435,7 @@
3209
3435
  "immutable": true,
3210
3436
  "locationInModule": {
3211
3437
  "filename": "src/registration/index.ts",
3212
- "line": 180
3438
+ "line": 194
3213
3439
  },
3214
3440
  "name": "accountKeyPemInput",
3215
3441
  "optional": true,
@@ -3224,7 +3450,7 @@
3224
3450
  "immutable": true,
3225
3451
  "locationInModule": {
3226
3452
  "filename": "src/registration/index.ts",
3227
- "line": 193
3453
+ "line": 207
3228
3454
  },
3229
3455
  "name": "emailAddressInput",
3230
3456
  "optional": true,
@@ -3239,7 +3465,7 @@
3239
3465
  "immutable": true,
3240
3466
  "locationInModule": {
3241
3467
  "filename": "src/registration/index.ts",
3242
- "line": 230
3468
+ "line": 244
3243
3469
  },
3244
3470
  "name": "externalAccountBindingInput",
3245
3471
  "optional": true,
@@ -3254,7 +3480,7 @@
3254
3480
  "immutable": true,
3255
3481
  "locationInModule": {
3256
3482
  "filename": "src/registration/index.ts",
3257
- "line": 209
3483
+ "line": 223
3258
3484
  },
3259
3485
  "name": "idInput",
3260
3486
  "optional": true,
@@ -3268,7 +3494,7 @@
3268
3494
  },
3269
3495
  "locationInModule": {
3270
3496
  "filename": "src/registration/index.ts",
3271
- "line": 173
3497
+ "line": 187
3272
3498
  },
3273
3499
  "name": "accountKeyPem",
3274
3500
  "type": {
@@ -3281,7 +3507,7 @@
3281
3507
  },
3282
3508
  "locationInModule": {
3283
3509
  "filename": "src/registration/index.ts",
3284
- "line": 186
3510
+ "line": 200
3285
3511
  },
3286
3512
  "name": "emailAddress",
3287
3513
  "type": {
@@ -3294,7 +3520,7 @@
3294
3520
  },
3295
3521
  "locationInModule": {
3296
3522
  "filename": "src/registration/index.ts",
3297
- "line": 199
3523
+ "line": 213
3298
3524
  },
3299
3525
  "name": "id",
3300
3526
  "type": {
@@ -3326,7 +3552,7 @@
3326
3552
  "abstract": true,
3327
3553
  "docs": {
3328
3554
  "stability": "stable",
3329
- "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs/resources/registration#account_key_pem Registration#account_key_pem}."
3555
+ "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/registration#account_key_pem Registration#account_key_pem}."
3330
3556
  },
3331
3557
  "immutable": true,
3332
3558
  "locationInModule": {
@@ -3342,7 +3568,7 @@
3342
3568
  "abstract": true,
3343
3569
  "docs": {
3344
3570
  "stability": "stable",
3345
- "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs/resources/registration#email_address Registration#email_address}."
3571
+ "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/registration#email_address Registration#email_address}."
3346
3572
  },
3347
3573
  "immutable": true,
3348
3574
  "locationInModule": {
@@ -3357,7 +3583,7 @@
3357
3583
  {
3358
3584
  "abstract": true,
3359
3585
  "docs": {
3360
- "remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs/resources/registration#external_account_binding Registration#external_account_binding}",
3586
+ "remarks": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/registration#external_account_binding Registration#external_account_binding}",
3361
3587
  "stability": "stable",
3362
3588
  "summary": "external_account_binding block."
3363
3589
  },
@@ -3377,7 +3603,7 @@
3377
3603
  "docs": {
3378
3604
  "remarks": "Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.\nIf you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.",
3379
3605
  "stability": "stable",
3380
- "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs/resources/registration#id Registration#id}."
3606
+ "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/registration#id Registration#id}."
3381
3607
  },
3382
3608
  "immutable": true,
3383
3609
  "locationInModule": {
@@ -3412,7 +3638,7 @@
3412
3638
  "abstract": true,
3413
3639
  "docs": {
3414
3640
  "stability": "stable",
3415
- "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs/resources/registration#hmac_base64 Registration#hmac_base64}."
3641
+ "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/registration#hmac_base64 Registration#hmac_base64}."
3416
3642
  },
3417
3643
  "immutable": true,
3418
3644
  "locationInModule": {
@@ -3428,7 +3654,7 @@
3428
3654
  "abstract": true,
3429
3655
  "docs": {
3430
3656
  "stability": "stable",
3431
- "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.17.2/docs/resources/registration#key_id Registration#key_id}."
3657
+ "summary": "Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vancluever/acme/2.18.0/docs/resources/registration#key_id Registration#key_id}."
3432
3658
  },
3433
3659
  "immutable": true,
3434
3660
  "locationInModule": {
@@ -3561,6 +3787,6 @@
3561
3787
  "symbolId": "src/registration/index:RegistrationExternalAccountBindingOutputReference"
3562
3788
  }
3563
3789
  },
3564
- "version": "9.0.2",
3565
- "fingerprint": "/laaF7S+xG4iDIO68Uy1sEaHRrJYaJfqSfU/pWwNQ7Q="
3790
+ "version": "10.0.0",
3791
+ "fingerprint": "HyKWP/GbbkmqQrCs+6JFph5u29VNZnWpBSrAE0GMasw="
3566
3792
  }