pulumiverse-scaleway 1.34.0a1756885226__py3-none-any.whl → 1.34.0a1757664666__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.
Files changed (52) hide show
  1. pulumiverse_scaleway/__init__.py +8 -0
  2. pulumiverse_scaleway/_inputs.py +235 -34
  3. pulumiverse_scaleway/cockpit.py +14 -0
  4. pulumiverse_scaleway/container_namespace.py +16 -7
  5. pulumiverse_scaleway/containers/namespace.py +16 -7
  6. pulumiverse_scaleway/database_user.py +83 -11
  7. pulumiverse_scaleway/databases/user.py +83 -11
  8. pulumiverse_scaleway/elasticmetal/outputs.py +4 -0
  9. pulumiverse_scaleway/function_namespace.py +16 -7
  10. pulumiverse_scaleway/functions/namespace.py +16 -7
  11. pulumiverse_scaleway/get_mongo_db_instance.py +34 -1
  12. pulumiverse_scaleway/hosting/_inputs.py +42 -0
  13. pulumiverse_scaleway/hosting/outputs.py +84 -0
  14. pulumiverse_scaleway/instance/_inputs.py +107 -13
  15. pulumiverse_scaleway/instance/outputs.py +187 -10
  16. pulumiverse_scaleway/instance/security_group_rules.py +16 -16
  17. pulumiverse_scaleway/instance/snapshot.py +26 -27
  18. pulumiverse_scaleway/instance_security_group_rules.py +16 -16
  19. pulumiverse_scaleway/instance_snapshot.py +26 -27
  20. pulumiverse_scaleway/loadbalancer_backend.py +39 -0
  21. pulumiverse_scaleway/loadbalancers/backend.py +39 -0
  22. pulumiverse_scaleway/loadbalancers/outputs.py +16 -0
  23. pulumiverse_scaleway/mnq/_inputs.py +52 -0
  24. pulumiverse_scaleway/mnq/outputs.py +47 -0
  25. pulumiverse_scaleway/mnq/sqs_queue.py +159 -0
  26. pulumiverse_scaleway/mnq_sqs_queue.py +159 -0
  27. pulumiverse_scaleway/mongo_db_instance.py +171 -23
  28. pulumiverse_scaleway/mongo_db_snapshot.py +2 -2
  29. pulumiverse_scaleway/mongodb/__init__.py +1 -0
  30. pulumiverse_scaleway/mongodb/_inputs.py +73 -0
  31. pulumiverse_scaleway/mongodb/get_instance.py +34 -1
  32. pulumiverse_scaleway/mongodb/instance.py +171 -23
  33. pulumiverse_scaleway/mongodb/outputs.py +62 -0
  34. pulumiverse_scaleway/mongodb/snapshot.py +2 -2
  35. pulumiverse_scaleway/mongodb/user.py +508 -0
  36. pulumiverse_scaleway/network/outputs.py +4 -0
  37. pulumiverse_scaleway/object/_inputs.py +14 -0
  38. pulumiverse_scaleway/object/bucket.py +13 -0
  39. pulumiverse_scaleway/object/outputs.py +30 -0
  40. pulumiverse_scaleway/object_bucket.py +13 -0
  41. pulumiverse_scaleway/observability/__init__.py +1 -0
  42. pulumiverse_scaleway/observability/cockpit.py +14 -0
  43. pulumiverse_scaleway/observability/get_sources.py +376 -0
  44. pulumiverse_scaleway/observability/outputs.py +140 -0
  45. pulumiverse_scaleway/outputs.py +387 -26
  46. pulumiverse_scaleway/pulumi-plugin.json +1 -1
  47. pulumiverse_scaleway/secret.py +8 -0
  48. pulumiverse_scaleway/secrets/secret.py +8 -0
  49. {pulumiverse_scaleway-1.34.0a1756885226.dist-info → pulumiverse_scaleway-1.34.0a1757664666.dist-info}/METADATA +1 -1
  50. {pulumiverse_scaleway-1.34.0a1756885226.dist-info → pulumiverse_scaleway-1.34.0a1757664666.dist-info}/RECORD +52 -50
  51. {pulumiverse_scaleway-1.34.0a1756885226.dist-info → pulumiverse_scaleway-1.34.0a1757664666.dist-info}/WHEEL +0 -0
  52. {pulumiverse_scaleway-1.34.0a1756885226.dist-info → pulumiverse_scaleway-1.34.0a1757664666.dist-info}/top_level.txt +0 -0
