pulumiverse-scaleway 1.20.0a1730719023__py3-none-any.whl → 1.21.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.

@@ -6463,23 +6463,24 @@ if not MYPY:
6463
6463
  class LoadbalancerPrivateNetworkArgsDict(TypedDict):
6464
6464
  private_network_id: pulumi.Input[str]
6465
6465
  """
6466
- (Required) The ID of the Private Network to attach to.
6466
+ The ID of the Private Network to attach to.
6467
+ - > **Important:** Updates to `private_network` will recreate the attachment.
6467
6468
  """
6468
6469
  dhcp_config: NotRequired[pulumi.Input[bool]]
6469
6470
  """
6470
- (Deprecated) Please use `ipam_ids`. Set to `true` if you want to let DHCP assign IP addresses. See below.
6471
+ Please use `ipam_ids`. Set to `true` if you want to let DHCP assign IP addresses.
6471
6472
  """
6472
6473
  ipam_ids: NotRequired[pulumi.Input[str]]
6473
6474
  """
6474
- (Optional) IPAM ID of a pre-reserved IP address to assign to the Load Balancer on this Private Network.
6475
+ IPAM ID of a pre-reserved IP address to assign to the Load Balancer on this Private Network.
6475
6476
  """
6476
6477
  static_config: NotRequired[pulumi.Input[str]]
6477
6478
  """
6478
- (Deprecated) Please use `ipam_ids`. Define a local ip address of your choice for the load balancer instance.
6479
+ Please use `ipam_ids`. Define a local ip address of your choice for the load balancer instance.
6479
6480
  """
6480
6481
  status: NotRequired[pulumi.Input[str]]
6481
6482
  """
6482
- The status of private network connection
6483
+ The status of the private network connection.
6483
6484
  """
6484
6485
  zone: NotRequired[pulumi.Input[str]]
6485
6486
  """
@@ -6498,11 +6499,12 @@ class LoadbalancerPrivateNetworkArgs:
6498
6499
  status: Optional[pulumi.Input[str]] = None,
6499
6500
  zone: Optional[pulumi.Input[str]] = None):
6500
6501
  """
6501
- :param pulumi.Input[str] private_network_id: (Required) The ID of the Private Network to attach to.
6502
- :param pulumi.Input[bool] dhcp_config: (Deprecated) Please use `ipam_ids`. Set to `true` if you want to let DHCP assign IP addresses. See below.
6503
- :param pulumi.Input[str] ipam_ids: (Optional) IPAM ID of a pre-reserved IP address to assign to the Load Balancer on this Private Network.
6504
- :param pulumi.Input[str] static_config: (Deprecated) Please use `ipam_ids`. Define a local ip address of your choice for the load balancer instance.
6505
- :param pulumi.Input[str] status: The status of private network connection
6502
+ :param pulumi.Input[str] private_network_id: The ID of the Private Network to attach to.
6503
+ - > **Important:** Updates to `private_network` will recreate the attachment.
6504
+ :param pulumi.Input[bool] dhcp_config: Please use `ipam_ids`. Set to `true` if you want to let DHCP assign IP addresses.
6505
+ :param pulumi.Input[str] ipam_ids: IPAM ID of a pre-reserved IP address to assign to the Load Balancer on this Private Network.
6506
+ :param pulumi.Input[str] static_config: Please use `ipam_ids`. Define a local ip address of your choice for the load balancer instance.
6507
+ :param pulumi.Input[str] status: The status of the private network connection.
6506
6508
  :param pulumi.Input[str] zone: `zone`) The zone of the Load Balancer.
6507
6509
  """
6508
6510
  pulumi.set(__self__, "private_network_id", private_network_id)
@@ -6527,7 +6529,8 @@ class LoadbalancerPrivateNetworkArgs:
6527
6529
  @pulumi.getter(name="privateNetworkId")
6528
6530
  def private_network_id(self) -> pulumi.Input[str]:
6529
6531
  """
6530
- (Required) The ID of the Private Network to attach to.
6532
+ The ID of the Private Network to attach to.
6533
+ - > **Important:** Updates to `private_network` will recreate the attachment.
6531
6534
  """
6532
6535
  return pulumi.get(self, "private_network_id")
6533
6536
 
@@ -6540,7 +6543,7 @@ class LoadbalancerPrivateNetworkArgs:
6540
6543
  @_utilities.deprecated("""dhcp_config field is deprecated, please use `private_network_id` or `ipam_ids` instead""")
6541
6544
  def dhcp_config(self) -> Optional[pulumi.Input[bool]]:
6542
6545
  """
