pulumi-dnsimple 5.1.0a1768541715__py3-none-any.whl
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.
- pulumi_dnsimple/__init__.py +120 -0
- pulumi_dnsimple/_enums.py +34 -0
- pulumi_dnsimple/_inputs.py +378 -0
- pulumi_dnsimple/_utilities.py +331 -0
- pulumi_dnsimple/config/__init__.py +9 -0
- pulumi_dnsimple/config/__init__.pyi +46 -0
- pulumi_dnsimple/config/vars.py +64 -0
- pulumi_dnsimple/contact.py +981 -0
- pulumi_dnsimple/domain.py +362 -0
- pulumi_dnsimple/domain_delegation.py +244 -0
- pulumi_dnsimple/ds_record.py +496 -0
- pulumi_dnsimple/email_forward.py +324 -0
- pulumi_dnsimple/get_certificate.py +203 -0
- pulumi_dnsimple/get_registrant_change_check.py +168 -0
- pulumi_dnsimple/get_zone.py +133 -0
- pulumi_dnsimple/lets_encrypt_certificate.py +594 -0
- pulumi_dnsimple/outputs.py +353 -0
- pulumi_dnsimple/provider.py +258 -0
- pulumi_dnsimple/pulumi-plugin.json +5 -0
- pulumi_dnsimple/py.typed +0 -0
- pulumi_dnsimple/registered_domain.py +839 -0
- pulumi_dnsimple/zone.py +357 -0
- pulumi_dnsimple/zone_record.py +629 -0
- pulumi_dnsimple-5.1.0a1768541715.dist-info/METADATA +73 -0
- pulumi_dnsimple-5.1.0a1768541715.dist-info/RECORD +27 -0
- pulumi_dnsimple-5.1.0a1768541715.dist-info/WHEEL +5 -0
- pulumi_dnsimple-5.1.0a1768541715.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pulumi_dnsimple
|
|
3
|
+
Version: 5.1.0a1768541715
|
|
4
|
+
Summary: A Pulumi package for creating and managing dnsimple cloud resources.
|
|
5
|
+
License: Apache-2.0
|
|
6
|
+
Project-URL: Homepage, https://pulumi.io
|
|
7
|
+
Project-URL: Repository, https://github.com/pulumi/pulumi-dnsimple
|
|
8
|
+
Keywords: pulumi,dnsimple
|
|
9
|
+
Requires-Python: >=3.9
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
Requires-Dist: parver>=0.2.1
|
|
12
|
+
Requires-Dist: pulumi<4.0.0,>=3.165.0
|
|
13
|
+
Requires-Dist: semver>=2.8.1
|
|
14
|
+
Requires-Dist: typing-extensions<5,>=4.11; python_version < "3.11"
|
|
15
|
+
|
|
16
|
+
[](https://github.com/pulumi/pulumi-dnsimple/actions)
|
|
17
|
+
[](https://slack.pulumi.com)
|
|
18
|
+
[](https://www.npmjs.com/package/@pulumi/dnsimple)
|
|
19
|
+
[](https://pypi.org/project/pulumi-dnsimple)
|
|
20
|
+
[](https://badge.fury.io/nu/pulumi.dnsimple)
|
|
21
|
+
[](https://pkg.go.dev/github.com/pulumi/pulumi-dnsimple/sdk/v4/go)
|
|
22
|
+
[](https://github.com/pulumi/pulumi-dnsimple/blob/master/LICENSE)
|
|
23
|
+
|
|
24
|
+
# dnsimple Resource Provider
|
|
25
|
+
|
|
26
|
+
The dnsimple resource provider for Pulumi lets you manage dnsimple resources in your cloud programs. To use
|
|
27
|
+
this package, please [install the Pulumi CLI first](https://pulumi.io/).
|
|
28
|
+
|
|
29
|
+
## Installing
|
|
30
|
+
|
|
31
|
+
This package is available in many languages in the standard packaging formats.
|
|
32
|
+
|
|
33
|
+
### Node.js (Java/TypeScript)
|
|
34
|
+
|
|
35
|
+
To use from JavaScript or TypeScript in Node.js, install using either `npm`:
|
|
36
|
+
|
|
37
|
+
$ npm install @pulumi/dnsimple
|
|
38
|
+
|
|
39
|
+
or `yarn`:
|
|
40
|
+
|
|
41
|
+
$ yarn add @pulumi/dnsimple
|
|
42
|
+
|
|
43
|
+
### Python
|
|
44
|
+
|
|
45
|
+
To use from Python, install using `pip`:
|
|
46
|
+
|
|
47
|
+
$ pip install pulumi_dnsimple
|
|
48
|
+
|
|
49
|
+
### Go
|
|
50
|
+
|
|
51
|
+
To use from Go, use `go get` to grab the latest version of the library
|
|
52
|
+
|
|
53
|
+
$ go get github.com/pulumi/pulumi-dnsimple/sdk/v4
|
|
54
|
+
|
|
55
|
+
### .NET
|
|
56
|
+
|
|
57
|
+
To use from .NET, install using `dotnet add package`:
|
|
58
|
+
|
|
59
|
+
$ dotnet add package Pulumi.Dnsimple
|
|
60
|
+
|
|
61
|
+
## Configuration
|
|
62
|
+
|
|
63
|
+
The following configuration points are available:
|
|
64
|
+
|
|
65
|
+
- `dnsimple:token` - (required) The DNSimple API v2 token. Please note that this must be an API v2 token. You can use
|
|
66
|
+
either an User or Account token, but an Account token is recommended. Can be sourced from `DNSIMPLE_TOKEN` environment
|
|
67
|
+
variable.
|
|
68
|
+
- `dnsimple:account` - (required) The ID of the account associated with the token. Can be sourced from `DNSIMPLE_ACCOUNT`
|
|
69
|
+
environment variable.
|
|
70
|
+
|
|
71
|
+
## Reference
|
|
72
|
+
|
|
73
|
+
For further information, please visit [the dnsimple provider docs](https://www.pulumi.com/docs/intro/cloud-providers/dnsimple) or for detailed reference documentation, please visit [the API docs](https://www.pulumi.com/docs/reference/pkg/dnsimple).
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
pulumi_dnsimple/__init__.py,sha256=c_7RTEdBW_ACwETZi0ny4XUSxm7LwB80NUzFXLN75Wo,2604
|
|
2
|
+
pulumi_dnsimple/_enums.py,sha256=Xh7Tjf_QStRYwLGGNxVooxMBchWjB-tXZpyDpVhMmgY,667
|
|
3
|
+
pulumi_dnsimple/_inputs.py,sha256=FTytys4xCV-eyxJf4UZWNWlJQ3p_2tw547rAdqwmHz0,15862
|
|
4
|
+
pulumi_dnsimple/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
|
5
|
+
pulumi_dnsimple/contact.py,sha256=ujq3VsYFbR_LAj2pM7Qj0gP4UC07ErtxFkZg1U9VR38,42604
|
|
6
|
+
pulumi_dnsimple/domain.py,sha256=wCyt7juR6cosLabwxNNBZ8k9sTLcNrwOiiLaOhF0Gww,13855
|
|
7
|
+
pulumi_dnsimple/domain_delegation.py,sha256=HubOp9MCuTd-_u4k6wYZbOeqH5ikKQ8W8k2Z_td1xnU,9305
|
|
8
|
+
pulumi_dnsimple/ds_record.py,sha256=2j7WWmDNiKjMMKzcpt9cYLM1syXsnJi6AFGI-3QQ24U,20939
|
|
9
|
+
pulumi_dnsimple/email_forward.py,sha256=tNUFryj6iBxwTktmfxg36t0XOLzp_kMZEoMwmiyKYQs,13516
|
|
10
|
+
pulumi_dnsimple/get_certificate.py,sha256=shMfFfFa7ph6Urie6LiNYp2ZrFCe_b1BT1tz5EgVwks,8387
|
|
11
|
+
pulumi_dnsimple/get_registrant_change_check.py,sha256=26dMjg-nL2xWl77BW_Z9aVVSLbDwsYgX_pr1V6mhHp0,7062
|
|
12
|
+
pulumi_dnsimple/get_zone.py,sha256=vfjIliXDM-Ab3dIbaFt-V6fqZ6v98nnLwH7_IyfhCU4,4279
|
|
13
|
+
pulumi_dnsimple/lets_encrypt_certificate.py,sha256=2KYaih8mTIRdrbCD5bJbmXtyc53URtdlL-IhTGkgo1A,25520
|
|
14
|
+
pulumi_dnsimple/outputs.py,sha256=z9MXgmvpjdYYMZl99RfrF0qCaVppWKYqh25xReLHd-M,14046
|
|
15
|
+
pulumi_dnsimple/provider.py,sha256=38-A-yZFY9ZZ-4x1h0aMib7XRSoGc6Loy5bOKFkSsHU,11965
|
|
16
|
+
pulumi_dnsimple/pulumi-plugin.json,sha256=hgwB5yKpwbR5Rfv2EXkfndYyfYssNzMRc3neQ1h06Bo,84
|
|
17
|
+
pulumi_dnsimple/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
|
+
pulumi_dnsimple/registered_domain.py,sha256=FMDfYXY1i0eyGLcN-2w9f8novpSWf3bQfLfR5kSIQVA,44333
|
|
19
|
+
pulumi_dnsimple/zone.py,sha256=FYNdqQTw44m_A4tZsCRfp0HoohjjmtvrLC57UOnABq8,14089
|
|
20
|
+
pulumi_dnsimple/zone_record.py,sha256=-HE81FjpG1L0lSpzEBAkm7S0KYe3BKaQtHzKxZZ8p0M,26550
|
|
21
|
+
pulumi_dnsimple/config/__init__.py,sha256=XWnQfVtc2oPapjSXXCdORFJvMpXt_SMJQASWdTRoPmc,296
|
|
22
|
+
pulumi_dnsimple/config/__init__.pyi,sha256=6XG2YU12HiKhZTNcZplTD-CDuuh0_iSzFqBLFtoPvkc,1079
|
|
23
|
+
pulumi_dnsimple/config/vars.py,sha256=5DNNPSPoNnm7ocUP5LuZDkMio6Qupkh2ja9gRmA-h2o,1838
|
|
24
|
+
pulumi_dnsimple-5.1.0a1768541715.dist-info/METADATA,sha256=IERoSyQeRYId74jJKfXFnP8xg_asccDQYC6uSwvlOAA,2931
|
|
25
|
+
pulumi_dnsimple-5.1.0a1768541715.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
26
|
+
pulumi_dnsimple-5.1.0a1768541715.dist-info/top_level.txt,sha256=o_ZMMGgN8JmfKoCEmCl5-nHLCAzri-_7FCQohXzJWd4,16
|
|
27
|
+
pulumi_dnsimple-5.1.0a1768541715.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pulumi_dnsimple
|