pulumi-dnsimple 4.3.0a1743572236__py3-none-any.whl → 4.3.0a1744255816__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.

@@ -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
@@ -28,13 +29,13 @@ __all__ = [
28
29
  @pulumi.output_type
29
30
  class RegisteredDomainDomainRegistration(dict):
30
31
  def __init__(__self__, *,
31
- id: Optional[int] = None,
32
- period: Optional[int] = None,
33
- state: Optional[str] = None):
32
+ id: Optional[builtins.int] = None,
33
+ period: Optional[builtins.int] = None,
34
+ state: Optional[builtins.str] = None):
34
35
  """
35
- :param int id: The ID of this resource.
36
- :param int period: The registration period in years.
37
- :param str state: The state of the domain.
36
+ :param builtins.int id: The ID of this resource.
37
+ :param builtins.int period: The registration period in years.
38
+ :param builtins.str state: The state of the domain.
38
39
  """
39
40
  if id is not None:
40
41
  pulumi.set(__self__, "id", id)
@@ -45,7 +46,7 @@ class RegisteredDomainDomainRegistration(dict):
45
46
 
46
47
  @property
47
48
  @pulumi.getter
48
- def id(self) -> Optional[int]:
49
+ def id(self) -> Optional[builtins.int]:
49
50
  """
50
51
  The ID of this resource.
51
52
  """
@@ -53,7 +54,7 @@ class RegisteredDomainDomainRegistration(dict):
53
54
 
54
55
  @property
55
56
  @pulumi.getter
56
- def period(self) -> Optional[int]:
57
+ def period(self) -> Optional[builtins.int]:
57
58
  """
58
59
  The registration period in years.
59
60
  """
@@ -61,7 +62,7 @@ class RegisteredDomainDomainRegistration(dict):
61
62
 
62
63
  @property
63
64
  @pulumi.getter
64
- def state(self) -> Optional[str]:
65
+ def state(self) -> Optional[builtins.str]:
65
66
  """
66
67
  The state of the domain.
67
68
  """
@@ -98,23 +99,23 @@ class RegisteredDomainRegistrantChange(dict):
98
99
  return super().get(key, default)
99
100
 