6543
- (Deprecated) Please use `ipam_ids`. Set to `true` if you want to let DHCP assign IP addresses. See below.
6546
+ Please use `ipam_ids`. Set to `true` if you want to let DHCP assign IP addresses.
6544
6547
  """
6545
6548
  return pulumi.get(self, "dhcp_config")
6546
6549
 
@@ -6552,7 +6555,7 @@ class LoadbalancerPrivateNetworkArgs:
6552
6555
  @pulumi.getter(name="ipamIds")
6553
6556
  def ipam_ids(self) -> Optional[pulumi.Input[str]]:
6554
6557
  """
6555
- (Optional) IPAM ID of a pre-reserved IP address to assign to the Load Balancer on this Private Network.
6558
+ IPAM ID of a pre-reserved IP address to assign to the Load Balancer on this Private Network.
6556
6559
  """
6557
6560
  return pulumi.get(self, "ipam_ids")
6558
6561
 
@@ -6565,7 +6568,7 @@ class LoadbalancerPrivateNetworkArgs:
6565
6568
  @_utilities.deprecated("""static_config field is deprecated, please use `private_network_id` or `ipam_ids` instead""")
6566
6569
  def static_config(self) -> Optional[pulumi.Input[str]]:
6567
6570
  """
6568
- (Deprecated) Please use `ipam_ids`. Define a local ip address of your choice for the load balancer instance.
6571
+ Please use `ipam_ids`. Define a local ip address of your choice for the load balancer instance.
6569
6572
  """
6570
6573
  return pulumi.get(self, "static_config")
6571
6574
 
@@ -6577,7 +6580,7 @@ class LoadbalancerPrivateNetworkArgs:
6577
6580
  @pulumi.getter
6578
6581
  def status(self) -> Optional[pulumi.Input[str]]:
6579
6582
  """
