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