100
101
  def __init__(__self__, *,
101
- account_id: Optional[int] = None,
102
- contact_id: Optional[int] = None,
103
- domain_id: Optional[str] = None,
104
- extended_attributes: Optional[Mapping[str, str]] = None,
105
- id: Optional[int] = None,
106
- irt_lock_lifted_by: Optional[str] = None,
107
- registry_owner_change: Optional[bool] = None,
108
- state: Optional[str] = None):
109
- """
110
- :param int account_id: DNSimple Account ID to which the registrant change belongs to
111
- :param 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/).
112
- :param str domain_id: DNSimple domain ID for which the registrant change is being performed
113
- :param Mapping[str, 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`.
114
- :param int id: The ID of this resource.
115
- :param str irt_lock_lifted_by: Date when the registrant change lock was lifted for the domain
116
- :param bool registry_owner_change: True if the registrant change will result in a registry owner change
117
- :param str state: The state of the domain.
102
+ account_id: Optional[builtins.int] = None,
103
+ contact_id: Optional[builtins.int] = None,
104
+ domain_id: Optional[builtins.str] = None,
105
+ extended_attributes: Optional[Mapping[str, builtins.str]] = None,
106
+ id: Optional[builtins.int] = None,
107
+ irt_lock_lifted_by: Optional[builtins.str] = None,
108
+ registry_owner_change: Optional[builtins.bool] = None,
109
+ state: Optional[builtins.str] = None):
110
+ """
111
+ :param builtins.int account_id: DNSimple Account ID to which the registrant change belongs to
112
+ :param 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/).
113
+ :param builtins.str domain_id: DNSimple domain ID for which the registrant change is being performed
114
+ :param Mapping[str, 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`.
115
+ :param builtins.int id: The ID of this resource.
116
+ :param builtins.str irt_lock_lifted_by: Date when the registrant change lock was lifted for the domain
117
+ :param builtins.bool registry_owner_change: True if the registrant change will result in a registry owner change
118
+ :param builtins.str state: The state of the domain.
118
119
  """
119
120
  if account_id is not None:
120
121
  pulumi.set(__self__, "account_id", account_id)
@@ -135,7 +136,7 @@ class RegisteredDomainRegistrantChange(dict):
135
136
 
136
137
  @property
137
138
  @pulumi.getter(name="accountId")
138
- def account_id(self) -> Optional[int]:
139
+ def account_id(self) -> Optional[builtins.int]:
139
140
  """
140
141
  DNSimple Account ID to which the registrant change belongs to
141
142
  """
@@ -143,7 +144,7 @@ class RegisteredDomainRegistrantChange(dict):
143
144
 
144
145
  @property
145
146
  @pulumi.getter(name="contactId")
146
- def contact_id(self) -> Optional[int]:
147
+ def contact_id(self) -> Optional[builtins.int]:
147
148
  """
148
149
  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/).
149
150
  """
@@ -151,7 +152,7 @@ class RegisteredDomainRegistrantChange(dict):
151
152
 
152
153
  @property
153
154
  @pulumi.getter(name="domainId")
154
- def domain_id(self) -> Optional[str]:
155
+ def domain_id(self) -> Optional[builtins.str]:
155
156
  """
156
157
  DNSimple domain ID for which the registrant change is being performed
157
158
  """
@@ -159,7 +160,7 @@ class RegisteredDomainRegistrantChange(dict):
159
160
 
160
161
  @property
161
162
  @pulumi.getter(name="extendedAttributes")
162
- def extended_attributes(self) -> Optional[Mapping[str, str]]:
163
+ def extended_attributes(self) -> Optional[Mapping[str, builtins.str]]:
163
164
  """
164
165
  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`.
165
166
  """
@@ -167,7 +168,7 @@ class RegisteredDomainRegistrantChange(dict):
167
168
 
168
169
  @property
169
170
  @pulumi.getter
170
- def id(self) -> Optional[int]:
171
+ def id(self) -> Optional[builtins.int]:
171
172
  """
172
173
  The ID of this resource.
173
174
  """
@@ -175,7 +176,7 @@ class RegisteredDomainRegistrantChange(dict):
175
176
 
176
177
  @property
177
178
  @pulumi.getter(name="irtLockLiftedBy")
178
- def irt_lock_lifted_by(self) -> Optional[str]:
179
+ def irt_lock_lifted_by(self) -> Optional[builtins.str]:
179
180
  """
180
181
  Date when the registrant change lock was lifted for the domain
181
182
  """
@@ -183,7 +184,7 @@ class RegisteredDomainRegistrantChange(dict):
183
184
 
184
185
  @property
185
186
  @pulumi.getter(name="registryOwnerChange")
186
- def registry_owner_change(self) -> Optional[bool]:
187
+ def registry_owner_change(self) -> Optional[builtins.bool]:
187
188
  """
188
189
  True if the registrant change will result in a registry owner change
189
190
  """
@@ -191,7 +192,7 @@ class RegisteredDomainRegistrantChange(dict):
191
192
 
192
193
  @property
193
194
  @pulumi.getter
194
- def state(self) -> Optional[str]:
195
+ def state(self) -> Optional[builtins.str]:
195
196
  """
196
197
  The state of the domain.
197
198
  """
@@ -201,13 +202,13 @@ class RegisteredDomainRegistrantChange(dict):
201
202
  @pulumi.output_type
202
203
  class RegisteredDomainTimeouts(dict):
203
204
  def __init__(__self__, *,
204
- create: Optional[str] = None,
205
- delete: Optional[str] = None,
206
- update: Optional[str] = None):
205
+ create: Optional[builtins.str] = None,
206
+ delete: Optional[builtins.str] = None,
207
+ update: Optional[builtins.str] = None):
207
208
  """
208
- :param str create: Create timeout.
209
- :param str delete: Delete timeout (currently unused).
210
- :param str update: Update timeout.
209
+ :param builtins.str create: Create timeout.
210
+ :param builtins.str delete: Delete timeout (currently unused).
211
+ :param builtins.str update: Update timeout.
211
212
  """
212
213
  if create is not None:
213
214
  pulumi.set(__self__, "create", create)
@@ -218,7 +219,7 @@ class RegisteredDomainTimeouts(dict):
218
219
 
219
220
  @property
220
221
  @pulumi.getter
221
- def create(self) -> Optional[str]:
222
+ def create(self) -> Optional[builtins.str]:
222
223
  """
223
224
  Create timeout.
224
225
  """
@@ -226,7 +227,7 @@ class RegisteredDomainTimeouts(dict):
226
227
 
227
228
  @property
228
229
  @pulumi.getter
229
- def delete(self) -> Optional[str]:
230
+ def delete(self) -> Optional[builtins.str]:
230
231
  """
231
232
  Delete timeout (currently unused).
232
233
  """
@@ -234,7 +235,7 @@ class RegisteredDomainTimeouts(dict):
234
235
 
235
236
  @property
236
237
  @pulumi.getter
237
- def update(self) -> Optional[str]:
238
+ def update(self) -> Optional[builtins.str]:
238
239
  """
239
240
  Update timeout.
240
241
  """
@@ -244,16 +245,16 @@ class RegisteredDomainTimeouts(dict):
244
245
  @pulumi.output_type
245
246
  class GetCertificateTimeoutsResult(dict):
246
247
  def __init__(__self__, *,
247
- read: Optional[str] = None):
248
+ read: Optional[builtins.str] = None):
248
249
  """
249
- :param str read: (String) - The timeout for the read operation e.g. `5m`
250
+ :param builtins.str read: (String) - The timeout for the read operation e.g. `5m`
250
251
  """
251
252
  if read is not None:
252
253
  pulumi.set(__self__, "read", read)
253
254
 
254
255
  @property
255
256
  @pulumi.getter
256
- def read(self) -> Optional[str]:
257
+ def read(self) -> Optional[builtins.str]:
257
258
  """
258
259
  (String) - The timeout for the read operation e.g. `5m`
259
260
  """
@@ -263,10 +264,10 @@ class GetCertificateTimeoutsResult(dict):
263
264
  @pulumi.output_type
264
265
  class GetRegistrantChangeCheckExtendedAttributeResult(dict):
265
266
  def __init__(__self__, *,
266
- description: str,
267
- name: str,
267
+ description: builtins.str,
268
+ name: builtins.str,
268
269
  options: Sequence['outputs.GetRegistrantChangeCheckExtendedAttributeOptionResult'],
269
- required: bool):
270
+ required: builtins.bool):
270
271
  pulumi.set(__self__, "description", description)
271
272
  pulumi.set(__self__, "name", name)
272
273
  pulumi.set(__self__, "options", options)
@@ -274,12 +275,12 @@ class GetRegistrantChangeCheckExtendedAttributeResult(dict):
274
275
 
275
276
  @property
276
277
  @pulumi.getter
277
- def description(self) -> str:
278
+ def description(self) -> builtins.str:
278
279
  return pulumi.get(self, "description")
279
280
 
280
281
  @property
281
282
  @pulumi.getter
282
- def name(self) -> str:
283
+ def name(self) -> builtins.str:
283
284
  return pulumi.get(self, "name")
284
285
 
285
286
  @property
@@ -289,33 +290,33 @@ class GetRegistrantChangeCheckExtendedAttributeResult(dict):
289
290
 
290
291
  @property
291
292
  @pulumi.getter
292
- def required(self) -> bool:
293
+ def required(self) -> builtins.bool:
293
294
  return pulumi.get(self, "required")
294
295
 
295
296
 
296
297
  @pulumi.output_type
297
298
  class GetRegistrantChangeCheckExtendedAttributeOptionResult(dict):
298
299
  def __init__(__self__, *,
299
- description: str,
300
- title: str,
301
- value: str):
300
+ description: builtins.str,
301
+ title: builtins.str,
302
+ value: builtins.str):
302
303
  pulumi.set(__self__, "description", description)
303
304
  pulumi.set(__self__, "title", title)
304
305
  pulumi.set(__self__, "value", value)
305
306
 
306
307
  @property
307
308
  @pulumi.getter
308
- def description(self) -> str:
309
+ def description(self) -> builtins.str:
309
310
  return pulumi.get(self, "description")
310
311
 
311
312
  @property
312
313
  @pulumi.getter
313
- def title(self) -> str:
314
+ def title(self) -> builtins.str:
314
315
  return pulumi.get(self, "title")
315
316
 
316
317
  @property
317
318
  @pulumi.getter
318
- def value(self) -> str:
319
+ def value(self) -> builtins.str:
319
320
  return pulumi.get(self, "value")
320
321
 
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
@@ -19,18 +20,18 @@ __all__ = ['ProviderArgs', 'Provider']
19
20
  @pulumi.input_type
20
21
  class ProviderArgs:
21
22
  def __init__(__self__, *,
22
- account: Optional[pulumi.Input[str]] = None,
23
- prefetch: Optional[pulumi.Input[bool]] = None,
24
- sandbox: Optional[pulumi.Input[bool]] = None,
25
- token: Optional[pulumi.Input[str]] = None,
26
- user_agent: Optional[pulumi.Input[str]] = None):
23
+ account: Optional[pulumi.Input[builtins.str]] = None,
24
+ prefetch: Optional[pulumi.Input[builtins.bool]] = None,
25
+ sandbox: Optional[pulumi.Input[builtins.bool]] = None,
26
+ token: Optional[pulumi.Input[builtins.str]] = None,
27
+ user_agent: Optional[pulumi.Input[builtins.str]] = None):
27
28
  """
28
29
  The set of arguments for constructing a Provider resource.
29
- :param pulumi.Input[str] account: The account for API operations.
30
- :param pulumi.Input[bool] prefetch: Flag to enable the prefetch of zone records.
31
- :param pulumi.Input[bool] sandbox: Flag to enable the sandbox API.
32
- :param pulumi.Input[str] token: The API v2 token for API operations.
33
- :param pulumi.Input[str] user_agent: Custom string to append to the user agent used for sending HTTP requests to the API.
30
+ :param pulumi.Input[builtins.str] account: The account for API operations.
31
+ :param pulumi.Input[builtins.bool] prefetch: Flag to enable the prefetch of zone records.
32
+ :param pulumi.Input[builtins.bool] sandbox: Flag to enable the sandbox API.
33
+ :param pulumi.Input[builtins.str] token: The API v2 token for API operations.
34
+ :param pulumi.Input[builtins.str] user_agent: Custom string to append to the user agent used for sending HTTP requests to the API.
34
35
  """
35
36
  if account is not None:
36
37
  pulumi.set(__self__, "account", account)
@@ -45,62 +46,62 @@ class ProviderArgs:
45
46
 
46
47
  @property
47
48
  @pulumi.getter
48
- def account(self) -> Optional[pulumi.Input[str]]:
49
+ def account(self) -> Optional[pulumi.Input[builtins.str]]:
49
50
  """
50
51
  The account for API operations.
51
52
  """
52
53
  return pulumi.get(self, "account")
53
54
 
54
55
  @account.setter
55
- def account(self, value: Optional[pulumi.Input[str]]):
56
+ def account(self, value: Optional[pulumi.Input[builtins.str]]):
56
57
  pulumi.set(self, "account", value)
57
58
 
58
59
  @property
59
60
  @pulumi.getter
60
- def prefetch(self) -> Optional[pulumi.Input[bool]]:
61
+ def prefetch(self) -> Optional[pulumi.Input[builtins.bool]]:
61
62
  """
62
63
  Flag to enable the prefetch of zone records.
63
64
  """
64
65
  return pulumi.get(self, "prefetch")
65
66
 
66
67
  @prefetch.setter
67
- def prefetch(self, value: Optional[pulumi.Input[bool]]):
68
+ def prefetch(self, value: Optional[pulumi.Input[builtins.bool]]):
68
69
  pulumi.set(self, "prefetch", value)
69
70
 
70
71
  @property
71
72
  @pulumi.getter
72
- def sandbox(self) -> Optional[pulumi.Input[bool]]:
73
+ def sandbox(self) -> Optional[pulumi.Input[builtins.bool]]:
73
74
  """
74
75
  Flag to enable the sandbox API.
75
76
  """
76
77
  return pulumi.get(self, "sandbox")
77
78
 
78
79
  @sandbox.setter
79
- def sandbox(self, value: Optional[pulumi.Input[bool]]):
80
+ def sandbox(self, value: Optional[pulumi.Input[builtins.bool]]):
80
81
  pulumi.set(self, "sandbox", value)
81
82
 
82
83
  @property
83
84
  @pulumi.getter
84
- def token(self) -> Optional[pulumi.Input[str]]:
85
+ def token(self) -> Optional[pulumi.Input[builtins.str]]:
85
86
  """
86
87
  The API v2 token for API operations.
87
88
  """
88
89
  return pulumi.get(self, "token")
89
90
 
90
91
  @token.setter
91
- def token(self, value: Optional[pulumi.Input[str]]):
92
+ def token(self, value: Optional[pulumi.Input[builtins.str]]):
92
93
  pulumi.set(self, "token", value)
93
94
 
94
95
  @property
95
96
  @pulumi.getter(name="userAgent")
96
- def user_agent(self) -> Optional[pulumi.Input[str]]:
97
+ def user_agent(self) -> Optional[pulumi.Input[builtins.str]]:
97
98
  """
98
99
  Custom string to append to the user agent used for sending HTTP requests to the API.
99
100
  """
100
101
  return pulumi.get(self, "user_agent")
101
102
 
102
103
  @user_agent.setter
103
- def user_agent(self, value: Optional[pulumi.Input[str]]):
104
+ def user_agent(self, value: Optional[pulumi.Input[builtins.str]]):
104
105
  pulumi.set(self, "user_agent", value)
105
106
 
106
107
 
@@ -109,11 +110,11 @@ class Provider(pulumi.ProviderResource):
109
110
  def __init__(__self__,
110
111
  resource_name: str,
111
112
  opts: Optional[pulumi.ResourceOptions] = None,
112
- account: Optional[pulumi.Input[str]] = None,
113
- prefetch: Optional[pulumi.Input[bool]] = None,
114
- sandbox: Optional[pulumi.Input[bool]] = None,
115
- token: Optional[pulumi.Input[str]] = None,
116
- user_agent: Optional[pulumi.Input[str]] = None,
113
+ account: Optional[pulumi.Input[builtins.str]] = None,
114
+ prefetch: Optional[pulumi.Input[builtins.bool]] = None,
115
+ sandbox: Optional[pulumi.Input[builtins.bool]] = None,
116
+ token: Optional[pulumi.Input[builtins.str]] = None,
117
+ user_agent: Optional[pulumi.Input[builtins.str]] = None,
117
118
  __props__=None):
118
119
  """
119
120
  The provider type for the dnsimple package. By default, resources use package-wide configuration
@@ -123,11 +124,11 @@ class Provider(pulumi.ProviderResource):
123
124
 
124
125
  :param str resource_name: The name of the resource.
125
126
  :param pulumi.ResourceOptions opts: Options for the resource.
126
- :param pulumi.Input[str] account: The account for API operations.
127
- :param pulumi.Input[bool] prefetch: Flag to enable the prefetch of zone records.
128
- :param pulumi.Input[bool] sandbox: Flag to enable the sandbox API.
129
- :param pulumi.Input[str] token: The API v2 token for API operations.
130
- :param pulumi.Input[str] user_agent: Custom string to append to the user agent used for sending HTTP requests to the API.
127
+ :param pulumi.Input[builtins.str] account: The account for API operations.
128
+ :param pulumi.Input[builtins.bool] prefetch: Flag to enable the prefetch of zone records.
129
+ :param pulumi.Input[builtins.bool] sandbox: Flag to enable the sandbox API.
130
+ :param pulumi.Input[builtins.str] token: The API v2 token for API operations.
131
+ :param pulumi.Input[builtins.str] user_agent: Custom string to append to the user agent used for sending HTTP requests to the API.
131
132
  """
132
133
  ...
133
134
  @overload
@@ -156,11 +157,11 @@ class Provider(pulumi.ProviderResource):
156
157
  def _internal_init(__self__,
157
158
  resource_name: str,
158
159
  opts: Optional[pulumi.ResourceOptions] = None,
159
- account: Optional[pulumi.Input[str]] = None,
160
- prefetch: Optional[pulumi.Input[bool]] = None,
161
- sandbox: Optional[pulumi.Input[bool]] = None,
162
- token: Optional[pulumi.Input[str]] = None,
163
- user_agent: Optional[pulumi.Input[str]] = None,
160
+ account: Optional[pulumi.Input[builtins.str]] = None,
161
+ prefetch: Optional[pulumi.Input[builtins.bool]] = None,
162
+ sandbox: Optional[pulumi.Input[builtins.bool]] = None,
163
+ token: Optional[pulumi.Input[builtins.str]] = None,
164
+ user_agent: Optional[pulumi.Input[builtins.str]] = None,
164
165
  __props__=None):
165
166
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
166
167
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -185,7 +186,7 @@ class Provider(pulumi.ProviderResource):
185
186
 
186
187
  @property
187
188
  @pulumi.getter
188
- def account(self) -> pulumi.Output[Optional[str]]:
189
+ def account(self) -> pulumi.Output[Optional[builtins.str]]:
189
190
  """
190
191
  The account for API operations.
191
192
  """
@@ -193,7 +194,7 @@ class Provider(pulumi.ProviderResource):
193
194
 
194
195
  @property
195
196
  @pulumi.getter
196
- def token(self) -> pulumi.Output[Optional[str]]:
197
+ def token(self) -> pulumi.Output[Optional[builtins.str]]:
197
198
  """
198
199
  The API v2 token for API operations.
199
200
  """
@@ -201,7 +202,7 @@ class Provider(pulumi.ProviderResource):
201
202
 
202
203
  @property
203
204
  @pulumi.getter(name="userAgent")
204
- def user_agent(self) -> pulumi.Output[Optional[str]]:
205
+ def user_agent(self) -> pulumi.Output[Optional[builtins.str]]:
205
206
  """
206
207
  Custom string to append to the user agent used for sending HTTP requests to the API.
207
208
  """
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "dnsimple",
4
- "version": "4.3.0-alpha.1743572236"
4
+ "version": "4.3.0-alpha.1744255816"
5
5
  }