6580
- The status of private network connection
6583
+ The status of the private network connection.
6581
6584
  """
6582
6585
  return pulumi.get(self, "status")
6583
6586
 
@@ -28,6 +28,7 @@ class BaremetalServerArgs:
28
28
  name: Optional[pulumi.Input[str]] = None,
29
29
  options: Optional[pulumi.Input[Sequence[pulumi.Input['BaremetalServerOptionArgs']]]] = None,
30
30
  os: Optional[pulumi.Input[str]] = None,
31
+ partitioning: Optional[pulumi.Input[str]] = None,
31
32
  password: Optional[pulumi.Input[str]] = None,
32
33
  private_networks: Optional[pulumi.Input[Sequence[pulumi.Input['BaremetalServerPrivateNetworkArgs']]]] = None,
33
34
  project_id: Optional[pulumi.Input[str]] = None,
@@ -53,6 +54,7 @@ class BaremetalServerArgs:
53
54
  :param pulumi.Input[str] os: The UUID of the os to install on the server.
54
55
  Use [this endpoint](https://www.scaleway.com/en/developers/api/elastic-metal/#path-os-list-available-oses) to find the right OS ID.
55
56
  > **Important:** Updates to `os` will reinstall the server.
57
+ :param pulumi.Input[str] partitioning: The partitioning schema in json format
56
58
  :param pulumi.Input[str] password: Password used for the installation. May be required depending on used os.
57
59
  :param pulumi.Input[Sequence[pulumi.Input['BaremetalServerPrivateNetworkArgs']]] private_networks: The private networks to attach to the server. For more information, see [the documentation](https://www.scaleway.com/en/docs/compute/elastic-metal/how-to/use-private-networks/)
58
60
  :param pulumi.Input[str] project_id: `project_id`) The ID of the project the server is associated with.
@@ -78,6 +80,8 @@ class BaremetalServerArgs:
78
80
  pulumi.set(__self__, "options", options)
79
81
  if os is not None:
80
82
  pulumi.set(__self__, "os", os)
83
+ if partitioning is not None:
84
+ pulumi.set(__self__, "partitioning", partitioning)
81
85
  if password is not None:
82
86
  pulumi.set(__self__, "password", password)
83
87
  if private_networks is not None:
@@ -189,6 +193,18 @@ class BaremetalServerArgs:
189
193
  def os(self, value: Optional[pulumi.Input[str]]):
190
194
  pulumi.set(self, "os", value)
191
195
 
196
+ @property
197
+ @pulumi.getter
198
+ def partitioning(self) -> Optional[pulumi.Input[str]]:
199
+ """
200
+ The partitioning schema in json format
201
+ """
202
+ return pulumi.get(self, "partitioning")
203
+
204
+ @partitioning.setter
205
+ def partitioning(self, value: Optional[pulumi.Input[str]]):
206
+ pulumi.set(self, "partitioning", value)
207
+
192
208
  @property
193
209
  @pulumi.getter
194
210
  def password(self) -> Optional[pulumi.Input[str]]:
@@ -329,6 +345,7 @@ class _BaremetalServerState:
329
345
  organization_id: Optional[pulumi.Input[str]] = None,
330
346
  os: Optional[pulumi.Input[str]] = None,
331
347
  os_name: Optional[pulumi.Input[str]] = None,
348
+ partitioning: Optional[pulumi.Input[str]] = None,
332
349
  password: Optional[pulumi.Input[str]] = None,
333
350
  private_networks: Optional[pulumi.Input[Sequence[pulumi.Input['BaremetalServerPrivateNetworkArgs']]]] = None,
334
351
  project_id: Optional[pulumi.Input[str]] = None,
@@ -362,6 +379,7 @@ class _BaremetalServerState:
362
379
  Use [this endpoint](https://www.scaleway.com/en/developers/api/elastic-metal/#path-os-list-available-oses) to find the right OS ID.
363
380
  > **Important:** Updates to `os` will reinstall the server.
364
381
  :param pulumi.Input[str] os_name: The name of the os.
382
+ :param pulumi.Input[str] partitioning: The partitioning schema in json format
365
383
  :param pulumi.Input[str] password: Password used for the installation. May be required depending on used os.
366
384
  :param pulumi.Input[Sequence[pulumi.Input['BaremetalServerPrivateNetworkArgs']]] private_networks: The private networks to attach to the server. For more information, see [the documentation](https://www.scaleway.com/en/docs/compute/elastic-metal/how-to/use-private-networks/)
367
385
  :param pulumi.Input[str] project_id: `project_id`) The ID of the project the server is associated with.
@@ -404,6 +422,8 @@ class _BaremetalServerState:
404
422
  pulumi.set(__self__, "os", os)
405
423
  if os_name is not None:
406
424
  pulumi.set(__self__, "os_name", os_name)
425
+ if partitioning is not None:
426
+ pulumi.set(__self__, "partitioning", partitioning)
407
427
  if password is not None:
408
428
  pulumi.set(__self__, "password", password)
409
429
  if private_networks is not None:
@@ -611,6 +631,18 @@ class _BaremetalServerState:
611
631
  def os_name(self, value: Optional[pulumi.Input[str]]):
612
632
  pulumi.set(self, "os_name", value)
613
633
 
634
+ @property
635
+ @pulumi.getter
636
+ def partitioning(self) -> Optional[pulumi.Input[str]]:
637
+ """
638
+ The partitioning schema in json format
639
+ """
640
+ return pulumi.get(self, "partitioning")
641
+
642
+ @partitioning.setter
643
+ def partitioning(self, value: Optional[pulumi.Input[str]]):
644
+ pulumi.set(self, "partitioning", value)
645
+
614
646
  @property
615
647
  @pulumi.getter
616
648
  def password(self) -> Optional[pulumi.Input[str]]:
@@ -745,6 +777,7 @@ class BaremetalServer(pulumi.CustomResource):
745
777
  offer: Optional[pulumi.Input[str]] = None,
746
778
  options: Optional[pulumi.Input[Sequence[pulumi.Input[Union['BaremetalServerOptionArgs', 'BaremetalServerOptionArgsDict']]]]] = None,
747
779
  os: Optional[pulumi.Input[str]] = None,
780
+ partitioning: Optional[pulumi.Input[str]] = None,
748
781
  password: Optional[pulumi.Input[str]] = None,
749
782
  private_networks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['BaremetalServerPrivateNetworkArgs', 'BaremetalServerPrivateNetworkArgsDict']]]]] = None,
750
783
  project_id: Optional[pulumi.Input[str]] = None,
@@ -920,6 +953,7 @@ class BaremetalServer(pulumi.CustomResource):
920
953
  :param pulumi.Input[str] os: The UUID of the os to install on the server.
921
954
  Use [this endpoint](https://www.scaleway.com/en/developers/api/elastic-metal/#path-os-list-available-oses) to find the right OS ID.
922
955
  > **Important:** Updates to `os` will reinstall the server.
956
+ :param pulumi.Input[str] partitioning: The partitioning schema in json format
923
957
  :param pulumi.Input[str] password: Password used for the installation. May be required depending on used os.
924
958
  :param pulumi.Input[Sequence[pulumi.Input[Union['BaremetalServerPrivateNetworkArgs', 'BaremetalServerPrivateNetworkArgsDict']]]] private_networks: The private networks to attach to the server. For more information, see [the documentation](https://www.scaleway.com/en/docs/compute/elastic-metal/how-to/use-private-networks/)
925
959
  :param pulumi.Input[str] project_id: `project_id`) The ID of the project the server is associated with.
@@ -1109,6 +1143,7 @@ class BaremetalServer(pulumi.CustomResource):
1109
1143
  offer: Optional[pulumi.Input[str]] = None,
1110
1144
  options: Optional[pulumi.Input[Sequence[pulumi.Input[Union['BaremetalServerOptionArgs', 'BaremetalServerOptionArgsDict']]]]] = None,
1111
1145
  os: Optional[pulumi.Input[str]] = None,
1146
+ partitioning: Optional[pulumi.Input[str]] = None,
1112
1147
  password: Optional[pulumi.Input[str]] = None,
1113
1148
  private_networks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['BaremetalServerPrivateNetworkArgs', 'BaremetalServerPrivateNetworkArgsDict']]]]] = None,
1114
1149
  project_id: Optional[pulumi.Input[str]] = None,
@@ -1137,6 +1172,7 @@ class BaremetalServer(pulumi.CustomResource):
1137
1172
  __props__.__dict__["offer"] = offer
1138
1173
  __props__.__dict__["options"] = options
1139
1174
  __props__.__dict__["os"] = os
1175
+ __props__.__dict__["partitioning"] = partitioning
1140
1176
  __props__.__dict__["password"] = None if password is None else pulumi.Output.secret(password)
1141
1177
  __props__.__dict__["private_networks"] = private_networks
1142
1178
  __props__.__dict__["project_id"] = project_id
@@ -1182,6 +1218,7 @@ class BaremetalServer(pulumi.CustomResource):
1182
1218
  organization_id: Optional[pulumi.Input[str]] = None,
1183
1219
  os: Optional[pulumi.Input[str]] = None,
1184
1220
  os_name: Optional[pulumi.Input[str]] = None,
1221
+ partitioning: Optional[pulumi.Input[str]] = None,
1185
1222
  password: Optional[pulumi.Input[str]] = None,
1186
1223
  private_networks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['BaremetalServerPrivateNetworkArgs', 'BaremetalServerPrivateNetworkArgsDict']]]]] = None,
1187
1224
  project_id: Optional[pulumi.Input[str]] = None,
@@ -1220,6 +1257,7 @@ class BaremetalServer(pulumi.CustomResource):
1220
1257
  Use [this endpoint](https://www.scaleway.com/en/developers/api/elastic-metal/#path-os-list-available-oses) to find the right OS ID.
1221
1258
  > **Important:** Updates to `os` will reinstall the server.
1222
1259
  :param pulumi.Input[str] os_name: The name of the os.
1260
+ :param pulumi.Input[str] partitioning: The partitioning schema in json format
1223
1261
  :param pulumi.Input[str] password: Password used for the installation. May be required depending on used os.
1224
1262
  :param pulumi.Input[Sequence[pulumi.Input[Union['BaremetalServerPrivateNetworkArgs', 'BaremetalServerPrivateNetworkArgsDict']]]] private_networks: The private networks to attach to the server. For more information, see [the documentation](https://www.scaleway.com/en/docs/compute/elastic-metal/how-to/use-private-networks/)
1225
1263
  :param pulumi.Input[str] project_id: `project_id`) The ID of the project the server is associated with.
@@ -1251,6 +1289,7 @@ class BaremetalServer(pulumi.CustomResource):
1251
1289
  __props__.__dict__["organization_id"] = organization_id
1252
1290
  __props__.__dict__["os"] = os
1253
1291
  __props__.__dict__["os_name"] = os_name
1292
+ __props__.__dict__["partitioning"] = partitioning
1254
1293
  __props__.__dict__["password"] = password
1255
1294
  __props__.__dict__["private_networks"] = private_networks
1256
1295
  __props__.__dict__["project_id"] = project_id
@@ -1389,6 +1428,14 @@ class BaremetalServer(pulumi.CustomResource):
1389
1428
  """
