pulumiverse-scaleway 1.17.0__py3-none-any.whl → 1.18.0__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 pulumiverse-scaleway might be problematic. Click here for more details.

Files changed (43) hide show
  1. pulumiverse_scaleway/__init__.py +9 -0
  2. pulumiverse_scaleway/_inputs.py +133 -107
  3. pulumiverse_scaleway/account_project.py +17 -17
  4. pulumiverse_scaleway/account_ssh_key.py +8 -4
  5. pulumiverse_scaleway/container.py +146 -160
  6. pulumiverse_scaleway/container_cron.py +42 -77
  7. pulumiverse_scaleway/container_domain.py +30 -24
  8. pulumiverse_scaleway/container_namespace.py +42 -42
  9. pulumiverse_scaleway/container_token.py +36 -38
  10. pulumiverse_scaleway/container_trigger.py +45 -43
  11. pulumiverse_scaleway/function.py +112 -154
  12. pulumiverse_scaleway/function_cron.py +42 -60
  13. pulumiverse_scaleway/function_domain.py +56 -47
  14. pulumiverse_scaleway/function_namespace.py +49 -49
  15. pulumiverse_scaleway/function_token.py +36 -38
  16. pulumiverse_scaleway/function_trigger.py +45 -43
  17. pulumiverse_scaleway/get_account_project.py +14 -8
  18. pulumiverse_scaleway/get_account_ssh_key.py +14 -10
  19. pulumiverse_scaleway/get_availability_zones.py +17 -9
  20. pulumiverse_scaleway/get_container.py +50 -30
  21. pulumiverse_scaleway/get_container_namespace.py +26 -16
  22. pulumiverse_scaleway/get_function.py +20 -12
  23. pulumiverse_scaleway/get_function_namespace.py +14 -14
  24. pulumiverse_scaleway/get_object_bucket.py +22 -10
  25. pulumiverse_scaleway/get_object_bucket_policy.py +15 -9
  26. pulumiverse_scaleway/get_tem_domain.py +12 -1
  27. pulumiverse_scaleway/instance_server.py +32 -0
  28. pulumiverse_scaleway/object_bucket.py +67 -81
  29. pulumiverse_scaleway/object_bucket_acl.py +21 -17
  30. pulumiverse_scaleway/object_bucket_lock_configuration.py +21 -19
  31. pulumiverse_scaleway/object_bucket_policy.py +10 -8
  32. pulumiverse_scaleway/object_bucket_website_configuration.py +24 -22
  33. pulumiverse_scaleway/object_item.py +78 -62
  34. pulumiverse_scaleway/outputs.py +102 -73
  35. pulumiverse_scaleway/pulumi-plugin.json +1 -1
  36. pulumiverse_scaleway/sdb_database.py +26 -22
  37. pulumiverse_scaleway/tem_domain.py +75 -0
  38. pulumiverse_scaleway/vpc_private_network.py +2 -2
  39. pulumiverse_scaleway/vpc_route.py +577 -0
  40. {pulumiverse_scaleway-1.17.0.dist-info → pulumiverse_scaleway-1.18.0.dist-info}/METADATA +1 -1
  41. {pulumiverse_scaleway-1.17.0.dist-info → pulumiverse_scaleway-1.18.0.dist-info}/RECORD +43 -42
  42. {pulumiverse_scaleway-1.17.0.dist-info → pulumiverse_scaleway-1.18.0.dist-info}/WHEEL +1 -1
  43. {pulumiverse_scaleway-1.17.0.dist-info → pulumiverse_scaleway-1.18.0.dist-info}/top_level.txt +0 -0
@@ -29,12 +29,12 @@ class ContainerTriggerArgs:
29
29
  sqs: Optional[pulumi.Input['ContainerTriggerSqsArgs']] = None):
