pulumi-dnsimple 4.3.0a1743572236__py3-none-any.whl → 4.3.0a1744182972__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/__init__.py +1 -0
- pulumi_dnsimple/_enums.py +3 -1
- pulumi_dnsimple/_inputs.py +77 -76
- pulumi_dnsimple/config/__init__.py +1 -0
- pulumi_dnsimple/config/__init__.pyi +1 -0
- pulumi_dnsimple/config/vars.py +1 -0
- pulumi_dnsimple/contact.py +232 -231
- pulumi_dnsimple/domain.py +57 -56
- pulumi_dnsimple/domain_delegation.py +29 -28
- pulumi_dnsimple/ds_record.py +99 -98
- pulumi_dnsimple/email_forward.py +50 -49
- pulumi_dnsimple/get_certificate.py +16 -15
- pulumi_dnsimple/get_registrant_change_check.py +9 -8
- pulumi_dnsimple/get_zone.py +7 -6
- pulumi_dnsimple/lets_encrypt_certificate.py +120 -119
- pulumi_dnsimple/outputs.py +59 -58
- pulumi_dnsimple/provider.py +39 -38
- pulumi_dnsimple/pulumi-plugin.json +1 -1
- pulumi_dnsimple/registered_domain.py +137 -136
- pulumi_dnsimple/zone.py +57 -56
- pulumi_dnsimple/zone_record.py +125 -124
- {pulumi_dnsimple-4.3.0a1743572236.dist-info → pulumi_dnsimple-4.3.0a1744182972.dist-info}/METADATA +1 -1
- pulumi_dnsimple-4.3.0a1744182972.dist-info/RECORD +27 -0
- pulumi_dnsimple-4.3.0a1743572236.dist-info/RECORD +0 -27
- {pulumi_dnsimple-4.3.0a1743572236.dist-info → pulumi_dnsimple-4.3.0a1744182972.dist-info}/WHEEL +0 -0
- {pulumi_dnsimple-4.3.0a1743572236.dist-info → pulumi_dnsimple-4.3.0a1744182972.dist-info}/top_level.txt +0 -0
pulumi_dnsimple/email_forward.py
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
+
import builtins
|
|
5
6
|
import copy
|
|
6
7
|
import warnings
|
|
7
8
|
import sys
|
|
@@ -19,14 +20,14 @@ __all__ = ['EmailForwardArgs', 'EmailForward']
|
|
|
19
20
|
@pulumi.input_type
|
|
20
21
|
class EmailForwardArgs:
|
|
21
22
|
def __init__(__self__, *,
|
|
22
|
-
alias_name: pulumi.Input[str],
|
|
23
|
-
destination_email: pulumi.Input[str],
|
|
24
|
-
domain: pulumi.Input[str]):
|
|
23
|
+
alias_name: pulumi.Input[builtins.str],
|
|
24
|
+
destination_email: pulumi.Input[builtins.str],
|
|
25
|
+
domain: pulumi.Input[builtins.str]):
|
|
25
26
|
"""
|
|
26
27
|
The set of arguments for constructing a EmailForward resource.
|
|
27
|
-
:param pulumi.Input[str] alias_name: The name part (the part before the @) of the source email address on the domain
|
|
28
|
-
:param pulumi.Input[str] destination_email: The destination email address
|
|
29
|
-
:param pulumi.Input[str] domain: The domain name to add the email forwarding rule to
|
|
28
|
+
:param pulumi.Input[builtins.str] alias_name: The name part (the part before the @) of the source email address on the domain
|
|
29
|
+
:param pulumi.Input[builtins.str] destination_email: The destination email address
|
|
30
|
+
:param pulumi.Input[builtins.str] domain: The domain name to add the email forwarding rule to
|
|
30
31
|
"""
|
|
31
32
|
pulumi.set(__self__, "alias_name", alias_name)
|
|
32
33
|
pulumi.set(__self__, "destination_email", destination_email)
|
|
@@ -34,54 +35,54 @@ class EmailForwardArgs:
|
|
|
34
35
|
|
|
35
36
|
@property
|
|
36
37
|
@pulumi.getter(name="aliasName")
|
|
37
|
-
def alias_name(self) -> pulumi.Input[str]:
|
|
38
|
+
def alias_name(self) -> pulumi.Input[builtins.str]:
|
|
38
39
|
"""
|
|
39
40
|
The name part (the part before the @) of the source email address on the domain
|
|
40
41
|
"""
|
|
41
42
|
return pulumi.get(self, "alias_name")
|
|
42
43
|
|
|
43
44
|
@alias_name.setter
|
|
44
|
-
def alias_name(self, value: pulumi.Input[str]):
|
|
45
|
+
def alias_name(self, value: pulumi.Input[builtins.str]):
|
|
45
46
|
pulumi.set(self, "alias_name", value)
|
|
46
47
|
|
|
47
48
|
@property
|
|
48
49
|
@pulumi.getter(name="destinationEmail")
|
|
49
|
-
def destination_email(self) -> pulumi.Input[str]:
|
|
50
|
+
def destination_email(self) -> pulumi.Input[builtins.str]:
|
|
50
51
|
"""
|
|
51
52
|
The destination email address
|
|
52
53
|
"""
|
|
53
54
|
return pulumi.get(self, "destination_email")
|
|
54
55
|
|
|
55
56
|
@destination_email.setter
|
|
56
|
-
def destination_email(self, value: pulumi.Input[str]):
|
|
57
|
+
def destination_email(self, value: pulumi.Input[builtins.str]):
|
|
57
58
|
pulumi.set(self, "destination_email", value)
|
|
58
59
|
|
|
59
60
|
@property
|
|
60
61
|
@pulumi.getter
|
|
61
|
-
def domain(self) -> pulumi.Input[str]:
|
|
62
|
+
def domain(self) -> pulumi.Input[builtins.str]:
|
|
62
63
|
"""
|
|
63
64
|
The domain name to add the email forwarding rule to
|
|
64
65
|
"""
|
|
65
66
|
return pulumi.get(self, "domain")
|
|
66
67
|
|
|
67
68
|
@domain.setter
|
|
68
|
-
def domain(self, value: pulumi.Input[str]):
|
|
69
|
+
def domain(self, value: pulumi.Input[builtins.str]):
|
|
69
70
|
pulumi.set(self, "domain", value)
|
|
70
71
|
|
|
71
72
|
|
|
72
73
|
@pulumi.input_type
|
|
73
74
|
class _EmailForwardState:
|
|
74
75
|
def __init__(__self__, *,
|
|
75
|
-
alias_email: Optional[pulumi.Input[str]] = None,
|
|
76
|
-
alias_name: Optional[pulumi.Input[str]] = None,
|
|
77
|
-
destination_email: Optional[pulumi.Input[str]] = None,
|
|
78
|
-
domain: Optional[pulumi.Input[str]] = None):
|
|
76
|
+
alias_email: Optional[pulumi.Input[builtins.str]] = None,
|
|
77
|
+
alias_name: Optional[pulumi.Input[builtins.str]] = None,
|
|
78
|
+
destination_email: Optional[pulumi.Input[builtins.str]] = None,
|
|
79
|
+
domain: Optional[pulumi.Input[builtins.str]] = None):
|
|
79
80
|
"""
|
|
80
81
|
Input properties used for looking up and filtering EmailForward resources.
|
|
81
|
-
:param pulumi.Input[str] alias_email: The source email address on the domain, in full form. This is a computed attribute.
|
|
82
|
-
:param pulumi.Input[str] alias_name: The name part (the part before the @) of the source email address on the domain
|
|
83
|
-
:param pulumi.Input[str] destination_email: The destination email address
|
|
84
|
-
:param pulumi.Input[str] domain: The domain name to add the email forwarding rule to
|
|
82
|
+
:param pulumi.Input[builtins.str] alias_email: The source email address on the domain, in full form. This is a computed attribute.
|
|
83
|
+
:param pulumi.Input[builtins.str] alias_name: The name part (the part before the @) of the source email address on the domain
|
|
84
|
+
:param pulumi.Input[builtins.str] destination_email: The destination email address
|
|
85
|
+
:param pulumi.Input[builtins.str] domain: The domain name to add the email forwarding rule to
|
|
85
86
|
"""
|
|
86
87
|
if alias_email is not None:
|
|
87
88
|
pulumi.set(__self__, "alias_email", alias_email)
|
|
@@ -94,50 +95,50 @@ class _EmailForwardState:
|
|
|
94
95
|
|
|
95
96
|
@property
|
|
96
97
|
@pulumi.getter(name="aliasEmail")
|
|
97
|
-
def alias_email(self) -> Optional[pulumi.Input[str]]:
|
|
98
|
+
def alias_email(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
98
99
|
"""
|
|
99
100
|
The source email address on the domain, in full form. This is a computed attribute.
|
|
100
101
|
"""
|
|
101
102
|
return pulumi.get(self, "alias_email")
|
|
102
103
|
|
|
103
104
|
@alias_email.setter
|
|
104
|
-
def alias_email(self, value: Optional[pulumi.Input[str]]):
|
|
105
|
+
def alias_email(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
105
106
|
pulumi.set(self, "alias_email", value)
|
|
106
107
|
|
|
107
108
|
@property
|
|
108
109
|
@pulumi.getter(name="aliasName")
|
|
109
|
-
def alias_name(self) -> Optional[pulumi.Input[str]]:
|
|
110
|
+
def alias_name(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
110
111
|
"""
|
|
111
112
|
The name part (the part before the @) of the source email address on the domain
|
|
112
113
|
"""
|
|
113
114
|
return pulumi.get(self, "alias_name")
|
|
114
115
|
|
|
115
116
|
@alias_name.setter
|
|
116
|
-
def alias_name(self, value: Optional[pulumi.Input[str]]):
|
|
117
|
+
def alias_name(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
117
118
|
pulumi.set(self, "alias_name", value)
|
|
118
119
|
|
|
119
120
|
@property
|
|
120
121
|
@pulumi.getter(name="destinationEmail")
|
|
121
|
-
def destination_email(self) -> Optional[pulumi.Input[str]]:
|
|
122
|
+
def destination_email(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
122
123
|
"""
|
|
123
124
|
The destination email address
|
|
124
125
|
"""
|
|
125
126
|
return pulumi.get(self, "destination_email")
|
|
126
127
|
|
|
127
128
|
@destination_email.setter
|
|
128
|
-
def destination_email(self, value: Optional[pulumi.Input[str]]):
|
|
129
|
+
def destination_email(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
129
130
|
pulumi.set(self, "destination_email", value)
|
|
130
131
|
|
|
131
132
|
@property
|
|
132
133
|
@pulumi.getter
|
|
133
|
-
def domain(self) -> Optional[pulumi.Input[str]]:
|
|
134
|
+
def domain(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
134
135
|
"""
|
|
135
136
|
The domain name to add the email forwarding rule to
|
|
136
137
|
"""
|
|
137
138
|
return pulumi.get(self, "domain")
|
|
138
139
|
|
|
139
140
|
@domain.setter
|
|
140
|
-
def domain(self, value: Optional[pulumi.Input[str]]):
|
|
141
|
+
def domain(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
141
142
|
pulumi.set(self, "domain", value)
|
|
142
143
|
|
|
143
144
|
|
|
@@ -146,9 +147,9 @@ class EmailForward(pulumi.CustomResource):
|
|
|
146
147
|
def __init__(__self__,
|
|
147
148
|
resource_name: str,
|
|
148
149
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
149
|
-
alias_name: Optional[pulumi.Input[str]] = None,
|
|
150
|
-
destination_email: Optional[pulumi.Input[str]] = None,
|
|
151
|
-
domain: Optional[pulumi.Input[str]] = None,
|
|
150
|
+
alias_name: Optional[pulumi.Input[builtins.str]] = None,
|
|
151
|
+
destination_email: Optional[pulumi.Input[builtins.str]] = None,
|
|
152
|
+
domain: Optional[pulumi.Input[builtins.str]] = None,
|
|
152
153
|
__props__=None):
|
|
153
154
|
"""
|
|
154
155
|
Provides a DNSimple email forward resource.
|
|
@@ -179,9 +180,9 @@ class EmailForward(pulumi.CustomResource):
|
|
|
179
180
|
|
|
180
181
|
:param str resource_name: The name of the resource.
|
|
181
182
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
182
|
-
:param pulumi.Input[str] alias_name: The name part (the part before the @) of the source email address on the domain
|
|
183
|
-
:param pulumi.Input[str] destination_email: The destination email address
|
|
184
|
-
:param pulumi.Input[str] domain: The domain name to add the email forwarding rule to
|
|
183
|
+
:param pulumi.Input[builtins.str] alias_name: The name part (the part before the @) of the source email address on the domain
|
|
184
|
+
:param pulumi.Input[builtins.str] destination_email: The destination email address
|
|
185
|
+
:param pulumi.Input[builtins.str] domain: The domain name to add the email forwarding rule to
|
|
185
186
|
"""
|
|
186
187
|
...
|
|
187
188
|
@overload
|
|
@@ -231,9 +232,9 @@ class EmailForward(pulumi.CustomResource):
|
|
|
231
232
|
def _internal_init(__self__,
|
|
232
233
|
resource_name: str,
|
|
233
234
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
234
|
-
alias_name: Optional[pulumi.Input[str]] = None,
|
|
235
|
-
destination_email: Optional[pulumi.Input[str]] = None,
|
|
236
|
-
domain: Optional[pulumi.Input[str]] = None,
|
|
235
|
+
alias_name: Optional[pulumi.Input[builtins.str]] = None,
|
|
236
|
+
destination_email: Optional[pulumi.Input[builtins.str]] = None,
|
|
237
|
+
domain: Optional[pulumi.Input[builtins.str]] = None,
|
|
237
238
|
__props__=None):
|
|
238
239
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
239
240
|
if not isinstance(opts, pulumi.ResourceOptions):
|
|
@@ -263,10 +264,10 @@ class EmailForward(pulumi.CustomResource):
|
|
|
263
264
|
def get(resource_name: str,
|
|
264
265
|
id: pulumi.Input[str],
|
|
265
266
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
266
|
-
alias_email: Optional[pulumi.Input[str]] = None,
|
|
267
|
-
alias_name: Optional[pulumi.Input[str]] = None,
|
|
268
|
-
destination_email: Optional[pulumi.Input[str]] = None,
|
|
269
|
-
domain: Optional[pulumi.Input[str]] = None) -> 'EmailForward':
|
|
267
|
+
alias_email: Optional[pulumi.Input[builtins.str]] = None,
|
|
268
|
+
alias_name: Optional[pulumi.Input[builtins.str]] = None,
|
|
269
|
+
destination_email: Optional[pulumi.Input[builtins.str]] = None,
|
|
270
|
+
domain: Optional[pulumi.Input[builtins.str]] = None) -> 'EmailForward':
|
|
270
271
|
"""
|
|
271
272
|
Get an existing EmailForward resource's state with the given name, id, and optional extra
|
|
272
273
|
properties used to qualify the lookup.
|
|
@@ -274,10 +275,10 @@ class EmailForward(pulumi.CustomResource):
|
|
|
274
275
|
:param str resource_name: The unique name of the resulting resource.
|
|
275
276
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
276
277
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
277
|
-
:param pulumi.Input[str] alias_email: The source email address on the domain, in full form. This is a computed attribute.
|
|
278
|
-
:param pulumi.Input[str] alias_name: The name part (the part before the @) of the source email address on the domain
|
|
279
|
-
:param pulumi.Input[str] destination_email: The destination email address
|
|
280
|
-
:param pulumi.Input[str] domain: The domain name to add the email forwarding rule to
|
|
278
|
+
:param pulumi.Input[builtins.str] alias_email: The source email address on the domain, in full form. This is a computed attribute.
|
|
279
|
+
:param pulumi.Input[builtins.str] alias_name: The name part (the part before the @) of the source email address on the domain
|
|
280
|
+
:param pulumi.Input[builtins.str] destination_email: The destination email address
|
|
281
|
+
:param pulumi.Input[builtins.str] domain: The domain name to add the email forwarding rule to
|
|
281
282
|
"""
|
|
282
283
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
283
284
|
|
|
@@ -291,7 +292,7 @@ class EmailForward(pulumi.CustomResource):
|
|
|
291
292
|
|
|
292
293
|
@property
|
|
293
294
|
@pulumi.getter(name="aliasEmail")
|
|
294
|
-
def alias_email(self) -> pulumi.Output[str]:
|
|
295
|
+
def alias_email(self) -> pulumi.Output[builtins.str]:
|
|
295
296
|
"""
|
|
296
297
|
The source email address on the domain, in full form. This is a computed attribute.
|
|
297
298
|
"""
|
|
@@ -299,7 +300,7 @@ class EmailForward(pulumi.CustomResource):
|
|
|
299
300
|
|
|
300
301
|
@property
|
|
301
302
|
@pulumi.getter(name="aliasName")
|
|
302
|
-
def alias_name(self) -> pulumi.Output[str]:
|
|
303
|
+
def alias_name(self) -> pulumi.Output[builtins.str]:
|
|
303
304
|
"""
|
|
304
305
|
The name part (the part before the @) of the source email address on the domain
|
|
305
306
|
"""
|
|
@@ -307,7 +308,7 @@ class EmailForward(pulumi.CustomResource):
|
|
|
307
308
|
|
|
308
309
|
@property
|
|
309
310
|
@pulumi.getter(name="destinationEmail")
|
|
310
|
-
def destination_email(self) -> pulumi.Output[str]:
|
|
311
|
+
def destination_email(self) -> pulumi.Output[builtins.str]:
|
|
311
312
|
"""
|
|
312
313
|
The destination email address
|
|
313
314
|
"""
|
|
@@ -315,7 +316,7 @@ class EmailForward(pulumi.CustomResource):
|
|
|
315
316
|
|
|
316
317
|
@property
|
|
317
318
|
@pulumi.getter
|
|
318
|
-
def domain(self) -> pulumi.Output[str]:
|
|
319
|
+
def domain(self) -> pulumi.Output[builtins.str]:
|
|
319
320
|
"""
|
|
320
321
|
The domain name to add the email forwarding rule to
|
|
321
322
|
"""
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
+
import builtins
|
|
5
6
|
import copy
|
|
6
7
|
import warnings
|
|
7
8
|
import sys
|
|
@@ -56,7 +57,7 @@ class GetCertificateResult:
|
|
|
56
57
|
|
|
57
58
|
@property
|
|
58
59
|
@pulumi.getter(name="certificateChains")
|
|
59
|
-
def certificate_chains(self) -> Sequence[str]:
|
|
60
|
+
def certificate_chains(self) -> Sequence[builtins.str]:
|
|
60
61
|
"""
|
|
61
62
|
A list of certificates that make up the chain
|
|
62
63
|
"""
|
|
@@ -64,22 +65,22 @@ class GetCertificateResult:
|
|
|
64
65
|
|
|
65
66
|
@property
|
|
66
67
|
@pulumi.getter(name="certificateId")
|
|
67
|
-
def certificate_id(self) -> int:
|
|
68
|
+
def certificate_id(self) -> builtins.int:
|
|
68
69
|
return pulumi.get(self, "certificate_id")
|
|
69
70
|
|
|
70
71
|
@property
|
|
71
72
|
@pulumi.getter
|
|
72
|
-
def domain(self) -> str:
|
|
73
|
+
def domain(self) -> builtins.str:
|
|
73
74
|
return pulumi.get(self, "domain")
|
|
74
75
|
|
|
75
76
|
@property
|
|
76
77
|
@pulumi.getter
|
|
77
|
-
def id(self) -> str:
|
|
78
|
+
def id(self) -> builtins.str:
|
|
78
79
|
return pulumi.get(self, "id")
|
|
79
80
|
|
|
80
81
|
@property
|
|
81
82
|
@pulumi.getter(name="privateKey")
|
|
82
|
-
def private_key(self) -> str:
|
|
83
|
+
def private_key(self) -> builtins.str:
|
|
83
84
|
"""
|
|
84
85
|
The corresponding Private Key for the SSL Certificate
|
|
85
86
|
"""
|
|
@@ -87,7 +88,7 @@ class GetCertificateResult:
|
|
|
87
88
|
|
|
88
89
|
@property
|
|
89
90
|
@pulumi.getter(name="rootCertificate")
|
|
90
|
-
def root_certificate(self) -> str:
|
|
91
|
+
def root_certificate(self) -> builtins.str:
|
|
91
92
|
"""
|
|
92
93
|
The Root Certificate of the issuing CA
|
|
93
94
|
"""
|
|
@@ -95,7 +96,7 @@ class GetCertificateResult:
|
|
|
95
96
|
|
|
96
97
|
@property
|
|
97
98
|
@pulumi.getter(name="serverCertificate")
|
|
98
|
-
def server_certificate(self) -> str:
|
|
99
|
+
def server_certificate(self) -> builtins.str:
|
|
99
100
|
"""
|
|
100
101
|
The SSL Certificate
|
|
101
102
|
"""
|
|
@@ -123,8 +124,8 @@ class AwaitableGetCertificateResult(GetCertificateResult):
|
|
|
123
124
|
timeouts=self.timeouts)
|
|
124
125
|
|
|
125
126
|
|
|
126
|
-
def get_certificate(certificate_id: Optional[int] = None,
|
|
127
|
-
domain: Optional[str] = None,
|
|
127
|
+
def get_certificate(certificate_id: Optional[builtins.int] = None,
|
|
128
|
+
domain: Optional[builtins.str] = None,
|
|
128
129
|
timeouts: Optional[Union['GetCertificateTimeoutsArgs', 'GetCertificateTimeoutsArgsDict']] = None,
|
|
129
130
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetCertificateResult:
|
|
130
131
|
"""
|
|
@@ -141,8 +142,8 @@ def get_certificate(certificate_id: Optional[int] = None,
|
|
|
141
142
|
```
|
|
142
143
|
|
|
143
144
|
|
|
144
|
-
:param int certificate_id: The ID of the SSL Certificate
|
|
145
|
-
:param str domain: The domain of the SSL Certificate
|
|
145
|
+
:param builtins.int certificate_id: The ID of the SSL Certificate
|
|
146
|
+
:param builtins.str domain: The domain of the SSL Certificate
|
|
146
147
|
"""
|
|
147
148
|
__args__ = dict()
|
|
148
149
|
__args__['certificateId'] = certificate_id
|
|
@@ -160,8 +161,8 @@ def get_certificate(certificate_id: Optional[int] = None,
|
|
|
160
161
|
root_certificate=pulumi.get(__ret__, 'root_certificate'),
|
|
161
162
|
server_certificate=pulumi.get(__ret__, 'server_certificate'),
|
|
162
163
|
timeouts=pulumi.get(__ret__, 'timeouts'))
|
|
163
|
-
def get_certificate_output(certificate_id: Optional[pulumi.Input[int]] = None,
|
|
164
|
-
domain: Optional[pulumi.Input[str]] = None,
|
|
164
|
+
def get_certificate_output(certificate_id: Optional[pulumi.Input[builtins.int]] = None,
|
|
165
|
+
domain: Optional[pulumi.Input[builtins.str]] = None,
|
|
165
166
|
timeouts: Optional[pulumi.Input[Optional[Union['GetCertificateTimeoutsArgs', 'GetCertificateTimeoutsArgsDict']]]] = None,
|
|
166
167
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetCertificateResult]:
|
|
167
168
|
"""
|
|
@@ -178,8 +179,8 @@ def get_certificate_output(certificate_id: Optional[pulumi.Input[int]] = None,
|
|
|
178
179
|
```
|
|
179
180
|
|
|
180
181
|
|
|
181
|
-
:param int certificate_id: The ID of the SSL Certificate
|
|
182
|
-
:param str domain: The domain of the SSL Certificate
|
|
182
|
+
:param builtins.int certificate_id: The ID of the SSL Certificate
|
|
183
|
+
:param builtins.str domain: The domain of the SSL Certificate
|
|
183
184
|
"""
|
|
184
185
|
__args__ = dict()
|
|
185
186
|
__args__['certificateId'] = certificate_id
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
+
import builtins
|
|
5
6
|
import copy
|
|
6
7
|
import warnings
|
|
7
8
|
import sys
|
|
@@ -46,12 +47,12 @@ class GetRegistrantChangeCheckResult:
|
|
|
46
47
|
|
|
47
48
|
@property
|
|
48
49
|
@pulumi.getter(name="contactId")
|
|
49
|
-
def contact_id(self) -> str:
|
|
50
|
+
def contact_id(self) -> builtins.str:
|
|
50
51
|
return pulumi.get(self, "contact_id")
|
|
51
52
|
|
|
52
53
|
@property
|
|
53
54
|
@pulumi.getter(name="domainId")
|
|
54
|
-
def domain_id(self) -> str:
|
|
55
|
+
def domain_id(self) -> builtins.str:
|
|
55
56
|
return pulumi.get(self, "domain_id")
|
|
56
57
|
|
|
57
58
|
@property
|
|
@@ -61,12 +62,12 @@ class GetRegistrantChangeCheckResult:
|
|
|
61
62
|
|
|
62
63
|
@property
|
|
63
64
|
@pulumi.getter
|
|
64
|
-
def id(self) -> str:
|
|
65
|
+
def id(self) -> builtins.str:
|
|
65
66
|
return pulumi.get(self, "id")
|
|
66
67
|
|
|
67
68
|
@property
|
|
68
69
|
@pulumi.getter(name="registryOwnerChange")
|
|
69
|
-
def registry_owner_change(self) -> bool:
|
|
70
|
+
def registry_owner_change(self) -> builtins.bool:
|
|
70
71
|
return pulumi.get(self, "registry_owner_change")
|
|
71
72
|
|
|
72
73
|
|
|
@@ -83,8 +84,8 @@ class AwaitableGetRegistrantChangeCheckResult(GetRegistrantChangeCheckResult):
|
|
|
83
84
|
registry_owner_change=self.registry_owner_change)
|
|
84
85
|
|
|
85
86
|
|
|
86
|
-
def get_registrant_change_check(contact_id: Optional[str] = None,
|
|
87
|
-
domain_id: Optional[str] = None,
|
|
87
|
+
def get_registrant_change_check(contact_id: Optional[builtins.str] = None,
|
|
88
|
+
domain_id: Optional[builtins.str] = None,
|
|
88
89
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetRegistrantChangeCheckResult:
|
|
89
90
|
"""
|
|
90
91
|
Get information on the requirements of a registrant change.
|
|
@@ -127,8 +128,8 @@ def get_registrant_change_check(contact_id: Optional[str] = None,
|
|
|
127
128
|
extended_attributes=pulumi.get(__ret__, 'extended_attributes'),
|
|
128
129
|
id=pulumi.get(__ret__, 'id'),
|
|
129
130
|
registry_owner_change=pulumi.get(__ret__, 'registry_owner_change'))
|
|
130
|
-
def get_registrant_change_check_output(contact_id: Optional[pulumi.Input[str]] = None,
|
|
131
|
-
domain_id: Optional[pulumi.Input[str]] = None,
|
|
131
|
+
def get_registrant_change_check_output(contact_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
132
|
+
domain_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
132
133
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetRegistrantChangeCheckResult]:
|
|
133
134
|
"""
|
|
134
135
|
Get information on the requirements of a registrant change.
|
pulumi_dnsimple/get_zone.py
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
+
import builtins
|
|
5
6
|
import copy
|
|
6
7
|
import warnings
|
|
7
8
|
import sys
|
|
@@ -42,22 +43,22 @@ class GetZoneResult:
|
|
|
42
43
|
|
|
43
44
|
@property
|
|
44
45
|
@pulumi.getter(name="accountId")
|
|
45
|
-
def account_id(self) -> int:
|
|
46
|
+
def account_id(self) -> builtins.int:
|
|
46
47
|
return pulumi.get(self, "account_id")
|
|
47
48
|
|
|
48
49
|
@property
|
|
49
50
|
@pulumi.getter
|
|
50
|
-
def id(self) -> int:
|
|
51
|
+
def id(self) -> builtins.int:
|
|
51
52
|
return pulumi.get(self, "id")
|
|
52
53
|
|
|
53
54
|
@property
|
|
54
55
|
@pulumi.getter
|
|
55
|
-
def name(self) -> str:
|
|
56
|
+
def name(self) -> builtins.str:
|
|
56
57
|
return pulumi.get(self, "name")
|
|
57
58
|
|
|
58
59
|
@property
|
|
59
60
|
@pulumi.getter
|
|
60
|
-
def reverse(self) -> bool:
|
|
61
|
+
def reverse(self) -> builtins.bool:
|
|
61
62
|
return pulumi.get(self, "reverse")
|
|
62
63
|
|
|
63
64
|
|
|
@@ -73,7 +74,7 @@ class AwaitableGetZoneResult(GetZoneResult):
|
|
|
73
74
|
reverse=self.reverse)
|
|
74
75
|
|
|
75
76
|
|
|
76
|
-
def get_zone(name: Optional[str] = None,
|
|
77
|
+
def get_zone(name: Optional[builtins.str] = None,
|
|
77
78
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetZoneResult:
|
|
78
79
|
"""
|
|
79
80
|
Get information about a DNSimple zone.
|
|
@@ -109,7 +110,7 @@ def get_zone(name: Optional[str] = None,
|
|
|
109
110
|
id=pulumi.get(__ret__, 'id'),
|
|
110
111
|
name=pulumi.get(__ret__, 'name'),
|
|
111
112
|
reverse=pulumi.get(__ret__, 'reverse'))
|
|
112
|
-
def get_zone_output(name: Optional[pulumi.Input[str]] = None,
|
|
113
|
+
def get_zone_output(name: Optional[pulumi.Input[builtins.str]] = None,
|
|
113
114
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetZoneResult]:
|
|
114
115
|
"""
|
|
115
116
|
Get information about a DNSimple zone.
|