pulumiverse-scaleway 1.27.1__py3-none-any.whl → 1.28.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/__init__.py +16 -0
- pulumiverse_scaleway/_inputs.py +498 -6
- pulumiverse_scaleway/baremetal_server.py +48 -258
- pulumiverse_scaleway/database_instance.py +42 -21
- pulumiverse_scaleway/databases/_inputs.py +54 -0
- pulumiverse_scaleway/databases/get_instance.py +12 -1
- pulumiverse_scaleway/databases/instance.py +42 -21
- pulumiverse_scaleway/databases/outputs.py +62 -0
- pulumiverse_scaleway/databases/snapshot.py +2 -2
- pulumiverse_scaleway/elasticmetal/_inputs.py +74 -0
- pulumiverse_scaleway/elasticmetal/get_server.py +12 -1
- pulumiverse_scaleway/elasticmetal/outputs.py +87 -0
- pulumiverse_scaleway/elasticmetal/server.py +48 -258
- pulumiverse_scaleway/get_baremetal_server.py +12 -1
- pulumiverse_scaleway/get_cockpit_plan.py +2 -38
- pulumiverse_scaleway/get_database_instance.py +12 -1
- pulumiverse_scaleway/get_instance_private_nic.py +13 -1
- pulumiverse_scaleway/get_instance_server.py +12 -1
- pulumiverse_scaleway/get_lb_route.py +12 -1
- pulumiverse_scaleway/get_loadbalancer.py +12 -1
- pulumiverse_scaleway/get_redis_cluster.py +12 -1
- pulumiverse_scaleway/get_vpc_gateway_network.py +12 -1
- pulumiverse_scaleway/inference/__init__.py +2 -0
- pulumiverse_scaleway/inference/_inputs.py +128 -0
- pulumiverse_scaleway/inference/deployment.py +70 -55
- pulumiverse_scaleway/inference/get_model.py +299 -0
- pulumiverse_scaleway/inference/model.py +683 -0
- pulumiverse_scaleway/inference/outputs.py +184 -0
- pulumiverse_scaleway/inference_deployment.py +70 -55
- pulumiverse_scaleway/instance/_inputs.py +108 -0
- pulumiverse_scaleway/instance/get_private_nic.py +13 -1
- pulumiverse_scaleway/instance/get_server.py +12 -1
- pulumiverse_scaleway/instance/outputs.py +124 -0
- pulumiverse_scaleway/instance/private_nic.py +30 -0
- pulumiverse_scaleway/instance/server.py +28 -0
- pulumiverse_scaleway/instance_private_nic.py +30 -0
- pulumiverse_scaleway/instance_server.py +28 -0
- pulumiverse_scaleway/kubernetes/__init__.py +1 -0
- pulumiverse_scaleway/kubernetes/_inputs.py +203 -0
- pulumiverse_scaleway/kubernetes/acl.py +446 -0
- pulumiverse_scaleway/kubernetes/outputs.py +195 -1
- pulumiverse_scaleway/loadbalancer.py +28 -0
- pulumiverse_scaleway/loadbalancer_route.py +138 -14
- pulumiverse_scaleway/loadbalancers/_inputs.py +54 -0
- pulumiverse_scaleway/loadbalancers/get_load_balancer.py +12 -1
- pulumiverse_scaleway/loadbalancers/get_route.py +12 -1
- pulumiverse_scaleway/loadbalancers/load_balancer.py +28 -0
- pulumiverse_scaleway/loadbalancers/outputs.py +62 -0
- pulumiverse_scaleway/loadbalancers/route.py +138 -14
- pulumiverse_scaleway/mnq/sns_credentials.py +7 -7
- pulumiverse_scaleway/mnq/sqs_credentials.py +7 -7
- pulumiverse_scaleway/mnq_sns_credentials.py +7 -7
- pulumiverse_scaleway/mnq_sqs_credentials.py +7 -7
- pulumiverse_scaleway/network/_inputs.py +54 -0
- pulumiverse_scaleway/network/gateway_network.py +28 -0
- pulumiverse_scaleway/network/get_gateway_network.py +12 -1
- pulumiverse_scaleway/network/outputs.py +62 -0
- pulumiverse_scaleway/network/route.py +90 -2
- pulumiverse_scaleway/observability/get_plan.py +2 -38
- pulumiverse_scaleway/outputs.py +574 -5
- pulumiverse_scaleway/pulumi-plugin.json +1 -1
- pulumiverse_scaleway/rdb_snapshot.py +2 -2
- pulumiverse_scaleway/redis/_inputs.py +60 -6
- pulumiverse_scaleway/redis/cluster.py +28 -0
- pulumiverse_scaleway/redis/get_cluster.py +12 -1
- pulumiverse_scaleway/redis/outputs.py +66 -4
- pulumiverse_scaleway/redis_cluster.py +28 -0
- pulumiverse_scaleway/vpc_gateway_network.py +28 -0
- pulumiverse_scaleway/vpc_route.py +90 -2
- {pulumiverse_scaleway-1.27.1.dist-info → pulumiverse_scaleway-1.28.0.dist-info}/METADATA +1 -1
- {pulumiverse_scaleway-1.27.1.dist-info → pulumiverse_scaleway-1.28.0.dist-info}/RECORD +73 -70
- {pulumiverse_scaleway-1.27.1.dist-info → pulumiverse_scaleway-1.28.0.dist-info}/WHEEL +1 -1
- {pulumiverse_scaleway-1.27.1.dist-info → pulumiverse_scaleway-1.28.0.dist-info}/top_level.txt +0 -0
@@ -13,22 +13,108 @@ if sys.version_info >= (3, 11):
|
|
13
13
|
else:
|
14
14
|
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
15
|
from .. import _utilities
|
16
|
+
from . import outputs
|
16
17
|
|
17
18
|
__all__ = [
|
19
|
+
'AclAclRule',
|
18
20
|
'ClusterAutoUpgrade',
|
19
21
|
'ClusterAutoscalerConfig',
|
20
22
|
'ClusterKubeconfig',
|
21
23
|
'ClusterOpenIdConnectConfig',
|
22
24
|
'PoolNode',
|
25
|
+
'PoolNodePrivateIp',
|
23
26
|
'PoolUpgradePolicy',
|
24
27
|
'GetClusterAutoUpgradeResult',
|
25
28
|
'GetClusterAutoscalerConfigResult',
|
26
29
|
'GetClusterKubeconfigResult',
|
27
30
|
'GetClusterOpenIdConnectConfigResult',
|
28
31
|
'GetPoolNodeResult',
|
32
|
+
'GetPoolNodePrivateIpResult',
|
29
33
|
'GetPoolUpgradePolicyResult',
|
30
34
|
]
|
31
35
|
|
36
|
+
@pulumi.output_type
|
37
|
+
class AclAclRule(dict):
|
38
|
+
@staticmethod
|
39
|
+
def __key_warning(key: str):
|
40
|
+
suggest = None
|
41
|
+
if key == "scalewayRanges":
|
42
|
+
suggest = "scaleway_ranges"
|
43
|
+
|
44
|
+
if suggest:
|
45
|
+
pulumi.log.warn(f"Key '{key}' not found in AclAclRule. Access the value via the '{suggest}' property getter instead.")
|
46
|
+
|
47
|
+
def __getitem__(self, key: str) -> Any:
|
48
|
+
AclAclRule.__key_warning(key)
|
49
|
+
return super().__getitem__(key)
|
50
|
+
|
51
|
+
def get(self, key: str, default = None) -> Any:
|
52
|
+
AclAclRule.__key_warning(key)
|
53
|
+
return super().get(key, default)
|
54
|
+
|
55
|
+
def __init__(__self__, *,
|
56
|
+
description: Optional[str] = None,
|
57
|
+
id: Optional[str] = None,
|
58
|
+
ip: Optional[str] = None,
|
59
|
+
scaleway_ranges: Optional[bool] = None):
|
60
|
+
"""
|
61
|
+
:param str description: A text describing this rule.
|
62
|
+
:param str id: The ID of the ACL resource. It is the same as the ID of the cluster.
|
63
|
+
:param str ip: The IP range to whitelist in [CIDR notation](https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing#CIDR_notation)
|
64
|
+
|
65
|
+
> **Important:** If the `ip` field is set, `scaleway_ranges` cannot be set to true in the same rule.
|
66
|
+
:param bool scaleway_ranges: Allow access to cluster from all Scaleway ranges as defined in [Scaleway Network Information - IP ranges used by Scaleway](https://www.scaleway.com/en/docs/console/account/reference-content/scaleway-network-information/#ip-ranges-used-by-scaleway).
|
67
|
+
Only one rule with this field set to true can be added.
|
68
|
+
|
69
|
+
> **Important:** If the `scaleway_ranges` field is set to true, the `ip` field cannot be set on the same rule.
|
70
|
+
"""
|
71
|
+
if description is not None:
|
72
|
+
pulumi.set(__self__, "description", description)
|
73
|
+
if id is not None:
|
74
|
+
pulumi.set(__self__, "id", id)
|
75
|
+
if ip is not None:
|
76
|
+
pulumi.set(__self__, "ip", ip)
|
77
|
+
if scaleway_ranges is not None:
|
78
|
+
pulumi.set(__self__, "scaleway_ranges", scaleway_ranges)
|
79
|
+
|
80
|
+
@property
|
81
|
+
@pulumi.getter
|
82
|
+
def description(self) -> Optional[str]:
|
83
|
+
"""
|
84
|
+
A text describing this rule.
|
85
|
+
"""
|
86
|
+
return pulumi.get(self, "description")
|
87
|
+
|
88
|
+
@property
|
89
|
+
@pulumi.getter
|
90
|
+
def id(self) -> Optional[str]:
|
91
|
+
"""
|
92
|
+
The ID of the ACL resource. It is the same as the ID of the cluster.
|
93
|
+
"""
|
94
|
+
return pulumi.get(self, "id")
|
95
|
+
|
96
|
+
@property
|
97
|
+
@pulumi.getter
|
98
|
+
def ip(self) -> Optional[str]:
|
99
|
+
"""
|
100
|
+
The IP range to whitelist in [CIDR notation](https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing#CIDR_notation)
|
101
|
+
|
102
|
+
> **Important:** If the `ip` field is set, `scaleway_ranges` cannot be set to true in the same rule.
|
103
|
+
"""
|
104
|
+
return pulumi.get(self, "ip")
|
105
|
+
|
106
|
+
@property
|
107
|
+
@pulumi.getter(name="scalewayRanges")
|
108
|
+
def scaleway_ranges(self) -> Optional[bool]:
|
109
|
+
"""
|
110
|
+
Allow access to cluster from all Scaleway ranges as defined in [Scaleway Network Information - IP ranges used by Scaleway](https://www.scaleway.com/en/docs/console/account/reference-content/scaleway-network-information/#ip-ranges-used-by-scaleway).
|
111
|
+
Only one rule with this field set to true can be added.
|
112
|
+
|
113
|
+
> **Important:** If the `scaleway_ranges` field is set to true, the `ip` field cannot be set on the same rule.
|
114
|
+
"""
|
115
|
+
return pulumi.get(self, "scaleway_ranges")
|
116
|
+
|
117
|
+
|
32
118
|
@pulumi.output_type
|
33
119
|
class ClusterAutoUpgrade(dict):
|
34
120
|
@staticmethod
|
@@ -445,7 +531,9 @@ class PoolNode(dict):
|
|
445
531
|
@staticmethod
|
446
532
|
def __key_warning(key: str):
|
447
533
|
suggest = None
|
448
|
-
if key == "
|
534
|
+
if key == "privateIps":
|
535
|
+
suggest = "private_ips"
|
536
|
+
elif key == "publicIp":
|
449
537
|
suggest = "public_ip"
|
450
538
|
elif key == "publicIpV6":
|
451
539
|
suggest = "public_ip_v6"
|
@@ -462,20 +550,28 @@ class PoolNode(dict):
|
|
462
550
|
return super().get(key, default)
|
463
551
|
|
464
552
|
def __init__(__self__, *,
|
553
|
+
id: Optional[str] = None,
|
465
554
|
name: Optional[str] = None,
|
555
|
+
private_ips: Optional[Sequence['outputs.PoolNodePrivateIp']] = None,
|
466
556
|
public_ip: Optional[str] = None,
|
467
557
|
public_ip_v6: Optional[str] = None,
|
468
558
|
status: Optional[str] = None):
|
469
559
|
"""
|
560
|
+
:param str id: The ID of the IP address resource.
|
470
561
|
:param str name: The name for the pool.
|
471
562
|
|
472
563
|
> **Important:** Updates to this field will recreate a new resource.
|
564
|
+
:param Sequence['PoolNodePrivateIpArgs'] private_ips: The list of private IPv4 and IPv6 addresses associated with the node.
|
473
565
|
:param str public_ip: The public IPv4. (Deprecated, Please use the official Kubernetes provider and the kubernetes_nodes data source)
|
474
566
|
:param str public_ip_v6: The public IPv6. (Deprecated, Please use the official Kubernetes provider and the kubernetes_nodes data source)
|
475
567
|
:param str status: The status of the node.
|
476
568
|
"""
|
569
|
+
if id is not None:
|
570
|
+
pulumi.set(__self__, "id", id)
|
477
571
|
if name is not None:
|
478
572
|
pulumi.set(__self__, "name", name)
|
573
|
+
if private_ips is not None:
|
574
|
+
pulumi.set(__self__, "private_ips", private_ips)
|
479
575
|
if public_ip is not None:
|
480
576
|
pulumi.set(__self__, "public_ip", public_ip)
|
481
577
|
if public_ip_v6 is not None:
|
@@ -483,6 +579,14 @@ class PoolNode(dict):
|
|
483
579
|
if status is not None:
|
484
580
|
pulumi.set(__self__, "status", status)
|
485
581
|
|
582
|
+
@property
|
583
|
+
@pulumi.getter
|
584
|
+
def id(self) -> Optional[str]:
|
585
|
+
"""
|
586
|
+
The ID of the IP address resource.
|
587
|
+
"""
|
588
|
+
return pulumi.get(self, "id")
|
589
|
+
|
486
590
|
@property
|
487
591
|
@pulumi.getter
|
488
592
|
def name(self) -> Optional[str]:
|
@@ -493,6 +597,14 @@ class PoolNode(dict):
|
|
493
597
|
"""
|
494
598
|
return pulumi.get(self, "name")
|
495
599
|
|
600
|
+
@property
|
601
|
+
@pulumi.getter(name="privateIps")
|
602
|
+
def private_ips(self) -> Optional[Sequence['outputs.PoolNodePrivateIp']]:
|
603
|
+
"""
|
604
|
+
The list of private IPv4 and IPv6 addresses associated with the node.
|
605
|
+
"""
|
606
|
+
return pulumi.get(self, "private_ips")
|
607
|
+
|
496
608
|
@property
|
497
609
|
@pulumi.getter(name="publicIp")
|
498
610
|
@_utilities.deprecated("""Please use the official Kubernetes provider and the kubernetes_nodes data source""")
|
@@ -520,6 +632,37 @@ class PoolNode(dict):
|
|
520
632
|
return pulumi.get(self, "status")
|
521
633
|
|
522
634
|
|
635
|
+
@pulumi.output_type
|
636
|
+
class PoolNodePrivateIp(dict):
|
637
|
+
def __init__(__self__, *,
|
638
|
+
address: Optional[str] = None,
|
639
|
+
id: Optional[str] = None):
|
640
|
+
"""
|
641
|
+
:param str address: The private IP address.
|
642
|
+
:param str id: The ID of the IP address resource.
|
643
|
+
"""
|
644
|
+
if address is not None:
|
645
|
+
pulumi.set(__self__, "address", address)
|
646
|
+
if id is not None:
|
647
|
+
pulumi.set(__self__, "id", id)
|
648
|
+
|
649
|
+
@property
|
650
|
+
@pulumi.getter
|
651
|
+
def address(self) -> Optional[str]:
|
652
|
+
"""
|
653
|
+
The private IP address.
|
654
|
+
"""
|
655
|
+
return pulumi.get(self, "address")
|
656
|
+
|
657
|
+
@property
|
658
|
+
@pulumi.getter
|
659
|
+
def id(self) -> Optional[str]:
|
660
|
+
"""
|
661
|
+
The ID of the IP address resource.
|
662
|
+
"""
|
663
|
+
return pulumi.get(self, "id")
|
664
|
+
|
665
|
+
|
523
666
|
@pulumi.output_type
|
524
667
|
class PoolUpgradePolicy(dict):
|
525
668
|
@staticmethod
|
@@ -865,21 +1008,35 @@ class GetClusterOpenIdConnectConfigResult(dict):
|
|
865
1008
|
@pulumi.output_type
|
866
1009
|
class GetPoolNodeResult(dict):
|
867
1010
|
def __init__(__self__, *,
|
1011
|
+
id: str,
|
868
1012
|
name: str,
|
1013
|
+
private_ips: Sequence['outputs.GetPoolNodePrivateIpResult'],
|
869
1014
|
public_ip: str,
|
870
1015
|
public_ip_v6: str,
|
871
1016
|
status: str):
|
872
1017
|
"""
|
1018
|
+
:param str id: The ID of the pool.
|
873
1019
|
:param str name: The pool name. Only one of `name` and `pool_id` should be specified. `cluster_id` should be specified with `name`.
|
1020
|
+
:param Sequence['GetPoolNodePrivateIpArgs'] private_ips: List of private IPv4 and IPv6 addresses associated with the node
|
874
1021
|
:param str public_ip: The public IPv4.
|
875
1022
|
:param str public_ip_v6: The public IPv6.
|
876
1023
|
:param str status: The status of the node.
|
877
1024
|
"""
|
1025
|
+
pulumi.set(__self__, "id", id)
|
878
1026
|
pulumi.set(__self__, "name", name)
|
1027
|
+
pulumi.set(__self__, "private_ips", private_ips)
|
879
1028
|
pulumi.set(__self__, "public_ip", public_ip)
|
880
1029
|
pulumi.set(__self__, "public_ip_v6", public_ip_v6)
|
881
1030
|
pulumi.set(__self__, "status", status)
|
882
1031
|
|
1032
|
+
@property
|
1033
|
+
@pulumi.getter
|
1034
|
+
def id(self) -> str:
|
1035
|
+
"""
|
1036
|
+
The ID of the pool.
|
1037
|
+
"""
|
1038
|
+
return pulumi.get(self, "id")
|
1039
|
+
|
883
1040
|
@property
|
884
1041
|
@pulumi.getter
|
885
1042
|
def name(self) -> str:
|
@@ -888,6 +1045,14 @@ class GetPoolNodeResult(dict):
|
|
888
1045
|
"""
|
889
1046
|
return pulumi.get(self, "name")
|
890
1047
|
|
1048
|
+
@property
|
1049
|
+
@pulumi.getter(name="privateIps")
|
1050
|
+
def private_ips(self) -> Sequence['outputs.GetPoolNodePrivateIpResult']:
|
1051
|
+
"""
|
1052
|
+
List of private IPv4 and IPv6 addresses associated with the node
|
1053
|
+
"""
|
1054
|
+
return pulumi.get(self, "private_ips")
|
1055
|
+
|
891
1056
|
@property
|
892
1057
|
@pulumi.getter(name="publicIp")
|
893
1058
|
def public_ip(self) -> str:
|
@@ -913,6 +1078,35 @@ class GetPoolNodeResult(dict):
|
|
913
1078
|
return pulumi.get(self, "status")
|
914
1079
|
|
915
1080
|
|
1081
|
+
@pulumi.output_type
|
1082
|
+
class GetPoolNodePrivateIpResult(dict):
|
1083
|
+
def __init__(__self__, *,
|
1084
|
+
address: str,
|
1085
|
+
id: str):
|
1086
|
+
"""
|
1087
|
+
:param str address: The private IP address
|
1088
|
+
:param str id: The ID of the pool.
|
1089
|
+
"""
|
1090
|
+
pulumi.set(__self__, "address", address)
|
1091
|
+
pulumi.set(__self__, "id", id)
|
1092
|
+
|
1093
|
+
@property
|
1094
|
+
@pulumi.getter
|
1095
|
+
def address(self) -> str:
|
1096
|
+
"""
|
1097
|
+
The private IP address
|
1098
|
+
"""
|
1099
|
+
return pulumi.get(self, "address")
|
1100
|
+
|
1101
|
+
@property
|
1102
|
+
@pulumi.getter
|
1103
|
+
def id(self) -> str:
|
1104
|
+
"""
|
1105
|
+
The ID of the pool.
|
1106
|
+
"""
|
1107
|
+
return pulumi.get(self, "id")
|
1108
|
+
|
1109
|
+
|
916
1110
|
@pulumi.output_type
|
917
1111
|
class GetPoolUpgradePolicyResult(dict):
|
918
1112
|
def __init__(__self__, *,
|
@@ -261,6 +261,7 @@ class _LoadbalancerState:
|
|
261
261
|
ipv6_address: Optional[pulumi.Input[str]] = None,
|
262
262
|
name: Optional[pulumi.Input[str]] = None,
|
263
263
|
organization_id: Optional[pulumi.Input[str]] = None,
|
264
|
+
private_ips: Optional[pulumi.Input[Sequence[pulumi.Input['LoadbalancerPrivateIpArgs']]]] = None,
|
264
265
|
private_networks: Optional[pulumi.Input[Sequence[pulumi.Input['LoadbalancerPrivateNetworkArgs']]]] = None,
|
265
266
|
project_id: Optional[pulumi.Input[str]] = None,
|
266
267
|
region: Optional[pulumi.Input[str]] = None,
|
@@ -284,6 +285,7 @@ class _LoadbalancerState:
|
|
284
285
|
:param pulumi.Input[str] ipv6_address: The Load Balancer public IPv6 address.
|
285
286
|
:param pulumi.Input[str] name: The name of the Load Balancer.
|
286
287
|
:param pulumi.Input[str] organization_id: The ID of the Organization ID the Load Balancer is associated with.
|
288
|
+
:param pulumi.Input[Sequence[pulumi.Input['LoadbalancerPrivateIpArgs']]] private_ips: The list of private IPv4 and IPv6 addresses associated with the resource.
|
287
289
|
:param pulumi.Input[Sequence[pulumi.Input['LoadbalancerPrivateNetworkArgs']]] private_networks: List of private network to connect with your load balancer.
|
288
290
|
:param pulumi.Input[str] project_id: `project_id`) The ID of the Project the Load Balancer is associated with.
|
289
291
|
:param pulumi.Input[str] region: The region of the resource
|
@@ -314,6 +316,8 @@ class _LoadbalancerState:
|
|
314
316
|
pulumi.set(__self__, "name", name)
|
315
317
|
if organization_id is not None:
|
316
318
|
pulumi.set(__self__, "organization_id", organization_id)
|
319
|
+
if private_ips is not None:
|
320
|
+
pulumi.set(__self__, "private_ips", private_ips)
|
317
321
|
if private_networks is not None:
|
318
322
|
pulumi.set(__self__, "private_networks", private_networks)
|
319
323
|
if project_id is not None:
|
@@ -447,6 +451,18 @@ class _LoadbalancerState:
|
|
447
451
|
def organization_id(self, value: Optional[pulumi.Input[str]]):
|
448
452
|
pulumi.set(self, "organization_id", value)
|
449
453
|
|
454
|
+
@property
|
455
|
+
@pulumi.getter(name="privateIps")
|
456
|
+
def private_ips(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['LoadbalancerPrivateIpArgs']]]]:
|
457
|
+
"""
|
458
|
+
The list of private IPv4 and IPv6 addresses associated with the resource.
|
459
|
+
"""
|
460
|
+
return pulumi.get(self, "private_ips")
|
461
|
+
|
462
|
+
@private_ips.setter
|
463
|
+
def private_ips(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['LoadbalancerPrivateIpArgs']]]]):
|
464
|
+
pulumi.set(self, "private_ips", value)
|
465
|
+
|
450
466
|
@property
|
451
467
|
@pulumi.getter(name="privateNetworks")
|
452
468
|
def private_networks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['LoadbalancerPrivateNetworkArgs']]]]:
|
@@ -843,6 +859,7 @@ class Loadbalancer(pulumi.CustomResource):
|
|
843
859
|
__props__.__dict__["ip_address"] = None
|
844
860
|
__props__.__dict__["ipv6_address"] = None
|
845
861
|
__props__.__dict__["organization_id"] = None
|
862
|
+
__props__.__dict__["private_ips"] = None
|
846
863
|
__props__.__dict__["region"] = None
|
847
864
|
super(Loadbalancer, __self__).__init__(
|
848
865
|
'scaleway:index/loadbalancer:Loadbalancer',
|
@@ -863,6 +880,7 @@ class Loadbalancer(pulumi.CustomResource):
|
|
863
880
|
ipv6_address: Optional[pulumi.Input[str]] = None,
|
864
881
|
name: Optional[pulumi.Input[str]] = None,
|
865
882
|
organization_id: Optional[pulumi.Input[str]] = None,
|
883
|
+
private_ips: Optional[pulumi.Input[Sequence[pulumi.Input[Union['LoadbalancerPrivateIpArgs', 'LoadbalancerPrivateIpArgsDict']]]]] = None,
|
866
884
|
private_networks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['LoadbalancerPrivateNetworkArgs', 'LoadbalancerPrivateNetworkArgsDict']]]]] = None,
|
867
885
|
project_id: Optional[pulumi.Input[str]] = None,
|
868
886
|
region: Optional[pulumi.Input[str]] = None,
|
@@ -891,6 +909,7 @@ class Loadbalancer(pulumi.CustomResource):
|
|
891
909
|
:param pulumi.Input[str] ipv6_address: The Load Balancer public IPv6 address.
|
892
910
|
:param pulumi.Input[str] name: The name of the Load Balancer.
|
893
911
|
:param pulumi.Input[str] organization_id: The ID of the Organization ID the Load Balancer is associated with.
|
912
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['LoadbalancerPrivateIpArgs', 'LoadbalancerPrivateIpArgsDict']]]] private_ips: The list of private IPv4 and IPv6 addresses associated with the resource.
|
894
913
|
:param pulumi.Input[Sequence[pulumi.Input[Union['LoadbalancerPrivateNetworkArgs', 'LoadbalancerPrivateNetworkArgsDict']]]] private_networks: List of private network to connect with your load balancer.
|
895
914
|
:param pulumi.Input[str] project_id: `project_id`) The ID of the Project the Load Balancer is associated with.
|
896
915
|
:param pulumi.Input[str] region: The region of the resource
|
@@ -913,6 +932,7 @@ class Loadbalancer(pulumi.CustomResource):
|
|
913
932
|
__props__.__dict__["ipv6_address"] = ipv6_address
|
914
933
|
__props__.__dict__["name"] = name
|
915
934
|
__props__.__dict__["organization_id"] = organization_id
|
935
|
+
__props__.__dict__["private_ips"] = private_ips
|
916
936
|
__props__.__dict__["private_networks"] = private_networks
|
917
937
|
__props__.__dict__["project_id"] = project_id
|
918
938
|
__props__.__dict__["region"] = region
|
@@ -1000,6 +1020,14 @@ class Loadbalancer(pulumi.CustomResource):
|
|
1000
1020
|
"""
|
1001
1021
|
return pulumi.get(self, "organization_id")
|
1002
1022
|
|
1023
|
+
@property
|
1024
|
+
@pulumi.getter(name="privateIps")
|
1025
|
+
def private_ips(self) -> pulumi.Output[Sequence['outputs.LoadbalancerPrivateIp']]:
|
1026
|
+
"""
|
1027
|
+
The list of private IPv4 and IPv6 addresses associated with the resource.
|
1028
|
+
"""
|
1029
|
+
return pulumi.get(self, "private_ips")
|
1030
|
+
|
1003
1031
|
@property
|
1004
1032
|
@pulumi.getter(name="privateNetworks")
|
1005
1033
|
def private_networks(self) -> pulumi.Output[Optional[Sequence['outputs.LoadbalancerPrivateNetwork']]]:
|