google-cloud-container-v1 1.2.0 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d8578002655a35daf9203fb19a2f376dbeb317c6e03bc372a5b063bb56c5c808
4
- data.tar.gz: c3c9815003d215b36cf6b827b26f859a5e34e04ef81d5041591bd36c8e487cb9
3
+ metadata.gz: 9a80fe2449f9b51eba1f610d72004fed590716d3a958aca93ae4b3fc78c3c536
4
+ data.tar.gz: ef55358fac8a4c4d0bace4a806e4b332299ea936420d45e2f133135f149ffb56
5
5
  SHA512:
6
- metadata.gz: 95d122a680429e2de156f4734f6ce94483b071bb7a36e8114c141bf07f0e13fbdd1a113b0a36d554a5534eee5b86d770da62afae6d9e8afd5a6aad5db11b34d7
7
- data.tar.gz: 8a3bd18775189d1e63f052669fec06d47eff6d115cca3d81e3af45470d5e0066f62c6dcabc8311de363385113ee3e0109e9c22f8c71b4548efa8e21b01252caa
6
+ metadata.gz: f926ea3adc66af5779f92badb661a55acd9eb2952420064e8900940647efce869c29ae28a0513bc0a61017f4b5b834fcdf9b0ca35d17dc1a5a166e2093dcdde0
7
+ data.tar.gz: aa9ec44538977ba1638a730ef97dc853888612c24452fb389875a3a5cf8e6e87ce0a3947e75f2a1946e2c93c5c3b19b600076773af545fbe64e3aa567e30ca6b
@@ -673,7 +673,7 @@ module Google
673
673
  # @param options [::Gapic::CallOptions, ::Hash]
674
674
  # Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
675
675
  #
676
- # @overload update_node_pool(project_id: nil, zone: nil, cluster_id: nil, node_pool_id: nil, node_version: nil, image_type: nil, name: nil, locations: nil, workload_metadata_config: nil, upgrade_settings: nil, tags: nil, taints: nil, labels: nil, linux_node_config: nil, kubelet_config: nil, node_network_config: nil, gcfs_config: nil, confidential_nodes: nil, gvnic: nil, etag: nil, fast_socket: nil, logging_config: nil, resource_labels: nil, windows_node_config: nil, accelerators: nil, machine_type: nil, disk_type: nil, disk_size_gb: nil, resource_manager_tags: nil, containerd_config: nil, queued_provisioning: nil)
676
+ # @overload update_node_pool(project_id: nil, zone: nil, cluster_id: nil, node_pool_id: nil, node_version: nil, image_type: nil, name: nil, locations: nil, workload_metadata_config: nil, upgrade_settings: nil, tags: nil, taints: nil, labels: nil, linux_node_config: nil, kubelet_config: nil, node_network_config: nil, gcfs_config: nil, confidential_nodes: nil, gvnic: nil, etag: nil, fast_socket: nil, logging_config: nil, resource_labels: nil, windows_node_config: nil, accelerators: nil, machine_type: nil, disk_type: nil, disk_size_gb: nil, resource_manager_tags: nil, containerd_config: nil, queued_provisioning: nil, storage_pools: nil)
677
677
  # Pass arguments to `update_node_pool` via keyword arguments. Note that at
678
678
  # least one keyword argument is required. To specify no parameters, or to keep all
679
679
  # the default parameter values, pass an empty Hash as a request object (see above).
@@ -790,6 +790,9 @@ module Google
790
790
  # config.
791
791
  # @param queued_provisioning [::Google::Cloud::Container::V1::NodePool::QueuedProvisioning, ::Hash]
792
792
  # Specifies the configuration of queued provisioning.
793
+ # @param storage_pools [::Array<::String>]
794
+ # List of Storage Pools where boot disks are provisioned.
795
+ # Existing Storage Pools will be replaced with storage-pools.
793
796
  #
794
797
  # @yield [response, operation] Access the result along with the RPC operation
795
798
  # @yieldparam response [::Google::Cloud::Container::V1::Operation]
@@ -24,6 +24,48 @@ module Google
24
24
  module ClusterManager
25
25
  # Path helper methods for the ClusterManager API.
26
26
  module Paths
27
+ ##
28
+ # Create a fully-qualified CaPool resource string.
29
+ #
30
+ # The resource will be in the following format:
31
+ #
32
+ # `projects/{project}/locations/{location}/caPools/{ca_pool}`
33
+ #
34
+ # @param project [String]
35
+ # @param location [String]
36
+ # @param ca_pool [String]
37
+ #
38
+ # @return [::String]
39
+ def ca_pool_path project:, location:, ca_pool:
40
+ raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
41
+ raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"
42
+
43
+ "projects/#{project}/locations/#{location}/caPools/#{ca_pool}"
44
+ end
45
+
46
+ ##
47
+ # Create a fully-qualified CryptoKeyVersion resource string.
48
+ #
49
+ # The resource will be in the following format:
50
+ #
51
+ # `projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}/cryptoKeyVersions/{crypto_key_version}`
52
+ #
53
+ # @param project [String]
54
+ # @param location [String]
55
+ # @param key_ring [String]
56
+ # @param crypto_key [String]
57
+ # @param crypto_key_version [String]
58
+ #
59
+ # @return [::String]
60
+ def crypto_key_version_path project:, location:, key_ring:, crypto_key:, crypto_key_version:
61
+ raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
62
+ raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"
63
+ raise ::ArgumentError, "key_ring cannot contain /" if key_ring.to_s.include? "/"
64
+ raise ::ArgumentError, "crypto_key cannot contain /" if crypto_key.to_s.include? "/"
65
+
66
+ "projects/#{project}/locations/#{location}/keyRings/#{key_ring}/cryptoKeys/#{crypto_key}/cryptoKeyVersions/#{crypto_key_version}"
67
+ end
68
+
27
69
  ##
28
70
  # Create a fully-qualified Topic resource string.
29
71
  #
@@ -638,7 +638,7 @@ module Google
638
638
  # @param options [::Gapic::CallOptions, ::Hash]
639
639
  # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
640
640
  #
641
- # @overload update_node_pool(project_id: nil, zone: nil, cluster_id: nil, node_pool_id: nil, node_version: nil, image_type: nil, name: nil, locations: nil, workload_metadata_config: nil, upgrade_settings: nil, tags: nil, taints: nil, labels: nil, linux_node_config: nil, kubelet_config: nil, node_network_config: nil, gcfs_config: nil, confidential_nodes: nil, gvnic: nil, etag: nil, fast_socket: nil, logging_config: nil, resource_labels: nil, windows_node_config: nil, accelerators: nil, machine_type: nil, disk_type: nil, disk_size_gb: nil, resource_manager_tags: nil, containerd_config: nil, queued_provisioning: nil)
641
+ # @overload update_node_pool(project_id: nil, zone: nil, cluster_id: nil, node_pool_id: nil, node_version: nil, image_type: nil, name: nil, locations: nil, workload_metadata_config: nil, upgrade_settings: nil, tags: nil, taints: nil, labels: nil, linux_node_config: nil, kubelet_config: nil, node_network_config: nil, gcfs_config: nil, confidential_nodes: nil, gvnic: nil, etag: nil, fast_socket: nil, logging_config: nil, resource_labels: nil, windows_node_config: nil, accelerators: nil, machine_type: nil, disk_type: nil, disk_size_gb: nil, resource_manager_tags: nil, containerd_config: nil, queued_provisioning: nil, storage_pools: nil)
642
642
  # Pass arguments to `update_node_pool` via keyword arguments. Note that at
643
643
  # least one keyword argument is required. To specify no parameters, or to keep all
644
644
  # the default parameter values, pass an empty Hash as a request object (see above).
@@ -755,6 +755,9 @@ module Google
755
755
  # config.
756
756
  # @param queued_provisioning [::Google::Cloud::Container::V1::NodePool::QueuedProvisioning, ::Hash]
757
757
  # Specifies the configuration of queued provisioning.
758
+ # @param storage_pools [::Array<::String>]
759
+ # List of Storage Pools where boot disks are provisioned.
760
+ # Existing Storage Pools will be replaced with storage-pools.
758
761
  # @yield [result, operation] Access the result along with the TransportOperation object
759
762
  # @yieldparam result [::Google::Cloud::Container::V1::Operation]
760
763
  # @yieldparam operation [::Gapic::Rest::TransportOperation]
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Container
23
23
  module V1
24
- VERSION = "1.2.0"
24
+ VERSION = "1.3.0"
25
25
  end
26
26
  end
27
27
  end
@@ -16,7 +16,7 @@ require 'google/rpc/code_pb'
16
16
  require 'google/rpc/status_pb'
17
17
 
18
18
 