30
30
  """
31
31
  The set of arguments for constructing a ContainerTrigger resource.
32
- :param pulumi.Input[str] container_id: The ID of the container to create a trigger for
32
+ :param pulumi.Input[str] container_id: The unique identifier of the container to create a trigger for.
33
33
  :param pulumi.Input[str] description: The description of the trigger.
34
- :param pulumi.Input[str] name: The unique name of the trigger. Default to a generated name.
35
- :param pulumi.Input['ContainerTriggerNatsArgs'] nats: The configuration for the Scaleway's Nats used by the trigger
36
- :param pulumi.Input[str] region: `region`). The region in which the namespace should be created.
37
- :param pulumi.Input['ContainerTriggerSqsArgs'] sqs: The configuration of the Scaleway's SQS used by the trigger
34
+ :param pulumi.Input[str] name: The unique name of the trigger. If not provided, a random name is generated.
35
+ :param pulumi.Input['ContainerTriggerNatsArgs'] nats: The configuration for the Scaleway NATS account used by the trigger
36
+ :param pulumi.Input[str] region: `region`). The region in which the namespace is created.
37
+ :param pulumi.Input['ContainerTriggerSqsArgs'] sqs: The configuration of the Scaleway SQS queue used by the trigger
38
38
  """
39
39
  pulumi.set(__self__, "container_id", container_id)
40
40
  if description is not None:
@@ -52,7 +52,7 @@ class ContainerTriggerArgs:
52
52
  @pulumi.getter(name="containerId")
53
53
  def container_id(self) -> pulumi.Input[str]:
54
54
  """
55
- The ID of the container to create a trigger for
55
+ The unique identifier of the container to create a trigger for.
56
56
  """
57
57
  return pulumi.get(self, "container_id")
58
58
 
@@ -76,7 +76,7 @@ class ContainerTriggerArgs:
76
76
  @pulumi.getter
77
77
  def name(self) -> Optional[pulumi.Input[str]]:
78
78
  """
79
- The unique name of the trigger. Default to a generated name.
79
+ The unique name of the trigger. If not provided, a random name is generated.
80
80
  """
81
81
  return pulumi.get(self, "name")
82
82
 
@@ -88,7 +88,7 @@ class ContainerTriggerArgs:
88
88
  @pulumi.getter
89
89
  def nats(self) -> Optional[pulumi.Input['ContainerTriggerNatsArgs']]:
90
90
  """
91
- The configuration for the Scaleway's Nats used by the trigger
91
+ The configuration for the Scaleway NATS account used by the trigger
92
92
  """
93
93
  return pulumi.get(self, "nats")
94
94
 
@@ -100,7 +100,7 @@ class ContainerTriggerArgs:
100
100
  @pulumi.getter
101
101
  def region(self) -> Optional[pulumi.Input[str]]:
102
102
  """
103
- `region`). The region in which the namespace should be created.
103
+ `region`). The region in which the namespace is created.
104
104
  """
105
105
  return pulumi.get(self, "region")
106
106
 
@@ -112,7 +112,7 @@ class ContainerTriggerArgs:
112
112
  @pulumi.getter
113
113
  def sqs(self) -> Optional[pulumi.Input['ContainerTriggerSqsArgs']]:
114
114
  """
115
- The configuration of the Scaleway's SQS used by the trigger
115
+ The configuration of the Scaleway SQS queue used by the trigger
116
116
  """
117
117
  return pulumi.get(self, "sqs")
118
118
 
@@ -132,12 +132,12 @@ class _ContainerTriggerState:
132
132
  sqs: Optional[pulumi.Input['ContainerTriggerSqsArgs']] = None):