1390
1429
  return pulumi.get(self, "os_name")
1391
1430
 
1431
+ @property
1432
+ @pulumi.getter
1433
+ def partitioning(self) -> pulumi.Output[Optional[str]]:
1434
+ """
1435
+ The partitioning schema in json format
1436
+ """
1437
+ return pulumi.get(self, "partitioning")
1438
+
1392
1439
  @property
1393
1440
  @pulumi.getter
1394
1441
  def password(self) -> pulumi.Output[Optional[str]]:
@@ -25,7 +25,8 @@ class ContainerNamespaceArgs:
25
25
  name: Optional[pulumi.Input[str]] = None,
26
26
  project_id: Optional[pulumi.Input[str]] = None,
27
27
  region: Optional[pulumi.Input[str]] = None,
28
- secret_environment_variables: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
28
+ secret_environment_variables: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
29
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
29
30
  """
30
31
  The set of arguments for constructing a ContainerNamespace resource.
31
32
  :param pulumi.Input[str] description: The description of the namespace.
@@ -37,6 +38,7 @@ class ContainerNamespaceArgs:
37
38
  :param pulumi.Input[str] project_id: `project_id`) The unique identifier of the project that contains the namespace.
38
39
  :param pulumi.Input[str] region: `region`). The region in which the namespace is created.
39
40
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] secret_environment_variables: The secret environment variables of the namespace.
41
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: List of tags ["tag1", "tag2", ...] attached to the container namespace
40
42
  """
