@cdktf/provider-acme 6.0.1 → 6.0.2
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/.copywrite.hcl +24 -0
- package/.gitattributes +2 -1
- package/.jsii +195 -195
- package/README.md +2 -1
- package/lib/certificate/index.d.ts +4 -0
- package/lib/certificate/index.js +8 -8
- package/lib/index.d.ts +4 -0
- package/lib/index.js +5 -1
- package/lib/provider/index.d.ts +4 -0
- package/lib/provider/index.js +2 -2
- package/lib/registration/index.d.ts +4 -0
- package/lib/registration/index.js +3 -3
- package/package.json +8 -8
- package/scripts/check-for-upgrades.js +4 -0
- package/scripts/should-release.js +4 -0
package/.jsii
CHANGED
@@ -8,7 +8,7 @@
|
|
8
8
|
"url": "https://hashicorp.com"
|
9
9
|
},
|
10
10
|
"dependencies": {
|
11
|
-
"cdktf": "^0.16.
|
11
|
+
"cdktf": "^0.16.3",
|
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": "1.
|
75
|
+
"jsiiVersion": "1.81.0 (build 80988b0)",
|
76
76
|
"keywords": [
|
77
77
|
"acme",
|
78
78
|
"cdk",
|
@@ -91,7 +91,7 @@
|
|
91
91
|
},
|
92
92
|
"name": "@cdktf/provider-acme",
|
93
93
|
"readme": {
|
94
|
-
"markdown": "\n# Terraform CDK acme Provider ~> 2.10\n\nThis repo builds and publishes the Terraform acme Provider bindings for [CDK for Terraform](https://cdk.tf).\n\n## Available Packages\n\n### NPM\n\nThe npm package is available at [https://www.npmjs.com/package/@cdktf/provider-acme](https://www.npmjs.com/package/@cdktf/provider-acme).\n\n`npm install @cdktf/provider-acme`\n\n### PyPI\n\nThe PyPI package is available at [https://pypi.org/project/cdktf-cdktf-provider-acme](https://pypi.org/project/cdktf-cdktf-provider-acme).\n\n`pipenv install cdktf-cdktf-provider-acme`\n\n### Nuget\n\nThe Nuget package is available at [https://www.nuget.org/packages/HashiCorp.Cdktf.Providers.Acme](https://www.nuget.org/packages/HashiCorp.Cdktf.Providers.Acme).\n\n`dotnet add package HashiCorp.Cdktf.Providers.Acme`\n\n### Maven\n\nThe Maven package is available at [https://mvnrepository.com/artifact/com.hashicorp/cdktf-provider-acme](https://mvnrepository.com/artifact/com.hashicorp/cdktf-provider-acme).\n\n```\n<dependency>\n <groupId>com.hashicorp</groupId>\n <artifactId>cdktf-provider-acme</artifactId>\n <version>[REPLACE WITH DESIRED VERSION]</version>\n</dependency>\n```\n\n\n### Go\n\nThe go package is generated into the [`github.com/cdktf/cdktf-provider-acme-go`](https://github.com/cdktf/cdktf-provider-acme-go) package.\n\n`go get github.com/cdktf/cdktf-provider-acme-go/acme`\n\n## Docs\n\nFind auto-generated docs for this provider here:\n\n- [Typescript](./docs/API.typescript.md)\n- [Python](./docs/API.python.md)\n- [Java](./docs/API.java.md)\n- [C#](./docs/API.csharp.md)\n- [Go](./docs/API.go.md)\n\nYou can also visit a hosted version of the documentation on [constructs.dev](https://constructs.dev/packages/@cdktf/provider-acme).\n\n## Versioning\n\nThis project is explicitly not tracking the Terraform acme Provider version 1:1. In fact, it always tracks `latest` of `~> 2.10` with every release. If there are scenarios where you explicitly have to pin your provider version, you can do so by generating the [provider constructs manually](https://cdk.tf/imports).\n\nThese are the upstream dependencies:\n\n- [Terraform CDK](https://cdk.tf)\n- [Terraform acme Provider](https://github.com/
|
94
|
+
"markdown": "\n# Terraform CDK acme Provider ~> 2.10\n\nThis repo builds and publishes the Terraform acme Provider bindings for [CDK for Terraform](https://cdk.tf).\n\n## Available Packages\n\n### NPM\n\nThe npm package is available at [https://www.npmjs.com/package/@cdktf/provider-acme](https://www.npmjs.com/package/@cdktf/provider-acme).\n\n`npm install @cdktf/provider-acme`\n\n### PyPI\n\nThe PyPI package is available at [https://pypi.org/project/cdktf-cdktf-provider-acme](https://pypi.org/project/cdktf-cdktf-provider-acme).\n\n`pipenv install cdktf-cdktf-provider-acme`\n\n### Nuget\n\nThe Nuget package is available at [https://www.nuget.org/packages/HashiCorp.Cdktf.Providers.Acme](https://www.nuget.org/packages/HashiCorp.Cdktf.Providers.Acme).\n\n`dotnet add package HashiCorp.Cdktf.Providers.Acme`\n\n### Maven\n\nThe Maven package is available at [https://mvnrepository.com/artifact/com.hashicorp/cdktf-provider-acme](https://mvnrepository.com/artifact/com.hashicorp/cdktf-provider-acme).\n\n```\n<dependency>\n <groupId>com.hashicorp</groupId>\n <artifactId>cdktf-provider-acme</artifactId>\n <version>[REPLACE WITH DESIRED VERSION]</version>\n</dependency>\n```\n\n\n### Go\n\nThe go package is generated into the [`github.com/cdktf/cdktf-provider-acme-go`](https://github.com/cdktf/cdktf-provider-acme-go) package.\n\n`go get github.com/cdktf/cdktf-provider-acme-go/acme`\n\n## Docs\n\nFind auto-generated docs for this provider here:\n\n- [Typescript](./docs/API.typescript.md)\n- [Python](./docs/API.python.md)\n- [Java](./docs/API.java.md)\n- [C#](./docs/API.csharp.md)\n- [Go](./docs/API.go.md)\n\nYou can also visit a hosted version of the documentation on [constructs.dev](https://constructs.dev/packages/@cdktf/provider-acme).\n\n## Versioning\n\nThis project is explicitly not tracking the Terraform acme Provider version 1:1. In fact, it always tracks `latest` of `~> 2.10` with every release. If there are scenarios where you explicitly have to pin your provider version, you can do so by generating the [provider constructs manually](https://cdk.tf/imports).\n\nThese are the upstream dependencies:\n\n- [Terraform CDK](https://cdk.tf)\n- [Terraform acme Provider](https://registry.terraform.io/providers/vancluever/acme/2.10.0)\n - This links to the minimum version being tracked, you can find the latest released version [in our releases](https://github.com/cdktf/cdktf-provider-acme/releases)\n- [Terraform Engine](https://terraform.io)\n\nIf there are breaking changes (backward incompatible) in any of the above, the major version of this project will be bumped.\n\n## Features / Issues / Bugs\n\nPlease report bugs and issues to the [terraform cdk](https://cdk.tf) project:\n\n- [Create bug report](https://cdk.tf/bug)\n- [Create feature request](https://cdk.tf/feature)\n\n## Contributing\n\n### projen\n\nThis is mostly based on [projen](https://github.com/eladb/projen), which takes care of generating the entire repository.\n\n### cdktf-provider-project based on projen\n\nThere's a custom [project builder](https://github.com/hashicorp/cdktf-provider-project) which encapsulate the common settings for all `cdktf` providers.\n\n### Provider Version\n\nThe provider version can be adjusted in [./.projenrc.js](./.projenrc.js).\n\n### Repository Management\n\nThe repository is managed by [Repository Manager](https://github.com/hashicorp/cdktf-repository-manager/)\n"
|
95
95
|
},
|
96
96
|
"repository": {
|
97
97
|
"type": "git",
|
@@ -102,7 +102,7 @@
|
|
102
102
|
"@cdktf/provider-acme.certificate": {
|
103
103
|
"locationInModule": {
|
104
104
|
"filename": "src/index.ts",
|
105
|
-
"line":
|
105
|
+
"line": 7
|
106
106
|
},
|
107
107
|
"readme": {
|
108
108
|
"markdown": "# `acme_certificate`\n\nRefer to the Terraform Registory for docs: [`acme_certificate`](https://registry.terraform.io/providers/vancluever/acme/2.14.0/docs/resources/certificate).\n"
|
@@ -112,7 +112,7 @@
|
|
112
112
|
"@cdktf/provider-acme.provider": {
|
113
113
|
"locationInModule": {
|
114
114
|
"filename": "src/index.ts",
|
115
|
-
"line":
|
115
|
+
"line": 9
|
116
116
|
},
|
117
117
|
"readme": {
|
118
118
|
"markdown": "# `provider`\n\nRefer to the Terraform Registory for docs: [`acme`](https://registry.terraform.io/providers/vancluever/acme/2.14.0/docs).\n"
|
@@ -122,7 +122,7 @@
|
|
122
122
|
"@cdktf/provider-acme.registration": {
|
123
123
|
"locationInModule": {
|
124
124
|
"filename": "src/index.ts",
|
125
|
-
"line":
|
125
|
+
"line": 8
|
126
126
|
},
|
127
127
|
"readme": {
|
128
128
|
"markdown": "# `acme_registration`\n\nRefer to the Terraform Registory for docs: [`acme_registration`](https://registry.terraform.io/providers/vancluever/acme/2.14.0/docs/resources/registration).\n"
|
@@ -170,7 +170,7 @@
|
|
170
170
|
},
|
171
171
|
"locationInModule": {
|
172
172
|
"filename": "src/certificate/index.ts",
|
173
|
-
"line":
|
173
|
+
"line": 529
|
174
174
|
},
|
175
175
|
"parameters": [
|
176
176
|
{
|
@@ -203,7 +203,7 @@
|
|
203
203
|
"kind": "class",
|
204
204
|
"locationInModule": {
|
205
205
|
"filename": "src/certificate/index.ts",
|
206
|
-
"line":
|
206
|
+
"line": 511
|
207
207
|
},
|
208
208
|
"methods": [
|
209
209
|
{
|
@@ -212,7 +212,7 @@
|
|
212
212
|
},
|
213
213
|
"locationInModule": {
|
214
214
|
"filename": "src/certificate/index.ts",
|
215
|
-
"line":
|
215
|
+
"line": 831
|
216
216
|
},
|
217
217
|
"name": "putDnsChallenge",
|
218
218
|
"parameters": [
|
@@ -244,7 +244,7 @@
|
|
244
244
|
},
|
245
245
|
"locationInModule": {
|
246
246
|
"filename": "src/certificate/index.ts",
|
247
|
-
"line":
|
247
|
+
"line": 847
|
248
248
|
},
|
249
249
|
"name": "putHttpChallenge",
|
250
250
|
"parameters": [
|
@@ -262,7 +262,7 @@
|
|
262
262
|
},
|
263
263
|
"locationInModule": {
|
264
264
|
"filename": "src/certificate/index.ts",
|
265
|
-
"line":
|
265
|
+
"line": 863
|
266
266
|
},
|
267
267
|
"name": "putHttpMemcachedChallenge",
|
268
268
|
"parameters": [
|
@@ -280,7 +280,7 @@
|
|
280
280
|
},
|
281
281
|
"locationInModule": {
|
282
282
|
"filename": "src/certificate/index.ts",
|
283
|
-
"line":
|
283
|
+
"line": 879
|
284
284
|
},
|
285
285
|
"name": "putHttpWebrootChallenge",
|
286
286
|
"parameters": [
|
@@ -298,7 +298,7 @@
|
|
298
298
|
},
|
299
299
|
"locationInModule": {
|
300
300
|
"filename": "src/certificate/index.ts",
|
301
|
-
"line":
|
301
|
+
"line": 895
|
302
302
|
},
|
303
303
|
"name": "putTlsChallenge",
|
304
304
|
"parameters": [
|
@@ -316,7 +316,7 @@
|
|
316
316
|
},
|
317
317
|
"locationInModule": {
|
318
318
|
"filename": "src/certificate/index.ts",
|
319
|
-
"line":
|
319
|
+
"line": 606
|
320
320
|
},
|
321
321
|
"name": "resetCertificateP12Password"
|
322
322
|
},
|
@@ -326,7 +326,7 @@
|
|
326
326
|
},
|
327
327
|
"locationInModule": {
|
328
328
|
"filename": "src/certificate/index.ts",
|
329
|
-
"line":
|
329
|
+
"line": 627
|
330
330
|
},
|
331
331
|
"name": "resetCertificateRequestPem"
|
332
332
|
},
|
@@ -336,7 +336,7 @@
|
|
336
336
|
},
|
337
337
|
"locationInModule": {
|
338
338
|
"filename": "src/certificate/index.ts",
|
339
|
-
"line":
|
339
|
+
"line": 648
|
340
340
|
},
|
341
341
|
"name": "resetCommonName"
|
342
342
|
},
|
@@ -346,7 +346,7 @@
|
|
346
346
|
},
|
347
347
|
"locationInModule": {
|
348
348
|
"filename": "src/certificate/index.ts",
|
349
|
-
"line":
|
349
|
+
"line": 664
|
350
350
|
},
|
351
351
|
"name": "resetDisableCompletePropagation"
|
352
352
|
},
|
@@ -356,7 +356,7 @@
|
|
356
356
|
},
|
357
357
|
"locationInModule": {
|
358
358
|
"filename": "src/certificate/index.ts",
|
359
|
-
"line":
|
359
|
+
"line": 834
|
360
360
|
},
|
361
361
|
"name": "resetDnsChallenge"
|
362
362
|
},
|
@@ -366,7 +366,7 @@
|
|
366
366
|
},
|
367
367
|
"locationInModule": {
|
368
368
|
"filename": "src/certificate/index.ts",
|
369
|
-
"line":
|
369
|
+
"line": 850
|
370
370
|
},
|
371
371
|
"name": "resetHttpChallenge"
|
372
372
|
},
|
@@ -376,7 +376,7 @@
|
|
376
376
|
},
|
377
377
|
"locationInModule": {
|
378
378
|
"filename": "src/certificate/index.ts",
|
379
|
-
"line":
|
379
|
+
"line": 866
|
380
380
|
},
|
381
381
|
"name": "resetHttpMemcachedChallenge"
|
382
382
|
},
|
@@ -386,7 +386,7 @@
|
|
386
386
|
},
|
387
387
|
"locationInModule": {
|
388
388
|
"filename": "src/certificate/index.ts",
|
389
|
-
"line":
|
389
|
+
"line": 882
|
390
390
|
},
|
391
391
|
"name": "resetHttpWebrootChallenge"
|
392
392
|
},
|
@@ -396,7 +396,7 @@
|
|
396
396
|
},
|
397
397
|
"locationInModule": {
|
398
398
|
"filename": "src/certificate/index.ts",
|
399
|
-
"line":
|
399
|
+
"line": 680
|
400
400
|
},
|
401
401
|
"name": "resetId"
|
402
402
|
},
|
@@ -406,7 +406,7 @@
|
|
406
406
|
},
|
407
407
|
"locationInModule": {
|
408
408
|
"filename": "src/certificate/index.ts",
|
409
|
-
"line":
|
409
|
+
"line": 701
|
410
410
|
},
|
411
411
|
"name": "resetKeyType"
|
412
412
|
},
|
@@ -416,7 +416,7 @@
|
|
416
416
|
},
|
417
417
|
"locationInModule": {
|
418
418
|
"filename": "src/certificate/index.ts",
|
419
|
-
"line":
|
419
|
+
"line": 717
|
420
420
|
},
|
421
421
|
"name": "resetMinDaysRemaining"
|
422
422
|
},
|
@@ -426,7 +426,7 @@
|
|
426
426
|
},
|
427
427
|
"locationInModule": {
|
428
428
|
"filename": "src/certificate/index.ts",
|
429
|
-
"line":
|
429
|
+
"line": 733
|
430
430
|
},
|
431
431
|
"name": "resetMustStaple"
|
432
432
|
},
|
@@ -436,7 +436,7 @@
|
|
436
436
|
},
|
437
437
|
"locationInModule": {
|
438
438
|
"filename": "src/certificate/index.ts",
|
439
|
-
"line":
|
439
|
+
"line": 749
|
440
440
|
},
|
441
441
|
"name": "resetPreCheckDelay"
|
442
442
|
},
|
@@ -446,7 +446,7 @@
|
|
446
446
|
},
|
447
447
|
"locationInModule": {
|
448
448
|
"filename": "src/certificate/index.ts",
|
449
|
-
"line":
|
449
|
+
"line": 765
|
450
450
|
},
|
451
451
|
"name": "resetPreferredChain"
|
452
452
|
},
|
@@ -456,7 +456,7 @@
|
|
456
456
|
},
|
457
457
|
"locationInModule": {
|
458
458
|
"filename": "src/certificate/index.ts",
|
459
|
-
"line":
|
459
|
+
"line": 786
|
460
460
|
},
|
461
461
|
"name": "resetRecursiveNameservers"
|
462
462
|
},
|
@@ -466,7 +466,7 @@
|
|
466
466
|
},
|
467
467
|
"locationInModule": {
|
468
468
|
"filename": "src/certificate/index.ts",
|
469
|
-
"line":
|
469
|
+
"line": 802
|
470
470
|
},
|
471
471
|
"name": "resetRevokeCertificateOnDestroy"
|
472
472
|
},
|
@@ -476,7 +476,7 @@
|
|
476
476
|
},
|
477
477
|
"locationInModule": {
|
478
478
|
"filename": "src/certificate/index.ts",
|
479
|
-
"line":
|
479
|
+
"line": 818
|
480
480
|
},
|
481
481
|
"name": "resetSubjectAlternativeNames"
|
482
482
|
},
|
@@ -486,7 +486,7 @@
|
|
486
486
|
},
|
487
487
|
"locationInModule": {
|
488
488
|
"filename": "src/certificate/index.ts",
|
489
|
-
"line":
|
489
|
+
"line": 898
|
490
490
|
},
|
491
491
|
"name": "resetTlsChallenge"
|
492
492
|
},
|
@@ -496,7 +496,7 @@
|
|
496
496
|
},
|
497
497
|
"locationInModule": {
|
498
498
|
"filename": "src/certificate/index.ts",
|
499
|
-
"line":
|
499
|
+
"line": 910
|
500
500
|
},
|
501
501
|
"name": "synthesizeAttributes",
|
502
502
|
"overrides": "cdktf.TerraformResource",
|
@@ -524,7 +524,7 @@
|
|
524
524
|
"immutable": true,
|
525
525
|
"locationInModule": {
|
526
526
|
"filename": "src/certificate/index.ts",
|
527
|
-
"line":
|
527
|
+
"line": 516
|
528
528
|
},
|
529
529
|
"name": "tfResourceType",
|
530
530
|
"static": true,
|
@@ -539,7 +539,7 @@
|
|
539
539
|
"immutable": true,
|
540
540
|
"locationInModule": {
|
541
541
|
"filename": "src/certificate/index.ts",
|
542
|
-
"line":
|
542
|
+
"line": 584
|
543
543
|
},
|
544
544
|
"name": "certificateDomain",
|
545
545
|
"type": {
|
@@ -553,7 +553,7 @@
|
|
553
553
|
"immutable": true,
|
554
554
|
"locationInModule": {
|
555
555
|
"filename": "src/certificate/index.ts",
|
556
|
-
"line":
|
556
|
+
"line": 589
|
557
557
|
},
|
558
558
|
"name": "certificateNotAfter",
|
559
559
|
"type": {
|
@@ -567,7 +567,7 @@
|
|
567
567
|
"immutable": true,
|
568
568
|
"locationInModule": {
|
569
569
|
"filename": "src/certificate/index.ts",
|
570
|
-
"line":
|
570
|
+
"line": 594
|
571
571
|
},
|
572
572
|
"name": "certificateP12",
|
573
573
|
"type": {
|
@@ -581,7 +581,7 @@
|
|
581
581
|
"immutable": true,
|
582
582
|
"locationInModule": {
|
583
583
|
"filename": "src/certificate/index.ts",
|
584
|
-
"line":
|
584
|
+
"line": 615
|
585
585
|
},
|
586
586
|
"name": "certificatePem",
|
587
587
|
"type": {
|
@@ -595,7 +595,7 @@
|
|
595
595
|
"immutable": true,
|
596
596
|
"locationInModule": {
|
597
597
|
"filename": "src/certificate/index.ts",
|
598
|
-
"line":
|
598
|
+
"line": 636
|
599
599
|
},
|
600
600
|
"name": "certificateUrl",
|
601
601
|
"type": {
|
@@ -609,7 +609,7 @@
|
|
609
609
|
"immutable": true,
|
610
610
|
"locationInModule": {
|
611
611
|
"filename": "src/certificate/index.ts",
|
612
|
-
"line":
|
612
|
+
"line": 828
|
613
613
|
},
|
614
614
|
"name": "dnsChallenge",
|
615
615
|
"type": {
|
@@ -623,7 +623,7 @@
|
|
623
623
|
"immutable": true,
|
624
624
|
"locationInModule": {
|
625
625
|
"filename": "src/certificate/index.ts",
|
626
|
-
"line":
|
626
|
+
"line": 844
|
627
627
|
},
|
628
628
|
"name": "httpChallenge",
|
629
629
|
"type": {
|
@@ -637,7 +637,7 @@
|
|
637
637
|
"immutable": true,
|
638
638
|
"locationInModule": {
|
639
639
|
"filename": "src/certificate/index.ts",
|
640
|
-
"line":
|
640
|
+
"line": 860
|
641
641
|
},
|
642
642
|
"name": "httpMemcachedChallenge",
|
643
643
|
"type": {
|
@@ -651,7 +651,7 @@
|
|
651
651
|
"immutable": true,
|
652
652
|
"locationInModule": {
|
653
653
|
"filename": "src/certificate/index.ts",
|
654
|
-
"line":
|
654
|
+
"line": 876
|
655
655
|
},
|
656
656
|
"name": "httpWebrootChallenge",
|
657
657
|
"type": {
|
@@ -665,7 +665,7 @@
|
|
665
665
|
"immutable": true,
|
666
666
|
"locationInModule": {
|
667
667
|
"filename": "src/certificate/index.ts",
|
668
|
-
"line":
|
668
|
+
"line": 689
|
669
669
|
},
|
670
670
|
"name": "issuerPem",
|
671
671
|
"type": {
|
@@ -679,7 +679,7 @@
|
|
679
679
|
"immutable": true,
|
680
680
|
"locationInModule": {
|
681
681
|
"filename": "src/certificate/index.ts",
|
682
|
-
"line":
|
682
|
+
"line": 774
|
683
683
|
},
|
684
684
|
"name": "privateKeyPem",
|
685
685
|
"type": {
|
@@ -693,7 +693,7 @@
|
|
693
693
|
"immutable": true,
|
694
694
|
"locationInModule": {
|
695
695
|
"filename": "src/certificate/index.ts",
|
696
|
-
"line":
|
696
|
+
"line": 892
|
697
697
|
},
|
698
698
|
"name": "tlsChallenge",
|
699
699
|
"type": {
|
@@ -707,7 +707,7 @@
|
|
707
707
|
"immutable": true,
|
708
708
|
"locationInModule": {
|
709
709
|
"filename": "src/certificate/index.ts",
|
710
|
-
"line":
|
710
|
+
"line": 579
|
711
711
|
},
|
712
712
|
"name": "accountKeyPemInput",
|
713
713
|
"optional": true,
|
@@ -722,7 +722,7 @@
|
|
722
722
|
"immutable": true,
|
723
723
|
"locationInModule": {
|
724
724
|
"filename": "src/certificate/index.ts",
|
725
|
-
"line":
|
725
|
+
"line": 610
|
726
726
|
},
|
727
727
|
"name": "certificateP12PasswordInput",
|
728
728
|
"optional": true,
|
@@ -737,7 +737,7 @@
|
|
737
737
|
"immutable": true,
|
738
738
|
"locationInModule": {
|
739
739
|
"filename": "src/certificate/index.ts",
|
740
|
-
"line":
|
740
|
+
"line": 631
|
741
741
|
},
|
742
742
|
"name": "certificateRequestPemInput",
|
743
743
|
"optional": true,
|
@@ -752,7 +752,7 @@
|
|
752
752
|
"immutable": true,
|
753
753
|
"locationInModule": {
|
754
754
|
"filename": "src/certificate/index.ts",
|
755
|
-
"line":
|
755
|
+
"line": 652
|
756
756
|
},
|
757
757
|
"name": "commonNameInput",
|
758
758
|
"optional": true,
|
@@ -767,7 +767,7 @@
|
|
767
767
|
"immutable": true,
|
768
768
|
"locationInModule": {
|
769
769
|
"filename": "src/certificate/index.ts",
|
770
|
-
"line":
|
770
|
+
"line": 668
|
771
771
|
},
|
772
772
|
"name": "disableCompletePropagationInput",
|
773
773
|
"optional": true,
|
@@ -791,7 +791,7 @@
|
|
791
791
|
"immutable": true,
|
792
792
|
"locationInModule": {
|
793
793
|
"filename": "src/certificate/index.ts",
|
794
|
-
"line":
|
794
|
+
"line": 838
|
795
795
|
},
|
796
796
|
"name": "dnsChallengeInput",
|
797
797
|
"optional": true,
|
@@ -820,7 +820,7 @@
|
|
820
820
|
"immutable": true,
|
821
821
|
"locationInModule": {
|
822
822
|
"filename": "src/certificate/index.ts",
|
823
|
-
"line":
|
823
|
+
"line": 854
|
824
824
|
},
|
825
825
|
"name": "httpChallengeInput",
|
826
826
|
"optional": true,
|
@@ -835,7 +835,7 @@
|
|
835
835
|
"immutable": true,
|
836
836
|
"locationInModule": {
|
837
837
|
"filename": "src/certificate/index.ts",
|
838
|
-
"line":
|
838
|
+
"line": 870
|
839
839
|
},
|
840
840
|
"name": "httpMemcachedChallengeInput",
|
841
841
|
"optional": true,
|
@@ -850,7 +850,7 @@
|
|
850
850
|
"immutable": true,
|
851
851
|
"locationInModule": {
|
852
852
|
"filename": "src/certificate/index.ts",
|
853
|
-
"line":
|
853
|
+
"line": 886
|
854
854
|
},
|
855
855
|
"name": "httpWebrootChallengeInput",
|
856
856
|
"optional": true,
|
@@ -865,7 +865,7 @@
|
|
865
865
|
"immutable": true,
|
866
866
|
"locationInModule": {
|
867
867
|
"filename": "src/certificate/index.ts",
|
868
|
-
"line":
|
868
|
+
"line": 684
|
869
869
|
},
|
870
870
|
"name": "idInput",
|
871
871
|
"optional": true,
|
@@ -880,7 +880,7 @@
|
|
880
880
|
"immutable": true,
|
881
881
|
"locationInModule": {
|
882
882
|
"filename": "src/certificate/index.ts",
|
883
|
-
"line":
|
883
|
+
"line": 705
|
884
884
|
},
|
885
885
|
"name": "keyTypeInput",
|
886
886
|
"optional": true,
|
@@ -895,7 +895,7 @@
|
|
895
895
|
"immutable": true,
|
896
896
|
"locationInModule": {
|
897
897
|
"filename": "src/certificate/index.ts",
|
898
|
-
"line":
|
898
|
+
"line": 721
|
899
899
|
},
|
900
900
|
"name": "minDaysRemainingInput",
|
901
901
|
"optional": true,
|
@@ -910,7 +910,7 @@
|
|
910
910
|
"immutable": true,
|
911
911
|
"locationInModule": {
|
912
912
|
"filename": "src/certificate/index.ts",
|
913
|
-
"line":
|
913
|
+
"line": 737
|
914
914
|
},
|
915
915
|
"name": "mustStapleInput",
|
916
916
|
"optional": true,
|
@@ -934,7 +934,7 @@
|
|
934
934
|
"immutable": true,
|
935
935
|
"locationInModule": {
|
936
936
|
"filename": "src/certificate/index.ts",
|
937
|
-
"line":
|
937
|
+
"line": 753
|
938
938
|
},
|
939
939
|
"name": "preCheckDelayInput",
|
940
940
|
"optional": true,
|
@@ -949,7 +949,7 @@
|
|
949
949
|
"immutable": true,
|
950
950
|
"locationInModule": {
|
951
951
|
"filename": "src/certificate/index.ts",
|
952
|
-
"line":
|
952
|
+
"line": 769
|
953
953
|
},
|
954
954
|
"name": "preferredChainInput",
|
955
955
|
"optional": true,
|
@@ -964,7 +964,7 @@
|
|
964
964
|
"immutable": true,
|
965
965
|
"locationInModule": {
|
966
966
|
"filename": "src/certificate/index.ts",
|
967
|
-
"line":
|
967
|
+
"line": 790
|
968
968
|
},
|
969
969
|
"name": "recursiveNameserversInput",
|
970
970
|
"optional": true,
|
@@ -984,7 +984,7 @@
|
|
984
984
|
"immutable": true,
|
985
985
|
"locationInModule": {
|
986
986
|
"filename": "src/certificate/index.ts",
|
987
|
-
"line":
|
987
|
+
"line": 806
|
988
988
|
},
|
989
989
|
"name": "revokeCertificateOnDestroyInput",
|
990
990
|
"optional": true,
|
@@ -1008,7 +1008,7 @@
|
|
1008
1008
|
"immutable": true,
|
1009
1009
|
"locationInModule": {
|
1010
1010
|
"filename": "src/certificate/index.ts",
|
1011
|
-
"line":
|
1011
|
+
"line": 822
|
1012
1012
|
},
|
1013
1013
|
"name": "subjectAlternativeNamesInput",
|
1014
1014
|
"optional": true,
|
@@ -1028,7 +1028,7 @@
|
|
1028
1028
|
"immutable": true,
|
1029
1029
|
"locationInModule": {
|
1030
1030
|
"filename": "src/certificate/index.ts",
|
1031
|
-
"line":
|
1031
|
+
"line": 902
|
1032
1032
|
},
|
1033
1033
|
"name": "tlsChallengeInput",
|
1034
1034
|
"optional": true,
|
@@ -1042,7 +1042,7 @@
|
|
1042
1042
|
},
|
1043
1043
|
"locationInModule": {
|
1044
1044
|
"filename": "src/certificate/index.ts",
|
1045
|
-
"line":
|
1045
|
+
"line": 572
|
1046
1046
|
},
|
1047
1047
|
"name": "accountKeyPem",
|
1048
1048
|
"type": {
|
@@ -1055,7 +1055,7 @@
|
|
1055
1055
|
},
|
1056
1056
|
"locationInModule": {
|
1057
1057
|
"filename": "src/certificate/index.ts",
|
1058
|
-
"line":
|
1058
|
+
"line": 600
|
1059
1059
|
},
|
1060
1060
|
"name": "certificateP12Password",
|
1061
1061
|
"type": {
|
@@ -1068,7 +1068,7 @@
|
|
1068
1068
|
},
|
1069
1069
|
"locationInModule": {
|
1070
1070
|
"filename": "src/certificate/index.ts",
|
1071
|
-
"line":
|
1071
|
+
"line": 621
|
1072
1072
|
},
|
1073
1073
|
"name": "certificateRequestPem",
|
1074
1074
|
"type": {
|
@@ -1081,7 +1081,7 @@
|
|
1081
1081
|
},
|
1082
1082
|
"locationInModule": {
|
1083
1083
|
"filename": "src/certificate/index.ts",
|
1084
|
-
"line":
|
1084
|
+
"line": 642
|
1085
1085
|
},
|
1086
1086
|
"name": "commonName",
|
1087
1087
|
"type": {
|
@@ -1094,7 +1094,7 @@
|
|
1094
1094
|
},
|
1095
1095
|
"locationInModule": {
|
1096
1096
|
"filename": "src/certificate/index.ts",
|
1097
|
-
"line":
|
1097
|
+
"line": 658
|
1098
1098
|
},
|
1099
1099
|
"name": "disableCompletePropagation",
|
1100
1100
|
"type": {
|
@@ -1116,7 +1116,7 @@
|
|
1116
1116
|
},
|
1117
1117
|
"locationInModule": {
|
1118
1118
|
"filename": "src/certificate/index.ts",
|
1119
|
-
"line":
|
1119
|
+
"line": 674
|
1120
1120
|
},
|
1121
1121
|
"name": "id",
|
1122
1122
|
"type": {
|
@@ -1129,7 +1129,7 @@
|
|
1129
1129
|
},
|
1130
1130
|
"locationInModule": {
|
1131
1131
|
"filename": "src/certificate/index.ts",
|
1132
|
-
"line":
|
1132
|
+
"line": 695
|
1133
1133
|
},
|
1134
1134
|
"name": "keyType",
|
1135
1135
|
"type": {
|
@@ -1142,7 +1142,7 @@
|
|
1142
1142
|
},
|
1143
1143
|
"locationInModule": {
|
1144
1144
|
"filename": "src/certificate/index.ts",
|
1145
|
-
"line":
|
1145
|
+
"line": 711
|
1146
1146
|
},
|
1147
1147
|
"name": "minDaysRemaining",
|
1148
1148
|
"type": {
|
@@ -1155,7 +1155,7 @@
|
|
1155
1155
|
},
|
1156
1156
|
"locationInModule": {
|
1157
1157
|
"filename": "src/certificate/index.ts",
|
1158
|
-
"line":
|
1158
|
+
"line": 727
|
1159
1159
|
},
|
1160
1160
|
"name": "mustStaple",
|
1161
1161
|
"type": {
|
@@ -1177,7 +1177,7 @@
|
|
1177
1177
|
},
|
1178
1178
|
"locationInModule": {
|
1179
1179
|
"filename": "src/certificate/index.ts",
|
1180
|
-
"line":
|
1180
|
+
"line": 743
|
1181
1181
|
},
|
1182
1182
|
"name": "preCheckDelay",
|
1183
1183
|
"type": {
|
@@ -1190,7 +1190,7 @@
|
|
1190
1190
|
},
|
1191
1191
|
"locationInModule": {
|
1192
1192
|
"filename": "src/certificate/index.ts",
|
1193
|
-
"line":
|
1193
|
+
"line": 759
|
1194
1194
|
},
|
1195
1195
|
"name": "preferredChain",
|
1196
1196
|
"type": {
|
@@ -1203,7 +1203,7 @@
|
|
1203
1203
|
},
|
1204
1204
|
"locationInModule": {
|
1205
1205
|
"filename": "src/certificate/index.ts",
|
1206
|
-
"line":
|
1206
|
+
"line": 780
|
1207
1207
|
},
|
1208
1208
|
"name": "recursiveNameservers",
|
1209
1209
|
"type": {
|
@@ -1221,7 +1221,7 @@
|
|
1221
1221
|
},
|
1222
1222
|
"locationInModule": {
|
1223
1223
|
"filename": "src/certificate/index.ts",
|
1224
|
-
"line":
|
1224
|
+
"line": 796
|
1225
1225
|
},
|
1226
1226
|
"name": "revokeCertificateOnDestroy",
|
1227
1227
|
"type": {
|
@@ -1243,7 +1243,7 @@
|
|
1243
1243
|
},
|
1244
1244
|
"locationInModule": {
|
1245
1245
|
"filename": "src/certificate/index.ts",
|
1246
|
-
"line":
|
1246
|
+
"line": 812
|
1247
1247
|
},
|
1248
1248
|
"name": "subjectAlternativeNames",
|
1249
1249
|
"type": {
|
@@ -1271,7 +1271,7 @@
|
|
1271
1271
|
"kind": "interface",
|
1272
1272
|
"locationInModule": {
|
1273
1273
|
"filename": "src/certificate/index.ts",
|
1274
|
-
"line":
|
1274
|
+
"line": 14
|
1275
1275
|
},
|
1276
1276
|
"name": "CertificateConfig",
|
1277
1277
|
"namespace": "certificate",
|
@@ -1285,7 +1285,7 @@
|
|
1285
1285
|
"immutable": true,
|
1286
1286
|
"locationInModule": {
|
1287
1287
|
"filename": "src/certificate/index.ts",
|
1288
|
-
"line":
|
1288
|
+
"line": 18
|
1289
1289
|
},
|
1290
1290
|
"name": "accountKeyPem",
|
1291
1291
|
"type": {
|
@@ -1301,7 +1301,7 @@
|
|
1301
1301
|
"immutable": true,
|
1302
1302
|
"locationInModule": {
|
1303
1303
|
"filename": "src/certificate/index.ts",
|
1304
|
-
"line":
|
1304
|
+
"line": 22
|
1305
1305
|
},
|
1306
1306
|
"name": "certificateP12Password",
|
1307
1307
|
"optional": true,
|
@@ -1318,7 +1318,7 @@
|
|
1318
1318
|
"immutable": true,
|
1319
1319
|
"locationInModule": {
|
1320
1320
|
"filename": "src/certificate/index.ts",
|
1321
|
-
"line":
|
1321
|
+
"line": 26
|
1322
1322
|
},
|
1323
1323
|
"name": "certificateRequestPem",
|
1324
1324
|
"optional": true,
|
@@ -1335,7 +1335,7 @@
|
|
1335
1335
|
"immutable": true,
|
1336
1336
|
"locationInModule": {
|
1337
1337
|
"filename": "src/certificate/index.ts",
|
1338
|
-
"line":
|
1338
|
+
"line": 30
|
1339
1339
|
},
|
1340
1340
|
"name": "commonName",
|
1341
1341
|
"optional": true,
|
@@ -1352,7 +1352,7 @@
|
|
1352
1352
|
"immutable": true,
|
1353
1353
|
"locationInModule": {
|
1354
1354
|
"filename": "src/certificate/index.ts",
|
1355
|
-
"line":
|
1355
|
+
"line": 34
|
1356
1356
|
},
|
1357
1357
|
"name": "disableCompletePropagation",
|
1358
1358
|
"optional": true,
|
@@ -1379,7 +1379,7 @@
|
|
1379
1379
|
"immutable": true,
|
1380
1380
|
"locationInModule": {
|
1381
1381
|
"filename": "src/certificate/index.ts",
|
1382
|
-
"line":
|
1382
|
+
"line": 79
|
1383
1383
|
},
|
1384
1384
|
"name": "dnsChallenge",
|
1385
1385
|
"optional": true,
|
@@ -1411,7 +1411,7 @@
|
|
1411
1411
|
"immutable": true,
|
1412
1412
|
"locationInModule": {
|
1413
1413
|
"filename": "src/certificate/index.ts",
|
1414
|
-
"line":
|
1414
|
+
"line": 85
|
1415
1415
|
},
|
1416
1416
|
"name": "httpChallenge",
|
1417
1417
|
"optional": true,
|
@@ -1429,7 +1429,7 @@
|
|
1429
1429
|
"immutable": true,
|
1430
1430
|
"locationInModule": {
|
1431
1431
|
"filename": "src/certificate/index.ts",
|
1432
|
-
"line":
|
1432
|
+
"line": 91
|
1433
1433
|
},
|
1434
1434
|
"name": "httpMemcachedChallenge",
|
1435
1435
|
"optional": true,
|
@@ -1447,7 +1447,7 @@
|
|
1447
1447
|
"immutable": true,
|
1448
1448
|
"locationInModule": {
|
1449
1449
|
"filename": "src/certificate/index.ts",
|
1450
|
-
"line":
|
1450
|
+
"line": 97
|
1451
1451
|
},
|
1452
1452
|
"name": "httpWebrootChallenge",
|
1453
1453
|
"optional": true,
|
@@ -1465,7 +1465,7 @@
|
|
1465
1465
|
"immutable": true,
|
1466
1466
|
"locationInModule": {
|
1467
1467
|
"filename": "src/certificate/index.ts",
|
1468
|
-
"line":
|
1468
|
+
"line": 41
|
1469
1469
|
},
|
1470
1470
|
"name": "id",
|
1471
1471
|
"optional": true,
|
@@ -1482,7 +1482,7 @@
|
|
1482
1482
|
"immutable": true,
|
1483
1483
|
"locationInModule": {
|
1484
1484
|
"filename": "src/certificate/index.ts",
|
1485
|
-
"line":
|
1485
|
+
"line": 45
|
1486
1486
|
},
|
1487
1487
|
"name": "keyType",
|
1488
1488
|
"optional": true,
|
@@ -1499,7 +1499,7 @@
|
|
1499
1499
|
"immutable": true,
|
1500
1500
|
"locationInModule": {
|
1501
1501
|
"filename": "src/certificate/index.ts",
|
1502
|
-
"line":
|
1502
|
+
"line": 49
|
1503
1503
|
},
|
1504
1504
|
"name": "minDaysRemaining",
|
1505
1505
|
"optional": true,
|
@@ -1516,7 +1516,7 @@
|
|
1516
1516
|
"immutable": true,
|
1517
1517
|
"locationInModule": {
|
1518
1518
|
"filename": "src/certificate/index.ts",
|
1519
|
-
"line":
|
1519
|
+
"line": 53
|
1520
1520
|
},
|
1521
1521
|
"name": "mustStaple",
|
1522
1522
|
"optional": true,
|
@@ -1542,7 +1542,7 @@
|
|
1542
1542
|
"immutable": true,
|
1543
1543
|
"locationInModule": {
|
1544
1544
|
"filename": "src/certificate/index.ts",
|
1545
|
-
"line":
|
1545
|
+
"line": 57
|
1546
1546
|
},
|
1547
1547
|
"name": "preCheckDelay",
|
1548
1548
|
"optional": true,
|
@@ -1559,7 +1559,7 @@
|
|
1559
1559
|
"immutable": true,
|
1560
1560
|
"locationInModule": {
|
1561
1561
|
"filename": "src/certificate/index.ts",
|
1562
|
-
"line":
|
1562
|
+
"line": 61
|
1563
1563
|
},
|
1564
1564
|
"name": "preferredChain",
|
1565
1565
|
"optional": true,
|
@@ -1576,7 +1576,7 @@
|
|
1576
1576
|
"immutable": true,
|
1577
1577
|
"locationInModule": {
|
1578
1578
|
"filename": "src/certificate/index.ts",
|
1579
|
-
"line":
|
1579
|
+
"line": 65
|
1580
1580
|
},
|
1581
1581
|
"name": "recursiveNameservers",
|
1582
1582
|
"optional": true,
|
@@ -1598,7 +1598,7 @@
|
|
1598
1598
|
"immutable": true,
|
1599
1599
|
"locationInModule": {
|
1600
1600
|
"filename": "src/certificate/index.ts",
|
1601
|
-
"line":
|
1601
|
+
"line": 69
|
1602
1602
|
},
|
1603
1603
|
"name": "revokeCertificateOnDestroy",
|
1604
1604
|
"optional": true,
|
@@ -1624,7 +1624,7 @@
|
|
1624
1624
|
"immutable": true,
|
1625
1625
|
"locationInModule": {
|
1626
1626
|
"filename": "src/certificate/index.ts",
|
1627
|
-
"line":
|
1627
|
+
"line": 73
|
1628
1628
|
},
|
1629
1629
|
"name": "subjectAlternativeNames",
|
1630
1630
|
"optional": true,
|
@@ -1647,7 +1647,7 @@
|
|
1647
1647
|
"immutable": true,
|
1648
1648
|
"locationInModule": {
|
1649
1649
|
"filename": "src/certificate/index.ts",
|
1650
|
-
"line":
|
1650
|
+
"line": 103
|
1651
1651
|
},
|
1652
1652
|
"name": "tlsChallenge",
|
1653
1653
|
"optional": true,
|
@@ -1668,7 +1668,7 @@
|
|
1668
1668
|
"kind": "interface",
|
1669
1669
|
"locationInModule": {
|
1670
1670
|
"filename": "src/certificate/index.ts",
|
1671
|
-
"line":
|
1671
|
+
"line": 105
|
1672
1672
|
},
|
1673
1673
|
"name": "CertificateDnsChallenge",
|
1674
1674
|
"namespace": "certificate",
|
@@ -1682,7 +1682,7 @@
|
|
1682
1682
|
"immutable": true,
|
1683
1683
|
"locationInModule": {
|
1684
1684
|
"filename": "src/certificate/index.ts",
|
1685
|
-
"line":
|
1685
|
+
"line": 113
|
1686
1686
|
},
|
1687
1687
|
"name": "provider",
|
1688
1688
|
"type": {
|
@@ -1698,7 +1698,7 @@
|
|
1698
1698
|
"immutable": true,
|
1699
1699
|
"locationInModule": {
|
1700
1700
|
"filename": "src/certificate/index.ts",
|
1701
|
-
"line":
|
1701
|
+
"line": 109
|
1702
1702
|
},
|
1703
1703
|
"name": "config",
|
1704
1704
|
"optional": true,
|
@@ -1727,7 +1727,7 @@
|
|
1727
1727
|
},
|
1728
1728
|
"locationInModule": {
|
1729
1729
|
"filename": "src/certificate/index.ts",
|
1730
|
-
"line":
|
1730
|
+
"line": 215
|
1731
1731
|
},
|
1732
1732
|
"parameters": [
|
1733
1733
|
{
|
@@ -1762,7 +1762,7 @@
|
|
1762
1762
|
"kind": "class",
|
1763
1763
|
"locationInModule": {
|
1764
1764
|
"filename": "src/certificate/index.ts",
|
1765
|
-
"line":
|
1765
|
+
"line": 207
|
1766
1766
|
},
|
1767
1767
|
"methods": [
|
1768
1768
|
{
|
@@ -1771,7 +1771,7 @@
|
|
1771
1771
|
},
|
1772
1772
|
"locationInModule": {
|
1773
1773
|
"filename": "src/certificate/index.ts",
|
1774
|
-
"line":
|
1774
|
+
"line": 222
|
1775
1775
|
},
|
1776
1776
|
"name": "get",
|
1777
1777
|
"parameters": [
|
@@ -1802,7 +1802,7 @@
|
|
1802
1802
|
},
|
1803
1803
|
"locationInModule": {
|
1804
1804
|
"filename": "src/certificate/index.ts",
|
1805
|
-
"line":
|
1805
|
+
"line": 215
|
1806
1806
|
},
|
1807
1807
|
"name": "terraformAttribute",
|
1808
1808
|
"overrides": "cdktf.ComplexList",
|
@@ -1818,7 +1818,7 @@
|
|
1818
1818
|
},
|
1819
1819
|
"locationInModule": {
|
1820
1820
|
"filename": "src/certificate/index.ts",
|
1821
|
-
"line":
|
1821
|
+
"line": 215
|
1822
1822
|
},
|
1823
1823
|
"name": "terraformResource",
|
1824
1824
|
"overrides": "cdktf.ComplexList",
|
@@ -1834,7 +1834,7 @@
|
|
1834
1834
|
},
|
1835
1835
|
"locationInModule": {
|
1836
1836
|
"filename": "src/certificate/index.ts",
|
1837
|
-
"line":
|
1837
|
+
"line": 215
|
1838
1838
|
},
|
1839
1839
|
"name": "wrapsSet",
|
1840
1840
|
"overrides": "cdktf.ComplexList",
|
@@ -1849,7 +1849,7 @@
|
|
1849
1849
|
},
|
1850
1850
|
"locationInModule": {
|
1851
1851
|
"filename": "src/certificate/index.ts",
|
1852
|
-
"line":
|
1852
|
+
"line": 208
|
1853
1853
|
},
|
1854
1854
|
"name": "internalValue",
|
1855
1855
|
"optional": true,
|
@@ -1887,7 +1887,7 @@
|
|
1887
1887
|
},
|
1888
1888
|
"locationInModule": {
|
1889
1889
|
"filename": "src/certificate/index.ts",
|
1890
|
-
"line":
|
1890
|
+
"line": 137
|
1891
1891
|
},
|
1892
1892
|
"parameters": [
|
1893
1893
|
{
|
@@ -1931,7 +1931,7 @@
|
|
1931
1931
|
"kind": "class",
|
1932
1932
|
"locationInModule": {
|
1933
1933
|
"filename": "src/certificate/index.ts",
|
1934
|
-
"line":
|
1934
|
+
"line": 127
|
1935
1935
|
},
|
1936
1936
|
"methods": [
|
1937
1937
|
{
|
@@ -1940,7 +1940,7 @@
|
|
1940
1940
|
},
|
1941
1941
|
"locationInModule": {
|
1942
1942
|
"filename": "src/certificate/index.ts",
|
1943
|
-
"line":
|
1943
|
+
"line": 185
|
1944
1944
|
},
|
1945
1945
|
"name": "resetConfig"
|
1946
1946
|
}
|
@@ -1955,7 +1955,7 @@
|
|
1955
1955
|
"immutable": true,
|
1956
1956
|
"locationInModule": {
|
1957
1957
|
"filename": "src/certificate/index.ts",
|
1958
|
-
"line":
|
1958
|
+
"line": 189
|
1959
1959
|
},
|
1960
1960
|
"name": "configInput",
|
1961
1961
|
"optional": true,
|
@@ -1975,7 +1975,7 @@
|
|
1975
1975
|
"immutable": true,
|
1976
1976
|
"locationInModule": {
|
1977
1977
|
"filename": "src/certificate/index.ts",
|
1978
|
-
"line":
|
1978
|
+
"line": 202
|
1979
1979
|
},
|
1980
1980
|
"name": "providerInput",
|
1981
1981
|
"optional": true,
|
@@ -1989,7 +1989,7 @@
|
|
1989
1989
|
},
|
1990
1990
|
"locationInModule": {
|
1991
1991
|
"filename": "src/certificate/index.ts",
|
1992
|
-
"line":
|
1992
|
+
"line": 179
|
1993
1993
|
},
|
1994
1994
|
"name": "config",
|
1995
1995
|
"type": {
|
@@ -2007,7 +2007,7 @@
|
|
2007
2007
|
},
|
2008
2008
|
"locationInModule": {
|
2009
2009
|
"filename": "src/certificate/index.ts",
|
2010
|
-
"line":
|
2010
|
+
"line": 195
|
2011
2011
|
},
|
2012
2012
|
"name": "provider",
|
2013
2013
|
"type": {
|
@@ -2020,7 +2020,7 @@
|
|
2020
2020
|
},
|
2021
2021
|
"locationInModule": {
|
2022
2022
|
"filename": "src/certificate/index.ts",
|
2023
|
-
"line":
|
2023
|
+
"line": 141
|
2024
2024
|
},
|
2025
2025
|
"name": "internalValue",
|
2026
2026
|
"optional": true,
|
@@ -2050,7 +2050,7 @@
|
|
2050
2050
|
"kind": "interface",
|
2051
2051
|
"locationInModule": {
|
2052
2052
|
"filename": "src/certificate/index.ts",
|
2053
|
-
"line":
|
2053
|
+
"line": 226
|
2054
2054
|
},
|
2055
2055
|
"name": "CertificateHttpChallenge",
|
2056
2056
|
"namespace": "certificate",
|
@@ -2064,7 +2064,7 @@
|
|
2064
2064
|
"immutable": true,
|
2065
2065
|
"locationInModule": {
|
2066
2066
|
"filename": "src/certificate/index.ts",
|
2067
|
-
"line":
|
2067
|
+
"line": 230
|
2068
2068
|
},
|
2069
2069
|
"name": "port",
|
2070
2070
|
"optional": true,
|
@@ -2081,7 +2081,7 @@
|
|
2081
2081
|
"immutable": true,
|
2082
2082
|
"locationInModule": {
|
2083
2083
|
"filename": "src/certificate/index.ts",
|
2084
|
-
"line":
|
2084
|
+
"line": 234
|
2085
2085
|
},
|
2086
2086
|
"name": "proxyHeader",
|
2087
2087
|
"optional": true,
|
@@ -2105,7 +2105,7 @@
|
|
2105
2105
|
},
|
2106
2106
|
"locationInModule": {
|
2107
2107
|
"filename": "src/certificate/index.ts",
|
2108
|
-
"line":
|
2108
|
+
"line": 255
|
2109
2109
|
},
|
2110
2110
|
"parameters": [
|
2111
2111
|
{
|
@@ -2131,7 +2131,7 @@
|
|
2131
2131
|
"kind": "class",
|
2132
2132
|
"locationInModule": {
|
2133
2133
|
"filename": "src/certificate/index.ts",
|
2134
|
-
"line":
|
2134
|
+
"line": 248
|
2135
2135
|
},
|
2136
2136
|
"methods": [
|
2137
2137
|
{
|
@@ -2140,7 +2140,7 @@
|
|
2140
2140
|
},
|
2141
2141
|
"locationInModule": {
|
2142
2142
|
"filename": "src/certificate/index.ts",
|
2143
|
-
"line":
|
2143
|
+
"line": 294
|
2144
2144
|
},
|
2145
2145
|
"name": "resetPort"
|
2146
2146
|
},
|
@@ -2150,7 +2150,7 @@
|
|
2150
2150
|
},
|
2151
2151
|
"locationInModule": {
|
2152
2152
|
"filename": "src/certificate/index.ts",
|
2153
|
-
"line":
|
2153
|
+
"line": 310
|
2154
2154
|
},
|
2155
2155
|
"name": "resetProxyHeader"
|
2156
2156
|
}
|
@@ -2165,7 +2165,7 @@
|
|
2165
2165
|
"immutable": true,
|
2166
2166
|
"locationInModule": {
|
2167
2167
|
"filename": "src/certificate/index.ts",
|
2168
|
-
"line":
|
2168
|
+
"line": 298
|
2169
2169
|
},
|
2170
2170
|
"name": "portInput",
|
2171
2171
|
"optional": true,
|
@@ -2180,7 +2180,7 @@
|
|
2180
2180
|
"immutable": true,
|
2181
2181
|
"locationInModule": {
|
2182
2182
|
"filename": "src/certificate/index.ts",
|
2183
|
-
"line":
|
2183
|
+
"line": 314
|
2184
2184
|
},
|
2185
2185
|
"name": "proxyHeaderInput",
|
2186
2186
|
"optional": true,
|
@@ -2194,7 +2194,7 @@
|
|
2194
2194
|
},
|
2195
2195
|
"locationInModule": {
|
2196
2196
|
"filename": "src/certificate/index.ts",
|
2197
|
-
"line":
|
2197
|
+
"line": 288
|
2198
2198
|
},
|
2199
2199
|
"name": "port",
|
2200
2200
|
"type": {
|
@@ -2207,7 +2207,7 @@
|
|
2207
2207
|
},
|
2208
2208
|
"locationInModule": {
|
2209
2209
|
"filename": "src/certificate/index.ts",
|
2210
|
-
"line":
|
2210
|
+
"line": 304
|
2211
2211
|
},
|
2212
2212
|
"name": "proxyHeader",
|
2213
2213
|
"type": {
|
@@ -2220,7 +2220,7 @@
|
|
2220
2220
|
},
|
2221
2221
|
"locationInModule": {
|
2222
2222
|
"filename": "src/certificate/index.ts",
|
2223
|
-
"line":
|
2223
|
+
"line": 259
|
2224
2224
|
},
|
2225
2225
|
"name": "internalValue",
|
2226
2226
|
"optional": true,
|
@@ -2241,7 +2241,7 @@
|
|
2241
2241
|
"kind": "interface",
|
2242
2242
|
"locationInModule": {
|
2243
2243
|
"filename": "src/certificate/index.ts",
|
2244
|
-
"line":
|
2244
|
+
"line": 318
|
2245
2245
|
},
|
2246
2246
|
"name": "CertificateHttpMemcachedChallenge",
|
2247
2247
|
"namespace": "certificate",
|
@@ -2255,7 +2255,7 @@
|
|
2255
2255
|
"immutable": true,
|
2256
2256
|
"locationInModule": {
|
2257
2257
|
"filename": "src/certificate/index.ts",
|
2258
|
-
"line":
|
2258
|
+
"line": 322
|
2259
2259
|
},
|
2260
2260
|
"name": "hosts",
|
2261
2261
|
"type": {
|
@@ -2283,7 +2283,7 @@
|
|
2283
2283
|
},
|
2284
2284
|
"locationInModule": {
|
2285
2285
|
"filename": "src/certificate/index.ts",
|
2286
|
-
"line":
|
2286
|
+
"line": 342
|
2287
2287
|
},
|
2288
2288
|
"parameters": [
|
2289
2289
|
{
|
@@ -2309,7 +2309,7 @@
|
|
2309
2309
|
"kind": "class",
|
2310
2310
|
"locationInModule": {
|
2311
2311
|
"filename": "src/certificate/index.ts",
|
2312
|
-
"line":
|
2312
|
+
"line": 335
|
2313
2313
|
},
|
2314
2314
|
"name": "CertificateHttpMemcachedChallengeOutputReference",
|
2315
2315
|
"namespace": "certificate",
|
@@ -2321,7 +2321,7 @@
|
|
2321
2321
|
"immutable": true,
|
2322
2322
|
"locationInModule": {
|
2323
2323
|
"filename": "src/certificate/index.ts",
|
2324
|
-
"line":
|
2324
|
+
"line": 376
|
2325
2325
|
},
|
2326
2326
|
"name": "hostsInput",
|
2327
2327
|
"optional": true,
|
@@ -2340,7 +2340,7 @@
|
|
2340
2340
|
},
|
2341
2341
|
"locationInModule": {
|
2342
2342
|
"filename": "src/certificate/index.ts",
|
2343
|
-
"line":
|
2343
|
+
"line": 369
|
2344
2344
|
},
|
2345
2345
|
"name": "hosts",
|
2346
2346
|
"type": {
|
@@ -2358,7 +2358,7 @@
|
|
2358
2358
|
},
|
2359
2359
|
"locationInModule": {
|
2360
2360
|
"filename": "src/certificate/index.ts",
|
2361
|
-
"line":
|
2361
|
+
"line": 346
|
2362
2362
|
},
|
2363
2363
|
"name": "internalValue",
|
2364
2364
|
"optional": true,
|
@@ -2379,7 +2379,7 @@
|
|
2379
2379
|
"kind": "interface",
|
2380
2380
|
"locationInModule": {
|
2381
2381
|
"filename": "src/certificate/index.ts",
|
2382
|
-
"line":
|
2382
|
+
"line": 380
|
2383
2383
|
},
|
2384
2384
|
"name": "CertificateHttpWebrootChallenge",
|
2385
2385
|
"namespace": "certificate",
|
@@ -2393,7 +2393,7 @@
|
|
2393
2393
|
"immutable": true,
|
2394
2394
|
"locationInModule": {
|
2395
2395
|
"filename": "src/certificate/index.ts",
|
2396
|
-
"line":
|
2396
|
+
"line": 384
|
2397
2397
|
},
|
2398
2398
|
"name": "directory",
|
2399
2399
|
"type": {
|
@@ -2416,7 +2416,7 @@
|
|
2416
2416
|
},
|
2417
2417
|
"locationInModule": {
|
2418
2418
|
"filename": "src/certificate/index.ts",
|
2419
|
-
"line":
|
2419
|
+
"line": 404
|
2420
2420
|
},
|
2421
2421
|
"parameters": [
|
2422
2422
|
{
|
@@ -2442,7 +2442,7 @@
|
|
2442
2442
|
"kind": "class",
|
2443
2443
|
"locationInModule": {
|
2444
2444
|
"filename": "src/certificate/index.ts",
|
2445
|
-
"line":
|
2445
|
+
"line": 397
|
2446
2446
|
},
|
2447
2447
|
"name": "CertificateHttpWebrootChallengeOutputReference",
|
2448
2448
|
"namespace": "certificate",
|
@@ -2454,7 +2454,7 @@
|
|
2454
2454
|
"immutable": true,
|
2455
2455
|
"locationInModule": {
|
2456
2456
|
"filename": "src/certificate/index.ts",
|
2457
|
-
"line":
|
2457
|
+
"line": 438
|
2458
2458
|
},
|
2459
2459
|
"name": "directoryInput",
|
2460
2460
|
"optional": true,
|
@@ -2468,7 +2468,7 @@
|
|
2468
2468
|
},
|
2469
2469
|
"locationInModule": {
|
2470
2470
|
"filename": "src/certificate/index.ts",
|
2471
|
-
"line":
|
2471
|
+
"line": 431
|
2472
2472
|
},
|
2473
2473
|
"name": "directory",
|
2474
2474
|
"type": {
|
@@ -2481,7 +2481,7 @@
|
|
2481
2481
|
},
|
2482
2482
|
"locationInModule": {
|
2483
2483
|
"filename": "src/certificate/index.ts",
|
2484
|
-
"line":
|
2484
|
+
"line": 408
|
2485
2485
|
},
|
2486
2486
|
"name": "internalValue",
|
2487
2487
|
"optional": true,
|
@@ -2502,7 +2502,7 @@
|
|
2502
2502
|
"kind": "interface",
|
2503
2503
|
"locationInModule": {
|
2504
2504
|
"filename": "src/certificate/index.ts",
|
2505
|
-
"line":
|
2505
|
+
"line": 442
|
2506
2506
|
},
|
2507
2507
|
"name": "CertificateTlsChallenge",
|
2508
2508
|
"namespace": "certificate",
|
@@ -2516,7 +2516,7 @@
|
|
2516
2516
|
"immutable": true,
|
2517
2517
|
"locationInModule": {
|
2518
2518
|
"filename": "src/certificate/index.ts",
|
2519
|
-
"line":
|
2519
|
+
"line": 446
|
2520
2520
|
},
|
2521
2521
|
"name": "port",
|
2522
2522
|
"optional": true,
|
@@ -2540,7 +2540,7 @@
|
|
2540
2540
|
},
|
2541
2541
|
"locationInModule": {
|
2542
2542
|
"filename": "src/certificate/index.ts",
|
2543
|
-
"line":
|
2543
|
+
"line": 466
|
2544
2544
|
},
|
2545
2545
|
"parameters": [
|
2546
2546
|
{
|
@@ -2566,7 +2566,7 @@
|
|
2566
2566
|
"kind": "class",
|
2567
2567
|
"locationInModule": {
|
2568
2568
|
"filename": "src/certificate/index.ts",
|
2569
|
-
"line":
|
2569
|
+
"line": 459
|
2570
2570
|
},
|
2571
2571
|
"methods": [
|
2572
2572
|
{
|
@@ -2575,7 +2575,7 @@
|
|
2575
2575
|
},
|
2576
2576
|
"locationInModule": {
|
2577
2577
|
"filename": "src/certificate/index.ts",
|
2578
|
-
"line":
|
2578
|
+
"line": 499
|
2579
2579
|
},
|
2580
2580
|
"name": "resetPort"
|
2581
2581
|
}
|
@@ -2590,7 +2590,7 @@
|
|
2590
2590
|
"immutable": true,
|
2591
2591
|
"locationInModule": {
|
2592
2592
|
"filename": "src/certificate/index.ts",
|
2593
|
-
"line":
|
2593
|
+
"line": 503
|
2594
2594
|
},
|
2595
2595
|
"name": "portInput",
|
2596
2596
|
"optional": true,
|
@@ -2604,7 +2604,7 @@
|
|
2604
2604
|
},
|
2605
2605
|
"locationInModule": {
|
2606
2606
|
"filename": "src/certificate/index.ts",
|
2607
|
-
"line":
|
2607
|
+
"line": 493
|
2608
2608
|
},
|
2609
2609
|
"name": "port",
|
2610
2610
|
"type": {
|
@@ -2617,7 +2617,7 @@
|
|
2617
2617
|
},
|
2618
2618
|
"locationInModule": {
|
2619
2619
|
"filename": "src/certificate/index.ts",
|
2620
|
-
"line":
|
2620
|
+
"line": 470
|
2621
2621
|
},
|
2622
2622
|
"name": "internalValue",
|
2623
2623
|
"optional": true,
|
@@ -2643,7 +2643,7 @@
|
|
2643
2643
|
},
|
2644
2644
|
"locationInModule": {
|
2645
2645
|
"filename": "src/provider/index.ts",
|
2646
|
-
"line":
|
2646
|
+
"line": 48
|
2647
2647
|
},
|
2648
2648
|
"parameters": [
|
2649
2649
|
{
|
@@ -2676,7 +2676,7 @@
|
|
2676
2676
|
"kind": "class",
|
2677
2677
|
"locationInModule": {
|
2678
2678
|
"filename": "src/provider/index.ts",
|
2679
|
-
"line":
|
2679
|
+
"line": 30
|
2680
2680
|
},
|
2681
2681
|
"methods": [
|
2682
2682
|
{
|
@@ -2685,7 +2685,7 @@
|
|
2685
2685
|
},
|
2686
2686
|
"locationInModule": {
|
2687
2687
|
"filename": "src/provider/index.ts",
|
2688
|
-
"line":
|
2688
|
+
"line": 87
|
2689
2689
|
},
|
2690
2690
|
"name": "resetAlias"
|
2691
2691
|
},
|
@@ -2695,7 +2695,7 @@
|
|
2695
2695
|
},
|
2696
2696
|
"locationInModule": {
|
2697
2697
|
"filename": "src/provider/index.ts",
|
2698
|
-
"line":
|
2698
|
+
"line": 99
|
2699
2699
|
},
|
2700
2700
|
"name": "synthesizeAttributes",
|
2701
2701
|
"overrides": "cdktf.TerraformProvider",
|
@@ -2723,7 +2723,7 @@
|
|
2723
2723
|
"immutable": true,
|
2724
2724
|
"locationInModule": {
|
2725
2725
|
"filename": "src/provider/index.ts",
|
2726
|
-
"line":
|
2726
|
+
"line": 35
|
2727
2727
|
},
|
2728
2728
|
"name": "tfResourceType",
|
2729
2729
|
"static": true,
|
@@ -2738,7 +2738,7 @@
|
|
2738
2738
|
"immutable": true,
|
2739
2739
|
"locationInModule": {
|
2740
2740
|
"filename": "src/provider/index.ts",
|
2741
|
-
"line":
|
2741
|
+
"line": 91
|
2742
2742
|
},
|
2743
2743
|
"name": "aliasInput",
|
2744
2744
|
"optional": true,
|
@@ -2753,7 +2753,7 @@
|
|
2753
2753
|
"immutable": true,
|
2754
2754
|
"locationInModule": {
|
2755
2755
|
"filename": "src/provider/index.ts",
|
2756
|
-
"line":
|
2756
|
+
"line": 75
|
2757
2757
|
},
|
2758
2758
|
"name": "serverUrlInput",
|
2759
2759
|
"optional": true,
|
@@ -2767,7 +2767,7 @@
|
|
2767
2767
|
},
|
2768
2768
|
"locationInModule": {
|
2769
2769
|
"filename": "src/provider/index.ts",
|
2770
|
-
"line":
|
2770
|
+
"line": 81
|
2771
2771
|
},
|
2772
2772
|
"name": "alias",
|
2773
2773
|
"optional": true,
|
@@ -2782,7 +2782,7 @@
|
|
2782
2782
|
},
|
2783
2783
|
"locationInModule": {
|
2784
2784
|
"filename": "src/provider/index.ts",
|
2785
|
-
"line":
|
2785
|
+
"line": 68
|
2786
2786
|
},
|
2787
2787
|
"name": "serverUrl",
|
2788
2788
|
"optional": true,
|
@@ -2803,7 +2803,7 @@
|
|
2803
2803
|
"kind": "interface",
|
2804
2804
|
"locationInModule": {
|
2805
2805
|
"filename": "src/provider/index.ts",
|
2806
|
-
"line":
|
2806
|
+
"line": 14
|
2807
2807
|
},
|
2808
2808
|
"name": "AcmeProviderConfig",
|
2809
2809
|
"namespace": "provider",
|
@@ -2817,7 +2817,7 @@
|
|
2817
2817
|
"immutable": true,
|
2818
2818
|
"locationInModule": {
|
2819
2819
|
"filename": "src/provider/index.ts",
|
2820
|
-
"line":
|
2820
|
+
"line": 18
|
2821
2821
|
},
|
2822
2822
|
"name": "serverUrl",
|
2823
2823
|
"type": {
|
@@ -2834,7 +2834,7 @@
|
|
2834
2834
|
"immutable": true,
|
2835
2835
|
"locationInModule": {
|
2836
2836
|
"filename": "src/provider/index.ts",
|
2837
|
-
"line":
|
2837
|
+
"line": 24
|
2838
2838
|
},
|
2839
2839
|
"name": "alias",
|
2840
2840
|
"optional": true,
|
@@ -2860,7 +2860,7 @@
|
|
2860
2860
|
},
|
2861
2861
|
"locationInModule": {
|
2862
2862
|
"filename": "src/registration/index.ts",
|
2863
|
-
"line":
|
2863
|
+
"line": 145
|
2864
2864
|
},
|
2865
2865
|
"parameters": [
|
2866
2866
|
{
|
@@ -2893,7 +2893,7 @@
|
|
2893
2893
|
"kind": "class",
|
2894
2894
|
"locationInModule": {
|
2895
2895
|
"filename": "src/registration/index.ts",
|
2896
|
-
"line":
|
2896
|
+
"line": 127
|
2897
2897
|
},
|
2898
2898
|
"methods": [
|
2899
2899
|
{
|
@@ -2902,7 +2902,7 @@
|
|
2902
2902
|
},
|
2903
2903
|
"locationInModule": {
|
2904
2904
|
"filename": "src/registration/index.ts",
|
2905
|
-
"line":
|
2905
|
+
"line": 223
|
2906
2906
|
},
|
2907
2907
|
"name": "putExternalAccountBinding",
|
2908
2908
|
"parameters": [
|
@@ -2920,7 +2920,7 @@
|
|
2920
2920
|
},
|
2921
2921
|
"locationInModule": {
|
2922
2922
|
"filename": "src/registration/index.ts",
|
2923
|
-
"line":
|
2923
|
+
"line": 226
|
2924
2924
|
},
|
2925
2925
|
"name": "resetExternalAccountBinding"
|
2926
2926
|
},
|
@@ -2930,7 +2930,7 @@
|
|
2930
2930
|
},
|
2931
2931
|
"locationInModule": {
|
2932
2932
|
"filename": "src/registration/index.ts",
|
2933
|
-
"line":
|
2933
|
+
"line": 205
|
2934
2934
|
},
|
2935
2935
|
"name": "resetId"
|
2936
2936
|
},
|
@@ -2940,7 +2940,7 @@
|
|
2940
2940
|
},
|
2941
2941
|
"locationInModule": {
|
2942
2942
|
"filename": "src/registration/index.ts",
|
2943
|
-
"line":
|
2943
|
+
"line": 238
|
2944
2944
|
},
|
2945
2945
|
"name": "synthesizeAttributes",
|
2946
2946
|
"overrides": "cdktf.TerraformResource",
|
@@ -2968,7 +2968,7 @@
|
|
2968
2968
|
"immutable": true,
|
2969
2969
|
"locationInModule": {
|
2970
2970
|
"filename": "src/registration/index.ts",
|
2971
|
-
"line":
|
2971
|
+
"line": 132
|
2972
2972
|
},
|
2973
2973
|
"name": "tfResourceType",
|
2974
2974
|
"static": true,
|
@@ -2983,7 +2983,7 @@
|
|
2983
2983
|
"immutable": true,
|
2984
2984
|
"locationInModule": {
|
2985
2985
|
"filename": "src/registration/index.ts",
|
2986
|
-
"line":
|
2986
|
+
"line": 220
|
2987
2987
|
},
|
2988
2988
|
"name": "externalAccountBinding",
|
2989
2989
|
"type": {
|
@@ -2997,7 +2997,7 @@
|
|
2997
2997
|
"immutable": true,
|
2998
2998
|
"locationInModule": {
|
2999
2999
|
"filename": "src/registration/index.ts",
|
3000
|
-
"line":
|
3000
|
+
"line": 214
|
3001
3001
|
},
|
3002
3002
|
"name": "registrationUrl",
|
3003
3003
|
"type": {
|
@@ -3011,7 +3011,7 @@
|
|
3011
3011
|
"immutable": true,
|
3012
3012
|
"locationInModule": {
|
3013
3013
|
"filename": "src/registration/index.ts",
|
3014
|
-
"line":
|
3014
|
+
"line": 180
|
3015
3015
|
},
|
3016
3016
|
"name": "accountKeyPemInput",
|
3017
3017
|
"optional": true,
|
@@ -3026,7 +3026,7 @@
|
|
3026
3026
|
"immutable": true,
|
3027
3027
|
"locationInModule": {
|
3028
3028
|
"filename": "src/registration/index.ts",
|
3029
|
-
"line":
|
3029
|
+
"line": 193
|
3030
3030
|
},
|
3031
3031
|
"name": "emailAddressInput",
|
3032
3032
|
"optional": true,
|
@@ -3041,7 +3041,7 @@
|
|
3041
3041
|
"immutable": true,
|
3042
3042
|
"locationInModule": {
|
3043
3043
|
"filename": "src/registration/index.ts",
|
3044
|
-
"line":
|
3044
|
+
"line": 230
|
3045
3045
|
},
|
3046
3046
|
"name": "externalAccountBindingInput",
|
3047
3047
|
"optional": true,
|
@@ -3056,7 +3056,7 @@
|
|
3056
3056
|
"immutable": true,
|
3057
3057
|
"locationInModule": {
|
3058
3058
|
"filename": "src/registration/index.ts",
|
3059
|
-
"line":
|
3059
|
+
"line": 209
|
3060
3060
|
},
|
3061
3061
|
"name": "idInput",
|
3062
3062
|
"optional": true,
|
@@ -3070,7 +3070,7 @@
|
|
3070
3070
|
},
|
3071
3071
|
"locationInModule": {
|
3072
3072
|
"filename": "src/registration/index.ts",
|
3073
|
-
"line":
|
3073
|
+
"line": 173
|
3074
3074
|
},
|
3075
3075
|
"name": "accountKeyPem",
|
3076
3076
|
"type": {
|
@@ -3083,7 +3083,7 @@
|
|
3083
3083
|
},
|
3084
3084
|
"locationInModule": {
|
3085
3085
|
"filename": "src/registration/index.ts",
|
3086
|
-
"line":
|
3086
|
+
"line": 186
|
3087
3087
|
},
|
3088
3088
|
"name": "emailAddress",
|
3089
3089
|
"type": {
|
@@ -3096,7 +3096,7 @@
|
|
3096
3096
|
},
|
3097
3097
|
"locationInModule": {
|
3098
3098
|
"filename": "src/registration/index.ts",
|
3099
|
-
"line":
|
3099
|
+
"line": 199
|
3100
3100
|
},
|
3101
3101
|
"name": "id",
|
3102
3102
|
"type": {
|
@@ -3119,7 +3119,7 @@
|
|
3119
3119
|
"kind": "interface",
|
3120
3120
|
"locationInModule": {
|
3121
3121
|
"filename": "src/registration/index.ts",
|
3122
|
-
"line":
|
3122
|
+
"line": 14
|
3123
3123
|
},
|
3124
3124
|
"name": "RegistrationConfig",
|
3125
3125
|
"namespace": "registration",
|
@@ -3133,7 +3133,7 @@
|
|
3133
3133
|
"immutable": true,
|
3134
3134
|
"locationInModule": {
|
3135
3135
|
"filename": "src/registration/index.ts",
|
3136
|
-
"line":
|
3136
|
+
"line": 18
|
3137
3137
|
},
|
3138
3138
|
"name": "accountKeyPem",
|
3139
3139
|
"type": {
|
@@ -3149,7 +3149,7 @@
|
|
3149
3149
|
"immutable": true,
|
3150
3150
|
"locationInModule": {
|
3151
3151
|
"filename": "src/registration/index.ts",
|
3152
|
-
"line":
|
3152
|
+
"line": 22
|
3153
3153
|
},
|
3154
3154
|
"name": "emailAddress",
|
3155
3155
|
"type": {
|
@@ -3166,7 +3166,7 @@
|
|
3166
3166
|
"immutable": true,
|
3167
3167
|
"locationInModule": {
|
3168
3168
|
"filename": "src/registration/index.ts",
|
3169
|
-
"line":
|
3169
|
+
"line": 35
|
3170
3170
|
},
|
3171
3171
|
"name": "externalAccountBinding",
|
3172
3172
|
"optional": true,
|
@@ -3184,7 +3184,7 @@
|
|
3184
3184
|
"immutable": true,
|
3185
3185
|
"locationInModule": {
|
3186
3186
|
"filename": "src/registration/index.ts",
|
3187
|
-
"line":
|
3187
|
+
"line": 29
|
3188
3188
|
},
|
3189
3189
|
"name": "id",
|
3190
3190
|
"optional": true,
|
@@ -3205,7 +3205,7 @@
|
|
3205
3205
|
"kind": "interface",
|
3206
3206
|
"locationInModule": {
|
3207
3207
|
"filename": "src/registration/index.ts",
|
3208
|
-
"line":
|
3208
|
+
"line": 37
|
3209
3209
|
},
|
3210
3210
|
"name": "RegistrationExternalAccountBinding",
|
3211
3211
|
"namespace": "registration",
|
@@ -3219,7 +3219,7 @@
|
|
3219
3219
|
"immutable": true,
|
3220
3220
|
"locationInModule": {
|
3221
3221
|
"filename": "src/registration/index.ts",
|
3222
|
-
"line":
|
3222
|
+
"line": 41
|
3223
3223
|
},
|
3224
3224
|
"name": "hmacBase64",
|
3225
3225
|
"type": {
|
@@ -3235,7 +3235,7 @@
|
|
3235
3235
|
"immutable": true,
|
3236
3236
|
"locationInModule": {
|
3237
3237
|
"filename": "src/registration/index.ts",
|
3238
|
-
"line":
|
3238
|
+
"line": 45
|
3239
3239
|
},
|
3240
3240
|
"name": "keyId",
|
3241
3241
|
"type": {
|
@@ -3258,7 +3258,7 @@
|
|
3258
3258
|
},
|
3259
3259
|
"locationInModule": {
|
3260
3260
|
"filename": "src/registration/index.ts",
|
3261
|
-
"line":
|
3261
|
+
"line": 66
|
3262
3262
|
},
|
3263
3263
|
"parameters": [
|
3264
3264
|
{
|
@@ -3284,7 +3284,7 @@
|
|
3284
3284
|
"kind": "class",
|
3285
3285
|
"locationInModule": {
|
3286
3286
|
"filename": "src/registration/index.ts",
|
3287
|
-
"line":
|
3287
|
+
"line": 59
|
3288
3288
|
},
|
3289
3289
|
"name": "RegistrationExternalAccountBindingOutputReference",
|
3290
3290
|
"namespace": "registration",
|
@@ -3296,7 +3296,7 @@
|
|
3296
3296
|
"immutable": true,
|
3297
3297
|
"locationInModule": {
|
3298
3298
|
"filename": "src/registration/index.ts",
|
3299
|
-
"line":
|
3299
|
+
"line": 106
|
3300
3300
|
},
|
3301
3301
|
"name": "hmacBase64Input",
|
3302
3302
|
"optional": true,
|
@@ -3311,7 +3311,7 @@
|
|
3311
3311
|
"immutable": true,
|
3312
3312
|
"locationInModule": {
|
3313
3313
|
"filename": "src/registration/index.ts",
|
3314
|
-
"line":
|
3314
|
+
"line": 119
|
3315
3315
|
},
|
3316
3316
|
"name": "keyIdInput",
|
3317
3317
|
"optional": true,
|
@@ -3325,7 +3325,7 @@
|
|
3325
3325
|
},
|
3326
3326
|
"locationInModule": {
|
3327
3327
|
"filename": "src/registration/index.ts",
|
3328
|
-
"line":
|
3328
|
+
"line": 99
|
3329
3329
|
},
|
3330
3330
|
"name": "hmacBase64",
|
3331
3331
|
"type": {
|
@@ -3338,7 +3338,7 @@
|
|
3338
3338
|
},
|
3339
3339
|
"locationInModule": {
|
3340
3340
|
"filename": "src/registration/index.ts",
|
3341
|
-
"line":
|
3341
|
+
"line": 112
|
3342
3342
|
},
|
3343
3343
|
"name": "keyId",
|
3344
3344
|
"type": {
|
@@ -3351,7 +3351,7 @@
|
|
3351
3351
|
},
|
3352
3352
|
"locationInModule": {
|
3353
3353
|
"filename": "src/registration/index.ts",
|
3354
|
-
"line":
|
3354
|
+
"line": 70
|
3355
3355
|
},
|
3356
3356
|
"name": "internalValue",
|
3357
3357
|
"optional": true,
|
@@ -3363,6 +3363,6 @@
|
|
3363
3363
|
"symbolId": "src/registration/index:RegistrationExternalAccountBindingOutputReference"
|
3364
3364
|
}
|
3365
3365
|
},
|
3366
|
-
"version": "6.0.
|
3367
|
-
"fingerprint": "
|
3366
|
+
"version": "6.0.2",
|
3367
|
+
"fingerprint": "CEMuYiuGvVgsB2MA85XdBpWgi+RD5F8JlQmVhGCw+Y4="
|
3368
3368
|
}
|