Skip to content
This repository has been archived by the owner on Nov 29, 2023. It is now read-only.

feat: allow updating security group on existing clusters #123

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 6 additions & 0 deletions google/cloud/container_v1/types/cluster_service.py
Expand Up @@ -1401,6 +1401,9 @@ class ClusterUpdate(proto.Message):
default sNAT for this cluster.
desired_release_channel (google.cloud.container_v1.types.ReleaseChannel):
The desired release channel configuration.
desired_authenticator_groups_config (google.cloud.container_v1.types.AuthenticatorGroupsConfig):
The desired authenticator groups config for
the cluster.
desired_master_version (str):
The Kubernetes version to change the master
to.
Expand Down Expand Up @@ -1464,6 +1467,9 @@ class ClusterUpdate(proto.Message):
desired_release_channel = proto.Field(
proto.MESSAGE, number=31, message="ReleaseChannel",
)
desired_authenticator_groups_config = proto.Field(
proto.MESSAGE, number=63, message="AuthenticatorGroupsConfig",
)
desired_master_version = proto.Field(proto.STRING, number=100,)


Expand Down