41
43
  if description is not None:
42
44
  pulumi.set(__self__, "description", description)
@@ -55,6 +57,8 @@ class ContainerNamespaceArgs:
55
57
  pulumi.set(__self__, "region", region)
56
58
  if secret_environment_variables is not None:
57
59
  pulumi.set(__self__, "secret_environment_variables", secret_environment_variables)
60
+ if tags is not None:
61
+ pulumi.set(__self__, "tags", tags)
58
62
 
59
63
  @property
60
64
  @pulumi.getter
@@ -143,6 +147,18 @@ class ContainerNamespaceArgs:
143
147
  def secret_environment_variables(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
144
148
  pulumi.set(self, "secret_environment_variables", value)
145
149
 
150
+ @property
151
+ @pulumi.getter
152
+ def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
153
+ """
154
+ List of tags ["tag1", "tag2", ...] attached to the container namespace
155
+ """
156
+ return pulumi.get(self, "tags")
157
+
158
+ @tags.setter
159
+ def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
160
+ pulumi.set(self, "tags", value)
161
+
146
162
 
147
163
  @pulumi.input_type
148
164
  class _ContainerNamespaceState:
@@ -156,7 +172,8 @@ class _ContainerNamespaceState:
156
172
  region: Optional[pulumi.Input[str]] = None,
157
173
  registry_endpoint: Optional[pulumi.Input[str]] = None,
158
174
  registry_namespace_id: Optional[pulumi.Input[str]] = None,
159
- secret_environment_variables: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
175
+ secret_environment_variables: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
176
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
160
177
  """
161
178
  Input properties used for looking up and filtering ContainerNamespace resources.
162
179
  :param pulumi.Input[str] description: The description of the namespace.
@@ -171,6 +188,7 @@ class _ContainerNamespaceState:
171
188
  :param pulumi.Input[str] registry_endpoint: The registry endpoint of the namespace.
172
189
  :param pulumi.Input[str] registry_namespace_id: The registry namespace ID of the namespace.
173
190
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] secret_environment_variables: The secret environment variables of the namespace.
191
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: List of tags ["tag1", "tag2", ...] attached to the container namespace
174
192
  """
175
193
  if description is not None:
176
194
  pulumi.set(__self__, "description", description)
@@ -195,6 +213,8 @@ class _ContainerNamespaceState:
195
213
  pulumi.set(__self__, "registry_namespace_id", registry_namespace_id)
196
214
  if secret_environment_variables is not None:
197
215
  pulumi.set(__self__, "secret_environment_variables", secret_environment_variables)
216
+ if tags is not None:
217
+ pulumi.set(__self__, "tags", tags)
198
218
 
199
219
  @property
200
220
  @pulumi.getter
@@ -319,6 +339,18 @@ class _ContainerNamespaceState:
319
339
  def secret_environment_variables(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
320
340
  pulumi.set(self, "secret_environment_variables", value)
321
341
 
342
+ @property
343
+ @pulumi.getter
344
+ def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
345
+ """
346
+ List of tags ["tag1", "tag2", ...] attached to the container namespace
347
+ """
348
+ return pulumi.get(self, "tags")
349
+
350
+ @tags.setter
351
+ def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
352
+ pulumi.set(self, "tags", value)
353
+
322
354
 
323
355
  class ContainerNamespace(pulumi.CustomResource):
324
356
  @overload
@@ -332,12 +364,13 @@ class ContainerNamespace(pulumi.CustomResource):
332
364
  project_id: Optional[pulumi.Input[str]] = None,
333
365
  region: Optional[pulumi.Input[str]] = None,
334
366
  secret_environment_variables: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
367
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
335
368
  __props__=None):
336
369
  """
337
370
  The `ContainerNamespace` resource allows you to
338
371
  for Scaleway [Serverless Containers](https://www.scaleway.com/en/docs/serverless/containers/).
339
372
 
340
- Refer to the Containers namespace [documentation](https://www.scaleway.com/en/docs/serverless/containers/how-to/create-a-containers-namespace/) and [API documentation](https://www.scaleway.com/en/developers/api/serverless-containers/#path-namespaces-list-all-your-namespaces) for more information.
373
+ Refer to the Containers namespace [documentation](https://www.scaleway.com/en/docs/serverless/containers/how-to/create-manage-delete-containers-namespace/) and [API documentation](https://www.scaleway.com/en/developers/api/serverless-containers/#path-namespaces-list-all-your-namespaces) for more information.
341
374
 
342
375
  ## Example Usage
343
376
 
@@ -371,6 +404,7 @@ class ContainerNamespace(pulumi.CustomResource):
371
404
  :param pulumi.Input[str] project_id: `project_id`) The unique identifier of the project that contains the namespace.
372
405
  :param pulumi.Input[str] region: `region`). The region in which the namespace is created.
373
406
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] secret_environment_variables: The secret environment variables of the namespace.
407
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: List of tags ["tag1", "tag2", ...] attached to the container namespace
374
408
  """
375
409
  ...
376
410
  @overload
@@ -382,7 +416,7 @@ class ContainerNamespace(pulumi.CustomResource):
382
416
  The `ContainerNamespace` resource allows you to
383
417
  for Scaleway [Serverless Containers](https://www.scaleway.com/en/docs/serverless/containers/).
384
418
 
385
- Refer to the Containers namespace [documentation](https://www.scaleway.com/en/docs/serverless/containers/how-to/create-a-containers-namespace/) and [API documentation](https://www.scaleway.com/en/developers/api/serverless-containers/#path-namespaces-list-all-your-namespaces) for more information.
419
+ Refer to the Containers namespace [documentation](https://www.scaleway.com/en/docs/serverless/containers/how-to/create-manage-delete-containers-namespace/) and [API documentation](https://www.scaleway.com/en/developers/api/serverless-containers/#path-namespaces-list-all-your-namespaces) for more information.
386
420
 
387
421
  ## Example Usage
388
422
 
@@ -427,6 +461,7 @@ class ContainerNamespace(pulumi.CustomResource):
427
461
  project_id: Optional[pulumi.Input[str]] = None,
428
462
  region: Optional[pulumi.Input[str]] = None,
429
463
  secret_environment_variables: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
464
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
430
465
  __props__=None):
431
466
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
432
467
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -443,6 +478,7 @@ class ContainerNamespace(pulumi.CustomResource):
443
478
  __props__.__dict__["project_id"] = project_id
444
479
  __props__.__dict__["region"] = region
445
480
  __props__.__dict__["secret_environment_variables"] = None if secret_environment_variables is None else pulumi.Output.secret(secret_environment_variables)
481
+ __props__.__dict__["tags"] = tags
446
482
  __props__.__dict__["organization_id"] = None
447
483
  __props__.__dict__["registry_endpoint"] = None
448
484
  __props__.__dict__["registry_namespace_id"] = None
@@ -467,7 +503,8 @@ class ContainerNamespace(pulumi.CustomResource):
467
503
  region: Optional[pulumi.Input[str]] = None,
468
504
  registry_endpoint: Optional[pulumi.Input[str]] = None,
469
505
  registry_namespace_id: Optional[pulumi.Input[str]] = None,
470
- secret_environment_variables: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None) -> 'ContainerNamespace':
506
+ secret_environment_variables: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
507
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None) -> 'ContainerNamespace':
471
508
  """
472
509
  Get an existing ContainerNamespace resource's state with the given name, id, and optional extra
473
510
  properties used to qualify the lookup.
@@ -487,6 +524,7 @@ class ContainerNamespace(pulumi.CustomResource):
487
524
  :param pulumi.Input[str] registry_endpoint: The registry endpoint of the namespace.
488
525
  :param pulumi.Input[str] registry_namespace_id: The registry namespace ID of the namespace.
489
526
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] secret_environment_variables: The secret environment variables of the namespace.
527
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: List of tags ["tag1", "tag2", ...] attached to the container namespace
490
528
  """
491
529
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
492
530
 
@@ -502,6 +540,7 @@ class ContainerNamespace(pulumi.CustomResource):
502
540
  __props__.__dict__["registry_endpoint"] = registry_endpoint
503
541
  __props__.__dict__["registry_namespace_id"] = registry_namespace_id
504
542
  __props__.__dict__["secret_environment_variables"] = secret_environment_variables
543
+ __props__.__dict__["tags"] = tags
505
544
  return ContainerNamespace(resource_name, opts=opts, __props__=__props__)
506
545
 
507
546
  @property
@@ -587,3 +626,11 @@ class ContainerNamespace(pulumi.CustomResource):
587
626
  """
588
627
  return pulumi.get(self, "secret_environment_variables")
589
628
 
629
+ @property
630
+ @pulumi.getter
631
+ def tags(self) -> pulumi.Output[Optional[Sequence[str]]]:
632
+ """
633
+ List of tags ["tag1", "tag2", ...] attached to the container namespace
634
+ """
635
+ return pulumi.get(self, "tags")
636
+
@@ -24,7 +24,8 @@ class FunctionNamespaceArgs:
24
24
  name: Optional[pulumi.Input[str]] = None,
25
25
  project_id: Optional[pulumi.Input[str]] = None,
26
26
  region: Optional[pulumi.Input[str]] = None,
27
- secret_environment_variables: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
27
+ secret_environment_variables: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
28
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
28
29
  """
29
30
  The set of arguments for constructing a FunctionNamespace resource.
30
31
  :param pulumi.Input[str] description: The description of the namespace.
@@ -35,6 +36,7 @@ class FunctionNamespaceArgs:
35
36
  :param pulumi.Input[str] project_id: `project_id`) The unique identifier of the project that contains the namespace.
