pulumi-dnsimple 4.4.0a1746423603__py3-none-any.whl → 4.4.0a1746733927__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/_enums.py CHANGED
@@ -3,7 +3,7 @@
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
5
  import builtins
6
- import builtins
6
+ import pulumi
7
7
  from enum import Enum
8
8
 
9
9
  __all__ = [
@@ -11,6 +11,7 @@ __all__ = [
11
11
  ]
12
12
 
13
13
 
14
+ @pulumi.type_token("dnsimple:index:RecordTypes")
14
15
  class RecordTypes(builtins.str, Enum):
15
16
  """
16
17
  DNS Record types.
@@ -560,10 +560,8 @@ class _ContactState:
560
560
  pulumi.set(self, "updated_at", value)
561
561
 
562
562
 
563
+ @pulumi.type_token("dnsimple:index/contact:Contact")
563
564
  class Contact(pulumi.CustomResource):
564
-
565
- pulumi_type = "dnsimple:index/contact:Contact"
566
-
567
565
  @overload
568
566
  def __init__(__self__,
569
567
  resource_name: str,
pulumi_dnsimple/domain.py CHANGED
@@ -168,10 +168,8 @@ class _DomainState:
168
168
  pulumi.set(self, "unicode_name", value)
169
169
 
170
170
 
171
+ @pulumi.type_token("dnsimple:index/domain:Domain")
171
172
  class Domain(pulumi.CustomResource):
172
-
173
- pulumi_type = "dnsimple:index/domain:Domain"
174
-
175
173
  @overload
176
174
  def __init__(__self__,
177
175
  resource_name: str,
@@ -103,10 +103,8 @@ class _DomainDelegationState:
103
103
  pulumi.set(self, "name_servers", value)
104
104
 
105
105
 
106
+ @pulumi.type_token("dnsimple:index/domainDelegation:DomainDelegation")
106
107
  class DomainDelegation(pulumi.CustomResource):
107
-
108
- pulumi_type = "dnsimple:index/domainDelegation:DomainDelegation"
109
-
110
108
  @overload
111
109
  def __init__(__self__,
112
110
  resource_name: str,
@@ -263,10 +263,8 @@ class _DsRecordState:
263
263
  pulumi.set(self, "updated_at", value)
264
264
 
265
265
 
266
+ @pulumi.type_token("dnsimple:index/dsRecord:DsRecord")
266
267
  class DsRecord(pulumi.CustomResource):
267
-
268
- pulumi_type = "dnsimple:index/dsRecord:DsRecord"
269
-
270
268
  @overload
271
269
  def __init__(__self__,
272
270
  resource_name: str,
@@ -142,10 +142,8 @@ class _EmailForwardState:
142
142
  pulumi.set(self, "domain", value)
143
143
 
144
144
 
145
+ @pulumi.type_token("dnsimple:index/emailForward:EmailForward")
145
146
  class EmailForward(pulumi.CustomResource):
146
-
147
- pulumi_type = "dnsimple:index/emailForward:EmailForward"
148
-
149
147
  @overload
150
148
  def __init__(__self__,
151
149
  resource_name: str,
@@ -302,10 +302,8 @@ class _LetsEncryptCertificateState:
302
302
  pulumi.set(self, "years", value)
303
303
 
304
304
 
305
+ @pulumi.type_token("dnsimple:index/letsEncryptCertificate:LetsEncryptCertificate")
305
306
  class LetsEncryptCertificate(pulumi.CustomResource):
306
-
307
- pulumi_type = "dnsimple:index/letsEncryptCertificate:LetsEncryptCertificate"
308
-
309
307
  @overload
310
308
  def __init__(__self__,
311
309
  resource_name: str,
@@ -105,10 +105,8 @@ class ProviderArgs:
105
105
  pulumi.set(self, "user_agent", value)
106
106
 
107
107
 
108
+ @pulumi.type_token("pulumi:providers:dnsimple")
108
109
  class Provider(pulumi.ProviderResource):
109
-
110
- pulumi_type = "pulumi:providers:dnsimple"
111
-
112
110
  @overload
113
111
  def __init__(__self__,
114
112
  resource_name: str,
@@ -211,3 +209,23 @@ class Provider(pulumi.ProviderResource):
211
209
  """
212
210
  return pulumi.get(self, "user_agent")
213
211
 
212
+ @pulumi.output_type
213
+ class TerraformConfigResult:
214
+ def __init__(__self__, result=None):
215
+ if result and not isinstance(result, dict):
216
+ raise TypeError("Expected argument 'result' to be a dict")
217
+ pulumi.set(__self__, "result", result)
218
+
219
+ @property
220
+ @pulumi.getter
221
+ def result(self) -> Mapping[str, Any]:
222
+ return pulumi.get(self, "result")
223
+
224
+ def terraform_config(__self__) -> pulumi.Output['Provider.TerraformConfigResult']:
225
+ """
226
+ This function returns a Terraform config object with terraform-namecased keys,to be used with the Terraform Module Provider.
227
+ """
228
+ __args__ = dict()
229
+ __args__['__self__'] = __self__
230
+ return pulumi.runtime.call('pulumi:providers:dnsimple/terraformConfig', __args__, res=__self__, typ=Provider.TerraformConfigResult)
231
+
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "dnsimple",
4
- "version": "4.4.0-alpha.1746423603"
4
+ "version": "4.4.0-alpha.1746733927"
5
5
  }
