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