@cdktf/provider-acme 0.2.64 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +604 -177
- package/API.md +318 -26
- package/changelog.md +8 -1
- package/lib/acme-provider.js +1 -1
- package/lib/certificate.d.ts +58 -3
- package/lib/certificate.d.ts.map +1 -1
- package/lib/certificate.js +128 -22
- package/lib/registration.d.ts +11 -0
- package/lib/registration.d.ts.map +1 -1
- package/lib/registration.js +15 -4
- package/package.json +5 -5
- package/releasetag.txt +1 -1
- package/version.txt +1 -1
package/API.md
CHANGED
@@ -174,6 +174,7 @@ Must be unique amongst siblings in the same scope
|
|
174
174
|
|
175
175
|
| **Name** | **Description** |
|
176
176
|
| --- | --- |
|
177
|
+
| [`putDnsChallenge`](#cdktfprovideracmecertificateputdnschallenge) | *No description.* |
|
177
178
|
| [`putHttpChallenge`](#cdktfprovideracmecertificateputhttpchallenge) | *No description.* |
|
178
179
|
| [`putHttpMemcachedChallenge`](#cdktfprovideracmecertificateputhttpmemcachedchallenge) | *No description.* |
|
179
180
|
| [`putHttpWebrootChallenge`](#cdktfprovideracmecertificateputhttpwebrootchallenge) | *No description.* |
|
@@ -186,6 +187,7 @@ Must be unique amongst siblings in the same scope
|
|
186
187
|
| [`resetHttpChallenge`](#cdktfprovideracmecertificateresethttpchallenge) | *No description.* |
|
187
188
|
| [`resetHttpMemcachedChallenge`](#cdktfprovideracmecertificateresethttpmemcachedchallenge) | *No description.* |
|
188
189
|
| [`resetHttpWebrootChallenge`](#cdktfprovideracmecertificateresethttpwebrootchallenge) | *No description.* |
|
190
|
+
| [`resetId`](#cdktfprovideracmecertificateresetid) | *No description.* |
|
189
191
|
| [`resetKeyType`](#cdktfprovideracmecertificateresetkeytype) | *No description.* |
|
190
192
|
| [`resetMinDaysRemaining`](#cdktfprovideracmecertificateresetmindaysremaining) | *No description.* |
|
191
193
|
| [`resetMustStaple`](#cdktfprovideracmecertificateresetmuststaple) | *No description.* |
|
@@ -198,6 +200,18 @@ Must be unique amongst siblings in the same scope
|
|
198
200
|
|
199
201
|
---
|
200
202
|
|
203
|
+
##### `putDnsChallenge` <a name="@cdktf/provider-acme.Certificate.putDnsChallenge" id="cdktfprovideracmecertificateputdnschallenge"></a>
|
204
|
+
|
205
|
+
```typescript
|
206
|
+
public putDnsChallenge(value: IResolvable | CertificateDnsChallenge[])
|
207
|
+
```
|
208
|
+
|
209
|
+
###### `value`<sup>Required</sup> <a name="@cdktf/provider-acme.Certificate.parameter.value" id="cdktfprovideracmecertificateparametervalue"></a>
|
210
|
+
|
211
|
+
- *Type:* [`cdktf.IResolvable`](#cdktf.IResolvable) | [`@cdktf/provider-acme.CertificateDnsChallenge`](#@cdktf/provider-acme.CertificateDnsChallenge)[]
|
212
|
+
|
213
|
+
---
|
214
|
+
|
201
215
|
##### `putHttpChallenge` <a name="@cdktf/provider-acme.Certificate.putHttpChallenge" id="cdktfprovideracmecertificateputhttpchallenge"></a>
|
202
216
|
|
203
217
|
```typescript
|
@@ -294,6 +308,12 @@ public resetHttpMemcachedChallenge()
|
|
294
308
|
public resetHttpWebrootChallenge()
|
295
309
|
```
|
296
310
|
|
311
|
+
##### `resetId` <a name="@cdktf/provider-acme.Certificate.resetId" id="cdktfprovideracmecertificateresetid"></a>
|
312
|
+
|
313
|
+
```typescript
|
314
|
+
public resetId()
|
315
|
+
```
|
316
|
+
|
297
317
|
##### `resetKeyType` <a name="@cdktf/provider-acme.Certificate.resetKeyType" id="cdktfprovideracmecertificateresetkeytype"></a>
|
298
318
|
|
299
319
|
```typescript
|
@@ -357,10 +377,10 @@ public resetTlsChallenge()
|
|
357
377
|
| [`certificateP12`](#cdktfprovideracmecertificatepropertycertificatep12)<span title="Required">*</span> | `string` | *No description.* |
|
358
378
|
| [`certificatePem`](#cdktfprovideracmecertificatepropertycertificatepem)<span title="Required">*</span> | `string` | *No description.* |
|
359
379
|
| [`certificateUrl`](#cdktfprovideracmecertificatepropertycertificateurl)<span title="Required">*</span> | `string` | *No description.* |
|
380
|
+
| [`dnsChallenge`](#cdktfprovideracmecertificatepropertydnschallenge)<span title="Required">*</span> | [`@cdktf/provider-acme.CertificateDnsChallengeList`](#@cdktf/provider-acme.CertificateDnsChallengeList) | *No description.* |
|
360
381
|
| [`httpChallenge`](#cdktfprovideracmecertificatepropertyhttpchallenge)<span title="Required">*</span> | [`@cdktf/provider-acme.CertificateHttpChallengeOutputReference`](#@cdktf/provider-acme.CertificateHttpChallengeOutputReference) | *No description.* |
|
361
382
|
| [`httpMemcachedChallenge`](#cdktfprovideracmecertificatepropertyhttpmemcachedchallenge)<span title="Required">*</span> | [`@cdktf/provider-acme.CertificateHttpMemcachedChallengeOutputReference`](#@cdktf/provider-acme.CertificateHttpMemcachedChallengeOutputReference) | *No description.* |
|
362
383
|
| [`httpWebrootChallenge`](#cdktfprovideracmecertificatepropertyhttpwebrootchallenge)<span title="Required">*</span> | [`@cdktf/provider-acme.CertificateHttpWebrootChallengeOutputReference`](#@cdktf/provider-acme.CertificateHttpWebrootChallengeOutputReference) | *No description.* |
|
363
|
-
| [`id`](#cdktfprovideracmecertificatepropertyid)<span title="Required">*</span> | `string` | *No description.* |
|
364
384
|
| [`issuerPem`](#cdktfprovideracmecertificatepropertyissuerpem)<span title="Required">*</span> | `string` | *No description.* |
|
365
385
|
| [`privateKeyPem`](#cdktfprovideracmecertificatepropertyprivatekeypem)<span title="Required">*</span> | `string` | *No description.* |
|
366
386
|
| [`tlsChallenge`](#cdktfprovideracmecertificatepropertytlschallenge)<span title="Required">*</span> | [`@cdktf/provider-acme.CertificateTlsChallengeOutputReference`](#@cdktf/provider-acme.CertificateTlsChallengeOutputReference) | *No description.* |
|
@@ -373,6 +393,7 @@ public resetTlsChallenge()
|
|
373
393
|
| [`httpChallengeInput`](#cdktfprovideracmecertificatepropertyhttpchallengeinput) | [`@cdktf/provider-acme.CertificateHttpChallenge`](#@cdktf/provider-acme.CertificateHttpChallenge) | *No description.* |
|
374
394
|
| [`httpMemcachedChallengeInput`](#cdktfprovideracmecertificatepropertyhttpmemcachedchallengeinput) | [`@cdktf/provider-acme.CertificateHttpMemcachedChallenge`](#@cdktf/provider-acme.CertificateHttpMemcachedChallenge) | *No description.* |
|
375
395
|
| [`httpWebrootChallengeInput`](#cdktfprovideracmecertificatepropertyhttpwebrootchallengeinput) | [`@cdktf/provider-acme.CertificateHttpWebrootChallenge`](#@cdktf/provider-acme.CertificateHttpWebrootChallenge) | *No description.* |
|
396
|
+
| [`idInput`](#cdktfprovideracmecertificatepropertyidinput) | `string` | *No description.* |
|
376
397
|
| [`keyTypeInput`](#cdktfprovideracmecertificatepropertykeytypeinput) | `string` | *No description.* |
|
377
398
|
| [`minDaysRemainingInput`](#cdktfprovideracmecertificatepropertymindaysremaininginput) | `number` | *No description.* |
|
378
399
|
| [`mustStapleInput`](#cdktfprovideracmecertificatepropertymuststapleinput) | `boolean` \| [`cdktf.IResolvable`](#cdktf.IResolvable) | *No description.* |
|
@@ -387,7 +408,7 @@ public resetTlsChallenge()
|
|
387
408
|
| [`certificateRequestPem`](#cdktfprovideracmecertificatepropertycertificaterequestpem)<span title="Required">*</span> | `string` | *No description.* |
|
388
409
|
| [`commonName`](#cdktfprovideracmecertificatepropertycommonname)<span title="Required">*</span> | `string` | *No description.* |
|
389
410
|
| [`disableCompletePropagation`](#cdktfprovideracmecertificatepropertydisablecompletepropagation)<span title="Required">*</span> | `boolean` \| [`cdktf.IResolvable`](#cdktf.IResolvable) | *No description.* |
|
390
|
-
| [`
|
411
|
+
| [`id`](#cdktfprovideracmecertificatepropertyid)<span title="Required">*</span> | `string` | *No description.* |
|
391
412
|
| [`keyType`](#cdktfprovideracmecertificatepropertykeytype)<span title="Required">*</span> | `string` | *No description.* |
|
392
413
|
| [`minDaysRemaining`](#cdktfprovideracmecertificatepropertymindaysremaining)<span title="Required">*</span> | `number` | *No description.* |
|
393
414
|
| [`mustStaple`](#cdktfprovideracmecertificatepropertymuststaple)<span title="Required">*</span> | `boolean` \| [`cdktf.IResolvable`](#cdktf.IResolvable) | *No description.* |
|
@@ -439,6 +460,16 @@ public readonly certificateUrl: string;
|
|
439
460
|
|
440
461
|
---
|
441
462
|
|
463
|
+
##### `dnsChallenge`<sup>Required</sup> <a name="@cdktf/provider-acme.Certificate.property.dnsChallenge" id="cdktfprovideracmecertificatepropertydnschallenge"></a>
|
464
|
+
|
465
|
+
```typescript
|
466
|
+
public readonly dnsChallenge: CertificateDnsChallengeList;
|
467
|
+
```
|
468
|
+
|
469
|
+
- *Type:* [`@cdktf/provider-acme.CertificateDnsChallengeList`](#@cdktf/provider-acme.CertificateDnsChallengeList)
|
470
|
+
|
471
|
+
---
|
472
|
+
|
442
473
|
##### `httpChallenge`<sup>Required</sup> <a name="@cdktf/provider-acme.Certificate.property.httpChallenge" id="cdktfprovideracmecertificatepropertyhttpchallenge"></a>
|
443
474
|
|
444
475
|
```typescript
|
@@ -469,16 +500,6 @@ public readonly httpWebrootChallenge: CertificateHttpWebrootChallengeOutputRefer
|
|
469
500
|
|
470
501
|
---
|
471
502
|
|
472
|
-
##### `id`<sup>Required</sup> <a name="@cdktf/provider-acme.Certificate.property.id" id="cdktfprovideracmecertificatepropertyid"></a>
|
473
|
-
|
474
|
-
```typescript
|
475
|
-
public readonly id: string;
|
476
|
-
```
|
477
|
-
|
478
|
-
- *Type:* `string`
|
479
|
-
|
480
|
-
---
|
481
|
-
|
482
503
|
##### `issuerPem`<sup>Required</sup> <a name="@cdktf/provider-acme.Certificate.property.issuerPem" id="cdktfprovideracmecertificatepropertyissuerpem"></a>
|
483
504
|
|
484
505
|
```typescript
|
@@ -599,6 +620,16 @@ public readonly httpWebrootChallengeInput: CertificateHttpWebrootChallenge;
|
|
599
620
|
|
600
621
|
---
|
601
622
|
|
623
|
+
##### `idInput`<sup>Optional</sup> <a name="@cdktf/provider-acme.Certificate.property.idInput" id="cdktfprovideracmecertificatepropertyidinput"></a>
|
624
|
+
|
625
|
+
```typescript
|
626
|
+
public readonly idInput: string;
|
627
|
+
```
|
628
|
+
|
629
|
+
- *Type:* `string`
|
630
|
+
|
631
|
+
---
|
632
|
+
|
602
633
|
##### `keyTypeInput`<sup>Optional</sup> <a name="@cdktf/provider-acme.Certificate.property.keyTypeInput" id="cdktfprovideracmecertificatepropertykeytypeinput"></a>
|
603
634
|
|
604
635
|
```typescript
|
@@ -739,13 +770,13 @@ public readonly disableCompletePropagation: boolean | IResolvable;
|
|
739
770
|
|
740
771
|
---
|
741
772
|
|
742
|
-
##### `
|
773
|
+
##### `id`<sup>Required</sup> <a name="@cdktf/provider-acme.Certificate.property.id" id="cdktfprovideracmecertificatepropertyid"></a>
|
743
774
|
|
744
775
|
```typescript
|
745
|
-
public readonly
|
776
|
+
public readonly id: string;
|
746
777
|
```
|
747
778
|
|
748
|
-
- *Type:*
|
779
|
+
- *Type:* `string`
|
749
780
|
|
750
781
|
---
|
751
782
|
|
@@ -893,6 +924,7 @@ Must be unique amongst siblings in the same scope
|
|
893
924
|
| --- | --- |
|
894
925
|
| [`putExternalAccountBinding`](#cdktfprovideracmeregistrationputexternalaccountbinding) | *No description.* |
|
895
926
|
| [`resetExternalAccountBinding`](#cdktfprovideracmeregistrationresetexternalaccountbinding) | *No description.* |
|
927
|
+
| [`resetId`](#cdktfprovideracmeregistrationresetid) | *No description.* |
|
896
928
|
|
897
929
|
---
|
898
930
|
|
@@ -914,19 +946,26 @@ public putExternalAccountBinding(value: RegistrationExternalAccountBinding)
|
|
914
946
|
public resetExternalAccountBinding()
|
915
947
|
```
|
916
948
|
|
949
|
+
##### `resetId` <a name="@cdktf/provider-acme.Registration.resetId" id="cdktfprovideracmeregistrationresetid"></a>
|
950
|
+
|
951
|
+
```typescript
|
952
|
+
public resetId()
|
953
|
+
```
|
954
|
+
|
917
955
|
|
918
956
|
#### Properties <a name="Properties" id="properties"></a>
|
919
957
|
|
920
958
|
| **Name** | **Type** | **Description** |
|
921
959
|
| --- | --- | --- |
|
922
960
|
| [`externalAccountBinding`](#cdktfprovideracmeregistrationpropertyexternalaccountbinding)<span title="Required">*</span> | [`@cdktf/provider-acme.RegistrationExternalAccountBindingOutputReference`](#@cdktf/provider-acme.RegistrationExternalAccountBindingOutputReference) | *No description.* |
|
923
|
-
| [`id`](#cdktfprovideracmeregistrationpropertyid)<span title="Required">*</span> | `string` | *No description.* |
|
924
961
|
| [`registrationUrl`](#cdktfprovideracmeregistrationpropertyregistrationurl)<span title="Required">*</span> | `string` | *No description.* |
|
925
962
|
| [`accountKeyPemInput`](#cdktfprovideracmeregistrationpropertyaccountkeypeminput) | `string` | *No description.* |
|
926
963
|
| [`emailAddressInput`](#cdktfprovideracmeregistrationpropertyemailaddressinput) | `string` | *No description.* |
|
927
964
|
| [`externalAccountBindingInput`](#cdktfprovideracmeregistrationpropertyexternalaccountbindinginput) | [`@cdktf/provider-acme.RegistrationExternalAccountBinding`](#@cdktf/provider-acme.RegistrationExternalAccountBinding) | *No description.* |
|
965
|
+
| [`idInput`](#cdktfprovideracmeregistrationpropertyidinput) | `string` | *No description.* |
|
928
966
|
| [`accountKeyPem`](#cdktfprovideracmeregistrationpropertyaccountkeypem)<span title="Required">*</span> | `string` | *No description.* |
|
929
967
|
| [`emailAddress`](#cdktfprovideracmeregistrationpropertyemailaddress)<span title="Required">*</span> | `string` | *No description.* |
|
968
|
+
| [`id`](#cdktfprovideracmeregistrationpropertyid)<span title="Required">*</span> | `string` | *No description.* |
|
930
969
|
|
931
970
|
---
|
932
971
|
|
@@ -940,16 +979,6 @@ public readonly externalAccountBinding: RegistrationExternalAccountBindingOutput
|
|
940
979
|
|
941
980
|
---
|
942
981
|
|
943
|
-
##### `id`<sup>Required</sup> <a name="@cdktf/provider-acme.Registration.property.id" id="cdktfprovideracmeregistrationpropertyid"></a>
|
944
|
-
|
945
|
-
```typescript
|
946
|
-
public readonly id: string;
|
947
|
-
```
|
948
|
-
|
949
|
-
- *Type:* `string`
|
950
|
-
|
951
|
-
---
|
952
|
-
|
953
982
|
##### `registrationUrl`<sup>Required</sup> <a name="@cdktf/provider-acme.Registration.property.registrationUrl" id="cdktfprovideracmeregistrationpropertyregistrationurl"></a>
|
954
983
|
|
955
984
|
```typescript
|
@@ -990,6 +1019,16 @@ public readonly externalAccountBindingInput: RegistrationExternalAccountBinding;
|
|
990
1019
|
|
991
1020
|
---
|
992
1021
|
|
1022
|
+
##### `idInput`<sup>Optional</sup> <a name="@cdktf/provider-acme.Registration.property.idInput" id="cdktfprovideracmeregistrationpropertyidinput"></a>
|
1023
|
+
|
1024
|
+
```typescript
|
1025
|
+
public readonly idInput: string;
|
1026
|
+
```
|
1027
|
+
|
1028
|
+
- *Type:* `string`
|
1029
|
+
|
1030
|
+
---
|
1031
|
+
|
993
1032
|
##### `accountKeyPem`<sup>Required</sup> <a name="@cdktf/provider-acme.Registration.property.accountKeyPem" id="cdktfprovideracmeregistrationpropertyaccountkeypem"></a>
|
994
1033
|
|
995
1034
|
```typescript
|
@@ -1010,6 +1049,16 @@ public readonly emailAddress: string;
|
|
1010
1049
|
|
1011
1050
|
---
|
1012
1051
|
|
1052
|
+
##### `id`<sup>Required</sup> <a name="@cdktf/provider-acme.Registration.property.id" id="cdktfprovideracmeregistrationpropertyid"></a>
|
1053
|
+
|
1054
|
+
```typescript
|
1055
|
+
public readonly id: string;
|
1056
|
+
```
|
1057
|
+
|
1058
|
+
- *Type:* `string`
|
1059
|
+
|
1060
|
+
---
|
1061
|
+
|
1013
1062
|
#### Constants <a name="Constants" id="constants"></a>
|
1014
1063
|
|
1015
1064
|
| **Name** | **Type** | **Description** |
|
@@ -1098,6 +1147,7 @@ const certificateConfig: CertificateConfig = { ... }
|
|
1098
1147
|
| [`httpChallenge`](#cdktfprovideracmecertificateconfigpropertyhttpchallenge) | [`@cdktf/provider-acme.CertificateHttpChallenge`](#@cdktf/provider-acme.CertificateHttpChallenge) | http_challenge block. |
|
1099
1148
|
| [`httpMemcachedChallenge`](#cdktfprovideracmecertificateconfigpropertyhttpmemcachedchallenge) | [`@cdktf/provider-acme.CertificateHttpMemcachedChallenge`](#@cdktf/provider-acme.CertificateHttpMemcachedChallenge) | http_memcached_challenge block. |
|
1100
1149
|
| [`httpWebrootChallenge`](#cdktfprovideracmecertificateconfigpropertyhttpwebrootchallenge) | [`@cdktf/provider-acme.CertificateHttpWebrootChallenge`](#@cdktf/provider-acme.CertificateHttpWebrootChallenge) | http_webroot_challenge block. |
|
1150
|
+
| [`id`](#cdktfprovideracmecertificateconfigpropertyid) | `string` | Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#id Certificate#id}. |
|
1101
1151
|
| [`keyType`](#cdktfprovideracmecertificateconfigpropertykeytype) | `string` | Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#key_type Certificate#key_type}. |
|
1102
1152
|
| [`minDaysRemaining`](#cdktfprovideracmecertificateconfigpropertymindaysremaining) | `number` | Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#min_days_remaining Certificate#min_days_remaining}. |
|
1103
1153
|
| [`mustStaple`](#cdktfprovideracmecertificateconfigpropertymuststaple) | `boolean` \| [`cdktf.IResolvable`](#cdktf.IResolvable) | Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#must_staple Certificate#must_staple}. |
|
@@ -1266,6 +1316,20 @@ Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/
|
|
1266
1316
|
|
1267
1317
|
---
|
1268
1318
|
|
1319
|
+
##### `id`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateConfig.property.id" id="cdktfprovideracmecertificateconfigpropertyid"></a>
|
1320
|
+
|
1321
|
+
```typescript
|
1322
|
+
public readonly id: string;
|
1323
|
+
```
|
1324
|
+
|
1325
|
+
- *Type:* `string`
|
1326
|
+
|
1327
|
+
Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#id Certificate#id}.
|
1328
|
+
|
1329
|
+
Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. If 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.
|
1330
|
+
|
1331
|
+
---
|
1332
|
+
|
1269
1333
|
##### `keyType`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateConfig.property.keyType" id="cdktfprovideracmecertificateconfigpropertykeytype"></a>
|
1270
1334
|
|
1271
1335
|
```typescript
|
@@ -1573,6 +1637,7 @@ const registrationConfig: RegistrationConfig = { ... }
|
|
1573
1637
|
| [`accountKeyPem`](#cdktfprovideracmeregistrationconfigpropertyaccountkeypem)<span title="Required">*</span> | `string` | Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/registration#account_key_pem Registration#account_key_pem}. |
|
1574
1638
|
| [`emailAddress`](#cdktfprovideracmeregistrationconfigpropertyemailaddress)<span title="Required">*</span> | `string` | Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/registration#email_address Registration#email_address}. |
|
1575
1639
|
| [`externalAccountBinding`](#cdktfprovideracmeregistrationconfigpropertyexternalaccountbinding) | [`@cdktf/provider-acme.RegistrationExternalAccountBinding`](#@cdktf/provider-acme.RegistrationExternalAccountBinding) | external_account_binding block. |
|
1640
|
+
| [`id`](#cdktfprovideracmeregistrationconfigpropertyid) | `string` | Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/registration#id Registration#id}. |
|
1576
1641
|
|
1577
1642
|
---
|
1578
1643
|
|
@@ -1654,6 +1719,20 @@ Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/
|
|
1654
1719
|
|
1655
1720
|
---
|
1656
1721
|
|
1722
|
+
##### `id`<sup>Optional</sup> <a name="@cdktf/provider-acme.RegistrationConfig.property.id" id="cdktfprovideracmeregistrationconfigpropertyid"></a>
|
1723
|
+
|
1724
|
+
```typescript
|
1725
|
+
public readonly id: string;
|
1726
|
+
```
|
1727
|
+
|
1728
|
+
- *Type:* `string`
|
1729
|
+
|
1730
|
+
Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/registration#id Registration#id}.
|
1731
|
+
|
1732
|
+
Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. If 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.
|
1733
|
+
|
1734
|
+
---
|
1735
|
+
|
1657
1736
|
### RegistrationExternalAccountBinding <a name="@cdktf/provider-acme.RegistrationExternalAccountBinding" id="cdktfprovideracmeregistrationexternalaccountbinding"></a>
|
1658
1737
|
|
1659
1738
|
#### Initializer <a name="[object Object].Initializer" id="object-objectinitializer"></a>
|
@@ -1699,6 +1778,219 @@ Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/
|
|
1699
1778
|
|
1700
1779
|
## Classes <a name="Classes" id="classes"></a>
|
1701
1780
|
|
1781
|
+
### CertificateDnsChallengeList <a name="@cdktf/provider-acme.CertificateDnsChallengeList" id="cdktfprovideracmecertificatednschallengelist"></a>
|
1782
|
+
|
1783
|
+
#### Initializers <a name="@cdktf/provider-acme.CertificateDnsChallengeList.Initializer" id="cdktfprovideracmecertificatednschallengelistinitializer"></a>
|
1784
|
+
|
1785
|
+
```typescript
|
1786
|
+
import { CertificateDnsChallengeList } from '@cdktf/provider-acme'
|
1787
|
+
|
1788
|
+
new CertificateDnsChallengeList(terraformResource: IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean)
|
1789
|
+
```
|
1790
|
+
|
1791
|
+
| **Name** | **Type** | **Description** |
|
1792
|
+
| --- | --- | --- |
|
1793
|
+
| [`terraformResource`](#cdktfprovideracmecertificatednschallengelistparameterterraformresource)<span title="Required">*</span> | [`cdktf.IInterpolatingParent`](#cdktf.IInterpolatingParent) | The parent resource. |
|
1794
|
+
| [`terraformAttribute`](#cdktfprovideracmecertificatednschallengelistparameterterraformattribute)<span title="Required">*</span> | `string` | The attribute on the parent resource this class is referencing. |
|
1795
|
+
| [`wrapsSet`](#cdktfprovideracmecertificatednschallengelistparameterwrapsset)<span title="Required">*</span> | `boolean` | whether the list is wrapping a set (will add tolist() to be able to access an item via an index). |
|
1796
|
+
|
1797
|
+
---
|
1798
|
+
|
1799
|
+
##### `terraformResource`<sup>Required</sup> <a name="@cdktf/provider-acme.CertificateDnsChallengeList.parameter.terraformResource" id="cdktfprovideracmecertificatednschallengelistparameterterraformresource"></a>
|
1800
|
+
|
1801
|
+
- *Type:* [`cdktf.IInterpolatingParent`](#cdktf.IInterpolatingParent)
|
1802
|
+
|
1803
|
+
The parent resource.
|
1804
|
+
|
1805
|
+
---
|
1806
|
+
|
1807
|
+
##### `terraformAttribute`<sup>Required</sup> <a name="@cdktf/provider-acme.CertificateDnsChallengeList.parameter.terraformAttribute" id="cdktfprovideracmecertificatednschallengelistparameterterraformattribute"></a>
|
1808
|
+
|
1809
|
+
- *Type:* `string`
|
1810
|
+
|
1811
|
+
The attribute on the parent resource this class is referencing.
|
1812
|
+
|
1813
|
+
---
|
1814
|
+
|
1815
|
+
##### `wrapsSet`<sup>Required</sup> <a name="@cdktf/provider-acme.CertificateDnsChallengeList.parameter.wrapsSet" id="cdktfprovideracmecertificatednschallengelistparameterwrapsset"></a>
|
1816
|
+
|
1817
|
+
- *Type:* `boolean`
|
1818
|
+
|
1819
|
+
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
|
1820
|
+
|
1821
|
+
---
|
1822
|
+
|
1823
|
+
#### Methods <a name="Methods" id="methods"></a>
|
1824
|
+
|
1825
|
+
| **Name** | **Description** |
|
1826
|
+
| --- | --- |
|
1827
|
+
| [`get`](#cdktfprovideracmecertificatednschallengelistget) | *No description.* |
|
1828
|
+
|
1829
|
+
---
|
1830
|
+
|
1831
|
+
##### `get` <a name="@cdktf/provider-acme.CertificateDnsChallengeList.get" id="cdktfprovideracmecertificatednschallengelistget"></a>
|
1832
|
+
|
1833
|
+
```typescript
|
1834
|
+
public get(index: number)
|
1835
|
+
```
|
1836
|
+
|
1837
|
+
###### `index`<sup>Required</sup> <a name="@cdktf/provider-acme.CertificateDnsChallengeList.parameter.index" id="cdktfprovideracmecertificatednschallengelistparameterindex"></a>
|
1838
|
+
|
1839
|
+
- *Type:* `number`
|
1840
|
+
|
1841
|
+
the index of the item to return.
|
1842
|
+
|
1843
|
+
---
|
1844
|
+
|
1845
|
+
|
1846
|
+
#### Properties <a name="Properties" id="properties"></a>
|
1847
|
+
|
1848
|
+
| **Name** | **Type** | **Description** |
|
1849
|
+
| --- | --- | --- |
|
1850
|
+
| [`internalValue`](#cdktfprovideracmecertificatednschallengelistpropertyinternalvalue) | [`cdktf.IResolvable`](#cdktf.IResolvable) \| [`@cdktf/provider-acme.CertificateDnsChallenge`](#@cdktf/provider-acme.CertificateDnsChallenge)[] | *No description.* |
|
1851
|
+
|
1852
|
+
---
|
1853
|
+
|
1854
|
+
##### `internalValue`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateDnsChallengeList.property.internalValue" id="cdktfprovideracmecertificatednschallengelistpropertyinternalvalue"></a>
|
1855
|
+
|
1856
|
+
```typescript
|
1857
|
+
public readonly internalValue: IResolvable | CertificateDnsChallenge[];
|
1858
|
+
```
|
1859
|
+
|
1860
|
+
- *Type:* [`cdktf.IResolvable`](#cdktf.IResolvable) | [`@cdktf/provider-acme.CertificateDnsChallenge`](#@cdktf/provider-acme.CertificateDnsChallenge)[]
|
1861
|
+
|
1862
|
+
---
|
1863
|
+
|
1864
|
+
|
1865
|
+
### CertificateDnsChallengeOutputReference <a name="@cdktf/provider-acme.CertificateDnsChallengeOutputReference" id="cdktfprovideracmecertificatednschallengeoutputreference"></a>
|
1866
|
+
|
1867
|
+
#### Initializers <a name="@cdktf/provider-acme.CertificateDnsChallengeOutputReference.Initializer" id="cdktfprovideracmecertificatednschallengeoutputreferenceinitializer"></a>
|
1868
|
+
|
1869
|
+
```typescript
|
1870
|
+
import { CertificateDnsChallengeOutputReference } from '@cdktf/provider-acme'
|
1871
|
+
|
1872
|
+
new CertificateDnsChallengeOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean)
|
1873
|
+
```
|
1874
|
+
|
1875
|
+
| **Name** | **Type** | **Description** |
|
1876
|
+
| --- | --- | --- |
|
1877
|
+
| [`terraformResource`](#cdktfprovideracmecertificatednschallengeoutputreferenceparameterterraformresource)<span title="Required">*</span> | [`cdktf.IInterpolatingParent`](#cdktf.IInterpolatingParent) | The parent resource. |
|
1878
|
+
| [`terraformAttribute`](#cdktfprovideracmecertificatednschallengeoutputreferenceparameterterraformattribute)<span title="Required">*</span> | `string` | The attribute on the parent resource this class is referencing. |
|
1879
|
+
| [`complexObjectIndex`](#cdktfprovideracmecertificatednschallengeoutputreferenceparametercomplexobjectindex)<span title="Required">*</span> | `number` | the index of this item in the list. |
|
1880
|
+
| [`complexObjectIsFromSet`](#cdktfprovideracmecertificatednschallengeoutputreferenceparametercomplexobjectisfromset)<span title="Required">*</span> | `boolean` | whether the list is wrapping a set (will add tolist() to be able to access an item via an index). |
|
1881
|
+
|
1882
|
+
---
|
1883
|
+
|
1884
|
+
##### `terraformResource`<sup>Required</sup> <a name="@cdktf/provider-acme.CertificateDnsChallengeOutputReference.parameter.terraformResource" id="cdktfprovideracmecertificatednschallengeoutputreferenceparameterterraformresource"></a>
|
1885
|
+
|
1886
|
+
- *Type:* [`cdktf.IInterpolatingParent`](#cdktf.IInterpolatingParent)
|
1887
|
+
|
1888
|
+
The parent resource.
|
1889
|
+
|
1890
|
+
---
|
1891
|
+
|
1892
|
+
##### `terraformAttribute`<sup>Required</sup> <a name="@cdktf/provider-acme.CertificateDnsChallengeOutputReference.parameter.terraformAttribute" id="cdktfprovideracmecertificatednschallengeoutputreferenceparameterterraformattribute"></a>
|
1893
|
+
|
1894
|
+
- *Type:* `string`
|
1895
|
+
|
1896
|
+
The attribute on the parent resource this class is referencing.
|
1897
|
+
|
1898
|
+
---
|
1899
|
+
|
1900
|
+
##### `complexObjectIndex`<sup>Required</sup> <a name="@cdktf/provider-acme.CertificateDnsChallengeOutputReference.parameter.complexObjectIndex" id="cdktfprovideracmecertificatednschallengeoutputreferenceparametercomplexobjectindex"></a>
|
1901
|
+
|
1902
|
+
- *Type:* `number`
|
1903
|
+
|
1904
|
+
the index of this item in the list.
|
1905
|
+
|
1906
|
+
---
|
1907
|
+
|
1908
|
+
##### `complexObjectIsFromSet`<sup>Required</sup> <a name="@cdktf/provider-acme.CertificateDnsChallengeOutputReference.parameter.complexObjectIsFromSet" id="cdktfprovideracmecertificatednschallengeoutputreferenceparametercomplexobjectisfromset"></a>
|
1909
|
+
|
1910
|
+
- *Type:* `boolean`
|
1911
|
+
|
1912
|
+
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
|
1913
|
+
|
1914
|
+
---
|
1915
|
+
|
1916
|
+
#### Methods <a name="Methods" id="methods"></a>
|
1917
|
+
|
1918
|
+
| **Name** | **Description** |
|
1919
|
+
| --- | --- |
|
1920
|
+
| [`resetConfig`](#cdktfprovideracmecertificatednschallengeoutputreferenceresetconfig) | *No description.* |
|
1921
|
+
|
1922
|
+
---
|
1923
|
+
|
1924
|
+
##### `resetConfig` <a name="@cdktf/provider-acme.CertificateDnsChallengeOutputReference.resetConfig" id="cdktfprovideracmecertificatednschallengeoutputreferenceresetconfig"></a>
|
1925
|
+
|
1926
|
+
```typescript
|
1927
|
+
public resetConfig()
|
1928
|
+
```
|
1929
|
+
|
1930
|
+
|
1931
|
+
#### Properties <a name="Properties" id="properties"></a>
|
1932
|
+
|
1933
|
+
| **Name** | **Type** | **Description** |
|
1934
|
+
| --- | --- | --- |
|
1935
|
+
| [`configInput`](#cdktfprovideracmecertificatednschallengeoutputreferencepropertyconfiginput) | {[ key: string ]: `string`} | *No description.* |
|
1936
|
+
| [`providerInput`](#cdktfprovideracmecertificatednschallengeoutputreferencepropertyproviderinput) | `string` | *No description.* |
|
1937
|
+
| [`config`](#cdktfprovideracmecertificatednschallengeoutputreferencepropertyconfig)<span title="Required">*</span> | {[ key: string ]: `string`} | *No description.* |
|
1938
|
+
| [`provider`](#cdktfprovideracmecertificatednschallengeoutputreferencepropertyprovider)<span title="Required">*</span> | `string` | *No description.* |
|
1939
|
+
| [`internalValue`](#cdktfprovideracmecertificatednschallengeoutputreferencepropertyinternalvalue) | [`cdktf.IResolvable`](#cdktf.IResolvable) \| [`@cdktf/provider-acme.CertificateDnsChallenge`](#@cdktf/provider-acme.CertificateDnsChallenge) | *No description.* |
|
1940
|
+
|
1941
|
+
---
|
1942
|
+
|
1943
|
+
##### `configInput`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateDnsChallengeOutputReference.property.configInput" id="cdktfprovideracmecertificatednschallengeoutputreferencepropertyconfiginput"></a>
|
1944
|
+
|
1945
|
+
```typescript
|
1946
|
+
public readonly configInput: {[ key: string ]: string};
|
1947
|
+
```
|
1948
|
+
|
1949
|
+
- *Type:* {[ key: string ]: `string`}
|
1950
|
+
|
1951
|
+
---
|
1952
|
+
|
1953
|
+
##### `providerInput`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateDnsChallengeOutputReference.property.providerInput" id="cdktfprovideracmecertificatednschallengeoutputreferencepropertyproviderinput"></a>
|
1954
|
+
|
1955
|
+
```typescript
|
1956
|
+
public readonly providerInput: string;
|
1957
|
+
```
|
1958
|
+
|
1959
|
+
- *Type:* `string`
|
1960
|
+
|
1961
|
+
---
|
1962
|
+
|
1963
|
+
##### `config`<sup>Required</sup> <a name="@cdktf/provider-acme.CertificateDnsChallengeOutputReference.property.config" id="cdktfprovideracmecertificatednschallengeoutputreferencepropertyconfig"></a>
|
1964
|
+
|
1965
|
+
```typescript
|
1966
|
+
public readonly config: {[ key: string ]: string};
|
1967
|
+
```
|
1968
|
+
|
1969
|
+
- *Type:* {[ key: string ]: `string`}
|
1970
|
+
|
1971
|
+
---
|
1972
|
+
|
1973
|
+
##### `provider`<sup>Required</sup> <a name="@cdktf/provider-acme.CertificateDnsChallengeOutputReference.property.provider" id="cdktfprovideracmecertificatednschallengeoutputreferencepropertyprovider"></a>
|
1974
|
+
|
1975
|
+
```typescript
|
1976
|
+
public readonly provider: string;
|
1977
|
+
```
|
1978
|
+
|
1979
|
+
- *Type:* `string`
|
1980
|
+
|
1981
|
+
---
|
1982
|
+
|
1983
|
+
##### `internalValue`<sup>Optional</sup> <a name="@cdktf/provider-acme.CertificateDnsChallengeOutputReference.property.internalValue" id="cdktfprovideracmecertificatednschallengeoutputreferencepropertyinternalvalue"></a>
|
1984
|
+
|
1985
|
+
```typescript
|
1986
|
+
public readonly internalValue: IResolvable | CertificateDnsChallenge;
|
1987
|
+
```
|
1988
|
+
|
1989
|
+
- *Type:* [`cdktf.IResolvable`](#cdktf.IResolvable) | [`@cdktf/provider-acme.CertificateDnsChallenge`](#@cdktf/provider-acme.CertificateDnsChallenge)
|
1990
|
+
|
1991
|
+
---
|
1992
|
+
|
1993
|
+
|
1702
1994
|
### CertificateHttpChallengeOutputReference <a name="@cdktf/provider-acme.CertificateHttpChallengeOutputReference" id="cdktfprovideracmecertificatehttpchallengeoutputreference"></a>
|
1703
1995
|
|
1704
1996
|
#### Initializers <a name="@cdktf/provider-acme.CertificateHttpChallengeOutputReference.Initializer" id="cdktfprovideracmecertificatehttpchallengeoutputreferenceinitializer"></a>
|
package/changelog.md
CHANGED
@@ -1,2 +1,9 @@
|
|
1
1
|
|
2
|
-
|
2
|
+
## [0.3.0](https://github.com/hashicorp/cdktf-provider-acme/compare/v0.2.64...v0.3.0) (2022-05-24)
|
3
|
+
|
4
|
+
|
5
|
+
### ⚠ BREAKING CHANGES
|
6
|
+
|
7
|
+
* **deps:** upgrade provider project
|
8
|
+
|
9
|
+
* **deps:** upgrade provider project ([a7c19ac](https://github.com/hashicorp/cdktf-provider-acme/commit/a7c19ace166aac160e921713af582314d8f2a33e))
|
package/lib/acme-provider.js
CHANGED
@@ -66,7 +66,7 @@ class AcmeProvider extends cdktf.TerraformProvider {
|
|
66
66
|
}
|
67
67
|
exports.AcmeProvider = AcmeProvider;
|
68
68
|
_a = JSII_RTTI_SYMBOL_1;
|
69
|
-
AcmeProvider[_a] = { fqn: "@cdktf/provider-acme.AcmeProvider", version: "0.
|
69
|
+
AcmeProvider[_a] = { fqn: "@cdktf/provider-acme.AcmeProvider", version: "0.3.0" };
|
70
70
|
// =================
|
71
71
|
// STATIC PROPERTIES
|
72
72
|
// =================
|
package/lib/certificate.d.ts
CHANGED
@@ -22,6 +22,13 @@ export interface CertificateConfig extends cdktf.TerraformMetaArguments {
|
|
22
22
|
*/
|
23
23
|
readonly disableCompletePropagation?: boolean | cdktf.IResolvable;
|
24
24
|
/**
|
25
|
+
* Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#id Certificate#id}
|
26
|
+
*
|
27
|
+
* Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.
|
28
|
+
* If 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.
|
29
|
+
*/
|
30
|
+
readonly id?: string;
|
31
|
+
/**
|
25
32
|
* Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#key_type Certificate#key_type}
|
26
33
|
*/
|
27
34
|
readonly keyType?: string;
|
@@ -97,6 +104,50 @@ export interface CertificateDnsChallenge {
|
|
97
104
|
readonly provider: string;
|
98
105
|
}
|
99
106
|
export declare function certificateDnsChallengeToTerraform(struct?: CertificateDnsChallenge | cdktf.IResolvable): any;
|
107
|
+
export declare class CertificateDnsChallengeOutputReference extends cdktf.ComplexObject {
|
108
|
+
private isEmptyObject;
|
109
|
+
private resolvableValue?;
|
110
|
+
/**
|
111
|
+
* @param terraformResource The parent resource
|
112
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
113
|
+
* @param complexObjectIndex the index of this item in the list
|
114
|
+
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
115
|
+
*/
|
116
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
|
117
|
+
get internalValue(): CertificateDnsChallenge | cdktf.IResolvable | undefined;
|
118
|
+
set internalValue(value: CertificateDnsChallenge | cdktf.IResolvable | undefined);
|
119
|
+
private _config?;
|
120
|
+
get config(): {
|
121
|
+
[key: string]: string;
|
122
|
+
};
|
123
|
+
set config(value: {
|
124
|
+
[key: string]: string;
|
125
|
+
});
|
126
|
+
resetConfig(): void;
|
127
|
+
get configInput(): {
|
128
|
+
[key: string]: string;
|
129
|
+
} | undefined;
|
130
|
+
private _provider?;
|
131
|
+
get provider(): string;
|
132
|
+
set provider(value: string);
|
133
|
+
get providerInput(): string | undefined;
|
134
|
+
}
|
135
|
+
export declare class CertificateDnsChallengeList extends cdktf.ComplexList {
|
136
|
+
protected terraformResource: cdktf.IInterpolatingParent;
|
137
|
+
protected terraformAttribute: string;
|
138
|
+
protected wrapsSet: boolean;
|
139
|
+
internalValue?: CertificateDnsChallenge[] | cdktf.IResolvable;
|
140
|
+
/**
|
141
|
+
* @param terraformResource The parent resource
|
142
|
+
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
143
|
+
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
144
|
+
*/
|
145
|
+
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
|
146
|
+
/**
|
147
|
+
* @param index the index of the item to return
|
148
|
+
*/
|
149
|
+
get(index: number): CertificateDnsChallengeOutputReference;
|
150
|
+
}
|
100
151
|
export interface CertificateHttpChallenge {
|
101
152
|
/**
|
102
153
|
* Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/acme/r/certificate#port Certificate#port}
|
@@ -233,7 +284,11 @@ export declare class Certificate extends cdktf.TerraformResource {
|
|
233
284
|
set disableCompletePropagation(value: boolean | cdktf.IResolvable);
|
234
285
|
resetDisableCompletePropagation(): void;
|
235
286
|
get disableCompletePropagationInput(): boolean | cdktf.IResolvable | undefined;
|
287
|
+
private _id?;
|
236
288
|
get id(): string;
|
289
|
+
set id(value: string);
|
290
|
+
resetId(): void;
|
291
|
+
get idInput(): string | undefined;
|
237
292
|
get issuerPem(): string;
|
238
293
|
private _keyType?;
|
239
294
|
get keyType(): string;
|
@@ -276,9 +331,9 @@ export declare class Certificate extends cdktf.TerraformResource {
|
|
276
331
|
set subjectAlternativeNames(value: string[]);
|
277
332
|
resetSubjectAlternativeNames(): void;
|
278
333
|
get subjectAlternativeNamesInput(): string[] | undefined;
|
279
|
-
private _dnsChallenge
|
280
|
-
get dnsChallenge():
|
281
|
-
|
334
|
+
private _dnsChallenge;
|
335
|
+
get dnsChallenge(): CertificateDnsChallengeList;
|
336
|
+
putDnsChallenge(value: CertificateDnsChallenge[] | cdktf.IResolvable): void;
|
282
337
|
resetDnsChallenge(): void;
|
283
338
|
get dnsChallengeInput(): cdktf.IResolvable | CertificateDnsChallenge[] | undefined;
|
284
339
|
private _httpChallenge;
|
package/lib/certificate.d.ts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"certificate.d.ts","sourceRoot":"","sources":["../src/certificate.ts"],"names":[],"mappings":"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
|
1
|
+
{"version":3,"file":"certificate.d.ts","sourceRoot":"","sources":["../src/certificate.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AACvC,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAI/B,MAAM,WAAW,iBAAkB,SAAQ,KAAK,CAAC,sBAAsB;IACrE;;MAEE;IACF,QAAQ,CAAC,aAAa,EAAE,MAAM,CAAC;IAC/B;;MAEE;IACF,QAAQ,CAAC,sBAAsB,CAAC,EAAE,MAAM,CAAC;IACzC;;MAEE;IACF,QAAQ,CAAC,qBAAqB,CAAC,EAAE,MAAM,CAAC;IACxC;;MAEE;IACF,QAAQ,CAAC,UAAU,CAAC,EAAE,MAAM,CAAC;IAC7B;;MAEE;IACF,QAAQ,CAAC,0BAA0B,CAAC,EAAE,OAAO,GAAG,KAAK,CAAC,WAAW,CAAC;IAClE;;;;;MAKE;IACF,QAAQ,CAAC,EAAE,CAAC,EAAE,MAAM,CAAC;IACrB;;MAEE;IACF,QAAQ,CAAC,OAAO,CAAC,EAAE,MAAM,CAAC;IAC1B;;MAEE;IACF,QAAQ,CAAC,gBAAgB,CAAC,EAAE,MAAM,CAAC;IACnC;;MAEE;IACF,QAAQ,CAAC,UAAU,CAAC,EAAE,OAAO,GAAG,KAAK,CAAC,WAAW,CAAC;IAClD;;MAEE;IACF,QAAQ,CAAC,aAAa,CAAC,EAAE,MAAM,CAAC;IAChC;;MAEE;IACF,QAAQ,CAAC,cAAc,CAAC,EAAE,MAAM,CAAC;IACjC;;MAEE;IACF,QAAQ,CAAC,oBAAoB,CAAC,EAAE,MAAM,EAAE,CAAC;IACzC;;MAEE;IACF,QAAQ,CAAC,0BAA0B,CAAC,EAAE,OAAO,GAAG,KAAK,CAAC,WAAW,CAAC;IAClE;;MAEE;IACF,QAAQ,CAAC,uBAAuB,CAAC,EAAE,MAAM,EAAE,CAAC;IAC5C;;;;MAIE;IACF,QAAQ,CAAC,YAAY,CAAC,EAAE,uBAAuB,EAAE,GAAG,KAAK,CAAC,WAAW,CAAC;IACtE;;;;MAIE;IACF,QAAQ,CAAC,aAAa,CAAC,EAAE,wBAAwB,CAAC;IAClD;;;;MAIE;IACF,QAAQ,CAAC,sBAAsB,CAAC,EAAE,iCAAiC,CAAC;IACpE;;;;MAIE;IACF,QAAQ,CAAC,oBAAoB,CAAC,EAAE,+BAA+B,CAAC;IAChE;;;;MAIE;IACF,QAAQ,CAAC,YAAY,CAAC,EAAE,uBAAuB,CAAC;CACjD;AACD,MAAM,WAAW,uBAAuB;IACtC;;MAEE;IACF,QAAQ,CAAC,MAAM,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,CAAC;IAC5C;;MAEE;IACF,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC;CAC3B;AAED,wBAAgB,kCAAkC,CAAC,MAAM,CAAC,EAAE,uBAAuB,GAAG,KAAK,CAAC,WAAW,GAAG,GAAG,CAS5G;AAED,qBAAa,sCAAuC,SAAQ,KAAK,CAAC,aAAa;IAC7E,OAAO,CAAC,aAAa,CAAS;IAC9B,OAAO,CAAC,eAAe,CAAC,CAAoB;IAE5C;;;;;MAKE;gBACiB,iBAAiB,EAAE,KAAK,CAAC,oBAAoB,EAAE,kBAAkB,EAAE,MAAM,EAAE,kBAAkB,EAAE,MAAM,EAAE,sBAAsB,EAAE,OAAO;IAIzJ,IAAW,aAAa,IAAI,uBAAuB,GAAG,KAAK,CAAC,WAAW,GAAG,SAAS,CAelF;IAED,IAAW,aAAa,CAAC,KAAK,EAAE,uBAAuB,GAAG,KAAK,CAAC,WAAW,GAAG,SAAS,EAiBtF;IAGD,OAAO,CAAC,OAAO,CAAC,CAA4B;IAC5C,IAAW,MAAM,IAGQ;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,CADjD;IACD,IAAW,MAAM,CAAC,KAAK,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,EAEjD;IACM,WAAW;IAIlB,IAAW,WAAW;;kBAErB;IAGD,OAAO,CAAC,SAAS,CAAC,CAAS;IAC3B,IAAW,QAAQ,IAGQ,MAAM,CADhC;IACD,IAAW,QAAQ,CAAC,KAAK,EAAE,MAAM,EAEhC;IAED,IAAW,aAAa,uBAEvB;CACF;AAED,qBAAa,2BAA4B,SAAQ,KAAK,CAAC,WAAW;IAQpD,SAAS,CAAC,iBAAiB,EAAE,KAAK,CAAC,oBAAoB;IAAE,SAAS,CAAC,kBAAkB,EAAE,MAAM;IAAE,SAAS,CAAC,QAAQ,EAAE,OAAO;IAP/H,aAAa,CAAC,EAAG,uBAAuB,EAAE,GAAG,KAAK,CAAC,WAAW,CAAA;IAErE;;;;MAIE;gBACoB,iBAAiB,EAAE,KAAK,CAAC,oBAAoB,EAAY,kBAAkB,EAAE,MAAM,EAAY,QAAQ,EAAE,OAAO;IAItI;;MAEE;IACK,GAAG,CAAC,KAAK,EAAE,MAAM,GAAG,sCAAsC;CAGlE;AACD,MAAM,WAAW,wBAAwB;IACvC;;MAEE;IACF,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC;IACvB;;MAEE;IACF,QAAQ,CAAC,WAAW,CAAC,EAAE,MAAM,CAAC;CAC/B;AAED,wBAAgB,mCAAmC,CAAC,MAAM,CAAC,EAAE,uCAAuC,GAAG,wBAAwB,GAAG,GAAG,CASpI;AAED,qBAAa,uCAAwC,SAAQ,KAAK,CAAC,aAAa;IAC9E,OAAO,CAAC,aAAa,CAAS;IAE9B;;;MAGE;gBACiB,iBAAiB,EAAE,KAAK,CAAC,oBAAoB,EAAE,kBAAkB,EAAE,MAAM;IAI5F,IAAW,aAAa,IAAI,wBAAwB,GAAG,SAAS,CAY/D;IAED,IAAW,aAAa,CAAC,KAAK,EAAE,wBAAwB,GAAG,SAAS,EAWnE;IAGD,OAAO,CAAC,KAAK,CAAC,CAAS;IACvB,IAAW,IAAI,IAGQ,MAAM,CAD5B;IACD,IAAW,IAAI,CAAC,KAAK,EAAE,MAAM,EAE5B;IACM,SAAS;IAIhB,IAAW,SAAS,uBAEnB;IAGD,OAAO,CAAC,YAAY,CAAC,CAAS;IAC9B,IAAW,WAAW,IAGQ,MAAM,CADnC;IACD,IAAW,WAAW,CAAC,KAAK,EAAE,MAAM,EAEnC;IACM,gBAAgB;IAIvB,IAAW,gBAAgB,uBAE1B;CACF;AACD,MAAM,WAAW,iCAAiC;IAChD;;MAEE;IACF,QAAQ,CAAC,KAAK,EAAE,MAAM,EAAE,CAAC;CAC1B;AAED,wBAAgB,4CAA4C,CAAC,MAAM,CAAC,EAAE,gDAAgD,GAAG,iCAAiC,GAAG,GAAG,CAQ/J;AAED,qBAAa,gDAAiD,SAAQ,KAAK,CAAC,aAAa;IACvF,OAAO,CAAC,aAAa,CAAS;IAE9B;;;MAGE;gBACiB,iBAAiB,EAAE,KAAK,CAAC,oBAAoB,EAAE,kBAAkB,EAAE,MAAM;IAI5F,IAAW,aAAa,IAAI,iCAAiC,GAAG,SAAS,CAQxE;IAED,IAAW,aAAa,CAAC,KAAK,EAAE,iCAAiC,GAAG,SAAS,EAS5E;IAGD,OAAO,CAAC,MAAM,CAAC,CAAW;IAC1B,IAAW,KAAK,IAGQ,MAAM,EAAE,CAD/B;IACD,IAAW,KAAK,CAAC,KAAK,EAAE,MAAM,EAAE,EAE/B;IAED,IAAW,UAAU,yBAEpB;CACF;AACD,MAAM,WAAW,+BAA+B;IAC9C;;MAEE;IACF,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;CAC5B;AAED,wBAAgB,0CAA0C,CAAC,MAAM,CAAC,EAAE,8CAA8C,GAAG,+BAA+B,GAAG,GAAG,CAQzJ;AAED,qBAAa,8CAA+C,SAAQ,KAAK,CAAC,aAAa;IACrF,OAAO,CAAC,aAAa,CAAS;IAE9B;;;MAGE;gBACiB,iBAAiB,EAAE,KAAK,CAAC,oBAAoB,EAAE,kBAAkB,EAAE,MAAM;IAI5F,IAAW,aAAa,IAAI,+BAA+B,GAAG,SAAS,CAQtE;IAED,IAAW,aAAa,CAAC,KAAK,EAAE,+BAA+B,GAAG,SAAS,EAS1E;IAGD,OAAO,CAAC,UAAU,CAAC,CAAS;IAC5B,IAAW,SAAS,IAGQ,MAAM,CADjC;IACD,IAAW,SAAS,CAAC,KAAK,EAAE,MAAM,EAEjC;IAED,IAAW,cAAc,uBAExB;CACF;AACD,MAAM,WAAW,uBAAuB;IACtC;;MAEE;IACF,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC;CACxB;AAED,wBAAgB,kCAAkC,CAAC,MAAM,CAAC,EAAE,sCAAsC,GAAG,uBAAuB,GAAG,GAAG,CAQjI;AAED,qBAAa,sCAAuC,SAAQ,KAAK,CAAC,aAAa;IAC7E,OAAO,CAAC,aAAa,CAAS;IAE9B;;;MAGE;gBACiB,iBAAiB,EAAE,KAAK,CAAC,oBAAoB,EAAE,kBAAkB,EAAE,MAAM;IAI5F,IAAW,aAAa,IAAI,uBAAuB,GAAG,SAAS,CAQ9D;IAED,IAAW,aAAa,CAAC,KAAK,EAAE,uBAAuB,GAAG,SAAS,EASlE;IAGD,OAAO,CAAC,KAAK,CAAC,CAAS;IACvB,IAAW,IAAI,IAGQ,MAAM,CAD5B;IACD,IAAW,IAAI,CAAC,KAAK,EAAE,MAAM,EAE5B;IACM,SAAS;IAIhB,IAAW,SAAS,uBAEnB;CACF;AAED;;EAEE;AACF,qBAAa,WAAY,SAAQ,KAAK,CAAC,iBAAiB;IAKtD,gBAAuB,cAAc,sBAAsB;IAM3D;;;;;;MAME;gBACiB,KAAK,EAAE,SAAS,EAAE,EAAE,EAAE,MAAM,EAAE,MAAM,EAAE,iBAAiB;IAuC1E,OAAO,CAAC,cAAc,CAAC,CAAS;IAChC,IAAW,aAAa,IAGQ,MAAM,CADrC;IACD,IAAW,aAAa,CAAC,KAAK,EAAE,MAAM,EAErC;IAED,IAAW,kBAAkB,uBAE5B;IAGD,IAAW,iBAAiB,WAE3B;IAGD,IAAW,cAAc,WAExB;IAGD,OAAO,CAAC,uBAAuB,CAAC,CAAS;IACzC,IAAW,sBAAsB,IAGQ,MAAM,CAD9C;IACD,IAAW,sBAAsB,CAAC,KAAK,EAAE,MAAM,EAE9C;IACM,2BAA2B;IAIlC,IAAW,2BAA2B,uBAErC;IAGD,IAAW,cAAc,WAExB;IAGD,OAAO,CAAC,sBAAsB,CAAC,CAAS;IACxC,IAAW,qBAAqB,IAGQ,MAAM,CAD7C;IACD,IAAW,qBAAqB,CAAC,KAAK,EAAE,MAAM,EAE7C;IACM,0BAA0B;IAIjC,IAAW,0BAA0B,uBAEpC;IAGD,IAAW,cAAc,WAExB;IAGD,OAAO,CAAC,WAAW,CAAC,CAAS;IAC7B,IAAW,UAAU,IAGQ,MAAM,CADlC;IACD,IAAW,UAAU,CAAC,KAAK,EAAE,MAAM,EAElC;IACM,eAAe;IAItB,IAAW,eAAe,uBAEzB;IAGD,OAAO,CAAC,2BAA2B,CAAC,CAA8B;IAClE,IAAW,0BAA0B,IAGQ,OAAO,GAAG,KAAK,CAAC,WAAW,CADvE;IACD,IAAW,0BAA0B,CAAC,KAAK,EAAE,OAAO,GAAG,KAAK,CAAC,WAAW,EAEvE;IACM,+BAA+B;IAItC,IAAW,+BAA+B,4CAEzC;IAGD,OAAO,CAAC,GAAG,CAAC,CAAS;IACrB,IAAW,EAAE,IAGQ,MAAM,CAD1B;IACD,IAAW,EAAE,CAAC,KAAK,EAAE,MAAM,EAE1B;IACM,OAAO;IAId,IAAW,OAAO,uBAEjB;IAGD,IAAW,SAAS,WAEnB;IAGD,OAAO,CAAC,QAAQ,CAAC,CAAS;IAC1B,IAAW,OAAO,IAGQ,MAAM,CAD/B;IACD,IAAW,OAAO,CAAC,KAAK,EAAE,MAAM,EAE/B;IACM,YAAY;IAInB,IAAW,YAAY,uBAEtB;IAGD,OAAO,CAAC,iBAAiB,CAAC,CAAS;IACnC,IAAW,gBAAgB,IAGQ,MAAM,CADxC;IACD,IAAW,gBAAgB,CAAC,KAAK,EAAE,MAAM,EAExC;IACM,qBAAqB;IAI5B,IAAW,qBAAqB,uBAE/B;IAGD,OAAO,CAAC,WAAW,CAAC,CAA8B;IAClD,IAAW,UAAU,IAGQ,OAAO,GAAG,KAAK,CAAC,WAAW,CADvD;IACD,IAAW,UAAU,CAAC,KAAK,EAAE,OAAO,GAAG,KAAK,CAAC,WAAW,EAEvD;IACM,eAAe;IAItB,IAAW,eAAe,4CAEzB;IAGD,OAAO,CAAC,cAAc,CAAC,CAAS;IAChC,IAAW,aAAa,IAGQ,MAAM,CADrC;IACD,IAAW,aAAa,CAAC,KAAK,EAAE,MAAM,EAErC;IACM,kBAAkB;IAIzB,IAAW,kBAAkB,uBAE5B;IAGD,OAAO,CAAC,eAAe,CAAC,CAAS;IACjC,IAAW,cAAc,IAGQ,MAAM,CADtC;IACD,IAAW,cAAc,CAAC,KAAK,EAAE,MAAM,EAEtC;IACM,mBAAmB;IAI1B,IAAW,mBAAmB,uBAE7B;IAGD,IAAW,aAAa,WAEvB;IAGD,OAAO,CAAC,qBAAqB,CAAC,CAAW;IACzC,IAAW,oBAAoB,IAGQ,MAAM,EAAE,CAD9C;IACD,IAAW,oBAAoB,CAAC,KAAK,EAAE,MAAM,EAAE,EAE9C;IACM,yBAAyB;IAIhC,IAAW,yBAAyB,yBAEnC;IAGD,OAAO,CAAC,2BAA2B,CAAC,CAA8B;IAClE,IAAW,0BAA0B,IAGQ,OAAO,GAAG,KAAK,CAAC,WAAW,CADvE;IACD,IAAW,0BAA0B,CAAC,KAAK,EAAE,OAAO,GAAG,KAAK,CAAC,WAAW,EAEvE;IACM,+BAA+B;IAItC,IAAW,+BAA+B,4CAEzC;IAGD,OAAO,CAAC,wBAAwB,CAAC,CAAW;IAC5C,IAAW,uBAAuB,IAGQ,MAAM,EAAE,CADjD;IACD,IAAW,uBAAuB,CAAC,KAAK,EAAE,MAAM,EAAE,EAEjD;IACM,4BAA4B;IAInC,IAAW,4BAA4B,yBAEtC;IAGD,OAAO,CAAC,aAAa,CAAiE;IACtF,IAAW,YAAY,gCAEtB;IACM,eAAe,CAAC,KAAK,EAAE,uBAAuB,EAAE,GAAG,KAAK,CAAC,WAAW;IAGpE,iBAAiB;IAIxB,IAAW,iBAAiB,8DAE3B;IAGD,OAAO,CAAC,cAAc,CAAuE;IAC7F,IAAW,aAAa,4CAEvB;IACM,gBAAgB,CAAC,KAAK,EAAE,wBAAwB;IAGhD,kBAAkB;IAIzB,IAAW,kBAAkB,yCAE5B;IAGD,OAAO,CAAC,uBAAuB,CAA0F;IACzH,IAAW,sBAAsB,qDAEhC;IACM,yBAAyB,CAAC,KAAK,EAAE,iCAAiC;IAGlE,2BAA2B;IAIlC,IAAW,2BAA2B,kDAErC;IAGD,OAAO,CAAC,qBAAqB,CAAsF;IACnH,IAAW,oBAAoB,mDAE9B;IACM,uBAAuB,CAAC,KAAK,EAAE,+BAA+B;IAG9D,yBAAyB;IAIhC,IAAW,yBAAyB,gDAEnC;IAGD,OAAO,CAAC,aAAa,CAAqE;IAC1F,IAAW,YAAY,2CAEtB;IACM,eAAe,CAAC,KAAK,EAAE,uBAAuB;IAG9C,iBAAiB;IAIxB,IAAW,iBAAiB,wCAE3B;IAMD,SAAS,CAAC,oBAAoB,IAAI;QAAE,CAAC,IAAI,EAAE,MAAM,GAAG,GAAG,CAAA;KAAE;CAuB1D"}
|