@@ -30,7 +30,7 @@ class GetMongoDbInstanceResult:
30
30
  """
31
31
  A collection of values returned by getMongoDbInstance.
32
32
  """
33
- def __init__(__self__, created_at=None, id=None, instance_id=None, name=None, node_number=None, node_type=None, password=None, private_ips=None, private_networks=None, project_id=None, public_networks=None, region=None, settings=None, snapshot_id=None, tags=None, tls_certificate=None, updated_at=None, user_name=None, version=None, volume_size_in_gb=None, volume_type=None):
33
+ def __init__(__self__, created_at=None, id=None, instance_id=None, is_snapshot_schedule_enabled=None, name=None, node_number=None, node_type=None, password=None, private_ips=None, private_networks=None, project_id=None, public_networks=None, region=None, settings=None, snapshot_id=None, snapshot_schedule_frequency_hours=None, snapshot_schedule_retention_days=None, tags=None, tls_certificate=None, updated_at=None, user_name=None, version=None, volume_size_in_gb=None, volume_type=None):
34
34
  if created_at and not isinstance(created_at, str):
35
35
  raise TypeError("Expected argument 'created_at' to be a str")
36
36
  pulumi.set(__self__, "created_at", created_at)
@@ -40,6 +40,9 @@ class GetMongoDbInstanceResult:
40
40
  if instance_id and not isinstance(instance_id, str):
41
41
  raise TypeError("Expected argument 'instance_id' to be a str")
42
42
  pulumi.set(__self__, "instance_id", instance_id)
43
+ if is_snapshot_schedule_enabled and not isinstance(is_snapshot_schedule_enabled, bool):
44
+ raise TypeError("Expected argument 'is_snapshot_schedule_enabled' to be a bool")
45
+ pulumi.set(__self__, "is_snapshot_schedule_enabled", is_snapshot_schedule_enabled)
43
46
  if name and not isinstance(name, str):
44
47
  raise TypeError("Expected argument 'name' to be a str")
45
48
  pulumi.set(__self__, "name", name)
@@ -73,6 +76,12 @@ class GetMongoDbInstanceResult:
73
76
  if snapshot_id and not isinstance(snapshot_id, str):
74
77
  raise TypeError("Expected argument 'snapshot_id' to be a str")
75
78
  pulumi.set(__self__, "snapshot_id", snapshot_id)
79
+ if snapshot_schedule_frequency_hours and not isinstance(snapshot_schedule_frequency_hours, int):
80
+ raise TypeError("Expected argument 'snapshot_schedule_frequency_hours' to be a int")
81
+ pulumi.set(__self__, "snapshot_schedule_frequency_hours", snapshot_schedule_frequency_hours)
82
+ if snapshot_schedule_retention_days and not isinstance(snapshot_schedule_retention_days, int):
83
+ raise TypeError("Expected argument 'snapshot_schedule_retention_days' to be a int")
84
+ pulumi.set(__self__, "snapshot_schedule_retention_days", snapshot_schedule_retention_days)
76
85
  if tags and not isinstance(tags, list):
77
86
  raise TypeError("Expected argument 'tags' to be a list")
78
87
  pulumi.set(__self__, "tags", tags)
@@ -116,6 +125,11 @@ class GetMongoDbInstanceResult:
116
125
  def instance_id(self) -> Optional[builtins.str]:
117
126
  return pulumi.get(self, "instance_id")
118
127
 
128
+ @property
129
+ @pulumi.getter(name="isSnapshotScheduleEnabled")
130
+ def is_snapshot_schedule_enabled(self) -> builtins.bool:
131
+ return pulumi.get(self, "is_snapshot_schedule_enabled")
132
+
119
133
  @property
120
134
  @pulumi.getter
121
135
  def name(self) -> Optional[builtins.str]:
@@ -186,6 +200,16 @@ class GetMongoDbInstanceResult:
186
200
  def snapshot_id(self) -> builtins.str:
187
201
  return pulumi.get(self, "snapshot_id")
188
202
 
203
+ @property
204
+ @pulumi.getter(name="snapshotScheduleFrequencyHours")
205
+ def snapshot_schedule_frequency_hours(self) -> builtins.int:
206
+ return pulumi.get(self, "snapshot_schedule_frequency_hours")
207
+
208
+ @property
209
+ @pulumi.getter(name="snapshotScheduleRetentionDays")
210
+ def snapshot_schedule_retention_days(self) -> builtins.int:
211
+ return pulumi.get(self, "snapshot_schedule_retention_days")
212
+
189
213
  @property