133
133
  """
134
134
  Input properties used for looking up and filtering ContainerTrigger resources.
135
- :param pulumi.Input[str] container_id: The ID of the container to create a trigger for
135
+ :param pulumi.Input[str] container_id: The unique identifier of the container to create a trigger for.
136
136
  :param pulumi.Input[str] description: The description of the trigger.
137
- :param pulumi.Input[str] name: The unique name of the trigger. Default to a generated name.
138
- :param pulumi.Input['ContainerTriggerNatsArgs'] nats: The configuration for the Scaleway's Nats used by the trigger
139
- :param pulumi.Input[str] region: `region`). The region in which the namespace should be created.
140
- :param pulumi.Input['ContainerTriggerSqsArgs'] sqs: The configuration of the Scaleway's SQS used by the trigger
137
+ :param pulumi.Input[str] name: The unique name of the trigger. If not provided, a random name is generated.
138
+ :param pulumi.Input['ContainerTriggerNatsArgs'] nats: The configuration for the Scaleway NATS account used by the trigger
139
+ :param pulumi.Input[str] region: `region`). The region in which the namespace is created.
140
+ :param pulumi.Input['ContainerTriggerSqsArgs'] sqs: The configuration of the Scaleway SQS queue used by the trigger
141
141
  """
142
142
  if container_id is not None:
143
143
  pulumi.set(__self__, "container_id", container_id)
@@ -156,7 +156,7 @@ class _ContainerTriggerState:
156
156
  @pulumi.getter(name="containerId")
157
157
  def container_id(self) -> Optional[pulumi.Input[str]]:
158
158
  """
159
- The ID of the container to create a trigger for
159
+ The unique identifier of the container to create a trigger for.
160
160
  """
161
161
  return pulumi.get(self, "container_id")
162
162
 
@@ -180,7 +180,7 @@ class _ContainerTriggerState:
180
180
  @pulumi.getter
181
181
  def name(self) -> Optional[pulumi.Input[str]]:
182
182
  """
183
- The unique name of the trigger. Default to a generated name.
183
+ The unique name of the trigger. If not provided, a random name is generated.
184
184
  """
185
185
  return pulumi.get(self, "name")
186
186
 
@@ -192,7 +192,7 @@ class _ContainerTriggerState:
192
192
  @pulumi.getter
193
193
  def nats(self) -> Optional[pulumi.Input['ContainerTriggerNatsArgs']]:
194
194
  """
195
- The configuration for the Scaleway's Nats used by the trigger
195
+ The configuration for the Scaleway NATS account used by the trigger
196
196
  """
197
197
  return pulumi.get(self, "nats")
198
198
 
@@ -204,7 +204,7 @@ class _ContainerTriggerState:
204
204
  @pulumi.getter
205
205
  def region(self) -> Optional[pulumi.Input[str]]:
206
206
  """
207
- `region`). The region in which the namespace should be created.
207
+ `region`). The region in which the namespace is created.
208
208
  """
209
209
  return pulumi.get(self, "region")
210
210
 
@@ -216,7 +216,7 @@ class _ContainerTriggerState:
216
216
  @pulumi.getter
217
217
  def sqs(self) -> Optional[pulumi.Input['ContainerTriggerSqsArgs']]:
218
218
  """
219
- The configuration of the Scaleway's SQS used by the trigger
219
+ The configuration of the Scaleway SQS queue used by the trigger
220
220
  """
221
221
  return pulumi.get(self, "sqs")
222
222
 
@@ -238,8 +238,9 @@ class ContainerTrigger(pulumi.CustomResource):
238
238
  sqs: Optional[pulumi.Input[Union['ContainerTriggerSqsArgs', 'ContainerTriggerSqsArgsDict']]] = None,
239
239
  __props__=None):