19
- descriptor_data = "\n)google/container/v1/cluster_service.proto\x12\x13google.container.v1\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1egoogle/protobuf/wrappers.proto\x1a\x15google/rpc/code.proto\x1a\x17google/rpc/status.proto\"\x80\x04\n\x0fLinuxNodeConfig\x12\x42\n\x07sysctls\x18\x01 \x03(\x0b\x32\x31.google.container.v1.LinuxNodeConfig.SysctlsEntry\x12\x44\n\x0b\x63group_mode\x18\x02 \x01(\x0e\x32/.google.container.v1.LinuxNodeConfig.CgroupMode\x12Q\n\thugepages\x18\x03 \x01(\x0b\x32\x34.google.container.v1.LinuxNodeConfig.HugepagesConfigB\x03\xe0\x41\x01H\x00\x88\x01\x01\x1a\x7f\n\x0fHugepagesConfig\x12!\n\x0fhugepage_size2m\x18\x01 \x01(\x05\x42\x03\xe0\x41\x01H\x00\x88\x01\x01\x12!\n\x0fhugepage_size1g\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01H\x01\x88\x01\x01\x42\x12\n\x10_hugepage_size2mB\x12\n\x10_hugepage_size1g\x1a.\n\x0cSysctlsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"Q\n\nCgroupMode\x12\x1b\n\x17\x43GROUP_MODE_UNSPECIFIED\x10\x00\x12\x12\n\x0e\x43GROUP_MODE_V1\x10\x01\x12\x12\n\x0e\x43GROUP_MODE_V2\x10\x02\x42\x0c\n\n_hugepages\"\xb4\x01\n\x11WindowsNodeConfig\x12\x44\n\nos_version\x18\x01 \x01(\x0e\x32\x30.google.container.v1.WindowsNodeConfig.OSVersion\"Y\n\tOSVersion\x12\x1a\n\x16OS_VERSION_UNSPECIFIED\x10\x00\x12\x17\n\x13OS_VERSION_LTSC2019\x10\x01\x12\x17\n\x13OS_VERSION_LTSC2022\x10\x02\"\xf8\x01\n\x11NodeKubeletConfig\x12\x1a\n\x12\x63pu_manager_policy\x18\x01 \x01(\t\x12\x31\n\rcpu_cfs_quota\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12\x1c\n\x14\x63pu_cfs_quota_period\x18\x03 \x01(\t\x12\x16\n\x0epod_pids_limit\x18\x04 \x01(\x03\x12\x33\n&insecure_kubelet_readonly_port_enabled\x18\x07 \x01(\x08H\x00\x88\x01\x01\x42)\n\'_insecure_kubelet_readonly_port_enabled\"\xe6\x11\n\nNodeConfig\x12\x14\n\x0cmachine_type\x18\x01 \x01(\t\x12\x14\n\x0c\x64isk_size_gb\x18\x02 \x01(\x05\x12\x14\n\x0coauth_scopes\x18\x03 \x03(\t\x12\x17\n\x0fservice_account\x18\t \x01(\t\x12?\n\x08metadata\x18\x04 \x03(\x0b\x32-.google.container.v1.NodeConfig.MetadataEntry\x12\x12\n\nimage_type\x18\x05 \x01(\t\x12;\n\x06labels\x18\x06 \x03(\x0b\x32+.google.container.v1.NodeConfig.LabelsEntry\x12\x17\n\x0flocal_ssd_count\x18\x07 \x01(\x05\x12\x0c\n\x04tags\x18\x08 \x03(\t\x12\x13\n\x0bpreemptible\x18\n \x01(\x08\x12<\n\x0c\x61\x63\x63\x65lerators\x18\x0b \x03(\x0b\x32&.google.container.v1.AcceleratorConfig\x12\x11\n\tdisk_type\x18\x0c \x01(\t\x12\x18\n\x10min_cpu_platform\x18\r \x01(\t\x12M\n\x18workload_metadata_config\x18\x0e \x01(\x0b\x32+.google.container.v1.WorkloadMetadataConfig\x12.\n\x06taints\x18\x0f \x03(\x0b\x32\x1e.google.container.v1.NodeTaint\x12:\n\x0esandbox_config\x18\x11 \x01(\x0b\x32\".google.container.v1.SandboxConfig\x12\x12\n\nnode_group\x18\x12 \x01(\t\x12\x46\n\x14reservation_affinity\x18\x13 \x01(\x0b\x32(.google.container.v1.ReservationAffinity\x12M\n\x18shielded_instance_config\x18\x14 \x01(\x0b\x32+.google.container.v1.ShieldedInstanceConfig\x12?\n\x11linux_node_config\x18\x15 \x01(\x0b\x32$.google.container.v1.LinuxNodeConfig\x12>\n\x0ekubelet_config\x18\x16 \x01(\x0b\x32&.google.container.v1.NodeKubeletConfig\x12\x19\n\x11\x62oot_disk_kms_key\x18\x17 \x01(\t\x12\x34\n\x0bgcfs_config\x18\x19 \x01(\x0b\x32\x1f.google.container.v1.GcfsConfig\x12O\n\x19\x61\x64vanced_machine_features\x18\x1a \x01(\x0b\x32,.google.container.v1.AdvancedMachineFeatures\x12.\n\x05gvnic\x18\x1d \x01(\x0b\x32\x1f.google.container.v1.VirtualNIC\x12\x0c\n\x04spot\x18 \x01(\x08\x12\x42\n\x12\x63onfidential_nodes\x18# \x01(\x0b\x32&.google.container.v1.ConfidentialNodes\x12\x39\n\x0b\x66\x61st_socket\x18$ \x01(\x0b\x32\x1f.google.container.v1.FastSocketH\x00\x88\x01\x01\x12L\n\x0fresource_labels\x18% \x03(\x0b\x32\x33.google.container.v1.NodeConfig.ResourceLabelsEntry\x12\x42\n\x0elogging_config\x18& \x01(\x0b\x32*.google.container.v1.NodePoolLoggingConfig\x12\x43\n\x13windows_node_config\x18\' \x01(\x0b\x32&.google.container.v1.WindowsNodeConfig\x12Q\n\x1blocal_nvme_ssd_block_config\x18( \x01(\x0b\x32,.google.container.v1.LocalNvmeSsdBlockConfig\x12_\n\"ephemeral_storage_local_ssd_config\x18) \x01(\x0b\x32\x33.google.container.v1.EphemeralStorageLocalSsdConfig\x12\x41\n\x12sole_tenant_config\x18* \x01(\x0b\x32%.google.container.v1.SoleTenantConfig\x12@\n\x11\x63ontainerd_config\x18+ \x01(\x0b\x32%.google.container.v1.ContainerdConfig\x12G\n\x15resource_manager_tags\x18- \x01(\x0b\x32(.google.container.v1.ResourceManagerTags\x12(\n\x1b\x65nable_confidential_storage\x18. \x01(\x08\x42\x03\xe0\x41\x01\x12\x44\n\x14secondary_boot_disks\x18\x30 \x03(\x0b\x32&.google.container.v1.SecondaryBootDisk\x12\x66\n#secondary_boot_disk_update_strategy\x18\x32 \x01(\x0b\x32\x34.google.container.v1.SecondaryBootDiskUpdateStrategyH\x01\x88\x01\x01\x1a/\n\rMetadataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a\x35\n\x13ResourceLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x42\x0e\n\x0c_fast_socketB&\n$_secondary_boot_disk_update_strategy\"\x99\x01\n\x17\x41\x64vancedMachineFeatures\x12\x1d\n\x10threads_per_core\x18\x01 \x01(\x03H\x00\x88\x01\x01\x12)\n\x1c\x65nable_nested_virtualization\x18\x02 \x01(\x08H\x01\x88\x01\x01\x42\x13\n\x11_threads_per_coreB\x1f\n\x1d_enable_nested_virtualization\"\xb3\x06\n\x11NodeNetworkConfig\x12\x1d\n\x10\x63reate_pod_range\x18\x04 \x01(\x08\x42\x03\xe0\x41\x04\x12\x11\n\tpod_range\x18\x05 \x01(\t\x12\x1b\n\x13pod_ipv4_cidr_block\x18\x06 \x01(\t\x12!\n\x14\x65nable_private_nodes\x18\t \x01(\x08H\x00\x88\x01\x01\x12h\n\x1anetwork_performance_config\x18\x0b \x01(\x0b\x32?.google.container.v1.NodeNetworkConfig.NetworkPerformanceConfigH\x01\x88\x01\x01\x12V\n\x1dpod_cidr_overprovision_config\x18\r \x01(\x0b\x32/.google.container.v1.PodCIDROverprovisionConfig\x12Y\n\x1f\x61\x64\x64itional_node_network_configs\x18\x0e \x03(\x0b\x32\x30.google.container.v1.AdditionalNodeNetworkConfig\x12W\n\x1e\x61\x64\x64itional_pod_network_configs\x18\x0f \x03(\x0b\x32/.google.container.v1.AdditionalPodNetworkConfig\x12\'\n\x1apod_ipv4_range_utilization\x18\x10 \x01(\x01\x42\x03\xe0\x41\x03\x1a\xd4\x01\n\x18NetworkPerformanceConfig\x12n\n\x1btotal_egress_bandwidth_tier\x18\x01 \x01(\x0e\x32\x44.google.container.v1.NodeNetworkConfig.NetworkPerformanceConfig.TierH\x00\x88\x01\x01\"(\n\x04Tier\x12\x14\n\x10TIER_UNSPECIFIED\x10\x00\x12\n\n\x06TIER_1\x10\x01\x42\x1e\n\x1c_total_egress_bandwidth_tierB\x17\n\x15_enable_private_nodesB\x1d\n\x1b_network_performance_config\"B\n\x1b\x41\x64\x64itionalNodeNetworkConfig\x12\x0f\n\x07network\x18\x01 \x01(\t\x12\x12\n\nsubnetwork\x18\x02 \x01(\t\"\xab\x01\n\x1a\x41\x64\x64itionalPodNetworkConfig\x12\x12\n\nsubnetwork\x18\x01 \x01(\t\x12\x1b\n\x13secondary_pod_range\x18\x02 \x01(\t\x12\x46\n\x11max_pods_per_node\x18\x03 \x01(\x0b\x32&.google.container.v1.MaxPodsConstraintH\x00\x88\x01\x01\x42\x14\n\x12_max_pods_per_node\"Y\n\x16ShieldedInstanceConfig\x12\x1a\n\x12\x65nable_secure_boot\x18\x01 \x01(\x08\x12#\n\x1b\x65nable_integrity_monitoring\x18\x02 \x01(\x08\"k\n\rSandboxConfig\x12\x35\n\x04type\x18\x02 \x01(\x0e\x32\'.google.container.v1.SandboxConfig.Type\"#\n\x04Type\x12\x0f\n\x0bUNSPECIFIED\x10\x00\x12\n\n\x06GVISOR\x10\x01\"\x1d\n\nGcfsConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\"\xdf\x01\n\x13ReservationAffinity\x12O\n\x18\x63onsume_reservation_type\x18\x01 \x01(\x0e\x32-.google.container.v1.ReservationAffinity.Type\x12\x0b\n\x03key\x18\x02 \x01(\t\x12\x0e\n\x06values\x18\x03 \x03(\t\"Z\n\x04Type\x12\x0f\n\x0bUNSPECIFIED\x10\x00\x12\x12\n\x0eNO_RESERVATION\x10\x01\x12\x13\n\x0f\x41NY_RESERVATION\x10\x02\x12\x18\n\x14SPECIFIC_RESERVATION\x10\x03\"\x96\x02\n\x10SoleTenantConfig\x12K\n\x0fnode_affinities\x18\x01 \x03(\x0b\x32\x32.google.container.v1.SoleTenantConfig.NodeAffinity\x1a\xb4\x01\n\x0cNodeAffinity\x12\x0b\n\x03key\x18\x01 \x01(\t\x12M\n\x08operator\x18\x02 \x01(\x0e\x32;.google.container.v1.SoleTenantConfig.NodeAffinity.Operator\x12\x0e\n\x06values\x18\x03 \x03(\t\"8\n\x08Operator\x12\x18\n\x14OPERATOR_UNSPECIFIED\x10\x00\x12\x06\n\x02IN\x10\x01\x12\n\n\x06NOT_IN\x10\x02\"\xfc\x04\n\x10\x43ontainerdConfig\x12i\n\x1eprivate_registry_access_config\x18\x01 \x01(\x0b\x32\x41.google.container.v1.ContainerdConfig.PrivateRegistryAccessConfig\x1a\xfc\x03\n\x1bPrivateRegistryAccessConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\x12\x8f\x01\n#certificate_authority_domain_config\x18\x02 \x03(\x0b\x32\x62.google.container.v1.ContainerdConfig.PrivateRegistryAccessConfig.CertificateAuthorityDomainConfig\x1a\xb9\x02\n CertificateAuthorityDomainConfig\x12\r\n\x05\x66qdns\x18\x01 \x03(\t\x12\xb6\x01\n%gcp_secret_manager_certificate_config\x18\x02 \x01(\x0b\x32\x84\x01.google.container.v1.ContainerdConfig.PrivateRegistryAccessConfig.CertificateAuthorityDomainConfig.GCPSecretManagerCertificateConfigH\x00\x1a\x37\n!GCPSecretManagerCertificateConfig\x12\x12\n\nsecret_uri\x18\x01 \x01(\tB\x14\n\x12\x63\x65rtificate_config\"\xb9\x01\n\tNodeTaint\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t\x12\x35\n\x06\x65\x66\x66\x65\x63t\x18\x03 \x01(\x0e\x32%.google.container.v1.NodeTaint.Effect\"Y\n\x06\x45\x66\x66\x65\x63t\x12\x16\n\x12\x45\x46\x46\x45\x43T_UNSPECIFIED\x10\x00\x12\x0f\n\x0bNO_SCHEDULE\x10\x01\x12\x16\n\x12PREFER_NO_SCHEDULE\x10\x02\x12\x0e\n\nNO_EXECUTE\x10\x03\"<\n\nNodeTaints\x12.\n\x06taints\x18\x01 \x03(\x0b\x32\x1e.google.container.v1.NodeTaint\"x\n\nNodeLabels\x12;\n\x06labels\x18\x01 \x03(\x0b\x32+.google.container.v1.NodeLabels.LabelsEntry\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\x80\x01\n\x0eResourceLabels\x12?\n\x06labels\x18\x01 \x03(\x0b\x32/.google.container.v1.ResourceLabels.LabelsEntry\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\x1b\n\x0bNetworkTags\x12\x0c\n\x04tags\x18\x01 \x03(\t\"\xe8\x01\n\nMasterAuth\x12\x14\n\x08username\x18\x01 \x01(\tB\x02\x18\x01\x12\x14\n\x08password\x18\x02 \x01(\tB\x02\x18\x01\x12O\n\x19\x63lient_certificate_config\x18\x03 \x01(\x0b\x32,.google.container.v1.ClientCertificateConfig\x12#\n\x16\x63luster_ca_certificate\x18\x64 \x01(\tB\x03\xe0\x41\x03\x12\x1f\n\x12\x63lient_certificate\x18\x65 \x01(\tB\x03\xe0\x41\x03\x12\x17\n\nclient_key\x18\x66 \x01(\tB\x03\xe0\x41\x03\";\n\x17\x43lientCertificateConfig\x12 \n\x18issue_client_certificate\x18\x01 \x01(\x08\"\xf6\x07\n\x0c\x41\x64\x64onsConfig\x12\x43\n\x13http_load_balancing\x18\x01 \x01(\x0b\x32&.google.container.v1.HttpLoadBalancing\x12Q\n\x1ahorizontal_pod_autoscaling\x18\x02 \x01(\x0b\x32-.google.container.v1.HorizontalPodAutoscaling\x12J\n\x14kubernetes_dashboard\x18\x03 \x01(\x0b\x32(.google.container.v1.KubernetesDashboardB\x02\x18\x01\x12G\n\x15network_policy_config\x18\x04 \x01(\x0b\x32(.google.container.v1.NetworkPolicyConfig\x12=\n\x10\x63loud_run_config\x18\x07 \x01(\x0b\x32#.google.container.v1.CloudRunConfig\x12=\n\x10\x64ns_cache_config\x18\x08 \x01(\x0b\x32#.google.container.v1.DnsCacheConfig\x12K\n\x17\x63onfig_connector_config\x18\n \x01(\x0b\x32*.google.container.v1.ConfigConnectorConfig\x12\x64\n%gce_persistent_disk_csi_driver_config\x18\x0b \x01(\x0b\x32\x35.google.container.v1.GcePersistentDiskCsiDriverConfig\x12Y\n\x1fgcp_filestore_csi_driver_config\x18\x0e \x01(\x0b\x32\x30.google.container.v1.GcpFilestoreCsiDriverConfig\x12J\n\x17gke_backup_agent_config\x18\x10 \x01(\x0b\x32).google.container.v1.GkeBackupAgentConfig\x12O\n\x1agcs_fuse_csi_driver_config\x18\x11 \x01(\x0b\x32+.google.container.v1.GcsFuseCsiDriverConfig\x12\x46\n\x12stateful_ha_config\x18\x12 \x01(\x0b\x32%.google.container.v1.StatefulHAConfigB\x03\xe0\x41\x01\x12H\n\x13ray_operator_config\x18\x15 \x01(\x0b\x32&.google.container.v1.RayOperatorConfigB\x03\xe0\x41\x01\"%\n\x11HttpLoadBalancing\x12\x10\n\x08\x64isabled\x18\x01 \x01(\x08\",\n\x18HorizontalPodAutoscaling\x12\x10\n\x08\x64isabled\x18\x01 \x01(\x08\"\'\n\x13KubernetesDashboard\x12\x10\n\x08\x64isabled\x18\x01 \x01(\x08\"\'\n\x13NetworkPolicyConfig\x12\x10\n\x08\x64isabled\x18\x01 \x01(\x08\"!\n\x0e\x44nsCacheConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\"9\n&PrivateClusterMasterGlobalAccessConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\"\xd4\x02\n\x14PrivateClusterConfig\x12\x1c\n\x14\x65nable_private_nodes\x18\x01 \x01(\x08\x12\x1f\n\x17\x65nable_private_endpoint\x18\x02 \x01(\x08\x12\x1e\n\x16master_ipv4_cidr_block\x18\x03 \x01(\t\x12\x1d\n\x10private_endpoint\x18\x04 \x01(\tB\x03\xe0\x41\x03\x12\x1c\n\x0fpublic_endpoint\x18\x05 \x01(\tB\x03\xe0\x41\x03\x12\x19\n\x0cpeering_name\x18\x07 \x01(\tB\x03\xe0\x41\x03\x12`\n\x1bmaster_global_access_config\x18\x08 \x01(\x0b\x32;.google.container.v1.PrivateClusterMasterGlobalAccessConfig\x12#\n\x1bprivate_endpoint_subnetwork\x18\n \x01(\t\"D\n\x19\x41uthenticatorGroupsConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\x12\x16\n\x0esecurity_group\x18\x02 \x01(\t\"\xee\x01\n\x0e\x43loudRunConfig\x12\x10\n\x08\x64isabled\x18\x01 \x01(\x08\x12P\n\x12load_balancer_type\x18\x03 \x01(\x0e\x32\x34.google.container.v1.CloudRunConfig.LoadBalancerType\"x\n\x10LoadBalancerType\x12\"\n\x1eLOAD_BALANCER_TYPE_UNSPECIFIED\x10\x00\x12\x1f\n\x1bLOAD_BALANCER_TYPE_EXTERNAL\x10\x01\x12\x1f\n\x1bLOAD_BALANCER_TYPE_INTERNAL\x10\x02\"(\n\x15\x43onfigConnectorConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\"3\n GcePersistentDiskCsiDriverConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\".\n\x1bGcpFilestoreCsiDriverConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\")\n\x16GcsFuseCsiDriverConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\"\xd8\x01\n\x11RayOperatorConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\x12U\n\x1aray_cluster_logging_config\x18\x02 \x01(\x0b\x32,.google.container.v1.RayClusterLoggingConfigB\x03\xe0\x41\x01\x12[\n\x1dray_cluster_monitoring_config\x18\x03 \x01(\x0b\x32/.google.container.v1.RayClusterMonitoringConfigB\x03\xe0\x41\x01\"\'\n\x14GkeBackupAgentConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\"#\n\x10StatefulHAConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\"\x8e\x02\n\x1eMasterAuthorizedNetworksConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\x12R\n\x0b\x63idr_blocks\x18\x02 \x03(\x0b\x32=.google.container.v1.MasterAuthorizedNetworksConfig.CidrBlock\x12,\n\x1fgcp_public_cidrs_access_enabled\x18\x03 \x01(\x08H\x00\x88\x01\x01\x1a\x35\n\tCidrBlock\x12\x14\n\x0c\x64isplay_name\x18\x01 \x01(\t\x12\x12\n\ncidr_block\x18\x02 \x01(\tB\"\n _gcp_public_cidrs_access_enabled\"\x1d\n\nLegacyAbac\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\"\x91\x01\n\rNetworkPolicy\x12=\n\x08provider\x18\x01 \x01(\x0e\x32+.google.container.v1.NetworkPolicy.Provider\x12\x0f\n\x07\x65nabled\x18\x02 \x01(\x08\"0\n\x08Provider\x12\x18\n\x14PROVIDER_UNSPECIFIED\x10\x00\x12\n\n\x06\x43\x41LICO\x10\x01\"\xe3\x01\n\x13\x42inaryAuthorization\x12\x13\n\x07\x65nabled\x18\x01 \x01(\x08\x42\x02\x18\x01\x12P\n\x0f\x65valuation_mode\x18\x02 \x01(\x0e\x32\x37.google.container.v1.BinaryAuthorization.EvaluationMode\"e\n\x0e\x45valuationMode\x12\x1f\n\x1b\x45VALUATION_MODE_UNSPECIFIED\x10\x00\x12\x0c\n\x08\x44ISABLED\x10\x01\x12$\n PROJECT_SINGLETON_POLICY_ENFORCE\x10\x02\"-\n\x1aPodCIDROverprovisionConfig\x12\x0f\n\x07\x64isable\x18\x01 \x01(\x08\"\xbd\x06\n\x12IPAllocationPolicy\x12\x16\n\x0euse_ip_aliases\x18\x01 \x01(\x08\x12\x19\n\x11\x63reate_subnetwork\x18\x02 \x01(\x08\x12\x17\n\x0fsubnetwork_name\x18\x03 \x01(\t\x12\x1d\n\x11\x63luster_ipv4_cidr\x18\x04 \x01(\tB\x02\x18\x01\x12\x1a\n\x0enode_ipv4_cidr\x18\x05 \x01(\tB\x02\x18\x01\x12\x1e\n\x12services_ipv4_cidr\x18\x06 \x01(\tB\x02\x18\x01\x12$\n\x1c\x63luster_secondary_range_name\x18\x07 \x01(\t\x12%\n\x1dservices_secondary_range_name\x18\x08 \x01(\t\x12\x1f\n\x17\x63luster_ipv4_cidr_block\x18\t \x01(\t\x12\x1c\n\x14node_ipv4_cidr_block\x18\n \x01(\t\x12 \n\x18services_ipv4_cidr_block\x18\x0b \x01(\t\x12\x1b\n\x13tpu_ipv4_cidr_block\x18\r \x01(\t\x12\x12\n\nuse_routes\x18\x0f \x01(\x08\x12\x32\n\nstack_type\x18\x10 \x01(\x0e\x32\x1e.google.container.v1.StackType\x12=\n\x10ipv6_access_type\x18\x11 \x01(\x0e\x32#.google.container.v1.IPv6AccessType\x12V\n\x1dpod_cidr_overprovision_config\x18\x15 \x01(\x0b\x32/.google.container.v1.PodCIDROverprovisionConfig\x12#\n\x16subnet_ipv6_cidr_block\x18\x16 \x01(\tB\x03\xe0\x41\x03\x12%\n\x18services_ipv6_cidr_block\x18\x17 \x01(\tB\x03\xe0\x41\x03\x12Y\n\x1c\x61\x64\x64itional_pod_ranges_config\x18\x18 \x01(\x0b\x32..google.container.v1.AdditionalPodRangesConfigB\x03\xe0\x41\x03\x12/\n\"default_pod_ipv4_range_utilization\x18\x19 \x01(\x01\x42\x03\xe0\x41\x03\"\xc2\x1c\n\x07\x43luster\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\x12\x1e\n\x12initial_node_count\x18\x03 \x01(\x05\x42\x02\x18\x01\x12\x38\n\x0bnode_config\x18\x04 \x01(\x0b\x32\x1f.google.container.v1.NodeConfigB\x02\x18\x01\x12\x34\n\x0bmaster_auth\x18\x05 \x01(\x0b\x32\x1f.google.container.v1.MasterAuth\x12\x17\n\x0flogging_service\x18\x06 \x01(\t\x12\x1a\n\x12monitoring_service\x18\x07 \x01(\t\x12\x0f\n\x07network\x18\x08 \x01(\t\x12\x19\n\x11\x63luster_ipv4_cidr\x18\t \x01(\t\x12\x38\n\raddons_config\x18\n \x01(\x0b\x32!.google.container.v1.AddonsConfig\x12\x12\n\nsubnetwork\x18\x0b \x01(\t\x12\x31\n\nnode_pools\x18\x0c \x03(\x0b\x32\x1d.google.container.v1.NodePool\x12\x11\n\tlocations\x18\r \x03(\t\x12\x1f\n\x17\x65nable_kubernetes_alpha\x18\x0e \x01(\x08\x12I\n\x0fresource_labels\x18\x0f \x03(\x0b\x32\x30.google.container.v1.Cluster.ResourceLabelsEntry\x12\x19\n\x11label_fingerprint\x18\x10 \x01(\t\x12\x34\n\x0blegacy_abac\x18\x12 \x01(\x0b\x32\x1f.google.container.v1.LegacyAbac\x12:\n\x0enetwork_policy\x18\x13 \x01(\x0b\x32\".google.container.v1.NetworkPolicy\x12\x45\n\x14ip_allocation_policy\x18\x14 \x01(\x0b\x32\'.google.container.v1.IPAllocationPolicy\x12^\n!master_authorized_networks_config\x18\x16 \x01(\x0b\x32\x33.google.container.v1.MasterAuthorizedNetworksConfig\x12\x42\n\x12maintenance_policy\x18\x17 \x01(\x0b\x32&.google.container.v1.MaintenancePolicy\x12\x46\n\x14\x62inary_authorization\x18\x18 \x01(\x0b\x32(.google.container.v1.BinaryAuthorization\x12<\n\x0b\x61utoscaling\x18\x1a \x01(\x0b\x32\'.google.container.v1.ClusterAutoscaling\x12:\n\x0enetwork_config\x18\x1b \x01(\x0b\x32\".google.container.v1.NetworkConfig\x12K\n\x1b\x64\x65\x66\x61ult_max_pods_constraint\x18\x1e \x01(\x0b\x32&.google.container.v1.MaxPodsConstraint\x12T\n\x1cresource_usage_export_config\x18! \x01(\x0b\x32..google.container.v1.ResourceUsageExportConfig\x12S\n\x1b\x61uthenticator_groups_config\x18\" \x01(\x0b\x32..google.container.v1.AuthenticatorGroupsConfig\x12I\n\x16private_cluster_config\x18% \x01(\x0b\x32).google.container.v1.PrivateClusterConfig\x12\x44\n\x13\x64\x61tabase_encryption\x18& \x01(\x0b\x32\'.google.container.v1.DatabaseEncryption\x12M\n\x18vertical_pod_autoscaling\x18\' \x01(\x0b\x32+.google.container.v1.VerticalPodAutoscaling\x12:\n\x0eshielded_nodes\x18( \x01(\x0b\x32\".google.container.v1.ShieldedNodes\x12<\n\x0frelease_channel\x18) \x01(\x0b\x32#.google.container.v1.ReleaseChannel\x12M\n\x18workload_identity_config\x18+ \x01(\x0b\x32+.google.container.v1.WorkloadIdentityConfig\x12@\n\x11mesh_certificates\x18\x43 \x01(\x0b\x32%.google.container.v1.MeshCertificates\x12I\n\x16\x63ost_management_config\x18- \x01(\x0b\x32).google.container.v1.CostManagementConfig\x12\x44\n\x13notification_config\x18\x31 \x01(\x0b\x32\'.google.container.v1.NotificationConfig\x12\x42\n\x12\x63onfidential_nodes\x18\x32 \x01(\x0b\x32&.google.container.v1.ConfidentialNodes\x12K\n\x17identity_service_config\x18\x36 \x01(\x0b\x32*.google.container.v1.IdentityServiceConfig\x12\x16\n\tself_link\x18\x64 \x01(\tB\x03\xe0\x41\x03\x12\x13\n\x04zone\x18\x65 \x01(\tB\x05\x18\x01\xe0\x41\x03\x12\x15\n\x08\x65ndpoint\x18\x66 \x01(\tB\x03\xe0\x41\x03\x12\x1f\n\x17initial_cluster_version\x18g \x01(\t\x12#\n\x16\x63urrent_master_version\x18h \x01(\tB\x03\xe0\x41\x03\x12#\n\x14\x63urrent_node_version\x18i \x01(\tB\x05\x18\x01\xe0\x41\x03\x12\x18\n\x0b\x63reate_time\x18j \x01(\tB\x03\xe0\x41\x03\x12\x38\n\x06status\x18k \x01(\x0e\x32#.google.container.v1.Cluster.StatusB\x03\xe0\x41\x03\x12\x1d\n\x0estatus_message\x18l \x01(\tB\x05\x18\x01\xe0\x41\x03\x12 \n\x13node_ipv4_cidr_size\x18m \x01(\x05\x42\x03\xe0\x41\x03\x12\x1f\n\x12services_ipv4_cidr\x18n \x01(\tB\x03\xe0\x41\x03\x12\"\n\x13instance_group_urls\x18o \x03(\tB\x05\x18\x01\xe0\x41\x03\x12!\n\x12\x63urrent_node_count\x18p \x01(\x05\x42\x05\x18\x01\xe0\x41\x03\x12\x18\n\x0b\x65xpire_time\x18q \x01(\tB\x03\xe0\x41\x03\x12\x15\n\x08location\x18r \x01(\tB\x03\xe0\x41\x03\x12\x12\n\nenable_tpu\x18s \x01(\x08\x12 \n\x13tpu_ipv4_cidr_block\x18t \x01(\tB\x03\xe0\x41\x03\x12\x38\n\nconditions\x18v \x03(\x0b\x32$.google.container.v1.StatusCondition\x12\x32\n\tautopilot\x18\x80\x01 \x01(\x0b\x32\x1e.google.container.v1.Autopilot\x12\x10\n\x02id\x18\x81\x01 \x01(\tB\x03\xe0\x41\x03\x12G\n\x12node_pool_defaults\x18\x83\x01 \x01(\x0b\x32%.google.container.v1.NodePoolDefaultsH\x00\x88\x01\x01\x12;\n\x0elogging_config\x18\x84\x01 \x01(\x0b\x32\".google.container.v1.LoggingConfig\x12\x41\n\x11monitoring_config\x18\x85\x01 \x01(\x0b\x32%.google.container.v1.MonitoringConfig\x12G\n\x15node_pool_auto_config\x18\x88\x01 \x01(\x0b\x32\'.google.container.v1.NodePoolAutoConfig\x12\r\n\x04\x65tag\x18\x8b\x01 \x01(\t\x12*\n\x05\x66leet\x18\x8c\x01 \x01(\x0b\x32\x1a.google.container.v1.Fleet\x12L\n\x17security_posture_config\x18\x91\x01 \x01(\x0b\x32*.google.container.v1.SecurityPostureConfig\x12\x44\n\x14\x65nable_k8s_beta_apis\x18\x8f\x01 \x01(\x0b\x32%.google.container.v1.K8sBetaAPIConfig\x12\x41\n\x11\x65nterprise_config\x18\x95\x01 \x01(\x0b\x32%.google.container.v1.EnterpriseConfig\x12 \n\rsatisfies_pzs\x18\x98\x01 \x01(\x08\x42\x03\xe0\x41\x03H\x01\x88\x01\x01\x12 \n\rsatisfies_pzi\x18\x99\x01 \x01(\x08\x42\x03\xe0\x41\x03H\x02\x88\x01\x01\x1a\x35\n\x13ResourceLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"w\n\x06Status\x12\x16\n\x12STATUS_UNSPECIFIED\x10\x00\x12\x10\n\x0cPROVISIONING\x10\x01\x12\x0b\n\x07RUNNING\x10\x02\x12\x0f\n\x0bRECONCILING\x10\x03\x12\x0c\n\x08STOPPING\x10\x04\x12\t\n\x05\x45RROR\x10\x05\x12\x0c\n\x08\x44\x45GRADED\x10\x06\x42\x15\n\x13_node_pool_defaultsB\x10\n\x0e_satisfies_pzsB\x10\n\x0e_satisfies_pzi\"(\n\x10K8sBetaAPIConfig\x12\x14\n\x0c\x65nabled_apis\x18\x01 \x03(\t\"\xae\x03\n\x15SecurityPostureConfig\x12\x42\n\x04mode\x18\x01 \x01(\x0e\x32/.google.container.v1.SecurityPostureConfig.ModeH\x00\x88\x01\x01\x12]\n\x12vulnerability_mode\x18\x02 \x01(\x0e\x32<.google.container.v1.SecurityPostureConfig.VulnerabilityModeH\x01\x88\x01\x01\"E\n\x04Mode\x12\x14\n\x10MODE_UNSPECIFIED\x10\x00\x12\x0c\n\x08\x44ISABLED\x10\x01\x12\t\n\x05\x42\x41SIC\x10\x02\x12\x0e\n\nENTERPRISE\x10\x03\"\x8a\x01\n\x11VulnerabilityMode\x12\"\n\x1eVULNERABILITY_MODE_UNSPECIFIED\x10\x00\x12\x1a\n\x16VULNERABILITY_DISABLED\x10\x01\x12\x17\n\x13VULNERABILITY_BASIC\x10\x02\x12\x1c\n\x18VULNERABILITY_ENTERPRISE\x10\x03\x42\x07\n\x05_modeB\x15\n\x13_vulnerability_mode\"\xda\x01\n\x12NodePoolAutoConfig\x12\x36\n\x0cnetwork_tags\x18\x01 \x01(\x0b\x32 .google.container.v1.NetworkTags\x12G\n\x15resource_manager_tags\x18\x02 \x01(\x0b\x32(.google.container.v1.ResourceManagerTags\x12\x43\n\x13node_kubelet_config\x18\x03 \x01(\x0b\x32&.google.container.v1.NodeKubeletConfig\"Y\n\x10NodePoolDefaults\x12\x45\n\x14node_config_defaults\x18\x01 \x01(\x0b\x32\'.google.container.v1.NodeConfigDefaults\"\x95\x02\n\x12NodeConfigDefaults\x12\x34\n\x0bgcfs_config\x18\x01 \x01(\x0b\x32\x1f.google.container.v1.GcfsConfig\x12\x42\n\x0elogging_config\x18\x03 \x01(\x0b\x32*.google.container.v1.NodePoolLoggingConfig\x12@\n\x11\x63ontainerd_config\x18\x04 \x01(\x0b\x32%.google.container.v1.ContainerdConfig\x12\x43\n\x13node_kubelet_config\x18\x06 \x01(\x0b\x32&.google.container.v1.NodeKubeletConfig\"\x90!\n\rClusterUpdate\x12\x1c\n\x14\x64\x65sired_node_version\x18\x04 \x01(\t\x12\"\n\x1a\x64\x65sired_monitoring_service\x18\x05 \x01(\t\x12@\n\x15\x64\x65sired_addons_config\x18\x06 \x01(\x0b\x32!.google.container.v1.AddonsConfig\x12\x1c\n\x14\x64\x65sired_node_pool_id\x18\x07 \x01(\t\x12\x1a\n\x12\x64\x65sired_image_type\x18\x08 \x01(\t\x12L\n\x1b\x64\x65sired_database_encryption\x18. \x01(\x0b\x32\'.google.container.v1.DatabaseEncryption\x12U\n desired_workload_identity_config\x18/ \x01(\x0b\x32+.google.container.v1.WorkloadIdentityConfig\x12H\n\x19\x64\x65sired_mesh_certificates\x18\x43 \x01(\x0b\x32%.google.container.v1.MeshCertificates\x12\x42\n\x16\x64\x65sired_shielded_nodes\x18\x30 \x01(\x0b\x32\".google.container.v1.ShieldedNodes\x12Q\n\x1e\x64\x65sired_cost_management_config\x18\x31 \x01(\x0b\x32).google.container.v1.CostManagementConfig\x12:\n\x12\x64\x65sired_dns_config\x18\x35 \x01(\x0b\x32\x1e.google.container.v1.DNSConfig\x12O\n\x1d\x64\x65sired_node_pool_autoscaling\x18\t \x01(\x0b\x32(.google.container.v1.NodePoolAutoscaling\x12\x19\n\x11\x64\x65sired_locations\x18\n \x03(\t\x12\x66\n)desired_master_authorized_networks_config\x18\x0c \x01(\x0b\x32\x33.google.container.v1.MasterAuthorizedNetworksConfig\x12L\n\x1b\x64\x65sired_cluster_autoscaling\x18\x0f \x01(\x0b\x32\'.google.container.v1.ClusterAutoscaling\x12N\n\x1c\x64\x65sired_binary_authorization\x18\x10 \x01(\x0b\x32(.google.container.v1.BinaryAuthorization\x12\x1f\n\x17\x64\x65sired_logging_service\x18\x13 \x01(\t\x12\\\n$desired_resource_usage_export_config\x18\x15 \x01(\x0b\x32..google.container.v1.ResourceUsageExportConfig\x12U\n desired_vertical_pod_autoscaling\x18\x16 \x01(\x0b\x32+.google.container.v1.VerticalPodAutoscaling\x12Q\n\x1e\x64\x65sired_private_cluster_config\x18\x19 \x01(\x0b\x32).google.container.v1.PrivateClusterConfig\x12\\\n$desired_intra_node_visibility_config\x18\x1a \x01(\x0b\x32..google.container.v1.IntraNodeVisibilityConfig\x12K\n\x1b\x64\x65sired_default_snat_status\x18\x1c \x01(\x0b\x32&.google.container.v1.DefaultSnatStatus\x12\x44\n\x17\x64\x65sired_release_channel\x18\x1f \x01(\x0b\x32#.google.container.v1.ReleaseChannel\x12Q\n\x1f\x64\x65sired_l4ilb_subsetting_config\x18\' \x01(\x0b\x32(.google.container.v1.ILBSubsettingConfig\x12H\n\x19\x64\x65sired_datapath_provider\x18\x32 \x01(\x0e\x32%.google.container.v1.DatapathProvider\x12X\n\"desired_private_ipv6_google_access\x18\x33 \x01(\x0e\x32,.google.container.v1.PrivateIPv6GoogleAccess\x12L\n\x1b\x64\x65sired_notification_config\x18\x37 \x01(\x0b\x32\'.google.container.v1.NotificationConfig\x12[\n#desired_authenticator_groups_config\x18? \x01(\x0b\x32..google.container.v1.AuthenticatorGroupsConfig\x12\x42\n\x16\x64\x65sired_logging_config\x18@ \x01(\x0b\x32\".google.container.v1.LoggingConfig\x12H\n\x19\x64\x65sired_monitoring_config\x18\x41 \x01(\x0b\x32%.google.container.v1.MonitoringConfig\x12S\n\x1f\x64\x65sired_identity_service_config\x18\x42 \x01(\x0b\x32*.google.container.v1.IdentityServiceConfig\x12Z\n#desired_service_external_ips_config\x18< \x01(\x0b\x32-.google.container.v1.ServiceExternalIPsConfig\x12,\n\x1f\x64\x65sired_enable_private_endpoint\x18G \x01(\x08H\x00\x88\x01\x01\x12\x1e\n\x16\x64\x65sired_master_version\x18\x64 \x01(\t\x12<\n\x13\x64\x65sired_gcfs_config\x18m \x01(\x0b\x32\x1f.google.container.v1.GcfsConfig\x12T\n*desired_node_pool_auto_config_network_tags\x18n \x01(\x0b\x32 .google.container.v1.NetworkTags\x12I\n\x1a\x64\x65sired_gateway_api_config\x18r \x01(\x0b\x32%.google.container.v1.GatewayAPIConfig\x12\x0c\n\x04\x65tag\x18s \x01(\t\x12T\n desired_node_pool_logging_config\x18t \x01(\x0b\x32*.google.container.v1.NodePoolLoggingConfig\x12\x31\n\rdesired_fleet\x18u \x01(\x0b\x32\x1a.google.container.v1.Fleet\x12:\n\x12\x64\x65sired_stack_type\x18w \x01(\x0e\x32\x1e.google.container.v1.StackType\x12T\n\x1c\x61\x64\x64itional_pod_ranges_config\x18x \x01(\x0b\x32..google.container.v1.AdditionalPodRangesConfig\x12\\\n$removed_additional_pod_ranges_config\x18y \x01(\x0b\x32..google.container.v1.AdditionalPodRangesConfig\x12\x43\n\x14\x65nable_k8s_beta_apis\x18z \x01(\x0b\x32%.google.container.v1.K8sBetaAPIConfig\x12S\n\x1f\x64\x65sired_security_posture_config\x18| \x01(\x0b\x32*.google.container.v1.SecurityPostureConfig\x12n\n\"desired_network_performance_config\x18} \x01(\x0b\x32\x42.google.container.v1.NetworkConfig.ClusterNetworkPerformanceConfig\x12/\n\"desired_enable_fqdn_network_policy\x18~ \x01(\x08H\x01\x88\x01\x01\x12\\\n(desired_autopilot_workload_policy_config\x18\x80\x01 \x01(\x0b\x32).google.container.v1.WorkloadPolicyConfig\x12\x45\n\x15\x64\x65sired_k8s_beta_apis\x18\x83\x01 \x01(\x0b\x32%.google.container.v1.K8sBetaAPIConfig\x12I\n\x19\x64\x65sired_containerd_config\x18\x86\x01 \x01(\x0b\x32%.google.container.v1.ContainerdConfig\x12-\n\x1f\x64\x65sired_enable_multi_networking\x18\x87\x01 \x01(\x08H\x02\x88\x01\x01\x12\x66\n3desired_node_pool_auto_config_resource_manager_tags\x18\x88\x01 \x01(\x0b\x32(.google.container.v1.ResourceManagerTags\x12\x62\n$desired_in_transit_encryption_config\x18\x89\x01 \x01(\x0e\x32..google.container.v1.InTransitEncryptionConfigH\x03\x88\x01\x01\x12>\n0desired_enable_cilium_clusterwide_network_policy\x18\x8a\x01 \x01(\x08H\x04\x88\x01\x01\x12L\n\x1b\x64\x65sired_node_kubelet_config\x18\x8d\x01 \x01(\x0b\x32&.google.container.v1.NodeKubeletConfig\x12]\n,desired_node_pool_auto_config_kubelet_config\x18\x8e\x01 \x01(\x0b\x32&.google.container.v1.NodeKubeletConfigB\"\n _desired_enable_private_endpointB%\n#_desired_enable_fqdn_network_policyB\"\n _desired_enable_multi_networkingB\'\n%_desired_in_transit_encryption_configB3\n1_desired_enable_cilium_clusterwide_network_policy\"q\n\x19\x41\x64\x64itionalPodRangesConfig\x12\x17\n\x0fpod_range_names\x18\x01 \x03(\t\x12;\n\x0epod_range_info\x18\x02 \x03(\x0b\x32\x1e.google.container.v1.RangeInfoB\x03\xe0\x41\x03\">\n\tRangeInfo\x12\x17\n\nrange_name\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x18\n\x0butilization\x18\x02 \x01(\x01\x42\x03\xe0\x41\x03\"\xe4\x08\n\tOperation\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x13\n\x04zone\x18\x02 \x01(\tB\x05\x18\x01\xe0\x41\x03\x12@\n\x0eoperation_type\x18\x03 \x01(\x0e\x32#.google.container.v1.Operation.TypeB\x03\xe0\x41\x03\x12:\n\x06status\x18\x04 \x01(\x0e\x32%.google.container.v1.Operation.StatusB\x03\xe0\x41\x03\x12\x13\n\x06\x64\x65tail\x18\x08 \x01(\tB\x03\xe0\x41\x03\x12\x1d\n\x0estatus_message\x18\x05 \x01(\tB\x05\x18\x01\xe0\x41\x03\x12\x16\n\tself_link\x18\x06 \x01(\tB\x03\xe0\x41\x03\x12\x18\n\x0btarget_link\x18\x07 \x01(\tB\x03\xe0\x41\x03\x12\x15\n\x08location\x18\t \x01(\tB\x03\xe0\x41\x03\x12\x17\n\nstart_time\x18\n \x01(\tB\x03\xe0\x41\x03\x12\x15\n\x08\x65nd_time\x18\x0b \x01(\tB\x03\xe0\x41\x03\x12=\n\x08progress\x18\x0c \x01(\x0b\x32&.google.container.v1.OperationProgressB\x03\xe0\x41\x03\x12\x44\n\x12\x63luster_conditions\x18\r \x03(\x0b\x32$.google.container.v1.StatusConditionB\x02\x18\x01\x12\x45\n\x13nodepool_conditions\x18\x0e \x03(\x0b\x32$.google.container.v1.StatusConditionB\x02\x18\x01\x12!\n\x05\x65rror\x18\x0f \x01(\x0b\x32\x12.google.rpc.Status\"R\n\x06Status\x12\x16\n\x12STATUS_UNSPECIFIED\x10\x00\x12\x0b\n\x07PENDING\x10\x01\x12\x0b\n\x07RUNNING\x10\x02\x12\x08\n\x04\x44ONE\x10\x03\x12\x0c\n\x08\x41\x42ORTING\x10\x04\"\xc0\x03\n\x04Type\x12\x14\n\x10TYPE_UNSPECIFIED\x10\x00\x12\x12\n\x0e\x43REATE_CLUSTER\x10\x01\x12\x12\n\x0e\x44\x45LETE_CLUSTER\x10\x02\x12\x12\n\x0eUPGRADE_MASTER\x10\x03\x12\x11\n\rUPGRADE_NODES\x10\x04\x12\x12\n\x0eREPAIR_CLUSTER\x10\x05\x12\x12\n\x0eUPDATE_CLUSTER\x10\x06\x12\x14\n\x10\x43REATE_NODE_POOL\x10\x07\x12\x14\n\x10\x44\x45LETE_NODE_POOL\x10\x08\x12\x1c\n\x18SET_NODE_POOL_MANAGEMENT\x10\t\x12\x15\n\x11\x41UTO_REPAIR_NODES\x10\n\x12\x1a\n\x12\x41UTO_UPGRADE_NODES\x10\x0b\x1a\x02\x08\x01\x12\x12\n\nSET_LABELS\x10\x0c\x1a\x02\x08\x01\x12\x17\n\x0fSET_MASTER_AUTH\x10\r\x1a\x02\x08\x01\x12\x16\n\x12SET_NODE_POOL_SIZE\x10\x0e\x12\x1a\n\x12SET_NETWORK_POLICY\x10\x0f\x1a\x02\x08\x01\x12\x1e\n\x16SET_MAINTENANCE_POLICY\x10\x10\x1a\x02\x08\x01\x12\x12\n\x0eRESIZE_CLUSTER\x10\x12\x12\x19\n\x15\x46LEET_FEATURE_UPGRADE\x10\x13\"\xbb\x02\n\x11OperationProgress\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x35\n\x06status\x18\x02 \x01(\x0e\x32%.google.container.v1.Operation.Status\x12>\n\x07metrics\x18\x03 \x03(\x0b\x32-.google.container.v1.OperationProgress.Metric\x12\x36\n\x06stages\x18\x04 \x03(\x0b\x32&.google.container.v1.OperationProgress\x1ai\n\x06Metric\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x13\n\tint_value\x18\x02 \x01(\x03H\x00\x12\x16\n\x0c\x64ouble_value\x18\x03 \x01(\x01H\x00\x12\x16\n\x0cstring_value\x18\x04 \x01(\tH\x00\x42\x07\n\x05value\"\x84\x01\n\x14\x43reateClusterRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x32\n\x07\x63luster\x18\x03 \x01(\x0b\x32\x1c.google.container.v1.ClusterB\x03\xe0\x41\x02\x12\x0e\n\x06parent\x18\x05 \x01(\t\"c\n\x11GetClusterRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12\x0c\n\x04name\x18\x05 \x01(\t\"\x9f\x01\n\x14UpdateClusterRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12\x37\n\x06update\x18\x04 \x01(\x0b\x32\".google.container.v1.ClusterUpdateB\x03\xe0\x41\x02\x12\x0c\n\x04name\x18\x05 \x01(\t\"\xd3\x0b\n\x15UpdateNodePoolRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12\x18\n\x0cnode_pool_id\x18\x04 \x01(\tB\x02\x18\x01\x12\x19\n\x0cnode_version\x18\x05 \x01(\tB\x03\xe0\x41\x02\x12\x17\n\nimage_type\x18\x06 \x01(\tB\x03\xe0\x41\x02\x12\x0c\n\x04name\x18\x08 \x01(\t\x12\x11\n\tlocations\x18\r \x03(\t\x12M\n\x18workload_metadata_config\x18\x0e \x01(\x0b\x32+.google.container.v1.WorkloadMetadataConfig\x12G\n\x10upgrade_settings\x18\x0f \x01(\x0b\x32-.google.container.v1.NodePool.UpgradeSettings\x12.\n\x04tags\x18\x10 \x01(\x0b\x32 .google.container.v1.NetworkTags\x12/\n\x06taints\x18\x11 \x01(\x0b\x32\x1f.google.container.v1.NodeTaints\x12/\n\x06labels\x18\x12 \x01(\x0b\x32\x1f.google.container.v1.NodeLabels\x12?\n\x11linux_node_config\x18\x13 \x01(\x0b\x32$.google.container.v1.LinuxNodeConfig\x12>\n\x0ekubelet_config\x18\x14 \x01(\x0b\x32&.google.container.v1.NodeKubeletConfig\x12\x43\n\x13node_network_config\x18\x15 \x01(\x0b\x32&.google.container.v1.NodeNetworkConfig\x12\x34\n\x0bgcfs_config\x18\x16 \x01(\x0b\x32\x1f.google.container.v1.GcfsConfig\x12\x42\n\x12\x63onfidential_nodes\x18\x17 \x01(\x0b\x32&.google.container.v1.ConfidentialNodes\x12.\n\x05gvnic\x18\x1d \x01(\x0b\x32\x1f.google.container.v1.VirtualNIC\x12\x0c\n\x04\x65tag\x18\x1e \x01(\t\x12\x34\n\x0b\x66\x61st_socket\x18\x1f \x01(\x0b\x32\x1f.google.container.v1.FastSocket\x12\x42\n\x0elogging_config\x18 \x01(\x0b\x32*.google.container.v1.NodePoolLoggingConfig\x12<\n\x0fresource_labels\x18! \x01(\x0b\x32#.google.container.v1.ResourceLabels\x12\x43\n\x13windows_node_config\x18\" \x01(\x0b\x32&.google.container.v1.WindowsNodeConfig\x12<\n\x0c\x61\x63\x63\x65lerators\x18# \x03(\x0b\x32&.google.container.v1.AcceleratorConfig\x12\x19\n\x0cmachine_type\x18$ \x01(\tB\x03\xe0\x41\x01\x12\x16\n\tdisk_type\x18% \x01(\tB\x03\xe0\x41\x01\x12\x19\n\x0c\x64isk_size_gb\x18& \x01(\x03\x42\x03\xe0\x41\x01\x12G\n\x15resource_manager_tags\x18\' \x01(\x0b\x32(.google.container.v1.ResourceManagerTags\x12@\n\x11\x63ontainerd_config\x18( \x01(\x0b\x32%.google.container.v1.ContainerdConfig\x12M\n\x13queued_provisioning\x18* \x01(\x0b\x32\x30.google.container.v1.NodePool.QueuedProvisioning\"\xcd\x01\n\x1dSetNodePoolAutoscalingRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12\x18\n\x0cnode_pool_id\x18\x04 \x01(\tB\x02\x18\x01\x12\x42\n\x0b\x61utoscaling\x18\x05 \x01(\x0b\x32(.google.container.v1.NodePoolAutoscalingB\x03\xe0\x41\x02\x12\x0c\n\x04name\x18\x06 \x01(\t\"\x88\x01\n\x18SetLoggingServiceRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12\x1c\n\x0flogging_service\x18\x04 \x01(\tB\x03\xe0\x41\x02\x12\x0c\n\x04name\x18\x05 \x01(\t\"\x8e\x01\n\x1bSetMonitoringServiceRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12\x1f\n\x12monitoring_service\x18\x04 \x01(\tB\x03\xe0\x41\x02\x12\x0c\n\x04name\x18\x06 \x01(\t\"\xa7\x01\n\x16SetAddonsConfigRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12=\n\raddons_config\x18\x04 \x01(\x0b\x32!.google.container.v1.AddonsConfigB\x03\xe0\x41\x02\x12\x0c\n\x04name\x18\x06 \x01(\t\"}\n\x13SetLocationsRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12\x16\n\tlocations\x18\x04 \x03(\tB\x03\xe0\x41\x02\x12\x0c\n\x04name\x18\x06 \x01(\t\"\x82\x01\n\x13UpdateMasterRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12\x1b\n\x0emaster_version\x18\x04 \x01(\tB\x03\xe0\x41\x02\x12\x0c\n\x04name\x18\x07 \x01(\t\"\xb5\x02\n\x14SetMasterAuthRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12\x45\n\x06\x61\x63tion\x18\x04 \x01(\x0e\x32\x30.google.container.v1.SetMasterAuthRequest.ActionB\x03\xe0\x41\x02\x12\x34\n\x06update\x18\x05 \x01(\x0b\x32\x1f.google.container.v1.MasterAuthB\x03\xe0\x41\x02\x12\x0c\n\x04name\x18\x07 \x01(\t\"P\n\x06\x41\x63tion\x12\x0b\n\x07UNKNOWN\x10\x00\x12\x10\n\x0cSET_PASSWORD\x10\x01\x12\x15\n\x11GENERATE_PASSWORD\x10\x02\x12\x10\n\x0cSET_USERNAME\x10\x03\"f\n\x14\x44\x65leteClusterRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12\x0c\n\x04name\x18\x04 \x01(\t\"O\n\x13ListClustersRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x0e\n\x06parent\x18\x04 \x01(\t\"]\n\x14ListClustersResponse\x12.\n\x08\x63lusters\x18\x01 \x03(\x0b\x32\x1c.google.container.v1.Cluster\x12\x15\n\rmissing_zones\x18\x02 \x03(\t\"g\n\x13GetOperationRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x18\n\x0coperation_id\x18\x03 \x01(\tB\x02\x18\x01\x12\x0c\n\x04name\x18\x05 \x01(\t\"Q\n\x15ListOperationsRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x0e\n\x06parent\x18\x04 \x01(\t\"j\n\x16\x43\x61ncelOperationRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x18\n\x0coperation_id\x18\x03 \x01(\tB\x02\x18\x01\x12\x0c\n\x04name\x18\x04 \x01(\t\"c\n\x16ListOperationsResponse\x12\x32\n\noperations\x18\x01 \x03(\x0b\x32\x1e.google.container.v1.Operation\x12\x15\n\rmissing_zones\x18\x02 \x03(\t\"P\n\x16GetServerConfigRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x0c\n\x04name\x18\x04 \x01(\t\"\xf4\x02\n\x0cServerConfig\x12\x1f\n\x17\x64\x65\x66\x61ult_cluster_version\x18\x01 \x01(\t\x12\x1b\n\x13valid_node_versions\x18\x03 \x03(\t\x12\x1a\n\x12\x64\x65\x66\x61ult_image_type\x18\x04 \x01(\t\x12\x19\n\x11valid_image_types\x18\x05 \x03(\t\x12\x1d\n\x15valid_master_versions\x18\x06 \x03(\t\x12H\n\x08\x63hannels\x18\t \x03(\x0b\x32\x36.google.container.v1.ServerConfig.ReleaseChannelConfig\x1a\x85\x01\n\x14ReleaseChannelConfig\x12<\n\x07\x63hannel\x18\x01 \x01(\x0e\x32+.google.container.v1.ReleaseChannel.Channel\x12\x17\n\x0f\x64\x65\x66\x61ult_version\x18\x02 \x01(\t\x12\x16\n\x0evalid_versions\x18\x04 \x03(\t\"\xa0\x01\n\x15\x43reateNodePoolRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12\x35\n\tnode_pool\x18\x04 \x01(\x0b\x32\x1d.google.container.v1.NodePoolB\x03\xe0\x41\x02\x12\x0e\n\x06parent\x18\x06 \x01(\t\"\x81\x01\n\x15\x44\x65leteNodePoolRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12\x18\n\x0cnode_pool_id\x18\x04 \x01(\tB\x02\x18\x01\x12\x0c\n\x04name\x18\x06 \x01(\t\"h\n\x14ListNodePoolsRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12\x0e\n\x06parent\x18\x05 \x01(\t\"~\n\x12GetNodePoolRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12\x18\n\x0cnode_pool_id\x18\x04 \x01(\tB\x02\x18\x01\x12\x0c\n\x04name\x18\x06 \x01(\t\"\x9f\x03\n\x11\x42lueGreenSettings\x12_\n\x17standard_rollout_policy\x18\x01 \x01(\x0b\x32<.google.container.v1.BlueGreenSettings.StandardRolloutPolicyH\x00\x12?\n\x17node_pool_soak_duration\x18\x02 \x01(\x0b\x32\x19.google.protobuf.DurationH\x01\x88\x01\x01\x1a\xb9\x01\n\x15StandardRolloutPolicy\x12\x1a\n\x10\x62\x61tch_percentage\x18\x01 \x01(\x02H\x00\x12\x1a\n\x10\x62\x61tch_node_count\x18\x02 \x01(\x05H\x00\x12;\n\x13\x62\x61tch_soak_duration\x18\x03 \x01(\x0b\x32\x19.google.protobuf.DurationH\x01\x88\x01\x01\x42\x13\n\x11update_batch_sizeB\x16\n\x14_batch_soak_durationB\x10\n\x0erollout_policyB\x1a\n\x18_node_pool_soak_duration\"\xd1\x10\n\x08NodePool\x12\x0c\n\x04name\x18\x01 \x01(\t\x12/\n\x06\x63onfig\x18\x02 \x01(\x0b\x32\x1f.google.container.v1.NodeConfig\x12\x1a\n\x12initial_node_count\x18\x03 \x01(\x05\x12\x11\n\tlocations\x18\r \x03(\t\x12>\n\x0enetwork_config\x18\x0e \x01(\x0b\x32&.google.container.v1.NodeNetworkConfig\x12\x16\n\tself_link\x18\x64 \x01(\tB\x03\xe0\x41\x03\x12\x0f\n\x07version\x18\x65 \x01(\t\x12 \n\x13instance_group_urls\x18\x66 \x03(\tB\x03\xe0\x41\x03\x12\x39\n\x06status\x18g \x01(\x0e\x32$.google.container.v1.NodePool.StatusB\x03\xe0\x41\x03\x12\x1d\n\x0estatus_message\x18h \x01(\tB\x05\x18\x01\xe0\x41\x03\x12=\n\x0b\x61utoscaling\x18\x04 \x01(\x0b\x32(.google.container.v1.NodePoolAutoscaling\x12\x37\n\nmanagement\x18\x05 \x01(\x0b\x32#.google.container.v1.NodeManagement\x12\x43\n\x13max_pods_constraint\x18\x06 \x01(\x0b\x32&.google.container.v1.MaxPodsConstraint\x12\x38\n\nconditions\x18i \x03(\x0b\x32$.google.container.v1.StatusCondition\x12\x1f\n\x12pod_ipv4_cidr_size\x18\x07 \x01(\x05\x42\x03\xe0\x41\x03\x12G\n\x10upgrade_settings\x18k \x01(\x0b\x32-.google.container.v1.NodePool.UpgradeSettings\x12G\n\x10placement_policy\x18l \x01(\x0b\x32-.google.container.v1.NodePool.PlacementPolicy\x12\x42\n\x0bupdate_info\x18m \x01(\x0b\x32(.google.container.v1.NodePool.UpdateInfoB\x03\xe0\x41\x03\x12\x0c\n\x04\x65tag\x18n \x01(\t\x12M\n\x13queued_provisioning\x18p \x01(\x0b\x32\x30.google.container.v1.NodePool.QueuedProvisioning\x12M\n\x18\x62\x65st_effort_provisioning\x18q \x01(\x0b\x32+.google.container.v1.BestEffortProvisioning\x1a\xf0\x01\n\x0fUpgradeSettings\x12\x11\n\tmax_surge\x18\x01 \x01(\x05\x12\x17\n\x0fmax_unavailable\x18\x02 \x01(\x05\x12\x42\n\x08strategy\x18\x03 \x01(\x0e\x32+.google.container.v1.NodePoolUpdateStrategyH\x00\x88\x01\x01\x12H\n\x13\x62lue_green_settings\x18\x04 \x01(\x0b\x32&.google.container.v1.BlueGreenSettingsH\x01\x88\x01\x01\x42\x0b\n\t_strategyB\x16\n\x14_blue_green_settings\x1a\x88\x04\n\nUpdateInfo\x12O\n\x0f\x62lue_green_info\x18\x01 \x01(\x0b\x32\x36.google.container.v1.NodePool.UpdateInfo.BlueGreenInfo\x1a\xa8\x03\n\rBlueGreenInfo\x12K\n\x05phase\x18\x01 \x01(\x0e\x32<.google.container.v1.NodePool.UpdateInfo.BlueGreenInfo.Phase\x12 \n\x18\x62lue_instance_group_urls\x18\x02 \x03(\t\x12!\n\x19green_instance_group_urls\x18\x03 \x03(\t\x12%\n\x1d\x62lue_pool_deletion_start_time\x18\x04 \x01(\t\x12\x1a\n\x12green_pool_version\x18\x05 \x01(\t\"\xc1\x01\n\x05Phase\x12\x15\n\x11PHASE_UNSPECIFIED\x10\x00\x12\x12\n\x0eUPDATE_STARTED\x10\x01\x12\x17\n\x13\x43REATING_GREEN_POOL\x10\x02\x12\x17\n\x13\x43ORDONING_BLUE_POOL\x10\x03\x12\x16\n\x12\x44RAINING_BLUE_POOL\x10\x04\x12\x15\n\x11NODE_POOL_SOAKING\x10\x05\x12\x16\n\x12\x44\x45LETING_BLUE_POOL\x10\x06\x12\x14\n\x10ROLLBACK_STARTED\x10\x07\x1a\xae\x01\n\x0fPlacementPolicy\x12@\n\x04type\x18\x01 \x01(\x0e\x32\x32.google.container.v1.NodePool.PlacementPolicy.Type\x12\x19\n\x0ctpu_topology\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x0bpolicy_name\x18\x03 \x01(\t\")\n\x04Type\x12\x14\n\x10TYPE_UNSPECIFIED\x10\x00\x12\x0b\n\x07\x43OMPACT\x10\x01\x1a%\n\x12QueuedProvisioning\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\"\x81\x01\n\x06Status\x12\x16\n\x12STATUS_UNSPECIFIED\x10\x00\x12\x10\n\x0cPROVISIONING\x10\x01\x12\x0b\n\x07RUNNING\x10\x02\x12\x16\n\x12RUNNING_WITH_ERROR\x10\x03\x12\x0f\n\x0bRECONCILING\x10\x04\x12\x0c\n\x08STOPPING\x10\x05\x12\t\n\x05\x45RROR\x10\x06\"}\n\x0eNodeManagement\x12\x14\n\x0c\x61uto_upgrade\x18\x01 \x01(\x08\x12\x13\n\x0b\x61uto_repair\x18\x02 \x01(\x08\x12@\n\x0fupgrade_options\x18\n \x01(\x0b\x32\'.google.container.v1.AutoUpgradeOptions\"F\n\x16\x42\x65stEffortProvisioning\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\x12\x1b\n\x13min_provision_nodes\x18\x02 \x01(\x05\"T\n\x12\x41utoUpgradeOptions\x12$\n\x17\x61uto_upgrade_start_time\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tB\x03\xe0\x41\x03\"e\n\x11MaintenancePolicy\x12\x36\n\x06window\x18\x01 \x01(\x0b\x32&.google.container.v1.MaintenanceWindow\x12\x18\n\x10resource_version\x18\x03 \x01(\t\"\xf6\x02\n\x11MaintenanceWindow\x12O\n\x18\x64\x61ily_maintenance_window\x18\x02 \x01(\x0b\x32+.google.container.v1.DailyMaintenanceWindowH\x00\x12\x44\n\x10recurring_window\x18\x03 \x01(\x0b\x32(.google.container.v1.RecurringTimeWindowH\x00\x12\x61\n\x16maintenance_exclusions\x18\x04 \x03(\x0b\x32\x41.google.container.v1.MaintenanceWindow.MaintenanceExclusionsEntry\x1a]\n\x1aMaintenanceExclusionsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12.\n\x05value\x18\x02 \x01(\x0b\x32\x1f.google.container.v1.TimeWindow:\x02\x38\x01\x42\x08\n\x06policy\"\xd0\x01\n\nTimeWindow\x12Y\n\x1dmaintenance_exclusion_options\x18\x03 \x01(\x0b\x32\x30.google.container.v1.MaintenanceExclusionOptionsH\x00\x12.\n\nstart_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12,\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\t\n\x07options\"\xb4\x01\n\x1bMaintenanceExclusionOptions\x12\x45\n\x05scope\x18\x01 \x01(\x0e\x32\x36.google.container.v1.MaintenanceExclusionOptions.Scope\"N\n\x05Scope\x12\x0f\n\x0bNO_UPGRADES\x10\x00\x12\x15\n\x11NO_MINOR_UPGRADES\x10\x01\x12\x1d\n\x19NO_MINOR_OR_NODE_UPGRADES\x10\x02\"Z\n\x13RecurringTimeWindow\x12/\n\x06window\x18\x01 \x01(\x0b\x32\x1f.google.container.v1.TimeWindow\x12\x12\n\nrecurrence\x18\x02 \x01(\t\"C\n\x16\x44\x61ilyMaintenanceWindow\x12\x12\n\nstart_time\x18\x02 \x01(\t\x12\x15\n\x08\x64uration\x18\x03 \x01(\tB\x03\xe0\x41\x03\"\xc6\x01\n\x1cSetNodePoolManagementRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12\x18\n\x0cnode_pool_id\x18\x04 \x01(\tB\x02\x18\x01\x12<\n\nmanagement\x18\x05 \x01(\x0b\x32#.google.container.v1.NodeManagementB\x03\xe0\x41\x02\x12\x0c\n\x04name\x18\x07 \x01(\t\"\x9b\x01\n\x16SetNodePoolSizeRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12\x18\n\x0cnode_pool_id\x18\x04 \x01(\tB\x02\x18\x01\x12\x17\n\nnode_count\x18\x05 \x01(\x05\x42\x03\xe0\x41\x02\x12\x0c\n\x04name\x18\x07 \x01(\t\".\n\x1e\x43ompleteNodePoolUpgradeRequest\x12\x0c\n\x04name\x18\x01 \x01(\t\"\x9f\x01\n\x1eRollbackNodePoolUpgradeRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12\x18\n\x0cnode_pool_id\x18\x04 \x01(\tB\x02\x18\x01\x12\x0c\n\x04name\x18\x06 \x01(\t\x12\x13\n\x0brespect_pdb\x18\x07 \x01(\x08\"J\n\x15ListNodePoolsResponse\x12\x31\n\nnode_pools\x18\x01 \x03(\x0b\x32\x1d.google.container.v1.NodePool\"\xaf\x03\n\x12\x43lusterAutoscaling\x12$\n\x1c\x65nable_node_autoprovisioning\x18\x01 \x01(\x08\x12;\n\x0fresource_limits\x18\x02 \x03(\x0b\x32\".google.container.v1.ResourceLimit\x12W\n\x13\x61utoscaling_profile\x18\x03 \x01(\x0e\x32:.google.container.v1.ClusterAutoscaling.AutoscalingProfile\x12\x62\n#autoprovisioning_node_pool_defaults\x18\x04 \x01(\x0b\x32\x35.google.container.v1.AutoprovisioningNodePoolDefaults\x12\"\n\x1a\x61utoprovisioning_locations\x18\x05 \x03(\t\"U\n\x12\x41utoscalingProfile\x12\x17\n\x13PROFILE_UNSPECIFIED\x10\x00\x12\x18\n\x14OPTIMIZE_UTILIZATION\x10\x01\x12\x0c\n\x08\x42\x41LANCED\x10\x02\"\xf8\x03\n AutoprovisioningNodePoolDefaults\x12\x14\n\x0coauth_scopes\x18\x01 \x03(\t\x12\x17\n\x0fservice_account\x18\x02 \x01(\t\x12G\n\x10upgrade_settings\x18\x03 \x01(\x0b\x32-.google.container.v1.NodePool.UpgradeSettings\x12\x37\n\nmanagement\x18\x04 \x01(\x0b\x32#.google.container.v1.NodeManagement\x12\x1c\n\x10min_cpu_platform\x18\x05 \x01(\tB\x02\x18\x01\x12\x14\n\x0c\x64isk_size_gb\x18\x06 \x01(\x05\x12\x11\n\tdisk_type\x18\x07 \x01(\t\x12M\n\x18shielded_instance_config\x18\x08 \x01(\x0b\x32+.google.container.v1.ShieldedInstanceConfig\x12\x19\n\x11\x62oot_disk_kms_key\x18\t \x01(\t\x12\x12\n\nimage_type\x18\n \x01(\t\x12\x33\n&insecure_kubelet_readonly_port_enabled\x18\r \x01(\x08H\x00\x88\x01\x01\x42)\n\'_insecure_kubelet_readonly_port_enabled\"H\n\rResourceLimit\x12\x15\n\rresource_type\x18\x01 \x01(\t\x12\x0f\n\x07minimum\x18\x02 \x01(\x03\x12\x0f\n\x07maximum\x18\x03 \x01(\x03\"\xc7\x02\n\x13NodePoolAutoscaling\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\x12\x16\n\x0emin_node_count\x18\x02 \x01(\x05\x12\x16\n\x0emax_node_count\x18\x03 \x01(\x05\x12\x17\n\x0f\x61utoprovisioned\x18\x04 \x01(\x08\x12P\n\x0flocation_policy\x18\x05 \x01(\x0e\x32\x37.google.container.v1.NodePoolAutoscaling.LocationPolicy\x12\x1c\n\x14total_min_node_count\x18\x06 \x01(\x05\x12\x1c\n\x14total_max_node_count\x18\x07 \x01(\x05\"H\n\x0eLocationPolicy\x12\x1f\n\x1bLOCATION_POLICY_UNSPECIFIED\x10\x00\x12\x0c\n\x08\x42\x41LANCED\x10\x01\x12\x07\n\x03\x41NY\x10\x02\"\x92\x02\n\x10SetLabelsRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12W\n\x0fresource_labels\x18\x04 \x03(\x0b\x32\x39.google.container.v1.SetLabelsRequest.ResourceLabelsEntryB\x03\xe0\x41\x02\x12\x1e\n\x11label_fingerprint\x18\x05 \x01(\tB\x03\xe0\x41\x02\x12\x0c\n\x04name\x18\x07 \x01(\t\x1a\x35\n\x13ResourceLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"|\n\x14SetLegacyAbacRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12\x14\n\x07\x65nabled\x18\x04 \x01(\x08\x42\x03\xe0\x41\x02\x12\x0c\n\x04name\x18\x06 \x01(\t\"\x84\x01\n\x16StartIPRotationRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12\x0c\n\x04name\x18\x06 \x01(\t\x12\x1a\n\x12rotate_credentials\x18\x07 \x01(\x08\"k\n\x19\x43ompleteIPRotationRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12\x0c\n\x04name\x18\x07 \x01(\t\"\xc5\x02\n\x11\x41\x63\x63\x65leratorConfig\x12\x19\n\x11\x61\x63\x63\x65lerator_count\x18\x01 \x01(\x03\x12\x18\n\x10\x61\x63\x63\x65lerator_type\x18\x02 \x01(\t\x12\x1a\n\x12gpu_partition_size\x18\x03 \x01(\t\x12\x46\n\x12gpu_sharing_config\x18\x05 \x01(\x0b\x32%.google.container.v1.GPUSharingConfigH\x00\x88\x01\x01\x12]\n\x1egpu_driver_installation_config\x18\x06 \x01(\x0b\x32\x30.google.container.v1.GPUDriverInstallationConfigH\x01\x88\x01\x01\x42\x15\n\x13_gpu_sharing_configB!\n\x1f_gpu_driver_installation_config\"\x83\x02\n\x10GPUSharingConfig\x12\"\n\x1amax_shared_clients_per_gpu\x18\x01 \x01(\x03\x12[\n\x14gpu_sharing_strategy\x18\x02 \x01(\x0e\x32\x38.google.container.v1.GPUSharingConfig.GPUSharingStrategyH\x00\x88\x01\x01\"U\n\x12GPUSharingStrategy\x12$\n GPU_SHARING_STRATEGY_UNSPECIFIED\x10\x00\x12\x10\n\x0cTIME_SHARING\x10\x01\x12\x07\n\x03MPS\x10\x02\x42\x17\n\x15_gpu_sharing_strategy\"\x84\x02\n\x1bGPUDriverInstallationConfig\x12\x62\n\x12gpu_driver_version\x18\x01 \x01(\x0e\x32\x41.google.container.v1.GPUDriverInstallationConfig.GPUDriverVersionH\x00\x88\x01\x01\"j\n\x10GPUDriverVersion\x12\"\n\x1eGPU_DRIVER_VERSION_UNSPECIFIED\x10\x00\x12\x19\n\x15INSTALLATION_DISABLED\x10\x01\x12\x0b\n\x07\x44\x45\x46\x41ULT\x10\x02\x12\n\n\x06LATEST\x10\x03\x42\x15\n\x13_gpu_driver_version\"\x9a\x01\n\x16WorkloadMetadataConfig\x12>\n\x04mode\x18\x02 \x01(\x0e\x32\x30.google.container.v1.WorkloadMetadataConfig.Mode\"@\n\x04Mode\x12\x14\n\x10MODE_UNSPECIFIED\x10\x00\x12\x10\n\x0cGCE_METADATA\x10\x01\x12\x10\n\x0cGKE_METADATA\x10\x02\"\xaa\x01\n\x17SetNetworkPolicyRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12?\n\x0enetwork_policy\x18\x04 \x01(\x0b\x32\".google.container.v1.NetworkPolicyB\x03\xe0\x41\x02\x12\x0c\n\x04name\x18\x06 \x01(\t\"\xb9\x01\n\x1bSetMaintenancePolicyRequest\x12\x17\n\nproject_id\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x11\n\x04zone\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x17\n\ncluster_id\x18\x03 \x01(\tB\x03\xe0\x41\x02\x12G\n\x12maintenance_policy\x18\x04 \x01(\x0b\x32&.google.container.v1.MaintenancePolicyB\x03\xe0\x41\x02\x12\x0c\n\x04name\x18\x05 \x01(\t\"\xa9\x02\n\x0fStatusCondition\x12;\n\x04\x63ode\x18\x01 \x01(\x0e\x32).google.container.v1.StatusCondition.CodeB\x02\x18\x01\x12\x0f\n\x07message\x18\x02 \x01(\t\x12(\n\x0e\x63\x61nonical_code\x18\x03 \x01(\x0e\x32\x10.google.rpc.Code\"\x9d\x01\n\x04\x43ode\x12\x0b\n\x07UNKNOWN\x10\x00\x12\x10\n\x0cGCE_STOCKOUT\x10\x01\x12\x1f\n\x1bGKE_SERVICE_ACCOUNT_DELETED\x10\x02\x12\x16\n\x12GCE_QUOTA_EXCEEDED\x10\x03\x12\x13\n\x0fSET_BY_OPERATOR\x10\x04\x12\x17\n\x13\x43LOUD_KMS_KEY_ERROR\x10\x07\x12\x0f\n\x0b\x43\x41_EXPIRING\x10\t\"\xbb\t\n\rNetworkConfig\x12\x14\n\x07network\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x17\n\nsubnetwork\x18\x02 \x01(\tB\x03\xe0\x41\x03\x12$\n\x1c\x65nable_intra_node_visibility\x18\x05 \x01(\x08\x12\x43\n\x13\x64\x65\x66\x61ult_snat_status\x18\x07 \x01(\x0b\x32&.google.container.v1.DefaultSnatStatus\x12\x1f\n\x17\x65nable_l4ilb_subsetting\x18\n \x01(\x08\x12@\n\x11\x64\x61tapath_provider\x18\x0b \x01(\x0e\x32%.google.container.v1.DatapathProvider\x12P\n\x1aprivate_ipv6_google_access\x18\x0c \x01(\x0e\x32,.google.container.v1.PrivateIPv6GoogleAccess\x12\x32\n\ndns_config\x18\r \x01(\x0b\x32\x1e.google.container.v1.DNSConfig\x12R\n\x1bservice_external_ips_config\x18\x0f \x01(\x0b\x32-.google.container.v1.ServiceExternalIPsConfig\x12\x41\n\x12gateway_api_config\x18\x10 \x01(\x0b\x32%.google.container.v1.GatewayAPIConfig\x12\x1f\n\x17\x65nable_multi_networking\x18\x11 \x01(\x08\x12\x66\n\x1anetwork_performance_config\x18\x12 \x01(\x0b\x32\x42.google.container.v1.NetworkConfig.ClusterNetworkPerformanceConfig\x12\'\n\x1a\x65nable_fqdn_network_policy\x18\x13 \x01(\x08H\x00\x88\x01\x01\x12Y\n\x1cin_transit_encryption_config\x18\x14 \x01(\x0e\x32..google.container.v1.InTransitEncryptionConfigH\x01\x88\x01\x01\x12\x35\n(enable_cilium_clusterwide_network_policy\x18\x15 \x01(\x08H\x02\x88\x01\x01\x1a\xde\x01\n\x1f\x43lusterNetworkPerformanceConfig\x12q\n\x1btotal_egress_bandwidth_tier\x18\x01 \x01(\x0e\x32G.google.container.v1.NetworkConfig.ClusterNetworkPerformanceConfig.TierH\x00\x88\x01\x01\"(\n\x04Tier\x12\x14\n\x10TIER_UNSPECIFIED\x10\x00\x12\n\n\x06TIER_1\x10\x01\x42\x1e\n\x1c_total_egress_bandwidth_tierB\x1d\n\x1b_enable_fqdn_network_policyB\x1f\n\x1d_in_transit_encryption_configB+\n)_enable_cilium_clusterwide_network_policy\"\xc0\x01\n\x10GatewayAPIConfig\x12>\n\x07\x63hannel\x18\x01 \x01(\x0e\x32-.google.container.v1.GatewayAPIConfig.Channel\"l\n\x07\x43hannel\x12\x17\n\x13\x43HANNEL_UNSPECIFIED\x10\x00\x12\x14\n\x10\x43HANNEL_DISABLED\x10\x01\x12\x1c\n\x14\x43HANNEL_EXPERIMENTAL\x10\x03\x1a\x02\x08\x01\x12\x14\n\x10\x43HANNEL_STANDARD\x10\x04\"+\n\x18ServiceExternalIPsConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\"(\n\x16GetOpenIDConfigRequest\x12\x0e\n\x06parent\x18\x01 \x01(\t\"\xdc\x01\n\x17GetOpenIDConfigResponse\x12\x0e\n\x06issuer\x18\x01 \x01(\t\x12\x10\n\x08jwks_uri\x18\x02 \x01(\t\x12 \n\x18response_types_supported\x18\x03 \x03(\t\x12\x1f\n\x17subject_types_supported\x18\x04 \x03(\t\x12-\n%id_token_signing_alg_values_supported\x18\x05 \x03(\t\x12\x18\n\x10\x63laims_supported\x18\x06 \x03(\t\x12\x13\n\x0bgrant_types\x18\x07 \x03(\t\"\'\n\x15GetJSONWebKeysRequest\x12\x0e\n\x06parent\x18\x01 \x01(\t\"r\n\x03Jwk\x12\x0b\n\x03kty\x18\x01 \x01(\t\x12\x0b\n\x03\x61lg\x18\x02 \x01(\t\x12\x0b\n\x03use\x18\x03 \x01(\t\x12\x0b\n\x03kid\x18\x04 \x01(\t\x12\t\n\x01n\x18\x05 \x01(\t\x12\t\n\x01\x65\x18\x06 \x01(\t\x12\t\n\x01x\x18\x07 \x01(\t\x12\t\n\x01y\x18\x08 \x01(\t\x12\x0b\n\x03\x63rv\x18\t \x01(\t\"@\n\x16GetJSONWebKeysResponse\x12&\n\x04keys\x18\x01 \x03(\x0b\x32\x18.google.container.v1.Jwk\"2\n\"CheckAutopilotCompatibilityRequest\x12\x0c\n\x04name\x18\x01 \x01(\t\"\xfc\x02\n\x1b\x41utopilotCompatibilityIssue\x12\x34\n\x10last_observation\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x17\n\x0f\x63onstraint_type\x18\x02 \x01(\t\x12X\n\x14incompatibility_type\x18\x03 \x01(\x0e\x32:.google.container.v1.AutopilotCompatibilityIssue.IssueType\x12\x10\n\x08subjects\x18\x04 \x03(\t\x12\x19\n\x11\x64ocumentation_url\x18\x05 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x06 \x01(\t\"r\n\tIssueType\x12\x0f\n\x0bUNSPECIFIED\x10\x00\x12\x13\n\x0fINCOMPATIBILITY\x10\x01\x12\x1e\n\x1a\x41\x44\x44ITIONAL_CONFIG_REQUIRED\x10\x02\x12\x1f\n\x1bPASSED_WITH_OPTIONAL_CONFIG\x10\x03\"x\n#CheckAutopilotCompatibilityResponse\x12@\n\x06issues\x18\x01 \x03(\x0b\x32\x30.google.container.v1.AutopilotCompatibilityIssue\x12\x0f\n\x07summary\x18\x02 \x01(\t\"\x9c\x01\n\x0eReleaseChannel\x12<\n\x07\x63hannel\x18\x01 \x01(\x0e\x32+.google.container.v1.ReleaseChannel.Channel\"L\n\x07\x43hannel\x12\x0f\n\x0bUNSPECIFIED\x10\x00\x12\t\n\x05RAPID\x10\x01\x12\x0b\n\x07REGULAR\x10\x02\x12\n\n\x06STABLE\x10\x03\x12\x0c\n\x08\x45XTENDED\x10\x04\"\'\n\x14\x43ostManagementConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\",\n\x19IntraNodeVisibilityConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\"&\n\x13ILBSubsettingConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\"\xf7\x02\n\tDNSConfig\x12<\n\x0b\x63luster_dns\x18\x01 \x01(\x0e\x32\'.google.container.v1.DNSConfig.Provider\x12\x42\n\x11\x63luster_dns_scope\x18\x02 \x01(\x0e\x32\'.google.container.v1.DNSConfig.DNSScope\x12\x1a\n\x12\x63luster_dns_domain\x18\x03 \x01(\t\x12*\n\x1d\x61\x64\x64itive_vpc_scope_dns_domain\x18\x05 \x01(\tB\x03\xe0\x41\x01\"W\n\x08Provider\x12\x18\n\x14PROVIDER_UNSPECIFIED\x10\x00\x12\x14\n\x10PLATFORM_DEFAULT\x10\x01\x12\r\n\tCLOUD_DNS\x10\x02\x12\x0c\n\x08KUBE_DNS\x10\x03\"G\n\x08\x44NSScope\x12\x19\n\x15\x44NS_SCOPE_UNSPECIFIED\x10\x00\x12\x11\n\rCLUSTER_SCOPE\x10\x01\x12\r\n\tVPC_SCOPE\x10\x02\".\n\x11MaxPodsConstraint\x12\x19\n\x11max_pods_per_node\x18\x01 \x01(\x03\"/\n\x16WorkloadIdentityConfig\x12\x15\n\rworkload_pool\x18\x02 \x01(\t\"(\n\x15IdentityServiceConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\"K\n\x10MeshCertificates\x12\x37\n\x13\x65nable_certificates\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\"\xe3\x05\n\x12\x44\x61tabaseEncryption\x12\x10\n\x08key_name\x18\x01 \x01(\t\x12<\n\x05state\x18\x02 \x01(\x0e\x32-.google.container.v1.DatabaseEncryption.State\x12U\n\rcurrent_state\x18\x03 \x01(\x0e\x32\x34.google.container.v1.DatabaseEncryption.CurrentStateB\x03\xe0\x41\x03H\x00\x88\x01\x01\x12\x1c\n\x0f\x64\x65\x63ryption_keys\x18\x04 \x03(\tB\x03\xe0\x41\x03\x12Z\n\x15last_operation_errors\x18\x05 \x03(\x0b\x32\x36.google.container.v1.DatabaseEncryption.OperationErrorB\x03\xe0\x41\x03\x1ah\n\x0eOperationError\x12\x10\n\x08key_name\x18\x01 \x01(\t\x12\x15\n\rerror_message\x18\x02 \x01(\t\x12-\n\ttimestamp\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"2\n\x05State\x12\x0b\n\x07UNKNOWN\x10\x00\x12\r\n\tENCRYPTED\x10\x01\x12\r\n\tDECRYPTED\x10\x02\"\xfb\x01\n\x0c\x43urrentState\x12\x1d\n\x19\x43URRENT_STATE_UNSPECIFIED\x10\x00\x12\x1b\n\x17\x43URRENT_STATE_ENCRYPTED\x10\x07\x12\x1b\n\x17\x43URRENT_STATE_DECRYPTED\x10\x02\x12$\n CURRENT_STATE_ENCRYPTION_PENDING\x10\x03\x12\"\n\x1e\x43URRENT_STATE_ENCRYPTION_ERROR\x10\x04\x12$\n CURRENT_STATE_DECRYPTION_PENDING\x10\x05\x12\"\n\x1e\x43URRENT_STATE_DECRYPTION_ERROR\x10\x06\x42\x10\n\x0e_current_state\"e\n\x1cListUsableSubnetworksRequest\x12\x0e\n\x06parent\x18\x01 \x01(\t\x12\x0e\n\x06\x66ilter\x18\x02 \x01(\t\x12\x11\n\tpage_size\x18\x03 \x01(\x05\x12\x12\n\npage_token\x18\x04 \x01(\t\"t\n\x1dListUsableSubnetworksResponse\x12:\n\x0bsubnetworks\x18\x01 \x03(\x0b\x32%.google.container.v1.UsableSubnetwork\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\x80\x02\n\x1eUsableSubnetworkSecondaryRange\x12\x12\n\nrange_name\x18\x01 \x01(\t\x12\x15\n\rip_cidr_range\x18\x02 \x01(\t\x12J\n\x06status\x18\x03 \x01(\x0e\x32:.google.container.v1.UsableSubnetworkSecondaryRange.Status\"g\n\x06Status\x12\x0b\n\x07UNKNOWN\x10\x00\x12\n\n\x06UNUSED\x10\x01\x12\x12\n\x0eIN_USE_SERVICE\x10\x02\x12\x18\n\x14IN_USE_SHAREABLE_POD\x10\x03\x12\x16\n\x12IN_USE_MANAGED_POD\x10\x04\"\xb8\x01\n\x10UsableSubnetwork\x12\x12\n\nsubnetwork\x18\x01 \x01(\t\x12\x0f\n\x07network\x18\x02 \x01(\t\x12\x15\n\rip_cidr_range\x18\x03 \x01(\t\x12P\n\x13secondary_ip_ranges\x18\x04 \x03(\x0b\x32\x33.google.container.v1.UsableSubnetworkSecondaryRange\x12\x16\n\x0estatus_message\x18\x05 \x01(\t\"\xed\x02\n\x19ResourceUsageExportConfig\x12`\n\x14\x62igquery_destination\x18\x01 \x01(\x0b\x32\x42.google.container.v1.ResourceUsageExportConfig.BigQueryDestination\x12&\n\x1e\x65nable_network_egress_metering\x18\x02 \x01(\x08\x12m\n\x1b\x63onsumption_metering_config\x18\x03 \x01(\x0b\x32H.google.container.v1.ResourceUsageExportConfig.ConsumptionMeteringConfig\x1a)\n\x13\x42igQueryDestination\x12\x12\n\ndataset_id\x18\x01 \x01(\t\x1a,\n\x19\x43onsumptionMeteringConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\")\n\x16VerticalPodAutoscaling\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\"%\n\x11\x44\x65\x66\x61ultSnatStatus\x12\x10\n\x08\x64isabled\x18\x01 \x01(\x08\" \n\rShieldedNodes\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\"\x1d\n\nVirtualNIC\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\"\x1d\n\nFastSocket\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\"\xa8\x03\n\x12NotificationConfig\x12>\n\x06pubsub\x18\x01 \x01(\x0b\x32..google.container.v1.NotificationConfig.PubSub\x1a\x8a\x01\n\x06PubSub\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\x12/\n\x05topic\x18\x02 \x01(\tB \xfa\x41\x1d\n\x1bpubsub.googleapis.com/Topic\x12>\n\x06\x66ilter\x18\x03 \x01(\x0b\x32..google.container.v1.NotificationConfig.Filter\x1aO\n\x06\x46ilter\x12\x45\n\nevent_type\x18\x01 \x03(\x0e\x32\x31.google.container.v1.NotificationConfig.EventType\"t\n\tEventType\x12\x1a\n\x16\x45VENT_TYPE_UNSPECIFIED\x10\x00\x12\x1b\n\x17UPGRADE_AVAILABLE_EVENT\x10\x01\x12\x11\n\rUPGRADE_EVENT\x10\x02\x12\x1b\n\x17SECURITY_BULLETIN_EVENT\x10\x03\"$\n\x11\x43onfidentialNodes\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\"\xdf\x01\n\x0cUpgradeEvent\x12?\n\rresource_type\x18\x01 \x01(\x0e\x32(.google.container.v1.UpgradeResourceType\x12\x11\n\toperation\x18\x02 \x01(\t\x12\x38\n\x14operation_start_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x17\n\x0f\x63urrent_version\x18\x04 \x01(\t\x12\x16\n\x0etarget_version\x18\x05 \x01(\t\x12\x10\n\x08resource\x18\x06 \x01(\t\"\xb9\x01\n\x15UpgradeAvailableEvent\x12\x0f\n\x07version\x18\x01 \x01(\t\x12?\n\rresource_type\x18\x02 \x01(\x0e\x32(.google.container.v1.UpgradeResourceType\x12<\n\x0frelease_channel\x18\x03 \x01(\x0b\x32#.google.container.v1.ReleaseChannel\x12\x10\n\x08resource\x18\x04 \x01(\t\"\x9e\x02\n\x15SecurityBulletinEvent\x12\x1e\n\x16resource_type_affected\x18\x01 \x01(\t\x12\x13\n\x0b\x62ulletin_id\x18\x02 \x01(\t\x12\x0f\n\x07\x63ve_ids\x18\x03 \x03(\t\x12\x10\n\x08severity\x18\x04 \x01(\t\x12\x14\n\x0c\x62ulletin_uri\x18\x05 \x01(\t\x12\x19\n\x11\x62rief_description\x18\x06 \x01(\t\x12!\n\x19\x61\x66\x66\x65\x63ted_supported_minors\x18\x07 \x03(\t\x12\x18\n\x10patched_versions\x18\x08 \x03(\t\x12 \n\x18suggested_upgrade_target\x18\t \x01(\t\x12\x1d\n\x15manual_steps_required\x18\n \x01(\x08\"g\n\tAutopilot\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\x12I\n\x16workload_policy_config\x18\x02 \x01(\x0b\x32).google.container.v1.WorkloadPolicyConfig\"H\n\x14WorkloadPolicyConfig\x12\x1c\n\x0f\x61llow_net_admin\x18\x01 \x01(\x08H\x00\x88\x01\x01\x42\x12\n\x10_allow_net_admin\"V\n\rLoggingConfig\x12\x45\n\x10\x63omponent_config\x18\x01 \x01(\x0b\x32+.google.container.v1.LoggingComponentConfig\"\xef\x01\n\x16LoggingComponentConfig\x12P\n\x11\x65nable_components\x18\x01 \x03(\x0e\x32\x35.google.container.v1.LoggingComponentConfig.Component\"\x82\x01\n\tComponent\x12\x19\n\x15\x43OMPONENT_UNSPECIFIED\x10\x00\x12\x15\n\x11SYSTEM_COMPONENTS\x10\x01\x12\r\n\tWORKLOADS\x10\x02\x12\r\n\tAPISERVER\x10\x03\x12\r\n\tSCHEDULER\x10\x04\x12\x16\n\x12\x43ONTROLLER_MANAGER\x10\x05\"*\n\x17RayClusterLoggingConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\"\x97\x02\n\x10MonitoringConfig\x12H\n\x10\x63omponent_config\x18\x01 \x01(\x0b\x32..google.container.v1.MonitoringComponentConfig\x12O\n\x19managed_prometheus_config\x18\x02 \x01(\x0b\x32,.google.container.v1.ManagedPrometheusConfig\x12h\n&advanced_datapath_observability_config\x18\x03 \x01(\x0b\x32\x38.google.container.v1.AdvancedDatapathObservabilityConfig\"\x9e\x02\n#AdvancedDatapathObservabilityConfig\x12\x16\n\x0e\x65nable_metrics\x18\x01 \x01(\x08\x12V\n\nrelay_mode\x18\x02 \x01(\x0e\x32\x42.google.container.v1.AdvancedDatapathObservabilityConfig.RelayMode\x12\x19\n\x0c\x65nable_relay\x18\x03 \x01(\x08H\x00\x88\x01\x01\"[\n\tRelayMode\x12\x1a\n\x16RELAY_MODE_UNSPECIFIED\x10\x00\x12\x0c\n\x08\x44ISABLED\x10\x01\x12\x13\n\x0fINTERNAL_VPC_LB\x10\x03\x12\x0f\n\x0b\x45XTERNAL_LB\x10\x04\x42\x0f\n\r_enable_relay\"-\n\x1aRayClusterMonitoringConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\"Z\n\x15NodePoolLoggingConfig\x12\x41\n\x0evariant_config\x18\x01 \x01(\x0b\x32).google.container.v1.LoggingVariantConfig\"\x9f\x01\n\x14LoggingVariantConfig\x12\x42\n\x07variant\x18\x01 \x01(\x0e\x32\x31.google.container.v1.LoggingVariantConfig.Variant\"C\n\x07Variant\x12\x17\n\x13VARIANT_UNSPECIFIED\x10\x00\x12\x0b\n\x07\x44\x45\x46\x41ULT\x10\x01\x12\x12\n\x0eMAX_THROUGHPUT\x10\x02\"\xda\x02\n\x19MonitoringComponentConfig\x12S\n\x11\x65nable_components\x18\x01 \x03(\x0e\x32\x38.google.container.v1.MonitoringComponentConfig.Component\"\xe7\x01\n\tComponent\x12\x19\n\x15\x43OMPONENT_UNSPECIFIED\x10\x00\x12\x15\n\x11SYSTEM_COMPONENTS\x10\x01\x12\r\n\tAPISERVER\x10\x03\x12\r\n\tSCHEDULER\x10\x04\x12\x16\n\x12\x43ONTROLLER_MANAGER\x10\x05\x12\x0b\n\x07STORAGE\x10\x07\x12\x07\n\x03HPA\x10\x08\x12\x07\n\x03POD\x10\t\x12\r\n\tDAEMONSET\x10\n\x12\x0e\n\nDEPLOYMENT\x10\x0b\x12\x0f\n\x0bSTATEFULSET\x10\x0c\x12\x0c\n\x08\x43\x41\x44VISOR\x10\r\x12\x0b\n\x07KUBELET\x10\x0e\x12\x08\n\x04\x44\x43GM\x10\x0f\"*\n\x17ManagedPrometheusConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\"N\n\x05\x46leet\x12\x0f\n\x07project\x18\x01 \x01(\t\x12\x17\n\nmembership\x18\x02 \x01(\tB\x03\xe0\x41\x03\x12\x1b\n\x0epre_registered\x18\x03 \x01(\x08\x42\x03\xe0\x41\x03\"2\n\x17LocalNvmeSsdBlockConfig\x12\x17\n\x0flocal_ssd_count\x18\x01 \x01(\x05\"9\n\x1e\x45phemeralStorageLocalSsdConfig\x12\x17\n\x0flocal_ssd_count\x18\x01 \x01(\x05\"\x84\x01\n\x13ResourceManagerTags\x12@\n\x04tags\x18\x01 \x03(\x0b\x32\x32.google.container.v1.ResourceManagerTags.TagsEntry\x1a+\n\tTagsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xab\x01\n\x10\x45nterpriseConfig\x12L\n\x0c\x63luster_tier\x18\x01 \x01(\x0e\x32\x31.google.container.v1.EnterpriseConfig.ClusterTierB\x03\xe0\x41\x03\"I\n\x0b\x43lusterTier\x12\x1c\n\x18\x43LUSTER_TIER_UNSPECIFIED\x10\x00\x12\x0c\n\x08STANDARD\x10\x01\x12\x0e\n\nENTERPRISE\x10\x02\"\x9b\x01\n\x11SecondaryBootDisk\x12\x39\n\x04mode\x18\x01 \x01(\x0e\x32+.google.container.v1.SecondaryBootDisk.Mode\x12\x12\n\ndisk_image\x18\x02 \x01(\t\"7\n\x04Mode\x12\x14\n\x10MODE_UNSPECIFIED\x10\x00\x12\x19\n\x15\x43ONTAINER_IMAGE_CACHE\x10\x01\"!\n\x1fSecondaryBootDiskUpdateStrategy*\xc6\x01\n\x17PrivateIPv6GoogleAccess\x12*\n&PRIVATE_IPV6_GOOGLE_ACCESS_UNSPECIFIED\x10\x00\x12\'\n#PRIVATE_IPV6_GOOGLE_ACCESS_DISABLED\x10\x01\x12(\n$PRIVATE_IPV6_GOOGLE_ACCESS_TO_GOOGLE\x10\x02\x12,\n(PRIVATE_IPV6_GOOGLE_ACCESS_BIDIRECTIONAL\x10\x03*W\n\x13UpgradeResourceType\x12%\n!UPGRADE_RESOURCE_TYPE_UNSPECIFIED\x10\x00\x12\n\n\x06MASTER\x10\x01\x12\r\n\tNODE_POOL\x10\x02*a\n\x10\x44\x61tapathProvider\x12!\n\x1d\x44\x41TAPATH_PROVIDER_UNSPECIFIED\x10\x00\x12\x13\n\x0fLEGACY_DATAPATH\x10\x01\x12\x15\n\x11\x41\x44VANCED_DATAPATH\x10\x02*^\n\x16NodePoolUpdateStrategy\x12)\n%NODE_POOL_UPDATE_STRATEGY_UNSPECIFIED\x10\x00\x12\x0e\n\nBLUE_GREEN\x10\x02\x12\t\n\x05SURGE\x10\x03*@\n\tStackType\x12\x1a\n\x16STACK_TYPE_UNSPECIFIED\x10\x00\x12\x08\n\x04IPV4\x10\x01\x12\r\n\tIPV4_IPV6\x10\x02*N\n\x0eIPv6AccessType\x12 \n\x1cIPV6_ACCESS_TYPE_UNSPECIFIED\x10\x00\x12\x0c\n\x08INTERNAL\x10\x01\x12\x0c\n\x08\x45XTERNAL\x10\x02*\x9f\x01\n\x19InTransitEncryptionConfig\x12,\n(IN_TRANSIT_ENCRYPTION_CONFIG_UNSPECIFIED\x10\x00\x12\"\n\x1eIN_TRANSIT_ENCRYPTION_DISABLED\x10\x01\x12\x30\n,IN_TRANSIT_ENCRYPTION_INTER_NODE_TRANSPARENT\x10\x02\x32\xb2I\n\x0e\x43lusterManager\x12\xe8\x01\n\x0cListClusters\x12(.google.container.v1.ListClustersRequest\x1a).google.container.v1.ListClustersResponse\"\x82\x01\xda\x41\x0fproject_id,zone\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x61\x12,/v1/{parent=projects/*/locations/*}/clustersZ1\x12//v1/projects/{project_id}/zones/{zone}/clusters\x12\xed\x01\n\nGetCluster\x12&.google.container.v1.GetClusterRequest\x1a\x1c.google.container.v1.Cluster\"\x98\x01\xda\x41\x1aproject_id,zone,cluster_id\xda\x41\x04name\x82\xd3\xe4\x93\x02n\x12,/v1/{name=projects/*/locations/*/clusters/*}Z>\x12</v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}\x12\xf5\x01\n\rCreateCluster\x12).google.container.v1.CreateClusterRequest\x1a\x1e.google.container.v1.Operation\"\x98\x01\xda\x41\x17project_id,zone,cluster\xda\x41\x0eparent,cluster\x82\xd3\xe4\x93\x02g\",/v1/{parent=projects/*/locations/*}/clusters:\x01*Z4\"//v1/projects/{project_id}/zones/{zone}/clusters:\x01*\x12\x89\x02\n\rUpdateCluster\x12).google.container.v1.UpdateClusterRequest\x1a\x1e.google.container.v1.Operation\"\xac\x01\xda\x41!project_id,zone,cluster_id,update\xda\x41\x0bname,update\x82\xd3\xe4\x93\x02t\x1a,/v1/{name=projects/*/locations/*/clusters/*}:\x01*ZA\x1a</v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}:\x01*\x12\x86\x02\n\x0eUpdateNodePool\x12*.google.container.v1.UpdateNodePoolRequest\x1a\x1e.google.container.v1.Operation\"\xa7\x01\x82\xd3\xe4\x93\x02\xa0\x01\x1a\x38/v1/{name=projects/*/locations/*/clusters/*/nodePools/*}:\x01*Za\"\\/v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}/nodePools/{node_pool_id}/update:\x01*\x12\xaa\x02\n\x16SetNodePoolAutoscaling\x12\x32.google.container.v1.SetNodePoolAutoscalingRequest\x1a\x1e.google.container.v1.Operation\"\xbb\x01\x82\xd3\xe4\x93\x02\xb4\x01\"G/v1/{name=projects/*/locations/*/clusters/*/nodePools/*}:setAutoscaling:\x01*Zf\"a/v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}/nodePools/{node_pool_id}/autoscaling:\x01*\x12\xb7\x02\n\x11SetLoggingService\x12-.google.container.v1.SetLoggingServiceRequest\x1a\x1e.google.container.v1.Operation\"\xd2\x01\xda\x41*project_id,zone,cluster_id,logging_service\xda\x41\x14name,logging_service\x82\xd3\xe4\x93\x02\x87\x01\"7/v1/{name=projects/*/locations/*/clusters/*}:setLogging:\x01*ZI\"D/v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}/logging:\x01*\x12\xc9\x02\n\x14SetMonitoringService\x12\x30.google.container.v1.SetMonitoringServiceRequest\x1a\x1e.google.container.v1.Operation\"\xde\x01\xda\x41-project_id,zone,cluster_id,monitoring_service\xda\x41\x17name,monitoring_service\x82\xd3\xe4\x93\x02\x8d\x01\":/v1/{name=projects/*/locations/*/clusters/*}:setMonitoring:\x01*ZL\"G/v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}/monitoring:\x01*\x12\xad\x02\n\x0fSetAddonsConfig\x12+.google.container.v1.SetAddonsConfigRequest\x1a\x1e.google.container.v1.Operation\"\xcc\x01\xda\x41(project_id,zone,cluster_id,addons_config\xda\x41\x12name,addons_config\x82\xd3\xe4\x93\x02\x85\x01\"6/v1/{name=projects/*/locations/*/clusters/*}:setAddons:\x01*ZH\"C/v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}/addons:\x01*\x12\xa8\x02\n\x0cSetLocations\x12(.google.container.v1.SetLocationsRequest\x1a\x1e.google.container.v1.Operation\"\xcd\x01\x88\x02\x01\xda\x41$project_id,zone,cluster_id,locations\xda\x41\x0ename,locations\x82\xd3\xe4\x93\x02\x8b\x01\"9/v1/{name=projects/*/locations/*/clusters/*}:setLocations:\x01*ZK\"F/v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}/locations:\x01*\x12\xac\x02\n\x0cUpdateMaster\x12(.google.container.v1.UpdateMasterRequest\x1a\x1e.google.container.v1.Operation\"\xd1\x01\xda\x41)project_id,zone,cluster_id,master_version\xda\x41\x13name,master_version\x82\xd3\xe4\x93\x02\x88\x01\"9/v1/{name=projects/*/locations/*/clusters/*}:updateMaster:\x01*ZH\"C/v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}/master:\x01*\x12\xf4\x01\n\rSetMasterAuth\x12).google.container.v1.SetMasterAuthRequest\x1a\x1e.google.container.v1.Operation\"\x97\x01\x82\xd3\xe4\x93\x02\x90\x01\":/v1/{name=projects/*/locations/*/clusters/*}:setMasterAuth:\x01*ZO\"J/v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}:setMasterAuth:\x01*\x12\xf5\x01\n\rDeleteCluster\x12).google.container.v1.DeleteClusterRequest\x1a\x1e.google.container.v1.Operation\"\x98\x01\xda\x41\x1aproject_id,zone,cluster_id\xda\x41\x04name\x82\xd3\xe4\x93\x02n*,/v1/{name=projects/*/locations/*/clusters/*}Z>*</v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}\x12\xf2\x01\n\x0eListOperations\x12*.google.container.v1.ListOperationsRequest\x1a+.google.container.v1.ListOperationsResponse\"\x86\x01\xda\x41\x0fproject_id,zone\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x65\x12./v1/{parent=projects/*/locations/*}/operationsZ3\x12\x31/v1/projects/{project_id}/zones/{zone}/operations\x12\xfb\x01\n\x0cGetOperation\x12(.google.container.v1.GetOperationRequest\x1a\x1e.google.container.v1.Operation\"\xa0\x01\xda\x41\x1cproject_id,zone,operation_id\xda\x41\x04name\x82\xd3\xe4\x93\x02t\x12./v1/{name=projects/*/locations/*/operations/*}ZB\x12@/v1/projects/{project_id}/zones/{zone}/operations/{operation_id}\x12\x8e\x02\n\x0f\x43\x61ncelOperation\x12+.google.container.v1.CancelOperationRequest\x1a\x16.google.protobuf.Empty\"\xb5\x01\xda\x41\x1cproject_id,zone,operation_id\xda\x41\x04name\x82\xd3\xe4\x93\x02\x88\x01\"5/v1/{name=projects/*/locations/*/operations/*}:cancel:\x01*ZL\"G/v1/projects/{project_id}/zones/{zone}/operations/{operation_id}:cancel:\x01*\x12\xea\x01\n\x0fGetServerConfig\x12+.google.container.v1.GetServerConfigRequest\x1a!.google.container.v1.ServerConfig\"\x86\x01\xda\x41\x0fproject_id,zone\xda\x41\x04name\x82\xd3\xe4\x93\x02g\x12./v1/{name=projects/*/locations/*}/serverConfigZ5\x12\x33/v1/projects/{project_id}/zones/{zone}/serverconfig\x12\xa6\x01\n\x0eGetJSONWebKeys\x12*.google.container.v1.GetJSONWebKeysRequest\x1a+.google.container.v1.GetJSONWebKeysResponse\";\x82\xd3\xe4\x93\x02\x35\x12\x33/v1/{parent=projects/*/locations/*/clusters/*}/jwks\x12\x9a\x02\n\rListNodePools\x12).google.container.v1.ListNodePoolsRequest\x1a*.google.container.v1.ListNodePoolsResponse\"\xb1\x01\xda\x41\x1aproject_id,zone,cluster_id\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x84\x01\x12\x38/v1/{parent=projects/*/locations/*/clusters/*}/nodePoolsZH\x12\x46/v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}/nodePools\x12\xa3\x02\n\x0bGetNodePool\x12\'.google.container.v1.GetNodePoolRequest\x1a\x1d.google.container.v1.NodePool\"\xcb\x01\xda\x41\'project_id,zone,cluster_id,node_pool_id\xda\x41\x04name\x82\xd3\xe4\x93\x02\x93\x01\x12\x38/v1/{name=projects/*/locations/*/clusters/*/nodePools/*}ZW\x12U/v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}/nodePools/{node_pool_id}\x12\xaa\x02\n\x0e\x43reateNodePool\x12*.google.container.v1.CreateNodePoolRequest\x1a\x1e.google.container.v1.Operation\"\xcb\x01\xda\x41$project_id,zone,cluster_id,node_pool\xda\x41\x10parent,node_pool\x82\xd3\xe4\x93\x02\x8a\x01\"8/v1/{parent=projects/*/locations/*/clusters/*}/nodePools:\x01*ZK\"F/v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}/nodePools:\x01*\x12\xaa\x02\n\x0e\x44\x65leteNodePool\x12*.google.container.v1.DeleteNodePoolRequest\x1a\x1e.google.container.v1.Operation\"\xcb\x01\xda\x41\'project_id,zone,cluster_id,node_pool_id\xda\x41\x04name\x82\xd3\xe4\x93\x02\x93\x01*8/v1/{name=projects/*/locations/*/clusters/*/nodePools/*}ZW*U/v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}/nodePools/{node_pool_id}\x12\xbb\x01\n\x17\x43ompleteNodePoolUpgrade\x12\x33.google.container.v1.CompleteNodePoolUpgradeRequest\x1a\x16.google.protobuf.Empty\"S\x82\xd3\xe4\x93\x02M\"H/v1/{name=projects/*/locations/*/clusters/*/nodePools/*}:completeUpgrade:\x01*\x12\xd4\x02\n\x17RollbackNodePoolUpgrade\x12\x33.google.container.v1.RollbackNodePoolUpgradeRequest\x1a\x1e.google.container.v1.Operation\"\xe3\x01\xda\x41\'project_id,zone,cluster_id,node_pool_id\xda\x41\x04name\x82\xd3\xe4\x93\x02\xab\x01\"A/v1/{name=projects/*/locations/*/clusters/*/nodePools/*}:rollback:\x01*Zc\"^/v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}/nodePools/{node_pool_id}:rollback:\x01*\x12\xa9\x02\n\x15SetNodePoolManagement\x12\x31.google.container.v1.SetNodePoolManagementRequest\x1a\x1e.google.container.v1.Operation\"\xbc\x01\x82\xd3\xe4\x93\x02\xb5\x01\"F/v1/{name=projects/*/locations/*/clusters/*/nodePools/*}:setManagement:\x01*Zh\"c/v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}/nodePools/{node_pool_id}/setManagement:\x01*\x12\xf1\x01\n\tSetLabels\x12%.google.container.v1.SetLabelsRequest\x1a\x1e.google.container.v1.Operation\"\x9c\x01\x82\xd3\xe4\x93\x02\x95\x01\">/v1/{name=projects/*/locations/*/clusters/*}:setResourceLabels:\x01*ZP\"K/v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}/resourceLabels:\x01*\x12\xa5\x02\n\rSetLegacyAbac\x12).google.container.v1.SetLegacyAbacRequest\x1a\x1e.google.container.v1.Operation\"\xc8\x01\xda\x41\"project_id,zone,cluster_id,enabled\xda\x41\x0cname,enabled\x82\xd3\xe4\x93\x02\x8d\x01\":/v1/{name=projects/*/locations/*/clusters/*}:setLegacyAbac:\x01*ZL\"G/v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}/legacyAbac:\x01*\x12\xa0\x02\n\x0fStartIPRotation\x12+.google.container.v1.StartIPRotationRequest\x1a\x1e.google.container.v1.Operation\"\xbf\x01\xda\x41\x1aproject_id,zone,cluster_id\xda\x41\x04name\x82\xd3\xe4\x93\x02\x94\x01\"</v1/{name=projects/*/locations/*/clusters/*}:startIpRotation:\x01*ZQ\"L/v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}:startIpRotation:\x01*\x12\xac\x02\n\x12\x43ompleteIPRotation\x12..google.container.v1.CompleteIPRotationRequest\x1a\x1e.google.container.v1.Operation\"\xc5\x01\xda\x41\x1aproject_id,zone,cluster_id\xda\x41\x04name\x82\xd3\xe4\x93\x02\x9a\x01\"?/v1/{name=projects/*/locations/*/clusters/*}:completeIpRotation:\x01*ZT\"O/v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}:completeIpRotation:\x01*\x12\x91\x02\n\x0fSetNodePoolSize\x12+.google.container.v1.SetNodePoolSizeRequest\x1a\x1e.google.container.v1.Operation\"\xb0\x01\x82\xd3\xe4\x93\x02\xa9\x01\"@/v1/{name=projects/*/locations/*/clusters/*/nodePools/*}:setSize:\x01*Zb\"]/v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}/nodePools/{node_pool_id}/setSize:\x01*\x12\xc2\x02\n\x10SetNetworkPolicy\x12,.google.container.v1.SetNetworkPolicyRequest\x1a\x1e.google.container.v1.Operation\"\xdf\x01\xda\x41)project_id,zone,cluster_id,network_policy\xda\x41\x13name,network_policy\x82\xd3\xe4\x93\x02\x96\x01\"=/v1/{name=projects/*/locations/*/clusters/*}:setNetworkPolicy:\x01*ZR\"M/v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}:setNetworkPolicy:\x01*\x12\xda\x02\n\x14SetMaintenancePolicy\x12\x30.google.container.v1.SetMaintenancePolicyRequest\x1a\x1e.google.container.v1.Operation\"\xef\x01\xda\x41-project_id,zone,cluster_id,maintenance_policy\xda\x41\x17name,maintenance_policy\x82\xd3\xe4\x93\x02\x9e\x01\"A/v1/{name=projects/*/locations/*/clusters/*}:setMaintenancePolicy:\x01*ZV\"Q/v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}:setMaintenancePolicy:\x01*\x12\xbc\x01\n\x15ListUsableSubnetworks\x12\x31.google.container.v1.ListUsableSubnetworksRequest\x1a\x32.google.container.v1.ListUsableSubnetworksResponse\"<\x82\xd3\xe4\x93\x02\x36\x12\x34/v1/{parent=projects/*}/aggregated/usableSubnetworks\x12\xe2\x01\n\x1b\x43heckAutopilotCompatibility\x12\x37.google.container.v1.CheckAutopilotCompatibilityRequest\x1a\x38.google.container.v1.CheckAutopilotCompatibilityResponse\"P\x82\xd3\xe4\x93\x02J\x12H/v1/{name=projects/*/locations/*/clusters/*}:checkAutopilotCompatibility\x1aL\xca\x41\x18\x63ontainer.googleapis.com\xd2\x41.https://www.googleapis.com/auth/cloud-platformB\x87\x02\n\x17\x63om.google.container.v1B\x13\x43lusterServiceProtoP\x01Z;cloud.google.com/go/container/apiv1/containerpb;containerpb\xaa\x02\x19Google.Cloud.Container.V1\xca\x02\x19Google\\Cloud\\Container\\V1\xea\x02\x1cGoogle::Cloud::Container::V1\xea\x41@\n\x1bpubsub.googleapis.com/Topic\x12!projects/{project}/topics/{topic}b\x06proto3"
19
+ descriptor_data = "\n)google/container/v1/cluster_service.proto\x12\x13google.container.v1\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1egoogle/protobuf/wrappers.proto\x1a\x15google/rpc/code.proto\x1a\x17google/rpc/status.proto\"\x80\x04\n\x0fLinuxNodeConfig\x12\x42\n\x07sysctls\x18\x01 \x03(\x0b\x32\x31.google.container.v1.LinuxNodeConfig.SysctlsEntry\x12\x44\n\x0b\x63group_mode\x18\x02 \x01(\x0e\x32/.google.container.v1.LinuxNodeConfig.CgroupMode\x12Q\n\thugepages\x18\x03 \x01(\x0b\x32\x34.google.container.v1.LinuxNodeConfig.HugepagesConfigB\x03\xe0\x41\x01H\x00\x88\x01\x01\x1a\x7f\n\x0fHugepagesConfig\x12!\n\x0fhugepage_size2m\x18\x01 \x01(\x05\x42\x03\xe0\x41\x01H\x00\x88\x01\x01\x12!\n\x0fhugepage_size1g\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01H\x01\x88\x01\x01\x42\x12\n\x10_hugepage_size2mB\x12\n\x10_hugepage_size1g\x1a.\n\x0cSysctlsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"Q\n\nCgroupMode\x12\x1b\n\x17\x43GROUP_MODE_UNSPECIFIED\x10\x00\x12\x12\n\x0e\x43GROUP_MODE_V1\x10\x01\x12\x12\n\x0e\x43GROUP_MODE_V2\x10\x02\x42\x0c\n\n_hugepages\"\xb4\x01\n\x11WindowsNodeConfig\x12\x44\n\nos_version\x18\x01 \x01(\x0e\x32\x30.google.container.v1.WindowsNodeConfig.OSVersion\"Y\n\tOSVersion\x12\x1a\n\x16OS_VERSION_UNSPECIFIED\x10\x00\x12\x17\n\x13OS_VERSION_LTSC2019\x10\x01\x12\x17\n\x13OS_VERSION_LTSC2022\x10\x02\"\xf8\x01\n\x11NodeKubeletConfig\x12\x1a\n\x12\x63pu_manager_policy\x18\x01 \x01(\t\x12\x31\n\rcpu_cfs_quota\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12\x1c\n\x14\x63pu_cfs_quota_period\x18\x03 \x01(\t\x12\x16\n\x0epod_pids_limit\x18\x04 \x01(\x03\x12\x33\n&insecure_kubelet_readonly_port_enabled\x18\x07 \x01(\x08H\x00\x88\x01\x01\x42)\n\'_insecure_kubelet_readonly_port_enabled\"\xd0\x13\n\nNodeConfig\x12\x14\n\x0cmachine_type\x18\x01 \x01(\t\x12\x14\n\x0c\x64isk_size_gb\x18\x02 \x01(\x05\x12\x14\n\x0coauth_scopes\x18\x03 \x03(\t\x12\x17\n\x0fservice_account\x18\t \x01(\t\x12?\n\x08metadata\x18\x04 \x03(\x0b\x32-.google.container.v1.NodeConfig.MetadataEntry\x12\x12\n\nimage_type\x18\x05 \x01(\t\x12;\n\x06labels\x18\x06 \x03(\x0b\x32+.google.container.v1.NodeConfig.LabelsEntry\x12\x17\n\x0flocal_ssd_count\x18\x07 \x01(\x05\x12\x0c\n\x04tags\x18\x08 \x03(\t\x12\x13\n\x0bpreemptible\x18\n \x01(\x08\x12<\n\x0c\x61\x63\x63\x65lerators\x18\x0b \x03(\x0b\x32&.google.container.v1.AcceleratorConfig\x12\x11\n\tdisk_type\x18\x0c \x01(\t\x12\x18\n\x10min_cpu_platform\x18\r \x01(\t\x12M\n\x18workload_metadata_config\x18\x0e \x01(\x0b\x32+.google.container.v1.WorkloadMetadataConfig\x12.\n\x06taints\x18\x0f \x03(\x0b\x32\x1e.google.container.v1.NodeTaint\x12:\n\x0esandbox_config\x18\x11 \x01(\x0b\x32\".google.container.v1.SandboxConfig\x12\x12\n\nnode_group\x18\x12 \x01(\t\x12\x46\n\x14reservation_affinity\x18\x13 \x01(\x0b\x32(.google.container.v1.ReservationAffinity\x12M\n\x18shielded_instance_config\x18\x14 \x01(\x0b\x32+.google.container.v1.ShieldedInstanceConfig\x12?\n\x11linux_node_config\x18\x15 \x01(\x0b\x32$.google.container.v1.LinuxNodeConfig\x12>\n\x0ekubelet_config\x18\x16 \x01(\x0b\x32&.google.container.v1.NodeKubeletConfig\x12\x19\n\x11\x62oot_disk_kms_key\x18\x17 \x01(\t\x12\x34\n\x0bgcfs_config\x18\x19 \x01(\x0b\x32\x1f.google.container.v1.GcfsConfig\x12O\n\x19\x61\x64vanced_machine_features\x18\x1a \x01(\x0b\x32,.google.container.v1.AdvancedMachineFeatures\x12.\n\x05gvnic\x18\x1d \x01(\x0b\x32\x1f.google.container.v1.VirtualNIC\x12\x0c\n\x04spot\x18 \x01(\x08\x12\x42\n\x12\x63onfidential_nodes\x18# \x01(\x0b\x32&.google.container.v1.ConfidentialNodes\x12\x39\n\x0b\x66\x61st_socket\x18$ \x01(\x0b\x32\x1f.google.container.v1.FastSocketH\x00\x88\x01\x01\x12L\n\x0fresource_labels\x18% \x03(\x0b\x32\x33.google.container.v1.NodeConfig.ResourceLabelsEntry\x12\x42\n\x0elogging_config\x18& \x01(\x0b\x32*.google.container.v1.NodePoolLoggingConfig\x12\x43\n\x13windows_node_config\x18\' \x01(\x0b\x32&.google.container.v1.WindowsNodeConfig\x12Q\n\x1blocal_nvme_ssd_block_config\x18( \x01(\x0b\x32,.google.container.v1.LocalNvmeSsdBlockConfig\x12_\n\"ephemeral_storage_local_ssd_config\x18) \x01(\x0b\x32\x33.google.container.v1.EphemeralStorageLocalSsdConfig\x12\x41\n\x12sole_tenant_config\x18* \x01(\x0b\x32%.google.container.v1.SoleTenantConfig\x12@\n\x11\x63ontainerd_config\x18+ \x01(\x0b\x32%.google.container.v1.ContainerdConfig\x12G\n\x15resource_manager_tags\x18- \x01(\x0b\x32(.google.container.v1.ResourceManagerTags\x12(\n\x1b\x65nable_confidential_storage\x18. \x01(\x08\x42\x03\xe0\x41\x01\x12\x44\n\x14secondary_boot_disks\x18\x30 \x03(\x0b\x32&.google.container.v1.SecondaryBootDisk\x12\x15\n\rstorage_pools\x18\x31 \x03(\t\x12\x66\n#secondary_boot_disk_update_strategy\x18\x32 \x01(\x0b\x32\x34.google.container.v1.SecondaryBootDiskUpdateStrategyH\x01\x88\x01\x01\x12W\n\x15\x65\x66\x66\x65\x63tive_cgroup_mode\x18\x37 \x01(\x0e\x32\x33.google.container.v1.NodeConfig.EffectiveCgroupModeB\x03\xe0\x41\x03\x1a/\n\rMetadataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a\x35\n\x13ResourceLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"x\n\x13\x45\x66\x66\x65\x63tiveCgroupMode\x12%\n!EFFECTIVE_CGROUP_MODE_UNSPECIFIED\x10\x00\x12\x1c\n\x18\x45\x46\x46\x45\x43TIVE_CGROUP_MODE_V1\x10\x01\x12\x1c\n\x18\x45\x46\x46\x45\x43TIVE_CGROUP_MODE_V2\x10\x02\x42\x0e\n\x0c_fast_socketB&\n$_secondary_boot_disk_update_strategy\"\x99\x01\n\x17\x41\x64vancedMachineFeatures\x12\x1d\n\x10threads_per_core\x18\x01 \x01(\x03H\x00\x88\x01\x01\x12)\n\x1c\x65nable_nested_virtualization\x18\x02 \x01(\x08H\x01\x88\x01\x01\x42\x13\n\x11_threads_per_coreB\x1f\n\x1d_enable_nested_virtualization\"\xb3\x06\n\x11NodeNetworkConfig\x12\x1d\n\x10\x63reate_pod_range\x18\x04 \x01(\x08\x42\x03\xe0\x41\x04\x12\x11\n\tpod_range\x18\x05 \x01(\t\x12\x1b\n\x13pod_ipv4_cidr_block\x18\x06 \x01(\t\x12!\n\x14\x65nable_private_nodes\x18\t \x01(\x08H\x00\x88\x01\x01\x12h\n\x1anetwork_performance_config\x18\x0b \x01(\x0b\x32?.google.container.v1.NodeNetworkConfig.NetworkPerformanceConfigH\x01\x88\x01\x01\x12V\n\x1dpod_cidr_overprovision_config\x18\r \x01(\x0b\x32/.google.container.v1.PodCIDROverprovisionConfig\x12Y\n\x1f\x61\x64\x64itional_node_network_configs\x18\x0e \x03(\x0b\x32\x30.google.container.v1.AdditionalNodeNetworkConfig\x12W\n\x1e\x61\x64\x64itional_pod_network_configs\x18\x0f \x03(\x0b\x32/.google.container.v1.AdditionalPodNetworkConfig\x12\'\n\x1apod_ipv4_range_utilization\x18\x10 \x01(\x01\x42\x03\xe0\x41\x03\x1a\xd4\x01\n\x18NetworkPerformanceConfig\x12n\n\x1btotal_egress_bandwidth_tier\x18\x01 \x01(\x0e\x32\x44.google.container.v1.NodeNetworkConfig.NetworkPerformanceConfig.TierH\x00\x88\x01\x01\"(\n\x04Tier\x12\x14\n\x10TIER_UNSPECIFIED\x10\x00\x12\n\n\x06TIER_1\x10\x01\x42\x1e\n\x1c_total_egress_bandwidth_tierB\x17\n\x15_enable_private_nodesB\x1d\n\x1b_network_performance_config\"B\n\x1b\x41\x64\x64itionalNodeNetworkConfig\x12\x0f\n\x07network\x18\x01 \x01(\t\x12\x12\n\nsubnetwork\x18\x02 \x01(\t\"\xab\x01\n\x1a\x41\x64\x64itionalPodNetworkConfig\x12\x12\n\nsubnetwork\x18\x01 \x01(\t\x12\x1b\n\x13secondary_pod_range\x18\x02 \x01(\t\x12\x46\n\x11max_pods_per_node\x18\x03 \x01(\x0b\x32&.google.container.v1.MaxPodsConstraintH\x00\x88\x01\x01\x42\x14\n\x12_max_pods_per_node\"Y\n\x16ShieldedInstanceConfig\x12\x1a\n\x12\x65nable_secure_boot\x18\x01 \x01(\x08\x12#\n\x1b\x65nable_integrity_monitoring\x18\x02 \x01(\x08\"k\n\rSandboxConfig\x12\x35\n\x04type\x18\x02 \x01(\x0e\x32\'.google.container.v1.SandboxConfig.Type\"#\n\x04Type\x12\x0f\n\x0bUNSPECIFIED\x10\x00\x12\n\n\x06GVISOR\x10\x01\"\x1d\n\nGcfsConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\"\xdf\x01\n\x13ReservationAffinity\x12O\n\x18\x63onsume_reservation_type\x18\x01 \x01(\x0e\x32-.google.container.v1.ReservationAffinity.Type\x12\x0b\n\x03key\x18\x02 \x01(\t\x12\x0e\n\x06values\x18\x03 \x03(\t\"Z\n\x04Type\x12\x0f\n\x0bUNSPECIFIED\x10\x00\x12\x12\n\x0eNO_RESERVATION\x10\x01\x12\x13\n\x0f\x41NY_RESERVATION\x10\x02\x12\x18\n\x14SPECIFIC_RESERVATION\x10\x03\"\x96\x02\n\x10SoleTenantConfig\x12K\n\x0fnode_affinities\x18\x01 \x03(\x0b\x32\x32.google.container.v1.SoleTenantConfig.NodeAffinity\x1a\xb4\x01\n\x0cNodeAffinity\x12\x0b\n\x03key\x18\x01 \x01(\t\x12M\n\x08operator\x18\x02 \x01(\x0e\x32;.google.container.v1.SoleTenantConfig.NodeAffinity.Operator\x12\x0e\n\x06values\x18\x03 \x03(\t\"8\n\x08Operator\x12\x18\n\x14OPERATOR_UNSPECIFIED\x10\x00\x12\x06\n\x02IN\x10\x01\x12\n\n\x06NOT_IN\x10\x02\"\xfc\x04\n\x10\x43ontainerdConfig\x12i\n\x1eprivate_registry_access_config\x18\x01 \x01(\x0b\x32\x41.google.container.v1.ContainerdConfig.PrivateRegistryAccessConfig\x1a\xfc\x03\n\x1bPrivateRegistryAccessConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\x12\x8f\x01\n#certificate_authority_domain_config\x18\x02 \x03(\x0b\x32\x62.google.container.v1.ContainerdConfig.PrivateRegistryAccessConfig.CertificateAuthorityDomainConfig\x1a\xb9\x02\n CertificateAuthorityDomainConfig\x12\r\n\x05\x66qdns\x18\x01 \x03(\t\x12\xb6\x01\n%gcp_secret_manager_certificate_config\x18\x02 \x01(\x0b\x32\x84\x01.google.container.v1.ContainerdConfig.PrivateRegistryAccessConfig.CertificateAuthorityDomainConfig.GCPSecretManagerCertificateConfigH\x00\x1a\x37\n!GCPSecretManagerCertificateConfig\x12\x12\n\nsecret_uri\x18\x01 \x01(\tB\x14\n\x12\x63\x65rtificate_config\"\xb9\x01\n\tNodeTaint\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t\x12\x35\n\x06\x65\x66\x66\x65\x63t\x18\x03 \x01(\x0e\x32%.google.container.v1.NodeTaint.Effect\"Y\n\x06\x45\x66\x66\x65\x63t\x12\x16\n\x12\x45\x46\x46\x45\x43T_UNSPECIFIED\x10\x00\x12\x0f\n\x0bNO_SCHEDULE\x10\x01\x12\x16\n\x12PREFER_NO_SCHEDULE\x10\x02\x12\x0e\n\nNO_EXECUTE\x10\x03\"<\n\nNodeTaints\x12.\n\x06taints\x18\x01 \x03(\x0b\x32\x1e.google.container.v1.NodeTaint\"x\n\nNodeLabels\x12;\n\x06labels\x18\x01 \x03(\x0b\x32+.google.container.v1.NodeLabels.LabelsEntry\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\x80\x01\n\x0eResourceLabels\x12?\n\x06labels\x18\x01 \x03(\x0b\x32/.google.container.v1.ResourceLabels.LabelsEntry\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\x1b\n\x0bNetworkTags\x12\x0c\n\x04tags\x18\x01 \x03(\t\"\xe8\x01\n\nMasterAuth\x12\x14\n\x08username\x18\x01 \x01(\tB\x02\x18\x01\x12\x14\n\x08password\x18\x02 \x01(\tB\x02\x18\x01\x12O\n\x19\x63lient_certificate_config\x18\x03 \x01(\x0b\x32,.google.container.v1.ClientCertificateConfig\x12#\n\x16\x63luster_ca_certificate\x18\x64 \x01(\tB\x03\xe0\x41\x03\x12\x1f\n\x12\x63lient_certificate\x18\x65 \x01(\tB\x03\xe0\x41\x03\x12\x17\n\nclient_key\x18\x66 \x01(\tB\x03\xe0\x41\x03\";\n\x17\x43lientCertificateConfig\x12 \n\x18issue_client_certificate\x18\x01 \x01(\x08\"\xd2\x08\n\x0c\x41\x64\x64onsConfig\x12\x43\n\x13http_load_balancing\x18\x01 \x01(\x0b\x32&.google.container.v1.HttpLoadBalancing\x12Q\n\x1ahorizontal_pod_autoscaling\x18\x02 \x01(\x0b\x32-.google.container.v1.HorizontalPodAutoscaling\x12J\n\x14kubernetes_dashboard\x18\x03 \x01(\x0b\x32(.google.container.v1.KubernetesDashboardB\x02\x18\x01\x12G\n\x15network_policy_config\x18\x04 \x01(\x0b\x32(.google.container.v1.NetworkPolicyConfig\x12=\n\x10\x63loud_run_config\x18\x07 \x01(\x0b\x32#.google.container.v1.CloudRunConfig\x12=\n\x10\x64ns_cache_config\x18\x08 \x01(\x0b\x32#.google.container.v1.DnsCacheConfig\x12K\n\x17\x63onfig_connector_config\x18\n \x01(\x0b\x32*.google.container.v1.ConfigConnectorConfig\x12\x64\n%gce_persistent_disk_csi_driver_config\x18\x0b \x01(\x0b\x32\x35.google.container.v1.GcePersistentDiskCsiDriverConfig\x12Y\n\x1fgcp_filestore_csi_driver_config\x18\x0e \x01(\x0b\x32\x30.google.container.v1.GcpFilestoreCsiDriverConfig\x12J\n\x17gke_backup_agent_config\x18\x10 \x01(\x0b\x32).google.container.v1.GkeBackupAgentConfig\x12O\n\x1agcs_fuse_csi_driver_config\x18\x11 \x01(\x0b\x32+.google.container.v1.GcsFuseCsiDriverConfig\x12\x46\n\x12stateful_ha_config\x18\x12 \x01(\x0b\x32%.google.container.v1.StatefulHAConfigB\x03\xe0\x41\x01\x12Z\n\x1fparallelstore_csi_driver_config\x18\x13 \x01(\x0b\x32\x31.google.container.v1.ParallelstoreCsiDriverConfig\x12H\n\x13ray_operator_config\x18\x15 \x01(\x0b\x32&.google.container.v1.RayOperatorConfigB\x03\xe0\x41\x01\"%\n\x11HttpLoadBalancing\x12\x10\n\x08\x64isabled\x18\x01 \x01(\x08\",\n\x18HorizontalPodAutoscaling\x12\x10\n\x08\x64isabled\x18\x01 \x01(\x08\"\'\n\x13KubernetesDashboard\x12\x10\n\x08\x64isabled\x18\x01 \x01(\x08\"\'\n\x13NetworkPolicyConfig\x12\x10\n\x08\x64isabled\x18\x01 \x01(\x08\"!\n\x0e\x44nsCacheConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\"9\n&PrivateClusterMasterGlobalAccessConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\"\xe8\x02\n\x14PrivateClusterConfig\x12 \n\x14\x65nable_private_nodes\x18\x01 \x01(\x08\x42\x02\x18\x01\x12#\n\x17\x65nable_private_endpoint\x18\x02 \x01(\x08\x42\x02\x18\x01\x12\x1e\n\x16master_ipv4_cidr_block\x18\x03 \x01(\t\x12\x1f\n\x10private_endpoint\x18\x04 \x01(\tB\x05\x18\x01\xe0\x41\x03\x12\x1e\n\x0fpublic_endpoint\x18\x05 \x01(\tB\x05\x18\x01\xe0\x41\x03\x12\x19\n\x0cpeering_name\x18\x07 \x01(\tB\x03\xe0\x41\x03\x12\x64\n\x1bmaster_global_access_config\x18\x08 \x01(\x0b\x32;.google.container.v1.PrivateClusterMasterGlobalAccessConfigB\x02\x18\x01\x12\'\n\x1bprivate_endpoint_subnetwork\x18\n \x01(\tB\x02\x18\x01\"D\n\x19\x41uthenticatorGroupsConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\x12\x16\n\x0esecurity_group\x18\x02 \x01(\t\"\xee\x01\n\x0e\x43loudRunConfig\x12\x10\n\x08\x64isabled\x18\x01 \x01(\x08\x12P\n\x12load_balancer_type\x18\x03 \x01(\x0e\x32\x34.google.container.v1.CloudRunConfig.LoadBalancerType\"x\n\x10LoadBalancerType\x12\"\n\x1eLOAD_BALANCER_TYPE_UNSPECIFIED\x10\x00\x12\x1f\n\x1bLOAD_BALANCER_TYPE_EXTERNAL\x10\x01\x12\x1f\n\x1bLOAD_BALANCER_TYPE_INTERNAL\x10\x02\"(\n\x15\x43onfigConnectorConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\"3\n GcePersistentDiskCsiDriverConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\".\n\x1bGcpFilestoreCsiDriverConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\")\n\x16GcsFuseCsiDriverConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\"/\n\x1cParallelstoreCsiDriverConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\"\xd8\x01\n\x11RayOperatorConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\x12U\n\x1aray_cluster_logging_config\x18\x02 \x01(\x0b\x32,.google.container.v1.RayClusterLoggingConfigB\x03\xe0\x41\x01\x12[\n\x1dray_cluster_monitoring_config\x18\x03 \x01(\x0b\x32/.google.container.v1.RayClusterMonitoringConfigB\x03\xe0\x41\x01\"\'\n\x14GkeBackupAgentConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\"#\n\x10StatefulHAConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\"\xea\x02\n\x1eMasterAuthorizedNetworksConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\x12R\n\x0b\x63idr_blocks\x18\x02 \x03(\x0b\x32=.google.container.v1.MasterAuthorizedNetworksConfig.CidrBlock\x12,\n\x1fgcp_public_cidrs_access_enabled\x18\x03 \x01(\x08H\x00\x88\x01\x01\x12\x31\n$private_endpoint_enforcement_enabled\x18\x05 \x01(\x08H\x01\x88\x01\x01\x1a\x35\n\tCidrBlock\x12\x14\n\x0c\x64isplay_name\x18\x01 \x01(\t\x12\x12\n\ncidr_block\x18\x02 \x01(\tB\"\n _gcp_public_cidrs_access_enabledB\'\n%_private_endpoint_enforcement_enabled\"\x1d\n\nLegacyAbac\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\"\x91\x01\n\rNetworkPolicy\x12=\n\x08provider\x18\x01 \x01(\x0e\x32+.google.container.v1.NetworkPolicy.Provider\x12\x0f\n\x07\x65nabled\x18\x02 \x01(\x08\"0\n\x08Provider\x12\x18\n\x14PROVIDER_UNSPECIFIED\x10\x00\x12\n\n\x06\x43\x41LICO\x10\x01\"\xe3\x01\n\x13\x42inaryAuthorization\x12\x13\n\x07\x65nabled\x18\x01 \x01(\x08\x42\x02\x18\x01\x12P\n\x0f\x65valuation_mode\x18\x02 \x01(\x0e\x32\x37.google.container.v1.BinaryAuthorization.EvaluationMode\"e\n\x0e\x45valuationMode\x12\x1f\n\x1b\x45VALUATION_MODE_UNSPECIFIED\x10\x00\x12\x0c\n\x08\x44ISABLED\x10\x01\x12$\n PROJECT_SINGLETON_POLICY_ENFORCE\x10\x02\"-\n\x1aPodCIDROverprovisionConfig\x12\x0f\n\x07\x64isable\x18\x01 \x01(\x08\"\xbd\x06\n\x12IPAllocationPolicy\x12\x16\n\x0euse_ip_aliases\x18\x01 \x01(\x08\x12\x19\n\x11\x63reate_subnetwork\x18\x02 \x01(\x08\x12\x17\n\x0fsubnetwork_name\x18\x03 \x01(\t\x12\x1d\n\x11\x63luster_ipv4_cidr\x18\x04 \x01(\tB\x02\x18\x01\x12\x1a\n\x0enode_ipv4_cidr\x18\x05 \x01(\tB\x02\x18\x01\x12\x1e\n\x12services_ipv4_cidr\x18\x06 \x01(\tB\x02\x18\x01\x12$\n\x1c\x63luster_secondary_range_name\x18\x07 \x01(\t\x12%\n\x1dservices_secondary_range_name\x18\x08 \x01(\t\x12\x1f\n\x17\x63luster_ipv4_cidr_block\x18\t \x01(\t\x12\x1c\n\x14node_ipv4_cidr_block\x18\n \x01(\t\x12 \n\x18services_ipv4_cidr_block\x18\x0b \x01(\t\x12\x1b\n\x13tpu_ipv4_cidr_block\x18\r \x01(\t\x12\x12\n\nuse_routes\x18\x0f \x01(\x08\x12\x32\n\nstack_type\x18\x10 \x01(\x0e\x32\x1e.google.container.v1.StackType\x12=\n\x10ipv6_access_type\x18\x11 \x01(\x0e\x32#.google.container.v1.IPv6AccessType\x12V\n\x1dpod_cidr_overprovision_config\x18\x15 \x01(\x0b\x32/.google.container.v1.PodCIDROverprovisionConfig\x12#\n\x16subnet_ipv6_cidr_block\x18\x16 \x01(\tB\x03\xe0\x41\x03\x12%\n\x18services_ipv6_cidr_block\x18\x17 \x01(\tB\x03\xe0\x41\x03\x12Y\n\x1c\x61\x64\x64itional_pod_ranges_config\x18\x18 \x01(\x0b\x32..google.container.v1.AdditionalPodRangesConfigB\x03\xe0\x41\x03\x12/\n\"default_pod_ipv4_range_utilization\x18\x19 \x01(\x01\x42\x03\xe0\x41\x03\"\x91 \n\x07\x43luster\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\x12\x1e\n\x12initial_node_count\x18\x03 \x01(\x05\x42\x02\x18\x01\x12\x38\n\x0bnode_config\x18\x04 \x01(\x0b\x32\x1f.google.container.v1.NodeConfigB\x02\x18\x01\x12\x34\n\x0bmaster_auth\x18\x05 \x01(\x0b\x32\x1f.google.container.v1.MasterAuth\x12\x17\n\x0flogging_service\x18\x06 \x01(\t\x12\x1a\n\x12monitoring_service\x18\x07 \x01(\t\x12\x0f\n\x07network\x18\x08 \x01(\t\x12\x19\n\x11\x63luster_ipv4_cidr\x18\t \x01(\t\x12\x38\n\raddons_config\x18\n \x01(\x0b\x32!.google.container.v1.AddonsConfig\x12\x12\n\nsubnetwork\x18\x0b \x01(\t\x12\x31\n\nnode_pools\x18\x0c \x03(\x0b\x32\x1d.google.container.v1.NodePool\x12\x11\n\tlocations\x18\r \x03(\t\x12\x1f\n\x17\x65nable_kubernetes_alpha\x18\x0e \x01(\x08\x12I\n\x0fresource_labels\x18\x0f \x03(\x0b\x32\x30.google.container.v1.Cluster.ResourceLabelsEntry\x12\x19\n\x11label_fingerprint\x18\x10 \x01(\t\x12\x34\n\x0blegacy_abac\x18\x12 \x01(\x0b\x32\x1f.google.container.v1.LegacyAbac\x12:\n\x0enetwork_policy\x18\x13 \x01(\x0b\x32\".google.container.v1.NetworkPolicy\x12\x45\n\x14ip_allocation_policy\x18\x14 \x01(\x0b\x32\'.google.container.v1.IPAllocationPolicy\x12\x62\n!master_authorized_networks_config\x18\x16 \x01(\x0b\x32\x33.google.container.v1.MasterAuthorizedNetworksConfigB\x02\x18\x01\x12\x42\n\x12maintenance_policy\x18\x17 \x01(\x0b\x32&.google.container.v1.MaintenancePolicy\x12\x46\n\x14\x62inary_authorization\x18\x18 \x01(\x0b\x32(.google.container.v1.BinaryAuthorization\x12<\n\x0b\x61utoscaling\x18\x1a \x01(\x0b\x32\'.google.container.v1.ClusterAutoscaling\x12:\n\x0enetwork_config\x18\x1b \x01(\x0b\x32\".google.container.v1.NetworkConfig\x12K\n\x1b\x64\x65\x66\x61ult_max_pods_constraint\x18\x1e \x01(\x0b\x32&.google.container.v1.MaxPodsConstraint\x12T\n\x1cresource_usage_export_config\x18! \x01(\x0b\x32..google.container.v1.ResourceUsageExportConfig\x12S\n\x1b\x61uthenticator_groups_config\x18\" \x01(\x0b\x32..google.container.v1.AuthenticatorGroupsConfig\x12I\n\x16private_cluster_config\x18% \x01(\x0b\x32).google.container.v1.PrivateClusterConfig\x12\x44\n\x13\x64\x61tabase_encryption\x18& \x01(\x0b\x32\'.google.container.v1.DatabaseEncryption\x12M\n\x18vertical_pod_autoscaling\x18\' \x01(\x0b\x32+.google.container.v1.VerticalPodAutoscaling\x12:\n\x0eshielded_nodes\x18( \x01(\x0b\x32\".google.container.v1.ShieldedNodes\x12<\n\x0frelease_channel\x18) \x01(\x0b\x32#.google.container.v1.ReleaseChannel\x12M\n\x18workload_identity_config\x18+ \x01(\x0b\x32+.google.container.v1.WorkloadIdentityConfig\x12@\n\x11mesh_certificates\x18\x43 \x01(\x0b\x32%.google.container.v1.MeshCertificates\x12I\n\x16\x63ost_management_config\x18- \x01(\x0b\x32).google.container.v1.CostManagementConfig\x12\x44\n\x13notification_config\x18\x31 \x01(\x0b\x32\'.google.container.v1.NotificationConfig\x12\x42\n\x12\x63onfidential_nodes\x18\x32 \x01(\x0b\x32&.google.container.v1.ConfidentialNodes\x12K\n\x17identity_service_config\x18\x36 \x01(\x0b\x32*.google.container.v1.IdentityServiceConfig\x12\x16\n\tself_link\x18\x64 \x01(\tB\x03\xe0\x41\x03\x12\x13\n\x04zone\x18\x65 \x01(\tB\x05\x18\x01\xe0\x41\x03\x12\x15\n\x08\x65ndpoint\x18\x66 \x01(\tB\x03\xe0\x41\x03\x12\x1f\n\x17initial_cluster_version\x18g \x01(\t\x12#\n\x16\x63urrent_master_version\x18h \x01(\tB\x03\xe0\x41\x03\x12#\n\x14\x63urrent_node_version\x18i \x01(\tB\x05\x18\x01\xe0\x41\x03\x12\x18\n\x0b\x63reate_time\x18j \x01(\tB\x03\xe0\x41\x03\x12\x38\n\x06status\x18k \x01(\x0e\x32#.google.container.v1.Cluster.StatusB\x03\xe0\x41\x03\x12\x1d\n\x0estatus_message\x18l \x01(\tB\x05\x18\x01\xe0\x41\x03\x12 \n\x13node_ipv4_cidr_size\x18m \x01(\x05\x42\x03\xe0\x41\x03\x12\x1f\n\x12services_ipv4_cidr\x18n \x01(\tB\x03\xe0\x41\x03\x12\"\n\x13instance_group_urls\x18o \x03(\tB\x05\x18\x01\xe0\x41\x03\x12!\n\x12\x63urrent_node_count\x18p \x01(\x05\x42\x05\x18\x01\xe0\x41\x03\x12\x18\n\x0b\x65xpire_time\x18q \x01(\tB\x03\xe0\x41\x03\x12\x15\n\x08location\x18r \x01(\tB\x03\xe0\x41\x03\x12\x12\n\nenable_tpu\x18s \x01(\x08\x12 \n\x13tpu_ipv4_cidr_block\x18t \x01(\tB\x03\xe0\x41\x03\x12\x38\n\nconditions\x18v \x03(\x0b\x32$.google.container.v1.StatusCondition\x12\x32\n\tautopilot\x18\x80\x01 \x01(\x0b\x32\x1e.google.container.v1.Autopilot\x12\x10\n\x02id\x18\x81\x01 \x01(\tB\x03\xe0\x41\x03\x12G\n\x12node_pool_defaults\x18\x83\x01 \x01(\x0b\x32%.google.container.v1.NodePoolDefaultsH\x00\x88\x01\x01\x12;\n\x0elogging_config\x18\x84\x01 \x01(\x0b\x32\".google.container.v1.LoggingConfig\x12\x41\n\x11monitoring_config\x18\x85\x01 \x01(\x0b\x32%.google.container.v1.MonitoringConfig\x12G\n\x15node_pool_auto_config\x18\x88\x01 \x01(\x0b\x32\'.google.container.v1.NodePoolAutoConfig\x12\r\n\x04\x65tag\x18\x8b\x01 \x01(\t\x12*\n\x05\x66leet\x18\x8c\x01 \x01(\x0b\x32\x1a.google.container.v1.Fleet\x12L\n\x17security_posture_config\x18\x91\x01 \x01(\x0b\x32*.google.container.v1.SecurityPostureConfig\x12Y\n\x1e\x63ontrol_plane_endpoints_config\x18\x92\x01 \x01(\x0b\x32\x30.google.container.v1.ControlPlaneEndpointsConfig\x12\x44\n\x14\x65nable_k8s_beta_apis\x18\x8f\x01 \x01(\x0b\x32%.google.container.v1.K8sBetaAPIConfig\x12\x41\n\x11\x65nterprise_config\x18\x95\x01 \x01(\x0b\x32%.google.container.v1.EnterpriseConfig\x12H\n\x15secret_manager_config\x18\x96\x01 \x01(\x0b\x32(.google.container.v1.SecretManagerConfig\x12P\n\x19\x63ompliance_posture_config\x18\x97\x01 \x01(\x0b\x32,.google.container.v1.CompliancePostureConfig\x12 \n\rsatisfies_pzs\x18\x98\x01 \x01(\x08\x42\x03\xe0\x41\x03H\x01\x88\x01\x01\x12 \n\rsatisfies_pzi\x18\x99\x01 \x01(\x08\x42\x03\xe0\x41\x03H\x02\x88\x01\x01\x12R\n\x18user_managed_keys_config\x18\x9a\x01 \x01(\x0b\x32*.google.container.v1.UserManagedKeysConfigH\x03\x88\x01\x01\x12I\n\x13rbac_binding_config\x18\x9c\x01 \x01(\x0b\x32&.google.container.v1.RBACBindingConfigH\x04\x88\x01\x01\x1a\x35\n\x13ResourceLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"w\n\x06Status\x12\x16\n\x12STATUS_UNSPECIFIED\x10\x00\x12\x10\n\x0cPROVISIONING\x10\x01\x12\x0b\n\x07RUNNING\x10\x02\x12\x0f\n\x0bRECONCILING\x10\x03\x12\x0c\n\x08STOPPING\x10\x04\x12\t\n\x05\x45RROR\x10\x05\x12\x0c\n\x08\x44\x45GRADED\x10\x06\x42\x15\n\x13_node_pool_defaultsB\x10\n\x0e_satisfies_pzsB\x10\n\x0e_satisfies_pziB\x1b\n\x19_user_managed_keys_configB\x16\n\x14_rbac_binding_config\"\xef\x01\n\x11RBACBindingConfig\x12;\n.enable_insecure_binding_system_unauthenticated\x18\x01 \x01(\x08H\x00\x88\x01\x01\x12\x39\n,enable_insecure_binding_system_authenticated\x18\x02 \x01(\x08H\x01\x88\x01\x01\x42\x31\n/_enable_insecure_binding_system_unauthenticatedB/\n-_enable_insecure_binding_system_authenticated\"\xe9\x04\n\x15UserManagedKeysConfig\x12\x38\n\ncluster_ca\x18\n \x01(\tB$\xfa\x41!\n\x1fprivateca.googleapis.com/CaPool\x12\x39\n\x0b\x65tcd_api_ca\x18\x0b \x01(\tB$\xfa\x41!\n\x1fprivateca.googleapis.com/CaPool\x12:\n\x0c\x65tcd_peer_ca\x18\x0c \x01(\tB$\xfa\x41!\n\x1fprivateca.googleapis.com/CaPool\x12S\n\x1cservice_account_signing_keys\x18\r \x03(\tB-\xfa\x41*\n(cloudkms.googleapis.com/CryptoKeyVersion\x12X\n!service_account_verification_keys\x18\x0e \x03(\tB-\xfa\x41*\n(cloudkms.googleapis.com/CryptoKeyVersion\x12<\n\x0e\x61ggregation_ca\x18\x0f \x01(\tB$\xfa\x41!\n\x1fprivateca.googleapis.com/CaPool\x12X\n!control_plane_disk_encryption_key\x18\x10 \x01(\tB-\xfa\x41*\n(cloudkms.googleapis.com/CryptoKeyVersion\x12X\n!gkeops_etcd_backup_encryption_key\x18\x11 \x01(\tB-\xfa\x41*\n(cloudkms.googleapis.com/CryptoKeyVersion\"\xba\x02\n\x17\x43ompliancePostureConfig\x12\x44\n\x04mode\x18\x01 \x01(\x0e\x32\x31.google.container.v1.CompliancePostureConfig.ModeH\x00\x88\x01\x01\x12]\n\x14\x63ompliance_standards\x18\x02 \x03(\x0b\x32?.google.container.v1.CompliancePostureConfig.ComplianceStandard\x1a\x38\n\x12\x43omplianceStandard\x12\x15\n\x08standard\x18\x01 \x01(\tH\x00\x88\x01\x01\x42\x0b\n\t_standard\"7\n\x04Mode\x12\x14\n\x10MODE_UNSPECIFIED\x10\x00\x12\x0c\n\x08\x44ISABLED\x10\x01\x12\x0b\n\x07\x45NABLED\x10\x02\x42\x07\n\x05_mode\"(\n\x10K8sBetaAPIConfig\x12\x14\n\x0c\x65nabled_apis\x18\x01 \x03(\t\"\xae\x03\n\x15SecurityPostureConfig\x12\x42\n\x04mode\x18\x01 \x01(\x0e\x32/.google.container.v1.SecurityPostureConfig.ModeH\x00\x88\x01\x01\x12]\n\x12vulnerability_mode\x18\x02 \x01(\x0e\x32<.google.container.v1.SecurityPostureConfig.VulnerabilityModeH\x01\x88\x01\x01\"E\n\x04Mode\x12\x14\n\x10MODE_UNSPECIFIED\x10\x00\x12\x0c\n\x08\x44ISABLED\x10\x01\x12\t\n\x05\x42\x41SIC\x10\x02\x12\x0e\n\nENTERPRISE\x10\x03\"\x8a\x01\n\x11VulnerabilityMode\x12\"\n\x1eVULNERABILITY_MODE_UNSPECIFIED\x10\x00\x12\x1a\n\x16VULNERABILITY_DISABLED\x10\x01\x12\x17\n\x13VULNERABILITY_BASIC\x10\x02\x12\x1c\n\x18VULNERABILITY_ENTERPRISE\x10\x03\x42\x07\n\x05_modeB\x15\n\x13_vulnerability_mode\"\xda\x01\n\x12NodePoolAutoConfig\x12\x36\n\x0cnetwork_tags\x18\x01 \x01(\x0b\x32 .google.container.v1.NetworkTags\x12G\n\x15resource_manager_tags\x18\x02 \x01(\x0b\x32(.google.container.v1.ResourceManagerTags\x12\x43\n\x13node_kubelet_config\x18\x03 \x01(\x0b\x32&.google.container.v1.NodeKubeletConfig\"Y\n\x10NodePoolDefaults\x12\x45\n\x14node_config_defaults\x18\x01 \x01(\x0b\x32\'.google.container.v1.NodeConfigDefaults\"\x95\x02\n\x12NodeConfigDefaults\x12\x34\n\x0bgcfs_config\x18\x01 \x01(\x0b\x32\x1f.google.container.v1.GcfsConfig\x12\x42\n\x0elogging_config\x18\x03 \x01(\x0b\x32*.google.container.v1.NodePoolLoggingConfig\x12@\n\x11\x63ontainerd_config\x18\x04 \x01(\x0b\x32%.google.container.v1.ContainerdConfig\x12\x43\n\x13node_kubelet_config\x18\x06 \x01(\x0b\x32&.google.container.v1.NodeKubeletConfig\"\x9a&\n\rClusterUpdate\x12\x1c\n\x14\x64\x65sired_node_version\x18\x04 \x01(\t\x12\"\n\x1a\x64\x65sired_monitoring_service\x18\x05 \x01(\t\x12@\n\x15\x64\x65sired_addons_config\x18\x06 \x01(\x0b\x32!.google.container.v1.AddonsConfig\x12\x1c\n\x14\x64\x65sired_node_pool_id\x18\x07 \x01(\t\x12\x1a\n\x12\x64\x65sired_image_type\x18\x08 \x01(\t\x12L\n\x1b\x64\x65sired_database_encryption\x18. \x01(\x0b\x32\'.google.container.v1.DatabaseEncryption\x12U\n desired_workload_identity_config\x18/ \x01(\x0b\x32+.google.container.v1.WorkloadIdentityConfig\x12H\n\x19\x64\x65sired_mesh_certificates\x18\x43 \x01(\x0b\x32%.google.container.v1.MeshCertificates\x12\x42\n\x16\x64\x65sired_shielded_nodes\x18\x30 \x01(\x0b\x32\".google.container.v1.ShieldedNodes\x12Q\n\x1e\x64\x65sired_cost_management_config\x18\x31 \x01(\x0b\x32).google.container.v1.CostManagementConfig\x12:\n\x12\x64\x65sired_dns_config\x18\x35 \x01(\x0b\x32\x1e.google.container.v1.DNSConfig\x12O\n\x1d\x64\x65sired_node_pool_autoscaling\x18\t \x01(\x0b\x32(.google.container.v1.NodePoolAutoscaling\x12\x19\n\x11\x64\x65sired_locations\x18\n \x03(\t\x12j\n)desired_master_authorized_networks_config\x18\x0c \x01(\x0b\x32\x33.google.container.v1.MasterAuthorizedNetworksConfigB\x02\x18\x01\x12L\n\x1b\x64\x65sired_cluster_autoscaling\x18\x0f \x01(\x0b\x32\'.google.container.v1.ClusterAutoscaling\x12N\n\x1c\x64\x65sired_binary_authorization\x18\x10 \x01(\x0b\x32(.google.container.v1.BinaryAuthorization\x12\x1f\n\x17\x64\x65sired_logging_service\x18\x13 \x01(\t\x12\\\n$desired_resource_usage_export_config\x18\x15 \x01(\x0b\x32..google.container.v1.ResourceUsageExportConfig\x12U\n desired_vertical_pod_autoscaling\x18\x16 \x01(\x0b\x32+.google.container.v1.VerticalPodAutoscaling\x12U\n\x1e\x64\x65sired_private_cluster_config\x18\x19 \x01(\x0b\x32).google.container.v1.PrivateClusterConfigB\x02\x18\x01\x12\\\n$desired_intra_node_visibility_config\x18\x1a \x01(\x0b\x32..google.container.v1.IntraNodeVisibilityConfig\x12K\n\x1b\x64\x65sired_default_snat_status\x18\x1c \x01(\x0b\x32&.google.container.v1.DefaultSnatStatus\x12\x44\n\x17\x64\x65sired_release_channel\x18\x1f \x01(\x0b\x32#.google.container.v1.ReleaseChannel\x12Q\n\x1f\x64\x65sired_l4ilb_subsetting_config\x18\' \x01(\x0b\x32(.google.container.v1.ILBSubsettingConfig\x12H\n\x19\x64\x65sired_datapath_provider\x18\x32 \x01(\x0e\x32%.google.container.v1.DatapathProvider\x12X\n\"desired_private_ipv6_google_access\x18\x33 \x01(\x0e\x32,.google.container.v1.PrivateIPv6GoogleAccess\x12L\n\x1b\x64\x65sired_notification_config\x18\x37 \x01(\x0b\x32\'.google.container.v1.NotificationConfig\x12[\n#desired_authenticator_groups_config\x18? \x01(\x0b\x32..google.container.v1.AuthenticatorGroupsConfig\x12\x42\n\x16\x64\x65sired_logging_config\x18@ \x01(\x0b\x32\".google.container.v1.LoggingConfig\x12H\n\x19\x64\x65sired_monitoring_config\x18\x41 \x01(\x0b\x32%.google.container.v1.MonitoringConfig\x12S\n\x1f\x64\x65sired_identity_service_config\x18\x42 \x01(\x0b\x32*.google.container.v1.IdentityServiceConfig\x12Z\n#desired_service_external_ips_config\x18< \x01(\x0b\x32-.google.container.v1.ServiceExternalIPsConfig\x12\x30\n\x1f\x64\x65sired_enable_private_endpoint\x18G \x01(\x08\x42\x02\x18\x01H\x00\x88\x01\x01\x12\x31\n$desired_default_enable_private_nodes\x18H \x01(\x08H\x01\x88\x01\x01\x12`\n&desired_control_plane_endpoints_config\x18I \x01(\x0b\x32\x30.google.container.v1.ControlPlaneEndpointsConfig\x12\x1e\n\x16\x64\x65sired_master_version\x18\x64 \x01(\t\x12<\n\x13\x64\x65sired_gcfs_config\x18m \x01(\x0b\x32\x1f.google.container.v1.GcfsConfig\x12T\n*desired_node_pool_auto_config_network_tags\x18n \x01(\x0b\x32 .google.container.v1.NetworkTags\x12I\n\x1a\x64\x65sired_gateway_api_config\x18r \x01(\x0b\x32%.google.container.v1.GatewayAPIConfig\x12\x0c\n\x04\x65tag\x18s \x01(\t\x12T\n desired_node_pool_logging_config\x18t \x01(\x0b\x32*.google.container.v1.NodePoolLoggingConfig\x12\x31\n\rdesired_fleet\x18u \x01(\x0b\x32\x1a.google.container.v1.Fleet\x12:\n\x12\x64\x65sired_stack_type\x18w \x01(\x0e\x32\x1e.google.container.v1.StackType\x12T\n\x1c\x61\x64\x64itional_pod_ranges_config\x18x \x01(\x0b\x32..google.container.v1.AdditionalPodRangesConfig\x12\\\n$removed_additional_pod_ranges_config\x18y \x01(\x0b\x32..google.container.v1.AdditionalPodRangesConfig\x12\x43\n\x14\x65nable_k8s_beta_apis\x18z \x01(\x0b\x32%.google.container.v1.K8sBetaAPIConfig\x12S\n\x1f\x64\x65sired_security_posture_config\x18| \x01(\x0b\x32*.google.container.v1.SecurityPostureConfig\x12n\n\"desired_network_performance_config\x18} \x01(\x0b\x32\x42.google.container.v1.NetworkConfig.ClusterNetworkPerformanceConfig\x12/\n\"desired_enable_fqdn_network_policy\x18~ \x01(\x08H\x02\x88\x01\x01\x12\\\n(desired_autopilot_workload_policy_config\x18\x80\x01 \x01(\x0b\x32).google.container.v1.WorkloadPolicyConfig\x12\x45\n\x15\x64\x65sired_k8s_beta_apis\x18\x83\x01 \x01(\x0b\x32%.google.container.v1.K8sBetaAPIConfig\x12I\n\x19\x64\x65sired_containerd_config\x18\x86\x01 \x01(\x0b\x32%.google.container.v1.ContainerdConfig\x12-\n\x1f\x64\x65sired_enable_multi_networking\x18\x87\x01 \x01(\x08H\x03\x88\x01\x01\x12\x66\n3desired_node_pool_auto_config_resource_manager_tags\x18\x88\x01 \x01(\x0b\x32(.google.container.v1.ResourceManagerTags\x12\x62\n$desired_in_transit_encryption_config\x18\x89\x01 \x01(\x0e\x32..google.container.v1.InTransitEncryptionConfigH\x04\x88\x01\x01\x12>\n0desired_enable_cilium_clusterwide_network_policy\x18\x8a\x01 \x01(\x08H\x05\x88\x01\x01\x12U\n\x1d\x64\x65sired_secret_manager_config\x18\x8b\x01 \x01(\x0b\x32(.google.container.v1.SecretManagerConfigH\x06\x88\x01\x01\x12]\n!desired_compliance_posture_config\x18\x8c\x01 \x01(\x0b\x32,.google.container.v1.CompliancePostureConfigH\x07\x88\x01\x01\x12L\n\x1b\x64\x65sired_node_kubelet_config\x18\x8d\x01 \x01(\x0b\x32&.google.container.v1.NodeKubeletConfig\x12]\n,desired_node_pool_auto_config_kubelet_config\x18\x8e\x01 \x01(\x0b\x32&.google.container.v1.NodeKubeletConfig\x12M\n\x18user_managed_keys_config\x18\x8f\x01 \x01(\x0b\x32*.google.container.v1.UserManagedKeysConfig\x12Q\n\x1b\x64\x65sired_rbac_binding_config\x18\x90\x01 \x01(\x0b\x32&.google.container.v1.RBACBindingConfigH\x08\x88\x01\x01\x42\"\n _desired_enable_private_endpointB\'\n%_desired_default_enable_private_nodesB%\n#_desired_enable_fqdn_network_policyB\"\n _desired_enable_multi_networkingB\'\n%_desired_in_transit_encryption_configB3\n1_desired_enable_cilium_clusterwide_network_policyB \n\x1e_desired_secret_manager_configB$\n\"_desired_compliance_posture_configB\x1e\n\x1c_desired_rbac_binding_config\"q\n\x19\x41\x64\x64itionalPodRangesConfig\x12\x17\n\x0fpod_range_names\x18\x01 \x03(\t\x12;\n\x0epod_range_info\x18\x02 \x03(\x0b\x32\x1e.google.container.v1.RangeInfoB\x03\xe0\x41\x03\">\n\tRangeInfo\x12\x17\n\nrange_name\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x18\n\x0butilization\x18\x02 \x01(\x01\x42\x03\xe0\x41\x03\"\xe4\x08\n\tOperation\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x13\n\x04zone\x18\x02 \x01(\tB\x05\x18\x01\xe0\x41\x03\x12@\n\x0eoperation_type\x18\x03 \x01(\x0e\x32#.google.container.v1.Operation.TypeB\x03\xe0\x41\x03\x12:\n\x06status\x18\x04 \x01(\x0e\x32%.google.container.v1.Operation.StatusB\x03\xe0\x41\x03\x12\x13\n\x06\x64\x65tail\x18\x08 \x01(\tB\x03\xe0\x41\x03\x12\x1d\n\x0estatus_message\x18\x05 \x01(\tB\x05\x18\x01\xe0\x41\x03\x12\x16\n\tself_link\x18\x06 \x01(\tB\x03\xe0\x41\x03\x12\x18\n\x0btarget_link\x18\x07 \x01(\tB\x03\xe0\x41\x03\x12\x15\n\x08location\x18\t \x01(\tB\x03\xe0\x41\x03\x12\x17\n\nstart_time\x18\n \x01(\tB\x03\xe0\x41\x03\x12\x15\n\x08\x65nd_time\x18\x0b \x01(\tB\x03\xe0\x41\x03\x12=\n\x08progress\x18\x0c \x01(\x0b\x32&.google.container.v1.OperationProgressB\x03\xe0\x41\x03\x12\x44\n\x12\x63luster_conditions\x18\r \x03(\x0b\x32$.google.container.v1.StatusConditionB\x02\x18\x01\x12\x45\n\x13nodepool_conditions\x18\x0e \x03(\x0b\x32$.google.container.v1.StatusConditionB\x02\x18\x01\x12!\n\x05\x65rror\x18\x0f \x01(\x0b\x32\x12.google.rpc.Status\"R\n\x06Status\x12\x16\n\x12STATUS_UNSPECIFIED\x10\x00\x12\x0b\n\x07PENDING\x10\x01\x12\x0b\n\x07RUNNING\x10\x02\x12\x08\n\x04\x44ONE\x10\x03\x12\x0c\n\x08\x41\x42ORTING\x10\x04\"\xc0\x03\n\x04Type\x12\x14\n\x10TYPE_UNSPECIFIED\x10\x00\x12\x12\n\x0e\x43REATE_CLUSTER\x10\x01\x12\x12\n\x0e\x44\x45LETE_CLUSTER\x10\x02\x12\x12\n\x0eUPGRADE_MASTER\x10\x03\x12\x11\n\rUPGRADE_NODES\x10\x04\x12\x12\n\x0eREPAIR_CLUSTER\x10\x05\x12\x12\n\x0eUPDATE_CLUSTER\x10\x06\x12\x14\n\x10\x43REATE_NODE_POOL\x10\x07\x12\x14\n\x10\x44\x45LETE_NODE_POOL\x10\x08\x12\x1c\n\x18SET_NODE_POOL_MANAGEMENT\x10\t\x12\x15\n\x11\x41UTO_REPAIR_NODES\x10\n\x12\x1a\n\x12\x41UTO_UPGRADE_NODES\x10\x0b\x1a\x02\x08\x01\x12\x12\n\nSET_LABELS\x10\x0c\x1a\x02\x08\x01\x12\x17\n\x0fSET_MASTER_AUTH\x10\r\x1a\x02\x08\x01\x12\x16\n\x12SET_NODE_POOL_SIZE\x10\x0e\x12\x1a\n\x12SET_NETWORK_POLICY\x10\x0f\x1a\x02\x08\x01\x12\x1e\n\x16SET_MAINTENANCE_POLICY\x10\x10\x1a\x02\x08\x01\x12\x12\n\x0eRESIZE_CLUSTER\x10\x12\x12\x19\n\x15\x46LEET_FEATURE_UPGRADE\x10\x13\"\xbb\x02\n\x11OperationProgress\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x35\n\x06status\x18\x02 \x01(\x0e\x32%.google.container.v1.Operation.Status\x12>\n\x07metrics\x18\x03 \x03(\x0b\x32-.google.container.v1.OperationProgress.Metric\x12\x36\n\x06stages\x18\x04 \x03(\x0b\x32&.google.container.v1.OperationProgress\x1ai\n\x06Metric\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x13\n\tint_value\x18\x02 \x01(\x03H\x00\x12\x16\n\x0c\x64ouble_value\x18\x03 \x01(\x01H\x00\x12\x16\n\x0cstring_value\x18\x04 \x01(\tH\x00\x42\x07\n\x05value\"\x84\x01\n\x14\x43reateClusterRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x32\n\x07\x63luster\x18\x03 \x01(\x0b\x32\x1c.google.container.v1.ClusterB\x03\xe0\x41\x02\x12\x0e\n\x06parent\x18\x05 \x01(\t\"c\n\x11GetClusterRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12\x0c\n\x04name\x18\x05 \x01(\t\"\x9f\x01\n\x14UpdateClusterRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12\x37\n\x06update\x18\x04 \x01(\x0b\x32\".google.container.v1.ClusterUpdateB\x03\xe0\x41\x02\x12\x0c\n\x04name\x18\x05 \x01(\t\"\xea\x0b\n\x15UpdateNodePoolRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12\x18\n\x0cnode_pool_id\x18\x04 \x01(\tB\x02\x18\x01\x12\x19\n\x0cnode_version\x18\x05 \x01(\tB\x03\xe0\x41\x02\x12\x17\n\nimage_type\x18\x06 \x01(\tB\x03\xe0\x41\x02\x12\x0c\n\x04name\x18\x08 \x01(\t\x12\x11\n\tlocations\x18\r \x03(\t\x12M\n\x18workload_metadata_config\x18\x0e \x01(\x0b\x32+.google.container.v1.WorkloadMetadataConfig\x12G\n\x10upgrade_settings\x18\x0f \x01(\x0b\x32-.google.container.v1.NodePool.UpgradeSettings\x12.\n\x04tags\x18\x10 \x01(\x0b\x32 .google.container.v1.NetworkTags\x12/\n\x06taints\x18\x11 \x01(\x0b\x32\x1f.google.container.v1.NodeTaints\x12/\n\x06labels\x18\x12 \x01(\x0b\x32\x1f.google.container.v1.NodeLabels\x12?\n\x11linux_node_config\x18\x13 \x01(\x0b\x32$.google.container.v1.LinuxNodeConfig\x12>\n\x0ekubelet_config\x18\x14 \x01(\x0b\x32&.google.container.v1.NodeKubeletConfig\x12\x43\n\x13node_network_config\x18\x15 \x01(\x0b\x32&.google.container.v1.NodeNetworkConfig\x12\x34\n\x0bgcfs_config\x18\x16 \x01(\x0b\x32\x1f.google.container.v1.GcfsConfig\x12\x42\n\x12\x63onfidential_nodes\x18\x17 \x01(\x0b\x32&.google.container.v1.ConfidentialNodes\x12.\n\x05gvnic\x18\x1d \x01(\x0b\x32\x1f.google.container.v1.VirtualNIC\x12\x0c\n\x04\x65tag\x18\x1e \x01(\t\x12\x34\n\x0b\x66\x61st_socket\x18\x1f \x01(\x0b\x32\x1f.google.container.v1.FastSocket\x12\x42\n\x0elogging_config\x18 \x01(\x0b\x32*.google.container.v1.NodePoolLoggingConfig\x12<\n\x0fresource_labels\x18! \x01(\x0b\x32#.google.container.v1.ResourceLabels\x12\x43\n\x13windows_node_config\x18\" \x01(\x0b\x32&.google.container.v1.WindowsNodeConfig\x12<\n\x0c\x61\x63\x63\x65lerators\x18# \x03(\x0b\x32&.google.container.v1.AcceleratorConfig\x12\x19\n\x0cmachine_type\x18$ \x01(\tB\x03\xe0\x41\x01\x12\x16\n\tdisk_type\x18% \x01(\tB\x03\xe0\x41\x01\x12\x19\n\x0c\x64isk_size_gb\x18& \x01(\x03\x42\x03\xe0\x41\x01\x12G\n\x15resource_manager_tags\x18\' \x01(\x0b\x32(.google.container.v1.ResourceManagerTags\x12@\n\x11\x63ontainerd_config\x18( \x01(\x0b\x32%.google.container.v1.ContainerdConfig\x12M\n\x13queued_provisioning\x18* \x01(\x0b\x32\x30.google.container.v1.NodePool.QueuedProvisioning\x12\x15\n\rstorage_pools\x18+ \x03(\t\"\xcd\x01\n\x1dSetNodePoolAutoscalingRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12\x18\n\x0cnode_pool_id\x18\x04 \x01(\tB\x02\x18\x01\x12\x42\n\x0b\x61utoscaling\x18\x05 \x01(\x0b\x32(.google.container.v1.NodePoolAutoscalingB\x03\xe0\x41\x02\x12\x0c\n\x04name\x18\x06 \x01(\t\"\x88\x01\n\x18SetLoggingServiceRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12\x1c\n\x0flogging_service\x18\x04 \x01(\tB\x03\xe0\x41\x02\x12\x0c\n\x04name\x18\x05 \x01(\t\"\x8e\x01\n\x1bSetMonitoringServiceRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12\x1f\n\x12monitoring_service\x18\x04 \x01(\tB\x03\xe0\x41\x02\x12\x0c\n\x04name\x18\x06 \x01(\t\"\xa7\x01\n\x16SetAddonsConfigRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12=\n\raddons_config\x18\x04 \x01(\x0b\x32!.google.container.v1.AddonsConfigB\x03\xe0\x41\x02\x12\x0c\n\x04name\x18\x06 \x01(\t\"}\n\x13SetLocationsRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12\x16\n\tlocations\x18\x04 \x03(\tB\x03\xe0\x41\x02\x12\x0c\n\x04name\x18\x06 \x01(\t\"\x82\x01\n\x13UpdateMasterRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12\x1b\n\x0emaster_version\x18\x04 \x01(\tB\x03\xe0\x41\x02\x12\x0c\n\x04name\x18\x07 \x01(\t\"\xb5\x02\n\x14SetMasterAuthRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12\x45\n\x06\x61\x63tion\x18\x04 \x01(\x0e\x32\x30.google.container.v1.SetMasterAuthRequest.ActionB\x03\xe0\x41\x02\x12\x34\n\x06update\x18\x05 \x01(\x0b\x32\x1f.google.container.v1.MasterAuthB\x03\xe0\x41\x02\x12\x0c\n\x04name\x18\x07 \x01(\t\"P\n\x06\x41\x63tion\x12\x0b\n\x07UNKNOWN\x10\x00\x12\x10\n\x0cSET_PASSWORD\x10\x01\x12\x15\n\x11GENERATE_PASSWORD\x10\x02\x12\x10\n\x0cSET_USERNAME\x10\x03\"f\n\x14\x44\x65leteClusterRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12\x0c\n\x04name\x18\x04 \x01(\t\"O\n\x13ListClustersRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x0e\n\x06parent\x18\x04 \x01(\t\"]\n\x14ListClustersResponse\x12.\n\x08\x63lusters\x18\x01 \x03(\x0b\x32\x1c.google.container.v1.Cluster\x12\x15\n\rmissing_zones\x18\x02 \x03(\t\"g\n\x13GetOperationRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x18\n\x0coperation_id\x18\x03 \x01(\tB\x02\x18\x01\x12\x0c\n\x04name\x18\x05 \x01(\t\"Q\n\x15ListOperationsRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x0e\n\x06parent\x18\x04 \x01(\t\"j\n\x16\x43\x61ncelOperationRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x18\n\x0coperation_id\x18\x03 \x01(\tB\x02\x18\x01\x12\x0c\n\x04name\x18\x04 \x01(\t\"c\n\x16ListOperationsResponse\x12\x32\n\noperations\x18\x01 \x03(\x0b\x32\x1e.google.container.v1.Operation\x12\x15\n\rmissing_zones\x18\x02 \x03(\t\"P\n\x16GetServerConfigRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x0c\n\x04name\x18\x04 \x01(\t\"\x94\x03\n\x0cServerConfig\x12\x1f\n\x17\x64\x65\x66\x61ult_cluster_version\x18\x01 \x01(\t\x12\x1b\n\x13valid_node_versions\x18\x03 \x03(\t\x12\x1a\n\x12\x64\x65\x66\x61ult_image_type\x18\x04 \x01(\t\x12\x19\n\x11valid_image_types\x18\x05 \x03(\t\x12\x1d\n\x15valid_master_versions\x18\x06 \x03(\t\x12H\n\x08\x63hannels\x18\t \x03(\x0b\x32\x36.google.container.v1.ServerConfig.ReleaseChannelConfig\x1a\xa5\x01\n\x14ReleaseChannelConfig\x12<\n\x07\x63hannel\x18\x01 \x01(\x0e\x32+.google.container.v1.ReleaseChannel.Channel\x12\x17\n\x0f\x64\x65\x66\x61ult_version\x18\x02 \x01(\t\x12\x16\n\x0evalid_versions\x18\x04 \x03(\t\x12\x1e\n\x16upgrade_target_version\x18\x05 \x01(\t\"\xa0\x01\n\x15\x43reateNodePoolRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12\x35\n\tnode_pool\x18\x04 \x01(\x0b\x32\x1d.google.container.v1.NodePoolB\x03\xe0\x41\x02\x12\x0e\n\x06parent\x18\x06 \x01(\t\"\x81\x01\n\x15\x44\x65leteNodePoolRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12\x18\n\x0cnode_pool_id\x18\x04 \x01(\tB\x02\x18\x01\x12\x0c\n\x04name\x18\x06 \x01(\t\"h\n\x14ListNodePoolsRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12\x0e\n\x06parent\x18\x05 \x01(\t\"~\n\x12GetNodePoolRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12\x18\n\x0cnode_pool_id\x18\x04 \x01(\tB\x02\x18\x01\x12\x0c\n\x04name\x18\x06 \x01(\t\"\x9f\x03\n\x11\x42lueGreenSettings\x12_\n\x17standard_rollout_policy\x18\x01 \x01(\x0b\x32<.google.container.v1.BlueGreenSettings.StandardRolloutPolicyH\x00\x12?\n\x17node_pool_soak_duration\x18\x02 \x01(\x0b\x32\x19.google.protobuf.DurationH\x01\x88\x01\x01\x1a\xb9\x01\n\x15StandardRolloutPolicy\x12\x1a\n\x10\x62\x61tch_percentage\x18\x01 \x01(\x02H\x00\x12\x1a\n\x10\x62\x61tch_node_count\x18\x02 \x01(\x05H\x00\x12;\n\x13\x62\x61tch_soak_duration\x18\x03 \x01(\x0b\x32\x19.google.protobuf.DurationH\x01\x88\x01\x01\x42\x13\n\x11update_batch_sizeB\x16\n\x14_batch_soak_durationB\x10\n\x0erollout_policyB\x1a\n\x18_node_pool_soak_duration\"\xd1\x10\n\x08NodePool\x12\x0c\n\x04name\x18\x01 \x01(\t\x12/\n\x06\x63onfig\x18\x02 \x01(\x0b\x32\x1f.google.container.v1.NodeConfig\x12\x1a\n\x12initial_node_count\x18\x03 \x01(\x05\x12\x11\n\tlocations\x18\r \x03(\t\x12>\n\x0enetwork_config\x18\x0e \x01(\x0b\x32&.google.container.v1.NodeNetworkConfig\x12\x16\n\tself_link\x18\x64 \x01(\tB\x03\xe0\x41\x03\x12\x0f\n\x07version\x18\x65 \x01(\t\x12 \n\x13instance_group_urls\x18\x66 \x03(\tB\x03\xe0\x41\x03\x12\x39\n\x06status\x18g \x01(\x0e\x32$.google.container.v1.NodePool.StatusB\x03\xe0\x41\x03\x12\x1d\n\x0estatus_message\x18h \x01(\tB\x05\x18\x01\xe0\x41\x03\x12=\n\x0b\x61utoscaling\x18\x04 \x01(\x0b\x32(.google.container.v1.NodePoolAutoscaling\x12\x37\n\nmanagement\x18\x05 \x01(\x0b\x32#.google.container.v1.NodeManagement\x12\x43\n\x13max_pods_constraint\x18\x06 \x01(\x0b\x32&.google.container.v1.MaxPodsConstraint\x12\x38\n\nconditions\x18i \x03(\x0b\x32$.google.container.v1.StatusCondition\x12\x1f\n\x12pod_ipv4_cidr_size\x18\x07 \x01(\x05\x42\x03\xe0\x41\x03\x12G\n\x10upgrade_settings\x18k \x01(\x0b\x32-.google.container.v1.NodePool.UpgradeSettings\x12G\n\x10placement_policy\x18l \x01(\x0b\x32-.google.container.v1.NodePool.PlacementPolicy\x12\x42\n\x0bupdate_info\x18m \x01(\x0b\x32(.google.container.v1.NodePool.UpdateInfoB\x03\xe0\x41\x03\x12\x0c\n\x04\x65tag\x18n \x01(\t\x12M\n\x13queued_provisioning\x18p \x01(\x0b\x32\x30.google.container.v1.NodePool.QueuedProvisioning\x12M\n\x18\x62\x65st_effort_provisioning\x18q \x01(\x0b\x32+.google.container.v1.BestEffortProvisioning\x1a\xf0\x01\n\x0fUpgradeSettings\x12\x11\n\tmax_surge\x18\x01 \x01(\x05\x12\x17\n\x0fmax_unavailable\x18\x02 \x01(\x05\x12\x42\n\x08strategy\x18\x03 \x01(\x0e\x32+.google.container.v1.NodePoolUpdateStrategyH\x00\x88\x01\x01\x12H\n\x13\x62lue_green_settings\x18\x04 \x01(\x0b\x32&.google.container.v1.BlueGreenSettingsH\x01\x88\x01\x01\x42\x0b\n\t_strategyB\x16\n\x14_blue_green_settings\x1a\x88\x04\n\nUpdateInfo\x12O\n\x0f\x62lue_green_info\x18\x01 \x01(\x0b\x32\x36.google.container.v1.NodePool.UpdateInfo.BlueGreenInfo\x1a\xa8\x03\n\rBlueGreenInfo\x12K\n\x05phase\x18\x01 \x01(\x0e\x32<.google.container.v1.NodePool.UpdateInfo.BlueGreenInfo.Phase\x12 \n\x18\x62lue_instance_group_urls\x18\x02 \x03(\t\x12!\n\x19green_instance_group_urls\x18\x03 \x03(\t\x12%\n\x1d\x62lue_pool_deletion_start_time\x18\x04 \x01(\t\x12\x1a\n\x12green_pool_version\x18\x05 \x01(\t\"\xc1\x01\n\x05Phase\x12\x15\n\x11PHASE_UNSPECIFIED\x10\x00\x12\x12\n\x0eUPDATE_STARTED\x10\x01\x12\x17\n\x13\x43REATING_GREEN_POOL\x10\x02\x12\x17\n\x13\x43ORDONING_BLUE_POOL\x10\x03\x12\x16\n\x12\x44RAINING_BLUE_POOL\x10\x04\x12\x15\n\x11NODE_POOL_SOAKING\x10\x05\x12\x16\n\x12\x44\x45LETING_BLUE_POOL\x10\x06\x12\x14\n\x10ROLLBACK_STARTED\x10\x07\x1a\xae\x01\n\x0fPlacementPolicy\x12@\n\x04type\x18\x01 \x01(\x0e\x32\x32.google.container.v1.NodePool.PlacementPolicy.Type\x12\x19\n\x0ctpu_topology\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x0bpolicy_name\x18\x03 \x01(\t\")\n\x04Type\x12\x14\n\x10TYPE_UNSPECIFIED\x10\x00\x12\x0b\n\x07\x43OMPACT\x10\x01\x1a%\n\x12QueuedProvisioning\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\"\x81\x01\n\x06Status\x12\x16\n\x12STATUS_UNSPECIFIED\x10\x00\x12\x10\n\x0cPROVISIONING\x10\x01\x12\x0b\n\x07RUNNING\x10\x02\x12\x16\n\x12RUNNING_WITH_ERROR\x10\x03\x12\x0f\n\x0bRECONCILING\x10\x04\x12\x0c\n\x08STOPPING\x10\x05\x12\t\n\x05\x45RROR\x10\x06\"}\n\x0eNodeManagement\x12\x14\n\x0c\x61uto_upgrade\x18\x01 \x01(\x08\x12\x13\n\x0b\x61uto_repair\x18\x02 \x01(\x08\x12@\n\x0fupgrade_options\x18\n \x01(\x0b\x32\'.google.container.v1.AutoUpgradeOptions\"F\n\x16\x42\x65stEffortProvisioning\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\x12\x1b\n\x13min_provision_nodes\x18\x02 \x01(\x05\"T\n\x12\x41utoUpgradeOptions\x12$\n\x17\x61uto_upgrade_start_time\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tB\x03\xe0\x41\x03\"e\n\x11MaintenancePolicy\x12\x36\n\x06window\x18\x01 \x01(\x0b\x32&.google.container.v1.MaintenanceWindow\x12\x18\n\x10resource_version\x18\x03 \x01(\t\"\xf6\x02\n\x11MaintenanceWindow\x12O\n\x18\x64\x61ily_maintenance_window\x18\x02 \x01(\x0b\x32+.google.container.v1.DailyMaintenanceWindowH\x00\x12\x44\n\x10recurring_window\x18\x03 \x01(\x0b\x32(.google.container.v1.RecurringTimeWindowH\x00\x12\x61\n\x16maintenance_exclusions\x18\x04 \x03(\x0b\x32\x41.google.container.v1.MaintenanceWindow.MaintenanceExclusionsEntry\x1a]\n\x1aMaintenanceExclusionsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12.\n\x05value\x18\x02 \x01(\x0b\x32\x1f.google.container.v1.TimeWindow:\x02\x38\x01\x42\x08\n\x06policy\"\xd0\x01\n\nTimeWindow\x12Y\n\x1dmaintenance_exclusion_options\x18\x03 \x01(\x0b\x32\x30.google.container.v1.MaintenanceExclusionOptionsH\x00\x12.\n\nstart_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12,\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\t\n\x07options\"\xb4\x01\n\x1bMaintenanceExclusionOptions\x12\x45\n\x05scope\x18\x01 \x01(\x0e\x32\x36.google.container.v1.MaintenanceExclusionOptions.Scope\"N\n\x05Scope\x12\x0f\n\x0bNO_UPGRADES\x10\x00\x12\x15\n\x11NO_MINOR_UPGRADES\x10\x01\x12\x1d\n\x19NO_MINOR_OR_NODE_UPGRADES\x10\x02\"Z\n\x13RecurringTimeWindow\x12/\n\x06window\x18\x01 \x01(\x0b\x32\x1f.google.container.v1.TimeWindow\x12\x12\n\nrecurrence\x18\x02 \x01(\t\"C\n\x16\x44\x61ilyMaintenanceWindow\x12\x12\n\nstart_time\x18\x02 \x01(\t\x12\x15\n\x08\x64uration\x18\x03 \x01(\tB\x03\xe0\x41\x03\"\xc6\x01\n\x1cSetNodePoolManagementRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12\x18\n\x0cnode_pool_id\x18\x04 \x01(\tB\x02\x18\x01\x12<\n\nmanagement\x18\x05 \x01(\x0b\x32#.google.container.v1.NodeManagementB\x03\xe0\x41\x02\x12\x0c\n\x04name\x18\x07 \x01(\t\"\x9b\x01\n\x16SetNodePoolSizeRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12\x18\n\x0cnode_pool_id\x18\x04 \x01(\tB\x02\x18\x01\x12\x17\n\nnode_count\x18\x05 \x01(\x05\x42\x03\xe0\x41\x02\x12\x0c\n\x04name\x18\x07 \x01(\t\".\n\x1e\x43ompleteNodePoolUpgradeRequest\x12\x0c\n\x04name\x18\x01 \x01(\t\"\x9f\x01\n\x1eRollbackNodePoolUpgradeRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12\x18\n\x0cnode_pool_id\x18\x04 \x01(\tB\x02\x18\x01\x12\x0c\n\x04name\x18\x06 \x01(\t\x12\x13\n\x0brespect_pdb\x18\x07 \x01(\x08\"J\n\x15ListNodePoolsResponse\x12\x31\n\nnode_pools\x18\x01 \x03(\x0b\x32\x1d.google.container.v1.NodePool\"\xaf\x03\n\x12\x43lusterAutoscaling\x12$\n\x1c\x65nable_node_autoprovisioning\x18\x01 \x01(\x08\x12;\n\x0fresource_limits\x18\x02 \x03(\x0b\x32\".google.container.v1.ResourceLimit\x12W\n\x13\x61utoscaling_profile\x18\x03 \x01(\x0e\x32:.google.container.v1.ClusterAutoscaling.AutoscalingProfile\x12\x62\n#autoprovisioning_node_pool_defaults\x18\x04 \x01(\x0b\x32\x35.google.container.v1.AutoprovisioningNodePoolDefaults\x12\"\n\x1a\x61utoprovisioning_locations\x18\x05 \x03(\t\"U\n\x12\x41utoscalingProfile\x12\x17\n\x13PROFILE_UNSPECIFIED\x10\x00\x12\x18\n\x14OPTIMIZE_UTILIZATION\x10\x01\x12\x0c\n\x08\x42\x41LANCED\x10\x02\"\xf8\x03\n AutoprovisioningNodePoolDefaults\x12\x14\n\x0coauth_scopes\x18\x01 \x03(\t\x12\x17\n\x0fservice_account\x18\x02 \x01(\t\x12G\n\x10upgrade_settings\x18\x03 \x01(\x0b\x32-.google.container.v1.NodePool.UpgradeSettings\x12\x37\n\nmanagement\x18\x04 \x01(\x0b\x32#.google.container.v1.NodeManagement\x12\x1c\n\x10min_cpu_platform\x18\x05 \x01(\tB\x02\x18\x01\x12\x14\n\x0c\x64isk_size_gb\x18\x06 \x01(\x05\x12\x11\n\tdisk_type\x18\x07 \x01(\t\x12M\n\x18shielded_instance_config\x18\x08 \x01(\x0b\x32+.google.container.v1.ShieldedInstanceConfig\x12\x19\n\x11\x62oot_disk_kms_key\x18\t \x01(\t\x12\x12\n\nimage_type\x18\n \x01(\t\x12\x33\n&insecure_kubelet_readonly_port_enabled\x18\r \x01(\x08H\x00\x88\x01\x01\x42)\n\'_insecure_kubelet_readonly_port_enabled\"H\n\rResourceLimit\x12\x15\n\rresource_type\x18\x01 \x01(\t\x12\x0f\n\x07minimum\x18\x02 \x01(\x03\x12\x0f\n\x07maximum\x18\x03 \x01(\x03\"\xc7\x02\n\x13NodePoolAutoscaling\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\x12\x16\n\x0emin_node_count\x18\x02 \x01(\x05\x12\x16\n\x0emax_node_count\x18\x03 \x01(\x05\x12\x17\n\x0f\x61utoprovisioned\x18\x04 \x01(\x08\x12P\n\x0flocation_policy\x18\x05 \x01(\x0e\x32\x37.google.container.v1.NodePoolAutoscaling.LocationPolicy\x12\x1c\n\x14total_min_node_count\x18\x06 \x01(\x05\x12\x1c\n\x14total_max_node_count\x18\x07 \x01(\x05\"H\n\x0eLocationPolicy\x12\x1f\n\x1bLOCATION_POLICY_UNSPECIFIED\x10\x00\x12\x0c\n\x08\x42\x41LANCED\x10\x01\x12\x07\n\x03\x41NY\x10\x02\"\x92\x02\n\x10SetLabelsRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12W\n\x0fresource_labels\x18\x04 \x03(\x0b\x32\x39.google.container.v1.SetLabelsRequest.ResourceLabelsEntryB\x03\xe0\x41\x02\x12\x1e\n\x11label_fingerprint\x18\x05 \x01(\tB\x03\xe0\x41\x02\x12\x0c\n\x04name\x18\x07 \x01(\t\x1a\x35\n\x13ResourceLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"|\n\x14SetLegacyAbacRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12\x14\n\x07\x65nabled\x18\x04 \x01(\x08\x42\x03\xe0\x41\x02\x12\x0c\n\x04name\x18\x06 \x01(\t\"\x84\x01\n\x16StartIPRotationRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12\x0c\n\x04name\x18\x06 \x01(\t\x12\x1a\n\x12rotate_credentials\x18\x07 \x01(\x08\"k\n\x19\x43ompleteIPRotationRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12\x0c\n\x04name\x18\x07 \x01(\t\"\xc5\x02\n\x11\x41\x63\x63\x65leratorConfig\x12\x19\n\x11\x61\x63\x63\x65lerator_count\x18\x01 \x01(\x03\x12\x18\n\x10\x61\x63\x63\x65lerator_type\x18\x02 \x01(\t\x12\x1a\n\x12gpu_partition_size\x18\x03 \x01(\t\x12\x46\n\x12gpu_sharing_config\x18\x05 \x01(\x0b\x32%.google.container.v1.GPUSharingConfigH\x00\x88\x01\x01\x12]\n\x1egpu_driver_installation_config\x18\x06 \x01(\x0b\x32\x30.google.container.v1.GPUDriverInstallationConfigH\x01\x88\x01\x01\x42\x15\n\x13_gpu_sharing_configB!\n\x1f_gpu_driver_installation_config\"\x83\x02\n\x10GPUSharingConfig\x12\"\n\x1amax_shared_clients_per_gpu\x18\x01 \x01(\x03\x12[\n\x14gpu_sharing_strategy\x18\x02 \x01(\x0e\x32\x38.google.container.v1.GPUSharingConfig.GPUSharingStrategyH\x00\x88\x01\x01\"U\n\x12GPUSharingStrategy\x12$\n GPU_SHARING_STRATEGY_UNSPECIFIED\x10\x00\x12\x10\n\x0cTIME_SHARING\x10\x01\x12\x07\n\x03MPS\x10\x02\x42\x17\n\x15_gpu_sharing_strategy\"\x84\x02\n\x1bGPUDriverInstallationConfig\x12\x62\n\x12gpu_driver_version\x18\x01 \x01(\x0e\x32\x41.google.container.v1.GPUDriverInstallationConfig.GPUDriverVersionH\x00\x88\x01\x01\"j\n\x10GPUDriverVersion\x12\"\n\x1eGPU_DRIVER_VERSION_UNSPECIFIED\x10\x00\x12\x19\n\x15INSTALLATION_DISABLED\x10\x01\x12\x0b\n\x07\x44\x45\x46\x41ULT\x10\x02\x12\n\n\x06LATEST\x10\x03\x42\x15\n\x13_gpu_driver_version\"\x9a\x01\n\x16WorkloadMetadataConfig\x12>\n\x04mode\x18\x02 \x01(\x0e\x32\x30.google.container.v1.WorkloadMetadataConfig.Mode\"@\n\x04Mode\x12\x14\n\x10MODE_UNSPECIFIED\x10\x00\x12\x10\n\x0cGCE_METADATA\x10\x01\x12\x10\n\x0cGKE_METADATA\x10\x02\"\xaa\x01\n\x17SetNetworkPolicyRequest\x12\x16\n\nproject_id\x18\x01 \x01(\tB\x02\x18\x01\x12\x10\n\x04zone\x18\x02 \x01(\tB\x02\x18\x01\x12\x16\n\ncluster_id\x18\x03 \x01(\tB\x02\x18\x01\x12?\n\x0enetwork_policy\x18\x04 \x01(\x0b\x32\".google.container.v1.NetworkPolicyB\x03\xe0\x41\x02\x12\x0c\n\x04name\x18\x06 \x01(\t\"\xb9\x01\n\x1bSetMaintenancePolicyRequest\x12\x17\n\nproject_id\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x11\n\x04zone\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x17\n\ncluster_id\x18\x03 \x01(\tB\x03\xe0\x41\x02\x12G\n\x12maintenance_policy\x18\x04 \x01(\x0b\x32&.google.container.v1.MaintenancePolicyB\x03\xe0\x41\x02\x12\x0c\n\x04name\x18\x05 \x01(\t\"\xa9\x02\n\x0fStatusCondition\x12;\n\x04\x63ode\x18\x01 \x01(\x0e\x32).google.container.v1.StatusCondition.CodeB\x02\x18\x01\x12\x0f\n\x07message\x18\x02 \x01(\t\x12(\n\x0e\x63\x61nonical_code\x18\x03 \x01(\x0e\x32\x10.google.rpc.Code\"\x9d\x01\n\x04\x43ode\x12\x0b\n\x07UNKNOWN\x10\x00\x12\x10\n\x0cGCE_STOCKOUT\x10\x01\x12\x1f\n\x1bGKE_SERVICE_ACCOUNT_DELETED\x10\x02\x12\x16\n\x12GCE_QUOTA_EXCEEDED\x10\x03\x12\x13\n\x0fSET_BY_OPERATOR\x10\x04\x12\x17\n\x13\x43LOUD_KMS_KEY_ERROR\x10\x07\x12\x0f\n\x0b\x43\x41_EXPIRING\x10\t\"\x87\n\n\rNetworkConfig\x12\x14\n\x07network\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x17\n\nsubnetwork\x18\x02 \x01(\tB\x03\xe0\x41\x03\x12$\n\x1c\x65nable_intra_node_visibility\x18\x05 \x01(\x08\x12\x43\n\x13\x64\x65\x66\x61ult_snat_status\x18\x07 \x01(\x0b\x32&.google.container.v1.DefaultSnatStatus\x12\x1f\n\x17\x65nable_l4ilb_subsetting\x18\n \x01(\x08\x12@\n\x11\x64\x61tapath_provider\x18\x0b \x01(\x0e\x32%.google.container.v1.DatapathProvider\x12P\n\x1aprivate_ipv6_google_access\x18\x0c \x01(\x0e\x32,.google.container.v1.PrivateIPv6GoogleAccess\x12\x32\n\ndns_config\x18\r \x01(\x0b\x32\x1e.google.container.v1.DNSConfig\x12R\n\x1bservice_external_ips_config\x18\x0f \x01(\x0b\x32-.google.container.v1.ServiceExternalIPsConfig\x12\x41\n\x12gateway_api_config\x18\x10 \x01(\x0b\x32%.google.container.v1.GatewayAPIConfig\x12\x1f\n\x17\x65nable_multi_networking\x18\x11 \x01(\x08\x12\x66\n\x1anetwork_performance_config\x18\x12 \x01(\x0b\x32\x42.google.container.v1.NetworkConfig.ClusterNetworkPerformanceConfig\x12\'\n\x1a\x65nable_fqdn_network_policy\x18\x13 \x01(\x08H\x00\x88\x01\x01\x12Y\n\x1cin_transit_encryption_config\x18\x14 \x01(\x0e\x32..google.container.v1.InTransitEncryptionConfigH\x01\x88\x01\x01\x12\x35\n(enable_cilium_clusterwide_network_policy\x18\x15 \x01(\x08H\x02\x88\x01\x01\x12)\n\x1c\x64\x65\x66\x61ult_enable_private_nodes\x18\x16 \x01(\x08H\x03\x88\x01\x01\x1a\xde\x01\n\x1f\x43lusterNetworkPerformanceConfig\x12q\n\x1btotal_egress_bandwidth_tier\x18\x01 \x01(\x0e\x32G.google.container.v1.NetworkConfig.ClusterNetworkPerformanceConfig.TierH\x00\x88\x01\x01\"(\n\x04Tier\x12\x14\n\x10TIER_UNSPECIFIED\x10\x00\x12\n\n\x06TIER_1\x10\x01\x42\x1e\n\x1c_total_egress_bandwidth_tierB\x1d\n\x1b_enable_fqdn_network_policyB\x1f\n\x1d_in_transit_encryption_configB+\n)_enable_cilium_clusterwide_network_policyB\x1f\n\x1d_default_enable_private_nodes\"\xc0\x01\n\x10GatewayAPIConfig\x12>\n\x07\x63hannel\x18\x01 \x01(\x0e\x32-.google.container.v1.GatewayAPIConfig.Channel\"l\n\x07\x43hannel\x12\x17\n\x13\x43HANNEL_UNSPECIFIED\x10\x00\x12\x14\n\x10\x43HANNEL_DISABLED\x10\x01\x12\x1c\n\x14\x43HANNEL_EXPERIMENTAL\x10\x03\x1a\x02\x08\x01\x12\x14\n\x10\x43HANNEL_STANDARD\x10\x04\"+\n\x18ServiceExternalIPsConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\"(\n\x16GetOpenIDConfigRequest\x12\x0e\n\x06parent\x18\x01 \x01(\t\"\xdc\x01\n\x17GetOpenIDConfigResponse\x12\x0e\n\x06issuer\x18\x01 \x01(\t\x12\x10\n\x08jwks_uri\x18\x02 \x01(\t\x12 \n\x18response_types_supported\x18\x03 \x03(\t\x12\x1f\n\x17subject_types_supported\x18\x04 \x03(\t\x12-\n%id_token_signing_alg_values_supported\x18\x05 \x03(\t\x12\x18\n\x10\x63laims_supported\x18\x06 \x03(\t\x12\x13\n\x0bgrant_types\x18\x07 \x03(\t\"\'\n\x15GetJSONWebKeysRequest\x12\x0e\n\x06parent\x18\x01 \x01(\t\"r\n\x03Jwk\x12\x0b\n\x03kty\x18\x01 \x01(\t\x12\x0b\n\x03\x61lg\x18\x02 \x01(\t\x12\x0b\n\x03use\x18\x03 \x01(\t\x12\x0b\n\x03kid\x18\x04 \x01(\t\x12\t\n\x01n\x18\x05 \x01(\t\x12\t\n\x01\x65\x18\x06 \x01(\t\x12\t\n\x01x\x18\x07 \x01(\t\x12\t\n\x01y\x18\x08 \x01(\t\x12\x0b\n\x03\x63rv\x18\t \x01(\t\"@\n\x16GetJSONWebKeysResponse\x12&\n\x04keys\x18\x01 \x03(\x0b\x32\x18.google.container.v1.Jwk\"2\n\"CheckAutopilotCompatibilityRequest\x12\x0c\n\x04name\x18\x01 \x01(\t\"\xfc\x02\n\x1b\x41utopilotCompatibilityIssue\x12\x34\n\x10last_observation\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x17\n\x0f\x63onstraint_type\x18\x02 \x01(\t\x12X\n\x14incompatibility_type\x18\x03 \x01(\x0e\x32:.google.container.v1.AutopilotCompatibilityIssue.IssueType\x12\x10\n\x08subjects\x18\x04 \x03(\t\x12\x19\n\x11\x64ocumentation_url\x18\x05 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x06 \x01(\t\"r\n\tIssueType\x12\x0f\n\x0bUNSPECIFIED\x10\x00\x12\x13\n\x0fINCOMPATIBILITY\x10\x01\x12\x1e\n\x1a\x41\x44\x44ITIONAL_CONFIG_REQUIRED\x10\x02\x12\x1f\n\x1bPASSED_WITH_OPTIONAL_CONFIG\x10\x03\"x\n#CheckAutopilotCompatibilityResponse\x12@\n\x06issues\x18\x01 \x03(\x0b\x32\x30.google.container.v1.AutopilotCompatibilityIssue\x12\x0f\n\x07summary\x18\x02 \x01(\t\"\x9c\x01\n\x0eReleaseChannel\x12<\n\x07\x63hannel\x18\x01 \x01(\x0e\x32+.google.container.v1.ReleaseChannel.Channel\"L\n\x07\x43hannel\x12\x0f\n\x0bUNSPECIFIED\x10\x00\x12\t\n\x05RAPID\x10\x01\x12\x0b\n\x07REGULAR\x10\x02\x12\n\n\x06STABLE\x10\x03\x12\x0c\n\x08\x45XTENDED\x10\x04\"\'\n\x14\x43ostManagementConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\",\n\x19IntraNodeVisibilityConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\"&\n\x13ILBSubsettingConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\"\xf7\x02\n\tDNSConfig\x12<\n\x0b\x63luster_dns\x18\x01 \x01(\x0e\x32\'.google.container.v1.DNSConfig.Provider\x12\x42\n\x11\x63luster_dns_scope\x18\x02 \x01(\x0e\x32\'.google.container.v1.DNSConfig.DNSScope\x12\x1a\n\x12\x63luster_dns_domain\x18\x03 \x01(\t\x12*\n\x1d\x61\x64\x64itive_vpc_scope_dns_domain\x18\x05 \x01(\tB\x03\xe0\x41\x01\"W\n\x08Provider\x12\x18\n\x14PROVIDER_UNSPECIFIED\x10\x00\x12\x14\n\x10PLATFORM_DEFAULT\x10\x01\x12\r\n\tCLOUD_DNS\x10\x02\x12\x0c\n\x08KUBE_DNS\x10\x03\"G\n\x08\x44NSScope\x12\x19\n\x15\x44NS_SCOPE_UNSPECIFIED\x10\x00\x12\x11\n\rCLUSTER_SCOPE\x10\x01\x12\r\n\tVPC_SCOPE\x10\x02\".\n\x11MaxPodsConstraint\x12\x19\n\x11max_pods_per_node\x18\x01 \x01(\x03\"/\n\x16WorkloadIdentityConfig\x12\x15\n\rworkload_pool\x18\x02 \x01(\t\"(\n\x15IdentityServiceConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\"K\n\x10MeshCertificates\x12\x37\n\x13\x65nable_certificates\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\"\xe3\x05\n\x12\x44\x61tabaseEncryption\x12\x10\n\x08key_name\x18\x01 \x01(\t\x12<\n\x05state\x18\x02 \x01(\x0e\x32-.google.container.v1.DatabaseEncryption.State\x12U\n\rcurrent_state\x18\x03 \x01(\x0e\x32\x34.google.container.v1.DatabaseEncryption.CurrentStateB\x03\xe0\x41\x03H\x00\x88\x01\x01\x12\x1c\n\x0f\x64\x65\x63ryption_keys\x18\x04 \x03(\tB\x03\xe0\x41\x03\x12Z\n\x15last_operation_errors\x18\x05 \x03(\x0b\x32\x36.google.container.v1.DatabaseEncryption.OperationErrorB\x03\xe0\x41\x03\x1ah\n\x0eOperationError\x12\x10\n\x08key_name\x18\x01 \x01(\t\x12\x15\n\rerror_message\x18\x02 \x01(\t\x12-\n\ttimestamp\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"2\n\x05State\x12\x0b\n\x07UNKNOWN\x10\x00\x12\r\n\tENCRYPTED\x10\x01\x12\r\n\tDECRYPTED\x10\x02\"\xfb\x01\n\x0c\x43urrentState\x12\x1d\n\x19\x43URRENT_STATE_UNSPECIFIED\x10\x00\x12\x1b\n\x17\x43URRENT_STATE_ENCRYPTED\x10\x07\x12\x1b\n\x17\x43URRENT_STATE_DECRYPTED\x10\x02\x12$\n CURRENT_STATE_ENCRYPTION_PENDING\x10\x03\x12\"\n\x1e\x43URRENT_STATE_ENCRYPTION_ERROR\x10\x04\x12$\n CURRENT_STATE_DECRYPTION_PENDING\x10\x05\x12\"\n\x1e\x43URRENT_STATE_DECRYPTION_ERROR\x10\x06\x42\x10\n\x0e_current_state\"e\n\x1cListUsableSubnetworksRequest\x12\x0e\n\x06parent\x18\x01 \x01(\t\x12\x0e\n\x06\x66ilter\x18\x02 \x01(\t\x12\x11\n\tpage_size\x18\x03 \x01(\x05\x12\x12\n\npage_token\x18\x04 \x01(\t\"t\n\x1dListUsableSubnetworksResponse\x12:\n\x0bsubnetworks\x18\x01 \x03(\x0b\x32%.google.container.v1.UsableSubnetwork\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\x80\x02\n\x1eUsableSubnetworkSecondaryRange\x12\x12\n\nrange_name\x18\x01 \x01(\t\x12\x15\n\rip_cidr_range\x18\x02 \x01(\t\x12J\n\x06status\x18\x03 \x01(\x0e\x32:.google.container.v1.UsableSubnetworkSecondaryRange.Status\"g\n\x06Status\x12\x0b\n\x07UNKNOWN\x10\x00\x12\n\n\x06UNUSED\x10\x01\x12\x12\n\x0eIN_USE_SERVICE\x10\x02\x12\x18\n\x14IN_USE_SHAREABLE_POD\x10\x03\x12\x16\n\x12IN_USE_MANAGED_POD\x10\x04\"\xb8\x01\n\x10UsableSubnetwork\x12\x12\n\nsubnetwork\x18\x01 \x01(\t\x12\x0f\n\x07network\x18\x02 \x01(\t\x12\x15\n\rip_cidr_range\x18\x03 \x01(\t\x12P\n\x13secondary_ip_ranges\x18\x04 \x03(\x0b\x32\x33.google.container.v1.UsableSubnetworkSecondaryRange\x12\x16\n\x0estatus_message\x18\x05 \x01(\t\"\xed\x02\n\x19ResourceUsageExportConfig\x12`\n\x14\x62igquery_destination\x18\x01 \x01(\x0b\x32\x42.google.container.v1.ResourceUsageExportConfig.BigQueryDestination\x12&\n\x1e\x65nable_network_egress_metering\x18\x02 \x01(\x08\x12m\n\x1b\x63onsumption_metering_config\x18\x03 \x01(\x0b\x32H.google.container.v1.ResourceUsageExportConfig.ConsumptionMeteringConfig\x1a)\n\x13\x42igQueryDestination\x12\x12\n\ndataset_id\x18\x01 \x01(\t\x1a,\n\x19\x43onsumptionMeteringConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\")\n\x16VerticalPodAutoscaling\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\"%\n\x11\x44\x65\x66\x61ultSnatStatus\x12\x10\n\x08\x64isabled\x18\x01 \x01(\x08\" \n\rShieldedNodes\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\"\x1d\n\nVirtualNIC\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\"\x1d\n\nFastSocket\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\"\xa8\x03\n\x12NotificationConfig\x12>\n\x06pubsub\x18\x01 \x01(\x0b\x32..google.container.v1.NotificationConfig.PubSub\x1a\x8a\x01\n\x06PubSub\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\x12/\n\x05topic\x18\x02 \x01(\tB \xfa\x41\x1d\n\x1bpubsub.googleapis.com/Topic\x12>\n\x06\x66ilter\x18\x03 \x01(\x0b\x32..google.container.v1.NotificationConfig.Filter\x1aO\n\x06\x46ilter\x12\x45\n\nevent_type\x18\x01 \x03(\x0e\x32\x31.google.container.v1.NotificationConfig.EventType\"t\n\tEventType\x12\x1a\n\x16\x45VENT_TYPE_UNSPECIFIED\x10\x00\x12\x1b\n\x17UPGRADE_AVAILABLE_EVENT\x10\x01\x12\x11\n\rUPGRADE_EVENT\x10\x02\x12\x1b\n\x17SECURITY_BULLETIN_EVENT\x10\x03\"$\n\x11\x43onfidentialNodes\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\"\xdf\x01\n\x0cUpgradeEvent\x12?\n\rresource_type\x18\x01 \x01(\x0e\x32(.google.container.v1.UpgradeResourceType\x12\x11\n\toperation\x18\x02 \x01(\t\x12\x38\n\x14operation_start_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x17\n\x0f\x63urrent_version\x18\x04 \x01(\t\x12\x16\n\x0etarget_version\x18\x05 \x01(\t\x12\x10\n\x08resource\x18\x06 \x01(\t\"\xb9\x01\n\x15UpgradeAvailableEvent\x12\x0f\n\x07version\x18\x01 \x01(\t\x12?\n\rresource_type\x18\x02 \x01(\x0e\x32(.google.container.v1.UpgradeResourceType\x12<\n\x0frelease_channel\x18\x03 \x01(\x0b\x32#.google.container.v1.ReleaseChannel\x12\x10\n\x08resource\x18\x04 \x01(\t\"\x9e\x02\n\x15SecurityBulletinEvent\x12\x1e\n\x16resource_type_affected\x18\x01 \x01(\t\x12\x13\n\x0b\x62ulletin_id\x18\x02 \x01(\t\x12\x0f\n\x07\x63ve_ids\x18\x03 \x03(\t\x12\x10\n\x08severity\x18\x04 \x01(\t\x12\x14\n\x0c\x62ulletin_uri\x18\x05 \x01(\t\x12\x19\n\x11\x62rief_description\x18\x06 \x01(\t\x12!\n\x19\x61\x66\x66\x65\x63ted_supported_minors\x18\x07 \x03(\t\x12\x18\n\x10patched_versions\x18\x08 \x03(\t\x12 \n\x18suggested_upgrade_target\x18\t \x01(\t\x12\x1d\n\x15manual_steps_required\x18\n \x01(\x08\"g\n\tAutopilot\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\x12I\n\x16workload_policy_config\x18\x02 \x01(\x0b\x32).google.container.v1.WorkloadPolicyConfig\"H\n\x14WorkloadPolicyConfig\x12\x1c\n\x0f\x61llow_net_admin\x18\x01 \x01(\x08H\x00\x88\x01\x01\x42\x12\n\x10_allow_net_admin\"V\n\rLoggingConfig\x12\x45\n\x10\x63omponent_config\x18\x01 \x01(\x0b\x32+.google.container.v1.LoggingComponentConfig\"\x91\x02\n\x16LoggingComponentConfig\x12P\n\x11\x65nable_components\x18\x01 \x03(\x0e\x32\x35.google.container.v1.LoggingComponentConfig.Component\"\xa4\x01\n\tComponent\x12\x19\n\x15\x43OMPONENT_UNSPECIFIED\x10\x00\x12\x15\n\x11SYSTEM_COMPONENTS\x10\x01\x12\r\n\tWORKLOADS\x10\x02\x12\r\n\tAPISERVER\x10\x03\x12\r\n\tSCHEDULER\x10\x04\x12\x16\n\x12\x43ONTROLLER_MANAGER\x10\x05\x12\x0c\n\x08KCP_SSHD\x10\x07\x12\x12\n\x0eKCP_CONNECTION\x10\x08\"*\n\x17RayClusterLoggingConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\"\x97\x02\n\x10MonitoringConfig\x12H\n\x10\x63omponent_config\x18\x01 \x01(\x0b\x32..google.container.v1.MonitoringComponentConfig\x12O\n\x19managed_prometheus_config\x18\x02 \x01(\x0b\x32,.google.container.v1.ManagedPrometheusConfig\x12h\n&advanced_datapath_observability_config\x18\x03 \x01(\x0b\x32\x38.google.container.v1.AdvancedDatapathObservabilityConfig\"\x9e\x02\n#AdvancedDatapathObservabilityConfig\x12\x16\n\x0e\x65nable_metrics\x18\x01 \x01(\x08\x12V\n\nrelay_mode\x18\x02 \x01(\x0e\x32\x42.google.container.v1.AdvancedDatapathObservabilityConfig.RelayMode\x12\x19\n\x0c\x65nable_relay\x18\x03 \x01(\x08H\x00\x88\x01\x01\"[\n\tRelayMode\x12\x1a\n\x16RELAY_MODE_UNSPECIFIED\x10\x00\x12\x0c\n\x08\x44ISABLED\x10\x01\x12\x13\n\x0fINTERNAL_VPC_LB\x10\x03\x12\x0f\n\x0b\x45XTERNAL_LB\x10\x04\x42\x0f\n\r_enable_relay\"-\n\x1aRayClusterMonitoringConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\"Z\n\x15NodePoolLoggingConfig\x12\x41\n\x0evariant_config\x18\x01 \x01(\x0b\x32).google.container.v1.LoggingVariantConfig\"\x9f\x01\n\x14LoggingVariantConfig\x12\x42\n\x07variant\x18\x01 \x01(\x0e\x32\x31.google.container.v1.LoggingVariantConfig.Variant\"C\n\x07Variant\x12\x17\n\x13VARIANT_UNSPECIFIED\x10\x00\x12\x0b\n\x07\x44\x45\x46\x41ULT\x10\x01\x12\x12\n\x0eMAX_THROUGHPUT\x10\x02\"\xda\x02\n\x19MonitoringComponentConfig\x12S\n\x11\x65nable_components\x18\x01 \x03(\x0e\x32\x38.google.container.v1.MonitoringComponentConfig.Component\"\xe7\x01\n\tComponent\x12\x19\n\x15\x43OMPONENT_UNSPECIFIED\x10\x00\x12\x15\n\x11SYSTEM_COMPONENTS\x10\x01\x12\r\n\tAPISERVER\x10\x03\x12\r\n\tSCHEDULER\x10\x04\x12\x16\n\x12\x43ONTROLLER_MANAGER\x10\x05\x12\x0b\n\x07STORAGE\x10\x07\x12\x07\n\x03HPA\x10\x08\x12\x07\n\x03POD\x10\t\x12\r\n\tDAEMONSET\x10\n\x12\x0e\n\nDEPLOYMENT\x10\x0b\x12\x0f\n\x0bSTATEFULSET\x10\x0c\x12\x0c\n\x08\x43\x41\x44VISOR\x10\r\x12\x0b\n\x07KUBELET\x10\x0e\x12\x08\n\x04\x44\x43GM\x10\x0f\"*\n\x17ManagedPrometheusConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\"N\n\x05\x46leet\x12\x0f\n\x07project\x18\x01 \x01(\t\x12\x17\n\nmembership\x18\x02 \x01(\tB\x03\xe0\x41\x03\x12\x1b\n\x0epre_registered\x18\x03 \x01(\x08\x42\x03\xe0\x41\x03\"\xac\x05\n\x1b\x43ontrolPlaneEndpointsConfig\x12_\n\x13\x64ns_endpoint_config\x18\x01 \x01(\x0b\x32\x42.google.container.v1.ControlPlaneEndpointsConfig.DNSEndpointConfig\x12_\n\x13ip_endpoints_config\x18\x03 \x01(\x0b\x32\x42.google.container.v1.ControlPlaneEndpointsConfig.IPEndpointsConfig\x1aj\n\x11\x44NSEndpointConfig\x12\x15\n\x08\x65ndpoint\x18\x02 \x01(\tB\x03\xe0\x41\x03\x12#\n\x16\x61llow_external_traffic\x18\x03 \x01(\x08H\x00\x88\x01\x01\x42\x19\n\x17_allow_external_traffic\x1a\xde\x02\n\x11IPEndpointsConfig\x12\x14\n\x07\x65nabled\x18\x01 \x01(\x08H\x00\x88\x01\x01\x12#\n\x16\x65nable_public_endpoint\x18\x02 \x01(\x08H\x01\x88\x01\x01\x12\x1a\n\rglobal_access\x18\x03 \x01(\x08H\x02\x88\x01\x01\x12W\n\x1a\x61uthorized_networks_config\x18\x04 \x01(\x0b\x32\x33.google.container.v1.MasterAuthorizedNetworksConfig\x12\x1c\n\x0fpublic_endpoint\x18\x05 \x01(\tB\x03\xe0\x41\x03\x12\x1d\n\x10private_endpoint\x18\x06 \x01(\tB\x03\xe0\x41\x03\x12#\n\x1bprivate_endpoint_subnetwork\x18\x07 \x01(\tB\n\n\x08_enabledB\x19\n\x17_enable_public_endpointB\x10\n\x0e_global_access\"2\n\x17LocalNvmeSsdBlockConfig\x12\x17\n\x0flocal_ssd_count\x18\x01 \x01(\x05\"9\n\x1e\x45phemeralStorageLocalSsdConfig\x12\x17\n\x0flocal_ssd_count\x18\x01 \x01(\x05\"\x84\x01\n\x13ResourceManagerTags\x12@\n\x04tags\x18\x01 \x03(\x0b\x32\x32.google.container.v1.ResourceManagerTags.TagsEntry\x1a+\n\tTagsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xab\x01\n\x10\x45nterpriseConfig\x12L\n\x0c\x63luster_tier\x18\x01 \x01(\x0e\x32\x31.google.container.v1.EnterpriseConfig.ClusterTierB\x03\xe0\x41\x03\"I\n\x0b\x43lusterTier\x12\x1c\n\x18\x43LUSTER_TIER_UNSPECIFIED\x10\x00\x12\x0c\n\x08STANDARD\x10\x01\x12\x0e\n\nENTERPRISE\x10\x02\"7\n\x13SecretManagerConfig\x12\x14\n\x07\x65nabled\x18\x01 \x01(\x08H\x00\x88\x01\x01\x42\n\n\x08_enabled\"\x9b\x01\n\x11SecondaryBootDisk\x12\x39\n\x04mode\x18\x01 \x01(\x0e\x32+.google.container.v1.SecondaryBootDisk.Mode\x12\x12\n\ndisk_image\x18\x02 \x01(\t\"7\n\x04Mode\x12\x14\n\x10MODE_UNSPECIFIED\x10\x00\x12\x19\n\x15\x43ONTAINER_IMAGE_CACHE\x10\x01\"!\n\x1fSecondaryBootDiskUpdateStrategy*\xc6\x01\n\x17PrivateIPv6GoogleAccess\x12*\n&PRIVATE_IPV6_GOOGLE_ACCESS_UNSPECIFIED\x10\x00\x12\'\n#PRIVATE_IPV6_GOOGLE_ACCESS_DISABLED\x10\x01\x12(\n$PRIVATE_IPV6_GOOGLE_ACCESS_TO_GOOGLE\x10\x02\x12,\n(PRIVATE_IPV6_GOOGLE_ACCESS_BIDIRECTIONAL\x10\x03*W\n\x13UpgradeResourceType\x12%\n!UPGRADE_RESOURCE_TYPE_UNSPECIFIED\x10\x00\x12\n\n\x06MASTER\x10\x01\x12\r\n\tNODE_POOL\x10\x02*a\n\x10\x44\x61tapathProvider\x12!\n\x1d\x44\x41TAPATH_PROVIDER_UNSPECIFIED\x10\x00\x12\x13\n\x0fLEGACY_DATAPATH\x10\x01\x12\x15\n\x11\x41\x44VANCED_DATAPATH\x10\x02*^\n\x16NodePoolUpdateStrategy\x12)\n%NODE_POOL_UPDATE_STRATEGY_UNSPECIFIED\x10\x00\x12\x0e\n\nBLUE_GREEN\x10\x02\x12\t\n\x05SURGE\x10\x03*@\n\tStackType\x12\x1a\n\x16STACK_TYPE_UNSPECIFIED\x10\x00\x12\x08\n\x04IPV4\x10\x01\x12\r\n\tIPV4_IPV6\x10\x02*N\n\x0eIPv6AccessType\x12 \n\x1cIPV6_ACCESS_TYPE_UNSPECIFIED\x10\x00\x12\x0c\n\x08INTERNAL\x10\x01\x12\x0c\n\x08\x45XTERNAL\x10\x02*\x9f\x01\n\x19InTransitEncryptionConfig\x12,\n(IN_TRANSIT_ENCRYPTION_CONFIG_UNSPECIFIED\x10\x00\x12\"\n\x1eIN_TRANSIT_ENCRYPTION_DISABLED\x10\x01\x12\x30\n,IN_TRANSIT_ENCRYPTION_INTER_NODE_TRANSPARENT\x10\x02\x32\xb2I\n\x0e\x43lusterManager\x12\xe8\x01\n\x0cListClusters\x12(.google.container.v1.ListClustersRequest\x1a).google.container.v1.ListClustersResponse\"\x82\x01\xda\x41\x0fproject_id,zone\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x61\x12,/v1/{parent=projects/*/locations/*}/clustersZ1\x12//v1/projects/{project_id}/zones/{zone}/clusters\x12\xed\x01\n\nGetCluster\x12&.google.container.v1.GetClusterRequest\x1a\x1c.google.container.v1.Cluster\"\x98\x01\xda\x41\x1aproject_id,zone,cluster_id\xda\x41\x04name\x82\xd3\xe4\x93\x02n\x12,/v1/{name=projects/*/locations/*/clusters/*}Z>\x12</v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}\x12\xf5\x01\n\rCreateCluster\x12).google.container.v1.CreateClusterRequest\x1a\x1e.google.container.v1.Operation\"\x98\x01\xda\x41\x17project_id,zone,cluster\xda\x41\x0eparent,cluster\x82\xd3\xe4\x93\x02g\",/v1/{parent=projects/*/locations/*}/clusters:\x01*Z4\"//v1/projects/{project_id}/zones/{zone}/clusters:\x01*\x12\x89\x02\n\rUpdateCluster\x12).google.container.v1.UpdateClusterRequest\x1a\x1e.google.container.v1.Operation\"\xac\x01\xda\x41!project_id,zone,cluster_id,update\xda\x41\x0bname,update\x82\xd3\xe4\x93\x02t\x1a,/v1/{name=projects/*/locations/*/clusters/*}:\x01*ZA\x1a</v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}:\x01*\x12\x86\x02\n\x0eUpdateNodePool\x12*.google.container.v1.UpdateNodePoolRequest\x1a\x1e.google.container.v1.Operation\"\xa7\x01\x82\xd3\xe4\x93\x02\xa0\x01\x1a\x38/v1/{name=projects/*/locations/*/clusters/*/nodePools/*}:\x01*Za\"\\/v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}/nodePools/{node_pool_id}/update:\x01*\x12\xaa\x02\n\x16SetNodePoolAutoscaling\x12\x32.google.container.v1.SetNodePoolAutoscalingRequest\x1a\x1e.google.container.v1.Operation\"\xbb\x01\x82\xd3\xe4\x93\x02\xb4\x01\"G/v1/{name=projects/*/locations/*/clusters/*/nodePools/*}:setAutoscaling:\x01*Zf\"a/v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}/nodePools/{node_pool_id}/autoscaling:\x01*\x12\xb7\x02\n\x11SetLoggingService\x12-.google.container.v1.SetLoggingServiceRequest\x1a\x1e.google.container.v1.Operation\"\xd2\x01\xda\x41*project_id,zone,cluster_id,logging_service\xda\x41\x14name,logging_service\x82\xd3\xe4\x93\x02\x87\x01\"7/v1/{name=projects/*/locations/*/clusters/*}:setLogging:\x01*ZI\"D/v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}/logging:\x01*\x12\xc9\x02\n\x14SetMonitoringService\x12\x30.google.container.v1.SetMonitoringServiceRequest\x1a\x1e.google.container.v1.Operation\"\xde\x01\xda\x41-project_id,zone,cluster_id,monitoring_service\xda\x41\x17name,monitoring_service\x82\xd3\xe4\x93\x02\x8d\x01\":/v1/{name=projects/*/locations/*/clusters/*}:setMonitoring:\x01*ZL\"G/v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}/monitoring:\x01*\x12\xad\x02\n\x0fSetAddonsConfig\x12+.google.container.v1.SetAddonsConfigRequest\x1a\x1e.google.container.v1.Operation\"\xcc\x01\xda\x41(project_id,zone,cluster_id,addons_config\xda\x41\x12name,addons_config\x82\xd3\xe4\x93\x02\x85\x01\"6/v1/{name=projects/*/locations/*/clusters/*}:setAddons:\x01*ZH\"C/v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}/addons:\x01*\x12\xa8\x02\n\x0cSetLocations\x12(.google.container.v1.SetLocationsRequest\x1a\x1e.google.container.v1.Operation\"\xcd\x01\x88\x02\x01\xda\x41$project_id,zone,cluster_id,locations\xda\x41\x0ename,locations\x82\xd3\xe4\x93\x02\x8b\x01\"9/v1/{name=projects/*/locations/*/clusters/*}:setLocations:\x01*ZK\"F/v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}/locations:\x01*\x12\xac\x02\n\x0cUpdateMaster\x12(.google.container.v1.UpdateMasterRequest\x1a\x1e.google.container.v1.Operation\"\xd1\x01\xda\x41)project_id,zone,cluster_id,master_version\xda\x41\x13name,master_version\x82\xd3\xe4\x93\x02\x88\x01\"9/v1/{name=projects/*/locations/*/clusters/*}:updateMaster:\x01*ZH\"C/v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}/master:\x01*\x12\xf4\x01\n\rSetMasterAuth\x12).google.container.v1.SetMasterAuthRequest\x1a\x1e.google.container.v1.Operation\"\x97\x01\x82\xd3\xe4\x93\x02\x90\x01\":/v1/{name=projects/*/locations/*/clusters/*}:setMasterAuth:\x01*ZO\"J/v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}:setMasterAuth:\x01*\x12\xf5\x01\n\rDeleteCluster\x12).google.container.v1.DeleteClusterRequest\x1a\x1e.google.container.v1.Operation\"\x98\x01\xda\x41\x1aproject_id,zone,cluster_id\xda\x41\x04name\x82\xd3\xe4\x93\x02n*,/v1/{name=projects/*/locations/*/clusters/*}Z>*</v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}\x12\xf2\x01\n\x0eListOperations\x12*.google.container.v1.ListOperationsRequest\x1a+.google.container.v1.ListOperationsResponse\"\x86\x01\xda\x41\x0fproject_id,zone\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x65\x12./v1/{parent=projects/*/locations/*}/operationsZ3\x12\x31/v1/projects/{project_id}/zones/{zone}/operations\x12\xfb\x01\n\x0cGetOperation\x12(.google.container.v1.GetOperationRequest\x1a\x1e.google.container.v1.Operation\"\xa0\x01\xda\x41\x1cproject_id,zone,operation_id\xda\x41\x04name\x82\xd3\xe4\x93\x02t\x12./v1/{name=projects/*/locations/*/operations/*}ZB\x12@/v1/projects/{project_id}/zones/{zone}/operations/{operation_id}\x12\x8e\x02\n\x0f\x43\x61ncelOperation\x12+.google.container.v1.CancelOperationRequest\x1a\x16.google.protobuf.Empty\"\xb5\x01\xda\x41\x1cproject_id,zone,operation_id\xda\x41\x04name\x82\xd3\xe4\x93\x02\x88\x01\"5/v1/{name=projects/*/locations/*/operations/*}:cancel:\x01*ZL\"G/v1/projects/{project_id}/zones/{zone}/operations/{operation_id}:cancel:\x01*\x12\xea\x01\n\x0fGetServerConfig\x12+.google.container.v1.GetServerConfigRequest\x1a!.google.container.v1.ServerConfig\"\x86\x01\xda\x41\x0fproject_id,zone\xda\x41\x04name\x82\xd3\xe4\x93\x02g\x12./v1/{name=projects/*/locations/*}/serverConfigZ5\x12\x33/v1/projects/{project_id}/zones/{zone}/serverconfig\x12\xa6\x01\n\x0eGetJSONWebKeys\x12*.google.container.v1.GetJSONWebKeysRequest\x1a+.google.container.v1.GetJSONWebKeysResponse\";\x82\xd3\xe4\x93\x02\x35\x12\x33/v1/{parent=projects/*/locations/*/clusters/*}/jwks\x12\x9a\x02\n\rListNodePools\x12).google.container.v1.ListNodePoolsRequest\x1a*.google.container.v1.ListNodePoolsResponse\"\xb1\x01\xda\x41\x1aproject_id,zone,cluster_id\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x84\x01\x12\x38/v1/{parent=projects/*/locations/*/clusters/*}/nodePoolsZH\x12\x46/v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}/nodePools\x12\xa3\x02\n\x0bGetNodePool\x12\'.google.container.v1.GetNodePoolRequest\x1a\x1d.google.container.v1.NodePool\"\xcb\x01\xda\x41\'project_id,zone,cluster_id,node_pool_id\xda\x41\x04name\x82\xd3\xe4\x93\x02\x93\x01\x12\x38/v1/{name=projects/*/locations/*/clusters/*/nodePools/*}ZW\x12U/v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}/nodePools/{node_pool_id}\x12\xaa\x02\n\x0e\x43reateNodePool\x12*.google.container.v1.CreateNodePoolRequest\x1a\x1e.google.container.v1.Operation\"\xcb\x01\xda\x41$project_id,zone,cluster_id,node_pool\xda\x41\x10parent,node_pool\x82\xd3\xe4\x93\x02\x8a\x01\"8/v1/{parent=projects/*/locations/*/clusters/*}/nodePools:\x01*ZK\"F/v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}/nodePools:\x01*\x12\xaa\x02\n\x0e\x44\x65leteNodePool\x12*.google.container.v1.DeleteNodePoolRequest\x1a\x1e.google.container.v1.Operation\"\xcb\x01\xda\x41\'project_id,zone,cluster_id,node_pool_id\xda\x41\x04name\x82\xd3\xe4\x93\x02\x93\x01*8/v1/{name=projects/*/locations/*/clusters/*/nodePools/*}ZW*U/v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}/nodePools/{node_pool_id}\x12\xbb\x01\n\x17\x43ompleteNodePoolUpgrade\x12\x33.google.container.v1.CompleteNodePoolUpgradeRequest\x1a\x16.google.protobuf.Empty\"S\x82\xd3\xe4\x93\x02M\"H/v1/{name=projects/*/locations/*/clusters/*/nodePools/*}:completeUpgrade:\x01*\x12\xd4\x02\n\x17RollbackNodePoolUpgrade\x12\x33.google.container.v1.RollbackNodePoolUpgradeRequest\x1a\x1e.google.container.v1.Operation\"\xe3\x01\xda\x41\'project_id,zone,cluster_id,node_pool_id\xda\x41\x04name\x82\xd3\xe4\x93\x02\xab\x01\"A/v1/{name=projects/*/locations/*/clusters/*/nodePools/*}:rollback:\x01*Zc\"^/v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}/nodePools/{node_pool_id}:rollback:\x01*\x12\xa9\x02\n\x15SetNodePoolManagement\x12\x31.google.container.v1.SetNodePoolManagementRequest\x1a\x1e.google.container.v1.Operation\"\xbc\x01\x82\xd3\xe4\x93\x02\xb5\x01\"F/v1/{name=projects/*/locations/*/clusters/*/nodePools/*}:setManagement:\x01*Zh\"c/v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}/nodePools/{node_pool_id}/setManagement:\x01*\x12\xf1\x01\n\tSetLabels\x12%.google.container.v1.SetLabelsRequest\x1a\x1e.google.container.v1.Operation\"\x9c\x01\x82\xd3\xe4\x93\x02\x95\x01\">/v1/{name=projects/*/locations/*/clusters/*}:setResourceLabels:\x01*ZP\"K/v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}/resourceLabels:\x01*\x12\xa5\x02\n\rSetLegacyAbac\x12).google.container.v1.SetLegacyAbacRequest\x1a\x1e.google.container.v1.Operation\"\xc8\x01\xda\x41\"project_id,zone,cluster_id,enabled\xda\x41\x0cname,enabled\x82\xd3\xe4\x93\x02\x8d\x01\":/v1/{name=projects/*/locations/*/clusters/*}:setLegacyAbac:\x01*ZL\"G/v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}/legacyAbac:\x01*\x12\xa0\x02\n\x0fStartIPRotation\x12+.google.container.v1.StartIPRotationRequest\x1a\x1e.google.container.v1.Operation\"\xbf\x01\xda\x41\x1aproject_id,zone,cluster_id\xda\x41\x04name\x82\xd3\xe4\x93\x02\x94\x01\"</v1/{name=projects/*/locations/*/clusters/*}:startIpRotation:\x01*ZQ\"L/v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}:startIpRotation:\x01*\x12\xac\x02\n\x12\x43ompleteIPRotation\x12..google.container.v1.CompleteIPRotationRequest\x1a\x1e.google.container.v1.Operation\"\xc5\x01\xda\x41\x1aproject_id,zone,cluster_id\xda\x41\x04name\x82\xd3\xe4\x93\x02\x9a\x01\"?/v1/{name=projects/*/locations/*/clusters/*}:completeIpRotation:\x01*ZT\"O/v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}:completeIpRotation:\x01*\x12\x91\x02\n\x0fSetNodePoolSize\x12+.google.container.v1.SetNodePoolSizeRequest\x1a\x1e.google.container.v1.Operation\"\xb0\x01\x82\xd3\xe4\x93\x02\xa9\x01\"@/v1/{name=projects/*/locations/*/clusters/*/nodePools/*}:setSize:\x01*Zb\"]/v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}/nodePools/{node_pool_id}/setSize:\x01*\x12\xc2\x02\n\x10SetNetworkPolicy\x12,.google.container.v1.SetNetworkPolicyRequest\x1a\x1e.google.container.v1.Operation\"\xdf\x01\xda\x41)project_id,zone,cluster_id,network_policy\xda\x41\x13name,network_policy\x82\xd3\xe4\x93\x02\x96\x01\"=/v1/{name=projects/*/locations/*/clusters/*}:setNetworkPolicy:\x01*ZR\"M/v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}:setNetworkPolicy:\x01*\x12\xda\x02\n\x14SetMaintenancePolicy\x12\x30.google.container.v1.SetMaintenancePolicyRequest\x1a\x1e.google.container.v1.Operation\"\xef\x01\xda\x41-project_id,zone,cluster_id,maintenance_policy\xda\x41\x17name,maintenance_policy\x82\xd3\xe4\x93\x02\x9e\x01\"A/v1/{name=projects/*/locations/*/clusters/*}:setMaintenancePolicy:\x01*ZV\"Q/v1/projects/{project_id}/zones/{zone}/clusters/{cluster_id}:setMaintenancePolicy:\x01*\x12\xbc\x01\n\x15ListUsableSubnetworks\x12\x31.google.container.v1.ListUsableSubnetworksRequest\x1a\x32.google.container.v1.ListUsableSubnetworksResponse\"<\x82\xd3\xe4\x93\x02\x36\x12\x34/v1/{parent=projects/*}/aggregated/usableSubnetworks\x12\xe2\x01\n\x1b\x43heckAutopilotCompatibility\x12\x37.google.container.v1.CheckAutopilotCompatibilityRequest\x1a\x38.google.container.v1.CheckAutopilotCompatibilityResponse\"P\x82\xd3\xe4\x93\x02J\x12H/v1/{name=projects/*/locations/*/clusters/*}:checkAutopilotCompatibility\x1aL\xca\x41\x18\x63ontainer.googleapis.com\xd2\x41.https://www.googleapis.com/auth/cloud-platformB\x90\x04\n\x17\x63om.google.container.v1B\x13\x43lusterServiceProtoP\x01Z;cloud.google.com/go/container/apiv1/containerpb;containerpb\xaa\x02\x19Google.Cloud.Container.V1\xca\x02\x19Google\\Cloud\\Container\\V1\xea\x02\x1cGoogle::Cloud::Container::V1\xea\x41@\n\x1bpubsub.googleapis.com/Topic\x12!projects/{project}/topics/{topic}\xea\x41\\\n\x1fprivateca.googleapis.com/CaPool\x12\x39projects/{project}/locations/{location}/caPools/{ca_pool}\xea\x41\xa6\x01\n(cloudkms.googleapis.com/CryptoKeyVersion\x12zprojects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}/cryptoKeyVersions/{crypto_key_version}b\x06proto3"
20
20
 
21
21
  pool = Google::Protobuf::DescriptorPool.generated_pool
22
22
 
@@ -57,6 +57,7 @@ module Google
57
57
  WindowsNodeConfig::OSVersion = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.WindowsNodeConfig.OSVersion").enummodule
58
58
  NodeKubeletConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.NodeKubeletConfig").msgclass
59
59
  NodeConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.NodeConfig").msgclass
60
+ NodeConfig::EffectiveCgroupMode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.NodeConfig.EffectiveCgroupMode").enummodule
60
61
  AdvancedMachineFeatures = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.AdvancedMachineFeatures").msgclass
61
62
  NodeNetworkConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.NodeNetworkConfig").msgclass
62
63
  NodeNetworkConfig::NetworkPerformanceConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.NodeNetworkConfig.NetworkPerformanceConfig").msgclass
@@ -99,6 +100,7 @@ module Google
99
100
  GcePersistentDiskCsiDriverConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.GcePersistentDiskCsiDriverConfig").msgclass
100
101
  GcpFilestoreCsiDriverConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.GcpFilestoreCsiDriverConfig").msgclass
101
102
  GcsFuseCsiDriverConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.GcsFuseCsiDriverConfig").msgclass
103
+ ParallelstoreCsiDriverConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.ParallelstoreCsiDriverConfig").msgclass
102
104
  RayOperatorConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.RayOperatorConfig").msgclass
103
105
  GkeBackupAgentConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.GkeBackupAgentConfig").msgclass
104
106
  StatefulHAConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.StatefulHAConfig").msgclass
@@ -113,6 +115,11 @@ module Google
113
115
  IPAllocationPolicy = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.IPAllocationPolicy").msgclass
114
116
  Cluster = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.Cluster").msgclass
115
117
  Cluster::Status = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.Cluster.Status").enummodule
118
+ RBACBindingConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.RBACBindingConfig").msgclass
119
+ UserManagedKeysConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.UserManagedKeysConfig").msgclass
120
+ CompliancePostureConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.CompliancePostureConfig").msgclass
121
+ CompliancePostureConfig::ComplianceStandard = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.CompliancePostureConfig.ComplianceStandard").msgclass
122
+ CompliancePostureConfig::Mode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.CompliancePostureConfig.Mode").enummodule
116
123
  K8sBetaAPIConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.K8sBetaAPIConfig").msgclass
117
124
  SecurityPostureConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.SecurityPostureConfig").msgclass
118
125
  SecurityPostureConfig::Mode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.SecurityPostureConfig.Mode").enummodule
@@ -270,11 +277,15 @@ module Google
270
277
  MonitoringComponentConfig::Component = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.MonitoringComponentConfig.Component").enummodule
271
278
  ManagedPrometheusConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.ManagedPrometheusConfig").msgclass
272
279
  Fleet = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.Fleet").msgclass
280
+ ControlPlaneEndpointsConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.ControlPlaneEndpointsConfig").msgclass
281
+ ControlPlaneEndpointsConfig::DNSEndpointConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.ControlPlaneEndpointsConfig.DNSEndpointConfig").msgclass
282
+ ControlPlaneEndpointsConfig::IPEndpointsConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.ControlPlaneEndpointsConfig.IPEndpointsConfig").msgclass
273
283
  LocalNvmeSsdBlockConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.LocalNvmeSsdBlockConfig").msgclass
274
284
  EphemeralStorageLocalSsdConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.EphemeralStorageLocalSsdConfig").msgclass
275
285
  ResourceManagerTags = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.ResourceManagerTags").msgclass
276
286
  EnterpriseConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.EnterpriseConfig").msgclass
277
287
  EnterpriseConfig::ClusterTier = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.EnterpriseConfig.ClusterTier").enummodule
288
+ SecretManagerConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.SecretManagerConfig").msgclass
278
289
  SecondaryBootDisk = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.SecondaryBootDisk").msgclass
279
290
  SecondaryBootDisk::Mode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.SecondaryBootDisk.Mode").enummodule
280
291
  SecondaryBootDiskUpdateStrategy = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.SecondaryBootDiskUpdateStrategy").msgclass
@@ -380,9 +380,18 @@ module Google
380
380
  # @!attribute [rw] secondary_boot_disks
381
381
  # @return [::Array<::Google::Cloud::Container::V1::SecondaryBootDisk>]
382
382
  # List of secondary boot disks attached to the nodes.
383
+ # @!attribute [rw] storage_pools
384
+ # @return [::Array<::String>]
385
+ # List of Storage Pools where boot disks are provisioned.
383
386
  # @!attribute [rw] secondary_boot_disk_update_strategy
384
387
  # @return [::Google::Cloud::Container::V1::SecondaryBootDiskUpdateStrategy]
385
388
  # Secondary boot disk update strategy.
389
+ # @!attribute [r] effective_cgroup_mode
390
+ # @return [::Google::Cloud::Container::V1::NodeConfig::EffectiveCgroupMode]
391
+ # Output only. effective_cgroup_mode is the cgroup mode actually used by the
392
+ # node pool. It is determined by the cgroup mode specified in the
393
+ # LinuxNodeConfig or the default cgroup mode based on the cluster creation
394
+ # version.
386
395
  class NodeConfig
387
396
  include ::Google::Protobuf::MessageExts
388
397
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -413,6 +422,21 @@ module Google
413
422
  include ::Google::Protobuf::MessageExts
414
423
  extend ::Google::Protobuf::MessageExts::ClassMethods
415
424
  end
425
+
426
+ # Possible effective cgroup modes for the node.
427
+ module EffectiveCgroupMode
428
+ # EFFECTIVE_CGROUP_MODE_UNSPECIFIED means the cgroup configuration for the
429
+ # node pool is unspecified, i.e. the node pool is a Windows node pool.
430
+ EFFECTIVE_CGROUP_MODE_UNSPECIFIED = 0
431
+
432
+ # CGROUP_MODE_V1 means the node pool is configured to use cgroupv1 for the
433
+ # cgroup configuration.
434
+ EFFECTIVE_CGROUP_MODE_V1 = 1
435
+
436
+ # CGROUP_MODE_V2 means the node pool is configured to use cgroupv2 for the
437
+ # cgroup configuration.
438
+ EFFECTIVE_CGROUP_MODE_V2 = 2
439
+ end
416
440
  end
417
441
 
418
442
  # Specifies options for controlling advanced machine features.
@@ -475,7 +499,7 @@ module Google
475
499
  # @return [::Boolean]
476
500
  # Whether nodes have internal IP addresses only.
477
501
  # If enable_private_nodes is not specified, then the value is derived from
478
- # [cluster.privateClusterConfig.enablePrivateNodes][google.container.v1beta1.PrivateClusterConfig.enablePrivateNodes]
502
+ # [Cluster.NetworkConfig.default_enable_private_nodes][]
479
503
  # @!attribute [rw] network_performance_config
480
504
  # @return [::Google::Cloud::Container::V1::NodeNetworkConfig::NetworkPerformanceConfig]
481
505
  # Network bandwidth tier configuration.
@@ -868,7 +892,8 @@ module Google
868
892
  # @!attribute [r] client_certificate
869
893
  # @return [::String]
870
894
  # Output only. Base64-encoded public certificate used by clients to
871
- # authenticate to the cluster endpoint.
895
+ # authenticate to the cluster endpoint. Issued only if
896
+ # client_certificate_config is set.
872
897
  # @!attribute [r] client_key
873
898
  # @return [::String]
874
899
  # Output only. Base64-encoded private key used by clients to authenticate
@@ -937,6 +962,9 @@ module Google
937
962
  # @!attribute [rw] stateful_ha_config
938
963
  # @return [::Google::Cloud::Container::V1::StatefulHAConfig]
939
964
  # Optional. Configuration for the StatefulHA add-on.
965
+ # @!attribute [rw] parallelstore_csi_driver_config
966
+ # @return [::Google::Cloud::Container::V1::ParallelstoreCsiDriverConfig]
967
+ # Configuration for the Cloud Storage Parallelstore CSI driver.
940
968
  # @!attribute [rw] ray_operator_config
941
969
  # @return [::Google::Cloud::Container::V1::RayOperatorConfig]
942
970
  # Optional. Configuration for Ray Operator addon.
@@ -1010,13 +1038,24 @@ module Google
1010
1038
 
1011
1039
  # Configuration options for private clusters.
1012
1040
  # @!attribute [rw] enable_private_nodes
1041
+ # @deprecated This field is deprecated and may be removed in the next major version update.
1013
1042
  # @return [::Boolean]
1014
1043
  # Whether nodes have internal IP addresses only. If enabled, all nodes are
1015
1044
  # given only RFC 1918 private addresses and communicate with the master via
1016
1045
  # private networking.
1046
+ #
1047
+ # Deprecated: Use
1048
+ # {::Google::Cloud::Container::V1::NetworkConfig#default_enable_private_nodes NetworkConfig.default_enable_private_nodes}
1049
+ # instead.
1017
1050
  # @!attribute [rw] enable_private_endpoint
1051
+ # @deprecated This field is deprecated and may be removed in the next major version update.
1018
1052
  # @return [::Boolean]
1019
1053
  # Whether the master's internal IP address is used as the cluster endpoint.
1054
+ #
1055
+ # Deprecated: Use
1056
+ # {::Google::Cloud::Container::V1::ControlPlaneEndpointsConfig::IPEndpointsConfig#enable_public_endpoint ControlPlaneEndpointsConfig.IPEndpointsConfig.enable_public_endpoint}
1057
+ # instead. Note that the value of enable_public_endpoint is reversed: if
1058
+ # enable_private_endpoint is false, then enable_public_endpoint will be true.
1020
1059
  # @!attribute [rw] master_ipv4_cidr_block
1021
1060
  # @return [::String]
1022
1061
  # The IP range in CIDR notation to use for the hosted master network. This
@@ -1024,21 +1063,41 @@ module Google
1024
1063
  # set of masters, as well as the ILB VIP. This range must not overlap with
1025
1064
  # any other ranges in use within the cluster's network.
1026
1065
  # @!attribute [r] private_endpoint
1066
+ # @deprecated This field is deprecated and may be removed in the next major version update.
1027
1067
  # @return [::String]
1028
1068
  # Output only. The internal IP address of this cluster's master endpoint.
1069
+ #
1070
+ # Deprecated: Use
1071
+ # {::Google::Cloud::Container::V1::ControlPlaneEndpointsConfig::IPEndpointsConfig#private_endpoint ControlPlaneEndpointsConfig.IPEndpointsConfig.private_endpoint}
1072
+ # instead.
1029
1073
  # @!attribute [r] public_endpoint
1074
+ # @deprecated This field is deprecated and may be removed in the next major version update.
1030
1075
  # @return [::String]
1031
1076
  # Output only. The external IP address of this cluster's master endpoint.
1077
+ #
1078
+ # Deprecated:Use
1079
+ # {::Google::Cloud::Container::V1::ControlPlaneEndpointsConfig::IPEndpointsConfig#public_endpoint ControlPlaneEndpointsConfig.IPEndpointsConfig.public_endpoint}
1080
+ # instead.
1032
1081
  # @!attribute [r] peering_name
1033
1082
  # @return [::String]
1034
1083
  # Output only. The peering name in the customer VPC used by this cluster.
1035
1084
  # @!attribute [rw] master_global_access_config
1085
+ # @deprecated This field is deprecated and may be removed in the next major version update.
1036
1086
  # @return [::Google::Cloud::Container::V1::PrivateClusterMasterGlobalAccessConfig]
1037
1087
  # Controls master global access settings.
1088
+ #
1089
+ # Deprecated: Use
1090
+ # [ControlPlaneEndpointsConfig.IPEndpointsConfig.enable_global_access][]
1091
+ # instead.
1038
1092
  # @!attribute [rw] private_endpoint_subnetwork
1093
+ # @deprecated This field is deprecated and may be removed in the next major version update.
1039
1094
  # @return [::String]
1040
1095
  # Subnet to provision the master's private endpoint during cluster creation.
1041
1096
  # Specified in projects/*/regions/*/subnetworks/* format.
1097
+ #
1098
+ # Deprecated: Use
1099
+ # {::Google::Cloud::Container::V1::ControlPlaneEndpointsConfig::IPEndpointsConfig#private_endpoint_subnetwork ControlPlaneEndpointsConfig.IPEndpointsConfig.private_endpoint_subnetwork}
1100
+ # instead.
1042
1101
  class PrivateClusterConfig
1043
1102
  include ::Google::Protobuf::MessageExts
1044
1103
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -1118,6 +1177,16 @@ module Google
1118
1177
  extend ::Google::Protobuf::MessageExts::ClassMethods
1119
1178
  end
1120
1179
 
1180
+ # Configuration for the Cloud Storage Parallelstore CSI driver.
1181
+ # @!attribute [rw] enabled
1182
+ # @return [::Boolean]
1183
+ # Whether the Cloud Storage Parallelstore CSI driver is enabled for this
1184
+ # cluster.
1185
+ class ParallelstoreCsiDriverConfig
1186
+ include ::Google::Protobuf::MessageExts
1187
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1188
+ end
1189
+
1121
1190
  # Configuration options for the Ray Operator add-on.
1122
1191
  # @!attribute [rw] enabled
1123
1192
  # @return [::Boolean]
@@ -1165,6 +1234,9 @@ module Google
1165
1234
  # @!attribute [rw] gcp_public_cidrs_access_enabled
1166
1235
  # @return [::Boolean]
1167
1236
  # Whether master is accessbile via Google Compute Engine Public IP addresses.
1237
+ # @!attribute [rw] private_endpoint_enforcement_enabled
1238
+ # @return [::Boolean]
1239
+ # Whether master authorized networks is enforced on private endpoint or not.
1168
1240
  class MasterAuthorizedNetworksConfig
1169
1241
  include ::Google::Protobuf::MessageExts
1170
1242
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -1556,8 +1628,13 @@ module Google
1556
1628
  # @return [::Google::Cloud::Container::V1::IPAllocationPolicy]
1557
1629
  # Configuration for cluster IP allocation.
1558
1630
  # @!attribute [rw] master_authorized_networks_config
1631
+ # @deprecated This field is deprecated and may be removed in the next major version update.
1559
1632
  # @return [::Google::Cloud::Container::V1::MasterAuthorizedNetworksConfig]
1560
1633
  # The configuration options for master authorized networks feature.
1634
+ #
1635
+ # Deprecated: Use
1636
+ # {::Google::Cloud::Container::V1::ControlPlaneEndpointsConfig::IPEndpointsConfig#authorized_networks_config ControlPlaneEndpointsConfig.IPEndpointsConfig.authorized_networks_config}
1637
+ # instead.
1561
1638
  # @!attribute [rw] maintenance_policy
1562
1639
  # @return [::Google::Cloud::Container::V1::MaintenancePolicy]
1563
1640
  # Configure the maintenance policy for this cluster.
@@ -1754,18 +1831,34 @@ module Google
1754
1831
  # @!attribute [rw] security_posture_config
1755
1832
  # @return [::Google::Cloud::Container::V1::SecurityPostureConfig]
1756
1833
  # Enable/Disable Security Posture API features for the cluster.
1834
+ # @!attribute [rw] control_plane_endpoints_config
1835
+ # @return [::Google::Cloud::Container::V1::ControlPlaneEndpointsConfig]
1836
+ # Configuration for all cluster's control plane endpoints.
1757
1837
  # @!attribute [rw] enable_k8s_beta_apis
1758
1838
  # @return [::Google::Cloud::Container::V1::K8sBetaAPIConfig]
1759
1839
  # Beta APIs Config
1760
1840
  # @!attribute [rw] enterprise_config
1761
1841
  # @return [::Google::Cloud::Container::V1::EnterpriseConfig]
1762
1842
  # GKE Enterprise Configuration.
1843
+ # @!attribute [rw] secret_manager_config
1844
+ # @return [::Google::Cloud::Container::V1::SecretManagerConfig]
1845
+ # Secret CSI driver configuration.
1846
+ # @!attribute [rw] compliance_posture_config
1847
+ # @return [::Google::Cloud::Container::V1::CompliancePostureConfig]
1848
+ # Enable/Disable Compliance Posture features for the cluster.
1763
1849
  # @!attribute [r] satisfies_pzs
1764
1850
  # @return [::Boolean]
1765
1851
  # Output only. Reserved for future use.
1766
1852
  # @!attribute [r] satisfies_pzi
1767
1853
  # @return [::Boolean]
1768
1854
  # Output only. Reserved for future use.
1855
+ # @!attribute [rw] user_managed_keys_config
1856
+ # @return [::Google::Cloud::Container::V1::UserManagedKeysConfig]
1857
+ # The Custom keys configuration for the cluster.
1858
+ # @!attribute [rw] rbac_binding_config
1859
+ # @return [::Google::Cloud::Container::V1::RBACBindingConfig]
1860
+ # RBACBindingConfig allows user to restrict ClusterRoleBindings an
1861
+ # RoleBindings that can be created.
1769
1862
  class Cluster
1770
1863
  include ::Google::Protobuf::MessageExts
1771
1864
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -1809,6 +1902,100 @@ module Google
1809
1902
  end
1810
1903
  end
1811
1904
 
1905
+ # RBACBindingConfig allows user to restrict ClusterRoleBindings an RoleBindings
1906
+ # that can be created.
1907
+ # @!attribute [rw] enable_insecure_binding_system_unauthenticated
1908
+ # @return [::Boolean]
1909
+ # Setting this to true will allow any ClusterRoleBinding and RoleBinding
1910
+ # with subjets system:anonymous or system:unauthenticated.
1911
+ # @!attribute [rw] enable_insecure_binding_system_authenticated
1912
+ # @return [::Boolean]
1913
+ # Setting this to true will allow any ClusterRoleBinding and RoleBinding
1914
+ # with subjects system:authenticated.
1915
+ class RBACBindingConfig
1916
+ include ::Google::Protobuf::MessageExts
1917
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1918
+ end
1919
+
1920
+ # UserManagedKeysConfig holds the resource address to Keys which are used
1921
+ # for signing certs and token that are used for communication within cluster.
1922
+ # @!attribute [rw] cluster_ca
1923
+ # @return [::String]
1924
+ # The Certificate Authority Service caPool to use for the cluster CA in this
1925
+ # cluster.
1926
+ # @!attribute [rw] etcd_api_ca
1927
+ # @return [::String]
1928
+ # Resource path of the Certificate Authority Service caPool to use for the
1929
+ # etcd API CA in this cluster.
1930
+ # @!attribute [rw] etcd_peer_ca
1931
+ # @return [::String]
1932
+ # Resource path of the Certificate Authority Service caPool to use for the
1933
+ # etcd peer CA in this cluster.
1934
+ # @!attribute [rw] service_account_signing_keys
1935
+ # @return [::Array<::String>]
1936
+ # The Cloud KMS cryptoKeyVersions to use for signing service account JWTs
1937
+ # issued by this cluster.
1938
+ #
1939
+ # Format:
1940
+ # `projects/{project}/locations/{location}/keyRings/{keyring}/cryptoKeys/{cryptoKey}/cryptoKeyVersions/{cryptoKeyVersion}`
1941
+ # @!attribute [rw] service_account_verification_keys
1942
+ # @return [::Array<::String>]
1943
+ # The Cloud KMS cryptoKeyVersions to use for verifying service account JWTs
1944
+ # issued by this cluster.
1945
+ #
1946
+ # Format:
1947
+ # `projects/{project}/locations/{location}/keyRings/{keyring}/cryptoKeys/{cryptoKey}/cryptoKeyVersions/{cryptoKeyVersion}`
1948
+ # @!attribute [rw] aggregation_ca
1949
+ # @return [::String]
1950
+ # The Certificate Authority Service caPool to use for the aggregation CA in
1951
+ # this cluster.
1952
+ # @!attribute [rw] control_plane_disk_encryption_key
1953
+ # @return [::String]
1954
+ # The Cloud KMS cryptoKey to use for Confidential Hyperdisk on the control
1955
+ # plane nodes.
1956
+ # @!attribute [rw] gkeops_etcd_backup_encryption_key
1957
+ # @return [::String]
1958
+ # Resource path of the Cloud KMS cryptoKey to use for encryption of internal
1959
+ # etcd backups.
1960
+ class UserManagedKeysConfig
1961
+ include ::Google::Protobuf::MessageExts
1962
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1963
+ end
1964
+
1965
+ # CompliancePostureConfig defines the settings needed to enable/disable
1966
+ # features for the Compliance Posture.
1967
+ # @!attribute [rw] mode
1968
+ # @return [::Google::Cloud::Container::V1::CompliancePostureConfig::Mode]
1969
+ # Defines the enablement mode for Compliance Posture.
1970
+ # @!attribute [rw] compliance_standards
1971
+ # @return [::Array<::Google::Cloud::Container::V1::CompliancePostureConfig::ComplianceStandard>]
1972
+ # List of enabled compliance standards.
1973
+ class CompliancePostureConfig
1974
+ include ::Google::Protobuf::MessageExts
1975
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1976
+
1977
+ # Defines the details of a compliance standard.
1978
+ # @!attribute [rw] standard
1979
+ # @return [::String]
1980
+ # Name of the compliance standard.
1981
+ class ComplianceStandard
1982
+ include ::Google::Protobuf::MessageExts
1983
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1984
+ end
1985
+
1986
+ # Mode defines enablement mode for Compliance Posture.
1987
+ module Mode
1988
+ # Default value not specified.
1989
+ MODE_UNSPECIFIED = 0
1990
+
1991
+ # Disables Compliance Posture features on the cluster.
1992
+ DISABLED = 1
1993
+
1994
+ # Enables Compliance Posture features on the cluster.
1995
+ ENABLED = 2
1996
+ end
1997
+ end
1998
+
1812
1999
  # K8sBetaAPIConfig , configuration for beta APIs
1813
2000
  # @!attribute [rw] enabled_apis
1814
2001
  # @return [::Array<::String>]
@@ -1991,8 +2178,13 @@ module Google
1991
2178
  # Warning: changing cluster locations will update the locations of all node
1992
2179
  # pools and will result in nodes being added and/or removed.
1993
2180
  # @!attribute [rw] desired_master_authorized_networks_config
2181
+ # @deprecated This field is deprecated and may be removed in the next major version update.
1994
2182
  # @return [::Google::Cloud::Container::V1::MasterAuthorizedNetworksConfig]
1995
2183
  # The desired configuration options for master authorized networks feature.
2184
+ #
2185
+ # Deprecated: Use
2186
+ # desired_control_plane_endpoints_config.ip_endpoints_config.authorized_networks_config
2187
+ # instead.
1996
2188
  # @!attribute [rw] desired_cluster_autoscaling
1997
2189
  # @return [::Google::Cloud::Container::V1::ClusterAutoscaling]
1998
2190
  # Cluster-level autoscaling configuration.
@@ -2019,6 +2211,7 @@ module Google
2019
2211
  # @return [::Google::Cloud::Container::V1::VerticalPodAutoscaling]
2020
2212
  # Cluster-level Vertical Pod Autoscaling configuration.
2021
2213
  # @!attribute [rw] desired_private_cluster_config
2214
+ # @deprecated This field is deprecated and may be removed in the next major version update.
2022
2215
  # @return [::Google::Cloud::Container::V1::PrivateClusterConfig]
2023
2216
  # The desired private cluster configuration. master_global_access_config is
2024
2217
  # the only field that can be changed via this field.
@@ -2026,6 +2219,10 @@ module Google
2026
2219
  # {::Google::Cloud::Container::V1::ClusterUpdate#desired_enable_private_endpoint ClusterUpdate.desired_enable_private_endpoint}
2027
2220
  # for modifying other fields within
2028
2221
  # {::Google::Cloud::Container::V1::PrivateClusterConfig PrivateClusterConfig}.
2222
+ #
2223
+ # Deprecated: Use
2224
+ # desired_control_plane_endpoints_config.ip_endpoints_config.global_access
2225
+ # instead.
2029
2226
  # @!attribute [rw] desired_intra_node_visibility_config
2030
2227
  # @return [::Google::Cloud::Container::V1::IntraNodeVisibilityConfig]
2031
2228
  # The desired config of Intra-node visibility.
@@ -2064,8 +2261,24 @@ module Google
2064
2261
  # ServiceExternalIPsConfig specifies the config for the use of Services with
2065
2262
  # ExternalIPs field.
2066
2263
  # @!attribute [rw] desired_enable_private_endpoint
2264
+ # @deprecated This field is deprecated and may be removed in the next major version update.
2067
2265
  # @return [::Boolean]
2068
2266
  # Enable/Disable private endpoint for the cluster's master.
2267
+ #
2268
+ # Deprecated: Use
2269
+ # desired_control_plane_endpoints_config.ip_endpoints_config.enable_public_endpoint
2270
+ # instead. Note that the value of enable_public_endpoint is reversed: if
2271
+ # enable_private_endpoint is false, then enable_public_endpoint will be true.
2272
+ # @!attribute [rw] desired_default_enable_private_nodes
2273
+ # @return [::Boolean]
2274
+ # Override the default setting of whether future created
2275
+ # nodes have private IP addresses only, namely
2276
+ # {::Google::Cloud::Container::V1::NetworkConfig#default_enable_private_nodes NetworkConfig.default_enable_private_nodes}
2277
+ # @!attribute [rw] desired_control_plane_endpoints_config
2278
+ # @return [::Google::Cloud::Container::V1::ControlPlaneEndpointsConfig]
2279
+ # [Control plane
2280
+ # endpoints][google.container.v1.Cluster.control_plane_endpoints_config]
2281
+ # configuration.
2069
2282
  # @!attribute [rw] desired_master_version
2070
2283
  # @return [::String]
2071
2284
  # The Kubernetes version to change the master to.
@@ -2147,6 +2360,12 @@ module Google
2147
2360
  # @!attribute [rw] desired_enable_cilium_clusterwide_network_policy
2148
2361
  # @return [::Boolean]
2149
2362
  # Enable/Disable Cilium Clusterwide Network Policy for the cluster.
2363
+ # @!attribute [rw] desired_secret_manager_config
2364
+ # @return [::Google::Cloud::Container::V1::SecretManagerConfig]
2365
+ # Enable/Disable Secret Manager Config.
2366
+ # @!attribute [rw] desired_compliance_posture_config
2367
+ # @return [::Google::Cloud::Container::V1::CompliancePostureConfig]
2368
+ # Enable/Disable Compliance Posture features for the cluster.
2150
2369
  # @!attribute [rw] desired_node_kubelet_config
2151
2370
  # @return [::Google::Cloud::Container::V1::NodeKubeletConfig]
2152
2371
  # The desired node kubelet config for the cluster.
@@ -2154,6 +2373,13 @@ module Google
2154
2373
  # @return [::Google::Cloud::Container::V1::NodeKubeletConfig]
2155
2374
  # The desired node kubelet config for all auto-provisioned node pools
2156
2375
  # in autopilot clusters and node auto-provisioning enabled clusters.
2376
+ # @!attribute [rw] user_managed_keys_config
2377
+ # @return [::Google::Cloud::Container::V1::UserManagedKeysConfig]
2378
+ # The Custom keys configuration for the cluster.
2379
+ # @!attribute [rw] desired_rbac_binding_config
2380
+ # @return [::Google::Cloud::Container::V1::RBACBindingConfig]
2381
+ # RBACBindingConfig allows user to restrict ClusterRoleBindings an
2382
+ # RoleBindings that can be created.
2157
2383
  class ClusterUpdate
2158
2384
  include ::Google::Protobuf::MessageExts
2159
2385
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -2686,6 +2912,10 @@ module Google
2686
2912
  # @!attribute [rw] queued_provisioning
2687
2913
  # @return [::Google::Cloud::Container::V1::NodePool::QueuedProvisioning]
2688
2914
  # Specifies the configuration of queued provisioning.
2915
+ # @!attribute [rw] storage_pools
2916
+ # @return [::Array<::String>]
2917
+ # List of Storage Pools where boot disks are provisioned.
2918
+ # Existing Storage Pools will be replaced with storage-pools.
2689
2919
  class UpdateNodePoolRequest
2690
2920
  include ::Google::Protobuf::MessageExts
2691
2921
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -3186,6 +3416,9 @@ module Google
3186
3416
  # @!attribute [rw] valid_versions
3187
3417
  # @return [::Array<::String>]
3188
3418
  # List of valid versions for the channel.
3419
+ # @!attribute [rw] upgrade_target_version
3420
+ # @return [::String]
3421
+ # The auto upgrade target version for clusters on the channel.
3189
3422
  class ReleaseChannelConfig
3190
3423
  include ::Google::Protobuf::MessageExts
3191
3424
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -4565,6 +4798,13 @@ module Google
4565
4798
  # @!attribute [rw] enable_cilium_clusterwide_network_policy
4566
4799
  # @return [::Boolean]
4567
4800
  # Whether CiliumClusterwideNetworkPolicy is enabled on this cluster.
4801
+ # @!attribute [rw] default_enable_private_nodes
4802
+ # @return [::Boolean]
4803
+ # Controls whether by default nodes have private IP addresses only.
4804
+ # It is invalid to specify both [PrivateClusterConfig.enablePrivateNodes][]
4805
+ # and this field at the same time.
4806
+ # To update the default setting, use
4807
+ # {::Google::Cloud::Container::V1::ClusterUpdate#desired_default_enable_private_nodes ClusterUpdate.desired_default_enable_private_nodes}
4568
4808
  class NetworkConfig
4569
4809
  include ::Google::Protobuf::MessageExts
4570
4810
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -5436,6 +5676,12 @@ module Google
5436
5676
 
5437
5677
  # kube-controller-manager
5438
5678
  CONTROLLER_MANAGER = 5
5679
+
5680
+ # kcp-sshd
5681
+ KCP_SSHD = 7
5682
+
5683
+ # kcp connection logs
5684
+ KCP_CONNECTION = 8
5439
5685
  end
5440
5686
  end
5441
5687
 
@@ -5620,6 +5866,79 @@ module Google
5620
5866
  extend ::Google::Protobuf::MessageExts::ClassMethods
5621
5867
  end
5622
5868
 
5869
+ # Configuration for all of the cluster's control plane endpoints.
5870
+ # @!attribute [rw] dns_endpoint_config
5871
+ # @return [::Google::Cloud::Container::V1::ControlPlaneEndpointsConfig::DNSEndpointConfig]
5872
+ # DNS endpoint configuration.
5873
+ # @!attribute [rw] ip_endpoints_config
5874
+ # @return [::Google::Cloud::Container::V1::ControlPlaneEndpointsConfig::IPEndpointsConfig]
5875
+ # IP endpoints configuration.
5876
+ class ControlPlaneEndpointsConfig
5877
+ include ::Google::Protobuf::MessageExts
5878
+ extend ::Google::Protobuf::MessageExts::ClassMethods
5879
+
5880
+ # Describes the configuration of a DNS endpoint.
5881
+ # @!attribute [r] endpoint
5882
+ # @return [::String]
5883
+ # Output only. The cluster's DNS endpoint configuration.
5884
+ # A DNS format address. This is accessible from the public internet.
5885
+ # Ex: uid.us-central1.gke.goog.
5886
+ # Always present, but the behavior may change according to the value of
5887
+ # {::Google::Cloud::Container::V1::ControlPlaneEndpointsConfig::DNSEndpointConfig#allow_external_traffic DNSEndpointConfig.allow_external_traffic}.
5888
+ # @!attribute [rw] allow_external_traffic
5889
+ # @return [::Boolean]
5890
+ # Controls whether user traffic is allowed over this endpoint. Note that
5891
+ # GCP-managed services may still use the endpoint even if this is false.
5892
+ class DNSEndpointConfig
5893
+ include ::Google::Protobuf::MessageExts
5894
+ extend ::Google::Protobuf::MessageExts::ClassMethods
5895
+ end
5896
+
5897
+ # IP endpoints configuration.
5898
+ # @!attribute [rw] enabled
5899
+ # @return [::Boolean]
5900
+ # Controls whether to allow direct IP access.
5901
+ # @!attribute [rw] enable_public_endpoint
5902
+ # @return [::Boolean]
5903
+ # Controls whether the control plane allows access through a public IP.
5904
+ # It is invalid to specify both
5905
+ # [PrivateClusterConfig.enablePrivateEndpoint][] and this field at the same
5906
+ # time.
5907
+ # @!attribute [rw] global_access
5908
+ # @return [::Boolean]
5909
+ # Controls whether the control plane's private endpoint is accessible from
5910
+ # sources in other regions.
5911
+ # It is invalid to specify both
5912
+ # {::Google::Cloud::Container::V1::PrivateClusterMasterGlobalAccessConfig#enabled PrivateClusterMasterGlobalAccessConfig.enabled}
5913
+ # and this field at the same time.
5914
+ # @!attribute [rw] authorized_networks_config
5915
+ # @return [::Google::Cloud::Container::V1::MasterAuthorizedNetworksConfig]
5916
+ # Configuration of authorized networks. If enabled, restricts access to the
5917
+ # control plane based on source IP.
5918
+ # It is invalid to specify both
5919
+ # [Cluster.masterAuthorizedNetworksConfig][] and this field at the same
5920
+ # time.
5921
+ # @!attribute [r] public_endpoint
5922
+ # @return [::String]
5923
+ # Output only. The external IP address of this cluster's control plane.
5924
+ # Only populated if enabled.
5925
+ # @!attribute [r] private_endpoint
5926
+ # @return [::String]
5927
+ # Output only. The internal IP address of this cluster's control plane.
5928
+ # Only populated if enabled.
5929
+ # @!attribute [rw] private_endpoint_subnetwork
5930
+ # @return [::String]
5931
+ # Subnet to provision the master's private endpoint during cluster
5932
+ # creation. Specified in projects/*/regions/*/subnetworks/* format. It is
5933
+ # invalid to specify both
5934
+ # [PrivateClusterConfig.privateEndpointSubnetwork][] and this field at the
5935
+ # same time.
5936
+ class IPEndpointsConfig
5937
+ include ::Google::Protobuf::MessageExts
5938
+ extend ::Google::Protobuf::MessageExts::ClassMethods
5939
+ end
5940
+ end
5941
+
5623
5942
  # LocalNvmeSsdBlockConfig contains configuration for using raw-block local
5624
5943
  # NVMe SSDs
5625
5944
  # @!attribute [rw] local_ssd_count
@@ -5701,7 +6020,7 @@ module Google
5701
6020
  # EnterpriseConfig is the cluster enterprise configuration.
5702
6021
  # @!attribute [r] cluster_tier
5703
6022
  # @return [::Google::Cloud::Container::V1::EnterpriseConfig::ClusterTier]
5704
- # Output only. cluster_tier specifies the premium tier of the cluster.
6023
+ # Output only. cluster_tier indicates the effective tier of the cluster.
5705
6024
  class EnterpriseConfig
5706
6025
  include ::Google::Protobuf::MessageExts
5707
6026
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -5719,6 +6038,15 @@ module Google
5719
6038
  end
5720
6039
  end
5721
6040
 
6041
+ # SecretManagerConfig is config for secret manager enablement.
6042
+ # @!attribute [rw] enabled
6043
+ # @return [::Boolean]
6044
+ # Enable/Disable Secret Manager Config.
6045
+ class SecretManagerConfig
6046
+ include ::Google::Protobuf::MessageExts
6047
+ extend ::Google::Protobuf::MessageExts::ClassMethods
6048
+ end
6049
+
5722
6050
  # SecondaryBootDisk represents a persistent disk attached to a node
5723
6051
  # with special configurations based on its mode.
5724
6052
  # @!attribute [rw] mode
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-container-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-08-30 00:00:00.000000000 Z
11
+ date: 2024-10-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common
@@ -102,7 +102,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
102
102
  - !ruby/object:Gem::Version
103
103
  version: '0'
104
104
  requirements: []
105
- rubygems_version: 3.5.6
105
+ rubygems_version: 3.5.21
106
106
  signing_key:
107
107
  specification_version: 4
108
108
  summary: Builds and manages container-based applications, powered by the open source