File tree Expand file tree Collapse file tree 4 files changed +18
-0
lines changed
scaleway-async/scaleway_async/k8s/v1 Expand file tree Collapse file tree 4 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -468,6 +468,10 @@ def unmarshal_Cluster(data: Any) -> Cluster:
468
468
if field is not None :
469
469
args ["apiserver_cert_sans" ] = field
470
470
471
+ field = data .get ("iam_nodes_group_id" , None )
472
+ if field is not None :
473
+ args ["iam_nodes_group_id" ] = field
474
+
471
475
field = data .get ("open_id_connect_config" , None )
472
476
if field is not None :
473
477
args ["open_id_connect_config" ] = unmarshal_ClusterOpenIDConnectConfig (field )
Original file line number Diff line number Diff line change @@ -892,6 +892,11 @@ class Cluster:
892
892
Additional Subject Alternative Names for the Kubernetes API server certificate.
893
893
"""
894
894
895
+ iam_nodes_group_id : str
896
+ """
897
+ IAM group that nodes are members of (this field might be empty during early stage of cluster creation).
898
+ """
899
+
895
900
open_id_connect_config : Optional [ClusterOpenIDConnectConfig ]
896
901
"""
897
902
This configuration enables to update the OpenID Connect configuration of the Kubernetes API server.
Original file line number Diff line number Diff line change @@ -468,6 +468,10 @@ def unmarshal_Cluster(data: Any) -> Cluster:
468
468
if field is not None :
469
469
args ["apiserver_cert_sans" ] = field
470
470
471
+ field = data .get ("iam_nodes_group_id" , None )
472
+ if field is not None :
473
+ args ["iam_nodes_group_id" ] = field
474
+
471
475
field = data .get ("open_id_connect_config" , None )
472
476
if field is not None :
473
477
args ["open_id_connect_config" ] = unmarshal_ClusterOpenIDConnectConfig (field )
Original file line number Diff line number Diff line change @@ -892,6 +892,11 @@ class Cluster:
892
892
Additional Subject Alternative Names for the Kubernetes API server certificate.
893
893
"""
894
894
895
+ iam_nodes_group_id : str
896
+ """
897
+ IAM group that nodes are members of (this field might be empty during early stage of cluster creation).
898
+ """
899
+
895
900
open_id_connect_config : Optional [ClusterOpenIDConnectConfig ]
896
901
"""
897
902
This configuration enables to update the OpenID Connect configuration of the Kubernetes API server.
You can’t perform that action at this time.
0 commit comments