pulumi-dnsimple 3.4.1__py3-none-any.whl → 3.4.3__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.
Potentially problematic release.
This version of pulumi-dnsimple might be problematic. Click here for more details.
- pulumi_dnsimple/_utilities.py +2 -2
- pulumi_dnsimple/domain.py +106 -94
- pulumi_dnsimple/email_forward.py +4 -4
- pulumi_dnsimple/get_certificate.py +4 -4
- pulumi_dnsimple/lets_encrypt_certificate.py +2 -2
- pulumi_dnsimple/pulumi-plugin.json +2 -1
- pulumi_dnsimple/zone_record.py +20 -20
- {pulumi_dnsimple-3.4.1.dist-info → pulumi_dnsimple-3.4.3.dist-info}/METADATA +2 -2
- pulumi_dnsimple-3.4.3.dist-info/RECORD +19 -0
- {pulumi_dnsimple-3.4.1.dist-info → pulumi_dnsimple-3.4.3.dist-info}/WHEEL +1 -1
- pulumi_dnsimple-3.4.1.dist-info/RECORD +0 -19
- {pulumi_dnsimple-3.4.1.dist-info → pulumi_dnsimple-3.4.3.dist-info}/top_level.txt +0 -0
pulumi_dnsimple/_utilities.py
CHANGED
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
import asyncio
|
|
7
|
+
import importlib.metadata
|
|
7
8
|
import importlib.util
|
|
8
9
|
import inspect
|
|
9
10
|
import json
|
|
10
11
|
import os
|
|
11
|
-
import pkg_resources
|
|
12
12
|
import sys
|
|
13
13
|
import typing
|
|
14
14
|
|
|
@@ -72,7 +72,7 @@ def _get_semver_version():
|
|
|
72
72
|
# to receive a valid semver string when receiving requests from the language host, so it's our
|
|
73
73
|
# responsibility as the library to convert our own PEP440 version into a valid semver string.
|
|
74
74
|
|
|
75
|
-
pep440_version_string =
|
|
75
|
+
pep440_version_string = importlib.metadata.version(root_package)
|
|
76
76
|
pep440_version = PEP440Version.parse(pep440_version_string)
|
|
77
77
|
(major, minor, patch) = pep440_version.release
|
|
78
78
|
prerelease = None
|
pulumi_dnsimple/domain.py
CHANGED
|
@@ -147,7 +147,7 @@ class Domain(pulumi.CustomResource):
|
|
|
147
147
|
import pulumi_dnsimple as dnsimple
|
|
148
148
|
|
|
149
149
|
# Create a domain
|
|
150
|
-
foobar = dnsimple.Domain("foobar", name=
|
|
150
|
+
foobar = dnsimple.Domain("foobar", name=dnsimple["domain"])
|
|
151
151
|
```
|
|
152
152
|
|
|
153
153
|
## Import
|
|
@@ -155,54 +155,60 @@ class Domain(pulumi.CustomResource):
|
|
|
155
155
|
DNSimple domains can be imported using their numeric record ID.
|
|
156
156
|
|
|
157
157
|
```sh
|
|
158
|
-
|
|
158
|
+
$ pulumi import dnsimple:index/domain:Domain resource_name 5678
|
|
159
159
|
```
|
|
160
160
|
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
161
|
+
The record ID can be found within [DNSimple Domains API](https://developer.dnsimple.com/v2/domains/#listDomains). Check out [Authentication](https://developer.dnsimple.com/v2/#authentication) in API Overview for available options.
|
|
162
|
+
|
|
163
|
+
$ curl -u 'EMAIL:PASSWORD' https://api.dnsimple.com/v2/1234/domains?name_like=example.com | jq
|
|
164
|
+
|
|
165
|
+
{
|
|
166
|
+
|
|
167
|
+
"data": [
|
|
168
|
+
|
|
169
|
+
{
|
|
170
|
+
|
|
171
|
+
"id": 5678,
|
|
172
|
+
|
|
173
|
+
"account_id": 1234,
|
|
174
|
+
|
|
175
|
+
"registrant_id": null,
|
|
176
|
+
|
|
177
|
+
"name": "example.com",
|
|
178
|
+
|
|
179
|
+
"unicode_name": "example.com",
|
|
180
|
+
|
|
181
|
+
"state": "hosted",
|
|
182
|
+
|
|
183
|
+
"auto_renew": false,
|
|
184
|
+
|
|
185
|
+
"private_whois": false,
|
|
186
|
+
|
|
187
|
+
"expires_on": null,
|
|
188
|
+
|
|
189
|
+
"expires_at": null,
|
|
190
|
+
|
|
191
|
+
"created_at": "2021-10-01T00:00:00Z",
|
|
192
|
+
|
|
193
|
+
"updated_at": "2021-10-01T00:00:00Z"
|
|
194
|
+
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
],
|
|
198
|
+
|
|
199
|
+
"pagination": {
|
|
200
|
+
|
|
201
|
+
"current_page": 1,
|
|
202
|
+
|
|
203
|
+
"per_page": 30,
|
|
204
|
+
|
|
205
|
+
"total_entries": 1,
|
|
206
|
+
|
|
207
|
+
"total_pages": 1
|
|
208
|
+
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
}
|
|
206
212
|
|
|
207
213
|
:param str resource_name: The name of the resource.
|
|
208
214
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -224,7 +230,7 @@ class Domain(pulumi.CustomResource):
|
|
|
224
230
|
import pulumi_dnsimple as dnsimple
|
|
225
231
|
|
|
226
232
|
# Create a domain
|
|
227
|
-
foobar = dnsimple.Domain("foobar", name=
|
|
233
|
+
foobar = dnsimple.Domain("foobar", name=dnsimple["domain"])
|
|
228
234
|
```
|
|
229
235
|
|
|
230
236
|
## Import
|
|
@@ -232,54 +238,60 @@ class Domain(pulumi.CustomResource):
|
|
|
232
238
|
DNSimple domains can be imported using their numeric record ID.
|
|
233
239
|
|
|
234
240
|
```sh
|
|
235
|
-
|
|
241
|
+
$ pulumi import dnsimple:index/domain:Domain resource_name 5678
|
|
236
242
|
```
|
|
237
243
|
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
244
|
+
The record ID can be found within [DNSimple Domains API](https://developer.dnsimple.com/v2/domains/#listDomains). Check out [Authentication](https://developer.dnsimple.com/v2/#authentication) in API Overview for available options.
|
|
245
|
+
|
|
246
|
+
$ curl -u 'EMAIL:PASSWORD' https://api.dnsimple.com/v2/1234/domains?name_like=example.com | jq
|
|
247
|
+
|
|
248
|
+
{
|
|
249
|
+
|
|
250
|
+
"data": [
|
|
251
|
+
|
|
252
|
+
{
|
|
253
|
+
|
|
254
|
+
"id": 5678,
|
|
255
|
+
|
|
256
|
+
"account_id": 1234,
|
|
257
|
+
|
|
258
|
+
"registrant_id": null,
|
|
259
|
+
|
|
260
|
+
"name": "example.com",
|
|
261
|
+
|
|
262
|
+
"unicode_name": "example.com",
|
|
263
|
+
|
|
264
|
+
"state": "hosted",
|
|
265
|
+
|
|
266
|
+
"auto_renew": false,
|
|
267
|
+
|
|
268
|
+
"private_whois": false,
|
|
269
|
+
|
|
270
|
+
"expires_on": null,
|
|
271
|
+
|
|
272
|
+
"expires_at": null,
|
|
273
|
+
|
|
274
|
+
"created_at": "2021-10-01T00:00:00Z",
|
|
275
|
+
|
|
276
|
+
"updated_at": "2021-10-01T00:00:00Z"
|
|
277
|
+
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
],
|
|
281
|
+
|
|
282
|
+
"pagination": {
|
|
283
|
+
|
|
284
|
+
"current_page": 1,
|
|
285
|
+
|
|
286
|
+
"per_page": 30,
|
|
287
|
+
|
|
288
|
+
"total_entries": 1,
|
|
289
|
+
|
|
290
|
+
"total_pages": 1
|
|
291
|
+
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
}
|
|
283
295
|
|
|
284
296
|
:param str resource_name: The name of the resource.
|
|
285
297
|
:param DomainArgs args: The arguments to use to populate this resource's properties.
|
pulumi_dnsimple/email_forward.py
CHANGED
|
@@ -156,9 +156,9 @@ class EmailForward(pulumi.CustomResource):
|
|
|
156
156
|
|
|
157
157
|
# Add an email forwarding rule to the domain
|
|
158
158
|
foobar = dnsimple.EmailForward("foobar",
|
|
159
|
+
domain=dnsimple_domain,
|
|
159
160
|
alias_name="sales",
|
|
160
|
-
destination_email="jane.doe@example.com"
|
|
161
|
-
domain=var["dnsimple_domain"])
|
|
161
|
+
destination_email="jane.doe@example.com")
|
|
162
162
|
```
|
|
163
163
|
|
|
164
164
|
:param str resource_name: The name of the resource.
|
|
@@ -184,9 +184,9 @@ class EmailForward(pulumi.CustomResource):
|
|
|
184
184
|
|
|
185
185
|
# Add an email forwarding rule to the domain
|
|
186
186
|
foobar = dnsimple.EmailForward("foobar",
|
|
187
|
+
domain=dnsimple_domain,
|
|
187
188
|
alias_name="sales",
|
|
188
|
-
destination_email="jane.doe@example.com"
|
|
189
|
-
domain=var["dnsimple_domain"])
|
|
189
|
+
destination_email="jane.doe@example.com")
|
|
190
190
|
```
|
|
191
191
|
|
|
192
192
|
:param str resource_name: The name of the resource.
|
|
@@ -122,8 +122,8 @@ def get_certificate(certificate_id: Optional[str] = None,
|
|
|
122
122
|
import pulumi
|
|
123
123
|
import pulumi_dnsimple as dnsimple
|
|
124
124
|
|
|
125
|
-
foobar = dnsimple.get_certificate(
|
|
126
|
-
|
|
125
|
+
foobar = dnsimple.get_certificate(domain=dnsimple_domain,
|
|
126
|
+
certificate_id=dnsimple_certificate_id)
|
|
127
127
|
```
|
|
128
128
|
|
|
129
129
|
|
|
@@ -159,8 +159,8 @@ def get_certificate_output(certificate_id: Optional[pulumi.Input[str]] = None,
|
|
|
159
159
|
import pulumi
|
|
160
160
|
import pulumi_dnsimple as dnsimple
|
|
161
161
|
|
|
162
|
-
foobar = dnsimple.get_certificate(
|
|
163
|
-
|
|
162
|
+
foobar = dnsimple.get_certificate(domain=dnsimple_domain,
|
|
163
|
+
certificate_id=dnsimple_certificate_id)
|
|
164
164
|
```
|
|
165
165
|
|
|
166
166
|
|
|
@@ -285,7 +285,7 @@ class LetsEncryptCertificate(pulumi.CustomResource):
|
|
|
285
285
|
import pulumi_dnsimple as dnsimple
|
|
286
286
|
|
|
287
287
|
foobar = dnsimple.LetsEncryptCertificate("foobar",
|
|
288
|
-
domain_id=
|
|
288
|
+
domain_id=dnsimple["domainId"],
|
|
289
289
|
auto_renew=False,
|
|
290
290
|
name="www")
|
|
291
291
|
```
|
|
@@ -313,7 +313,7 @@ class LetsEncryptCertificate(pulumi.CustomResource):
|
|
|
313
313
|
import pulumi_dnsimple as dnsimple
|
|
314
314
|
|
|
315
315
|
foobar = dnsimple.LetsEncryptCertificate("foobar",
|
|
316
|
-
domain_id=
|
|
316
|
+
domain_id=dnsimple["domainId"],
|
|
317
317
|
auto_renew=False,
|
|
318
318
|
name="www")
|
|
319
319
|
```
|
pulumi_dnsimple/zone_record.py
CHANGED
|
@@ -275,11 +275,11 @@ class ZoneRecord(pulumi.CustomResource):
|
|
|
275
275
|
|
|
276
276
|
# Add a record to the root domain
|
|
277
277
|
foobar = dnsimple.ZoneRecord("foobar",
|
|
278
|
+
zone_name=dnsimple_domain,
|
|
278
279
|
name="",
|
|
279
|
-
ttl="3600",
|
|
280
|
-
type="A",
|
|
281
280
|
value="192.168.0.11",
|
|
282
|
-
|
|
281
|
+
type="A",
|
|
282
|
+
ttl="3600")
|
|
283
283
|
```
|
|
284
284
|
|
|
285
285
|
```python
|
|
@@ -288,11 +288,11 @@ class ZoneRecord(pulumi.CustomResource):
|
|
|
288
288
|
|
|
289
289
|
# Add a record to a sub-domain
|
|
290
290
|
foobar = dnsimple.ZoneRecord("foobar",
|
|
291
|
+
zone_name=dnsimple_domain,
|
|
291
292
|
name="terraform",
|
|
292
|
-
ttl="3600",
|
|
293
|
-
type="A",
|
|
294
293
|
value="192.168.0.11",
|
|
295
|
-
|
|
294
|
+
type="A",
|
|
295
|
+
ttl="3600")
|
|
296
296
|
```
|
|
297
297
|
|
|
298
298
|
## Import
|
|
@@ -302,14 +302,14 @@ class ZoneRecord(pulumi.CustomResource):
|
|
|
302
302
|
__Importing record example.com with record ID 1234__
|
|
303
303
|
|
|
304
304
|
```sh
|
|
305
|
-
|
|
305
|
+
$ pulumi import dnsimple:index/zoneRecord:ZoneRecord resource_name example.com_1234
|
|
306
306
|
```
|
|
307
|
-
|
|
307
|
+
__Importing record www.example.com with record ID 1234__
|
|
308
308
|
|
|
309
309
|
```sh
|
|
310
|
-
|
|
310
|
+
$ pulumi import dnsimple:index/zoneRecord:ZoneRecord resource_name example.com_1234
|
|
311
311
|
```
|
|
312
|
-
|
|
312
|
+
The record ID can be found in the URL when editing a record on the DNSimple web dashboard.
|
|
313
313
|
|
|
314
314
|
:param str resource_name: The name of the resource.
|
|
315
315
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -342,11 +342,11 @@ class ZoneRecord(pulumi.CustomResource):
|
|
|
342
342
|
|
|
343
343
|
# Add a record to the root domain
|
|
344
344
|
foobar = dnsimple.ZoneRecord("foobar",
|
|
345
|
+
zone_name=dnsimple_domain,
|
|
345
346
|
name="",
|
|
346
|
-
ttl="3600",
|
|
347
|
-
type="A",
|
|
348
347
|
value="192.168.0.11",
|
|
349
|
-
|
|
348
|
+
type="A",
|
|
349
|
+
ttl="3600")
|
|
350
350
|
```
|
|
351
351
|
|
|
352
352
|
```python
|
|
@@ -355,11 +355,11 @@ class ZoneRecord(pulumi.CustomResource):
|
|
|
355
355
|
|
|
356
356
|
# Add a record to a sub-domain
|
|
357
357
|
foobar = dnsimple.ZoneRecord("foobar",
|
|
358
|
+
zone_name=dnsimple_domain,
|
|
358
359
|
name="terraform",
|
|
359
|
-
ttl="3600",
|
|
360
|
-
type="A",
|
|
361
360
|
value="192.168.0.11",
|
|
362
|
-
|
|
361
|
+
type="A",
|
|
362
|
+
ttl="3600")
|
|
363
363
|
```
|
|
364
364
|
|
|
365
365
|
## Import
|
|
@@ -369,14 +369,14 @@ class ZoneRecord(pulumi.CustomResource):
|
|
|
369
369
|
__Importing record example.com with record ID 1234__
|
|
370
370
|
|
|
371
371
|
```sh
|
|
372
|
-
|
|
372
|
+
$ pulumi import dnsimple:index/zoneRecord:ZoneRecord resource_name example.com_1234
|
|
373
373
|
```
|
|
374
|
-
|
|
374
|
+
__Importing record www.example.com with record ID 1234__
|
|
375
375
|
|
|
376
376
|
```sh
|
|
377
|
-
|
|
377
|
+
$ pulumi import dnsimple:index/zoneRecord:ZoneRecord resource_name example.com_1234
|
|
378
378
|
```
|
|
379
|
-
|
|
379
|
+
The record ID can be found in the URL when editing a record on the DNSimple web dashboard.
|
|
380
380
|
|
|
381
381
|
:param str resource_name: The name of the resource.
|
|
382
382
|
:param ZoneRecordArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pulumi_dnsimple
|
|
3
|
-
Version: 3.4.
|
|
3
|
+
Version: 3.4.3
|
|
4
4
|
Summary: A Pulumi package for creating and managing dnsimple cloud resources.
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
Project-URL: Homepage, https://pulumi.io
|
|
7
7
|
Project-URL: Repository, https://github.com/pulumi/pulumi-dnsimple
|
|
8
8
|
Keywords: pulumi,dnsimple
|
|
9
|
-
Requires-Python: >=3.
|
|
9
|
+
Requires-Python: >=3.8
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
11
11
|
Requires-Dist: parver >=0.2.1
|
|
12
12
|
Requires-Dist: pulumi <4.0.0,>=3.0.0
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
pulumi_dnsimple/__init__.py,sha256=q2Qxnpb9OOQTlP9dL3j-T7NsebYT92Z9abw7XZpQ4rI,1711
|
|
2
|
+
pulumi_dnsimple/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
|
|
3
|
+
pulumi_dnsimple/domain.py,sha256=CCj-t8HO5qxyZJaFHza1SLtDoZkRinXw9_BhT55ckrc,13126
|
|
4
|
+
pulumi_dnsimple/email_forward.py,sha256=jSIaxCfJ84YiRQGt43cRHIb4YwSHNEPBrDqnTHjBrJs,11788
|
|
5
|
+
pulumi_dnsimple/get_certificate.py,sha256=SimAmNbAEkkGZnrP21RtKDdlEE0IpW7_-OK4juKAyH0,6088
|
|
6
|
+
pulumi_dnsimple/get_zone.py,sha256=xIAG55mCrO7SlHlI02S_-C7IOPuTsqNtTmeeyeyKgww,3874
|
|
7
|
+
pulumi_dnsimple/lets_encrypt_certificate.py,sha256=nWD8yVVZiyUJMJVy9tjCnO24y5jf3uMY0yXRUJRV4OA,19764
|
|
8
|
+
pulumi_dnsimple/provider.py,sha256=DD4pMom65j4jrnUb84jaP6EkLxEWFxswLlR3FhqG6mE,8730
|
|
9
|
+
pulumi_dnsimple/pulumi-plugin.json,sha256=TH0eASqMW0upgkTGHuhhxRwzej1HQYD2lsAciT13QP4,67
|
|
10
|
+
pulumi_dnsimple/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
pulumi_dnsimple/record.py,sha256=vmud89eUvx8McHoIJjFkhtgLFY9lDkFt837YVZwmfoY,12552
|
|
12
|
+
pulumi_dnsimple/zone_record.py,sha256=3FFpk9Ohey4JvMCLosi1gQlJc4INp9MIuCeOr5bHyzA,18717
|
|
13
|
+
pulumi_dnsimple/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
14
|
+
pulumi_dnsimple/config/__init__.pyi,sha256=uNrZE7LcipE2gSGdj97mbe4EbQju8L71BPxe3iQJ2Yo,739
|
|
15
|
+
pulumi_dnsimple/config/vars.py,sha256=7b8z6pJGysAfTHUhIYK9peb0Sw4zNXY-VxuCaG24H1M,1329
|
|
16
|
+
pulumi_dnsimple-3.4.3.dist-info/METADATA,sha256=pMuMrMkcHQ4bZ4SJjvei4Yc3yoL1ETkxKQhnFnOzD1E,2854
|
|
17
|
+
pulumi_dnsimple-3.4.3.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
18
|
+
pulumi_dnsimple-3.4.3.dist-info/top_level.txt,sha256=o_ZMMGgN8JmfKoCEmCl5-nHLCAzri-_7FCQohXzJWd4,16
|
|
19
|
+
pulumi_dnsimple-3.4.3.dist-info/RECORD,,
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
pulumi_dnsimple/__init__.py,sha256=q2Qxnpb9OOQTlP9dL3j-T7NsebYT92Z9abw7XZpQ4rI,1711
|
|
2
|
-
pulumi_dnsimple/_utilities.py,sha256=nNKRJyG0bkCleVzIGnszB5TSQOVUqAHks2baneWhujg,9249
|
|
3
|
-
pulumi_dnsimple/domain.py,sha256=MgPqYLfl6R5Jfqx-2B7IYzJUa-IgIx91gHAZqC8VsvM,12470
|
|
4
|
-
pulumi_dnsimple/email_forward.py,sha256=K995Jp59E3lQDaV42pyb-JV-uGwqq3dSIqut73LO1-E,11802
|
|
5
|
-
pulumi_dnsimple/get_certificate.py,sha256=bktJqWxxp6x6VkUo23-tzoSeNyIVf2ov1vRap1ant9s,6116
|
|
6
|
-
pulumi_dnsimple/get_zone.py,sha256=xIAG55mCrO7SlHlI02S_-C7IOPuTsqNtTmeeyeyKgww,3874
|
|
7
|
-
pulumi_dnsimple/lets_encrypt_certificate.py,sha256=o8d-h6sfs-G_Gy7P4iRKnwFyKv9ypXxMcScd7p5kNNM,19780
|
|
8
|
-
pulumi_dnsimple/provider.py,sha256=DD4pMom65j4jrnUb84jaP6EkLxEWFxswLlR3FhqG6mE,8730
|
|
9
|
-
pulumi_dnsimple/pulumi-plugin.json,sha256=IEjftBuofiCI2VAUo_AurjLP04bWxHVglSOj_AeDL8Q,45
|
|
10
|
-
pulumi_dnsimple/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
pulumi_dnsimple/record.py,sha256=vmud89eUvx8McHoIJjFkhtgLFY9lDkFt837YVZwmfoY,12552
|
|
12
|
-
pulumi_dnsimple/zone_record.py,sha256=3_C4pNO084z76C17pLR7ydlMDEAYCZU3nDWCXtMLipg,18753
|
|
13
|
-
pulumi_dnsimple/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
14
|
-
pulumi_dnsimple/config/__init__.pyi,sha256=uNrZE7LcipE2gSGdj97mbe4EbQju8L71BPxe3iQJ2Yo,739
|
|
15
|
-
pulumi_dnsimple/config/vars.py,sha256=7b8z6pJGysAfTHUhIYK9peb0Sw4zNXY-VxuCaG24H1M,1329
|
|
16
|
-
pulumi_dnsimple-3.4.1.dist-info/METADATA,sha256=4U2Vyuazvhf59-qGhISJIMMqFUtus4pYtXz3FwiXCCY,2854
|
|
17
|
-
pulumi_dnsimple-3.4.1.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
18
|
-
pulumi_dnsimple-3.4.1.dist-info/top_level.txt,sha256=o_ZMMGgN8JmfKoCEmCl5-nHLCAzri-_7FCQohXzJWd4,16
|
|
19
|
-
pulumi_dnsimple-3.4.1.dist-info/RECORD,,
|
|
File without changes
|