36
37
  :param pulumi.Input[str] region: `region`). The region in which the namespace is created.
37
38
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] secret_environment_variables: The secret environment variables of the namespace.
39
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: List of tags ["tag1", "tag2", ...] attached to the function namespace
38
40
  """
39
41
  if description is not None:
40
42
  pulumi.set(__self__, "description", description)
@@ -48,6 +50,8 @@ class FunctionNamespaceArgs:
48
50
  pulumi.set(__self__, "region", region)
49
51
  if secret_environment_variables is not None:
50
52
  pulumi.set(__self__, "secret_environment_variables", secret_environment_variables)
53
+ if tags is not None:
54
+ pulumi.set(__self__, "tags", tags)
51
55
 
52
56
  @property
53
57
  @pulumi.getter
@@ -123,6 +127,18 @@ class FunctionNamespaceArgs:
123
127
  def secret_environment_variables(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
124
128
  pulumi.set(self, "secret_environment_variables", value)
125
129
 
130
+ @property
131
+ @pulumi.getter
132
+ def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
133
+ """
134
+ List of tags ["tag1", "tag2", ...] attached to the function namespace
135
+ """
136
+ return pulumi.get(self, "tags")
137
+
138
+ @tags.setter
139
+ def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
140
+ pulumi.set(self, "tags", value)
141
+
126
142
 
127
143
  @pulumi.input_type
128
144
  class _FunctionNamespaceState:
@@ -135,7 +151,8 @@ class _FunctionNamespaceState:
135
151
  region: Optional[pulumi.Input[str]] = None,
136
152
  registry_endpoint: Optional[pulumi.Input[str]] = None,
137
153
  registry_namespace_id: Optional[pulumi.Input[str]] = None,
138
- secret_environment_variables: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
154
+ secret_environment_variables: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
155
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
139
156
  """
