pulumi-dnsimple 3.5.0a1713331874__py3-none-any.whl → 3.5.0a1713897499__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/domain.py CHANGED
@@ -142,15 +142,13 @@ class Domain(pulumi.CustomResource):
142
142
 
143
143
  ## Example Usage
144
144
 
145
- <!--Start PulumiCodeChooser -->
146
145
  ```python
147
146
  import pulumi
148
147
  import pulumi_dnsimple as dnsimple
149
148
 
150
149
  # Create a domain
151
- foobar = dnsimple.Domain("foobar", name=var["dnsimple"]["domain"])
150
+ foobar = dnsimple.Domain("foobar", name=dnsimple["domain"])
152
151
  ```
153
- <!--End PulumiCodeChooser -->
154
152
 
155
153
  ## Import
156
154
 
@@ -227,15 +225,13 @@ class Domain(pulumi.CustomResource):
227
225
 
228
226
  ## Example Usage
229
227
 
230
- <!--Start PulumiCodeChooser -->
231
228
  ```python
232
229
  import pulumi
233
230
  import pulumi_dnsimple as dnsimple
234
231
 
235
232
  # Create a domain
236
- foobar = dnsimple.Domain("foobar", name=var["dnsimple"]["domain"])
233
+ foobar = dnsimple.Domain("foobar", name=dnsimple["domain"])
237
234
  ```
238
- <!--End PulumiCodeChooser -->
239
235
 
240
236
  ## Import
241
237
 
@@ -150,18 +150,16 @@ class EmailForward(pulumi.CustomResource):
150
150
 
151
151
  ## Example Usage
152
152
 
153
- <!--Start PulumiCodeChooser -->
154
153
  ```python
155
154
  import pulumi
156
155
  import pulumi_dnsimple as dnsimple
157
156
 
158
157
  # Add an email forwarding rule to the domain
159
158
  foobar = dnsimple.EmailForward("foobar",
159
+ domain=dnsimple_domain,
160
160
  alias_name="sales",
161
- destination_email="jane.doe@example.com",
162
- domain=var["dnsimple_domain"])
161
+ destination_email="jane.doe@example.com")
163
162
  ```
164
- <!--End PulumiCodeChooser -->
165
163
 
166
164
  :param str resource_name: The name of the resource.
167
165
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -180,18 +178,16 @@ class EmailForward(pulumi.CustomResource):
180
178
 
181
179
  ## Example Usage
182
180
 
183
- <!--Start PulumiCodeChooser -->
184
181
  ```python
185
182
  import pulumi
186
183
  import pulumi_dnsimple as dnsimple
187
184
 
188
185
  # Add an email forwarding rule to the domain
189
186
  foobar = dnsimple.EmailForward("foobar",
187
+ domain=dnsimple_domain,
190
188
  alias_name="sales",
191
- destination_email="jane.doe@example.com",
192
- domain=var["dnsimple_domain"])
189
+ destination_email="jane.doe@example.com")
193
190
  ```
194
- <!--End PulumiCodeChooser -->
195
191
 
196
192
  :param str resource_name: The name of the resource.
197
193
  :param EmailForwardArgs args: The arguments to use to populate this resource's properties.
