pulumi-dnsimple 4.2.0__py3-none-any.whl → 4.2.0a1723008522__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/_inputs.py +0 -91
- pulumi_dnsimple/_utilities.py +1 -1
- pulumi_dnsimple/config/__init__.pyi +0 -5
- pulumi_dnsimple/config/vars.py +0 -5
- pulumi_dnsimple/contact.py +0 -5
- pulumi_dnsimple/domain.py +0 -5
- pulumi_dnsimple/domain_delegation.py +0 -5
- pulumi_dnsimple/ds_record.py +0 -5
- pulumi_dnsimple/email_forward.py +0 -5
- pulumi_dnsimple/get_certificate.py +6 -22
- pulumi_dnsimple/get_registrant_change_check.py +4 -16
- pulumi_dnsimple/get_zone.py +4 -14
- pulumi_dnsimple/lets_encrypt_certificate.py +0 -5
- pulumi_dnsimple/outputs.py +0 -5
- pulumi_dnsimple/provider.py +0 -5
- pulumi_dnsimple/pulumi-plugin.json +1 -1
- pulumi_dnsimple/registered_domain.py +9 -14
- pulumi_dnsimple/zone.py +0 -5
- pulumi_dnsimple/zone_record.py +0 -5
- {pulumi_dnsimple-4.2.0.dist-info → pulumi_dnsimple-4.2.0a1723008522.dist-info}/METADATA +2 -3
- pulumi_dnsimple-4.2.0a1723008522.dist-info/RECORD +27 -0
- {pulumi_dnsimple-4.2.0.dist-info → pulumi_dnsimple-4.2.0a1723008522.dist-info}/WHEEL +1 -1
- pulumi_dnsimple-4.2.0.dist-info/RECORD +0 -27
- {pulumi_dnsimple-4.2.0.dist-info → pulumi_dnsimple-4.2.0a1723008522.dist-info}/top_level.txt +0 -0
pulumi_dnsimple/_inputs.py
CHANGED
|
@@ -4,47 +4,19 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
-
import sys
|
|
8
7
|
import pulumi
|
|
9
8
|
import pulumi.runtime
|
|
10
9
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
-
if sys.version_info >= (3, 11):
|
|
12
|
-
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
-
else:
|
|
14
|
-
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
10
|
from . import _utilities
|
|
16
11
|
from ._enums import *
|
|
17
12
|
|
|
18
13
|
__all__ = [
|
|
19
14
|
'RegisteredDomainDomainRegistrationArgs',
|
|
20
|
-
'RegisteredDomainDomainRegistrationArgsDict',
|
|
21
15
|
'RegisteredDomainRegistrantChangeArgs',
|
|
22
|
-
'RegisteredDomainRegistrantChangeArgsDict',
|
|
23
16
|
'RegisteredDomainTimeoutsArgs',
|
|
24
|
-
'RegisteredDomainTimeoutsArgsDict',
|
|
25
17
|
'GetCertificateTimeoutsArgs',
|
|
26
|
-
'GetCertificateTimeoutsArgsDict',
|
|
27
18
|
]
|
|
28
19
|
|
|
29
|
-
MYPY = False
|
|
30
|
-
|
|
31
|
-
if not MYPY:
|
|
32
|
-
class RegisteredDomainDomainRegistrationArgsDict(TypedDict):
|
|
33
|
-
id: NotRequired[pulumi.Input[int]]
|
|
34
|
-
"""
|
|
35
|
-
The ID of this resource.
|
|
36
|
-
"""
|
|
37
|
-
period: NotRequired[pulumi.Input[int]]
|
|
38
|
-
"""
|
|
39
|
-
The registration period in years.
|
|
40
|
-
"""
|
|
41
|
-
state: NotRequired[pulumi.Input[str]]
|
|
42
|
-
"""
|
|
43
|
-
The state of the domain.
|
|
44
|
-
"""
|
|
45
|
-
elif False:
|
|
46
|
-
RegisteredDomainDomainRegistrationArgsDict: TypeAlias = Mapping[str, Any]
|
|
47
|
-
|
|
48
20
|
@pulumi.input_type
|
|
49
21
|
class RegisteredDomainDomainRegistrationArgs:
|
|
50
22
|
def __init__(__self__, *,
|
|
@@ -100,43 +72,6 @@ class RegisteredDomainDomainRegistrationArgs:
|
|
|
100
72
|
pulumi.set(self, "state", value)
|
|
101
73
|
|
|
102
74
|
|
|
103
|
-
if not MYPY:
|
|
104
|
-
class RegisteredDomainRegistrantChangeArgsDict(TypedDict):
|
|
105
|
-
account_id: NotRequired[pulumi.Input[int]]
|
|
106
|
-
"""
|
|
107
|
-
DNSimple Account ID to which the registrant change belongs to
|
|
108
|
-
"""
|
|
109
|
-
contact_id: NotRequired[pulumi.Input[int]]
|
|
110
|
-
"""
|
|
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/).
|
|
112
|
-
"""
|
|
113
|
-
domain_id: NotRequired[pulumi.Input[str]]
|
|
114
|
-
"""
|
|
115
|
-
DNSimple domain ID for which the registrant change is being performed
|
|
116
|
-
"""
|
|
117
|
-
extended_attributes: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
|
118
|
-
"""
|
|
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`.
|
|
120
|
-
"""
|
|
121
|
-
id: NotRequired[pulumi.Input[int]]
|
|
122
|
-
"""
|
|
123
|
-
The ID of this resource.
|
|
124
|
-
"""
|
|
125
|
-
irt_lock_lifted_by: NotRequired[pulumi.Input[str]]
|
|
126
|
-
"""
|
|
127
|
-
Date when the registrant change lock was lifted for the domain
|
|
128
|
-
"""
|
|
129
|
-
registry_owner_change: NotRequired[pulumi.Input[bool]]
|
|
130
|
-
"""
|
|
131
|
-
True if the registrant change will result in a registry owner change
|
|
132
|
-
"""
|
|
133
|
-
state: NotRequired[pulumi.Input[str]]
|
|
134
|
-
"""
|
|
135
|
-
The state of the domain.
|
|
136
|
-
"""
|
|
137
|
-
elif False:
|
|
138
|
-
RegisteredDomainRegistrantChangeArgsDict: TypeAlias = Mapping[str, Any]
|
|
139
|
-
|
|
140
75
|
@pulumi.input_type
|
|
141
76
|
class RegisteredDomainRegistrantChangeArgs:
|
|
142
77
|
def __init__(__self__, *,
|
|
@@ -272,23 +207,6 @@ class RegisteredDomainRegistrantChangeArgs:
|
|
|
272
207
|
pulumi.set(self, "state", value)
|
|
273
208
|
|
|
274
209
|
|
|
275
|
-
if not MYPY:
|
|
276
|
-
class RegisteredDomainTimeoutsArgsDict(TypedDict):
|
|
277
|
-
create: NotRequired[pulumi.Input[str]]
|
|
278
|
-
"""
|
|
279
|
-
Create timeout.
|
|
280
|
-
"""
|
|
281
|
-
delete: NotRequired[pulumi.Input[str]]
|
|
282
|
-
"""
|
|
283
|
-
Delete timeout (currently unused).
|
|
284
|
-
"""
|
|
285
|
-
update: NotRequired[pulumi.Input[str]]
|
|
286
|
-
"""
|
|
287
|
-
Update timeout.
|
|
288
|
-
"""
|
|
289
|
-
elif False:
|
|
290
|
-
RegisteredDomainTimeoutsArgsDict: TypeAlias = Mapping[str, Any]
|
|
291
|
-
|
|
292
210
|
@pulumi.input_type
|
|
293
211
|
class RegisteredDomainTimeoutsArgs:
|
|
294
212
|
def __init__(__self__, *,
|
|
@@ -344,15 +262,6 @@ class RegisteredDomainTimeoutsArgs:
|
|
|
344
262
|
pulumi.set(self, "update", value)
|
|
345
263
|
|
|
346
264
|
|
|
347
|
-
if not MYPY:
|
|
348
|
-
class GetCertificateTimeoutsArgsDict(TypedDict):
|
|
349
|
-
read: NotRequired[str]
|
|
350
|
-
"""
|
|
351
|
-
(String) - The timeout for the read operation e.g. `5m`
|
|
352
|
-
"""
|
|
353
|
-
elif False:
|
|
354
|
-
GetCertificateTimeoutsArgsDict: TypeAlias = Mapping[str, Any]
|
|
355
|
-
|
|
356
265
|
@pulumi.input_type
|
|
357
266
|
class GetCertificateTimeoutsArgs:
|
|
358
267
|
def __init__(__self__, *,
|
pulumi_dnsimple/_utilities.py
CHANGED
|
@@ -264,7 +264,7 @@ def call_plain(
|
|
|
264
264
|
output = pulumi.runtime.call(tok, props, res, typ)
|
|
265
265
|
|
|
266
266
|
# Ingoring deps silently. They are typically non-empty, r.f() calls include r as a dependency.
|
|
267
|
-
result, known, secret, _ = _sync_await(asyncio.
|
|
267
|
+
result, known, secret, _ = _sync_await(asyncio.ensure_future(_await_output(output)))
|
|
268
268
|
|
|
269
269
|
problem = None
|
|
270
270
|
if not known:
|
|
@@ -4,14 +4,9 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
-
import sys
|
|
8
7
|
import pulumi
|
|
9
8
|
import pulumi.runtime
|
|
10
9
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
-
if sys.version_info >= (3, 11):
|
|
12
|
-
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
-
else:
|
|
14
|
-
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
10
|
from .. import _utilities
|
|
16
11
|
|
|
17
12
|
account: Optional[str]
|
pulumi_dnsimple/config/vars.py
CHANGED
|
@@ -4,14 +4,9 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
-
import sys
|
|
8
7
|
import pulumi
|
|
9
8
|
import pulumi.runtime
|
|
10
9
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
-
if sys.version_info >= (3, 11):
|
|
12
|
-
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
-
else:
|
|
14
|
-
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
10
|
from .. import _utilities
|
|
16
11
|
|
|
17
12
|
import types
|
pulumi_dnsimple/contact.py
CHANGED
|
@@ -4,14 +4,9 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
-
import sys
|
|
8
7
|
import pulumi
|
|
9
8
|
import pulumi.runtime
|
|
10
9
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
-
if sys.version_info >= (3, 11):
|
|
12
|
-
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
-
else:
|
|
14
|
-
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
10
|
from . import _utilities
|
|
16
11
|
|
|
17
12
|
__all__ = ['ContactArgs', 'Contact']
|
pulumi_dnsimple/domain.py
CHANGED
|
@@ -4,14 +4,9 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
-
import sys
|
|
8
7
|
import pulumi
|
|
9
8
|
import pulumi.runtime
|
|
10
9
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
-
if sys.version_info >= (3, 11):
|
|
12
|
-
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
-
else:
|
|
14
|
-
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
10
|
from . import _utilities
|
|
16
11
|
|
|
17
12
|
__all__ = ['DomainArgs', 'Domain']
|
|
@@ -4,14 +4,9 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
-
import sys
|
|
8
7
|
import pulumi
|
|
9
8
|
import pulumi.runtime
|
|
10
9
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
-
if sys.version_info >= (3, 11):
|
|
12
|
-
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
-
else:
|
|
14
|
-
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
10
|
from . import _utilities
|
|
16
11
|
|
|
17
12
|
__all__ = ['DomainDelegationArgs', 'DomainDelegation']
|
pulumi_dnsimple/ds_record.py
CHANGED
|
@@ -4,14 +4,9 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
-
import sys
|
|
8
7
|
import pulumi
|
|
9
8
|
import pulumi.runtime
|
|
10
9
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
-
if sys.version_info >= (3, 11):
|
|
12
|
-
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
-
else:
|
|
14
|
-
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
10
|
from . import _utilities
|
|
16
11
|
|
|
17
12
|
__all__ = ['DsRecordArgs', 'DsRecord']
|
pulumi_dnsimple/email_forward.py
CHANGED
|
@@ -4,14 +4,9 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
-
import sys
|
|
8
7
|
import pulumi
|
|
9
8
|
import pulumi.runtime
|
|
10
9
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
-
if sys.version_info >= (3, 11):
|
|
12
|
-
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
-
else:
|
|
14
|
-
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
10
|
from . import _utilities
|
|
16
11
|
|
|
17
12
|
__all__ = ['EmailForwardArgs', 'EmailForward']
|
|
@@ -4,14 +4,9 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
-
import sys
|
|
8
7
|
import pulumi
|
|
9
8
|
import pulumi.runtime
|
|
10
9
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
-
if sys.version_info >= (3, 11):
|
|
12
|
-
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
-
else:
|
|
14
|
-
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
10
|
from . import _utilities
|
|
16
11
|
from . import outputs
|
|
17
12
|
from ._inputs import *
|
|
@@ -125,7 +120,7 @@ class AwaitableGetCertificateResult(GetCertificateResult):
|
|
|
125
120
|
|
|
126
121
|
def get_certificate(certificate_id: Optional[int] = None,
|
|
127
122
|
domain: Optional[str] = None,
|
|
128
|
-
timeouts: Optional[
|
|
123
|
+
timeouts: Optional[pulumi.InputType['GetCertificateTimeoutsArgs']] = None,
|
|
129
124
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetCertificateResult:
|
|
130
125
|
"""
|
|
131
126
|
Provides a DNSimple certificate data source.
|
|
@@ -160,9 +155,12 @@ def get_certificate(certificate_id: Optional[int] = None,
|
|
|
160
155
|
root_certificate=pulumi.get(__ret__, 'root_certificate'),
|
|
161
156
|
server_certificate=pulumi.get(__ret__, 'server_certificate'),
|
|
162
157
|
timeouts=pulumi.get(__ret__, 'timeouts'))
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
@_utilities.lift_output_func(get_certificate)
|
|
163
161
|
def get_certificate_output(certificate_id: Optional[pulumi.Input[int]] = None,
|
|
164
162
|
domain: Optional[pulumi.Input[str]] = None,
|
|
165
|
-
timeouts: Optional[pulumi.Input[Optional[
|
|
163
|
+
timeouts: Optional[pulumi.Input[Optional[pulumi.InputType['GetCertificateTimeoutsArgs']]]] = None,
|
|
166
164
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetCertificateResult]:
|
|
167
165
|
"""
|
|
168
166
|
Provides a DNSimple certificate data source.
|
|
@@ -181,18 +179,4 @@ def get_certificate_output(certificate_id: Optional[pulumi.Input[int]] = None,
|
|
|
181
179
|
:param int certificate_id: The ID of the SSL Certificate
|
|
182
180
|
:param str domain: The domain of the SSL Certificate
|
|
183
181
|
"""
|
|
184
|
-
|
|
185
|
-
__args__['certificateId'] = certificate_id
|
|
186
|
-
__args__['domain'] = domain
|
|
187
|
-
__args__['timeouts'] = timeouts
|
|
188
|
-
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
189
|
-
__ret__ = pulumi.runtime.invoke_output('dnsimple:index/getCertificate:getCertificate', __args__, opts=opts, typ=GetCertificateResult)
|
|
190
|
-
return __ret__.apply(lambda __response__: GetCertificateResult(
|
|
191
|
-
certificate_chains=pulumi.get(__response__, 'certificate_chains'),
|
|
192
|
-
certificate_id=pulumi.get(__response__, 'certificate_id'),
|
|
193
|
-
domain=pulumi.get(__response__, 'domain'),
|
|
194
|
-
id=pulumi.get(__response__, 'id'),
|
|
195
|
-
private_key=pulumi.get(__response__, 'private_key'),
|
|
196
|
-
root_certificate=pulumi.get(__response__, 'root_certificate'),
|
|
197
|
-
server_certificate=pulumi.get(__response__, 'server_certificate'),
|
|
198
|
-
timeouts=pulumi.get(__response__, 'timeouts')))
|
|
182
|
+
...
|
|
@@ -4,14 +4,9 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
-
import sys
|
|
8
7
|
import pulumi
|
|
9
8
|
import pulumi.runtime
|
|
10
9
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
-
if sys.version_info >= (3, 11):
|
|
12
|
-
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
-
else:
|
|
14
|
-
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
10
|
from . import _utilities
|
|
16
11
|
from . import outputs
|
|
17
12
|
|
|
@@ -127,6 +122,9 @@ def get_registrant_change_check(contact_id: Optional[str] = None,
|
|
|
127
122
|
extended_attributes=pulumi.get(__ret__, 'extended_attributes'),
|
|
128
123
|
id=pulumi.get(__ret__, 'id'),
|
|
129
124
|
registry_owner_change=pulumi.get(__ret__, 'registry_owner_change'))
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
@_utilities.lift_output_func(get_registrant_change_check)
|
|
130
128
|
def get_registrant_change_check_output(contact_id: Optional[pulumi.Input[str]] = None,
|
|
131
129
|
domain_id: Optional[pulumi.Input[str]] = None,
|
|
132
130
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetRegistrantChangeCheckResult]:
|
|
@@ -159,14 +157,4 @@ def get_registrant_change_check_output(contact_id: Optional[pulumi.Input[str]] =
|
|
|
159
157
|
|
|
160
158
|
<a id="nestedblock--extended_attributes"></a>
|
|
161
159
|
"""
|
|
162
|
-
|
|
163
|
-
__args__['contactId'] = contact_id
|
|
164
|
-
__args__['domainId'] = domain_id
|
|
165
|
-
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
166
|
-
__ret__ = pulumi.runtime.invoke_output('dnsimple:index/getRegistrantChangeCheck:getRegistrantChangeCheck', __args__, opts=opts, typ=GetRegistrantChangeCheckResult)
|
|
167
|
-
return __ret__.apply(lambda __response__: GetRegistrantChangeCheckResult(
|
|
168
|
-
contact_id=pulumi.get(__response__, 'contact_id'),
|
|
169
|
-
domain_id=pulumi.get(__response__, 'domain_id'),
|
|
170
|
-
extended_attributes=pulumi.get(__response__, 'extended_attributes'),
|
|
171
|
-
id=pulumi.get(__response__, 'id'),
|
|
172
|
-
registry_owner_change=pulumi.get(__response__, 'registry_owner_change')))
|
|
160
|
+
...
|
pulumi_dnsimple/get_zone.py
CHANGED
|
@@ -4,14 +4,9 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
-
import sys
|
|
8
7
|
import pulumi
|
|
9
8
|
import pulumi.runtime
|
|
10
9
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
-
if sys.version_info >= (3, 11):
|
|
12
|
-
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
-
else:
|
|
14
|
-
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
10
|
from . import _utilities
|
|
16
11
|
|
|
17
12
|
__all__ = [
|
|
@@ -109,6 +104,9 @@ def get_zone(name: Optional[str] = None,
|
|
|
109
104
|
id=pulumi.get(__ret__, 'id'),
|
|
110
105
|
name=pulumi.get(__ret__, 'name'),
|
|
111
106
|
reverse=pulumi.get(__ret__, 'reverse'))
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
@_utilities.lift_output_func(get_zone)
|
|
112
110
|
def get_zone_output(name: Optional[pulumi.Input[str]] = None,
|
|
113
111
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetZoneResult]:
|
|
114
112
|
"""
|
|
@@ -135,12 +133,4 @@ def get_zone_output(name: Optional[pulumi.Input[str]] = None,
|
|
|
135
133
|
* `account_id` - The account ID
|
|
136
134
|
* `reverse` - True for a reverse zone, false for a forward zone.
|
|
137
135
|
"""
|
|
138
|
-
|
|
139
|
-
__args__['name'] = name
|
|
140
|
-
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
141
|
-
__ret__ = pulumi.runtime.invoke_output('dnsimple:index/getZone:getZone', __args__, opts=opts, typ=GetZoneResult)
|
|
142
|
-
return __ret__.apply(lambda __response__: GetZoneResult(
|
|
143
|
-
account_id=pulumi.get(__response__, 'account_id'),
|
|
144
|
-
id=pulumi.get(__response__, 'id'),
|
|
145
|
-
name=pulumi.get(__response__, 'name'),
|
|
146
|
-
reverse=pulumi.get(__response__, 'reverse')))
|
|
136
|
+
...
|
|
@@ -4,14 +4,9 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
-
import sys
|
|
8
7
|
import pulumi
|
|
9
8
|
import pulumi.runtime
|
|
10
9
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
-
if sys.version_info >= (3, 11):
|
|
12
|
-
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
-
else:
|
|
14
|
-
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
10
|
from . import _utilities
|
|
16
11
|
|
|
17
12
|
__all__ = ['LetsEncryptCertificateArgs', 'LetsEncryptCertificate']
|
pulumi_dnsimple/outputs.py
CHANGED
|
@@ -4,14 +4,9 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
-
import sys
|
|
8
7
|
import pulumi
|
|
9
8
|
import pulumi.runtime
|
|
10
9
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
-
if sys.version_info >= (3, 11):
|
|
12
|
-
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
-
else:
|
|
14
|
-
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
10
|
from . import _utilities
|
|
16
11
|
from . import outputs
|
|
17
12
|
from ._enums import *
|
pulumi_dnsimple/provider.py
CHANGED
|
@@ -4,14 +4,9 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
-
import sys
|
|
8
7
|
import pulumi
|
|
9
8
|
import pulumi.runtime
|
|
10
9
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
-
if sys.version_info >= (3, 11):
|
|
12
|
-
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
-
else:
|
|
14
|
-
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
10
|
from . import _utilities
|
|
16
11
|
|
|
17
12
|
__all__ = ['ProviderArgs', 'Provider']
|
|
@@ -4,14 +4,9 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
-
import sys
|
|
8
7
|
import pulumi
|
|
9
8
|
import pulumi.runtime
|
|
10
9
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
-
if sys.version_info >= (3, 11):
|
|
12
|
-
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
-
else:
|
|
14
|
-
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
10
|
from . import _utilities
|
|
16
11
|
from . import outputs
|
|
17
12
|
from ._inputs import *
|
|
@@ -431,7 +426,7 @@ class RegisteredDomain(pulumi.CustomResource):
|
|
|
431
426
|
extended_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
432
427
|
name: Optional[pulumi.Input[str]] = None,
|
|
433
428
|
premium_price: Optional[pulumi.Input[str]] = None,
|
|
434
|
-
timeouts: Optional[pulumi.Input[
|
|
429
|
+
timeouts: Optional[pulumi.Input[pulumi.InputType['RegisteredDomainTimeoutsArgs']]] = None,
|
|
435
430
|
transfer_lock_enabled: Optional[pulumi.Input[bool]] = None,
|
|
436
431
|
whois_privacy_enabled: Optional[pulumi.Input[bool]] = None,
|
|
437
432
|
__props__=None):
|
|
@@ -499,7 +494,7 @@ class RegisteredDomain(pulumi.CustomResource):
|
|
|
499
494
|
:param pulumi.Input[Mapping[str, pulumi.Input[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`.
|
|
500
495
|
:param pulumi.Input[str] name: The domain name to be registered
|
|
501
496
|
:param pulumi.Input[str] premium_price: The premium price for the domain registration. This is only required if the domain is a premium domain. You can use our [Check domain API](https://developer.dnsimple.com/v2/registrar/#checkDomain) to check if a domain is premium. And [Retrieve domain prices API](https://developer.dnsimple.com/v2/registrar/#getDomainPrices) to retrieve the premium price for a domain.
|
|
502
|
-
:param pulumi.Input[
|
|
497
|
+
:param pulumi.Input[pulumi.InputType['RegisteredDomainTimeoutsArgs']] timeouts: (see below for nested schema)
|
|
503
498
|
|
|
504
499
|
# Attributes Reference
|
|
505
500
|
:param pulumi.Input[bool] transfer_lock_enabled: Whether the domain transfer lock protection is enabled (default: `true`)
|
|
@@ -588,7 +583,7 @@ class RegisteredDomain(pulumi.CustomResource):
|
|
|
588
583
|
extended_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
589
584
|
name: Optional[pulumi.Input[str]] = None,
|
|
590
585
|
premium_price: Optional[pulumi.Input[str]] = None,
|
|
591
|
-
timeouts: Optional[pulumi.Input[
|
|
586
|
+
timeouts: Optional[pulumi.Input[pulumi.InputType['RegisteredDomainTimeoutsArgs']]] = None,
|
|
592
587
|
transfer_lock_enabled: Optional[pulumi.Input[bool]] = None,
|
|
593
588
|
whois_privacy_enabled: Optional[pulumi.Input[bool]] = None,
|
|
594
589
|
__props__=None):
|
|
@@ -633,14 +628,14 @@ class RegisteredDomain(pulumi.CustomResource):
|
|
|
633
628
|
auto_renew_enabled: Optional[pulumi.Input[bool]] = None,
|
|
634
629
|
contact_id: Optional[pulumi.Input[int]] = None,
|
|
635
630
|
dnssec_enabled: Optional[pulumi.Input[bool]] = None,
|
|
636
|
-
domain_registration: Optional[pulumi.Input[
|
|
631
|
+
domain_registration: Optional[pulumi.Input[pulumi.InputType['RegisteredDomainDomainRegistrationArgs']]] = None,
|
|
637
632
|
expires_at: Optional[pulumi.Input[str]] = None,
|
|
638
633
|
extended_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
639
634
|
name: Optional[pulumi.Input[str]] = None,
|
|
640
635
|
premium_price: Optional[pulumi.Input[str]] = None,
|
|
641
|
-
registrant_change: Optional[pulumi.Input[
|
|
636
|
+
registrant_change: Optional[pulumi.Input[pulumi.InputType['RegisteredDomainRegistrantChangeArgs']]] = None,
|
|
642
637
|
state: Optional[pulumi.Input[str]] = None,
|
|
643
|
-
timeouts: Optional[pulumi.Input[
|
|
638
|
+
timeouts: Optional[pulumi.Input[pulumi.InputType['RegisteredDomainTimeoutsArgs']]] = None,
|
|
644
639
|
transfer_lock_enabled: Optional[pulumi.Input[bool]] = None,
|
|
645
640
|
unicode_name: Optional[pulumi.Input[str]] = None,
|
|
646
641
|
whois_privacy_enabled: Optional[pulumi.Input[bool]] = None) -> 'RegisteredDomain':
|
|
@@ -654,15 +649,15 @@ class RegisteredDomain(pulumi.CustomResource):
|
|
|
654
649
|
:param pulumi.Input[bool] auto_renew_enabled: Whether the domain should be set to auto-renew (default: `false`)
|
|
655
650
|
:param pulumi.Input[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/).
|
|
656
651
|
:param pulumi.Input[bool] dnssec_enabled: Whether the domain should have DNSSEC enabled (default: `false`)
|
|
657
|
-
:param pulumi.Input[
|
|
652
|
+
:param pulumi.Input[pulumi.InputType['RegisteredDomainDomainRegistrationArgs']] domain_registration: The domain registration details. (see below for nested schema)
|
|
658
653
|
|
|
659
654
|
<a id="nestedblock--timeouts"></a>
|
|
660
655
|
:param pulumi.Input[Mapping[str, pulumi.Input[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`.
|
|
661
656
|
:param pulumi.Input[str] name: The domain name to be registered
|
|
662
657
|
:param pulumi.Input[str] premium_price: The premium price for the domain registration. This is only required if the domain is a premium domain. You can use our [Check domain API](https://developer.dnsimple.com/v2/registrar/#checkDomain) to check if a domain is premium. And [Retrieve domain prices API](https://developer.dnsimple.com/v2/registrar/#getDomainPrices) to retrieve the premium price for a domain.
|
|
663
|
-
:param pulumi.Input[
|
|
658
|
+
:param pulumi.Input[pulumi.InputType['RegisteredDomainRegistrantChangeArgs']] registrant_change: The registrant change details.
|
|
664
659
|
:param pulumi.Input[str] state: The state of the domain.
|
|
665
|
-
:param pulumi.Input[
|
|
660
|
+
:param pulumi.Input[pulumi.InputType['RegisteredDomainTimeoutsArgs']] timeouts: (see below for nested schema)
|
|
666
661
|
|
|
667
662
|
# Attributes Reference
|
|
668
663
|
:param pulumi.Input[bool] transfer_lock_enabled: Whether the domain transfer lock protection is enabled (default: `true`)
|
pulumi_dnsimple/zone.py
CHANGED
|
@@ -4,14 +4,9 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
-
import sys
|
|
8
7
|
import pulumi
|
|
9
8
|
import pulumi.runtime
|
|
10
9
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
-
if sys.version_info >= (3, 11):
|
|
12
|
-
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
-
else:
|
|
14
|
-
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
10
|
from . import _utilities
|
|
16
11
|
|
|
17
12
|
__all__ = ['ZoneArgs', 'Zone']
|
pulumi_dnsimple/zone_record.py
CHANGED
|
@@ -4,14 +4,9 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
-
import sys
|
|
8
7
|
import pulumi
|
|
9
8
|
import pulumi.runtime
|
|
10
9
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
-
if sys.version_info >= (3, 11):
|
|
12
|
-
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
-
else:
|
|
14
|
-
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
10
|
from . import _utilities
|
|
16
11
|
|
|
17
12
|
__all__ = ['ZoneRecordArgs', 'ZoneRecord']
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pulumi_dnsimple
|
|
3
|
-
Version: 4.2.
|
|
3
|
+
Version: 4.2.0a1723008522
|
|
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,8 @@ Keywords: pulumi,dnsimple
|
|
|
9
9
|
Requires-Python: >=3.8
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
11
11
|
Requires-Dist: parver >=0.2.1
|
|
12
|
-
Requires-Dist: pulumi <4.0.0,>=3.
|
|
12
|
+
Requires-Dist: pulumi <4.0.0,>=3.0.0
|
|
13
13
|
Requires-Dist: semver >=2.8.1
|
|
14
|
-
Requires-Dist: typing-extensions >=4.11 ; python_version < "3.11"
|
|
15
14
|
|
|
16
15
|
[](https://github.com/pulumi/pulumi-dnsimple/actions)
|
|
17
16
|
[](https://slack.pulumi.com)
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
pulumi_dnsimple/__init__.py,sha256=5THvG1YjSUU5KBftlF5jgDOA07JkYKBJyg_ws03qkjY,2593
|
|
2
|
+
pulumi_dnsimple/_enums.py,sha256=PTXnVS2NWGUKOwTKZPIBt0nCr19POrh2TLEzPCV3n44,583
|
|
3
|
+
pulumi_dnsimple/_inputs.py,sha256=lwBgdeMJhQPCoGRiotR2gxaELyILhidRV7HjmHqh2Qk,10970
|
|
4
|
+
pulumi_dnsimple/_utilities.py,sha256=aNnnaO6zRha3FhNHonuabR4fJLWGXANtK5dlh1Mz95k,10506
|
|
5
|
+
pulumi_dnsimple/contact.py,sha256=BsTloFux-nhNZEErHV_wQBJGqf1RU5rtXCReIunWbgQ,39140
|
|
6
|
+
pulumi_dnsimple/domain.py,sha256=AkDUDcdjIaHG76plD1CerIl1bRvg_FEy6ehPpo3HbOg,15340
|
|
7
|
+
pulumi_dnsimple/domain_delegation.py,sha256=IYlmJVw1vrDIPVgrwUl80FHwA7sMxIOy8zujAocjESc,9267
|
|
8
|
+
pulumi_dnsimple/ds_record.py,sha256=GUlXMcpt0Vpk1zNg9dnJMVVdYl262KDS6pU-eSW0Vhc,21472
|
|
9
|
+
pulumi_dnsimple/email_forward.py,sha256=vbaGBTWG5mMRmY24xmtvfk1SU1fV72IaFksgqpwWxl0,12465
|
|
10
|
+
pulumi_dnsimple/get_certificate.py,sha256=zx_MEmSbPrHOKUr6ynqsnEErlJfeY4OH0Anf5Z_qEvQ,6734
|
|
11
|
+
pulumi_dnsimple/get_registrant_change_check.py,sha256=JCDCam38Xov7WZK7v1eOwK8ZjVx42mISyavJNEib2rg,6649
|
|
12
|
+
pulumi_dnsimple/get_zone.py,sha256=w_GrFPZTnZryT2ESymZ65SUoah-Kp1L0zK8dd2NHE7s,3988
|
|
13
|
+
pulumi_dnsimple/lets_encrypt_certificate.py,sha256=7IaDfvCCEYXxzSveSRAWX9IP2DEPpq9tF0jwBVF558g,22538
|
|
14
|
+
pulumi_dnsimple/outputs.py,sha256=rAWU7tCj7gOsJG5_qvPGIRy0jnVbepQRjGbO-EVSpHY,11254
|
|
15
|
+
pulumi_dnsimple/provider.py,sha256=kb_4CDb_7XC_hkqhItGU3oOMOr5EWEFsjxkyv6d-L-0,8675
|
|
16
|
+
pulumi_dnsimple/pulumi-plugin.json,sha256=EzaGpPmPc4icSLY96_YCrn8Tf44lxkQ_-4eeK9BZ70E,84
|
|
17
|
+
pulumi_dnsimple/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
|
+
pulumi_dnsimple/registered_domain.py,sha256=oQFRIR6fPjUsu4NCeyCDsdlRO7FH09Y4UG0MqJgcl7w,40719
|
|
19
|
+
pulumi_dnsimple/zone.py,sha256=R2HuJ8smgo579rZsmb6hVOeQDIm3hahLMG1t6e5Z2mI,14760
|
|
20
|
+
pulumi_dnsimple/zone_record.py,sha256=RsB3al4lLZJOeI-Yy1hCPBSRAmyS3P4T2DOF_uBXjbA,23539
|
|
21
|
+
pulumi_dnsimple/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
22
|
+
pulumi_dnsimple/config/__init__.pyi,sha256=uNrZE7LcipE2gSGdj97mbe4EbQju8L71BPxe3iQJ2Yo,739
|
|
23
|
+
pulumi_dnsimple/config/vars.py,sha256=7b8z6pJGysAfTHUhIYK9peb0Sw4zNXY-VxuCaG24H1M,1329
|
|
24
|
+
pulumi_dnsimple-4.2.0a1723008522.dist-info/METADATA,sha256=DOe07l2TJqxT2arWHscrhO8H4t9KsR2hUD09CJTCmUI,2865
|
|
25
|
+
pulumi_dnsimple-4.2.0a1723008522.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
|
|
26
|
+
pulumi_dnsimple-4.2.0a1723008522.dist-info/top_level.txt,sha256=o_ZMMGgN8JmfKoCEmCl5-nHLCAzri-_7FCQohXzJWd4,16
|
|
27
|
+
pulumi_dnsimple-4.2.0a1723008522.dist-info/RECORD,,
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
pulumi_dnsimple/__init__.py,sha256=5THvG1YjSUU5KBftlF5jgDOA07JkYKBJyg_ws03qkjY,2593
|
|
2
|
-
pulumi_dnsimple/_enums.py,sha256=PTXnVS2NWGUKOwTKZPIBt0nCr19POrh2TLEzPCV3n44,583
|
|
3
|
-
pulumi_dnsimple/_inputs.py,sha256=IkTFXkHl1T3jk1Xus2BJOl5Xq4h1B-mCJhOQNjE6iiM,14405
|
|
4
|
-
pulumi_dnsimple/_utilities.py,sha256=-gxwnD6__OYdSf8jJgJijNuu-UHUwi5pJ1H7-eIHDhg,10504
|
|
5
|
-
pulumi_dnsimple/contact.py,sha256=ZVxxM0j2j5H96T73rcOLqmV85Nomwtk40mUeUjheLW0,39314
|
|
6
|
-
pulumi_dnsimple/domain.py,sha256=87UarNHl9ZEjfRaq1UMULIwMy2LCYpas_ihyOIAUkaU,15514
|
|
7
|
-
pulumi_dnsimple/domain_delegation.py,sha256=GN_cVbejfuf8Jaho2hbD0gSdmbb-LtyS9SqMe4jzZ-w,9441
|
|
8
|
-
pulumi_dnsimple/ds_record.py,sha256=eVPxPfNssD5x32RsiMVQlsCedzOvyQOUTiRGTVgaX5g,21646
|
|
9
|
-
pulumi_dnsimple/email_forward.py,sha256=fgV8ac9MesDWnGEkkx-y5jFIEsOOLkzoiBxLlXkCuV4,12639
|
|
10
|
-
pulumi_dnsimple/get_certificate.py,sha256=zuQhWbDoEG2fDOO5POyM2UiwyQlfIQyNvqJ5OVfEzJQ,7823
|
|
11
|
-
pulumi_dnsimple/get_registrant_change_check.py,sha256=pMGxRiu_0Fk0kOMIDxKYRD3i2GDIZNTzh8Ns1_Pi_Ak,7500
|
|
12
|
-
pulumi_dnsimple/get_zone.py,sha256=5Ko-suyz6W_Rx7d-GSfbF2c34s31n0bAssYCZtn2hjM,4627
|
|
13
|
-
pulumi_dnsimple/lets_encrypt_certificate.py,sha256=t6lG6ymX55W8_mHauVjN8h4JBnyFgYplrdFeMIZT-ds,22712
|
|
14
|
-
pulumi_dnsimple/outputs.py,sha256=WQJr8WAZA0kabAv5SZqfQ22_yDlNgTgsY_JqODdhFQU,11428
|
|
15
|
-
pulumi_dnsimple/provider.py,sha256=IUbSMzYMY3qE-jPE_MImFHpjL88GzpDxJoV-Tq7WqdI,8849
|
|
16
|
-
pulumi_dnsimple/pulumi-plugin.json,sha256=ejSvjfSLzT26insqHBYMYR4_ywROxysqfBBeIomh-mI,67
|
|
17
|
-
pulumi_dnsimple/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
|
-
pulumi_dnsimple/registered_domain.py,sha256=wSMO_UjkGWfemJT1ijqoLEmQ8BTxlw3W37G1ETXJoYg,41154
|
|
19
|
-
pulumi_dnsimple/zone.py,sha256=FaVk3D3KFvL2tJloZFwhMBr92-TdE4q8yh4dtwWVHIQ,14934
|
|
20
|
-
pulumi_dnsimple/zone_record.py,sha256=Nfd6YFrEdXk4Olh6QTLAINmIvjI1rN7sRbY7NgQII7Y,23713
|
|
21
|
-
pulumi_dnsimple/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
22
|
-
pulumi_dnsimple/config/__init__.pyi,sha256=nr72rj7tw-uEjoYAS_U6YILSKKP5B3ZOPxiBxgEiTXc,913
|
|
23
|
-
pulumi_dnsimple/config/vars.py,sha256=Ahw2dN9d0xDfr9mNSP416QYH8jmqFrC7Io2VCmWy-Sw,1503
|
|
24
|
-
pulumi_dnsimple-4.2.0.dist-info/METADATA,sha256=xcI-3UATte2FZQWxqLHt_VqGmUcTtCZ9sDv2sUo3s1s,2922
|
|
25
|
-
pulumi_dnsimple-4.2.0.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
|
|
26
|
-
pulumi_dnsimple-4.2.0.dist-info/top_level.txt,sha256=o_ZMMGgN8JmfKoCEmCl5-nHLCAzri-_7FCQohXzJWd4,16
|
|
27
|
-
pulumi_dnsimple-4.2.0.dist-info/RECORD,,
|
{pulumi_dnsimple-4.2.0.dist-info → pulumi_dnsimple-4.2.0a1723008522.dist-info}/top_level.txt
RENAMED
|
File without changes
|