pulumi-dnsimple 4.4.0a1752032459__py3-none-any.whl → 4.4.1__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.4.0a1752032459.dist-info → pulumi_dnsimple-4.4.1.dist-info}/METADATA +1 -1
- pulumi_dnsimple-4.4.1.dist-info/RECORD +27 -0
- pulumi_dnsimple-4.4.0a1752032459.dist-info/RECORD +0 -27
- {pulumi_dnsimple-4.4.0a1752032459.dist-info → pulumi_dnsimple-4.4.1.dist-info}/WHEEL +0 -0
- {pulumi_dnsimple-4.4.0a1752032459.dist-info → pulumi_dnsimple-4.4.1.dist-info}/top_level.txt +0 -0
pulumi_dnsimple/__init__.py
CHANGED
|
@@ -2,7 +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
|
|
5
|
+
import builtins as _builtins
|
|
6
6
|
from . import _utilities
|
|
7
7
|
import typing
|
|
8
8
|
# Export this package's modules as members:
|
pulumi_dnsimple/_enums.py
CHANGED
|
@@ -2,7 +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
|
|
5
|
+
import builtins as _builtins
|
|
6
6
|
import pulumi
|
|
7
7
|
from enum import Enum
|
|
8
8
|
|
|
@@ -12,7 +12,7 @@ __all__ = [
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
@pulumi.type_token("dnsimple:index:RecordTypes")
|
|
15
|
-
class RecordTypes(
|
|
15
|
+
class RecordTypes(_builtins.str, Enum):
|
|
16
16
|
"""
|
|
17
17
|
DNS Record types.
|
|
18
18
|
"""
|
pulumi_dnsimple/_inputs.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
|
|
@@ -31,15 +30,15 @@ MYPY = False
|
|
|
31
30
|
|
|
32
31
|
if not MYPY:
|
|
33
32
|
class RegisteredDomainDomainRegistrationArgsDict(TypedDict):
|
|
34
|
-
id: NotRequired[pulumi.Input[
|
|
33
|
+
id: NotRequired[pulumi.Input[_builtins.int]]
|
|
35
34
|
"""
|
|
36
35
|
The ID of this resource.
|
|
37
36
|
"""
|
|
38
|
-
period: NotRequired[pulumi.Input[
|
|
37
|
+
period: NotRequired[pulumi.Input[_builtins.int]]
|
|
39
38
|
"""
|
|
40
39
|
The registration period in years.
|
|
41
40
|
"""
|
|
42
|
-
state: NotRequired[pulumi.Input[
|
|
41
|
+
state: NotRequired[pulumi.Input[_builtins.str]]
|
|
43
42
|
"""
|
|
44
43
|
The state of the domain.
|
|
45
44
|
"""
|
|
@@ -49,13 +48,13 @@ elif False:
|
|
|
49
48
|
@pulumi.input_type
|
|
50
49
|
class RegisteredDomainDomainRegistrationArgs:
|
|
51
50
|
def __init__(__self__, *,
|
|
52
|
-
id: Optional[pulumi.Input[
|
|
53
|
-
period: Optional[pulumi.Input[
|
|
54
|
-
state: Optional[pulumi.Input[
|
|
51
|
+
id: Optional[pulumi.Input[_builtins.int]] = None,
|
|
52
|
+
period: Optional[pulumi.Input[_builtins.int]] = None,
|
|
53
|
+
state: Optional[pulumi.Input[_builtins.str]] = None):
|
|
55
54
|
"""
|
|
56
|
-
:param pulumi.Input[
|
|
57
|
-
:param pulumi.Input[
|
|
58
|
-
:param pulumi.Input[
|
|
55
|
+
:param pulumi.Input[_builtins.int] id: The ID of this resource.
|
|
56
|
+
:param pulumi.Input[_builtins.int] period: The registration period in years.
|
|
57
|
+
:param pulumi.Input[_builtins.str] state: The state of the domain.
|
|
59
58
|
"""
|
|
60
59
|
if id is not None:
|
|
61
60
|
pulumi.set(__self__, "id", id)
|
|
@@ -64,74 +63,74 @@ class RegisteredDomainDomainRegistrationArgs:
|
|
|
64
63
|
if state is not None:
|
|
65
64
|
pulumi.set(__self__, "state", state)
|
|
66
65
|
|
|
67
|
-
@property
|
|
66
|
+
@_builtins.property
|
|
68
67
|
@pulumi.getter
|
|
69
|
-
def id(self) -> Optional[pulumi.Input[
|
|
68
|
+
def id(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
70
69
|
"""
|
|
71
70
|
The ID of this resource.
|
|
72
71
|
"""
|
|
73
72
|
return pulumi.get(self, "id")
|
|
74
73
|
|
|
75
74
|
@id.setter
|
|
76
|
-
def id(self, value: Optional[pulumi.Input[
|
|
75
|
+
def id(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
77
76
|
pulumi.set(self, "id", value)
|
|
78
77
|
|
|
79
|
-
@property
|
|
78
|
+
@_builtins.property
|
|
80
79
|
@pulumi.getter
|
|
81
|
-
def period(self) -> Optional[pulumi.Input[
|
|
80
|
+
def period(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
82
81
|
"""
|
|
83
82
|
The registration period in years.
|
|
84
83
|
"""
|
|
85
84
|
return pulumi.get(self, "period")
|
|
86
85
|
|
|
87
86
|
@period.setter
|
|
88
|
-
def period(self, value: Optional[pulumi.Input[
|
|
87
|
+
def period(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
89
88
|
pulumi.set(self, "period", value)
|
|
90
89
|
|
|
91
|
-
@property
|
|
90
|
+
@_builtins.property
|
|
92
91
|
@pulumi.getter
|
|
93
|
-
def state(self) -> Optional[pulumi.Input[
|
|
92
|
+
def state(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
94
93
|
"""
|
|
95
94
|
The state of the domain.
|
|
96
95
|
"""
|
|
97
96
|
return pulumi.get(self, "state")
|
|
98
97
|
|
|
99
98
|
@state.setter
|
|
100
|
-
def state(self, value: Optional[pulumi.Input[
|
|
99
|
+
def state(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
101
100
|
pulumi.set(self, "state", value)
|
|
102
101
|
|
|
103
102
|
|
|
104
103
|
if not MYPY:
|
|
105
104
|
class RegisteredDomainRegistrantChangeArgsDict(TypedDict):
|
|
106
|
-
account_id: NotRequired[pulumi.Input[
|
|
105
|
+
account_id: NotRequired[pulumi.Input[_builtins.int]]
|
|
107
106
|
"""
|
|
108
107
|
DNSimple Account ID to which the registrant change belongs to
|
|
109
108
|
"""
|
|
110
|
-
contact_id: NotRequired[pulumi.Input[
|
|
109
|
+
contact_id: NotRequired[pulumi.Input[_builtins.int]]
|
|
111
110
|
"""
|
|
112
111
|
The ID of the contact to be used for the domain registration. The contact ID can be changed after the domain has been registered. The change will result in a new registrant change this may result in a [60-day lock](https://support.dnsimple.com/articles/icann-60-day-lock-registrant-change/).
|
|
113
112
|
"""
|
|
114
|
-
domain_id: NotRequired[pulumi.Input[
|
|
113
|
+
domain_id: NotRequired[pulumi.Input[_builtins.str]]
|
|
115
114
|
"""
|
|
116
115
|
DNSimple domain ID for which the registrant change is being performed
|
|
117
116
|
"""
|
|
118
|
-
extended_attributes: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[
|
|
117
|
+
extended_attributes: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]
|
|
119
118
|
"""
|
|
120
119
|
A map of extended attributes to be set for the domain registration. To see if there are any required extended attributes for any TLD use our [Lists the TLD Extended Attributes API](https://developer.dnsimple.com/v2/tlds/#getTldExtendedAttributes). The values provided in the `extended_attributes` will also be sent when a registrant change is initiated as part of changing the `contact_id`.
|
|
121
120
|
"""
|
|
122
|
-
id: NotRequired[pulumi.Input[
|
|
121
|
+
id: NotRequired[pulumi.Input[_builtins.int]]
|
|
123
122
|
"""
|
|
124
123
|
The ID of this resource.
|
|
125
124
|
"""
|
|
126
|
-
irt_lock_lifted_by: NotRequired[pulumi.Input[
|
|
125
|
+
irt_lock_lifted_by: NotRequired[pulumi.Input[_builtins.str]]
|
|
127
126
|
"""
|
|
128
127
|
Date when the registrant change lock was lifted for the domain
|
|
129
128
|
"""
|
|
130
|
-
registry_owner_change: NotRequired[pulumi.Input[
|
|
129
|
+
registry_owner_change: NotRequired[pulumi.Input[_builtins.bool]]
|
|
131
130
|
"""
|
|
132
131
|
True if the registrant change will result in a registry owner change
|
|
133
132
|
"""
|
|
134
|
-
state: NotRequired[pulumi.Input[
|
|
133
|
+
state: NotRequired[pulumi.Input[_builtins.str]]
|
|
135
134
|
"""
|
|
136
135
|
The state of the domain.
|
|
137
136
|
"""
|
|
@@ -141,23 +140,23 @@ elif False:
|
|
|
141
140
|
@pulumi.input_type
|
|
142
141
|
class RegisteredDomainRegistrantChangeArgs:
|
|
143
142
|
def __init__(__self__, *,
|
|
144
|
-
account_id: Optional[pulumi.Input[
|
|
145
|
-
contact_id: Optional[pulumi.Input[
|
|
146
|
-
domain_id: Optional[pulumi.Input[
|
|
147
|
-
extended_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[
|
|
148
|
-
id: Optional[pulumi.Input[
|
|
149
|
-
irt_lock_lifted_by: Optional[pulumi.Input[
|
|
150
|
-
registry_owner_change: Optional[pulumi.Input[
|
|
151
|
-
state: Optional[pulumi.Input[
|
|
152
|
-
"""
|
|
153
|
-
:param pulumi.Input[
|
|
154
|
-
:param pulumi.Input[
|
|
155
|
-
:param pulumi.Input[
|
|
156
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[
|
|
157
|
-
:param pulumi.Input[
|
|
158
|
-
:param pulumi.Input[
|
|
159
|
-
:param pulumi.Input[
|
|
160
|
-
:param pulumi.Input[
|
|
143
|
+
account_id: Optional[pulumi.Input[_builtins.int]] = None,
|
|
144
|
+
contact_id: Optional[pulumi.Input[_builtins.int]] = None,
|
|
145
|
+
domain_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
146
|
+
extended_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
147
|
+
id: Optional[pulumi.Input[_builtins.int]] = None,
|
|
148
|
+
irt_lock_lifted_by: Optional[pulumi.Input[_builtins.str]] = None,
|
|
149
|
+
registry_owner_change: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
150
|
+
state: Optional[pulumi.Input[_builtins.str]] = None):
|
|
151
|
+
"""
|
|
152
|
+
:param pulumi.Input[_builtins.int] account_id: DNSimple Account ID to which the registrant change belongs to
|
|
153
|
+
:param pulumi.Input[_builtins.int] contact_id: The ID of the contact to be used for the domain registration. The contact ID can be changed after the domain has been registered. The change will result in a new registrant change this may result in a [60-day lock](https://support.dnsimple.com/articles/icann-60-day-lock-registrant-change/).
|
|
154
|
+
:param pulumi.Input[_builtins.str] domain_id: DNSimple domain ID for which the registrant change is being performed
|
|
155
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] extended_attributes: A map of extended attributes to be set for the domain registration. To see if there are any required extended attributes for any TLD use our [Lists the TLD Extended Attributes API](https://developer.dnsimple.com/v2/tlds/#getTldExtendedAttributes). The values provided in the `extended_attributes` will also be sent when a registrant change is initiated as part of changing the `contact_id`.
|
|
156
|
+
:param pulumi.Input[_builtins.int] id: The ID of this resource.
|
|
157
|
+
:param pulumi.Input[_builtins.str] irt_lock_lifted_by: Date when the registrant change lock was lifted for the domain
|
|
158
|
+
:param pulumi.Input[_builtins.bool] registry_owner_change: True if the registrant change will result in a registry owner change
|
|
159
|
+
:param pulumi.Input[_builtins.str] state: The state of the domain.
|
|
161
160
|
"""
|
|
162
161
|
if account_id is not None:
|
|
163
162
|
pulumi.set(__self__, "account_id", account_id)
|
|
@@ -176,114 +175,114 @@ class RegisteredDomainRegistrantChangeArgs:
|
|
|
176
175
|
if state is not None:
|
|
177
176
|
pulumi.set(__self__, "state", state)
|
|
178
177
|
|
|
179
|
-
@property
|
|
178
|
+
@_builtins.property
|
|
180
179
|
@pulumi.getter(name="accountId")
|
|
181
|
-
def account_id(self) -> Optional[pulumi.Input[
|
|
180
|
+
def account_id(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
182
181
|
"""
|
|
183
182
|
DNSimple Account ID to which the registrant change belongs to
|
|
184
183
|
"""
|
|
185
184
|
return pulumi.get(self, "account_id")
|
|
186
185
|
|
|
187
186
|
@account_id.setter
|
|
188
|
-
def account_id(self, value: Optional[pulumi.Input[
|
|
187
|
+
def account_id(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
189
188
|
pulumi.set(self, "account_id", value)
|
|
190
189
|
|
|
191
|
-
@property
|
|
190
|
+
@_builtins.property
|
|
192
191
|
@pulumi.getter(name="contactId")
|
|
193
|
-
def contact_id(self) -> Optional[pulumi.Input[
|
|
192
|
+
def contact_id(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
194
193
|
"""
|
|
195
194
|
The ID of the contact to be used for the domain registration. The contact ID can be changed after the domain has been registered. The change will result in a new registrant change this may result in a [60-day lock](https://support.dnsimple.com/articles/icann-60-day-lock-registrant-change/).
|
|
196
195
|
"""
|
|
197
196
|
return pulumi.get(self, "contact_id")
|
|
198
197
|
|
|
199
198
|
@contact_id.setter
|
|
200
|
-
def contact_id(self, value: Optional[pulumi.Input[
|
|
199
|
+
def contact_id(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
201
200
|
pulumi.set(self, "contact_id", value)
|
|
202
201
|
|
|
203
|
-
@property
|
|
202
|
+
@_builtins.property
|
|
204
203
|
@pulumi.getter(name="domainId")
|
|
205
|
-
def domain_id(self) -> Optional[pulumi.Input[
|
|
204
|
+
def domain_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
206
205
|
"""
|
|
207
206
|
DNSimple domain ID for which the registrant change is being performed
|
|
208
207
|
"""
|
|
209
208
|
return pulumi.get(self, "domain_id")
|
|
210
209
|
|
|
211
210
|
@domain_id.setter
|
|
212
|
-
def domain_id(self, value: Optional[pulumi.Input[
|
|
211
|
+
def domain_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
213
212
|
pulumi.set(self, "domain_id", value)
|
|
214
213
|
|
|
215
|
-
@property
|
|
214
|
+
@_builtins.property
|
|
216
215
|
@pulumi.getter(name="extendedAttributes")
|
|
217
|
-
def extended_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[
|
|
216
|
+
def extended_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
|
218
217
|
"""
|
|
219
218
|
A map of extended attributes to be set for the domain registration. To see if there are any required extended attributes for any TLD use our [Lists the TLD Extended Attributes API](https://developer.dnsimple.com/v2/tlds/#getTldExtendedAttributes). The values provided in the `extended_attributes` will also be sent when a registrant change is initiated as part of changing the `contact_id`.
|
|
220
219
|
"""
|
|
221
220
|
return pulumi.get(self, "extended_attributes")
|
|
222
221
|
|
|
223
222
|
@extended_attributes.setter
|
|
224
|
-
def extended_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[
|
|
223
|
+
def extended_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
225
224
|
pulumi.set(self, "extended_attributes", value)
|
|
226
225
|
|
|
227
|
-
@property
|
|
226
|
+
@_builtins.property
|
|
228
227
|
@pulumi.getter
|
|
229
|
-
def id(self) -> Optional[pulumi.Input[
|
|
228
|
+
def id(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
230
229
|
"""
|
|
231
230
|
The ID of this resource.
|
|
232
231
|
"""
|
|
233
232
|
return pulumi.get(self, "id")
|
|
234
233
|
|
|
235
234
|
@id.setter
|
|
236
|
-
def id(self, value: Optional[pulumi.Input[
|
|
235
|
+
def id(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
237
236
|
pulumi.set(self, "id", value)
|
|
238
237
|
|
|
239
|
-
@property
|
|
238
|
+
@_builtins.property
|
|
240
239
|
@pulumi.getter(name="irtLockLiftedBy")
|
|
241
|
-
def irt_lock_lifted_by(self) -> Optional[pulumi.Input[
|
|
240
|
+
def irt_lock_lifted_by(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
242
241
|
"""
|
|
243
242
|
Date when the registrant change lock was lifted for the domain
|
|
244
243
|
"""
|
|
245
244
|
return pulumi.get(self, "irt_lock_lifted_by")
|
|
246
245
|
|
|
247
246
|
@irt_lock_lifted_by.setter
|
|
248
|
-
def irt_lock_lifted_by(self, value: Optional[pulumi.Input[
|
|
247
|
+
def irt_lock_lifted_by(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
249
248
|
pulumi.set(self, "irt_lock_lifted_by", value)
|
|
250
249
|
|
|
251
|
-
@property
|
|
250
|
+
@_builtins.property
|
|
252
251
|
@pulumi.getter(name="registryOwnerChange")
|
|
253
|
-
def registry_owner_change(self) -> Optional[pulumi.Input[
|
|
252
|
+
def registry_owner_change(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
254
253
|
"""
|
|
255
254
|
True if the registrant change will result in a registry owner change
|
|
256
255
|
"""
|
|
257
256
|
return pulumi.get(self, "registry_owner_change")
|
|
258
257
|
|
|
259
258
|
@registry_owner_change.setter
|
|
260
|
-
def registry_owner_change(self, value: Optional[pulumi.Input[
|
|
259
|
+
def registry_owner_change(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
261
260
|
pulumi.set(self, "registry_owner_change", value)
|
|
262
261
|
|
|
263
|
-
@property
|
|
262
|
+
@_builtins.property
|
|
264
263
|
@pulumi.getter
|
|
265
|
-
def state(self) -> Optional[pulumi.Input[
|
|
264
|
+
def state(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
266
265
|
"""
|
|
267
266
|
The state of the domain.
|
|
268
267
|
"""
|
|
269
268
|
return pulumi.get(self, "state")
|
|
270
269
|
|
|
271
270
|
@state.setter
|
|
272
|
-
def state(self, value: Optional[pulumi.Input[
|
|
271
|
+
def state(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
273
272
|
pulumi.set(self, "state", value)
|
|
274
273
|
|
|
275
274
|
|
|
276
275
|
if not MYPY:
|
|
277
276
|
class RegisteredDomainTimeoutsArgsDict(TypedDict):
|
|
278
|
-
create: NotRequired[pulumi.Input[
|
|
277
|
+
create: NotRequired[pulumi.Input[_builtins.str]]
|
|
279
278
|
"""
|
|
280
279
|
Create timeout.
|
|
281
280
|
"""
|
|
282
|
-
delete: NotRequired[pulumi.Input[
|
|
281
|
+
delete: NotRequired[pulumi.Input[_builtins.str]]
|
|
283
282
|
"""
|
|
284
283
|
Delete timeout (currently unused).
|
|
285
284
|
"""
|
|
286
|
-
update: NotRequired[pulumi.Input[
|
|
285
|
+
update: NotRequired[pulumi.Input[_builtins.str]]
|
|
287
286
|
"""
|
|
288
287
|
Update timeout.
|
|
289
288
|
"""
|
|
@@ -293,13 +292,13 @@ elif False:
|
|
|
293
292
|
@pulumi.input_type
|
|
294
293
|
class RegisteredDomainTimeoutsArgs:
|
|
295
294
|
def __init__(__self__, *,
|
|
296
|
-
create: Optional[pulumi.Input[
|
|
297
|
-
delete: Optional[pulumi.Input[
|
|
298
|
-
update: Optional[pulumi.Input[
|
|
295
|
+
create: Optional[pulumi.Input[_builtins.str]] = None,
|
|
296
|
+
delete: Optional[pulumi.Input[_builtins.str]] = None,
|
|
297
|
+
update: Optional[pulumi.Input[_builtins.str]] = None):
|
|
299
298
|
"""
|
|
300
|
-
:param pulumi.Input[
|
|
301
|
-
:param pulumi.Input[
|
|
302
|
-
:param pulumi.Input[
|
|
299
|
+
:param pulumi.Input[_builtins.str] create: Create timeout.
|
|
300
|
+
:param pulumi.Input[_builtins.str] delete: Delete timeout (currently unused).
|
|
301
|
+
:param pulumi.Input[_builtins.str] update: Update timeout.
|
|
303
302
|
"""
|
|
304
303
|
if create is not None:
|
|
305
304
|
pulumi.set(__self__, "create", create)
|
|
@@ -308,46 +307,46 @@ class RegisteredDomainTimeoutsArgs:
|
|
|
308
307
|
if update is not None:
|
|
309
308
|
pulumi.set(__self__, "update", update)
|
|
310
309
|
|
|
311
|
-
@property
|
|
310
|
+
@_builtins.property
|
|
312
311
|
@pulumi.getter
|
|
313
|
-
def create(self) -> Optional[pulumi.Input[
|
|
312
|
+
def create(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
314
313
|
"""
|
|
315
314
|
Create timeout.
|
|
316
315
|
"""
|
|
317
316
|
return pulumi.get(self, "create")
|
|
318
317
|
|
|
319
318
|
@create.setter
|
|
320
|
-
def create(self, value: Optional[pulumi.Input[
|
|
319
|
+
def create(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
321
320
|
pulumi.set(self, "create", value)
|
|
322
321
|
|
|
323
|
-
@property
|
|
322
|
+
@_builtins.property
|
|
324
323
|
@pulumi.getter
|
|
325
|
-
def delete(self) -> Optional[pulumi.Input[
|
|
324
|
+
def delete(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
326
325
|
"""
|
|
327
326
|
Delete timeout (currently unused).
|
|
328
327
|
"""
|
|
329
328
|
return pulumi.get(self, "delete")
|
|
330
329
|
|
|
331
330
|
@delete.setter
|
|
332
|
-
def delete(self, value: Optional[pulumi.Input[
|
|
331
|
+
def delete(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
333
332
|
pulumi.set(self, "delete", value)
|
|
334
333
|
|
|
335
|
-
@property
|
|
334
|
+
@_builtins.property
|
|
336
335
|
@pulumi.getter
|
|
337
|
-
def update(self) -> Optional[pulumi.Input[
|
|
336
|
+
def update(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
338
337
|
"""
|
|
339
338
|
Update timeout.
|
|
340
339
|
"""
|
|
341
340
|
return pulumi.get(self, "update")
|
|
342
341
|
|
|
343
342
|
@update.setter
|
|
344
|
-
def update(self, value: Optional[pulumi.Input[
|
|
343
|
+
def update(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
345
344
|
pulumi.set(self, "update", value)
|
|
346
345
|
|
|
347
346
|
|
|
348
347
|
if not MYPY:
|
|
349
348
|
class GetCertificateTimeoutsArgsDict(TypedDict):
|
|
350
|
-
read: NotRequired[
|
|
349
|
+
read: NotRequired[_builtins.str]
|
|
351
350
|
"""
|
|
352
351
|
(String) - The timeout for the read operation e.g. `5m`
|
|
353
352
|
"""
|
|
@@ -357,23 +356,23 @@ elif False:
|
|
|
357
356
|
@pulumi.input_type
|
|
358
357
|
class GetCertificateTimeoutsArgs:
|
|
359
358
|
def __init__(__self__, *,
|
|
360
|
-
read: Optional[
|
|
359
|
+
read: Optional[_builtins.str] = None):
|
|
361
360
|
"""
|
|
362
|
-
:param
|
|
361
|
+
:param _builtins.str read: (String) - The timeout for the read operation e.g. `5m`
|
|
363
362
|
"""
|
|
364
363
|
if read is not None:
|
|
365
364
|
pulumi.set(__self__, "read", read)
|
|
366
365
|
|
|
367
|
-
@property
|
|
366
|
+
@_builtins.property
|
|
368
367
|
@pulumi.getter
|
|
369
|
-
def read(self) -> Optional[
|
|
368
|
+
def read(self) -> Optional[_builtins.str]:
|
|
370
369
|
"""
|
|
371
370
|
(String) - The timeout for the read operation e.g. `5m`
|
|
372
371
|
"""
|
|
373
372
|
return pulumi.get(self, "read")
|
|
374
373
|
|
|
375
374
|
@read.setter
|
|
376
|
-
def read(self, value: Optional[
|
|
375
|
+
def read(self, value: Optional[_builtins.str]):
|
|
377
376
|
pulumi.set(self, "read", value)
|
|
378
377
|
|
|
379
378
|
|
|
@@ -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
|
pulumi_dnsimple/config/vars.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
|
|
@@ -21,35 +20,35 @@ __config__ = pulumi.Config('dnsimple')
|
|
|
21
20
|
|
|
22
21
|
|
|
23
22
|
class _ExportableConfig(types.ModuleType):
|
|
24
|
-
@property
|
|
23
|
+
@_builtins.property
|
|
25
24
|
def account(self) -> Optional[str]:
|
|
26
25
|
"""
|
|
27
26
|
The account for API operations.
|
|
28
27
|
"""
|
|
29
28
|
return __config__.get('account')
|
|
30
29
|
|
|
31
|
-
@property
|
|
30
|
+
@_builtins.property
|
|
32
31
|
def prefetch(self) -> Optional[bool]:
|
|
33
32
|
"""
|
|
34
33
|
Flag to enable the prefetch of zone records.
|
|
35
34
|
"""
|
|
36
35
|
return __config__.get_bool('prefetch')
|
|
37
36
|
|
|
38
|
-
@property
|
|
37
|
+
@_builtins.property
|
|
39
38
|
def sandbox(self) -> Optional[bool]:
|
|
40
39
|
"""
|
|
41
40
|
Flag to enable the sandbox API.
|
|
42
41
|
"""
|
|
43
42
|
return __config__.get_bool('sandbox')
|
|
44
43
|
|
|
45
|
-
@property
|
|
44
|
+
@_builtins.property
|
|
46
45
|
def token(self) -> Optional[str]:
|
|
47
46
|
"""
|
|
48
47
|
The API v2 token for API operations.
|
|
49
48
|
"""
|
|
50
49
|
return __config__.get('token')
|
|
51
50
|
|
|
52
|
-
@property
|
|
51
|
+
@_builtins.property
|
|
53
52
|
def user_agent(self) -> Optional[str]:
|
|
54
53
|
"""
|
|
55
54
|
Custom string to append to the user agent used for sending HTTP requests to the API.
|