pulumiverse-scaleway 1.21.0__py3-none-any.whl → 1.21.0a1730729553__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.0a1730729553.dist-info}/METADATA +19 -27
- {pulumiverse_scaleway-1.21.0.dist-info → pulumiverse_scaleway-1.21.0a1730729553.dist-info}/RECORD +19 -19
- {pulumiverse_scaleway-1.21.0.dist-info → pulumiverse_scaleway-1.21.0a1730729553.dist-info}/WHEEL +1 -1
- {pulumiverse_scaleway-1.21.0.dist-info → pulumiverse_scaleway-1.21.0a1730729553.dist-info}/top_level.txt +0 -0
|
@@ -40,14 +40,12 @@ class LoadbalancerArgs:
|
|
|
40
40
|
:param pulumi.Input[bool] assign_flexible_ip: Defines whether to automatically assign a flexible public IPv4 to the Load Balancer.
|
|
41
41
|
:param pulumi.Input[bool] assign_flexible_ipv6: Defines whether to automatically assign a flexible public IPv6 to the Load Balancer.
|
|
42
42
|
:param pulumi.Input[str] description: The description of the Load Balancer.
|
|
43
|
-
:param pulumi.Input[str] ip_id:
|
|
43
|
+
:param pulumi.Input[str] ip_id: The ID of the associated Load Balancer IP. See below.
|
|
44
44
|
|
|
45
45
|
> **Important:** Updates to `ip_id` will recreate the Load Balancer.
|
|
46
46
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_ids: The List of IP IDs to attach to the Load Balancer.
|
|
47
|
-
|
|
48
|
-
> **Important:** Make sure to use a `LoadbalancerIp` resource to create the IPs.
|
|
49
47
|
:param pulumi.Input[str] name: The name of the Load Balancer.
|
|
50
|
-
:param pulumi.Input[Sequence[pulumi.Input['LoadbalancerPrivateNetworkArgs']]] private_networks: List of private network to connect with your load balancer
|
|
48
|
+
:param pulumi.Input[Sequence[pulumi.Input['LoadbalancerPrivateNetworkArgs']]] private_networks: List of private network to connect with your load balancer
|
|
51
49
|
:param pulumi.Input[str] project_id: `project_id`) The ID of the Project the Load Balancer is associated with.
|
|
52
50
|
:param pulumi.Input[bool] release_ip: The `release_ip` allow the release of the IP address associated with the Load Balancer.
|
|
53
51
|
:param pulumi.Input[str] ssl_compatibility_level: Enforces minimal SSL version (in SSL/TLS offloading context). Please check [possible values](https://www.scaleway.com/en/developers/api/load-balancer/zoned-api/#path-load-balancer-create-a-load-balancer).
|
|
@@ -139,7 +137,7 @@ class LoadbalancerArgs:
|
|
|
139
137
|
@_utilities.deprecated("""Please use ip_ids""")
|
|
140
138
|
def ip_id(self) -> Optional[pulumi.Input[str]]:
|
|
141
139
|
"""
|
|
142
|
-
|
|
140
|
+
The ID of the associated Load Balancer IP. See below.
|
|
143
141
|
|
|
144
142
|
> **Important:** Updates to `ip_id` will recreate the Load Balancer.
|
|
145
143
|
"""
|
|
@@ -154,8 +152,6 @@ class LoadbalancerArgs:
|
|
|
154
152
|
def ip_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
155
153
|
"""
|
|
156
154
|
The List of IP IDs to attach to the Load Balancer.
|
|
157
|
-
|
|
158
|
-
> **Important:** Make sure to use a `LoadbalancerIp` resource to create the IPs.
|
|
159
155
|
"""
|
|
160
156
|
return pulumi.get(self, "ip_ids")
|
|
161
157
|
|
|
@@ -179,7 +175,7 @@ class LoadbalancerArgs:
|
|
|
179
175
|
@pulumi.getter(name="privateNetworks")
|
|
180
176
|
def private_networks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['LoadbalancerPrivateNetworkArgs']]]]:
|
|
181
177
|
"""
|
|
182
|
-
List of private network to connect with your load balancer
|
|
178
|
+
List of private network to connect with your load balancer
|
|
183
179
|
"""
|
|
184
180
|
return pulumi.get(self, "private_networks")
|
|
185
181
|
|
|
@@ -275,16 +271,14 @@ class _LoadbalancerState:
|
|
|
275
271
|
:param pulumi.Input[bool] assign_flexible_ipv6: Defines whether to automatically assign a flexible public IPv6 to the Load Balancer.
|
|
276
272
|
:param pulumi.Input[str] description: The description of the Load Balancer.
|
|
277
273
|
:param pulumi.Input[str] ip_address: The Load Balancer public IPv4 address.
|
|
278
|
-
:param pulumi.Input[str] ip_id:
|
|
274
|
+
:param pulumi.Input[str] ip_id: The ID of the associated Load Balancer IP. See below.
|
|
279
275
|
|
|
280
276
|
> **Important:** Updates to `ip_id` will recreate the Load Balancer.
|
|
281
277
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_ids: The List of IP IDs to attach to the Load Balancer.
|
|
282
|
-
|
|
283
|
-
> **Important:** Make sure to use a `LoadbalancerIp` resource to create the IPs.
|
|
284
278
|
:param pulumi.Input[str] ipv6_address: The Load Balancer public IPv6 address.
|
|
285
279
|
:param pulumi.Input[str] name: The name of the Load Balancer.
|
|
286
280
|
:param pulumi.Input[str] organization_id: The ID of the Organization ID the Load Balancer is associated with.
|
|
287
|
-
:param pulumi.Input[Sequence[pulumi.Input['LoadbalancerPrivateNetworkArgs']]] private_networks: List of private network to connect with your load balancer
|
|
281
|
+
:param pulumi.Input[Sequence[pulumi.Input['LoadbalancerPrivateNetworkArgs']]] private_networks: List of private network to connect with your load balancer
|
|
288
282
|
:param pulumi.Input[str] project_id: `project_id`) The ID of the Project the Load Balancer is associated with.
|
|
289
283
|
:param pulumi.Input[str] region: The region of the resource
|
|
290
284
|
:param pulumi.Input[bool] release_ip: The `release_ip` allow the release of the IP address associated with the Load Balancer.
|
|
@@ -387,7 +381,7 @@ class _LoadbalancerState:
|
|
|
387
381
|
@_utilities.deprecated("""Please use ip_ids""")
|
|
388
382
|
def ip_id(self) -> Optional[pulumi.Input[str]]:
|
|
389
383
|
"""
|
|
390
|
-
|
|
384
|
+
The ID of the associated Load Balancer IP. See below.
|
|
391
385
|
|
|
392
386
|
> **Important:** Updates to `ip_id` will recreate the Load Balancer.
|
|
393
387
|
"""
|
|
@@ -402,8 +396,6 @@ class _LoadbalancerState:
|
|
|
402
396
|
def ip_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
403
397
|
"""
|
|
404
398
|
The List of IP IDs to attach to the Load Balancer.
|
|
405
|
-
|
|
406
|
-
> **Important:** Make sure to use a `LoadbalancerIp` resource to create the IPs.
|
|
407
399
|
"""
|
|
408
400
|
return pulumi.get(self, "ip_ids")
|
|
409
401
|
|
|
@@ -451,7 +443,7 @@ class _LoadbalancerState:
|
|
|
451
443
|
@pulumi.getter(name="privateNetworks")
|
|
452
444
|
def private_networks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['LoadbalancerPrivateNetworkArgs']]]]:
|
|
453
445
|
"""
|
|
454
|
-
List of private network to connect with your load balancer
|
|
446
|
+
List of private network to connect with your load balancer
|
|
455
447
|
"""
|
|
456
448
|
return pulumi.get(self, "private_networks")
|
|
457
449
|
|
|
@@ -631,7 +623,7 @@ class Loadbalancer(pulumi.CustomResource):
|
|
|
631
623
|
"private_network_id": pn01.id,
|
|
632
624
|
}])
|
|
633
625
|
v4 = scaleway.LoadbalancerIp("v4")
|
|
634
|
-
|
|
626
|
+
main = scaleway.Loadbalancer("main",
|
|
635
627
|
ip_ids=[v4.id],
|
|
636
628
|
name="my-lb",
|
|
637
629
|
type="LB-S",
|
|
@@ -641,12 +633,36 @@ class Loadbalancer(pulumi.CustomResource):
|
|
|
641
633
|
}])
|
|
642
634
|
```
|
|
643
635
|
|
|
644
|
-
##
|
|
636
|
+
## IP ID
|
|
637
|
+
|
|
638
|
+
Since v1.15.0, `ip_id` is a required field. This means that now a separate `LoadbalancerIp` is required.
|
|
639
|
+
When importing, the IP needs to be imported as well as the Load Balancer.
|
|
640
|
+
When upgrading to v1.15.0, you will need to create a new `LoadbalancerIp` resource and import it.
|
|
645
641
|
|
|
646
|
-
|
|
647
|
-
This change will not recreate your Load Balancer.
|
|
642
|
+
For instance, if you had the following:
|
|
648
643
|
|
|
649
|
-
|
|
644
|
+
```python
|
|
645
|
+
import pulumi
|
|
646
|
+
import pulumiverse_scaleway as scaleway
|
|
647
|
+
|
|
648
|
+
main = scaleway.Loadbalancer("main",
|
|
649
|
+
zone="fr-par-1",
|
|
650
|
+
type="LB-S")
|
|
651
|
+
```
|
|
652
|
+
|
|
653
|
+
You will need to update it to:
|
|
654
|
+
|
|
655
|
+
```python
|
|
656
|
+
import pulumi
|
|
657
|
+
import pulumiverse_scaleway as scaleway
|
|
658
|
+
|
|
659
|
+
main = scaleway.LoadbalancerIp("main")
|
|
660
|
+
main_loadbalancer = scaleway.Loadbalancer("main",
|
|
661
|
+
ip_id=main.id,
|
|
662
|
+
zone="fr-par-1",
|
|
663
|
+
type="LB-S",
|
|
664
|
+
release_ip=False)
|
|
665
|
+
```
|
|
650
666
|
|
|
651
667
|
## Import
|
|
652
668
|
|
|
@@ -665,14 +681,12 @@ class Loadbalancer(pulumi.CustomResource):
|
|
|
665
681
|
:param pulumi.Input[bool] assign_flexible_ip: Defines whether to automatically assign a flexible public IPv4 to the Load Balancer.
|
|
666
682
|
:param pulumi.Input[bool] assign_flexible_ipv6: Defines whether to automatically assign a flexible public IPv6 to the Load Balancer.
|
|
667
683
|
:param pulumi.Input[str] description: The description of the Load Balancer.
|
|
668
|
-
:param pulumi.Input[str] ip_id:
|
|
684
|
+
:param pulumi.Input[str] ip_id: The ID of the associated Load Balancer IP. See below.
|
|
669
685
|
|
|
670
686
|
> **Important:** Updates to `ip_id` will recreate the Load Balancer.
|
|
671
687
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_ids: The List of IP IDs to attach to the Load Balancer.
|
|
672
|
-
|
|
673
|
-
> **Important:** Make sure to use a `LoadbalancerIp` resource to create the IPs.
|
|
674
688
|
:param pulumi.Input[str] name: The name of the Load Balancer.
|
|
675
|
-
:param pulumi.Input[Sequence[pulumi.Input[Union['LoadbalancerPrivateNetworkArgs', 'LoadbalancerPrivateNetworkArgsDict']]]] private_networks: List of private network to connect with your load balancer
|
|
689
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['LoadbalancerPrivateNetworkArgs', 'LoadbalancerPrivateNetworkArgsDict']]]] private_networks: List of private network to connect with your load balancer
|
|
676
690
|
:param pulumi.Input[str] project_id: `project_id`) The ID of the Project the Load Balancer is associated with.
|
|
677
691
|
:param pulumi.Input[bool] release_ip: The `release_ip` allow the release of the IP address associated with the Load Balancer.
|
|
678
692
|
:param pulumi.Input[str] ssl_compatibility_level: Enforces minimal SSL version (in SSL/TLS offloading context). Please check [possible values](https://www.scaleway.com/en/developers/api/load-balancer/zoned-api/#path-load-balancer-create-a-load-balancer).
|
|
@@ -753,7 +767,7 @@ class Loadbalancer(pulumi.CustomResource):
|
|
|
753
767
|
"private_network_id": pn01.id,
|
|
754
768
|
}])
|
|
755
769
|
v4 = scaleway.LoadbalancerIp("v4")
|
|
756
|
-
|
|
770
|
+
main = scaleway.Loadbalancer("main",
|
|
757
771
|
ip_ids=[v4.id],
|
|
758
772
|
name="my-lb",
|
|
759
773
|
type="LB-S",
|
|
@@ -763,12 +777,36 @@ class Loadbalancer(pulumi.CustomResource):
|
|
|
763
777
|
}])
|
|
764
778
|
```
|
|
765
779
|
|
|
766
|
-
##
|
|
780
|
+
## IP ID
|
|
781
|
+
|
|
782
|
+
Since v1.15.0, `ip_id` is a required field. This means that now a separate `LoadbalancerIp` is required.
|
|
783
|
+
When importing, the IP needs to be imported as well as the Load Balancer.
|
|
784
|
+
When upgrading to v1.15.0, you will need to create a new `LoadbalancerIp` resource and import it.
|
|
785
|
+
|
|
786
|
+
For instance, if you had the following:
|
|
787
|
+
|
|
788
|
+
```python
|
|
789
|
+
import pulumi
|
|
790
|
+
import pulumiverse_scaleway as scaleway
|
|
791
|
+
|
|
792
|
+
main = scaleway.Loadbalancer("main",
|
|
793
|
+
zone="fr-par-1",
|
|
794
|
+
type="LB-S")
|
|
795
|
+
```
|
|
796
|
+
|
|
797
|
+
You will need to update it to:
|
|
767
798
|
|
|
768
|
-
|
|
769
|
-
|
|
799
|
+
```python
|
|
800
|
+
import pulumi
|
|
801
|
+
import pulumiverse_scaleway as scaleway
|
|
770
802
|
|
|
771
|
-
|
|
803
|
+
main = scaleway.LoadbalancerIp("main")
|
|
804
|
+
main_loadbalancer = scaleway.Loadbalancer("main",
|
|
805
|
+
ip_id=main.id,
|
|
806
|
+
zone="fr-par-1",
|
|
807
|
+
type="LB-S",
|
|
808
|
+
release_ip=False)
|
|
809
|
+
```
|
|
772
810
|
|
|
773
811
|
## Import
|
|
774
812
|
|
|
@@ -876,16 +914,14 @@ class Loadbalancer(pulumi.CustomResource):
|
|
|
876
914
|
:param pulumi.Input[bool] assign_flexible_ipv6: Defines whether to automatically assign a flexible public IPv6 to the Load Balancer.
|
|
877
915
|
:param pulumi.Input[str] description: The description of the Load Balancer.
|
|
878
916
|
:param pulumi.Input[str] ip_address: The Load Balancer public IPv4 address.
|
|
879
|
-
:param pulumi.Input[str] ip_id:
|
|
917
|
+
:param pulumi.Input[str] ip_id: The ID of the associated Load Balancer IP. See below.
|
|
880
918
|
|
|
881
919
|
> **Important:** Updates to `ip_id` will recreate the Load Balancer.
|
|
882
920
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_ids: The List of IP IDs to attach to the Load Balancer.
|
|
883
|
-
|
|
884
|
-
> **Important:** Make sure to use a `LoadbalancerIp` resource to create the IPs.
|
|
885
921
|
:param pulumi.Input[str] ipv6_address: The Load Balancer public IPv6 address.
|
|
886
922
|
:param pulumi.Input[str] name: The name of the Load Balancer.
|
|
887
923
|
:param pulumi.Input[str] organization_id: The ID of the Organization ID the Load Balancer is associated with.
|
|
888
|
-
:param pulumi.Input[Sequence[pulumi.Input[Union['LoadbalancerPrivateNetworkArgs', 'LoadbalancerPrivateNetworkArgsDict']]]] private_networks: List of private network to connect with your load balancer
|
|
924
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['LoadbalancerPrivateNetworkArgs', 'LoadbalancerPrivateNetworkArgsDict']]]] private_networks: List of private network to connect with your load balancer
|
|
889
925
|
:param pulumi.Input[str] project_id: `project_id`) The ID of the Project the Load Balancer is associated with.
|
|
890
926
|
:param pulumi.Input[str] region: The region of the resource
|
|
891
927
|
:param pulumi.Input[bool] release_ip: The `release_ip` allow the release of the IP address associated with the Load Balancer.
|
|
@@ -954,7 +990,7 @@ class Loadbalancer(pulumi.CustomResource):
|
|
|
954
990
|
@_utilities.deprecated("""Please use ip_ids""")
|
|
955
991
|
def ip_id(self) -> pulumi.Output[str]:
|
|
956
992
|
"""
|
|
957
|
-
|
|
993
|
+
The ID of the associated Load Balancer IP. See below.
|
|
958
994
|
|
|
959
995
|
> **Important:** Updates to `ip_id` will recreate the Load Balancer.
|
|
960
996
|
"""
|
|
@@ -965,8 +1001,6 @@ class Loadbalancer(pulumi.CustomResource):
|
|
|
965
1001
|
def ip_ids(self) -> pulumi.Output[Sequence[str]]:
|
|
966
1002
|
"""
|
|
967
1003
|
The List of IP IDs to attach to the Load Balancer.
|
|
968
|
-
|
|
969
|
-
> **Important:** Make sure to use a `LoadbalancerIp` resource to create the IPs.
|
|
970
1004
|
"""
|
|
971
1005
|
return pulumi.get(self, "ip_ids")
|
|
972
1006
|
|
|
@@ -998,7 +1032,7 @@ class Loadbalancer(pulumi.CustomResource):
|
|
|
998
1032
|
@pulumi.getter(name="privateNetworks")
|
|
999
1033
|
def private_networks(self) -> pulumi.Output[Optional[Sequence['outputs.LoadbalancerPrivateNetwork']]]:
|
|
1000
1034
|
"""
|
|
1001
|
-
List of private network to connect with your load balancer
|
|
1035
|
+
List of private network to connect with your load balancer
|
|
1002
1036
|
"""
|
|
1003
1037
|
return pulumi.get(self, "private_networks")
|
|
1004
1038
|
|
|
@@ -256,8 +256,6 @@ class MnqNatsCredentials(pulumi.CustomResource):
|
|
|
256
256
|
__props__.__dict__["name"] = name
|
|
257
257
|
__props__.__dict__["region"] = region
|
|
258
258
|
__props__.__dict__["file"] = None
|
|
259
|
-
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["file"])
|
|
260
|
-
opts = pulumi.ResourceOptions.merge(opts, secret_opts)
|
|
261
259
|
super(MnqNatsCredentials, __self__).__init__(
|
|
262
260
|
'scaleway:index/mnqNatsCredentials:MnqNatsCredentials',
|
|
263
261
|
resource_name,
|
pulumiverse_scaleway/outputs.py
CHANGED
|
@@ -4797,12 +4797,11 @@ class LoadbalancerPrivateNetwork(dict):
|
|
|
4797
4797
|
status: Optional[str] = None,
|
|
4798
4798
|
zone: Optional[str] = None):
|
|
4799
4799
|
"""
|
|
4800
|
-
:param str private_network_id: The ID of the Private Network to attach to.
|
|
4801
|
-
|
|
4802
|
-
:param
|
|
4803
|
-
:param str
|
|
4804
|
-
:param str
|
|
4805
|
-
:param str status: The status of the private network connection.
|
|
4800
|
+
:param str private_network_id: (Required) The ID of the Private Network to attach to.
|
|
4801
|
+
:param bool dhcp_config: (Deprecated) Please use `ipam_ids`. Set to `true` if you want to let DHCP assign IP addresses. See below.
|
|
4802
|
+
:param str ipam_ids: (Optional) IPAM ID of a pre-reserved IP address to assign to the Load Balancer on this Private Network.
|
|
4803
|
+
:param str static_config: (Deprecated) Please use `ipam_ids`. Define a local ip address of your choice for the load balancer instance.
|
|
4804
|
+
:param str status: The status of private network connection
|
|
4806
4805
|
:param str zone: `zone`) The zone of the Load Balancer.
|
|
4807
4806
|
"""
|
|
4808
4807
|
pulumi.set(__self__, "private_network_id", private_network_id)
|
|
@@ -4821,8 +4820,7 @@ class LoadbalancerPrivateNetwork(dict):
|
|
|
4821
4820
|
@pulumi.getter(name="privateNetworkId")
|
|
4822
4821
|
def private_network_id(self) -> str:
|
|
4823
4822
|
"""
|
|
4824
|
-
The ID of the Private Network to attach to.
|
|
4825
|
-
- > **Important:** Updates to `private_network` will recreate the attachment.
|
|
4823
|
+
(Required) The ID of the Private Network to attach to.
|
|
4826
4824
|
"""
|
|
4827
4825
|
return pulumi.get(self, "private_network_id")
|
|
4828
4826
|
|
|
@@ -4831,7 +4829,7 @@ class LoadbalancerPrivateNetwork(dict):
|
|
|
4831
4829
|
@_utilities.deprecated("""dhcp_config field is deprecated, please use `private_network_id` or `ipam_ids` instead""")
|
|
4832
4830
|
def dhcp_config(self) -> Optional[bool]:
|
|
4833
4831
|
"""
|
|
4834
|
-
Please use `ipam_ids`. Set to `true` if you want to let DHCP assign IP addresses.
|
|
4832
|
+
(Deprecated) Please use `ipam_ids`. Set to `true` if you want to let DHCP assign IP addresses. See below.
|
|
4835
4833
|
"""
|
|
4836
4834
|
return pulumi.get(self, "dhcp_config")
|
|
4837
4835
|
|
|
@@ -4839,7 +4837,7 @@ class LoadbalancerPrivateNetwork(dict):
|
|
|
4839
4837
|
@pulumi.getter(name="ipamIds")
|
|
4840
4838
|
def ipam_ids(self) -> Optional[str]:
|
|
4841
4839
|
"""
|
|
4842
|
-
IPAM ID of a pre-reserved IP address to assign to the Load Balancer on this Private Network.
|
|
4840
|
+
(Optional) IPAM ID of a pre-reserved IP address to assign to the Load Balancer on this Private Network.
|
|
4843
4841
|
"""
|
|
4844
4842
|
return pulumi.get(self, "ipam_ids")
|
|
4845
4843
|
|
|
@@ -4848,7 +4846,7 @@ class LoadbalancerPrivateNetwork(dict):
|
|
|
4848
4846
|
@_utilities.deprecated("""static_config field is deprecated, please use `private_network_id` or `ipam_ids` instead""")
|
|
4849
4847
|
def static_config(self) -> Optional[str]:
|
|
4850
4848
|
"""
|
|
4851
|
-
Please use `ipam_ids`. Define a local ip address of your choice for the load balancer instance.
|
|
4849
|
+
(Deprecated) Please use `ipam_ids`. Define a local ip address of your choice for the load balancer instance.
|
|
4852
4850
|
"""
|
|
4853
4851
|
return pulumi.get(self, "static_config")
|
|
4854
4852
|
|
|
@@ -4856,7 +4854,7 @@ class LoadbalancerPrivateNetwork(dict):
|
|
|
4856
4854
|
@pulumi.getter
|
|
4857
4855
|
def status(self) -> Optional[str]:
|
|
4858
4856
|
"""
|
|
4859
|
-
The status of
|
|
4857
|
+
The status of private network connection
|
|
4860
4858
|
"""
|
|
4861
4859
|
return pulumi.get(self, "status")
|
|
4862
4860
|
|
{pulumiverse_scaleway-1.21.0.dist-info → pulumiverse_scaleway-1.21.0a1730729553.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pulumiverse_scaleway
|
|
3
|
-
Version: 1.21.
|
|
3
|
+
Version: 1.21.0a1730729553
|
|
4
4
|
Summary: A Pulumi package for creating and managing Scaleway cloud resources.
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
Project-URL: Homepage, https://www.scaleway.com
|
|
@@ -8,10 +8,10 @@ Project-URL: Repository, https://github.com/pulumiverse/pulumi-scaleway
|
|
|
8
8
|
Keywords: pulumi,scaleway,pulumiverse
|
|
9
9
|
Requires-Python: >=3.8
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
11
|
-
Requires-Dist: parver>=0.2.1
|
|
12
|
-
Requires-Dist: pulumi<4.0.0,>=3.0.0
|
|
13
|
-
Requires-Dist: semver>=2.8.1
|
|
14
|
-
Requires-Dist: typing-extensions>=4.11; python_version < "3.11"
|
|
11
|
+
Requires-Dist: parver >=0.2.1
|
|
12
|
+
Requires-Dist: pulumi <4.0.0,>=3.0.0
|
|
13
|
+
Requires-Dist: semver >=2.8.1
|
|
14
|
+
Requires-Dist: typing-extensions >=4.11 ; python_version < "3.11"
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
# Scaleway Resource Provider
|
|
@@ -19,17 +19,6 @@ Requires-Dist: typing-extensions>=4.11; python_version < "3.11"
|
|
|
19
19
|
The Scaleway resource provider for Pulumi lets you creating resources in [Scaleway](https://www.scaleway.com). To use
|
|
20
20
|
this package, please [install the Pulumi CLI first](https://pulumi.com/).
|
|
21
21
|
|
|
22
|
-
## Support
|
|
23
|
-
|
|
24
|
-
This is a community maintained provider. Please file issues and feature requests here:
|
|
25
|
-
|
|
26
|
-
[pulumiverse/pulumi-scaleway](https://github.com/pulumiverse/pulumi-scaleway/issues)
|
|
27
|
-
|
|
28
|
-
You can also reach out on one of these channels:
|
|
29
|
-
|
|
30
|
-
* `#pulumiverse` channel on the [Pulumi Community Slack](https://slack.pulumi.com)
|
|
31
|
-
* `#pulumi` channel on the [Scaleway Community Slack](https://slack.scaleway.com)
|
|
32
|
-
|
|
33
22
|
## Installing
|
|
34
23
|
|
|
35
24
|
This package is available in many languages in the standard packaging formats.
|
|
@@ -38,40 +27,43 @@ This package is available in many languages in the standard packaging formats.
|
|
|
38
27
|
|
|
39
28
|
To use from JavaScript or TypeScript in Node.js, install using either `npm`:
|
|
40
29
|
|
|
41
|
-
```
|
|
42
|
-
npm install @pulumiverse/scaleway
|
|
30
|
+
```
|
|
31
|
+
$ npm install @pulumiverse/scaleway
|
|
43
32
|
```
|
|
44
33
|
|
|
45
34
|
or `yarn`:
|
|
46
35
|
|
|
47
|
-
```
|
|
48
|
-
yarn add @pulumiverse/scaleway
|
|
36
|
+
```
|
|
37
|
+
$ yarn add @pulumiverse/scaleway
|
|
49
38
|
```
|
|
50
39
|
|
|
51
40
|
### Python
|
|
52
41
|
|
|
53
42
|
To use from Python, install using `pip`:
|
|
54
43
|
|
|
55
|
-
```
|
|
56
|
-
pip install pulumiverse-scaleway
|
|
44
|
+
```
|
|
45
|
+
$ pip install pulumiverse-scaleway
|
|
57
46
|
```
|
|
58
47
|
|
|
59
48
|
### Go
|
|
60
49
|
|
|
61
50
|
To use from Go, use `go get` to grab the latest version of the library
|
|
62
51
|
|
|
63
|
-
```
|
|
64
|
-
go get github.com/pulumiverse/pulumi-scaleway/sdk/go/...
|
|
52
|
+
```
|
|
53
|
+
$ go get github.com/pulumiverse/pulumi-scaleway/sdk/go/...
|
|
65
54
|
```
|
|
66
55
|
|
|
67
56
|
### .NET
|
|
68
57
|
|
|
69
58
|
To use from Dotnet, use `dotnet add package` to install into your project. You must specify the version if it is a pre-release version.
|
|
70
59
|
|
|
71
|
-
|
|
72
|
-
|
|
60
|
+
|
|
61
|
+
```
|
|
62
|
+
$ dotnet add package Pulumiverse.Scaleway
|
|
73
63
|
```
|
|
74
64
|
|
|
75
65
|
## Reference
|
|
76
66
|
|
|
77
|
-
See the Pulumi registry for
|
|
67
|
+
See the Pulumi registry for API docs:
|
|
68
|
+
|
|
69
|
+
https://www.pulumi.com/registry/packages/scaleway/api-docs/
|
{pulumiverse_scaleway-1.21.0.dist-info → pulumiverse_scaleway-1.21.0a1730729553.dist-info}/RECORD
RENAMED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
pulumiverse_scaleway/__init__.py,sha256=YyPQMbZZWKrTHnWGPxMndrmbHwB3MMioi7xhcHCgLU0,26206
|
|
2
|
-
pulumiverse_scaleway/_inputs.py,sha256=
|
|
2
|
+
pulumiverse_scaleway/_inputs.py,sha256=1otN24CIcSs7_wFf-jzc0W8iVsIxz1h6Y4qWg6P6EMQ,327002
|
|
3
3
|
pulumiverse_scaleway/_utilities.py,sha256=6DPa1R8ih1x1D-UsJffEAW__gR8apXT9AVlozHhV3dE,10537
|
|
4
4
|
pulumiverse_scaleway/account_project.py,sha256=E4YNmkyc0wQJ8aE3Bdixjwrj054JSc8vkFbzLzRyqk8,12589
|
|
5
5
|
pulumiverse_scaleway/account_ssh_key.py,sha256=ZI_cW_eM6piT0UJTd2P5fASzRnk-zkJyPRO0WWIDFTw,17481
|
|
6
6
|
pulumiverse_scaleway/apple_silicon_server.py,sha256=OW15z0afAMHjedlJZZAuSwyMX3lyFExF9esJRHza0V0,21346
|
|
7
|
-
pulumiverse_scaleway/baremetal_server.py,sha256=
|
|
7
|
+
pulumiverse_scaleway/baremetal_server.py,sha256=AhXnJDzxdT8C3sad_Qs79BSlyGv4ZotZRCFv7IT0WKY,65181
|
|
8
8
|
pulumiverse_scaleway/block_snapshot.py,sha256=5KRJjvwp7Kzu7wesw51W-UE6_9ls2X30Q1ZnaMJiXzU,15961
|
|
9
9
|
pulumiverse_scaleway/block_volume.py,sha256=gSD2_4QYRTfeH_hyyxSwEcZIfp1LsL7EeEl24FlGR4w,21752
|
|
10
10
|
pulumiverse_scaleway/cockpit.py,sha256=LwKTPo1OEp94imrlVtVlInWjmUsQJvLbMwSM5v_UumY,13295
|
|
@@ -15,7 +15,7 @@ pulumiverse_scaleway/cockpit_token.py,sha256=an7fo6gaNyxk84Wi8uGxHq0lQYVwAud68wb
|
|
|
15
15
|
pulumiverse_scaleway/container.py,sha256=pdpuCztv1CIRSd6UeXKKIHsgfKs61O6nViBt1SWn4R4,63506
|
|
16
16
|
pulumiverse_scaleway/container_cron.py,sha256=6vpf48FeeHZ-qQuGY92hR7HVHGo7XBt9Ri3JRDfhM1U,19073
|
|
17
17
|
pulumiverse_scaleway/container_domain.py,sha256=PiH60GlpMzughkA1csEwP0YnyVi7Buw-Ls3mfxK8BL0,15422
|
|
18
|
-
pulumiverse_scaleway/container_namespace.py,sha256=
|
|
18
|
+
pulumiverse_scaleway/container_namespace.py,sha256=6BKILY_NpPPKH4oqlXYzAi9vq0Ye-dRZE6UyKPEzp9Q,26723
|
|
19
19
|
pulumiverse_scaleway/container_token.py,sha256=G15DrrzMPgDPydFHEMpMoPrbty2CbgeniX4vPELYQq4,18222
|
|
20
20
|
pulumiverse_scaleway/container_trigger.py,sha256=yZqGvtkUEAhhPsYUueAs0itzCPP6AU3AqhNnL8laMdU,19719
|
|
21
21
|
pulumiverse_scaleway/database.py,sha256=tEBynliK1qqD0oN4YIeIz26zDJhpBmiEW3Zjlmy1rag,14613
|
|
@@ -32,7 +32,7 @@ pulumiverse_scaleway/flexible_ip_mac_address.py,sha256=L1MBIdYkJd1M-dTEfldnhPTVv
|
|
|
32
32
|
pulumiverse_scaleway/function.py,sha256=d3UuVan9xVzgko9Mxsgkg0jamxAD12qoYuvAz_YL6oU,52853
|
|
33
33
|
pulumiverse_scaleway/function_cron.py,sha256=tao7JV7DxNOVXOTm4TxkCK_wpnLdTZXkf4MuLpPNEkM,18937
|
|
34
34
|
pulumiverse_scaleway/function_domain.py,sha256=QmNFefxoTWtymIMOO3p7MrB_gypXy-WoTlJKAPbHTNI,15117
|
|
35
|
-
pulumiverse_scaleway/function_namespace.py,sha256=
|
|
35
|
+
pulumiverse_scaleway/function_namespace.py,sha256=PXZrfaGorfaSiGxVJRR4h0mzcs63DRkKGACE85vwqhg,23772
|
|
36
36
|
pulumiverse_scaleway/function_token.py,sha256=2vcp-kORkkvOoGYJ5RxT4c5kSitp-uggTmHJrXtgIMM,18313
|
|
37
37
|
pulumiverse_scaleway/function_trigger.py,sha256=YDQJMiwBWOogPKtj-bw7Hul54Fz2LmPmFRe87RDgUsw,19587
|
|
38
38
|
pulumiverse_scaleway/get_account_project.py,sha256=BsZuMHHDojYMk1jcEGTgSAZrh4ogUWm7vv14yDbWTPk,7633
|
|
@@ -41,7 +41,7 @@ pulumiverse_scaleway/get_availability_zones.py,sha256=z4N2eeoBuhu1wFPscRPtJ2k32W
|
|
|
41
41
|
pulumiverse_scaleway/get_baremetal_offer.py,sha256=cJCt80gBgDHvKf3mIJake_41iAFb4N7RqBJhVVHuvL0,10420
|
|
42
42
|
pulumiverse_scaleway/get_baremetal_option.py,sha256=Wf72C57sKkgKBFdUXfmEkMFhTBYc2fXNGwH5hbHwTkE,6347
|
|
43
43
|
pulumiverse_scaleway/get_baremetal_os.py,sha256=VZgvZZMnV-ePkyuWB_vNUUtDh2AebI000UaXQVgKh4g,6677
|
|
44
|
-
pulumiverse_scaleway/get_baremetal_server.py,sha256=
|
|
44
|
+
pulumiverse_scaleway/get_baremetal_server.py,sha256=PtdrSTWhw-dl3Vqnfh2AeaYZ9rrLtJP8yLJDIpARoys,17284
|
|
45
45
|
pulumiverse_scaleway/get_billing_consumptions.py,sha256=sVhXikEQqMeVmiCOZoQUML2VEINlyB7tgTlY-kdbaWs,5320
|
|
46
46
|
pulumiverse_scaleway/get_billing_invoices.py,sha256=KVZDQFzvBYbO17AgH9UddKBP4nfu7EaDpucd_VfsgmE,6774
|
|
47
47
|
pulumiverse_scaleway/get_block_snapshot.py,sha256=TP6I8mYo6xKov8jabU3pZ0Cp8bSO9Ayck05hGpnG5M4,7675
|
|
@@ -50,7 +50,7 @@ pulumiverse_scaleway/get_cockpit.py,sha256=AW5MY4GkUPYjDGNJJuO_uOAuMU7xxH-f6VQw4
|
|
|
50
50
|
pulumiverse_scaleway/get_cockpit_plan.py,sha256=vU7JCOSn5e01UQDcVfzweZoELCyBDenX4MBLoltzupI,4990
|
|
51
51
|
pulumiverse_scaleway/get_config.py,sha256=BaWCAAImkzRmhcsPH7BCaLY9pIq3kyeQ0Ke5Te9kQr0,7427
|
|
52
52
|
pulumiverse_scaleway/get_container.py,sha256=k4oYtDyE-8hs8JLDHpbJSpeYk_Yx0WyY-BQDjqITWUA,22149
|
|
53
|
-
pulumiverse_scaleway/get_container_namespace.py,sha256=
|
|
53
|
+
pulumiverse_scaleway/get_container_namespace.py,sha256=QTYu4h3M-ICNV6_-SWQvevGc6iUrgHVRWmAXqG-oAVY,12483
|
|
54
54
|
pulumiverse_scaleway/get_database.py,sha256=Yw7ajm0OLLDRV2Ta9j6-XGPaW4DchE_KZ-wy7Q1mFh4,6424
|
|
55
55
|
pulumiverse_scaleway/get_database_acl.py,sha256=EtlKA_amQF3osvONskJNUOIYz3sgoKK_8S22d2gIbYI,5353
|
|
56
56
|
pulumiverse_scaleway/get_database_backup.py,sha256=FM3-ZxDZxpec62oEmbhNAkit-1TCDrCZRt7XPn8MlFU,10405
|
|
@@ -61,12 +61,12 @@ pulumiverse_scaleway/get_domain_zone.py,sha256=SQZN2hA1Hepr3PwH6To5rZyc9Ri5QlA6t
|
|
|
61
61
|
pulumiverse_scaleway/get_flexible_ip.py,sha256=SN4OKjLwD5NRJijf3F1UlUC-n0BA6pc6-j8cmpSHA70,9944
|
|
62
62
|
pulumiverse_scaleway/get_flexible_ips.py,sha256=Hz6Qi4W_Bed_pSKHCQnHdo4F73HpZPepj1ahBzL3oAU,8956
|
|
63
63
|
pulumiverse_scaleway/get_function.py,sha256=AVXuTxFmEfzkixhVDuAw-SEdiI_3Y0BJ4vC7i2pgwn0,16545
|
|
64
|
-
pulumiverse_scaleway/get_function_namespace.py,sha256=
|
|
64
|
+
pulumiverse_scaleway/get_function_namespace.py,sha256=QyAgoYxkozJxSltQp3p1ZwVFR2dOomvhcS2wWtK-leA,10889
|
|
65
65
|
pulumiverse_scaleway/get_iam_api_key.py,sha256=irIp68T5E4G0fD_yyfhdu7a0-V3uxmIjyMpZwL2JqNM,8449
|
|
66
66
|
pulumiverse_scaleway/get_iam_application.py,sha256=Hp07qtwQHsyVvLmO-2IAjFlI6rYQwnVH9LBdxqJzYrM,8334
|
|
67
67
|
pulumiverse_scaleway/get_iam_group.py,sha256=HErvlD3NzfIm_unLAR3b0VH3jLxP6iwpfyVtW0w2X-A,9448
|
|
68
68
|
pulumiverse_scaleway/get_iam_ssh_key.py,sha256=s9xsIkpaUPQOxiR4pJ5OUMAzDu2e4uuJHEhAMCwEarQ,8321
|
|
69
|
-
pulumiverse_scaleway/get_iam_user.py,sha256=
|
|
69
|
+
pulumiverse_scaleway/get_iam_user.py,sha256=k90sJKXTi2Ftn78FT4vRbJVX25RBSTIJ7lgVTU-LSE4,6006
|
|
70
70
|
pulumiverse_scaleway/get_instance_image.py,sha256=P7XvMqJSYY01zfOvjcKdyDJ_vEFQScd6BWPhqyTcRH8,13054
|
|
71
71
|
pulumiverse_scaleway/get_instance_ip.py,sha256=n0wVT0Amj7sCNFxnvC7927ROFoPtRkYboSLnL22ECoQ,7456
|
|
72
72
|
pulumiverse_scaleway/get_instance_placement_group.py,sha256=uEooaftFK-yyCVcU_1PQiIRyjePpgriuPbTeCls0MLc,9417
|
|
@@ -94,7 +94,7 @@ pulumiverse_scaleway/get_lb_routes.py,sha256=458uBdjDM7FXhpmtuJRvM6fTBhHelMvy9NH
|
|
|
94
94
|
pulumiverse_scaleway/get_lbs.py,sha256=k2bLFrLFX0E6CR-9eeeqgZjo4RgRT-bRiTkOmT9wmf0,7376
|
|
95
95
|
pulumiverse_scaleway/get_loadbalancer.py,sha256=4BPoNed95re-6v3_Md5RjnXHA9FB18GJbwnZX2rmZMU,14201
|
|
96
96
|
pulumiverse_scaleway/get_loadbalancer_certificate.py,sha256=81Hv580xPed8WjrIU2iUaJa9rPjlN-hMzdDRC6y7a04,10950
|
|
97
|
-
pulumiverse_scaleway/get_loadbalancer_ip.py,sha256=
|
|
97
|
+
pulumiverse_scaleway/get_loadbalancer_ip.py,sha256=jrEGl-fDa08aRlNh8t1EgWr-TuXy0_eVqJhmjBXD2I0,9103
|
|
98
98
|
pulumiverse_scaleway/get_marketplace_image.py,sha256=5WWQHKsgrfy_fYtpMY5D8L7GxtrJM-PvRjFh8baCxrs,5780
|
|
99
99
|
pulumiverse_scaleway/get_mnq_sns.py,sha256=dIZ27qfbABpoewlpLgYq0VAPRTiVe0Vrgma7Do_ilG0,5024
|
|
100
100
|
pulumiverse_scaleway/get_mnq_sqs.py,sha256=01gry1BX4cK76ffjHS4EYRvEoKrM1VdAMKe8nt_eeV0,5024
|
|
@@ -126,7 +126,7 @@ pulumiverse_scaleway/iam_group.py,sha256=4c5crp7FJdkgHosIqxzpxxsvEYXR7CmrnTLgw7J
|
|
|
126
126
|
pulumiverse_scaleway/iam_group_membership.py,sha256=ObP9GZEVxoCO6tXaHUMxwzITWgnJyS0-Nijf9NG6O80,12532
|
|
127
127
|
pulumiverse_scaleway/iam_policy.py,sha256=rEHyZ_T-a19DgqlKfFkP7aura9Bgj0Y9_0pZWlfS9VI,31080
|
|
128
128
|
pulumiverse_scaleway/iam_ssh_key.py,sha256=itgODOljktwCKlNn-4x9zLdscE07s4y5j2GDtmf1kEM,16812
|
|
129
|
-
pulumiverse_scaleway/iam_user.py,sha256=
|
|
129
|
+
pulumiverse_scaleway/iam_user.py,sha256=2gzp9mahQwQhDpxkldLTzZ1mv2kHcS0jubYLkwfYMPQ,18166
|
|
130
130
|
pulumiverse_scaleway/inference_deployment.py,sha256=l2njUeyGX5HRSkUR3phcT8YH-TDMuadSOSwntetvxPw,35071
|
|
131
131
|
pulumiverse_scaleway/instance_image.py,sha256=8zfZncK-CnglWjeOow3omD08hH8tylOmLWpiFtZ4LGs,31133
|
|
132
132
|
pulumiverse_scaleway/instance_ip.py,sha256=BWfgB3eu817qYvHl-KiyZobtLrAy6Aw4IGq1XNxw2sY,19084
|
|
@@ -135,7 +135,7 @@ pulumiverse_scaleway/instance_placement_group.py,sha256=MFMit29D_GR3CR1WDXDFbZRT
|
|
|
135
135
|
pulumiverse_scaleway/instance_private_nic.py,sha256=sfgvywxZqS_NraKPmmYWKXc-Tm33nqmMOBa25mnE5wE,22228
|
|
136
136
|
pulumiverse_scaleway/instance_security_group.py,sha256=ZAGUmOZ_TfoIqyNLM79XwwRWIN_8M7TY1spDOsrnJoI,36463
|
|
137
137
|
pulumiverse_scaleway/instance_security_group_rules.py,sha256=fTtpJb-1C-3v8KuifuAI-kO2A07X4-1uCnSgHyvmy3U,20598
|
|
138
|
-
pulumiverse_scaleway/instance_server.py,sha256=
|
|
138
|
+
pulumiverse_scaleway/instance_server.py,sha256=S2nF-RsKVVJjdlzFNpJhMttYJn74bUwwQagajl-f_Lg,99703
|
|
139
139
|
pulumiverse_scaleway/instance_snapshot.py,sha256=7Xmwb37dJ9SfQC10iM3C4CeNFuyYekbTZG0-r_u_2rI,26212
|
|
140
140
|
pulumiverse_scaleway/instance_user_data.py,sha256=kodKcDiIYlUI-Ihqfpekbej534OW0ml149zK79jFMDk,16897
|
|
141
141
|
pulumiverse_scaleway/instance_volume.py,sha256=u8efM0Gj4MBJwvOyjexN2tEaj_bh9kN3D8e3-fR35yM,22511
|
|
@@ -148,7 +148,7 @@ pulumiverse_scaleway/ipam_ip_reverse_dns.py,sha256=U6ZxlI8EPSOD_N59L5uJ65BpevZQd
|
|
|
148
148
|
pulumiverse_scaleway/job_definition.py,sha256=Y5NAIAXSYnVHdRswbpiN2qsyfUfuVscT-XMrGEc7NQk,27335
|
|
149
149
|
pulumiverse_scaleway/kubernetes_cluster.py,sha256=jIURny5R7ewsUxsrFASJGdUDQObhwnuRBrEK40OvZpU,72226
|
|
150
150
|
pulumiverse_scaleway/kubernetes_node_pool.py,sha256=7v0hqwNM5ZeP3z5xBQICHi93x1L6QLBeuM0kzgiCygM,59176
|
|
151
|
-
pulumiverse_scaleway/loadbalancer.py,sha256=
|
|
151
|
+
pulumiverse_scaleway/loadbalancer.py,sha256=2iOgAtMlVQ_d3dmoO0HdQeW3JcwSXHr1QLb_2CHACP0,46417
|
|
152
152
|
pulumiverse_scaleway/loadbalancer_acl.py,sha256=3uwbt9qSQUX2zrVojLMc8IDlo3Ti9gF9139E8Obyveo,21178
|
|
153
153
|
pulumiverse_scaleway/loadbalancer_backend.py,sha256=G89zJww3xLEEPYHuvKo36yeVCkRvL5ILHz8JyQKj1sU,75495
|
|
154
154
|
pulumiverse_scaleway/loadbalancer_certificate.py,sha256=l6dnqycjH0pzDBimGYhUf99vGRH5Q82zFefFVl2RZLo,20353
|
|
@@ -156,7 +156,7 @@ pulumiverse_scaleway/loadbalancer_frontend.py,sha256=wTFhT29SG6fYRipma5njIFUQbcw
|
|
|
156
156
|
pulumiverse_scaleway/loadbalancer_ip.py,sha256=y1jnKSIDBLknU_6S8yPQtu82rmaJ6OrfMnckO7eq6Tk,19328
|
|
157
157
|
pulumiverse_scaleway/loadbalancer_route.py,sha256=6-YCHmDbBKqhpEP8VsG_p79li-zVrGLRN_1kXCnqRHU,22637
|
|
158
158
|
pulumiverse_scaleway/mnq_nats_account.py,sha256=tqa4VoywjVPuO2VbB2gz7vjf35Cq8asinPaC9EXcVoY,12261
|
|
159
|
-
pulumiverse_scaleway/mnq_nats_credentials.py,sha256=
|
|
159
|
+
pulumiverse_scaleway/mnq_nats_credentials.py,sha256=MgHVnl2vU15ZTVC-A-qHERW9BvoAiWzw3whhAQAKbmQ,12053
|
|
160
160
|
pulumiverse_scaleway/mnq_sns.py,sha256=-AnYvwKfYCdD0-BnTWmGqCK_yNIvt-XKHoaMW1e9QtE,10820
|
|
161
161
|
pulumiverse_scaleway/mnq_sns_credentials.py,sha256=TWcfhFkxSvQnQqtkrhdVsNq_moG4vWQ4eFdsM_lHBXw,16546
|
|
162
162
|
pulumiverse_scaleway/mnq_sns_topic.py,sha256=-QfzyCN61Tf8mhnsjqxbqki7oSoOp21p8mZfdwETC3k,27577
|
|
@@ -172,9 +172,9 @@ pulumiverse_scaleway/object_bucket_lock_configuration.py,sha256=dGlZSNqhU9ZVAov7
|
|
|
172
172
|
pulumiverse_scaleway/object_bucket_policy.py,sha256=GxGiWrEevynIea2zuGVLm9KTPdIN3LYy4KaoEN0CuMg,25181
|
|
173
173
|
pulumiverse_scaleway/object_bucket_website_configuration.py,sha256=WU1OVhYpVZz9UYhbCH-Hv8_odRTBkb5OoGoVkoTUccc,23900
|
|
174
174
|
pulumiverse_scaleway/object_item.py,sha256=bGt9KrQkEYrvZqhfl_8OdPUElGFQ9cu5SKqIOrXvdmQ,31011
|
|
175
|
-
pulumiverse_scaleway/outputs.py,sha256=
|
|
175
|
+
pulumiverse_scaleway/outputs.py,sha256=HUNEH4pVtGqdrqAOZ9pdRz-kR99LRQL7K827wDHddsQ,411381
|
|
176
176
|
pulumiverse_scaleway/provider.py,sha256=peWeLAx4wsEDPL35OtX2F5JKvy1SDcIAjyNwBA-VLW0,12821
|
|
177
|
-
pulumiverse_scaleway/pulumi-plugin.json,sha256=
|
|
177
|
+
pulumiverse_scaleway/pulumi-plugin.json,sha256=a1reTtmdcH87KEX-gd4i5LkExrIxg3jiW6Dp2JYzut4,136
|
|
178
178
|
pulumiverse_scaleway/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
179
179
|
pulumiverse_scaleway/redis_cluster.py,sha256=g30_Gfl9YKsRegXj0BE4K6SWfhhweWOcTqoweAaoC5k,53091
|
|
180
180
|
pulumiverse_scaleway/registry_namespace.py,sha256=d_zZrGqutVEIdjORSO0WzrBI0Jlwy5H4hNxyX-eHRCQ,17828
|
|
@@ -198,7 +198,7 @@ pulumiverse_scaleway/webhosting.py,sha256=ITSACl6FDSRz0_YPJhtiEVfnKiWeIRGGvgfsuw
|
|
|
198
198
|
pulumiverse_scaleway/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
199
199
|
pulumiverse_scaleway/config/__init__.pyi,sha256=BHsZ5qXz88BMFi_l7oW5X1wTGLrA-F2BGKK1orsUZCM,1036
|
|
200
200
|
pulumiverse_scaleway/config/vars.py,sha256=kOAHH8xWWS2SXrnyuSDW0mJbWUok5L_42GjO_lmbqXo,2129
|
|
201
|
-
pulumiverse_scaleway-1.21.
|
|
202
|
-
pulumiverse_scaleway-1.21.
|
|
203
|
-
pulumiverse_scaleway-1.21.
|
|
204
|
-
pulumiverse_scaleway-1.21.
|
|
201
|
+
pulumiverse_scaleway-1.21.0a1730729553.dist-info/METADATA,sha256=zyHlS2ewrp3jTl_JWAewcz4vVmvdegi3t0Lx6CtZ4Hw,1644
|
|
202
|
+
pulumiverse_scaleway-1.21.0a1730729553.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
|
|
203
|
+
pulumiverse_scaleway-1.21.0a1730729553.dist-info/top_level.txt,sha256=nZh5pqyc9FpoAll32zwyBXyAUg_m-XQXqk_YOJ5Ih2g,21
|
|
204
|
+
pulumiverse_scaleway-1.21.0a1730729553.dist-info/RECORD,,
|
|
File without changes
|