@@ -118,15 +118,13 @@ def get_certificate(certificate_id: Optional[str] = None,
118
118
 
119
119
  ## Example Usage
120
120
 
121
- <!--Start PulumiCodeChooser -->
122
121
  ```python
123
122
  import pulumi
124
123
  import pulumi_dnsimple as dnsimple
125
124
 
126
- foobar = dnsimple.get_certificate(certificate_id=var["dnsimple_certificate_id"],
127
- domain=var["dnsimple_domain"])
125
+ foobar = dnsimple.get_certificate(domain=dnsimple_domain,
126
+ certificate_id=dnsimple_certificate_id)
128
127
  ```
129
- <!--End PulumiCodeChooser -->
130
128
 
131
129
 
132
130
  :param str certificate_id: The ID of the SSL Certificate
@@ -157,15 +155,13 @@ def get_certificate_output(certificate_id: Optional[pulumi.Input[str]] = None,
157
155
 
158
156
  ## Example Usage
159
157
 
160
- <!--Start PulumiCodeChooser -->
161
158
  ```python
162
159
  import pulumi
163
160
  import pulumi_dnsimple as dnsimple
164
161
 
165
- foobar = dnsimple.get_certificate(certificate_id=var["dnsimple_certificate_id"],
166
- domain=var["dnsimple_domain"])
162
+ foobar = dnsimple.get_certificate(domain=dnsimple_domain,
163
+ certificate_id=dnsimple_certificate_id)
167
164
  ```
168
- <!--End PulumiCodeChooser -->
169
165
 
170
166
 
171
167
  :param str certificate_id: The ID of the SSL Certificate
@@ -75,14 +75,12 @@ def get_zone(name: Optional[str] = None,
75
75
 
76
76
  Get zone:
77
77
 
78
- <!--Start PulumiCodeChooser -->
79
78
  ```python
80
79
  import pulumi
81
80
  import pulumi_dnsimple as dnsimple
82
81
 
83
82
  foobar = dnsimple.get_zone(name="dnsimple.com")
84
83
  ```
85
- <!--End PulumiCodeChooser -->
86
84
 
87
85
  The following arguments are supported:
88
86
 
@@ -115,14 +113,12 @@ def get_zone_output(name: Optional[pulumi.Input[str]] = None,
115
113
 
116
114
  Get zone:
117
115
 
118
- <!--Start PulumiCodeChooser -->
119
116
  ```python
120
117
  import pulumi
121
118
  import pulumi_dnsimple as dnsimple
122
119
 
123
120
  foobar = dnsimple.get_zone(name="dnsimple.com")
124
121
  ```
125
- <!--End PulumiCodeChooser -->
126
122
 
127
123
  The following arguments are supported:
128
124
 
@@ -280,17 +280,15 @@ class LetsEncryptCertificate(pulumi.CustomResource):
280
280
 
281
281
  ## Example Usage
282
282
 
283
- <!--Start PulumiCodeChooser -->
284
283
  ```python
285
284
  import pulumi
286
285
  import pulumi_dnsimple as dnsimple
287
286
 
288
287
  foobar = dnsimple.LetsEncryptCertificate("foobar",
289
- domain_id=var["dnsimple"]["domain_id"],
288
+ domain_id=dnsimple["domainId"],
290
289
  auto_renew=False,
291
290
  name="www")
292
291
  ```
293
- <!--End PulumiCodeChooser -->
294
292
 
295
293
  :param str resource_name: The name of the resource.
296
294
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -310,17 +308,15 @@ class LetsEncryptCertificate(pulumi.CustomResource):
310
308
 
311
309
  ## Example Usage
312
310
 
313
- <!--Start PulumiCodeChooser -->
314
311
  ```python
315
312
  import pulumi
316
313
  import pulumi_dnsimple as dnsimple
317
314
 
318
315
  foobar = dnsimple.LetsEncryptCertificate("foobar",
319
- domain_id=var["dnsimple"]["domain_id"],
316
+ domain_id=dnsimple["domainId"],
320
317
  auto_renew=False,
321
318
  name="www")
322
319
  ```
323
- <!--End PulumiCodeChooser -->
324
320
 
325
321
  :param str resource_name: The name of the resource.
326
322
  :param LetsEncryptCertificateArgs args: The arguments to use to populate this resource's properties.
@@ -269,35 +269,31 @@ class ZoneRecord(pulumi.CustomResource):
269
269
 
270
270
  ## Example Usage
271
271
 
272
- <!--Start PulumiCodeChooser -->
273
272
  ```python
274
273
  import pulumi
275
274
  import pulumi_dnsimple as dnsimple
276
275
 
277
276
  # Add a record to the root domain
278
277
  foobar = dnsimple.ZoneRecord("foobar",
278
+ zone_name=dnsimple_domain,
279
279
  name="",
280
- ttl="3600",
281
- type="A",
282
280
  value="192.168.0.11",
283
- zone_name=var["dnsimple_domain"])
281
+ type="A",
282
+ ttl="3600")
284
283
  ```
285
- <!--End PulumiCodeChooser -->
286
284
 
287
- <!--Start PulumiCodeChooser -->
288
285
  ```python
289
286
  import pulumi
290
287
  import pulumi_dnsimple as dnsimple
291
288
 
292
289
  # Add a record to a sub-domain
293
290
  foobar = dnsimple.ZoneRecord("foobar",
291
+ zone_name=dnsimple_domain,
294
292
  name="terraform",
295
- ttl="3600",
296
- type="A",
297
293
  value="192.168.0.11",
298
- zone_name=var["dnsimple_domain"])
294
+ type="A",
295
+ ttl="3600")
299
296
  ```
300
- <!--End PulumiCodeChooser -->
301
297
 
302
298
  ## Import
303
299
 
@@ -340,35 +336,31 @@ class ZoneRecord(pulumi.CustomResource):
340
336
 
341
337
  ## Example Usage
342
338
 
343
- <!--Start PulumiCodeChooser -->
344
339
  ```python
345
340
  import pulumi
346
341
  import pulumi_dnsimple as dnsimple
347
342
 
348
343
  # Add a record to the root domain
349
344
  foobar = dnsimple.ZoneRecord("foobar",
345
+ zone_name=dnsimple_domain,
350
346
  name="",
351
- ttl="3600",
352
- type="A",
353
347
  value="192.168.0.11",
354
- zone_name=var["dnsimple_domain"])
348
+ type="A",
349
+ ttl="3600")
355
350
  ```
356
- <!--End PulumiCodeChooser -->
357
351
 
358
- <!--Start PulumiCodeChooser -->
359
352
  ```python
360
353
  import pulumi
361
354
  import pulumi_dnsimple as dnsimple
362
355
 
363
356
  # Add a record to a sub-domain
364
357
  foobar = dnsimple.ZoneRecord("foobar",
358
+ zone_name=dnsimple_domain,
365
359
  name="terraform",
366
- ttl="3600",
367
- type="A",
368
360
  value="192.168.0.11",
369
- zone_name=var["dnsimple_domain"])
361
+ type="A",
362
+ ttl="3600")
370
363
  ```
371
- <!--End PulumiCodeChooser -->
372
364
 
373
365
  ## Import
374
366
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_dnsimple
3
- Version: 3.5.0a1713331874
3
+ Version: 3.5.0a1713897499
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
@@ -1,19 +1,19 @@
1
1
  pulumi_dnsimple/__init__.py,sha256=q2Qxnpb9OOQTlP9dL3j-T7NsebYT92Z9abw7XZpQ4rI,1711
2
2
  pulumi_dnsimple/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
3
- pulumi_dnsimple/domain.py,sha256=mD0Ub-_ddex__H46ycLFAR0ixt-p9ZTU3xQFQn3Vddo,13296
4
- pulumi_dnsimple/email_forward.py,sha256=dRWrz6a3C_tOW9pf1c-qIBF0Az9RyqLHqqvppda1kdo,11958
5
- pulumi_dnsimple/get_certificate.py,sha256=ltb8hLj0zSq0afbhdmM9qudPDq7r6tW-UZgri5BxRXQ,6256
6
- pulumi_dnsimple/get_zone.py,sha256=xIIXGw_vvZMP-6qmVM-95HztiRBfG6P_Otwth41YFaw,4014
7
- pulumi_dnsimple/lets_encrypt_certificate.py,sha256=4yVxn0ofd3BLxE5alc4C2CBMfU-BRxQghCU70Pv5eRc,19936
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
8
  pulumi_dnsimple/provider.py,sha256=DD4pMom65j4jrnUb84jaP6EkLxEWFxswLlR3FhqG6mE,8730
9
9
  pulumi_dnsimple/pulumi-plugin.json,sha256=IEjftBuofiCI2VAUo_AurjLP04bWxHVglSOj_AeDL8Q,45
10
10
  pulumi_dnsimple/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
11
  pulumi_dnsimple/record.py,sha256=vmud89eUvx8McHoIJjFkhtgLFY9lDkFt837YVZwmfoY,12552
12
- pulumi_dnsimple/zone_record.py,sha256=HsFoDA8-rxseeAMEcvZ6ERdI8iGEdcOIRdiRoerb1W8,19057
12
+ pulumi_dnsimple/zone_record.py,sha256=3FFpk9Ohey4JvMCLosi1gQlJc4INp9MIuCeOr5bHyzA,18717
13
13
  pulumi_dnsimple/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
14
14
  pulumi_dnsimple/config/__init__.pyi,sha256=uNrZE7LcipE2gSGdj97mbe4EbQju8L71BPxe3iQJ2Yo,739
15
15
  pulumi_dnsimple/config/vars.py,sha256=7b8z6pJGysAfTHUhIYK9peb0Sw4zNXY-VxuCaG24H1M,1329
16
- pulumi_dnsimple-3.5.0a1713331874.dist-info/METADATA,sha256=P2DLMGV0JScq8B7RMmo2WOVVjy2Rsr3-YUaOdCbv7bk,2865
17
- pulumi_dnsimple-3.5.0a1713331874.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
18
- pulumi_dnsimple-3.5.0a1713331874.dist-info/top_level.txt,sha256=o_ZMMGgN8JmfKoCEmCl5-nHLCAzri-_7FCQohXzJWd4,16
19
- pulumi_dnsimple-3.5.0a1713331874.dist-info/RECORD,,
16
+ pulumi_dnsimple-3.5.0a1713897499.dist-info/METADATA,sha256=yKzKoyIfd_hsDY_PEf1HSCD6L4jITgjg7MCbikMGmYY,2865
17
+ pulumi_dnsimple-3.5.0a1713897499.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
18
+ pulumi_dnsimple-3.5.0a1713897499.dist-info/top_level.txt,sha256=o_ZMMGgN8JmfKoCEmCl5-nHLCAzri-_7FCQohXzJWd4,16
19
+ pulumi_dnsimple-3.5.0a1713897499.dist-info/RECORD,,