140
157
  Input properties used for looking up and filtering FunctionNamespace resources.
141
158
  :param pulumi.Input[str] description: The description of the namespace.
@@ -149,6 +166,7 @@ class _FunctionNamespaceState:
149
166
  :param pulumi.Input[str] registry_endpoint: The registry endpoint of the namespace.
150
167
  :param pulumi.Input[str] registry_namespace_id: The registry namespace ID of the namespace.
151
168
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] secret_environment_variables: The secret environment variables of the namespace.
169
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: List of tags ["tag1", "tag2", ...] attached to the function namespace
152
170
  """
153
171
  if description is not None:
154
172
  pulumi.set(__self__, "description", description)
@@ -168,6 +186,8 @@ class _FunctionNamespaceState:
168
186
  pulumi.set(__self__, "registry_namespace_id", registry_namespace_id)
169
187
  if secret_environment_variables is not None:
170
188
  pulumi.set(__self__, "secret_environment_variables", secret_environment_variables)
189
+ if tags is not None:
190
+ pulumi.set(__self__, "tags", tags)
171
191
 
172
192
  @property
173
193
  @pulumi.getter
@@ -279,6 +299,18 @@ class _FunctionNamespaceState:
279
299
  def secret_environment_variables(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
280
300
  pulumi.set(self, "secret_environment_variables", value)
281
301
 
302
+ @property
303
+ @pulumi.getter
304
+ def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
305
+ """
306
+ List of tags ["tag1", "tag2", ...] attached to the function namespace
307
+ """
308
+ return pulumi.get(self, "tags")
309
+
310
+ @tags.setter
311
+ def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
312
+ pulumi.set(self, "tags", value)
313
+
282
314
 
283
315
  class FunctionNamespace(pulumi.CustomResource):
284
316
  @overload
@@ -291,12 +323,13 @@ class FunctionNamespace(pulumi.CustomResource):
291
323
  project_id: Optional[pulumi.Input[str]] = None,
292
324
  region: Optional[pulumi.Input[str]] = None,
293
325
  secret_environment_variables: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
326
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
294
327
  __props__=None):
295
328
  """
296
329
  The `FunctionNamespace` resource allows you to