240
240
  """
241
- Creates and manages Scaleway Container Triggers.
242
- For more information see [the documentation](https://www.scaleway.com/en/developers/api/serverless-containers/#path-triggers).
241
+ The `ContainerTrigger` resource allows you to create and manage triggers for Scaleway [Serverless Containers](https://www.scaleway.com/en/docs/serverless/containers/).
242
+
243
+ Refer to the Containers triggers [documentation](https://www.scaleway.com/en/docs/serverless/containers/how-to/add-trigger-to-a-container/) and [API documentation](https://www.scaleway.com/en/developers/api/serverless-containers/#path-triggers-list-all-triggers) for more information.
243
244
 
244
245
  ## Example Usage
245
246
 
@@ -259,7 +260,7 @@ class ContainerTrigger(pulumi.CustomResource):
259
260
  })
260
261
  ```
261
262
 
262
- ### Nats
263
+ ### NATS
263
264
 
264
265
  ```python
265
266
  import pulumi
@@ -277,7 +278,7 @@ class ContainerTrigger(pulumi.CustomResource):
277
278
 
278
279
  ## Import
279
280
 
280
- Container Triggers can be imported using the `{region}/{id}`, e.g.
281
+ Container Triggers can be imported using `{region}/{id}`, as shown below:
281
282
 
282
283
  bash
283
284
 
@@ -287,12 +288,12 @@ class ContainerTrigger(pulumi.CustomResource):
287
288
 
288
289
  :param str resource_name: The name of the resource.
289
290
  :param pulumi.ResourceOptions opts: Options for the resource.
290
- :param pulumi.Input[str] container_id: The ID of the container to create a trigger for
291
+ :param pulumi.Input[str] container_id: The unique identifier of the container to create a trigger for.
291
292
  :param pulumi.Input[str] description: The description of the trigger.
292
- :param pulumi.Input[str] name: The unique name of the trigger. Default to a generated name.
293
- :param pulumi.Input[Union['ContainerTriggerNatsArgs', 'ContainerTriggerNatsArgsDict']] nats: The configuration for the Scaleway's Nats used by the trigger
294
- :param pulumi.Input[str] region: `region`). The region in which the namespace should be created.
295
- :param pulumi.Input[Union['ContainerTriggerSqsArgs', 'ContainerTriggerSqsArgsDict']] sqs: The configuration of the Scaleway's SQS used by the trigger
293
+ :param pulumi.Input[str] name: The unique name of the trigger. If not provided, a random name is generated.
294
+ :param pulumi.Input[Union['ContainerTriggerNatsArgs', 'ContainerTriggerNatsArgsDict']] nats: The configuration for the Scaleway NATS account used by the trigger
295
+ :param pulumi.Input[str] region: `region`). The region in which the namespace is created.
296
+ :param pulumi.Input[Union['ContainerTriggerSqsArgs', 'ContainerTriggerSqsArgsDict']] sqs: The configuration of the Scaleway SQS queue used by the trigger
296
297
  """
297
298
  ...
298
299
  @overload
@@ -301,8 +302,9 @@ class ContainerTrigger(pulumi.CustomResource):
301
302
  args: ContainerTriggerArgs,
302
303
  opts: Optional[pulumi.ResourceOptions] = None):
