You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: scaleway-async/scaleway_async/k8s/v1/api.py
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -858,6 +858,7 @@ async def create_pool(
858
858
container_runtime: Runtime,
859
859
autohealing: bool,
860
860
root_volume_type: PoolVolumeType,
861
+
public_ip_disabled: bool,
861
862
region: Optional[Region] =None,
862
863
name: Optional[str] =None,
863
864
placement_group_id: Optional[str] =None,
@@ -889,6 +890,7 @@ async def create_pool(
889
890
:param zone: Zone in which the pool's nodes will be spawned.
890
891
:param root_volume_type: Defines the system volume disk type. Two different types of volume (`volume_type`) are provided: `l_ssd` is a local block storage which means your system is stored locally on your node's hypervisor. `b_ssd` is a remote block storage which means your system is stored on a centralized and resilient cluster.
891
892
:param root_volume_size: System volume disk size.
893
+
:param public_ip_disabled: Defines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway.
Copy file name to clipboardExpand all lines: scaleway-async/scaleway_async/k8s/v1/types.py
+15Lines changed: 15 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -695,6 +695,11 @@ class CreateClusterRequestPoolConfig:
695
695
System volume disk size.
696
696
"""
697
697
698
+
public_ip_disabled: bool
699
+
"""
700
+
Defines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway.
701
+
"""
702
+
698
703
699
704
@dataclass
700
705
classCreateClusterRequestPoolConfigUpgradePolicy:
@@ -1051,6 +1056,11 @@ class Pool:
1051
1056
System volume disk size.
1052
1057
"""
1053
1058
1059
+
public_ip_disabled: bool
1060
+
"""
1061
+
Defines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway.
1062
+
"""
1063
+
1054
1064
region: Region
1055
1065
"""
1056
1066
Cluster region of the pool.
@@ -1722,6 +1732,11 @@ class CreatePoolRequest:
1722
1732
System volume disk size.
1723
1733
"""
1724
1734
1735
+
public_ip_disabled: bool
1736
+
"""
1737
+
Defines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway.
Copy file name to clipboardExpand all lines: scaleway/scaleway/k8s/v1/api.py
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -858,6 +858,7 @@ def create_pool(
858
858
container_runtime: Runtime,
859
859
autohealing: bool,
860
860
root_volume_type: PoolVolumeType,
861
+
public_ip_disabled: bool,
861
862
region: Optional[Region] =None,
862
863
name: Optional[str] =None,
863
864
placement_group_id: Optional[str] =None,
@@ -889,6 +890,7 @@ def create_pool(
889
890
:param zone: Zone in which the pool's nodes will be spawned.
890
891
:param root_volume_type: Defines the system volume disk type. Two different types of volume (`volume_type`) are provided: `l_ssd` is a local block storage which means your system is stored locally on your node's hypervisor. `b_ssd` is a remote block storage which means your system is stored on a centralized and resilient cluster.
891
892
:param root_volume_size: System volume disk size.
893
+
:param public_ip_disabled: Defines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway.
Copy file name to clipboardExpand all lines: scaleway/scaleway/k8s/v1/types.py
+15Lines changed: 15 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -695,6 +695,11 @@ class CreateClusterRequestPoolConfig:
695
695
System volume disk size.
696
696
"""
697
697
698
+
public_ip_disabled: bool
699
+
"""
700
+
Defines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway.
701
+
"""
702
+
698
703
699
704
@dataclass
700
705
classCreateClusterRequestPoolConfigUpgradePolicy:
@@ -1051,6 +1056,11 @@ class Pool:
1051
1056
System volume disk size.
1052
1057
"""
1053
1058
1059
+
public_ip_disabled: bool
1060
+
"""
1061
+
Defines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway.
1062
+
"""
1063
+
1054
1064
region: Region
1055
1065
"""
1056
1066
Cluster region of the pool.
@@ -1722,6 +1732,11 @@ class CreatePoolRequest:
1722
1732
System volume disk size.
1723
1733
"""
1724
1734
1735
+
public_ip_disabled: bool
1736
+
"""
1737
+
Defines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway.
0 commit comments