297
330
  for Scaleway [Serverless Functions](https://www.scaleway.com/en/docs/serverless/functions/).
298
331
 
299
- Refer to the Functions namespace [documentation](https://www.scaleway.com/en/docs/serverless/functions/how-to/create-a-functions-namespace/) and [API documentation](https://www.scaleway.com/en/developers/api/serverless-functions/#path-namespaces-list-all-your-namespaces) for more information.
332
+ Refer to the Functions namespace [documentation](https://www.scaleway.com/en/docs/serverless/functions/how-to/create-manage-delete-functions-namespace/) and [API documentation](https://www.scaleway.com/en/developers/api/serverless-functions/#path-namespaces-list-all-your-namespaces) for more information.
300
333
 
301
334
  ## Example Usage
302
335
 
@@ -329,6 +362,7 @@ class FunctionNamespace(pulumi.CustomResource):
329
362
  :param pulumi.Input[str] project_id: `project_id`) The unique identifier of the project that contains the namespace.
330
363
  :param pulumi.Input[str] region: `region`). The region in which the namespace is created.
331
364
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] secret_environment_variables: The secret environment variables of the namespace.
365
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: List of tags ["tag1", "tag2", ...] attached to the function namespace
332
366
  """
333
367
  ...
334
368
  @overload
@@ -340,7 +374,7 @@ class FunctionNamespace(pulumi.CustomResource):
340
374
  The `FunctionNamespace` resource allows you to
341
375
  for Scaleway [Serverless Functions](https://www.scaleway.com/en/docs/serverless/functions/).
342
376
 
343
- Refer to the Functions namespace [documentation](https://www.scaleway.com/en/docs/serverless/functions/how-to/create-a-functions-namespace/) and [API documentation](https://www.scaleway.com/en/developers/api/serverless-functions/#path-namespaces-list-all-your-namespaces) for more information.
377
+ Refer to the Functions namespace [documentation](https://www.scaleway.com/en/docs/serverless/functions/how-to/create-manage-delete-functions-namespace/) and [API documentation](https://www.scaleway.com/en/developers/api/serverless-functions/#path-namespaces-list-all-your-namespaces) for more information.
344
378
 
345
379
  ## Example Usage
346
380
 
@@ -384,6 +418,7 @@ class FunctionNamespace(pulumi.CustomResource):
384
418
  project_id: Optional[pulumi.Input[str]] = None,
385
419
  region: Optional[pulumi.Input[str]] = None,
386
420
  secret_environment_variables: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
421
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
387
422
  __props__=None):
388
423
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
389
424
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -399,6 +434,7 @@ class FunctionNamespace(pulumi.CustomResource):
399
434
  __props__.__dict__["project_id"] = project_id
400
435
  __props__.__dict__["region"] = region
401
436
  __props__.__dict__["secret_environment_variables"] = None if secret_environment_variables is None else pulumi.Output.secret(secret_environment_variables)
437
+ __props__.__dict__["tags"] = tags
402
438
  __props__.__dict__["organization_id"] = None
403
439
  __props__.__dict__["registry_endpoint"] = None
404
440
  __props__.__dict__["registry_namespace_id"] = None
@@ -422,7 +458,8 @@ class FunctionNamespace(pulumi.CustomResource):
422
458
  region: Optional[pulumi.Input[str]] = None,
423
459
  registry_endpoint: Optional[pulumi.Input[str]] = None,
424
460
  registry_namespace_id: Optional[pulumi.Input[str]] = None,
425
- secret_environment_variables: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None) -> 'FunctionNamespace':
461
+ secret_environment_variables: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
462
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None) -> 'FunctionNamespace':
426
463
  """
427
464
  Get an existing FunctionNamespace resource's state with the given name, id, and optional extra
428
465
  properties used to qualify the lookup.
@@ -441,6 +478,7 @@ class FunctionNamespace(pulumi.CustomResource):
441
478
  :param pulumi.Input[str] registry_endpoint: The registry endpoint of the namespace.
442
479
  :param pulumi.Input[str] registry_namespace_id: The registry namespace ID of the namespace.
443
480
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] secret_environment_variables: The secret environment variables of the namespace.
481
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: List of tags ["tag1", "tag2", ...] attached to the function namespace
444
482
  """
445
483
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
446
484
 
@@ -455,6 +493,7 @@ class FunctionNamespace(pulumi.CustomResource):
455
493
  __props__.__dict__["registry_endpoint"] = registry_endpoint
456
494
  __props__.__dict__["registry_namespace_id"] = registry_namespace_id
457
495
  __props__.__dict__["secret_environment_variables"] = secret_environment_variables
496
+ __props__.__dict__["tags"] = tags
458
497
  return FunctionNamespace(resource_name, opts=opts, __props__=__props__)
459
498
 
460
499
  @property
@@ -531,3 +570,11 @@ class FunctionNamespace(pulumi.CustomResource):
531
570
  """
532
571
  return pulumi.get(self, "secret_environment_variables")
533
572
 
573
+ @property
574
+ @pulumi.getter
575
+ def tags(self) -> pulumi.Output[Optional[Sequence[str]]]:
576
+ """
577
+ List of tags ["tag1", "tag2", ...] attached to the function namespace
578
+ """
579
+ return pulumi.get(self, "tags")
580
+