190
214
  @pulumi.getter
191
215
  def tags(self) -> Sequence[builtins.str]:
@@ -243,6 +267,7 @@ class AwaitableGetMongoDbInstanceResult(GetMongoDbInstanceResult):
243
267
  created_at=self.created_at,
244
268
  id=self.id,
245
269
  instance_id=self.instance_id,
270
+ is_snapshot_schedule_enabled=self.is_snapshot_schedule_enabled,
246
271
  name=self.name,
247
272
  node_number=self.node_number,
248
273
  node_type=self.node_type,
@@ -254,6 +279,8 @@ class AwaitableGetMongoDbInstanceResult(GetMongoDbInstanceResult):
254
279
  region=self.region,
255
280
  settings=self.settings,
256
281
  snapshot_id=self.snapshot_id,
282
+ snapshot_schedule_frequency_hours=self.snapshot_schedule_frequency_hours,
283
+ snapshot_schedule_retention_days=self.snapshot_schedule_retention_days,
257
284
  tags=self.tags,
258
285
  tls_certificate=self.tls_certificate,
259
286
  updated_at=self.updated_at,
@@ -294,6 +321,7 @@ def get_mongo_db_instance(instance_id: Optional[builtins.str] = None,
294
321
  created_at=pulumi.get(__ret__, 'created_at'),
295
322
  id=pulumi.get(__ret__, 'id'),
296
323
  instance_id=pulumi.get(__ret__, 'instance_id'),
324
+ is_snapshot_schedule_enabled=pulumi.get(__ret__, 'is_snapshot_schedule_enabled'),
297
325
  name=pulumi.get(__ret__, 'name'),
298
326
  node_number=pulumi.get(__ret__, 'node_number'),
299
327
  node_type=pulumi.get(__ret__, 'node_type'),
@@ -305,6 +333,8 @@ def get_mongo_db_instance(instance_id: Optional[builtins.str] = None,
305
333
  region=pulumi.get(__ret__, 'region'),
306
334
  settings=pulumi.get(__ret__, 'settings'),
307
335
  snapshot_id=pulumi.get(__ret__, 'snapshot_id'),
336
+ snapshot_schedule_frequency_hours=pulumi.get(__ret__, 'snapshot_schedule_frequency_hours'),
337
+ snapshot_schedule_retention_days=pulumi.get(__ret__, 'snapshot_schedule_retention_days'),
308
338
  tags=pulumi.get(__ret__, 'tags'),
309
339
  tls_certificate=pulumi.get(__ret__, 'tls_certificate'),
310
340
  updated_at=pulumi.get(__ret__, 'updated_at'),
@@ -342,6 +372,7 @@ def get_mongo_db_instance_output(instance_id: Optional[pulumi.Input[Optional[bui
342
372
  created_at=pulumi.get(__response__, 'created_at'),
343
373
  id=pulumi.get(__response__, 'id'),
344
374
  instance_id=pulumi.get(__response__, 'instance_id'),
375
+ is_snapshot_schedule_enabled=pulumi.get(__response__, 'is_snapshot_schedule_enabled'),
345
376
  name=pulumi.get(__response__, 'name'),
346
377
  node_number=pulumi.get(__response__, 'node_number'),
347
378
  node_type=pulumi.get(__response__, 'node_type'),
@@ -353,6 +384,8 @@ def get_mongo_db_instance_output(instance_id: Optional[pulumi.Input[Optional[bui
353
384
  region=pulumi.get(__response__, 'region'),
354
385
  settings=pulumi.get(__response__, 'settings'),
355
386
  snapshot_id=pulumi.get(__response__, 'snapshot_id'),
387
+ snapshot_schedule_frequency_hours=pulumi.get(__response__, 'snapshot_schedule_frequency_hours'),
388
+ snapshot_schedule_retention_days=pulumi.get(__response__, 'snapshot_schedule_retention_days'),
356
389
  tags=pulumi.get(__response__, 'tags'),
357
390
  tls_certificate=pulumi.get(__response__, 'tls_certificate'),
358
391
  updated_at=pulumi.get(__response__, 'updated_at'),
@@ -83,7 +83,13 @@ class HostingCpanelUrlArgs:
83
83
  if not MYPY:
84
84
  class HostingNameServerArgsDict(TypedDict):
85
85
  hostname: NotRequired[pulumi.Input[builtins.str]]
86
+ """
87
+ Hostname of the server
88
+ """
86
89
  is_default: NotRequired[pulumi.Input[builtins.bool]]
90
+ """
91
+ Whether or not the webhosting is the default one
92
+ """
87
93
  status: NotRequired[pulumi.Input[builtins.str]]
88
94
  """
89
95
  The hosting status.
@@ -98,6 +104,8 @@ class HostingNameServerArgs:
98
104
  is_default: Optional[pulumi.Input[builtins.bool]] = None,
99
105
  status: Optional[pulumi.Input[builtins.str]] = None):
100
106
  """
107
+ :param pulumi.Input[builtins.str] hostname: Hostname of the server
108
+ :param pulumi.Input[builtins.bool] is_default: Whether or not the webhosting is the default one
101
109
  :param pulumi.Input[builtins.str] status: The hosting status.
102
110
  """
103
111
  if hostname is not None:
@@ -110,6 +118,9 @@ class HostingNameServerArgs:
110
118
  @property
111
119
  @pulumi.getter
112
120
  def hostname(self) -> Optional[pulumi.Input[builtins.str]]:
121
+ """
122
+ Hostname of the server
123
+ """
113
124
  return pulumi.get(self, "hostname")
114
125
 
115
126
  @hostname.setter
@@ -119,6 +130,9 @@ class HostingNameServerArgs:
119
130
  @property
120
131
  @pulumi.getter(name="isDefault")
121
132
  def is_default(self) -> Optional[pulumi.Input[builtins.bool]]:
133
+ """
134
+ Whether or not the webhosting is the default one
135
+ """
122
136
  return pulumi.get(self, "is_default")
123
137
 
124
138
  @is_default.setter
@@ -197,13 +211,25 @@ if not MYPY:
197
211
  The option name.
198
212
  """
199
213
  priority: NotRequired[pulumi.Input[builtins.int]]
214
+ """
215
+ Priority of DNS records associated with the webhosting.
216
+ """
200
217
  status: NotRequired[pulumi.Input[builtins.str]]
201
218
  """
202
219
  The hosting status.
203
220
  """
204
221
  ttl: NotRequired[pulumi.Input[builtins.int]]
222
+ """
223
+ Time to live in seconds of the record
224
+ """
205
225
  type: NotRequired[pulumi.Input[builtins.str]]
226
+ """
227
+ Type of the DNS record
228
+ """
206
229
  value: NotRequired[pulumi.Input[builtins.str]]
230
+ """
231
+ Value of the DNS record
232
+ """
207
233
  elif False:
208
234
  HostingRecordArgsDict: TypeAlias = Mapping[str, Any]
209
235
 
@@ -218,7 +244,11 @@ class HostingRecordArgs:
218
244
  value: Optional[pulumi.Input[builtins.str]] = None):
219
245
  """
220
246
  :param pulumi.Input[builtins.str] name: The option name.
247
+ :param pulumi.Input[builtins.int] priority: Priority of DNS records associated with the webhosting.
221
248
  :param pulumi.Input[builtins.str] status: The hosting status.
249
+ :param pulumi.Input[builtins.int] ttl: Time to live in seconds of the record
250
+ :param pulumi.Input[builtins.str] type: Type of the DNS record
251
+ :param pulumi.Input[builtins.str] value: Value of the DNS record
222
252
  """
223
253
  if name is not None:
224
254
  pulumi.set(__self__, "name", name)
@@ -248,6 +278,9 @@ class HostingRecordArgs:
248
278
  @property
249
279
  @pulumi.getter
250
280
  def priority(self) -> Optional[pulumi.Input[builtins.int]]:
281
+ """
282
+ Priority of DNS records associated with the webhosting.
283
+ """
251
284
  return pulumi.get(self, "priority")
252
285
 
253
286
  @priority.setter
@@ -269,6 +302,9 @@ class HostingRecordArgs:
269
302
  @property
270
303
  @pulumi.getter
271
304
  def ttl(self) -> Optional[pulumi.Input[builtins.int]]:
305
+ """
306
+ Time to live in seconds of the record
307
+ """
272
308
  return pulumi.get(self, "ttl")
273
309
 
274
310
  @ttl.setter
@@ -278,6 +314,9 @@ class HostingRecordArgs:
278
314
  @property
279
315
  @pulumi.getter
280
316
  def type(self) -> Optional[pulumi.Input[builtins.str]]:
317
+ """
318
+ Type of the DNS record
319
+ """
281
320
  return pulumi.get(self, "type")
282
321
 
283
322
  @type.setter
@@ -287,6 +326,9 @@ class HostingRecordArgs:
287
326
  @property
288
327
  @pulumi.getter
289
328
  def value(self) -> Optional[pulumi.Input[builtins.str]]:
329
+ """
330
+ Value of the DNS record
331
+ """
290
332
  return pulumi.get(self, "value")
291
333
 
292
334
  @value.setter
@@ -85,6 +85,8 @@ class HostingNameServer(dict):
85
85
  is_default: Optional[builtins.bool] = None,
86
86
  status: Optional[builtins.str] = None):
87
87
  """
88
+ :param builtins.str hostname: Hostname of the server
89
+ :param builtins.bool is_default: Whether or not the webhosting is the default one
88
90
  :param builtins.str status: The hosting status.
89
91
  """
90
92
  if hostname is not None:
@@ -97,11 +99,17 @@ class HostingNameServer(dict):
97
99
  @property
98
100
  @pulumi.getter
99
101
  def hostname(self) -> Optional[builtins.str]:
102
+ """
103
+ Hostname of the server
104
+ """
100
105
  return pulumi.get(self, "hostname")
101
106
 
102
107
  @property
103
108
  @pulumi.getter(name="isDefault")
104
109
  def is_default(self) -> Optional[builtins.bool]:
110
+ """
111
+ Whether or not the webhosting is the default one
112
+ """
105
113
  return pulumi.get(self, "is_default")
106
114
 
107
115
  @property
@@ -155,7 +163,11 @@ class HostingRecord(dict):
155
163
  value: Optional[builtins.str] = None):
156
164
  """
157
165
  :param builtins.str name: The option name.
166
+ :param builtins.int priority: Priority of DNS records associated with the webhosting.
158
167
  :param builtins.str status: The hosting status.
168
+ :param builtins.int ttl: Time to live in seconds of the record
169
+ :param builtins.str type: Type of the DNS record
170
+ :param builtins.str value: Value of the DNS record
159
171
  """
160
172
  if name is not None:
161
173
  pulumi.set(__self__, "name", name)
@@ -181,6 +193,9 @@ class HostingRecord(dict):
181
193
  @property
182
194
  @pulumi.getter
183
195
  def priority(self) -> Optional[builtins.int]:
196
+ """
197
+ Priority of DNS records associated with the webhosting.
198
+ """
184
199
  return pulumi.get(self, "priority")
185
200
 
186
201
  @property
@@ -194,16 +209,25 @@ class HostingRecord(dict):
194
209
  @property
195
210
  @pulumi.getter
196
211
  def ttl(self) -> Optional[builtins.int]:
212
+ """
213
+ Time to live in seconds of the record
214
+ """
197
215
  return pulumi.get(self, "ttl")
198
216
 
199
217
  @property
200
218
  @pulumi.getter
201
219
  def type(self) -> Optional[builtins.str]:
220
+ """
221
+ Type of the DNS record
222
+ """
202
223
  return pulumi.get(self, "type")
203
224
 
204
225
  @property
205
226
  @pulumi.getter
206
227
  def value(self) -> Optional[builtins.str]:
228
+ """
229
+ Value of the DNS record
230
+ """
207
231
  return pulumi.get(self, "value")
208
232
 
209
233
 
@@ -212,17 +236,27 @@ class GetHostingCpanelUrlResult(dict):
212
236
  def __init__(__self__, *,
213
237
  dashboard: builtins.str,
214
238
  webmail: builtins.str):
239
+ """
240
+ :param builtins.str dashboard: URL to connect to dashboard interface
241
+ :param builtins.str webmail: URL to connect to Webmail interface
242
+ """
215
243
  pulumi.set(__self__, "dashboard", dashboard)
216
244
  pulumi.set(__self__, "webmail", webmail)
217
245
 
218
246
  @property
219
247
  @pulumi.getter
220
248
  def dashboard(self) -> builtins.str:
249
+ """
250
+ URL to connect to dashboard interface
251
+ """
221
252
  return pulumi.get(self, "dashboard")
222
253
 
223
254
  @property
224
255
  @pulumi.getter
225
256
  def webmail(self) -> builtins.str:
257
+ """
258
+ URL to connect to Webmail interface
259
+ """
226
260
  return pulumi.get(self, "webmail")
227
261
 
228
262
 
@@ -232,6 +266,11 @@ class GetHostingNameServerResult(dict):
232
266
  hostname: builtins.str,
233
267
  is_default: builtins.bool,
234
268
  status: builtins.str):
269
+ """
270
+ :param builtins.str hostname: Hostname of the server
271
+ :param builtins.bool is_default: Whether or not the webhosting is the default one
272
+ :param builtins.str status: Status of the nameserver
273
+ """
235
274
  pulumi.set(__self__, "hostname", hostname)
236
275
  pulumi.set(__self__, "is_default", is_default)
237
276
  pulumi.set(__self__, "status", status)
@@ -239,16 +278,25 @@ class GetHostingNameServerResult(dict):
239
278
  @property
240
279
  @pulumi.getter
241
280
  def hostname(self) -> builtins.str:
281
+ """
282
+ Hostname of the server
283
+ """
242
284
  return pulumi.get(self, "hostname")
243
285
 
244
286
  @property
245
287
  @pulumi.getter(name="isDefault")
246
288
  def is_default(self) -> builtins.bool:
289
+ """
290
+ Whether or not the webhosting is the default one
291
+ """
247
292
  return pulumi.get(self, "is_default")
248
293
 
249
294
  @property
250
295
  @pulumi.getter
251
296
  def status(self) -> builtins.str:
297
+ """
298
+ Status of the nameserver
299
+ """
252
300
  return pulumi.get(self, "status")
253
301
 
254
302
 
@@ -257,17 +305,27 @@ class GetHostingOptionResult(dict):
257
305
  def __init__(__self__, *,
258
306
  id: builtins.str,
259
307
  name: builtins.str):
308
+ """
309
+ :param builtins.str id: ID of the active option
310
+ :param builtins.str name: Name of the option
311
+ """
260
312
  pulumi.set(__self__, "id", id)
261
313
  pulumi.set(__self__, "name", name)
262
314
 
263
315
  @property
264
316
  @pulumi.getter
265
317
  def id(self) -> builtins.str:
318
+ """
319
+ ID of the active option
320
+ """
266
321
  return pulumi.get(self, "id")
267
322
 
268
323
  @property
269
324
  @pulumi.getter
270
325
  def name(self) -> builtins.str:
326
+ """
327
+ Name of the option
328
+ """
271
329
  return pulumi.get(self, "name")
272
330
 
273
331
 
@@ -280,6 +338,14 @@ class GetHostingRecordResult(dict):
280
338
  ttl: builtins.int,
281
339
  type: builtins.str,
282
340
  value: builtins.str):
341
+ """
342
+ :param builtins.str name: Name of the DNS record
343
+ :param builtins.int priority: Priority of DNS records associated with the webhosting.
344
+ :param builtins.str status: Status of the hosting record
345
+ :param builtins.int ttl: Time to live in seconds of the record
346
+ :param builtins.str type: Type of the DNS record
347
+ :param builtins.str value: Value of the DNS record
348
+ """
283
349
  pulumi.set(__self__, "name", name)
284
350
  pulumi.set(__self__, "priority", priority)
285
351
  pulumi.set(__self__, "status", status)
@@ -290,31 +356,49 @@ class GetHostingRecordResult(dict):
290
356
  @property
291
357
  @pulumi.getter
292
358
  def name(self) -> builtins.str:
359
+ """
360
+ Name of the DNS record
361
+ """
293
362
  return pulumi.get(self, "name")
294
363
 
295
364
  @property
296
365
  @pulumi.getter
297
366
  def priority(self) -> builtins.int:
367
+ """
368
+ Priority of DNS records associated with the webhosting.
369
+ """
298
370
  return pulumi.get(self, "priority")
299
371
 
300
372
  @property
301
373
  @pulumi.getter
302
374
  def status(self) -> builtins.str:
375
+ """
376
+ Status of the hosting record
377
+ """
303
378
  return pulumi.get(self, "status")
304
379
 
305
380
  @property
306
381
  @pulumi.getter
307
382
  def ttl(self) -> builtins.int:
383
+ """
384
+ Time to live in seconds of the record
385
+ """
308
386
  return pulumi.get(self, "ttl")
309
387
 
310
388
  @property
311
389
  @pulumi.getter
312
390
  def type(self) -> builtins.str:
391
+ """
392
+ Type of the DNS record
393
+ """
313
394
  return pulumi.get(self, "type")
314
395
 
315
396
  @property
316
397
  @pulumi.getter
317
398
  def value(self) -> builtins.str:
399
+ """
400
+ Value of the DNS record
401
+ """
318
402
  return pulumi.get(self, "value")
319
403
 
320
404
 
@@ -1073,11 +1073,31 @@ if not MYPY:
1073
1073
  class ServerPublicIpArgsDict(TypedDict):
1074
1074
  address: NotRequired[pulumi.Input[builtins.str]]
1075
1075
  """
1076
- The address of the IP
1076
+ The address of the IP.
1077
+ """
1078
+ dynamic: NotRequired[pulumi.Input[builtins.bool]]
1079
+ """
1080
+ Whether the IP is dynamic.
1081
+ """
1082
+ family: NotRequired[pulumi.Input[builtins.str]]
1083
+ """
1084
+ The IP address' family.
1085
+ """
1086
+ gateway: NotRequired[pulumi.Input[builtins.str]]
1087
+ """
1088
+ The IP of the Gateway associated with the IP.
1077
1089
  """
1078
1090
  id: NotRequired[pulumi.Input[builtins.str]]
1079
1091
  """
1080
- The ID of the IP
1092
+ The ID of the IP.
1093
+ """
1094
+ netmask: NotRequired[pulumi.Input[builtins.str]]
1095
+ """
1096
+ The CIDR netmask of the IP.
1097
+ """
1098
+ provisioning_mode: NotRequired[pulumi.Input[builtins.str]]
1099
+ """
1100
+ The provisioning mode of the IP
1081
1101
  """
1082
1102
  elif False:
1083
1103
  ServerPublicIpArgsDict: TypeAlias = Mapping[str, Any]
@@ -1086,21 +1106,41 @@ elif False:
1086
1106
  class ServerPublicIpArgs:
1087
1107
  def __init__(__self__, *,
1088
1108
  address: Optional[pulumi.Input[builtins.str]] = None,
1089
- id: Optional[pulumi.Input[builtins.str]] = None):
1109
+ dynamic: Optional[pulumi.Input[builtins.bool]] = None,
1110
+ family: Optional[pulumi.Input[builtins.str]] = None,
1111
+ gateway: Optional[pulumi.Input[builtins.str]] = None,
1112
+ id: Optional[pulumi.Input[builtins.str]] = None,
1113
+ netmask: Optional[pulumi.Input[builtins.str]] = None,
1114
+ provisioning_mode: Optional[pulumi.Input[builtins.str]] = None):
1090
1115
  """
1091
- :param pulumi.Input[builtins.str] address: The address of the IP
1092
- :param pulumi.Input[builtins.str] id: The ID of the IP
1116
+ :param pulumi.Input[builtins.str] address: The address of the IP.
1117
+ :param pulumi.Input[builtins.bool] dynamic: Whether the IP is dynamic.
1118
+ :param pulumi.Input[builtins.str] family: The IP address' family.
1119
+ :param pulumi.Input[builtins.str] gateway: The IP of the Gateway associated with the IP.
1120
+ :param pulumi.Input[builtins.str] id: The ID of the IP.
1121
+ :param pulumi.Input[builtins.str] netmask: The CIDR netmask of the IP.
1122
+ :param pulumi.Input[builtins.str] provisioning_mode: The provisioning mode of the IP
1093
1123
  """
1094
1124
  if address is not None:
1095
1125
  pulumi.set(__self__, "address", address)
1126
+ if dynamic is not None:
1127
+ pulumi.set(__self__, "dynamic", dynamic)
1128
+ if family is not None:
1129
+ pulumi.set(__self__, "family", family)
1130
+ if gateway is not None:
1131
+ pulumi.set(__self__, "gateway", gateway)
1096
1132
  if id is not None:
1097
1133
  pulumi.set(__self__, "id", id)
1134
+ if netmask is not None:
1135
+ pulumi.set(__self__, "netmask", netmask)
1136
+ if provisioning_mode is not None:
1137
+ pulumi.set(__self__, "provisioning_mode", provisioning_mode)
1098
1138
 
1099
1139
  @property
1100
1140
  @pulumi.getter
1101
1141
  def address(self) -> Optional[pulumi.Input[builtins.str]]:
1102
1142
  """
1103
- The address of the IP
1143
+ The address of the IP.
1104
1144
  """
1105
1145
  return pulumi.get(self, "address")
1106
1146
 
@@ -1108,11 +1148,47 @@ class ServerPublicIpArgs:
1108
1148
  def address(self, value: Optional[pulumi.Input[builtins.str]]):
1109
1149
  pulumi.set(self, "address", value)
1110
1150
 
1151
+ @property
1152
+ @pulumi.getter
1153
+ def dynamic(self) -> Optional[pulumi.Input[builtins.bool]]:
1154
+ """
1155
+ Whether the IP is dynamic.
1156
+ """
1157
+ return pulumi.get(self, "dynamic")
1158
+
1159
+ @dynamic.setter
1160
+ def dynamic(self, value: Optional[pulumi.Input[builtins.bool]]):
1161
+ pulumi.set(self, "dynamic", value)
1162
+
1163
+ @property
1164
+ @pulumi.getter
1165
+ def family(self) -> Optional[pulumi.Input[builtins.str]]:
1166
+ """
1167
+ The IP address' family.
1168
+ """
1169
+ return pulumi.get(self, "family")
1170
+
1171
+ @family.setter
1172
+ def family(self, value: Optional[pulumi.Input[builtins.str]]):
1173
+ pulumi.set(self, "family", value)
1174
+
1175
+ @property
1176
+ @pulumi.getter
1177
+ def gateway(self) -> Optional[pulumi.Input[builtins.str]]:
1178
+ """
1179
+ The IP of the Gateway associated with the IP.
1180
+ """
1181
+ return pulumi.get(self, "gateway")
1182
+
1183
+ @gateway.setter
1184
+ def gateway(self, value: Optional[pulumi.Input[builtins.str]]):
1185
+ pulumi.set(self, "gateway", value)
1186
+
1111
1187
  @property
1112
1188
  @pulumi.getter
1113
1189
  def id(self) -> Optional[pulumi.Input[builtins.str]]:
1114
1190
  """
1115
- The ID of the IP
1191
+ The ID of the IP.
1116
1192
  """
1117
1193
  return pulumi.get(self, "id")
1118
1194
 
@@ -1120,6 +1196,30 @@ class ServerPublicIpArgs:
1120
1196
  def id(self, value: Optional[pulumi.Input[builtins.str]]):
1121
1197
  pulumi.set(self, "id", value)
1122
1198
 
1199
+ @property
1200
+ @pulumi.getter
1201
+ def netmask(self) -> Optional[pulumi.Input[builtins.str]]:
1202
+ """
1203
+ The CIDR netmask of the IP.
1204
+ """
1205
+ return pulumi.get(self, "netmask")
1206
+
1207
+ @netmask.setter
1208
+ def netmask(self, value: Optional[pulumi.Input[builtins.str]]):
1209
+ pulumi.set(self, "netmask", value)
1210
+
1211
+ @property
1212
+ @pulumi.getter(name="provisioningMode")
1213
+ def provisioning_mode(self) -> Optional[pulumi.Input[builtins.str]]:
1214
+ """
1215
+ The provisioning mode of the IP
1216
+ """
1217
+ return pulumi.get(self, "provisioning_mode")
1218
+
1219
+ @provisioning_mode.setter
1220
+ def provisioning_mode(self, value: Optional[pulumi.Input[builtins.str]]):
1221
+ pulumi.set(self, "provisioning_mode", value)
1222
+
1123
1223
 
1124
1224
  if not MYPY:
1125
1225
  class ServerRootVolumeArgsDict(TypedDict):
@@ -1297,8 +1397,6 @@ if not MYPY:
1297
1397
  key: pulumi.Input[builtins.str]
1298
1398
  """
1299
1399
  Key of the object to import
1300
-
1301
- > **Note:** The type `unified` could be instantiated on both `l_ssd` and `b_ssd` volumes.
1302
1400
  """
1303
1401
  elif False:
1304
1402
  SnapshotImportArgsDict: TypeAlias = Mapping[str, Any]
@@ -1311,8 +1409,6 @@ class SnapshotImportArgs:
1311
1409
  """
1312
1410
  :param pulumi.Input[builtins.str] bucket: Bucket name containing [qcow2](https://en.wikipedia.org/wiki/Qcow) to import
1313
1411
  :param pulumi.Input[builtins.str] key: Key of the object to import
1314
-
1315
- > **Note:** The type `unified` could be instantiated on both `l_ssd` and `b_ssd` volumes.
1316
1412
  """
1317
1413
  pulumi.set(__self__, "bucket", bucket)
1318
1414
  pulumi.set(__self__, "key", key)
@@ -1334,8 +1430,6 @@ class SnapshotImportArgs:
1334
1430
  def key(self) -> pulumi.Input[builtins.str]:
1335
1431
  """
1336
1432
  Key of the object to import
1337
-
1338
- > **Note:** The type `unified` could be instantiated on both `l_ssd` and `b_ssd` volumes.
1339
1433
  """
1340
1434
  return pulumi.get(self, "key")
1341
1435