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
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -217,6 +217,7 @@ async def create_cluster(
217
217
CreateClusterRequestOpenIDConnectConfig
218
218
] =None,
219
219
apiserver_cert_sans: Optional[List[str]] =None,
220
+
private_network_id: Optional[str] =None,
220
221
) ->Cluster:
221
222
"""
222
223
Create a new cluster.
@@ -247,6 +248,7 @@ async def create_cluster(
247
248
:param open_id_connect_config: ALPHA - OpenID Connect configuration of the cluster.
248
249
This feature is in ALPHA state, it may be deleted or modified. This configuration enables to set the [OpenID Connect configuration](https://kubernetes.io/docs/reference/access-authn-authz/authentication/#openid-connect-tokens) of the Kubernetes API server.
249
250
:param apiserver_cert_sans: Additional Subject Alternative Names for the Kubernetes API server certificate.
251
+
:param private_network_id: Private network ID for internal cluster communication (cannot be changed later).
Copy file name to clipboardExpand all lines: scaleway/scaleway/k8s/v1/api.py
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -217,6 +217,7 @@ def create_cluster(
217
217
CreateClusterRequestOpenIDConnectConfig
218
218
] =None,
219
219
apiserver_cert_sans: Optional[List[str]] =None,
220
+
private_network_id: Optional[str] =None,
220
221
) ->Cluster:
221
222
"""
222
223
Create a new cluster.
@@ -247,6 +248,7 @@ def create_cluster(
247
248
:param open_id_connect_config: ALPHA - OpenID Connect configuration of the cluster.
248
249
This feature is in ALPHA state, it may be deleted or modified. This configuration enables to set the [OpenID Connect configuration](https://kubernetes.io/docs/reference/access-authn-authz/authentication/#openid-connect-tokens) of the Kubernetes API server.
249
250
:param apiserver_cert_sans: Additional Subject Alternative Names for the Kubernetes API server certificate.
251
+
:param private_network_id: Private network ID for internal cluster communication (cannot be changed later).
0 commit comments