pulumiverse-scaleway 1.32.0a1754042138__py3-none-any.whl → 1.33.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.
- pulumiverse_scaleway/_inputs.py +43 -3
- pulumiverse_scaleway/baremetal_server.py +47 -0
- pulumiverse_scaleway/elasticmetal/get_server.py +12 -1
- pulumiverse_scaleway/elasticmetal/server.py +47 -0
- pulumiverse_scaleway/get_baremetal_server.py +12 -1
- pulumiverse_scaleway/network/vpc.py +1 -1
- pulumiverse_scaleway/outputs.py +54 -4
- pulumiverse_scaleway/pulumi-plugin.json +1 -1
- pulumiverse_scaleway/redis/_inputs.py +43 -3
- pulumiverse_scaleway/redis/outputs.py +54 -4
- pulumiverse_scaleway/vpc.py +1 -1
- {pulumiverse_scaleway-1.32.0a1754042138.dist-info → pulumiverse_scaleway-1.33.0.dist-info}/METADATA +1 -1
- {pulumiverse_scaleway-1.32.0a1754042138.dist-info → pulumiverse_scaleway-1.33.0.dist-info}/RECORD +15 -15
- {pulumiverse_scaleway-1.32.0a1754042138.dist-info → pulumiverse_scaleway-1.33.0.dist-info}/WHEEL +0 -0
- {pulumiverse_scaleway-1.32.0a1754042138.dist-info → pulumiverse_scaleway-1.33.0.dist-info}/top_level.txt +0 -0
pulumiverse_scaleway/_inputs.py
CHANGED
@@ -9569,6 +9569,14 @@ if not MYPY:
|
|
9569
9569
|
"""
|
9570
9570
|
The ID of the endpoint.
|
9571
9571
|
"""
|
9572
|
+
ips: NotRequired[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]
|
9573
|
+
"""
|
9574
|
+
List of IPv4 addresses of the endpoint.
|
9575
|
+
"""
|
9576
|
+
port: NotRequired[pulumi.Input[builtins.int]]
|
9577
|
+
"""
|
9578
|
+
TCP port of the endpoint.
|
9579
|
+
"""
|
9572
9580
|
service_ips: NotRequired[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]
|
9573
9581
|
"""
|
9574
9582
|
Endpoint IPv4 addresses in [CIDR notation](https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing#CIDR_notation). You must provide at least one IP per node.
|
@@ -9605,11 +9613,15 @@ class RedisClusterPrivateNetworkArgs:
|
|
9605
9613
|
def __init__(__self__, *,
|
9606
9614
|
id: pulumi.Input[builtins.str],
|
9607
9615
|
endpoint_id: Optional[pulumi.Input[builtins.str]] = None,
|
9616
|
+
ips: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
9617
|
+
port: Optional[pulumi.Input[builtins.int]] = None,
|
9608
9618
|
service_ips: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
9609
9619
|
zone: Optional[pulumi.Input[builtins.str]] = None):
|
9610
9620
|
"""
|
9611
9621
|
:param pulumi.Input[builtins.str] id: The UUID of the Private Network resource.
|
9612
9622
|
:param pulumi.Input[builtins.str] endpoint_id: The ID of the endpoint.
|
9623
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] ips: List of IPv4 addresses of the endpoint.
|
9624
|
+
:param pulumi.Input[builtins.int] port: TCP port of the endpoint.
|
9613
9625
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] service_ips: Endpoint IPv4 addresses in [CIDR notation](https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing#CIDR_notation). You must provide at least one IP per node.
|
9614
9626
|
Keep in mind that in cluster mode you cannot edit your Private Network after its creation so if you want to be able to
|
9615
9627
|
scale your cluster horizontally (adding nodes) later, you should provide more IPs than nodes.
|
@@ -9636,6 +9648,10 @@ class RedisClusterPrivateNetworkArgs:
|
|
9636
9648
|
pulumi.set(__self__, "id", id)
|
9637
9649
|
if endpoint_id is not None:
|
9638
9650
|
pulumi.set(__self__, "endpoint_id", endpoint_id)
|
9651
|
+
if ips is not None:
|
9652
|
+
pulumi.set(__self__, "ips", ips)
|
9653
|
+
if port is not None:
|
9654
|
+
pulumi.set(__self__, "port", port)
|
9639
9655
|
if service_ips is not None:
|
9640
9656
|
pulumi.set(__self__, "service_ips", service_ips)
|
9641
9657
|
if zone is not None:
|
@@ -9665,6 +9681,30 @@ class RedisClusterPrivateNetworkArgs:
|
|
9665
9681
|
def endpoint_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
9666
9682
|
pulumi.set(self, "endpoint_id", value)
|
9667
9683
|
|
9684
|
+
@property
|
9685
|
+
@pulumi.getter
|
9686
|
+
def ips(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
|
9687
|
+
"""
|
9688
|
+
List of IPv4 addresses of the endpoint.
|
9689
|
+
"""
|
9690
|
+
return pulumi.get(self, "ips")
|
9691
|
+
|
9692
|
+
@ips.setter
|
9693
|
+
def ips(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
|
9694
|
+
pulumi.set(self, "ips", value)
|
9695
|
+
|
9696
|
+
@property
|
9697
|
+
@pulumi.getter
|
9698
|
+
def port(self) -> Optional[pulumi.Input[builtins.int]]:
|
9699
|
+
"""
|
9700
|
+
TCP port of the endpoint.
|
9701
|
+
"""
|
9702
|
+
return pulumi.get(self, "port")
|
9703
|
+
|
9704
|
+
@port.setter
|
9705
|
+
def port(self, value: Optional[pulumi.Input[builtins.int]]):
|
9706
|
+
pulumi.set(self, "port", value)
|
9707
|
+
|
9668
9708
|
@property
|
9669
9709
|
@pulumi.getter(name="serviceIps")
|
9670
9710
|
def service_ips(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
|
@@ -9718,7 +9758,7 @@ if not MYPY:
|
|
9718
9758
|
"""
|
9719
9759
|
ips: NotRequired[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]
|
9720
9760
|
"""
|
9721
|
-
|
9761
|
+
List of IPv4 addresses of the endpoint.
|
9722
9762
|
"""
|
9723
9763
|
port: NotRequired[pulumi.Input[builtins.int]]
|
9724
9764
|
"""
|
@@ -9735,7 +9775,7 @@ class RedisClusterPublicNetworkArgs:
|
|
9735
9775
|
port: Optional[pulumi.Input[builtins.int]] = None):
|
9736
9776
|
"""
|
9737
9777
|
:param pulumi.Input[builtins.str] id: The ID of the IPv4 address resource.
|
9738
|
-
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] ips:
|
9778
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] ips: List of IPv4 addresses of the endpoint.
|
9739
9779
|
:param pulumi.Input[builtins.int] port: TCP port of the endpoint.
|
9740
9780
|
"""
|
9741
9781
|
if id is not None:
|
@@ -9761,7 +9801,7 @@ class RedisClusterPublicNetworkArgs:
|
|
9761
9801
|
@pulumi.getter
|
9762
9802
|
def ips(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
|
9763
9803
|
"""
|
9764
|
-
|
9804
|
+
List of IPv4 addresses of the endpoint.
|
9765
9805
|
"""
|
9766
9806
|
return pulumi.get(self, "ips")
|
9767
9807
|
|
@@ -34,6 +34,7 @@ class BaremetalServerArgs:
|
|
34
34
|
private_ips: Optional[pulumi.Input[Sequence[pulumi.Input['BaremetalServerPrivateIpArgs']]]] = None,
|
35
35
|
private_networks: Optional[pulumi.Input[Sequence[pulumi.Input['BaremetalServerPrivateNetworkArgs']]]] = None,
|
36
36
|
project_id: Optional[pulumi.Input[builtins.str]] = None,
|
37
|
+
protected: Optional[pulumi.Input[builtins.bool]] = None,
|
37
38
|
reinstall_on_config_changes: Optional[pulumi.Input[builtins.bool]] = None,
|
38
39
|
service_password: Optional[pulumi.Input[builtins.str]] = None,
|
39
40
|
service_user: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -61,6 +62,7 @@ class BaremetalServerArgs:
|
|
61
62
|
:param pulumi.Input[Sequence[pulumi.Input['BaremetalServerPrivateIpArgs']]] private_ips: The list of private IPv4 and IPv6 addresses associated with the resource.
|
62
63
|
: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/)
|
63
64
|
:param pulumi.Input[builtins.str] project_id: `project_id`) The ID of the project the server is associated with.
|
65
|
+
:param pulumi.Input[builtins.bool] protected: Set to true to activate server protection option.
|
64
66
|
:param pulumi.Input[builtins.bool] reinstall_on_config_changes: If True, this boolean allows to reinstall the server on install config changes.
|
65
67
|
> **Important:** Updates to `ssh_key_ids`, `user`, `password`, `service_user` or `service_password` will not take effect on the server, it requires to reinstall it. To do so please set 'reinstall_on_config_changes' argument to true.
|
66
68
|
:param pulumi.Input[builtins.str] service_password: Password used for the service to install. May be required depending on used os.
|
@@ -93,6 +95,8 @@ class BaremetalServerArgs:
|
|
93
95
|
pulumi.set(__self__, "private_networks", private_networks)
|
94
96
|
if project_id is not None:
|
95
97
|
pulumi.set(__self__, "project_id", project_id)
|
98
|
+
if protected is not None:
|
99
|
+
pulumi.set(__self__, "protected", protected)
|
96
100
|
if reinstall_on_config_changes is not None:
|
97
101
|
pulumi.set(__self__, "reinstall_on_config_changes", reinstall_on_config_changes)
|
98
102
|
if service_password is not None:
|
@@ -258,6 +262,18 @@ class BaremetalServerArgs:
|
|
258
262
|
def project_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
259
263
|
pulumi.set(self, "project_id", value)
|
260
264
|
|
265
|
+
@property
|
266
|
+
@pulumi.getter
|
267
|
+
def protected(self) -> Optional[pulumi.Input[builtins.bool]]:
|
268
|
+
"""
|
269
|
+
Set to true to activate server protection option.
|
270
|
+
"""
|
271
|
+
return pulumi.get(self, "protected")
|
272
|
+
|
273
|
+
@protected.setter
|
274
|
+
def protected(self, value: Optional[pulumi.Input[builtins.bool]]):
|
275
|
+
pulumi.set(self, "protected", value)
|
276
|
+
|
261
277
|
@property
|
262
278
|
@pulumi.getter(name="reinstallOnConfigChanges")
|
263
279
|
def reinstall_on_config_changes(self) -> Optional[pulumi.Input[builtins.bool]]:
|
@@ -367,6 +383,7 @@ class _BaremetalServerState:
|
|
367
383
|
private_ips: Optional[pulumi.Input[Sequence[pulumi.Input['BaremetalServerPrivateIpArgs']]]] = None,
|
368
384
|
private_networks: Optional[pulumi.Input[Sequence[pulumi.Input['BaremetalServerPrivateNetworkArgs']]]] = None,
|
369
385
|
project_id: Optional[pulumi.Input[builtins.str]] = None,
|
386
|
+
protected: Optional[pulumi.Input[builtins.bool]] = None,
|
370
387
|
reinstall_on_config_changes: Optional[pulumi.Input[builtins.bool]] = None,
|
371
388
|
service_password: Optional[pulumi.Input[builtins.str]] = None,
|
372
389
|
service_user: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -402,6 +419,7 @@ class _BaremetalServerState:
|
|
402
419
|
:param pulumi.Input[Sequence[pulumi.Input['BaremetalServerPrivateIpArgs']]] private_ips: The list of private IPv4 and IPv6 addresses associated with the resource.
|
403
420
|
: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/)
|
404
421
|
:param pulumi.Input[builtins.str] project_id: `project_id`) The ID of the project the server is associated with.
|
422
|
+
:param pulumi.Input[builtins.bool] protected: Set to true to activate server protection option.
|
405
423
|
:param pulumi.Input[builtins.bool] reinstall_on_config_changes: If True, this boolean allows to reinstall the server on install config changes.
|
406
424
|
> **Important:** Updates to `ssh_key_ids`, `user`, `password`, `service_user` or `service_password` will not take effect on the server, it requires to reinstall it. To do so please set 'reinstall_on_config_changes' argument to true.
|
407
425
|
:param pulumi.Input[builtins.str] service_password: Password used for the service to install. May be required depending on used os.
|
@@ -451,6 +469,8 @@ class _BaremetalServerState:
|
|
451
469
|
pulumi.set(__self__, "private_networks", private_networks)
|
452
470
|
if project_id is not None:
|
453
471
|
pulumi.set(__self__, "project_id", project_id)
|
472
|
+
if protected is not None:
|
473
|
+
pulumi.set(__self__, "protected", protected)
|
454
474
|
if reinstall_on_config_changes is not None:
|
455
475
|
pulumi.set(__self__, "reinstall_on_config_changes", reinstall_on_config_changes)
|
456
476
|
if service_password is not None:
|
@@ -712,6 +732,18 @@ class _BaremetalServerState:
|
|
712
732
|
def project_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
713
733
|
pulumi.set(self, "project_id", value)
|
714
734
|
|
735
|
+
@property
|
736
|
+
@pulumi.getter
|
737
|
+
def protected(self) -> Optional[pulumi.Input[builtins.bool]]:
|
738
|
+
"""
|
739
|
+
Set to true to activate server protection option.
|
740
|
+
"""
|
741
|
+
return pulumi.get(self, "protected")
|
742
|
+
|
743
|
+
@protected.setter
|
744
|
+
def protected(self, value: Optional[pulumi.Input[builtins.bool]]):
|
745
|
+
pulumi.set(self, "protected", value)
|
746
|
+
|
715
747
|
@property
|
716
748
|
@pulumi.getter(name="reinstallOnConfigChanges")
|
717
749
|
def reinstall_on_config_changes(self) -> Optional[pulumi.Input[builtins.bool]]:
|
@@ -821,6 +853,7 @@ class BaremetalServer(pulumi.CustomResource):
|
|
821
853
|
private_ips: Optional[pulumi.Input[Sequence[pulumi.Input[Union['BaremetalServerPrivateIpArgs', 'BaremetalServerPrivateIpArgsDict']]]]] = None,
|
822
854
|
private_networks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['BaremetalServerPrivateNetworkArgs', 'BaremetalServerPrivateNetworkArgsDict']]]]] = None,
|
823
855
|
project_id: Optional[pulumi.Input[builtins.str]] = None,
|
856
|
+
protected: Optional[pulumi.Input[builtins.bool]] = None,
|
824
857
|
reinstall_on_config_changes: Optional[pulumi.Input[builtins.bool]] = None,
|
825
858
|
service_password: Optional[pulumi.Input[builtins.str]] = None,
|
826
859
|
service_user: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -955,6 +988,7 @@ class BaremetalServer(pulumi.CustomResource):
|
|
955
988
|
:param pulumi.Input[Sequence[pulumi.Input[Union['BaremetalServerPrivateIpArgs', 'BaremetalServerPrivateIpArgsDict']]]] private_ips: The list of private IPv4 and IPv6 addresses associated with the resource.
|
956
989
|
: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/)
|
957
990
|
:param pulumi.Input[builtins.str] project_id: `project_id`) The ID of the project the server is associated with.
|
991
|
+
:param pulumi.Input[builtins.bool] protected: Set to true to activate server protection option.
|
958
992
|
:param pulumi.Input[builtins.bool] reinstall_on_config_changes: If True, this boolean allows to reinstall the server on install config changes.
|
959
993
|
> **Important:** Updates to `ssh_key_ids`, `user`, `password`, `service_user` or `service_password` will not take effect on the server, it requires to reinstall it. To do so please set 'reinstall_on_config_changes' argument to true.
|
960
994
|
:param pulumi.Input[builtins.str] service_password: Password used for the service to install. May be required depending on used os.
|
@@ -1103,6 +1137,7 @@ class BaremetalServer(pulumi.CustomResource):
|
|
1103
1137
|
private_ips: Optional[pulumi.Input[Sequence[pulumi.Input[Union['BaremetalServerPrivateIpArgs', 'BaremetalServerPrivateIpArgsDict']]]]] = None,
|
1104
1138
|
private_networks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['BaremetalServerPrivateNetworkArgs', 'BaremetalServerPrivateNetworkArgsDict']]]]] = None,
|
1105
1139
|
project_id: Optional[pulumi.Input[builtins.str]] = None,
|
1140
|
+
protected: Optional[pulumi.Input[builtins.bool]] = None,
|
1106
1141
|
reinstall_on_config_changes: Optional[pulumi.Input[builtins.bool]] = None,
|
1107
1142
|
service_password: Optional[pulumi.Input[builtins.str]] = None,
|
1108
1143
|
service_user: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -1134,6 +1169,7 @@ class BaremetalServer(pulumi.CustomResource):
|
|
1134
1169
|
__props__.__dict__["private_ips"] = private_ips
|
1135
1170
|
__props__.__dict__["private_networks"] = private_networks
|
1136
1171
|
__props__.__dict__["project_id"] = project_id
|
1172
|
+
__props__.__dict__["protected"] = protected
|
1137
1173
|
__props__.__dict__["reinstall_on_config_changes"] = reinstall_on_config_changes
|
1138
1174
|
__props__.__dict__["service_password"] = None if service_password is None else pulumi.Output.secret(service_password)
|
1139
1175
|
__props__.__dict__["service_user"] = service_user
|
@@ -1181,6 +1217,7 @@ class BaremetalServer(pulumi.CustomResource):
|
|
1181
1217
|
private_ips: Optional[pulumi.Input[Sequence[pulumi.Input[Union['BaremetalServerPrivateIpArgs', 'BaremetalServerPrivateIpArgsDict']]]]] = None,
|
1182
1218
|
private_networks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['BaremetalServerPrivateNetworkArgs', 'BaremetalServerPrivateNetworkArgsDict']]]]] = None,
|
1183
1219
|
project_id: Optional[pulumi.Input[builtins.str]] = None,
|
1220
|
+
protected: Optional[pulumi.Input[builtins.bool]] = None,
|
1184
1221
|
reinstall_on_config_changes: Optional[pulumi.Input[builtins.bool]] = None,
|
1185
1222
|
service_password: Optional[pulumi.Input[builtins.str]] = None,
|
1186
1223
|
service_user: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -1221,6 +1258,7 @@ class BaremetalServer(pulumi.CustomResource):
|
|
1221
1258
|
:param pulumi.Input[Sequence[pulumi.Input[Union['BaremetalServerPrivateIpArgs', 'BaremetalServerPrivateIpArgsDict']]]] private_ips: The list of private IPv4 and IPv6 addresses associated with the resource.
|
1222
1259
|
: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/)
|
1223
1260
|
:param pulumi.Input[builtins.str] project_id: `project_id`) The ID of the project the server is associated with.
|
1261
|
+
:param pulumi.Input[builtins.bool] protected: Set to true to activate server protection option.
|
1224
1262
|
:param pulumi.Input[builtins.bool] reinstall_on_config_changes: If True, this boolean allows to reinstall the server on install config changes.
|
1225
1263
|
> **Important:** Updates to `ssh_key_ids`, `user`, `password`, `service_user` or `service_password` will not take effect on the server, it requires to reinstall it. To do so please set 'reinstall_on_config_changes' argument to true.
|
1226
1264
|
:param pulumi.Input[builtins.str] service_password: Password used for the service to install. May be required depending on used os.
|
@@ -1254,6 +1292,7 @@ class BaremetalServer(pulumi.CustomResource):
|
|
1254
1292
|
__props__.__dict__["private_ips"] = private_ips
|
1255
1293
|
__props__.__dict__["private_networks"] = private_networks
|
1256
1294
|
__props__.__dict__["project_id"] = project_id
|
1295
|
+
__props__.__dict__["protected"] = protected
|
1257
1296
|
__props__.__dict__["reinstall_on_config_changes"] = reinstall_on_config_changes
|
1258
1297
|
__props__.__dict__["service_password"] = service_password
|
1259
1298
|
__props__.__dict__["service_user"] = service_user
|
@@ -1429,6 +1468,14 @@ class BaremetalServer(pulumi.CustomResource):
|
|
1429
1468
|
"""
|
1430
1469
|
return pulumi.get(self, "project_id")
|
1431
1470
|
|
1471
|
+
@property
|
1472
|
+
@pulumi.getter
|
1473
|
+
def protected(self) -> pulumi.Output[Optional[builtins.bool]]:
|
1474
|
+
"""
|
1475
|
+
Set to true to activate server protection option.
|
1476
|
+
"""
|
1477
|
+
return pulumi.get(self, "protected")
|
1478
|
+
|
1432
1479
|
@property
|
1433
1480
|
@pulumi.getter(name="reinstallOnConfigChanges")
|
1434
1481
|
def reinstall_on_config_changes(self) -> pulumi.Output[Optional[builtins.bool]]:
|
@@ -28,7 +28,7 @@ class GetServerResult:
|
|
28
28
|
"""
|
29
29
|
A collection of values returned by getServer.
|
30
30
|
"""
|
31
|
-
def __init__(__self__, description=None, domain=None, hostname=None, id=None, install_config_afterward=None, ips=None, ipv4s=None, ipv6s=None, name=None, offer=None, offer_id=None, offer_name=None, options=None, organization_id=None, os=None, os_name=None, partitioning=None, password=None, private_ips=None, private_networks=None, project_id=None, reinstall_on_config_changes=None, server_id=None, service_password=None, service_user=None, ssh_key_ids=None, tags=None, user=None, zone=None):
|
31
|
+
def __init__(__self__, description=None, domain=None, hostname=None, id=None, install_config_afterward=None, ips=None, ipv4s=None, ipv6s=None, name=None, offer=None, offer_id=None, offer_name=None, options=None, organization_id=None, os=None, os_name=None, partitioning=None, password=None, private_ips=None, private_networks=None, project_id=None, protected=None, reinstall_on_config_changes=None, server_id=None, service_password=None, service_user=None, ssh_key_ids=None, tags=None, user=None, zone=None):
|
32
32
|
if description and not isinstance(description, str):
|
33
33
|
raise TypeError("Expected argument 'description' to be a str")
|
34
34
|
pulumi.set(__self__, "description", description)
|
@@ -92,6 +92,9 @@ class GetServerResult:
|
|
92
92
|
if project_id and not isinstance(project_id, str):
|
93
93
|
raise TypeError("Expected argument 'project_id' to be a str")
|
94
94
|
pulumi.set(__self__, "project_id", project_id)
|
95
|
+
if protected and not isinstance(protected, bool):
|
96
|
+
raise TypeError("Expected argument 'protected' to be a bool")
|
97
|
+
pulumi.set(__self__, "protected", protected)
|
95
98
|
if reinstall_on_config_changes and not isinstance(reinstall_on_config_changes, bool):
|
96
99
|
raise TypeError("Expected argument 'reinstall_on_config_changes' to be a bool")
|
97
100
|
pulumi.set(__self__, "reinstall_on_config_changes", reinstall_on_config_changes)
|
@@ -225,6 +228,11 @@ class GetServerResult:
|
|
225
228
|
def project_id(self) -> Optional[builtins.str]:
|
226
229
|
return pulumi.get(self, "project_id")
|
227
230
|
|
231
|
+
@property
|
232
|
+
@pulumi.getter
|
233
|
+
def protected(self) -> builtins.bool:
|
234
|
+
return pulumi.get(self, "protected")
|
235
|
+
|
228
236
|
@property
|
229
237
|
@pulumi.getter(name="reinstallOnConfigChanges")
|
230
238
|
def reinstall_on_config_changes(self) -> builtins.bool:
|
@@ -293,6 +301,7 @@ class AwaitableGetServerResult(GetServerResult):
|
|
293
301
|
private_ips=self.private_ips,
|
294
302
|
private_networks=self.private_networks,
|
295
303
|
project_id=self.project_id,
|
304
|
+
protected=self.protected,
|
296
305
|
reinstall_on_config_changes=self.reinstall_on_config_changes,
|
297
306
|
server_id=self.server_id,
|
298
307
|
service_password=self.service_password,
|
@@ -360,6 +369,7 @@ def get_server(name: Optional[builtins.str] = None,
|
|
360
369
|
private_ips=pulumi.get(__ret__, 'private_ips'),
|
361
370
|
private_networks=pulumi.get(__ret__, 'private_networks'),
|
362
371
|
project_id=pulumi.get(__ret__, 'project_id'),
|
372
|
+
protected=pulumi.get(__ret__, 'protected'),
|
363
373
|
reinstall_on_config_changes=pulumi.get(__ret__, 'reinstall_on_config_changes'),
|
364
374
|
server_id=pulumi.get(__ret__, 'server_id'),
|
365
375
|
service_password=pulumi.get(__ret__, 'service_password'),
|
@@ -424,6 +434,7 @@ def get_server_output(name: Optional[pulumi.Input[Optional[builtins.str]]] = Non
|
|
424
434
|
private_ips=pulumi.get(__response__, 'private_ips'),
|
425
435
|
private_networks=pulumi.get(__response__, 'private_networks'),
|
426
436
|
project_id=pulumi.get(__response__, 'project_id'),
|
437
|
+
protected=pulumi.get(__response__, 'protected'),
|
427
438
|
reinstall_on_config_changes=pulumi.get(__response__, 'reinstall_on_config_changes'),
|
428
439
|
server_id=pulumi.get(__response__, 'server_id'),
|
429
440
|
service_password=pulumi.get(__response__, 'service_password'),
|
@@ -34,6 +34,7 @@ class ServerArgs:
|
|
34
34
|
private_ips: Optional[pulumi.Input[Sequence[pulumi.Input['ServerPrivateIpArgs']]]] = None,
|
35
35
|
private_networks: Optional[pulumi.Input[Sequence[pulumi.Input['ServerPrivateNetworkArgs']]]] = None,
|
36
36
|
project_id: Optional[pulumi.Input[builtins.str]] = None,
|
37
|
+
protected: Optional[pulumi.Input[builtins.bool]] = None,
|
37
38
|
reinstall_on_config_changes: Optional[pulumi.Input[builtins.bool]] = None,
|
38
39
|
service_password: Optional[pulumi.Input[builtins.str]] = None,
|
39
40
|
service_user: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -61,6 +62,7 @@ class ServerArgs:
|
|
61
62
|
:param pulumi.Input[Sequence[pulumi.Input['ServerPrivateIpArgs']]] private_ips: The list of private IPv4 and IPv6 addresses associated with the resource.
|
62
63
|
:param pulumi.Input[Sequence[pulumi.Input['ServerPrivateNetworkArgs']]] 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/)
|
63
64
|
:param pulumi.Input[builtins.str] project_id: `project_id`) The ID of the project the server is associated with.
|
65
|
+
:param pulumi.Input[builtins.bool] protected: Set to true to activate server protection option.
|
64
66
|
:param pulumi.Input[builtins.bool] reinstall_on_config_changes: If True, this boolean allows to reinstall the server on install config changes.
|
65
67
|
> **Important:** Updates to `ssh_key_ids`, `user`, `password`, `service_user` or `service_password` will not take effect on the server, it requires to reinstall it. To do so please set 'reinstall_on_config_changes' argument to true.
|
66
68
|
:param pulumi.Input[builtins.str] service_password: Password used for the service to install. May be required depending on used os.
|
@@ -93,6 +95,8 @@ class ServerArgs:
|
|
93
95
|
pulumi.set(__self__, "private_networks", private_networks)
|
94
96
|
if project_id is not None:
|
95
97
|
pulumi.set(__self__, "project_id", project_id)
|
98
|
+
if protected is not None:
|
99
|
+
pulumi.set(__self__, "protected", protected)
|
96
100
|
if reinstall_on_config_changes is not None:
|
97
101
|
pulumi.set(__self__, "reinstall_on_config_changes", reinstall_on_config_changes)
|
98
102
|
if service_password is not None:
|
@@ -258,6 +262,18 @@ class ServerArgs:
|
|
258
262
|
def project_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
259
263
|
pulumi.set(self, "project_id", value)
|
260
264
|
|
265
|
+
@property
|
266
|
+
@pulumi.getter
|
267
|
+
def protected(self) -> Optional[pulumi.Input[builtins.bool]]:
|
268
|
+
"""
|
269
|
+
Set to true to activate server protection option.
|
270
|
+
"""
|
271
|
+
return pulumi.get(self, "protected")
|
272
|
+
|
273
|
+
@protected.setter
|
274
|
+
def protected(self, value: Optional[pulumi.Input[builtins.bool]]):
|
275
|
+
pulumi.set(self, "protected", value)
|
276
|
+
|
261
277
|
@property
|
262
278
|
@pulumi.getter(name="reinstallOnConfigChanges")
|
263
279
|
def reinstall_on_config_changes(self) -> Optional[pulumi.Input[builtins.bool]]:
|
@@ -367,6 +383,7 @@ class _ServerState:
|
|
367
383
|
private_ips: Optional[pulumi.Input[Sequence[pulumi.Input['ServerPrivateIpArgs']]]] = None,
|
368
384
|
private_networks: Optional[pulumi.Input[Sequence[pulumi.Input['ServerPrivateNetworkArgs']]]] = None,
|
369
385
|
project_id: Optional[pulumi.Input[builtins.str]] = None,
|
386
|
+
protected: Optional[pulumi.Input[builtins.bool]] = None,
|
370
387
|
reinstall_on_config_changes: Optional[pulumi.Input[builtins.bool]] = None,
|
371
388
|
service_password: Optional[pulumi.Input[builtins.str]] = None,
|
372
389
|
service_user: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -402,6 +419,7 @@ class _ServerState:
|
|
402
419
|
:param pulumi.Input[Sequence[pulumi.Input['ServerPrivateIpArgs']]] private_ips: The list of private IPv4 and IPv6 addresses associated with the resource.
|
403
420
|
:param pulumi.Input[Sequence[pulumi.Input['ServerPrivateNetworkArgs']]] 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/)
|
404
421
|
:param pulumi.Input[builtins.str] project_id: `project_id`) The ID of the project the server is associated with.
|
422
|
+
:param pulumi.Input[builtins.bool] protected: Set to true to activate server protection option.
|
405
423
|
:param pulumi.Input[builtins.bool] reinstall_on_config_changes: If True, this boolean allows to reinstall the server on install config changes.
|
406
424
|
> **Important:** Updates to `ssh_key_ids`, `user`, `password`, `service_user` or `service_password` will not take effect on the server, it requires to reinstall it. To do so please set 'reinstall_on_config_changes' argument to true.
|
407
425
|
:param pulumi.Input[builtins.str] service_password: Password used for the service to install. May be required depending on used os.
|
@@ -451,6 +469,8 @@ class _ServerState:
|
|
451
469
|
pulumi.set(__self__, "private_networks", private_networks)
|
452
470
|
if project_id is not None:
|
453
471
|
pulumi.set(__self__, "project_id", project_id)
|
472
|
+
if protected is not None:
|
473
|
+
pulumi.set(__self__, "protected", protected)
|
454
474
|
if reinstall_on_config_changes is not None:
|
455
475
|
pulumi.set(__self__, "reinstall_on_config_changes", reinstall_on_config_changes)
|
456
476
|
if service_password is not None:
|
@@ -712,6 +732,18 @@ class _ServerState:
|
|
712
732
|
def project_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
713
733
|
pulumi.set(self, "project_id", value)
|
714
734
|
|
735
|
+
@property
|
736
|
+
@pulumi.getter
|
737
|
+
def protected(self) -> Optional[pulumi.Input[builtins.bool]]:
|
738
|
+
"""
|
739
|
+
Set to true to activate server protection option.
|
740
|
+
"""
|
741
|
+
return pulumi.get(self, "protected")
|
742
|
+
|
743
|
+
@protected.setter
|
744
|
+
def protected(self, value: Optional[pulumi.Input[builtins.bool]]):
|
745
|
+
pulumi.set(self, "protected", value)
|
746
|
+
|
715
747
|
@property
|
716
748
|
@pulumi.getter(name="reinstallOnConfigChanges")
|
717
749
|
def reinstall_on_config_changes(self) -> Optional[pulumi.Input[builtins.bool]]:
|
@@ -816,6 +848,7 @@ class Server(pulumi.CustomResource):
|
|
816
848
|
private_ips: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ServerPrivateIpArgs', 'ServerPrivateIpArgsDict']]]]] = None,
|
817
849
|
private_networks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ServerPrivateNetworkArgs', 'ServerPrivateNetworkArgsDict']]]]] = None,
|
818
850
|
project_id: Optional[pulumi.Input[builtins.str]] = None,
|
851
|
+
protected: Optional[pulumi.Input[builtins.bool]] = None,
|
819
852
|
reinstall_on_config_changes: Optional[pulumi.Input[builtins.bool]] = None,
|
820
853
|
service_password: Optional[pulumi.Input[builtins.str]] = None,
|
821
854
|
service_user: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -950,6 +983,7 @@ class Server(pulumi.CustomResource):
|
|
950
983
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ServerPrivateIpArgs', 'ServerPrivateIpArgsDict']]]] private_ips: The list of private IPv4 and IPv6 addresses associated with the resource.
|
951
984
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ServerPrivateNetworkArgs', 'ServerPrivateNetworkArgsDict']]]] 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/)
|
952
985
|
:param pulumi.Input[builtins.str] project_id: `project_id`) The ID of the project the server is associated with.
|
986
|
+
:param pulumi.Input[builtins.bool] protected: Set to true to activate server protection option.
|
953
987
|
:param pulumi.Input[builtins.bool] reinstall_on_config_changes: If True, this boolean allows to reinstall the server on install config changes.
|
954
988
|
> **Important:** Updates to `ssh_key_ids`, `user`, `password`, `service_user` or `service_password` will not take effect on the server, it requires to reinstall it. To do so please set 'reinstall_on_config_changes' argument to true.
|
955
989
|
:param pulumi.Input[builtins.str] service_password: Password used for the service to install. May be required depending on used os.
|
@@ -1098,6 +1132,7 @@ class Server(pulumi.CustomResource):
|
|
1098
1132
|
private_ips: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ServerPrivateIpArgs', 'ServerPrivateIpArgsDict']]]]] = None,
|
1099
1133
|
private_networks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ServerPrivateNetworkArgs', 'ServerPrivateNetworkArgsDict']]]]] = None,
|
1100
1134
|
project_id: Optional[pulumi.Input[builtins.str]] = None,
|
1135
|
+
protected: Optional[pulumi.Input[builtins.bool]] = None,
|
1101
1136
|
reinstall_on_config_changes: Optional[pulumi.Input[builtins.bool]] = None,
|
1102
1137
|
service_password: Optional[pulumi.Input[builtins.str]] = None,
|
1103
1138
|
service_user: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -1128,6 +1163,7 @@ class Server(pulumi.CustomResource):
|
|
1128
1163
|
__props__.__dict__["private_ips"] = private_ips
|
1129
1164
|
__props__.__dict__["private_networks"] = private_networks
|
1130
1165
|
__props__.__dict__["project_id"] = project_id
|
1166
|
+
__props__.__dict__["protected"] = protected
|
1131
1167
|
__props__.__dict__["reinstall_on_config_changes"] = reinstall_on_config_changes
|
1132
1168
|
__props__.__dict__["service_password"] = None if service_password is None else pulumi.Output.secret(service_password)
|
1133
1169
|
__props__.__dict__["service_user"] = service_user
|
@@ -1177,6 +1213,7 @@ class Server(pulumi.CustomResource):
|
|
1177
1213
|
private_ips: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ServerPrivateIpArgs', 'ServerPrivateIpArgsDict']]]]] = None,
|
1178
1214
|
private_networks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ServerPrivateNetworkArgs', 'ServerPrivateNetworkArgsDict']]]]] = None,
|
1179
1215
|
project_id: Optional[pulumi.Input[builtins.str]] = None,
|
1216
|
+
protected: Optional[pulumi.Input[builtins.bool]] = None,
|
1180
1217
|
reinstall_on_config_changes: Optional[pulumi.Input[builtins.bool]] = None,
|
1181
1218
|
service_password: Optional[pulumi.Input[builtins.str]] = None,
|
1182
1219
|
service_user: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -1217,6 +1254,7 @@ class Server(pulumi.CustomResource):
|
|
1217
1254
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ServerPrivateIpArgs', 'ServerPrivateIpArgsDict']]]] private_ips: The list of private IPv4 and IPv6 addresses associated with the resource.
|
1218
1255
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ServerPrivateNetworkArgs', 'ServerPrivateNetworkArgsDict']]]] 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/)
|
1219
1256
|
:param pulumi.Input[builtins.str] project_id: `project_id`) The ID of the project the server is associated with.
|
1257
|
+
:param pulumi.Input[builtins.bool] protected: Set to true to activate server protection option.
|
1220
1258
|
:param pulumi.Input[builtins.bool] reinstall_on_config_changes: If True, this boolean allows to reinstall the server on install config changes.
|
1221
1259
|
> **Important:** Updates to `ssh_key_ids`, `user`, `password`, `service_user` or `service_password` will not take effect on the server, it requires to reinstall it. To do so please set 'reinstall_on_config_changes' argument to true.
|
1222
1260
|
:param pulumi.Input[builtins.str] service_password: Password used for the service to install. May be required depending on used os.
|
@@ -1250,6 +1288,7 @@ class Server(pulumi.CustomResource):
|
|
1250
1288
|
__props__.__dict__["private_ips"] = private_ips
|
1251
1289
|
__props__.__dict__["private_networks"] = private_networks
|
1252
1290
|
__props__.__dict__["project_id"] = project_id
|
1291
|
+
__props__.__dict__["protected"] = protected
|
1253
1292
|
__props__.__dict__["reinstall_on_config_changes"] = reinstall_on_config_changes
|
1254
1293
|
__props__.__dict__["service_password"] = service_password
|
1255
1294
|
__props__.__dict__["service_user"] = service_user
|
@@ -1425,6 +1464,14 @@ class Server(pulumi.CustomResource):
|
|
1425
1464
|
"""
|
1426
1465
|
return pulumi.get(self, "project_id")
|
1427
1466
|
|
1467
|
+
@property
|
1468
|
+
@pulumi.getter
|
1469
|
+
def protected(self) -> pulumi.Output[Optional[builtins.bool]]:
|
1470
|
+
"""
|
1471
|
+
Set to true to activate server protection option.
|
1472
|
+
"""
|
1473
|
+
return pulumi.get(self, "protected")
|
1474
|
+
|
1428
1475
|
@property
|
1429
1476
|
@pulumi.getter(name="reinstallOnConfigChanges")
|
1430
1477
|
def reinstall_on_config_changes(self) -> pulumi.Output[Optional[builtins.bool]]:
|
@@ -30,7 +30,7 @@ class GetBaremetalServerResult:
|
|
30
30
|
"""
|
31
31
|
A collection of values returned by getBaremetalServer.
|
32
32
|
"""
|
33
|
-
def __init__(__self__, description=None, domain=None, hostname=None, id=None, install_config_afterward=None, ips=None, ipv4s=None, ipv6s=None, name=None, offer=None, offer_id=None, offer_name=None, options=None, organization_id=None, os=None, os_name=None, partitioning=None, password=None, private_ips=None, private_networks=None, project_id=None, reinstall_on_config_changes=None, server_id=None, service_password=None, service_user=None, ssh_key_ids=None, tags=None, user=None, zone=None):
|
33
|
+
def __init__(__self__, description=None, domain=None, hostname=None, id=None, install_config_afterward=None, ips=None, ipv4s=None, ipv6s=None, name=None, offer=None, offer_id=None, offer_name=None, options=None, organization_id=None, os=None, os_name=None, partitioning=None, password=None, private_ips=None, private_networks=None, project_id=None, protected=None, reinstall_on_config_changes=None, server_id=None, service_password=None, service_user=None, ssh_key_ids=None, tags=None, user=None, zone=None):
|
34
34
|
if description and not isinstance(description, str):
|
35
35
|
raise TypeError("Expected argument 'description' to be a str")
|
36
36
|
pulumi.set(__self__, "description", description)
|
@@ -94,6 +94,9 @@ class GetBaremetalServerResult:
|
|
94
94
|
if project_id and not isinstance(project_id, str):
|
95
95
|
raise TypeError("Expected argument 'project_id' to be a str")
|
96
96
|
pulumi.set(__self__, "project_id", project_id)
|
97
|
+
if protected and not isinstance(protected, bool):
|
98
|
+
raise TypeError("Expected argument 'protected' to be a bool")
|
99
|
+
pulumi.set(__self__, "protected", protected)
|
97
100
|
if reinstall_on_config_changes and not isinstance(reinstall_on_config_changes, bool):
|
98
101
|
raise TypeError("Expected argument 'reinstall_on_config_changes' to be a bool")
|
99
102
|
pulumi.set(__self__, "reinstall_on_config_changes", reinstall_on_config_changes)
|
@@ -227,6 +230,11 @@ class GetBaremetalServerResult:
|
|
227
230
|
def project_id(self) -> Optional[builtins.str]:
|
228
231
|
return pulumi.get(self, "project_id")
|
229
232
|
|
233
|
+
@property
|
234
|
+
@pulumi.getter
|
235
|
+
def protected(self) -> builtins.bool:
|
236
|
+
return pulumi.get(self, "protected")
|
237
|
+
|
230
238
|
@property
|
231
239
|
@pulumi.getter(name="reinstallOnConfigChanges")
|
232
240
|
def reinstall_on_config_changes(self) -> builtins.bool:
|
@@ -295,6 +303,7 @@ class AwaitableGetBaremetalServerResult(GetBaremetalServerResult):
|
|
295
303
|
private_ips=self.private_ips,
|
296
304
|
private_networks=self.private_networks,
|
297
305
|
project_id=self.project_id,
|
306
|
+
protected=self.protected,
|
298
307
|
reinstall_on_config_changes=self.reinstall_on_config_changes,
|
299
308
|
server_id=self.server_id,
|
300
309
|
service_password=self.service_password,
|
@@ -363,6 +372,7 @@ def get_baremetal_server(name: Optional[builtins.str] = None,
|
|
363
372
|
private_ips=pulumi.get(__ret__, 'private_ips'),
|
364
373
|
private_networks=pulumi.get(__ret__, 'private_networks'),
|
365
374
|
project_id=pulumi.get(__ret__, 'project_id'),
|
375
|
+
protected=pulumi.get(__ret__, 'protected'),
|
366
376
|
reinstall_on_config_changes=pulumi.get(__ret__, 'reinstall_on_config_changes'),
|
367
377
|
server_id=pulumi.get(__ret__, 'server_id'),
|
368
378
|
service_password=pulumi.get(__ret__, 'service_password'),
|
@@ -428,6 +438,7 @@ def get_baremetal_server_output(name: Optional[pulumi.Input[Optional[builtins.st
|
|
428
438
|
private_ips=pulumi.get(__response__, 'private_ips'),
|
429
439
|
private_networks=pulumi.get(__response__, 'private_networks'),
|
430
440
|
project_id=pulumi.get(__response__, 'project_id'),
|
441
|
+
protected=pulumi.get(__response__, 'protected'),
|
431
442
|
reinstall_on_config_changes=pulumi.get(__response__, 'reinstall_on_config_changes'),
|
432
443
|
server_id=pulumi.get(__response__, 'server_id'),
|
433
444
|
service_password=pulumi.get(__response__, 'service_password'),
|
@@ -515,7 +515,7 @@ class Vpc(pulumi.CustomResource):
|
|
515
515
|
|
516
516
|
@property
|
517
517
|
@pulumi.getter(name="enableCustomRoutesPropagation")
|
518
|
-
def enable_custom_routes_propagation(self) -> pulumi.Output[
|
518
|
+
def enable_custom_routes_propagation(self) -> pulumi.Output[builtins.bool]:
|
519
519
|
"""
|
520
520
|
Defines whether the VPC advertises custom routes between its Private Networks. Note that you will not be able to deactivate it afterwards.
|
521
521
|
"""
|
pulumiverse_scaleway/outputs.py
CHANGED
@@ -7109,11 +7109,15 @@ class RedisClusterPrivateNetwork(dict):
|
|
7109
7109
|
def __init__(__self__, *,
|
7110
7110
|
id: builtins.str,
|
7111
7111
|
endpoint_id: Optional[builtins.str] = None,
|
7112
|
+
ips: Optional[Sequence[builtins.str]] = None,
|
7113
|
+
port: Optional[builtins.int] = None,
|
7112
7114
|
service_ips: Optional[Sequence[builtins.str]] = None,
|
7113
7115
|
zone: Optional[builtins.str] = None):
|
7114
7116
|
"""
|
7115
7117
|
:param builtins.str id: The UUID of the Private Network resource.
|
7116
7118
|
:param builtins.str endpoint_id: The ID of the endpoint.
|
7119
|
+
:param Sequence[builtins.str] ips: List of IPv4 addresses of the endpoint.
|
7120
|
+
:param builtins.int port: TCP port of the endpoint.
|
7117
7121
|
:param Sequence[builtins.str] service_ips: Endpoint IPv4 addresses in [CIDR notation](https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing#CIDR_notation). You must provide at least one IP per node.
|
7118
7122
|
Keep in mind that in cluster mode you cannot edit your Private Network after its creation so if you want to be able to
|
7119
7123
|
scale your cluster horizontally (adding nodes) later, you should provide more IPs than nodes.
|
@@ -7140,6 +7144,10 @@ class RedisClusterPrivateNetwork(dict):
|
|
7140
7144
|
pulumi.set(__self__, "id", id)
|
7141
7145
|
if endpoint_id is not None:
|
7142
7146
|
pulumi.set(__self__, "endpoint_id", endpoint_id)
|
7147
|
+
if ips is not None:
|
7148
|
+
pulumi.set(__self__, "ips", ips)
|
7149
|
+
if port is not None:
|
7150
|
+
pulumi.set(__self__, "port", port)
|
7143
7151
|
if service_ips is not None:
|
7144
7152
|
pulumi.set(__self__, "service_ips", service_ips)
|
7145
7153
|
if zone is not None:
|
@@ -7161,6 +7169,22 @@ class RedisClusterPrivateNetwork(dict):
|
|
7161
7169
|
"""
|
7162
7170
|
return pulumi.get(self, "endpoint_id")
|
7163
7171
|
|
7172
|
+
@property
|
7173
|
+
@pulumi.getter
|
7174
|
+
def ips(self) -> Optional[Sequence[builtins.str]]:
|
7175
|
+
"""
|
7176
|
+
List of IPv4 addresses of the endpoint.
|
7177
|
+
"""
|
7178
|
+
return pulumi.get(self, "ips")
|
7179
|
+
|
7180
|
+
@property
|
7181
|
+
@pulumi.getter
|
7182
|
+
def port(self) -> Optional[builtins.int]:
|
7183
|
+
"""
|
7184
|
+
TCP port of the endpoint.
|
7185
|
+
"""
|
7186
|
+
return pulumi.get(self, "port")
|
7187
|
+
|
7164
7188
|
@property
|
7165
7189
|
@pulumi.getter(name="serviceIps")
|
7166
7190
|
def service_ips(self) -> Optional[Sequence[builtins.str]]:
|
@@ -7206,7 +7230,7 @@ class RedisClusterPublicNetwork(dict):
|
|
7206
7230
|
port: Optional[builtins.int] = None):
|
7207
7231
|
"""
|
7208
7232
|
:param builtins.str id: The ID of the IPv4 address resource.
|
7209
|
-
:param Sequence[builtins.str] ips:
|
7233
|
+
:param Sequence[builtins.str] ips: List of IPv4 addresses of the endpoint.
|
7210
7234
|
:param builtins.int port: TCP port of the endpoint.
|
7211
7235
|
"""
|
7212
7236
|
if id is not None:
|
@@ -7228,7 +7252,7 @@ class RedisClusterPublicNetwork(dict):
|
|
7228
7252
|
@pulumi.getter
|
7229
7253
|
def ips(self) -> Optional[Sequence[builtins.str]]:
|
7230
7254
|
"""
|
7231
|
-
|
7255
|
+
List of IPv4 addresses of the endpoint.
|
7232
7256
|
"""
|
7233
7257
|
return pulumi.get(self, "ips")
|
7234
7258
|
|
@@ -13228,16 +13252,22 @@ class GetRedisClusterPrivateNetworkResult(dict):
|
|
13228
13252
|
def __init__(__self__, *,
|
13229
13253
|
endpoint_id: builtins.str,
|
13230
13254
|
id: builtins.str,
|
13255
|
+
ips: Sequence[builtins.str],
|
13256
|
+
port: builtins.int,
|
13231
13257
|
service_ips: Sequence[builtins.str],
|
13232
13258
|
zone: builtins.str):
|
13233
13259
|
"""
|
13234
13260
|
:param builtins.str endpoint_id: The ID of the endpoint.
|
13235
13261
|
:param builtins.str id: The ID of the Redis cluster.
|
13262
|
+
:param Sequence[builtins.str] ips: List of IPv4 addresses of the endpoint.
|
13263
|
+
:param builtins.int port: TCP port of the endpoint.
|
13236
13264
|
:param Sequence[builtins.str] service_ips: List of IPv4 addresses of the private network with a CIDR notation
|
13237
13265
|
:param builtins.str zone: `region`) The zone in which the server exists.
|
13238
13266
|
"""
|
13239
13267
|
pulumi.set(__self__, "endpoint_id", endpoint_id)
|
13240
13268
|
pulumi.set(__self__, "id", id)
|
13269
|
+
pulumi.set(__self__, "ips", ips)
|
13270
|
+
pulumi.set(__self__, "port", port)
|
13241
13271
|
pulumi.set(__self__, "service_ips", service_ips)
|
13242
13272
|
pulumi.set(__self__, "zone", zone)
|
13243
13273
|
|
@@ -13257,6 +13287,22 @@ class GetRedisClusterPrivateNetworkResult(dict):
|
|
13257
13287
|
"""
|
13258
13288
|
return pulumi.get(self, "id")
|
13259
13289
|
|
13290
|
+
@property
|
13291
|
+
@pulumi.getter
|
13292
|
+
def ips(self) -> Sequence[builtins.str]:
|
13293
|
+
"""
|
13294
|
+
List of IPv4 addresses of the endpoint.
|
13295
|
+
"""
|
13296
|
+
return pulumi.get(self, "ips")
|
13297
|
+
|
13298
|
+
@property
|
13299
|
+
@pulumi.getter
|
13300
|
+
def port(self) -> builtins.int:
|
13301
|
+
"""
|
13302
|
+
TCP port of the endpoint.
|
13303
|
+
"""
|
13304
|
+
return pulumi.get(self, "port")
|
13305
|
+
|
13260
13306
|
@property
|
13261
13307
|
@pulumi.getter(name="serviceIps")
|
13262
13308
|
def service_ips(self) -> Sequence[builtins.str]:
|
@@ -13282,7 +13328,8 @@ class GetRedisClusterPublicNetworkResult(dict):
|
|
13282
13328
|
port: builtins.int):
|
13283
13329
|
"""
|
13284
13330
|
:param builtins.str id: The ID of the Redis cluster.
|
13285
|
-
:param builtins.
|
13331
|
+
:param Sequence[builtins.str] ips: List of IPv4 addresses of the endpoint.
|
13332
|
+
:param builtins.int port: TCP port of the endpoint.
|
13286
13333
|
"""
|
13287
13334
|
pulumi.set(__self__, "id", id)
|
13288
13335
|
pulumi.set(__self__, "ips", ips)
|
@@ -13299,13 +13346,16 @@ class GetRedisClusterPublicNetworkResult(dict):
|
|
13299
13346
|
@property
|
13300
13347
|
@pulumi.getter
|
13301
13348
|
def ips(self) -> Sequence[builtins.str]:
|
13349
|
+
"""
|
13350
|
+
List of IPv4 addresses of the endpoint.
|
13351
|
+
"""
|
13302
13352
|
return pulumi.get(self, "ips")
|
13303
13353
|
|
13304
13354
|
@property
|
13305
13355
|
@pulumi.getter
|
13306
13356
|
def port(self) -> builtins.int:
|
13307
13357
|
"""
|
13308
|
-
TCP port of the endpoint
|
13358
|
+
TCP port of the endpoint.
|
13309
13359
|
"""
|
13310
13360
|
return pulumi.get(self, "port")
|
13311
13361
|
|
@@ -170,6 +170,14 @@ if not MYPY:
|
|
170
170
|
"""
|
171
171
|
The ID of the endpoint.
|
172
172
|
"""
|
173
|
+
ips: NotRequired[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]
|
174
|
+
"""
|
175
|
+
List of IPv4 addresses of the endpoint.
|
176
|
+
"""
|
177
|
+
port: NotRequired[pulumi.Input[builtins.int]]
|
178
|
+
"""
|
179
|
+
TCP port of the endpoint.
|
180
|
+
"""
|
173
181
|
service_ips: NotRequired[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]
|
174
182
|
"""
|
175
183
|
Endpoint IPv4 addresses in [CIDR notation](https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing#CIDR_notation). You must provide at least one IP per node.
|
@@ -206,11 +214,15 @@ class ClusterPrivateNetworkArgs:
|
|
206
214
|
def __init__(__self__, *,
|
207
215
|
id: pulumi.Input[builtins.str],
|
208
216
|
endpoint_id: Optional[pulumi.Input[builtins.str]] = None,
|
217
|
+
ips: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
218
|
+
port: Optional[pulumi.Input[builtins.int]] = None,
|
209
219
|
service_ips: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
210
220
|
zone: Optional[pulumi.Input[builtins.str]] = None):
|
211
221
|
"""
|
212
222
|
:param pulumi.Input[builtins.str] id: The UUID of the Private Network resource.
|
213
223
|
:param pulumi.Input[builtins.str] endpoint_id: The ID of the endpoint.
|
224
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] ips: List of IPv4 addresses of the endpoint.
|
225
|
+
:param pulumi.Input[builtins.int] port: TCP port of the endpoint.
|
214
226
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] service_ips: Endpoint IPv4 addresses in [CIDR notation](https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing#CIDR_notation). You must provide at least one IP per node.
|
215
227
|
Keep in mind that in cluster mode you cannot edit your Private Network after its creation so if you want to be able to
|
216
228
|
scale your cluster horizontally (adding nodes) later, you should provide more IPs than nodes.
|
@@ -237,6 +249,10 @@ class ClusterPrivateNetworkArgs:
|
|
237
249
|
pulumi.set(__self__, "id", id)
|
238
250
|
if endpoint_id is not None:
|
239
251
|
pulumi.set(__self__, "endpoint_id", endpoint_id)
|
252
|
+
if ips is not None:
|
253
|
+
pulumi.set(__self__, "ips", ips)
|
254
|
+
if port is not None:
|
255
|
+
pulumi.set(__self__, "port", port)
|
240
256
|
if service_ips is not None:
|
241
257
|
pulumi.set(__self__, "service_ips", service_ips)
|
242
258
|
if zone is not None:
|
@@ -266,6 +282,30 @@ class ClusterPrivateNetworkArgs:
|
|
266
282
|
def endpoint_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
267
283
|
pulumi.set(self, "endpoint_id", value)
|
268
284
|
|
285
|
+
@property
|
286
|
+
@pulumi.getter
|
287
|
+
def ips(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
|
288
|
+
"""
|
289
|
+
List of IPv4 addresses of the endpoint.
|
290
|
+
"""
|
291
|
+
return pulumi.get(self, "ips")
|
292
|
+
|
293
|
+
@ips.setter
|
294
|
+
def ips(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
|
295
|
+
pulumi.set(self, "ips", value)
|
296
|
+
|
297
|
+
@property
|
298
|
+
@pulumi.getter
|
299
|
+
def port(self) -> Optional[pulumi.Input[builtins.int]]:
|
300
|
+
"""
|
301
|
+
TCP port of the endpoint.
|
302
|
+
"""
|
303
|
+
return pulumi.get(self, "port")
|
304
|
+
|
305
|
+
@port.setter
|
306
|
+
def port(self, value: Optional[pulumi.Input[builtins.int]]):
|
307
|
+
pulumi.set(self, "port", value)
|
308
|
+
|
269
309
|
@property
|
270
310
|
@pulumi.getter(name="serviceIps")
|
271
311
|
def service_ips(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
|
@@ -319,7 +359,7 @@ if not MYPY:
|
|
319
359
|
"""
|
320
360
|
ips: NotRequired[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]
|
321
361
|
"""
|
322
|
-
|
362
|
+
List of IPv4 addresses of the endpoint.
|
323
363
|
"""
|
324
364
|
port: NotRequired[pulumi.Input[builtins.int]]
|
325
365
|
"""
|
@@ -336,7 +376,7 @@ class ClusterPublicNetworkArgs:
|
|
336
376
|
port: Optional[pulumi.Input[builtins.int]] = None):
|
337
377
|
"""
|
338
378
|
:param pulumi.Input[builtins.str] id: The ID of the IPv4 address resource.
|
339
|
-
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] ips:
|
379
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] ips: List of IPv4 addresses of the endpoint.
|
340
380
|
:param pulumi.Input[builtins.int] port: TCP port of the endpoint.
|
341
381
|
"""
|
342
382
|
if id is not None:
|
@@ -362,7 +402,7 @@ class ClusterPublicNetworkArgs:
|
|
362
402
|
@pulumi.getter
|
363
403
|
def ips(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
|
364
404
|
"""
|
365
|
-
|
405
|
+
List of IPv4 addresses of the endpoint.
|
366
406
|
"""
|
367
407
|
return pulumi.get(self, "ips")
|
368
408
|
|
@@ -129,11 +129,15 @@ class ClusterPrivateNetwork(dict):
|
|
129
129
|
def __init__(__self__, *,
|
130
130
|
id: builtins.str,
|
131
131
|
endpoint_id: Optional[builtins.str] = None,
|
132
|
+
ips: Optional[Sequence[builtins.str]] = None,
|
133
|
+
port: Optional[builtins.int] = None,
|
132
134
|
service_ips: Optional[Sequence[builtins.str]] = None,
|
133
135
|
zone: Optional[builtins.str] = None):
|
134
136
|
"""
|
135
137
|
:param builtins.str id: The UUID of the Private Network resource.
|
136
138
|
:param builtins.str endpoint_id: The ID of the endpoint.
|
139
|
+
:param Sequence[builtins.str] ips: List of IPv4 addresses of the endpoint.
|
140
|
+
:param builtins.int port: TCP port of the endpoint.
|
137
141
|
:param Sequence[builtins.str] service_ips: Endpoint IPv4 addresses in [CIDR notation](https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing#CIDR_notation). You must provide at least one IP per node.
|
138
142
|
Keep in mind that in cluster mode you cannot edit your Private Network after its creation so if you want to be able to
|
139
143
|
scale your cluster horizontally (adding nodes) later, you should provide more IPs than nodes.
|
@@ -160,6 +164,10 @@ class ClusterPrivateNetwork(dict):
|
|
160
164
|
pulumi.set(__self__, "id", id)
|
161
165
|
if endpoint_id is not None:
|
162
166
|
pulumi.set(__self__, "endpoint_id", endpoint_id)
|
167
|
+
if ips is not None:
|
168
|
+
pulumi.set(__self__, "ips", ips)
|
169
|
+
if port is not None:
|
170
|
+
pulumi.set(__self__, "port", port)
|
163
171
|
if service_ips is not None:
|
164
172
|
pulumi.set(__self__, "service_ips", service_ips)
|
165
173
|
if zone is not None:
|
@@ -181,6 +189,22 @@ class ClusterPrivateNetwork(dict):
|
|
181
189
|
"""
|
182
190
|
return pulumi.get(self, "endpoint_id")
|
183
191
|
|
192
|
+
@property
|
193
|
+
@pulumi.getter
|
194
|
+
def ips(self) -> Optional[Sequence[builtins.str]]:
|
195
|
+
"""
|
196
|
+
List of IPv4 addresses of the endpoint.
|
197
|
+
"""
|
198
|
+
return pulumi.get(self, "ips")
|
199
|
+
|
200
|
+
@property
|
201
|
+
@pulumi.getter
|
202
|
+
def port(self) -> Optional[builtins.int]:
|
203
|
+
"""
|
204
|
+
TCP port of the endpoint.
|
205
|
+
"""
|
206
|
+
return pulumi.get(self, "port")
|
207
|
+
|
184
208
|
@property
|
185
209
|
@pulumi.getter(name="serviceIps")
|
186
210
|
def service_ips(self) -> Optional[Sequence[builtins.str]]:
|
@@ -226,7 +250,7 @@ class ClusterPublicNetwork(dict):
|
|
226
250
|
port: Optional[builtins.int] = None):
|
227
251
|
"""
|
228
252
|
:param builtins.str id: The ID of the IPv4 address resource.
|
229
|
-
:param Sequence[builtins.str] ips:
|
253
|
+
:param Sequence[builtins.str] ips: List of IPv4 addresses of the endpoint.
|
230
254
|
:param builtins.int port: TCP port of the endpoint.
|
231
255
|
"""
|
232
256
|
if id is not None:
|
@@ -248,7 +272,7 @@ class ClusterPublicNetwork(dict):
|
|
248
272
|
@pulumi.getter
|
249
273
|
def ips(self) -> Optional[Sequence[builtins.str]]:
|
250
274
|
"""
|
251
|
-
|
275
|
+
List of IPv4 addresses of the endpoint.
|
252
276
|
"""
|
253
277
|
return pulumi.get(self, "ips")
|
254
278
|
|
@@ -335,16 +359,22 @@ class GetClusterPrivateNetworkResult(dict):
|
|
335
359
|
def __init__(__self__, *,
|
336
360
|
endpoint_id: builtins.str,
|
337
361
|
id: builtins.str,
|
362
|
+
ips: Sequence[builtins.str],
|
363
|
+
port: builtins.int,
|
338
364
|
service_ips: Sequence[builtins.str],
|
339
365
|
zone: builtins.str):
|
340
366
|
"""
|
341
367
|
:param builtins.str endpoint_id: The ID of the endpoint.
|
342
368
|
:param builtins.str id: The ID of the Redis cluster.
|
369
|
+
:param Sequence[builtins.str] ips: List of IPv4 addresses of the endpoint.
|
370
|
+
:param builtins.int port: TCP port of the endpoint.
|
343
371
|
:param Sequence[builtins.str] service_ips: List of IPv4 addresses of the private network with a CIDR notation
|
344
372
|
:param builtins.str zone: `region`) The zone in which the server exists.
|
345
373
|
"""
|
346
374
|
pulumi.set(__self__, "endpoint_id", endpoint_id)
|
347
375
|
pulumi.set(__self__, "id", id)
|
376
|
+
pulumi.set(__self__, "ips", ips)
|
377
|
+
pulumi.set(__self__, "port", port)
|
348
378
|
pulumi.set(__self__, "service_ips", service_ips)
|
349
379
|
pulumi.set(__self__, "zone", zone)
|
350
380
|
|
@@ -364,6 +394,22 @@ class GetClusterPrivateNetworkResult(dict):
|
|
364
394
|
"""
|
365
395
|
return pulumi.get(self, "id")
|
366
396
|
|
397
|
+
@property
|
398
|
+
@pulumi.getter
|
399
|
+
def ips(self) -> Sequence[builtins.str]:
|
400
|
+
"""
|
401
|
+
List of IPv4 addresses of the endpoint.
|
402
|
+
"""
|
403
|
+
return pulumi.get(self, "ips")
|
404
|
+
|
405
|
+
@property
|
406
|
+
@pulumi.getter
|
407
|
+
def port(self) -> builtins.int:
|
408
|
+
"""
|
409
|
+
TCP port of the endpoint.
|
410
|
+
"""
|
411
|
+
return pulumi.get(self, "port")
|
412
|
+
|
367
413
|
@property
|
368
414
|
@pulumi.getter(name="serviceIps")
|
369
415
|
def service_ips(self) -> Sequence[builtins.str]:
|
@@ -389,7 +435,8 @@ class GetClusterPublicNetworkResult(dict):
|
|
389
435
|
port: builtins.int):
|
390
436
|
"""
|
391
437
|
:param builtins.str id: The ID of the Redis cluster.
|
392
|
-
:param builtins.
|
438
|
+
:param Sequence[builtins.str] ips: List of IPv4 addresses of the endpoint.
|
439
|
+
:param builtins.int port: TCP port of the endpoint.
|
393
440
|
"""
|
394
441
|
pulumi.set(__self__, "id", id)
|
395
442
|
pulumi.set(__self__, "ips", ips)
|
@@ -406,13 +453,16 @@ class GetClusterPublicNetworkResult(dict):
|
|
406
453
|
@property
|
407
454
|
@pulumi.getter
|
408
455
|
def ips(self) -> Sequence[builtins.str]:
|
456
|
+
"""
|
457
|
+
List of IPv4 addresses of the endpoint.
|
458
|
+
"""
|
409
459
|
return pulumi.get(self, "ips")
|
410
460
|
|
411
461
|
@property
|
412
462
|
@pulumi.getter
|
413
463
|
def port(self) -> builtins.int:
|
414
464
|
"""
|
415
|
-
TCP port of the endpoint
|
465
|
+
TCP port of the endpoint.
|
416
466
|
"""
|
417
467
|
return pulumi.get(self, "port")
|
418
468
|
|
pulumiverse_scaleway/vpc.py
CHANGED
@@ -519,7 +519,7 @@ class Vpc(pulumi.CustomResource):
|
|
519
519
|
|
520
520
|
@property
|
521
521
|
@pulumi.getter(name="enableCustomRoutesPropagation")
|
522
|
-
def enable_custom_routes_propagation(self) -> pulumi.Output[
|
522
|
+
def enable_custom_routes_propagation(self) -> pulumi.Output[builtins.bool]:
|
523
523
|
"""
|
524
524
|
Defines whether the VPC advertises custom routes between its Private Networks. Note that you will not be able to deactivate it afterwards.
|
525
525
|
"""
|
{pulumiverse_scaleway-1.32.0a1754042138.dist-info → pulumiverse_scaleway-1.33.0.dist-info}/RECORD
RENAMED
@@ -1,10 +1,10 @@
|
|
1
1
|
pulumiverse_scaleway/__init__.py,sha256=u2ImHuwdUJLK-w44z2yJIEilVTm7voQ7YpJW5XuzeQY,53074
|
2
|
-
pulumiverse_scaleway/_inputs.py,sha256=
|
2
|
+
pulumiverse_scaleway/_inputs.py,sha256=H0fhUhu_w8nJxWjObDumJg6ZrhTnJvmjh7r0LOAVY7g,427326
|
3
3
|
pulumiverse_scaleway/_utilities.py,sha256=gKCIkl_oh08RRzGk3WqceyzWWvtDWhCGUOaU0M5xMfc,10822
|
4
4
|
pulumiverse_scaleway/account_project.py,sha256=DEmz5RGKqSyFpoMo9GHNQ9U7KMJJXs7wQSVylK2V2ww,13638
|
5
5
|
pulumiverse_scaleway/account_ssh_key.py,sha256=yjktvphNfJhf0cQRYCjrjb2GICnGt94IPkEpX18GEbs,18713
|
6
6
|
pulumiverse_scaleway/apple_silicon_server.py,sha256=q3GnF9uWyKjHRG2I98zyaUKFar2BRlLddtH534-rTe0,40652
|
7
|
-
pulumiverse_scaleway/baremetal_server.py,sha256=
|
7
|
+
pulumiverse_scaleway/baremetal_server.py,sha256=8dkEI8X1oVh98S4xJAKzzahB_fNNSfTZYyl1BdpYcuk,74996
|
8
8
|
pulumiverse_scaleway/block_snapshot.py,sha256=MlNUyxxeorwZ9Ue2bS9MvfkH7fvKM6GAKlpEkSQdrCk,22168
|
9
9
|
pulumiverse_scaleway/block_volume.py,sha256=vyC38dsQI2cy4aC6wn1n_XSecDb9UBE320FidcYV904,24631
|
10
10
|
pulumiverse_scaleway/cockpit.py,sha256=smB5q2EWoES2gGk_g-VFrjYSI_ZrbQPOXpu_1iE_rZA,16651
|
@@ -51,7 +51,7 @@ pulumiverse_scaleway/get_availability_zones.py,sha256=rQSi_acNeI05gqTF2O94VQiaq_
|
|
51
51
|
pulumiverse_scaleway/get_baremetal_offer.py,sha256=lNSNM5xkr0pAVURo6-v43_ngGoG6AeO11FHRlIkFZsI,11245
|
52
52
|
pulumiverse_scaleway/get_baremetal_option.py,sha256=wyxa5CFjAwvN5icmLC5UU0izIM3hz-dc1mPIOMYI6po,7106
|
53
53
|
pulumiverse_scaleway/get_baremetal_os.py,sha256=GKhxQaT6ji1GkwS5RvIt80mcp3BSymWVFk-N-ewMQAY,7418
|
54
|
-
pulumiverse_scaleway/get_baremetal_server.py,sha256=
|
54
|
+
pulumiverse_scaleway/get_baremetal_server.py,sha256=ivFi6aHdlIx1gU7VaYmKwXJc1dQglPUr9Hif7uk2H_U,19749
|
55
55
|
pulumiverse_scaleway/get_billing_consumptions.py,sha256=wVrDmElsjFgwCMJfwUhmCEOmY_SoqtXkfRA9SqbbIl8,6033
|
56
56
|
pulumiverse_scaleway/get_billing_invoices.py,sha256=lxaHSID8Zcf7miffPSWq6kEVRV2SBj00tnO0AjOg85Q,7512
|
57
57
|
pulumiverse_scaleway/get_block_snapshot.py,sha256=HEXwxAx03cpDJq1MJ-EeOZ9j83Ym7km7JkXpqnTJfoA,9457
|
@@ -183,9 +183,9 @@ pulumiverse_scaleway/object_bucket_lock_configuration.py,sha256=XliBRtdZZ5x4-Khm
|
|
183
183
|
pulumiverse_scaleway/object_bucket_policy.py,sha256=DWJ3T5ef_WG_vaHRTr3uAl0nkXpfi55vYtUJshxH8bw,26291
|
184
184
|
pulumiverse_scaleway/object_bucket_website_configuration.py,sha256=sAE_jFBEu815v6_b_lXumh6MntVECIRmg4lY1LrU1XY,25802
|
185
185
|
pulumiverse_scaleway/object_item.py,sha256=-QVL94_RUjp65JDMtRcsvjC3MCcES7pdwW1vn6DVFfg,38950
|
186
|
-
pulumiverse_scaleway/outputs.py,sha256=
|
186
|
+
pulumiverse_scaleway/outputs.py,sha256=hjq41L_tOvQll0TRTIg56t52eiQiSOPX0Ma2P2pCKMg,521633
|
187
187
|
pulumiverse_scaleway/provider.py,sha256=GlDJ_DkHogrjh7KZsJjdWruCEjmPEiVZXJq9gHHqSvs,14538
|
188
|
-
pulumiverse_scaleway/pulumi-plugin.json,sha256=
|
188
|
+
pulumiverse_scaleway/pulumi-plugin.json,sha256=ttlh6n4TbWU60vM8ea8XhXDBZJS7ZRNIvTyiVMA4xyM,119
|
189
189
|
pulumiverse_scaleway/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
190
190
|
pulumiverse_scaleway/rdb_snapshot.py,sha256=hKlyOShRsQ27HmhrOxKSFn0SMn46TxZwwLfXKOxG2R4,25599
|
191
191
|
pulumiverse_scaleway/redis_cluster.py,sha256=HrpDbnHBZyB4GA_hbBS2AJzA5KP_B6_fbhUqgRhE2GU,59155
|
@@ -196,7 +196,7 @@ pulumiverse_scaleway/secret_version.py,sha256=pzST1Ih6L52cVGTs2A7L6aXfRfjwBWHQe8
|
|
196
196
|
pulumiverse_scaleway/tem_domain.py,sha256=XsQL_1X7tdw_E8xl_-BKe5hyFBjkiEz4RaTkcOLsE88,45969
|
197
197
|
pulumiverse_scaleway/tem_domain_validation.py,sha256=nIAm8LJLW4ZM9m1LPMGINrpz4NVM1_p11TVlje9kRN0,14595
|
198
198
|
pulumiverse_scaleway/tem_webhook.py,sha256=7jHw4z62uGIBaYHJoCrptzUOJqycM1rfWTWhWklO3u0,26384
|
199
|
-
pulumiverse_scaleway/vpc.py,sha256=
|
199
|
+
pulumiverse_scaleway/vpc.py,sha256=nRfjsvvfXpbH2y68eeF2pQtUZnu6PQtjxOd_Th3TRjQ,25195
|
200
200
|
pulumiverse_scaleway/vpc_gateway_network.py,sha256=400rspR_fX9tiX-0pwD3lj9zj60iHPkIt8sYJny7x2c,49247
|
201
201
|
pulumiverse_scaleway/vpc_private_network.py,sha256=XLTy_8NCNswsDjHRAL1xkvqx8dYh-eZx13qRY3sX2co,35938
|
202
202
|
pulumiverse_scaleway/vpc_public_gateway.py,sha256=HLdx2ARvfC9iTZkI3ydNKWlBXtU3Wy4-576G7f-eD4o,39789
|
@@ -283,11 +283,11 @@ pulumiverse_scaleway/elasticmetal/get_offer.py,sha256=n7dgS1k3793T2el-3_0UFtWiPz
|
|
283
283
|
pulumiverse_scaleway/elasticmetal/get_option.py,sha256=OCs5W_OftqC0bZfODcAynnakDdOfRA2nTRLytO01dcA,6319
|
284
284
|
pulumiverse_scaleway/elasticmetal/get_os.py,sha256=LZDFaytOmGQmMmanKYUcxZPF0EO7O6Ejd-NNeBcJZ48,6667
|
285
285
|
pulumiverse_scaleway/elasticmetal/get_partition_schema.py,sha256=u6V4yMvbhxlU8wiGadV_YjL5ma1FOzPaJjncJS5u6fY,9825
|
286
|
-
pulumiverse_scaleway/elasticmetal/get_server.py,sha256=
|
286
|
+
pulumiverse_scaleway/elasticmetal/get_server.py,sha256=FqatC351QvMOld8kTnjbRuv2kKPkfHcoJBZyrlfK1bQ,18888
|
287
287
|
pulumiverse_scaleway/elasticmetal/ip.py,sha256=vOfeziakMlzaCupM27cCDvs_jJqhZdWPxgMDldOYQ0g,27924
|
288
288
|
pulumiverse_scaleway/elasticmetal/ip_mac_address.py,sha256=elqBhiKZk4yNAGf6RGI675wVaP2o8s9ilfOyNPVz38M,21786
|
289
289
|
pulumiverse_scaleway/elasticmetal/outputs.py,sha256=jAwRaJ6h9O-wZa6wz2fD1Hkpyeit7mm_POxl68vyHHU,32761
|
290
|
-
pulumiverse_scaleway/elasticmetal/server.py,sha256=
|
290
|
+
pulumiverse_scaleway/elasticmetal/server.py,sha256=PQUlQ_dYTuhyATvbWk1ka51i8QAygMO9xKxi0neUhvs,73725
|
291
291
|
pulumiverse_scaleway/functions/__init__.py,sha256=3yFZ-aylwom9k5TzoFJRUNIOWOBrb8wL2bTQdY4WUk8,504
|
292
292
|
pulumiverse_scaleway/functions/_inputs.py,sha256=MCnX55Cxl5aMlwL4qnF_75qyKsSTwzNJFJXfl9lN-Ms,8069
|
293
293
|
pulumiverse_scaleway/functions/cron.py,sha256=_AoCEa95bj1BtU_-07c2v5ITvlIeyHqBoUs5Ihj5XjE,19698
|
@@ -443,7 +443,7 @@ pulumiverse_scaleway/network/public_gateway_ip.py,sha256=lmGn5VBj7RABNHBMVlnGdfm
|
|
443
443
|
pulumiverse_scaleway/network/public_gateway_ip_reverse_dns.py,sha256=PJ0b1BqTuEBIDrr69elI2nc_IESLqeEdjZbfC9uXWrs,12363
|
444
444
|
pulumiverse_scaleway/network/public_gateway_pat_rule.py,sha256=O-48cbm4E5FdWobHvIWhrF8TuIrt6zeW4jUYxZHzJe8,25106
|
445
445
|
pulumiverse_scaleway/network/route.py,sha256=ACIcmWX_ErRBepssAp_tX42RzWZ_OYr2PGKeoL0zHiw,26560
|
446
|
-
pulumiverse_scaleway/network/vpc.py,sha256=
|
446
|
+
pulumiverse_scaleway/network/vpc.py,sha256=mSTtfpvaogbEMR4TSocksjNdL0tixbbk6IBRlWPF3EE,24987
|
447
447
|
pulumiverse_scaleway/object/__init__.py,sha256=wWR48yi9lP1JdIyfD4Roa9oTL-uvcQ7OkPQ1YuEMvwU,553
|
448
448
|
pulumiverse_scaleway/object/_inputs.py,sha256=BRyDLMW2P7inXpB916qMFiPBS5w-_6eWKWEJAxqB3S8,35770
|
449
449
|
pulumiverse_scaleway/object/bucket.py,sha256=UAvTNmiz15CQNEFXyvNNQR5mGh3D8F1aIN_yg3U7c0Q,41444
|
@@ -466,10 +466,10 @@ pulumiverse_scaleway/observability/outputs.py,sha256=9YS9N15YfUgNVezWqH3eVKTwmTk
|
|
466
466
|
pulumiverse_scaleway/observability/source.py,sha256=kRI2KXFnweJ_IhZwBnlnqHe_KCfrbr5LzuR2UOdbRyY,26377
|
467
467
|
pulumiverse_scaleway/observability/token.py,sha256=B8MSaMLrGW9koCBBc2HvrpAsq1GdOXQmxS7_Xb3N9Tk,19301
|
468
468
|
pulumiverse_scaleway/redis/__init__.py,sha256=11S13ZXz_jV7bgks3Dr5KfHW1qIzUSLDQOR9ZQ2EYs8,362
|
469
|
-
pulumiverse_scaleway/redis/_inputs.py,sha256=
|
469
|
+
pulumiverse_scaleway/redis/_inputs.py,sha256=BE7N4FTvbg5H8eP3cfPWr-W07pfpZuyftqHGZ3TxaJk,17507
|
470
470
|
pulumiverse_scaleway/redis/cluster.py,sha256=FPviiryYFWxg_tqNrXY4YDvM7EfXr7bSQKj-rELQ3l8,58366
|
471
471
|
pulumiverse_scaleway/redis/get_cluster.py,sha256=WMXwXVElXf1gmUPi7ETd_VTLZaLZrfHGX5XtZtqIpj0,14701
|
472
|
-
pulumiverse_scaleway/redis/outputs.py,sha256=
|
472
|
+
pulumiverse_scaleway/redis/outputs.py,sha256=A-3NCwlN1dUAUEL4uuAeWLlN83xlfltFZoxQDaYwbWQ,16656
|
473
473
|
pulumiverse_scaleway/registry/__init__.py,sha256=hUcd0HLJWVeBXidwDQ2lfNcJHcJUzlYFvBHrOerSzjQ,375
|
474
474
|
pulumiverse_scaleway/registry/get_image.py,sha256=tIjMCb8c28PGQLTig4okKWZF1F4LRsrQkfIwfOg7uVY,9720
|
475
475
|
pulumiverse_scaleway/registry/get_image_tag.py,sha256=bNZfPyTVNzWJKd4ezYJvN4NPUK7dqUVp0j8izYvmMbg,9355
|
@@ -491,7 +491,7 @@ pulumiverse_scaleway/tem/get_domain.py,sha256=FuZLAqmDnGCmNTJb6WUJ19Gd00egXd9Hwv
|
|
491
491
|
pulumiverse_scaleway/tem/get_offer_subscription.py,sha256=Ri0fgg7S9a5G3EXHTOg5ouiBbux_aPxZonoKpC8gTgU,11272
|
492
492
|
pulumiverse_scaleway/tem/outputs.py,sha256=WVcZiyCsfzlQpmLImCtrmuq31vPATLpewmI0RKXILIQ,5985
|
493
493
|
pulumiverse_scaleway/tem/webhook.py,sha256=8GMenigIWJjXcR-4a1QKnABAzRhuzqirF8rFKXCTlzY,26035
|
494
|
-
pulumiverse_scaleway-1.
|
495
|
-
pulumiverse_scaleway-1.
|
496
|
-
pulumiverse_scaleway-1.
|
497
|
-
pulumiverse_scaleway-1.
|
494
|
+
pulumiverse_scaleway-1.33.0.dist-info/METADATA,sha256=hovyY_1Ji1qyGE1FQ-gSkZaOxX2gjYR7RJ84xwonPJ0,2041
|
495
|
+
pulumiverse_scaleway-1.33.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
496
|
+
pulumiverse_scaleway-1.33.0.dist-info/top_level.txt,sha256=nZh5pqyc9FpoAll32zwyBXyAUg_m-XQXqk_YOJ5Ih2g,21
|
497
|
+
pulumiverse_scaleway-1.33.0.dist-info/RECORD,,
|
{pulumiverse_scaleway-1.32.0a1754042138.dist-info → pulumiverse_scaleway-1.33.0.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|