@cdktf/provider-acme 0.0.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/.gitattributes +23 -0
- package/.jsii +2899 -0
- package/API.md +2204 -0
- package/LICENSE +353 -0
- package/README.md +77 -0
- package/lib/acme-provider.d.ts +76 -0
- package/lib/acme-provider.js +102 -0
- package/lib/certificate.d.ts +715 -0
- package/lib/certificate.js +947 -0
- package/lib/index.d.ts +3 -0
- package/lib/index.js +17 -0
- package/lib/registration.d.ts +168 -0
- package/lib/registration.js +241 -0
- package/package.json +101 -0
package/.gitattributes
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen".
|
2
|
+
|
3
|
+
/.gitattributes linguist-generated
|
4
|
+
/.github/pull_request_template.md linguist-generated
|
5
|
+
/.github/workflows/automerge.yml linguist-generated
|
6
|
+
/.github/workflows/build.yml linguist-generated
|
7
|
+
/.github/workflows/provider-upgrade.yml linguist-generated
|
8
|
+
/.github/workflows/pull-request-lint.yml linguist-generated
|
9
|
+
/.github/workflows/release.yml linguist-generated
|
10
|
+
/.github/workflows/stale.yml linguist-generated
|
11
|
+
/.github/workflows/upgrade-main.yml linguist-generated
|
12
|
+
/.gitignore linguist-generated
|
13
|
+
/.npmignore linguist-generated
|
14
|
+
/.projen/** linguist-generated
|
15
|
+
/.projen/deps.json linguist-generated
|
16
|
+
/.projen/files.json linguist-generated
|
17
|
+
/.projen/tasks.json linguist-generated
|
18
|
+
/cdktf.json linguist-generated
|
19
|
+
/LICENSE linguist-generated
|
20
|
+
/package.json linguist-generated
|
21
|
+
/README.md linguist-generated
|
22
|
+
/tsconfig.dev.json linguist-generated
|
23
|
+
/yarn.lock linguist-generated
|