@@ -421,10 +421,8 @@ class _RegisteredDomainState:
421
421
  pulumi.set(self, "whois_privacy_enabled", value)
422
422
 
423
423
 
424
+ @pulumi.type_token("dnsimple:index/registeredDomain:RegisteredDomain")
424
425
  class RegisteredDomain(pulumi.CustomResource):
425
-
426
- pulumi_type = "dnsimple:index/registeredDomain:RegisteredDomain"
427
-
428
426
  @overload
429
427
  def __init__(__self__,
430
428
  resource_name: str,
pulumi_dnsimple/zone.py CHANGED
@@ -168,10 +168,8 @@ class _ZoneState:
168
168
  pulumi.set(self, "secondary", value)
169
169
 
170
170
 
171
+ @pulumi.type_token("dnsimple:index/zone:Zone")
171
172
  class Zone(pulumi.CustomResource):
172
-
173
- pulumi_type = "dnsimple:index/zone:Zone"
174
-
175
173
  @overload
176
174
  def __init__(__self__,
177
175
  resource_name: str,
@@ -313,10 +313,8 @@ class _ZoneRecordState:
313
313
  pulumi.set(self, "zone_name", value)
314
314
 
315
315
 
316
+ @pulumi.type_token("dnsimple:index/zoneRecord:ZoneRecord")
316
317
  class ZoneRecord(pulumi.CustomResource):
317
-
318
- pulumi_type = "dnsimple:index/zoneRecord:ZoneRecord"
319
-
320
318
  @overload
321
319
  def __init__(__self__,
322
320
  resource_name: str,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_dnsimple
3
- Version: 4.4.0a1746423603
3
+ Version: 4.4.0a1746733927
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
@@ -9,9 +9,9 @@ Keywords: pulumi,dnsimple
9
9
  Requires-Python: >=3.9
10
10
  Description-Content-Type: text/markdown
11
11
  Requires-Dist: parver>=0.2.1
12
- Requires-Dist: pulumi<4.0.0,>=3.142.0
12
+ Requires-Dist: pulumi<4.0.0,>=3.165.0
13
13
  Requires-Dist: semver>=2.8.1
14
- Requires-Dist: typing-extensions>=4.11; python_version < "3.11"
14
+ Requires-Dist: typing-extensions<5,>=4.11; python_version < "3.11"
15
15
 
16
16
  [![Actions Status](https://github.com/pulumi/pulumi-dnsimple/workflows/master/badge.svg)](https://github.com/pulumi/pulumi-dnsimple/actions)
17
17
  [![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com)
@@ -0,0 +1,27 @@
1
+ pulumi_dnsimple/__init__.py,sha256=U5sqxmHErL46biHMuzTganpusx5HPiDp56GqKVsUpLg,2609
2
+ pulumi_dnsimple/_enums.py,sha256=_iDyYUGYob3U4SdnFeILgyZgqSlzQN5ZXNSggihu2Ho,671
3
+ pulumi_dnsimple/_inputs.py,sha256=CYVhgKpkuYcuntEt3C7TbYSQURps2USlOYtGJKxZ_ug,15096
4
+ pulumi_dnsimple/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
5
+ pulumi_dnsimple/contact.py,sha256=QV8uinnUEE2r_0Tw_LqYbjAJUmZxpwqM4rTrjtfG3wc,41462
6
+ pulumi_dnsimple/domain.py,sha256=JDX8Yr84N0FaqanwpJ0t3KkOG9UjBHpv-wGIFTJX9fU,16085
7
+ pulumi_dnsimple/domain_delegation.py,sha256=7D4IssgyqDoNrOCziFYvXidYaiz9ywoCzeG37Xr71Tg,9780
8
+ pulumi_dnsimple/ds_record.py,sha256=9YP-4tMujTOxOD5IFcs3mZe7a4s8qfotD8k2dJFQKYg,22599
9
+ pulumi_dnsimple/email_forward.py,sha256=FPstDCnjWotlTUapZV7rl_dgaQdDaVab5enAZHuWVPM,13159
10
+ pulumi_dnsimple/get_certificate.py,sha256=zDqCG4cnKUJMaa-pPCRQIEzmvCKsS2BhQQYsH4EyPVw,8015
11
+ pulumi_dnsimple/get_registrant_change_check.py,sha256=J-xNeRUI1FaJYQYpK7-3RXQ7_o8-9X1tO3DL-Emh0tM,7629
12
+ pulumi_dnsimple/get_zone.py,sha256=uBwxXE_giinAMG5M_PXCsFxvb_aeBIoCrauXS3gVEpo,4738
13
+ pulumi_dnsimple/lets_encrypt_certificate.py,sha256=3QXlwbGA3WEu6U-UqyHOE0rKIu1cDTfYTTZPH-8BxBw,23882
14
+ pulumi_dnsimple/outputs.py,sha256=_X1uzVaugYJJFb8g9vwXDg5P7zCN4lWq5SSHZ_9tGPI,11957
15
+ pulumi_dnsimple/provider.py,sha256=JQoUDNsqexTUhpnLol9zgheLnRU8A78d-WkrqRSS2YY,10126
16
+ pulumi_dnsimple/pulumi-plugin.json,sha256=ZkIJ6UskNEPRhD8SAyBT_62kdumRurH1DQHculRxE6Q,84
17
+ pulumi_dnsimple/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
+ pulumi_dnsimple/registered_domain.py,sha256=4FsuAAryJTVMPKb6GYXBhTTG93sD6Q4jCTFCB6IGJ5A,42465
19
+ pulumi_dnsimple/zone.py,sha256=ur_bbSVmQx1g1iSJHukEmf4KoqWJI-uRqwOnGOoP8PI,15501
20
+ pulumi_dnsimple/zone_record.py,sha256=aJJkWklZbuSUyIqp9fsaaeus_nnxlLjb0Tk6v_VUPkQ,24904
21
+ pulumi_dnsimple/config/__init__.py,sha256=nKVKdvQbN3zgJ23HPoKpz1sGrfjaDijL6xvKxGVmj7c,301
22
+ pulumi_dnsimple/config/__init__.pyi,sha256=OQVnhvRnS5fR9xCo8D2rR3oYeZz_NOFd2ZDp0sO1Qeg,929
23
+ pulumi_dnsimple/config/vars.py,sha256=ktNjiwcemk7wDSTLw1b9FQwP6HfOuS_YfDC2kWMLoyw,1519
24
+ pulumi_dnsimple-4.4.0a1746733927.dist-info/METADATA,sha256=u6fpc4L-BKkATyA8zlCN8mdZEznsBvom2Ks-kURXX2Y,2931
25
+ pulumi_dnsimple-4.4.0a1746733927.dist-info/WHEEL,sha256=0CuiUZ_p9E4cD6NyLD6UG80LBXYyiSYZOKDm5lp32xk,91
26
+ pulumi_dnsimple-4.4.0a1746733927.dist-info/top_level.txt,sha256=o_ZMMGgN8JmfKoCEmCl5-nHLCAzri-_7FCQohXzJWd4,16
27
+ pulumi_dnsimple-4.4.0a1746733927.dist-info/RECORD,,
@@ -1,27 +0,0 @@
1
- pulumi_dnsimple/__init__.py,sha256=U5sqxmHErL46biHMuzTganpusx5HPiDp56GqKVsUpLg,2609
2
- pulumi_dnsimple/_enums.py,sha256=QX7gWIbleDKAIAVTJ2AZwhtCZTOIOjwKGvgm56-tTAE,624
3
- pulumi_dnsimple/_inputs.py,sha256=CYVhgKpkuYcuntEt3C7TbYSQURps2USlOYtGJKxZ_ug,15096
4
- pulumi_dnsimple/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
5
- pulumi_dnsimple/contact.py,sha256=2QJhikcgWGUMyxOdFpcsaLNCqIcXFkYWYkrERjNKdcY,41462
6
- pulumi_dnsimple/domain.py,sha256=fmF6vuaWE5bKl5umlgnF_YNCtLvQBdLuDug2yoWOwVc,16085
7
- pulumi_dnsimple/domain_delegation.py,sha256=Jw4bK72blL0sWjaCtsVZCTaAkyVHNX3qtjnftdmakoY,9780
8
- pulumi_dnsimple/ds_record.py,sha256=tCEeFhXLGhQzwc_G5oQC_3PgZ4pTO4KToV9pzUVhtrg,22599
9
- pulumi_dnsimple/email_forward.py,sha256=RODnb0i0eZZSvJJrVehvao1wA8BwK6tSCp0VxTmvsFc,13159
10
- pulumi_dnsimple/get_certificate.py,sha256=zDqCG4cnKUJMaa-pPCRQIEzmvCKsS2BhQQYsH4EyPVw,8015
11
- pulumi_dnsimple/get_registrant_change_check.py,sha256=J-xNeRUI1FaJYQYpK7-3RXQ7_o8-9X1tO3DL-Emh0tM,7629
12
- pulumi_dnsimple/get_zone.py,sha256=uBwxXE_giinAMG5M_PXCsFxvb_aeBIoCrauXS3gVEpo,4738
13
- pulumi_dnsimple/lets_encrypt_certificate.py,sha256=itcyvMTBB_xxGR9sAdUbFCUzh7EPWy_OCUm_LDGKPn4,23882
14
- pulumi_dnsimple/outputs.py,sha256=_X1uzVaugYJJFb8g9vwXDg5P7zCN4lWq5SSHZ_9tGPI,11957
15
- pulumi_dnsimple/provider.py,sha256=00guCNv23iwbjUtwFVnku9nlI1MyCK7hBfSaGme21UY,9255
16
- pulumi_dnsimple/pulumi-plugin.json,sha256=6ldaPf3c7PHUKcw21u_HZcNOI5tgGGIMfsfJu_ukLG8,84
17
- pulumi_dnsimple/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
- pulumi_dnsimple/registered_domain.py,sha256=L796iguNUUGbi7EsKLsrH4rhw1AfH9jImUwNEogNwEc,42465
19
- pulumi_dnsimple/zone.py,sha256=S028u5ZBdyJGULqRvdb2AWSIGefPoeoq4wOF6DLu9HE,15501
20
- pulumi_dnsimple/zone_record.py,sha256=ttqaryK3Lzl1DAUakQGnTfxeYDFARC-uUgoGVpfybyY,24904
21
- pulumi_dnsimple/config/__init__.py,sha256=nKVKdvQbN3zgJ23HPoKpz1sGrfjaDijL6xvKxGVmj7c,301
22
- pulumi_dnsimple/config/__init__.pyi,sha256=OQVnhvRnS5fR9xCo8D2rR3oYeZz_NOFd2ZDp0sO1Qeg,929
23
- pulumi_dnsimple/config/vars.py,sha256=ktNjiwcemk7wDSTLw1b9FQwP6HfOuS_YfDC2kWMLoyw,1519
24
- pulumi_dnsimple-4.4.0a1746423603.dist-info/METADATA,sha256=bdkdwE1uGlwaaKfRorGAesAmRi8pUfqJiZIbIxurn_o,2928
25
- pulumi_dnsimple-4.4.0a1746423603.dist-info/WHEEL,sha256=0CuiUZ_p9E4cD6NyLD6UG80LBXYyiSYZOKDm5lp32xk,91
26
- pulumi_dnsimple-4.4.0a1746423603.dist-info/top_level.txt,sha256=o_ZMMGgN8JmfKoCEmCl5-nHLCAzri-_7FCQohXzJWd4,16
27
- pulumi_dnsimple-4.4.0a1746423603.dist-info/RECORD,,