303
304
  """
304
- Creates and manages Scaleway Container Triggers.
305
- For more information see [the documentation](https://www.scaleway.com/en/developers/api/serverless-containers/#path-triggers).
305
+ The `ContainerTrigger` resource allows you to create and manage triggers for Scaleway [Serverless Containers](https://www.scaleway.com/en/docs/serverless/containers/).
306
+
307
+ Refer to the Containers triggers [documentation](https://www.scaleway.com/en/docs/serverless/containers/how-to/add-trigger-to-a-container/) and [API documentation](https://www.scaleway.com/en/developers/api/serverless-containers/#path-triggers-list-all-triggers) for more information.
306
308
 
307
309
  ## Example Usage
308
310
 
@@ -322,7 +324,7 @@ class ContainerTrigger(pulumi.CustomResource):
322
324
  })
323
325
  ```
324
326
 
325
- ### Nats
327
+ ### NATS
326
328
 
327
329
  ```python
328
330
  import pulumi
@@ -340,7 +342,7 @@ class ContainerTrigger(pulumi.CustomResource):
340
342
 
341
343
  ## Import
342
344
 
343
- Container Triggers can be imported using the `{region}/{id}`, e.g.
345
+ Container Triggers can be imported using `{region}/{id}`, as shown below:
344
346
 
345
347
  bash
346
348
 
@@ -409,12 +411,12 @@ class ContainerTrigger(pulumi.CustomResource):
409
411
  :param str resource_name: The unique name of the resulting resource.
410
412
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
411
413
  :param pulumi.ResourceOptions opts: Options for the resource.
412
- :param pulumi.Input[str] container_id: The ID of the container to create a trigger for
414
+ :param pulumi.Input[str] container_id: The unique identifier of the container to create a trigger for.
413
415
  :param pulumi.Input[str] description: The description of the trigger.
414
- :param pulumi.Input[str] name: The unique name of the trigger. Default to a generated name.
415
- :param pulumi.Input[Union['ContainerTriggerNatsArgs', 'ContainerTriggerNatsArgsDict']] nats: The configuration for the Scaleway's Nats used by the trigger
416
- :param pulumi.Input[str] region: `region`). The region in which the namespace should be created.
417
- :param pulumi.Input[Union['ContainerTriggerSqsArgs', 'ContainerTriggerSqsArgsDict']] sqs: The configuration of the Scaleway's SQS used by the trigger
416
+ :param pulumi.Input[str] name: The unique name of the trigger. If not provided, a random name is generated.
417
+ :param pulumi.Input[Union['ContainerTriggerNatsArgs', 'ContainerTriggerNatsArgsDict']] nats: The configuration for the Scaleway NATS account used by the trigger
418
+ :param pulumi.Input[str] region: `region`). The region in which the namespace is created.
419
+ :param pulumi.Input[Union['ContainerTriggerSqsArgs', 'ContainerTriggerSqsArgsDict']] sqs: The configuration of the Scaleway SQS queue used by the trigger
418
420
  """
419
421
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
420
422
 
@@ -432,7 +434,7 @@ class ContainerTrigger(pulumi.CustomResource):
432
434
  @pulumi.getter(name="containerId")
433
435
  def container_id(self) -> pulumi.Output[str]:
434
436
  """
435
- The ID of the container to create a trigger for
437
+ The unique identifier of the container to create a trigger for.
436
438
  """
437
439
  return pulumi.get(self, "container_id")
438
440
 
@@ -448,7 +450,7 @@ class ContainerTrigger(pulumi.CustomResource):
448
450
  @pulumi.getter
449
451
  def name(self) -> pulumi.Output[str]:
450
452
  """
451
- The unique name of the trigger. Default to a generated name.
453
+ The unique name of the trigger. If not provided, a random name is generated.
452
454
  """
453
455
  return pulumi.get(self, "name")
454
456
 
@@ -456,7 +458,7 @@ class ContainerTrigger(pulumi.CustomResource):
456
458
  @pulumi.getter
457
459
  def nats(self) -> pulumi.Output[Optional['outputs.ContainerTriggerNats']]:
458
460
  """
459
- The configuration for the Scaleway's Nats used by the trigger
461
+ The configuration for the Scaleway NATS account used by the trigger
460
462
  """
461
463
  return pulumi.get(self, "nats")
462
464
 
@@ -464,7 +466,7 @@ class ContainerTrigger(pulumi.CustomResource):
464
466
  @pulumi.getter
465
467
  def region(self) -> pulumi.Output[str]:
466
468
  """
467
- `region`). The region in which the namespace should be created.
469
+ `region`). The region in which the namespace is created.
468
470
  """
469
471
  return pulumi.get(self, "region")
470
472
 
@@ -472,7 +474,7 @@ class ContainerTrigger(pulumi.CustomResource):
472
474
  @pulumi.getter
473
475
  def sqs(self) -> pulumi.Output[Optional['outputs.ContainerTriggerSqs']]:
474
476
  """
475
- The configuration of the Scaleway's SQS used by the trigger
477
+ The configuration of the Scaleway SQS queue used by the trigger
476
478
  """
477
479
  return pulumi.get(self, "sqs")
478
480