"""Generated message classes for container version v1alpha1.

Builds and manages container-based applications, powered by the open source
Kubernetes technology.
"""
# NOTE: This file is autogenerated and should not be edited by hand.

from __future__ import absolute_import

from apitools.base.protorpclite import messages as _messages
from apitools.base.py import encoding
from apitools.base.py import extra_types


package = 'container'


class AcceleratorConfig(_messages.Message):
  r"""AcceleratorConfig represents a Hardware Accelerator request.

  Fields:
    acceleratorCount: The number of the accelerator cards exposed to an
      instance.
    acceleratorType: The accelerator type resource name. List of supported
      accelerators [here](https://cloud.google.com/compute/docs/gpus)
    gpuDriverInstallationConfig: The configuration for auto installation of
      GPU driver.
    gpuPartitionSize: Size of partitions to create on the GPU. Valid values
      are described in the NVIDIA [mig user
      guide](https://docs.nvidia.com/datacenter/tesla/mig-user-
      guide/#partitioning).
    gpuSharingConfig: The configuration for GPU sharing options.
    maxTimeSharedClientsPerGpu: The number of time-shared GPU resources to
      expose for each physical GPU.
  """

  acceleratorCount = _messages.IntegerField(1)
  acceleratorType = _messages.StringField(2)
  gpuDriverInstallationConfig = _messages.MessageField('GPUDriverInstallationConfig', 3)
  gpuPartitionSize = _messages.StringField(4)
  gpuSharingConfig = _messages.MessageField('GPUSharingConfig', 5)
  maxTimeSharedClientsPerGpu = _messages.IntegerField(6)


class AdditionalIPRangesConfig(_messages.Message):
  r"""AdditionalIPRangesConfig is the configuration for individual additional
  subnetwork attached to the cluster

  Enums:
    StatusValueValuesEnum: Draining status of the additional subnet.

  Fields:
    podIpv4RangeNames: List of secondary ranges names within this subnetwork
      that can be used for pod IPs. Example1: gke-pod-range1 Example2: gke-
      pod-range1,gke-pod-range2
    status: Draining status of the additional subnet.
    subnetwork: Name of the subnetwork. This can be the full path of the
      subnetwork or just the name. Example1: my-subnet Example2: projects/gke-
      project/regions/us-central1/subnetworks/my-subnet
  """

  class StatusValueValuesEnum(_messages.Enum):
    r"""Draining status of the additional subnet.

    Values:
      STATUS_UNSPECIFIED: Not set, same as ACTIVE.
      ACTIVE: ACTIVE status indicates that the subnet is available for new
        node pool creation.
      DRAINING: DRAINING status indicates that the subnet is not used for new
        node pool creation.
    """
    STATUS_UNSPECIFIED = 0
    ACTIVE = 1
    DRAINING = 2

  podIpv4RangeNames = _messages.StringField(1, repeated=True)
  status = _messages.EnumField('StatusValueValuesEnum', 2)
  subnetwork = _messages.StringField(3)


class AdditionalNodeNetworkConfig(_messages.Message):
  r"""AdditionalNodeNetworkConfig is the configuration for additional node
  networks within the NodeNetworkConfig message

  Fields:
    network: Name of the VPC where the additional interface belongs
    subnetwork: Name of the subnetwork where the additional interface belongs
  """

  network = _messages.StringField(1)
  subnetwork = _messages.StringField(2)


class AdditionalPodNetworkConfig(_messages.Message):
  r"""AdditionalPodNetworkConfig is the configuration for additional pod
  networks within the NodeNetworkConfig message

  Fields:
    maxPodsPerNode: The maximum number of pods per node which use this pod
      network.
    networkAttachment: The name of the network attachment for pods to
      communicate to; cannot be specified along with subnetwork or
      secondary_pod_range.
    secondaryPodRange: The name of the secondary range on the subnet which
      provides IP address for this pod range.
    subnetwork: Name of the subnetwork where the additional pod network
      belongs.
  """

  maxPodsPerNode = _messages.MessageField('MaxPodsConstraint', 1)
  networkAttachment = _messages.StringField(2)
  secondaryPodRange = _messages.StringField(3)
  subnetwork = _messages.StringField(4)


class AdditionalPodRangesConfig(_messages.Message):
  r"""AdditionalPodRangesConfig is the configuration for additional pod
  secondary ranges supporting the ClusterUpdate message.

  Fields:
    podRangeInfo: Output only. Information for additional pod range.
    podRangeNames: Name for pod secondary ipv4 range which has the actual
      range defined ahead.
  """

  podRangeInfo = _messages.MessageField('RangeInfo', 1, repeated=True)
  podRangeNames = _messages.StringField(2, repeated=True)


class AddonsConfig(_messages.Message):
  r"""Configuration for the addons that can be automatically spun up in the
  cluster, enabling additional functionality.

  Fields:
    cloudBuildConfig: Configuration for the Cloud Build addon.
    cloudRunConfig: Configuration for the Cloud Run addon. The `IstioConfig`
      addon must be enabled in order to enable Cloud Run. This option can only
      be enabled at cluster creation time.
    configConnectorConfig: Configuration for the ConfigConnector add-on, a
      Kubernetes extension to manage hosted Google Cloud services through the
      Kubernetes API.
    dnsCacheConfig: Configuration for NodeLocalDNS, a dns cache running on
      cluster nodes
    gcePersistentDiskCsiDriverConfig: Configuration for the Compute Engine
      Persistent Disk CSI driver.
    gcpFilestoreCsiDriverConfig: Configuration for the Filestore CSI driver.
    gcsFuseCsiDriverConfig: Configuration for the Cloud Storage Fuse CSI
      driver.
    gkeBackupAgentConfig: Configuration for the Backup for GKE agent addon.
    highScaleCheckpointingConfig: Configuration for the High Scale
      Checkpointing add-on.
    horizontalPodAutoscaling: Configuration for the horizontal pod autoscaling
      feature, which increases or decreases the number of replica pods a
      replication controller has based on the resource usage of the existing
      pods.
    httpLoadBalancing: Configuration for the HTTP (L7) load balancing
      controller addon, which makes it easy to set up HTTP load balancers for
      services in a cluster.
    istioConfig: Configuration for Istio, an open platform to connect, manage,
      and secure microservices.
    kalmConfig: Configuration for the KALM addon, which manages the lifecycle
      of k8s applications.
    kubernetesDashboard: Configuration for the Kubernetes Dashboard. This
      addon is deprecated, and will be disabled in 1.15. It is recommended to
      use the Cloud Console to manage and monitor your Kubernetes clusters,
      workloads and applications. For more information, see:
      https://cloud.google.com/kubernetes-engine/docs/concepts/dashboards
    lustreCsiDriverConfig: Configuration for the Lustre CSI driver.
    networkPolicyConfig: Configuration for NetworkPolicy. This only tracks
      whether the addon is enabled or not on the Master, it does not track
      whether network policy is enabled for the nodes.
    parallelstoreCsiDriverConfig: Configuration for the Cloud Storage
      Parallelstore CSI driver.
    podSnapshotConfig: Configuration for the Pod Snapshot feature.
    rayConfig: Optional. DEPRECATED. Use RayOperatorConfig instead.
    rayOperatorConfig: Optional. Configuration for Ray Operator addon.
    sliceControllerConfig: Optional. Configuration for the slice controller
      add-on.
    statefulHaConfig: Optional. Configuration for the StatefulHA add-on.
  """

  cloudBuildConfig = _messages.MessageField('CloudBuildConfig', 1)
  cloudRunConfig = _messages.MessageField('CloudRunConfig', 2)
  configConnectorConfig = _messages.MessageField('ConfigConnectorConfig', 3)
  dnsCacheConfig = _messages.MessageField('DnsCacheConfig', 4)
  gcePersistentDiskCsiDriverConfig = _messages.MessageField('GcePersistentDiskCsiDriverConfig', 5)
  gcpFilestoreCsiDriverConfig = _messages.MessageField('GcpFilestoreCsiDriverConfig', 6)
  gcsFuseCsiDriverConfig = _messages.MessageField('GcsFuseCsiDriverConfig', 7)
  gkeBackupAgentConfig = _messages.MessageField('GkeBackupAgentConfig', 8)
  highScaleCheckpointingConfig = _messages.MessageField('HighScaleCheckpointingConfig', 9)
  horizontalPodAutoscaling = _messages.MessageField('HorizontalPodAutoscaling', 10)
  httpLoadBalancing = _messages.MessageField('HttpLoadBalancing', 11)
  istioConfig = _messages.MessageField('IstioConfig', 12)
  kalmConfig = _messages.MessageField('KalmConfig', 13)
  kubernetesDashboard = _messages.MessageField('KubernetesDashboard', 14)
  lustreCsiDriverConfig = _messages.MessageField('LustreCsiDriverConfig', 15)
  networkPolicyConfig = _messages.MessageField('NetworkPolicyConfig', 16)
  parallelstoreCsiDriverConfig = _messages.MessageField('ParallelstoreCsiDriverConfig', 17)
  podSnapshotConfig = _messages.MessageField('PodSnapshotConfig', 18)
  rayConfig = _messages.MessageField('RayConfig', 19)
  rayOperatorConfig = _messages.MessageField('RayOperatorConfig', 20)
  sliceControllerConfig = _messages.MessageField('SliceControllerConfig', 21)
  statefulHaConfig = _messages.MessageField('StatefulHAConfig', 22)


class AdvancedDatapathObservabilityConfig(_messages.Message):
  r"""AdvancedDatapathObservabilityConfig specifies configuration of
  observability features of advanced datapath.

  Enums:
    RelayModeValueValuesEnum: Method used to make Relay available

  Fields:
    enableMetrics: Expose flow metrics on nodes
    enableRelay: Enable Relay component
    relayMode: Method used to make Relay available
  """

  class RelayModeValueValuesEnum(_messages.Enum):
    r"""Method used to make Relay available

    Values:
      RELAY_MODE_UNSPECIFIED: Default value. This shouldn't be used.
      DISABLED: disabled
      INTERNAL_VPC_LB: exposed via internal load balancer
      EXTERNAL_LB: exposed via external load balancer
    """
    RELAY_MODE_UNSPECIFIED = 0
    DISABLED = 1
    INTERNAL_VPC_LB = 2
    EXTERNAL_LB = 3

  enableMetrics = _messages.BooleanField(1)
  enableRelay = _messages.BooleanField(2)
  relayMode = _messages.EnumField('RelayModeValueValuesEnum', 3)


class AdvancedMachineFeatures(_messages.Message):
  r"""Specifies options for controlling advanced machine features.

  Enums:
    PerformanceMonitoringUnitValueValuesEnum: Type of Performance Monitoring
      Unit (PMU) requested on node pool instances. If unset, PMU will not be
      available to the node.

  Fields:
    enableNestedVirtualization: Whether or not to enable nested virtualization
      (defaults to false).
    performanceMonitoringUnit: Type of Performance Monitoring Unit (PMU)
      requested on node pool instances. If unset, PMU will not be available to
      the node.
    threadsPerCore: The number of threads per physical core. To disable
      simultaneous multithreading (SMT) set this to 1. If unset, the maximum
      number of threads supported per core by the underlying processor is
      assumed.
  """

  class PerformanceMonitoringUnitValueValuesEnum(_messages.Enum):
    r"""Type of Performance Monitoring Unit (PMU) requested on node pool
    instances. If unset, PMU will not be available to the node.

    Values:
      PERFORMANCE_MONITORING_UNIT_UNSPECIFIED: PMU not enabled.
      ARCHITECTURAL: Architecturally defined non-LLC events.
      STANDARD: Most documented core/L2 events.
      ENHANCED: Most documented core/L2 and LLC events.
    """
    PERFORMANCE_MONITORING_UNIT_UNSPECIFIED = 0
    ARCHITECTURAL = 1
    STANDARD = 2
    ENHANCED = 3

  enableNestedVirtualization = _messages.BooleanField(1)
  performanceMonitoringUnit = _messages.EnumField('PerformanceMonitoringUnitValueValuesEnum', 2)
  threadsPerCore = _messages.IntegerField(3)


class AnonymousAuthenticationConfig(_messages.Message):
  r"""AnonymousAuthenticationConfig defines the settings needed to limit
  endpoints that allow anonymous authentication.

  Enums:
    ModeValueValuesEnum: Defines the mode of limiting anonymous access in the
      cluster.

  Fields:
    mode: Defines the mode of limiting anonymous access in the cluster.
  """

  class ModeValueValuesEnum(_messages.Enum):
    r"""Defines the mode of limiting anonymous access in the cluster.

    Values:
      MODE_UNSPECIFIED: Default value not specified.
      ENABLED: Anonymous authentication is allowed for all endpoints.
      LIMITED: Anonymous authentication is allowed for only health check
        endpoints.
    """
    MODE_UNSPECIFIED = 0
    ENABLED = 1
    LIMITED = 2

  mode = _messages.EnumField('ModeValueValuesEnum', 1)


class AttestationConfig(_messages.Message):
  r"""AttestationConfig contains the configuration for the attestation of the
  runner pool.

  Enums:
    ModeValueValuesEnum: The mode of the attestation of the runner pool.

  Fields:
    mode: The mode of the attestation of the runner pool.
    teePolicy: The string representation of the encoded tee policy that will
      be used for attestation.
  """

  class ModeValueValuesEnum(_messages.Enum):
    r"""The mode of the attestation of the runner pool.

    Values:
      MODE_UNSPECIFIED: Unspecified attestation mode.
      DISABLED: Attestation is disabled for the runner pool.
      ENABLED: Attestation is enabled for the runner pool.
    """
    MODE_UNSPECIFIED = 0
    DISABLED = 1
    ENABLED = 2

  mode = _messages.EnumField('ModeValueValuesEnum', 1)
  teePolicy = _messages.StringField(2)


class AuthenticatorGroupsConfig(_messages.Message):
  r"""Configuration for returning group information from authenticators.

  Fields:
    enabled: Whether this cluster should return group membership lookups
      during authentication using a group of security groups.
    securityGroup: The name of the security group-of-groups to be used. Only
      relevant if enabled = true.
  """

  enabled = _messages.BooleanField(1)
  securityGroup = _messages.StringField(2)


class AutoGKE(_messages.Message):
  r"""AutoGKE is the configuration for AutoGKE settings on the cluster.
  Replaced by Autopilot.

  Fields:
    enabled: Enable AutoGKE
  """

  enabled = _messages.BooleanField(1)


class AutoIpamConfig(_messages.Message):
  r"""AutoIpamConfig contains all information related to Auto IPAM

  Fields:
    enabled: The flag that enables Auto IPAM on this cluster
  """

  enabled = _messages.BooleanField(1)


class AutoMonitoringConfig(_messages.Message):
  r"""AutoMonitoringConfig defines the configuration for GKE Workload Auto-
  Monitoring.

  Enums:
    ScopeValueValuesEnum: Scope for GKE Workload Auto-Monitoring.

  Fields:
    scope: Scope for GKE Workload Auto-Monitoring.
  """

  class ScopeValueValuesEnum(_messages.Enum):
    r"""Scope for GKE Workload Auto-Monitoring.

    Values:
      SCOPE_UNSPECIFIED: Not set.
      ALL: Auto-Monitoring is enabled for all supported applications.
      NONE: Disable Auto-Monitoring.
    """
    SCOPE_UNSPECIFIED = 0
    ALL = 1
    NONE = 2

  scope = _messages.EnumField('ScopeValueValuesEnum', 1)


class AutoUpgradeOptions(_messages.Message):
  r"""AutoUpgradeOptions defines the set of options for the user to control
  how the Auto Upgrades will proceed.

  Fields:
    autoUpgradeStartTime: Output only. This field is set when upgrades are
      about to commence with the approximate start time for the upgrades, in
      [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) text format.
    description: Output only. This field is set when upgrades are about to
      commence with the description of the upgrade.
  """

  autoUpgradeStartTime = _messages.StringField(1)
  description = _messages.StringField(2)


class Autopilot(_messages.Message):
  r"""Autopilot is the configuration for Autopilot settings on the cluster.

  Fields:
    conversionStatus: Output only. ConversionStatus shows conversion status.
    enabled: Enable Autopilot
    privilegedAdmissionConfig: PrivilegedAdmissionConfig is the configuration
      related to privileged admission control.
    workloadPolicyConfig: WorkloadPolicyConfig is the configuration related to
      GCW workload policy
  """

  conversionStatus = _messages.MessageField('AutopilotConversionStatus', 1)
  enabled = _messages.BooleanField(2)
  privilegedAdmissionConfig = _messages.MessageField('PrivilegedAdmissionConfig', 3)
  workloadPolicyConfig = _messages.MessageField('WorkloadPolicyConfig', 4)


class AutopilotCompatibilityIssue(_messages.Message):
  r"""AutopilotCompatibilityIssue contains information about a specific
  compatibility issue with Autopilot mode.

  Enums:
    IncompatibilityTypeValueValuesEnum: The incompatibility type of this
      issue.

  Fields:
    constraintType: The constraint type of the issue.
    description: The description of the issue.
    documentationUrl: A URL to a public documentation, which addresses
      resolving this issue.
    incompatibilityType: The incompatibility type of this issue.
    lastObservation: The last time when this issue was observed.
    subjects: The name of the resources which are subject to this issue.
  """

  class IncompatibilityTypeValueValuesEnum(_messages.Enum):
    r"""The incompatibility type of this issue.

    Values:
      UNSPECIFIED: Default value, should not be used.
      INCOMPATIBILITY: Indicates that the issue is a known incompatibility
        between the cluster and Autopilot mode.
      ADDITIONAL_CONFIG_REQUIRED: Indicates the issue is an incompatibility if
        customers take no further action to resolve.
      PASSED_WITH_OPTIONAL_CONFIG: Indicates the issue is not an
        incompatibility, but depending on the workloads business logic, there
        is a potential that they won't work on Autopilot.
    """
    UNSPECIFIED = 0
    INCOMPATIBILITY = 1
    ADDITIONAL_CONFIG_REQUIRED = 2
    PASSED_WITH_OPTIONAL_CONFIG = 3

  constraintType = _messages.StringField(1)
  description = _messages.StringField(2)
  documentationUrl = _messages.StringField(3)
  incompatibilityType = _messages.EnumField('IncompatibilityTypeValueValuesEnum', 4)
  lastObservation = _messages.StringField(5)
  subjects = _messages.StringField(6, repeated=True)


class AutopilotConfig(_messages.Message):
  r"""AutopilotConfig contains configuration of autopilot feature for this
  nodepool.

  Fields:
    enabled: Denotes that nodes belonging to this node pool are Autopilot
      nodes.
  """

  enabled = _messages.BooleanField(1)


class AutopilotConversionStatus(_messages.Message):
  r"""AutopilotConversionStatus represents conversion status.

  Enums:
    StateValueValuesEnum: Output only. The current state of the conversion.
    TypeValueValuesEnum: Output only. Type represents the direction of
      conversion.

  Fields:
    autoCommitTime: Conversion will be automatically committed after this
      time.
    autopilotNodeCount: Output only. The number of Autopilot nodes in the
      cluster. This field is only updated while MIGRATING.
    standardNodeCount: Output only. The number of Standard nodes in the
      cluster. This field is only updated while MIGRATING.
    state: Output only. The current state of the conversion.
    type: Output only. Type represents the direction of conversion.
  """

  class StateValueValuesEnum(_messages.Enum):
    r"""Output only. The current state of the conversion.

    Values:
      STATE_UNSPECIFIED: STATE_UNSPECIFIED indicates the state is unspecified.
      CONFIGURING: CONFIGURING indicates this cluster is being configured for
        conversion. The KCP will be restarted in the desired mode (i.e.
        Autopilot or Standard) and all workloads will be migrated to new
        nodes. If the cluster is being converted to Autopilot, CA rotation
        will also begin.
      MIGRATING: MIGRATING indicates this cluster is migrating workloads.
      MIGRATED_WAITING_FOR_COMMIT: MIGRATED_WAITING_FOR_COMMIT indicates this
        cluster has finished migrating all the workloads to Autopilot node
        pools and is waiting for the customer to commit the conversion. Once
        migration is committed, CA rotation will be completed and old node
        pools will be deleted. This action will be automatically performed 72
        hours after conversion.
      COMMITTING: COMMITTING indicates this cluster is finishing CA rotation
        by removing the old CA from the cluster and restarting the KCP.
        Additionally, old node pools will begin deletion.
      DONE: DONE indicates the conversion has been completed. Old node pools
        will continue being deleted in the background.
    """
    STATE_UNSPECIFIED = 0
    CONFIGURING = 1
    MIGRATING = 2
    MIGRATED_WAITING_FOR_COMMIT = 3
    COMMITTING = 4
    DONE = 5

  class TypeValueValuesEnum(_messages.Enum):
    r"""Output only. Type represents the direction of conversion.

    Values:
      TYPE_UNSPECIFIED: TYPE_UNSPECIFIED indicates the conversion type is
        unspecified.
      CONVERT_TO_AUTOPILOT: CONVERT_TO_AUTOPILOT indicates the conversion is
        from Standard to Autopilot.
      CONVERT_TO_STANDARD: CONVERT_TO_STANDARD indicates the conversion is
        from Autopilot to Standard.
    """
    TYPE_UNSPECIFIED = 0
    CONVERT_TO_AUTOPILOT = 1
    CONVERT_TO_STANDARD = 2

  autoCommitTime = _messages.StringField(1)
  autopilotNodeCount = _messages.IntegerField(2, variant=_messages.Variant.INT32)
  standardNodeCount = _messages.IntegerField(3, variant=_messages.Variant.INT32)
  state = _messages.EnumField('StateValueValuesEnum', 4)
  type = _messages.EnumField('TypeValueValuesEnum', 5)


class AutoprovisioningNodePoolDefaults(_messages.Message):
  r"""AutoprovisioningNodePoolDefaults contains defaults for a node pool
  created by NAP.

  Fields:
    bootDiskKmsKey:  The Customer Managed Encryption Key used to encrypt the
      boot disk attached to each node in the node pool. This should be of the
      form projects/[KEY_PROJECT_ID]/locations/[LOCATION]/keyRings/[RING_NAME]
      /cryptoKeys/[KEY_NAME]. For more information about protecting resources
      with Cloud KMS Keys please see:
      https://cloud.google.com/compute/docs/disks/customer-managed-encryption
    diskSizeGb: Size of the disk attached to each node, specified in GB. The
      smallest allowed disk size is 10GB. TODO(b/395671893) - Add BootDisk
      boot_disk field and deprecate this field. If unspecified, the default
      disk size is 100GB.
    diskType: Type of the disk attached to each node (e.g. 'pd-standard', 'pd-
      ssd' or 'pd-balanced') If unspecified, the default disk type is 'pd-
      standard'
    imageType: The image type to use for NAP created node. Please see
      https://cloud.google.com/kubernetes-engine/docs/concepts/node-images for
      available image types.
    insecureKubeletReadonlyPortEnabled: DEPRECATED. Use
      NodePoolAutoConfig.NodeKubeletConfig instead.
    management: NodeManagement configuration for this NodePool.
    minCpuPlatform: Deprecated. Minimum CPU platform to be used for NAP
      created node pools. The instance may be scheduled on the specified or
      newer CPU platform. Applicable values are the friendly names of CPU
      platforms, such as minCpuPlatform: Intel Haswell or minCpuPlatform:
      Intel Sandy Bridge. For more information, read [how to specify min CPU
      platform](https://cloud.google.com/compute/docs/instances/specify-min-
      cpu-platform). This field is deprecated, min_cpu_platform should be
      specified using `cloud.google.com/requested-min-cpu-platform` label
      selector on the pod. To unset the min cpu platform field pass
      "automatic" as field value.
    oauthScopes: The set of Google API scopes to be made available on all of
      the node VMs under the "default" service account. The following scopes
      are recommended, but not required, and by default are not included: *
      `https://www.googleapis.com/auth/compute` is required for mounting
      persistent storage on your nodes. *
      `https://www.googleapis.com/auth/devstorage.read_only` is required for
      communicating with **gcr.io** (the [Artifact
      Registry](https://cloud.google.com/artifact-registry/)). If unspecified,
      no scopes are added, unless Cloud Logging or Cloud Monitoring are
      enabled, in which case their required scopes will be added.
    serviceAccount: The Google Cloud Platform Service Account to be used by
      the node VMs. Specify the email address of the Service Account;
      otherwise, if no Service Account is specified, the "default" service
      account is used.
    shieldedInstanceConfig: Shielded Instance options.
    upgradeSettings: Upgrade settings control disruption and speed of the
      upgrade.
  """

  bootDiskKmsKey = _messages.StringField(1)
  diskSizeGb = _messages.IntegerField(2, variant=_messages.Variant.INT32)
  diskType = _messages.StringField(3)
  imageType = _messages.StringField(4)
  insecureKubeletReadonlyPortEnabled = _messages.BooleanField(5)
  management = _messages.MessageField('NodeManagement', 6)
  minCpuPlatform = _messages.StringField(7)
  oauthScopes = _messages.StringField(8, repeated=True)
  serviceAccount = _messages.StringField(9)
  shieldedInstanceConfig = _messages.MessageField('ShieldedInstanceConfig', 10)
  upgradeSettings = _messages.MessageField('UpgradeSettings', 11)


class AutoscaledRolloutPolicy(_messages.Message):
  r"""Autoscaled rollout policy utilizes the cluster autoscaler during blue-
  green upgrade to scale both the blue and green pools.

  Fields:
    waitForDrainDuration: Optional. Time to wait after cordoning the blue pool
      before draining the nodes. Defaults to 3 days. The value can be set
      between 0 and 7 days, inclusive.
  """

  waitForDrainDuration = _messages.StringField(1)


class AvailableVersion(_messages.Message):
  r"""Deprecated.

  Fields:
    reason: Reason for availability.
    version: Kubernetes version.
  """

  reason = _messages.StringField(1)
  version = _messages.StringField(2)


class BestEffortProvisioning(_messages.Message):
  r"""Best effort provisioning.

  Fields:
    enabled: When set to true, cluster and node pool provisioning will be done
      on a best effort basis allowing them to complete in scenarios such as
      stockouts and eventually bring up all target number of nodes
    minProvisionNodes: Minimum number of nodes to be provisioned to be
      considered as succeeded, and the rest of nodes will be provisioned
      gradually and eventually when stockout issue has been resolved.
  """

  enabled = _messages.BooleanField(1)
  minProvisionNodes = _messages.IntegerField(2, variant=_messages.Variant.INT32)


class BigQueryDestination(_messages.Message):
  r"""Parameters for using BigQuery as the destination of resource usage
  export.

  Fields:
    datasetId: The ID of a BigQuery Dataset.
  """

  datasetId = _messages.StringField(1)


class BinaryAuthorization(_messages.Message):
  r"""Configuration for Binary Authorization.

  Enums:
    EvaluationModeValueValuesEnum: Mode of operation for binauthz policy
      evaluation. If unspecified, defaults to DISABLED.

  Fields:
    enabled: This field is deprecated. Leave this unset and instead configure
      BinaryAuthorization using evaluation_mode. If evaluation_mode is set to
      anything other than EVALUATION_MODE_UNSPECIFIED, this field is ignored.
    evaluationMode: Mode of operation for binauthz policy evaluation. If
      unspecified, defaults to DISABLED.
    policyBindings: Optional. Binauthz policies that apply to this cluster.
  """

  class EvaluationModeValueValuesEnum(_messages.Enum):
    r"""Mode of operation for binauthz policy evaluation. If unspecified,
    defaults to DISABLED.

    Values:
      EVALUATION_MODE_UNSPECIFIED: Default value
      DISABLED: Disable BinaryAuthorization
      PROJECT_SINGLETON_POLICY_ENFORCE: Enforce Kubernetes admission requests
        with BinaryAuthorization using the project's singleton policy. This is
        equivalent to setting the enabled boolean to true.
      POLICY_BINDINGS: Use Binary Authorization Continuous Validation with the
        policies specified in policy_bindings.
      POLICY_BINDINGS_AND_PROJECT_SINGLETON_POLICY_ENFORCE: Use Binary
        Authorization Continuous Validation with the policies specified in
        policy_bindings and enforce Kubernetes admission requests with Binary
        Authorization using the project's singleton policy.
    """
    EVALUATION_MODE_UNSPECIFIED = 0
    DISABLED = 1
    PROJECT_SINGLETON_POLICY_ENFORCE = 2
    POLICY_BINDINGS = 3
    POLICY_BINDINGS_AND_PROJECT_SINGLETON_POLICY_ENFORCE = 4

  enabled = _messages.BooleanField(1)
  evaluationMode = _messages.EnumField('EvaluationModeValueValuesEnum', 2)
  policyBindings = _messages.MessageField('PolicyBinding', 3, repeated=True)


class BlueGreenInfo(_messages.Message):
  r"""Information relevant to blue-green upgrade.

  Enums:
    PhaseValueValuesEnum: Current blue-green upgrade phase.

  Fields:
    blueInstanceGroupUrls: The resource URLs of the [managed instance groups]
      (/compute/docs/instance-groups/creating-groups-of-managed-instances)
      associated with blue pool.
    bluePoolDeletionStartTime: Time to start deleting blue pool to complete
      blue-green upgrade, in [RFC3339](https://www.ietf.org/rfc/rfc3339.txt)
      text format.
    greenInstanceGroupUrls: The resource URLs of the [managed instance groups]
      (/compute/docs/instance-groups/creating-groups-of-managed-instances)
      associated with green pool.
    greenPoolVersion: Version of green pool.
    phase: Current blue-green upgrade phase.
  """

  class PhaseValueValuesEnum(_messages.Enum):
    r"""Current blue-green upgrade phase.

    Values:
      PHASE_UNSPECIFIED: Unspecified phase.
      UPDATE_STARTED: blue-green upgrade has been initiated.
      CREATING_GREEN_POOL: Start creating green pool nodes.
      CORDONING_BLUE_POOL: Start cordoning blue pool nodes.
      WAITING_TO_DRAIN_BLUE_POOL: Start waiting after cordoning the blue pool
        and before draining it.
      DRAINING_BLUE_POOL: Start draining blue pool nodes.
      NODE_POOL_SOAKING: Start soaking time after draining entire blue pool.
      DELETING_BLUE_POOL: Start deleting blue nodes.
      ROLLBACK_STARTED: Rollback has been initiated.
    """
    PHASE_UNSPECIFIED = 0
    UPDATE_STARTED = 1
    CREATING_GREEN_POOL = 2
    CORDONING_BLUE_POOL = 3
    WAITING_TO_DRAIN_BLUE_POOL = 4
    DRAINING_BLUE_POOL = 5
    NODE_POOL_SOAKING = 6
    DELETING_BLUE_POOL = 7
    ROLLBACK_STARTED = 8

  blueInstanceGroupUrls = _messages.StringField(1, repeated=True)
  bluePoolDeletionStartTime = _messages.StringField(2)
  greenInstanceGroupUrls = _messages.StringField(3, repeated=True)
  greenPoolVersion = _messages.StringField(4)
  phase = _messages.EnumField('PhaseValueValuesEnum', 5)


class BlueGreenSettings(_messages.Message):
  r"""Settings for blue-green upgrade.

  Fields:
    autoscaledRolloutPolicy: Autoscaled policy for cluster autoscaler enabled
      blue-green upgrade.
    nodePoolSoakDuration: Time needed after draining entire blue pool. After
      this period, blue pool will be cleaned up.
    standardRolloutPolicy: Standard policy for the blue-green upgrade.
  """

  autoscaledRolloutPolicy = _messages.MessageField('AutoscaledRolloutPolicy', 1)
  nodePoolSoakDuration = _messages.StringField(2)
  standardRolloutPolicy = _messages.MessageField('StandardRolloutPolicy', 3)


class BootDisk(_messages.Message):
  r"""BootDisk specifies the boot disk configuration for nodepools.

  Fields:
    diskType: Disk type of the boot disk. (i.e. Hyperdisk-Balanced, PD-
      Balanced, etc.)
    provisionedIops: For Hyperdisk-Balanced only, the provisioned IOPS config
      value.
    provisionedThroughput: For Hyperdisk-Balanced only, the provisioned
      throughput config value.
    sizeGb: Disk size in GB. Replaces NodeConfig.disk_size_gb
  """

  diskType = _messages.StringField(1)
  provisionedIops = _messages.IntegerField(2)
  provisionedThroughput = _messages.IntegerField(3)
  sizeGb = _messages.IntegerField(4)


class BootDiskProfile(_messages.Message):
  r"""Swap on the node's boot disk.

  Fields:
    swapSizeGib: Specifies the size of the swap space in gibibytes (GiB).
    swapSizePercent: Specifies the size of the swap space as a percentage of
      the boot disk size.
  """

  swapSizeGib = _messages.IntegerField(1)
  swapSizePercent = _messages.IntegerField(2, variant=_messages.Variant.INT32)


class CancelOperationRequest(_messages.Message):
  r"""CancelOperationRequest cancels a single operation.

  Fields:
    name: The name (project, location, operation id) of the operation to
      cancel. Specified in the format `projects/*/locations/*/operations/*`.
    operationId: Deprecated. The server-assigned `name` of the operation. This
      field has been deprecated and replaced by the name field.
    projectId: Deprecated. The Google Developers Console [project ID or
      project number](https://cloud.google.com/resource-manager/docs/creating-
      managing-projects). This field has been deprecated and replaced by the
      name field.
    zone: Deprecated. The name of the Google Compute Engine
      [zone](https://cloud.google.com/compute/docs/zones#available) in which
      the operation resides. This field has been deprecated and replaced by
      the name field.
  """

  name = _messages.StringField(1)
  operationId = _messages.StringField(2)
  projectId = _messages.StringField(3)
  zone = _messages.StringField(4)


class CertificateAuthorityDomainConfig(_messages.Message):
  r"""CertificateAuthorityDomainConfig configures one or more fully qualified
  domain names (FQDN) to a specific certificate.

  Fields:
    fqdns: List of fully qualified domain names (FQDN). Specifying port is
      supported. Wildcards are NOT supported. Examples: - my.customdomain.com
      - 10.0.1.2:5000
    gcpSecretManagerCertificateConfig: Secret Manager certificate
      configuration.
  """

  fqdns = _messages.StringField(1, repeated=True)
  gcpSecretManagerCertificateConfig = _messages.MessageField('GCPSecretManagerCertificateConfig', 2)


class CertificateConfig(_messages.Message):
  r"""CertificateConfig configures certificate for the registry.

  Fields:
    gcpSecretManagerSecretUri: The URI configures a secret from [Secret
      Manager](https://cloud.google.com/secret-manager) in the format
      "projects/$PROJECT_ID/secrets/$SECRET_NAME/versions/$VERSION" for global
      secret or "projects/$PROJECT_ID/locations/$REGION/secrets/$SECRET_NAME/v
      ersions/$VERSION" for regional secret. Version can be fixed (e.g. "2")
      or "latest"
  """

  gcpSecretManagerSecretUri = _messages.StringField(1)


class CertificateConfigPair(_messages.Message):
  r"""CertificateConfigPair configures pairs of certificates, which is used
  for client certificate and key pairs under a registry.

  Fields:
    cert: Cert configures the client certificate.
    key: Key configures the client private key. Optional.
  """

  cert = _messages.MessageField('CertificateConfig', 1)
  key = _messages.MessageField('CertificateConfig', 2)


class CheckAutopilotCompatibilityResponse(_messages.Message):
  r"""CheckAutopilotCompatibilityResponse has a list of compatibility issues.

  Fields:
    issues: The list of issues for the given operation.
    summary: The summary of the autopilot compatibility response.
  """

  issues = _messages.MessageField('AutopilotCompatibilityIssue', 1, repeated=True)
  summary = _messages.StringField(2)


class CidrBlock(_messages.Message):
  r"""CidrBlock contains an optional name and one CIDR block.

  Fields:
    cidrBlock: cidr_block must be specified in CIDR notation.
    displayName: display_name is an optional field for users to identify CIDR
      blocks.
  """

  cidrBlock = _messages.StringField(1)
  displayName = _messages.StringField(2)


class ClientCertificateConfig(_messages.Message):
  r"""Configuration for client certificates on the cluster.

  Fields:
    issueClientCertificate: Issue a client certificate.
  """

  issueClientCertificate = _messages.BooleanField(1)


class CloudBuildConfig(_messages.Message):
  r"""Configuration options for the Cloud Build addon.

  Fields:
    enabled: Whether the Cloud Build addon is enabled for this cluster.
  """

  enabled = _messages.BooleanField(1)


class CloudNatStatus(_messages.Message):
  r"""CloudNatStatus contains the desired state of the cloud nat functionality
  on this cluster.

  Fields:
    enabled: Enables Cloud Nat on this cluster. On an update if
      update.desired_cloud_nat_status.enabled = true, The API will check if
      any Routers in the cluster's network has Cloud NAT enabled on the pod
      range. a. If so, then the cluster nodes will be updated to not perform
      SNAT. b. If no NAT configuration exists, a new Router with Cloud NAT on
      the secondary range will be created first, and then the nodes will be
      updated to no longer do SNAT.
  """

  enabled = _messages.BooleanField(1)


class CloudRunConfig(_messages.Message):
  r"""Configuration options for the Cloud Run feature.

  Enums:
    LoadBalancerTypeValueValuesEnum: Which load balancer type is installed for
      Cloud Run.

  Fields:
    disabled: Whether Cloud Run is enabled for this cluster.
    enableAlphaFeatures: Enable alpha features of Cloud Run. These features
      are only available to trusted testers.
    loadBalancerType: Which load balancer type is installed for Cloud Run.
  """

  class LoadBalancerTypeValueValuesEnum(_messages.Enum):
    r"""Which load balancer type is installed for Cloud Run.

    Values:
      LOAD_BALANCER_TYPE_UNSPECIFIED: Load balancer type for Cloud Run is
        unspecified.
      LOAD_BALANCER_TYPE_EXTERNAL: Install external load balancer for Cloud
        Run.
      LOAD_BALANCER_TYPE_INTERNAL: Install internal load balancer for Cloud
        Run.
    """
    LOAD_BALANCER_TYPE_UNSPECIFIED = 0
    LOAD_BALANCER_TYPE_EXTERNAL = 1
    LOAD_BALANCER_TYPE_INTERNAL = 2

  disabled = _messages.BooleanField(1)
  enableAlphaFeatures = _messages.BooleanField(2)
  loadBalancerType = _messages.EnumField('LoadBalancerTypeValueValuesEnum', 3)


class Cluster(_messages.Message):
  r"""A Google Kubernetes Engine cluster.

  Enums:
    NodeSchedulingStrategyValueValuesEnum: Defines behaviour of k8s scheduler.
    StatusValueValuesEnum: Output only. The current status of this cluster.

  Messages:
    ResourceLabelsValue: The resource labels for the cluster to use to
      annotate any related Compute Engine resources.
    TagsValue: Optional. Input only. Immutable. Tag keys/values directly bound
      to this resource. For example: "123/environment": "production",
      "123/costCenter": "marketing"

  Fields:
    addonsConfig: Configurations for the various addons available to run in
      the cluster.
    alphaClusterFeatureGates: The list of user specified Kubernetes feature
      gates. Each string represents the activation status of a feature gate
      (e.g. "featureX=true" or "featureX=false")
    anonymousAuthenticationConfig: Configuration for limiting anonymous access
      to all endpoints except the health checks.
    authenticatorGroupsConfig: Configuration controlling RBAC group membership
      information.
    autogke: AutoGKE configuration for the cluster. It has the same semantics
      as autopilot and is overridden by the autopilot setting.
    autopilot: Autopilot configuration for the cluster.
    autoscaling: Cluster-level autoscaling configuration.
    binaryAuthorization: Configuration for Binary Authorization.
    clusterIpv4Cidr: The IP address range of the container pods in this
      cluster, in [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-
      Domain_Routing) notation (e.g. `10.96.0.0/14`). Leave blank to have one
      automatically chosen or specify a `/14` block in `10.0.0.0/8`.
    clusterTelemetry: Telemetry integration for the cluster.
    compliancePostureConfig: Enable/Disable Compliance Posture features for
      the cluster.
    concurrentOpsConfig: Allows enabling concurrent ops for supported
      operations on this cluster. This flag is for EAP users only. Concurrent
      ops will become the only option, and thus having an opt in/out is only
      applicable pre-GA. Once the feature is GA, "disabling" concurrent ops
      will have no effect and the flag will be removed in the future.
    conditions: Which conditions caused the current cluster state.
    confidentialNodes: Configuration of Confidential Nodes. All the nodes in
      the cluster will be Confidential VM once enabled.
    controlPlaneEgress: Configuration for control plane egress control.
    controlPlaneEndpointsConfig: Configuration for all cluster's control plane
      endpoints.
    costManagementConfig: Configuration for the fine-grained cost management
      feature.
    createTime: Output only. The time the cluster was created, in
      [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) text format.
    currentEmulatedVersion: Output only. The current emulated version of the
      master endpoint. The version is in minor version format, e.g. 1.30. No
      value or empty string means the cluster has no emulated version.
    currentMasterVersion: The current software version of the master endpoint.
    currentNodeCount: Output only. The number of nodes currently in the
      cluster. Deprecated. Call Kubernetes API directly to retrieve node
      information.
    currentNodeVersion: Output only. Deprecated, use
      [NodePool.version](https://cloud.google.com/kubernetes-engine/docs/refer
      ence/rest/v1alpha1/projects.locations.clusters.nodePool) instead. The
      current version of the node software components. If they are currently
      at multiple versions because they're in the process of being upgraded,
      this reflects the minimum version of all nodes.
    databaseEncryption: Configuration of etcd encryption.
    databaseEncryptionKeyId: Resource name of a CloudKMS key to be used for
      the encryption of secrets in etcd. Ex. projects/kms-
      project/locations/global/keyRings/ring-1/cryptoKeys/key-1 Deprecated,
      use database_encryption instead.
    defaultMaxPodsConstraint: The default constraint on the maximum number of
      pods that can be run simultaneously on a node in the node pool of this
      cluster. Only honored if cluster created with IP Alias support.
    description: An optional description of this cluster.
    enableGvnic: To be deprecated TODO(b/192680711), replaced with
      NodeConfig.Gvnic = 29
    enableK8sBetaApis: Kubernetes open source beta apis enabled on the
      cluster. Only beta apis.
    enableKubernetesAlpha: Kubernetes alpha features are enabled on this
      cluster. This includes alpha API groups (e.g. v1alpha1) and features
      that may not be production ready in the kubernetes version of the master
      and nodes. The cluster has no SLA for uptime and master/node upgrades
      are disabled. Alpha enabled clusters are automatically deleted thirty
      days after creation.
    enableTpu: Enable the ability to use Cloud TPUs in this cluster. This
      field is deprecated, use tpu_config.enabled instead. This field is
      deprecated due to the deprecation of 2VM TPU. The end of life date for
      2VM TPU is 2025-04-25.
    endpoint: Output only. The IP address of this cluster's master endpoint.
      The endpoint can be accessed from the internet at
      `https://username:password@endpoint/`. See the `masterAuth` property of
      this resource for username and password information.
    enterpriseConfig: GKE Enterprise Configuration. Deprecated: GKE Enterprise
      features are now available without an Enterprise tier.
    etag: This checksum is computed by the server based on the value of
      cluster fields, and may be sent on update requests to ensure the client
      has an up-to-date value before proceeding.
    expireTime: Output only. The time the cluster will be automatically
      deleted in [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) text format.
    fleet: Fleet information for the cluster.
    gkeAutoUpgradeConfig: Configuration for GKE auto upgrades.
    gkeOidcConfig: Security message for security related configuration
    id: Output only. Unique id for the cluster.
    identityServiceConfig: Configuration for Identity Service component.
    initialClusterVersion: The initial Kubernetes version for this cluster.
      Valid versions are those found in validMasterVersions returned by
      getServerConfig. The version can be upgraded over time; such upgrades
      are reflected in currentMasterVersion and currentNodeVersion. Users may
      specify either explicit versions offered by Kubernetes Engine or version
      aliases, which have the following behavior: - "latest": picks the
      highest valid Kubernetes version - "1.X": picks the highest valid
      patch+gke.N patch in the 1.X version - "1.X.Y": picks the highest valid
      gke.N patch in the 1.X.Y version - "1.X.Y-gke.N": picks an explicit
      Kubernetes version - "","-": picks the default Kubernetes version
    initialNodeCount: The number of nodes to create in this cluster. You must
      ensure that your Compute Engine resource quota is sufficient for this
      number of instances. You must also have available firewall and routes
      quota. For requests, this field should only be used in lieu of a
      "node_pool" object, since this configuration (along with the
      "node_config") will be used to create a "NodePool" object with an auto-
      generated name. Do not use this and a node_pool at the same time. This
      field is deprecated, use node_pool.initial_node_count instead.
    instanceGroupUrls: Output only. Deprecated. Use
      node_pools.instance_group_urls.
    ipAllocationPolicy: Configuration for cluster IP allocation.
    kubernetesObjectsExportConfig: Configuration which enables export of
      kubernetes objects changes and snapshots to specified targets.
    labelFingerprint: The fingerprint of the set of labels for this cluster.
    legacyAbac: Configuration for the legacy ABAC authorization mode.
    location: Output only. The name of the Google Compute Engine
      [zone](https://cloud.google.com/compute/docs/regions-zones/regions-
      zones#available) or
      [region](https://cloud.google.com/compute/docs/regions-zones/regions-
      zones#available) in which the cluster resides.
    locations: The list of Google Compute Engine
      [zones](https://cloud.google.com/compute/docs/zones#available) in which
      the cluster's nodes should be located. This field provides a default
      value if [NodePool.Locations](https://cloud.google.com/kubernetes-engine
      /docs/reference/rest/v1/projects.locations.clusters.nodePools#NodePool.F
      IELDS.locations) are not specified during node pool creation. Warning:
      changing cluster locations will update the
      [NodePool.Locations](https://cloud.google.com/kubernetes-engine/docs/ref
      erence/rest/v1/projects.locations.clusters.nodePools#NodePool.FIELDS.loc
      ations) of all node pools and will result in nodes being added and/or
      removed.
    loggingConfig: Logging configuration for the cluster.
    loggingService: The logging service the cluster should use to write logs.
      Currently available options: * `logging.googleapis.com/kubernetes` - The
      Cloud Logging service with a Kubernetes-native resource model *
      `logging.googleapis.com` - The legacy Cloud Logging service (no longer
      available as of GKE 1.15). * `none` - no logs will be exported from the
      cluster. If left as an empty string,`logging.googleapis.com/kubernetes`
      will be used for GKE 1.14+ or `logging.googleapis.com` for earlier
      versions.
    maintenancePolicy: Configure the maintenance policy for this cluster.
    managedConfig: ManagedConfig configuration for the cluster.
    managedOpentelemetryConfig: Configuration for Managed OpenTelemetry
      pipeline.
    master: Configuration for master components.
    masterAuth: The authentication information for accessing the master
      endpoint. If unspecified, the defaults are used: For clusters before
      v1.12, if master_auth is unspecified, `username` will be set to "admin",
      a random password will be generated, and a client certificate will be
      issued.
    masterAuthorizedNetworksConfig: The configuration options for master
      authorized networks feature. Deprecated: Use
      ControlPlaneEndpointsConfig.IPEndpointsConfig.authorized_networks_config
      instead.
    masterIpv4CidrBlock: The IP prefix in CIDR notation to use for the hosted
      master network. This prefix will be used for assigning private IP
      addresses to the master or set of masters, as well as the ILB VIP. This
      field is deprecated, use private_cluster_config.master_ipv4_cidr_block
      instead.
    meshCertificates: Configuration for issuance of mTLS keys and certificates
      to Kubernetes pods.
    monitoringConfig: Monitoring configuration for the cluster.
    monitoringService: The monitoring service the cluster should use to write
      metrics. Currently available options: *
      `monitoring.googleapis.com/kubernetes` - The Cloud Monitoring service
      with a Kubernetes-native resource model * `monitoring.googleapis.com` -
      The legacy Cloud Monitoring service (no longer available as of GKE
      1.15). * `none` - No metrics will be exported from the cluster. If left
      as an empty string,`monitoring.googleapis.com/kubernetes` will be used
      for GKE 1.14+ or `monitoring.googleapis.com` for earlier versions.
    name: The name of this cluster. The name must be unique within this
      project and location (e.g. zone or region), and can be up to 40
      characters with the following restrictions: * Lowercase letters,
      numbers, and hyphens only. * Must start with a letter. * Must end with a
      number or a letter.
    network: The name of the Google Compute Engine
      [network](https://cloud.google.com/compute/docs/networks-and-
      firewalls#networks) to which the cluster is connected. If left
      unspecified, the `default` network will be used.
    networkConfig: Configuration for cluster networking.
    networkPolicy: Configuration options for the NetworkPolicy feature.
    nodeConfig: Parameters used in creating the cluster's nodes. For requests,
      this field should only be used in lieu of a "node_pool" object, since
      this configuration (along with the "initial_node_count") will be used to
      create a "NodePool" object with an auto-generated name. Do not use this
      and a node_pool at the same time. For responses, this field will be
      populated with the node configuration of the first node pool. (For
      configuration of each node pool, see `node_pool.config`) If unspecified,
      the defaults are used. This field is deprecated, use node_pool.config
      instead.
    nodeIpv4CidrSize: Output only. The size of the address space on each node
      for hosting containers. This is provisioned from within the
      `container_ipv4_cidr` range. This field will only be set when cluster is
      in route-based network mode.
    nodePoolAutoConfig: Node pool configs that apply to all auto-provisioned
      node pools in autopilot clusters and node auto-provisioning enabled
      clusters.
    nodePoolDefaults: Default NodePool settings for the entire cluster. These
      settings are overridden if specified on the specific NodePool object.
    nodePools: The node pools associated with this cluster. This field should
      not be set if "node_config" or "initial_node_count" are specified.
    nodeSchedulingStrategy: Defines behaviour of k8s scheduler.
    notificationConfig: Notification configuration of the cluster.
    parentProductConfig: The configuration of the parent product of the
      cluster. This field is used by Google internal products that are built
      on top of the GKE cluster and take the ownership of the cluster.
    podAutoscaling: The config for pod autoscaling.
    podSecurityPolicyConfig: Configuration for the PodSecurityPolicy feature.
    privateCluster: If this is a private cluster setup. Private clusters are
      clusters that, by default have no external IP addresses on the nodes and
      where nodes and the master communicate over private IP addresses. This
      field is deprecated, use private_cluster_config.enable_private_nodes
      instead.
    privateClusterConfig: Configuration for private cluster.
    protectConfig: Deprecated: Use SecurityPostureConfig instead.
      Enable/Disable Protect API features for the cluster.
    rbacBindingConfig: RBACBindingConfig allows user to restrict
      ClusterRoleBindings an RoleBindings that can be created.
    releaseChannel: Release channel configuration. If left unspecified on
      cluster creation and a version is specified, the cluster is enrolled in
      the most mature release channel where the version is available (first
      checking STABLE, then REGULAR, and finally RAPID). Otherwise, if no
      release channel configuration and no version is specified, the cluster
      is enrolled in the REGULAR channel with its default version.
    resourceLabels: The resource labels for the cluster to use to annotate any
      related Compute Engine resources.
    resourceUsageExportConfig: Configuration for exporting resource usages.
      Resource usage export is disabled when this config unspecified.
    resourceVersion: Server-defined resource version (etag). Deprecated; use
      etag instead.
    rollbackSafeUpgrade: The rollback safe upgrade information of the cluster.
      This field is used when user manually triggers a rollback safe upgrade.
    runtimeVulnerabilityInsightConfig: Enable/Disable RVI features for the
      cluster.
    satisfiesPzi: Output only. Reserved for future use.
    satisfiesPzs: Output only. Reserved for future use.
    scheduleUpgradeConfig: Configuration for scheduled upgrades.
    secretManagerConfig: Secret CSI driver configuration.
    secretSyncConfig: Configuration for sync Secret Manager secrets as k8s
      secrets.
    securityPostureConfig: Enable/Disable Security Posture API features for
      the cluster.
    securityProfile: User selected security profile
    selfLink: Output only. Server-defined URL for the resource.
    servicesIpv4Cidr: Output only. The IP address range of the Kubernetes
      services in this cluster, in
      [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing)
      notation (e.g. `1.2.3.4/29`). Service addresses are typically put in the
      last `/16` from the container CIDR.
    shieldedNodes: Shielded Nodes configuration.
    status: Output only. The current status of this cluster.
    statusMessage: Output only. Additional information about the current
      status of this cluster, if available. Deprecated, use the field
      conditions instead.
    subnetwork: The name of the Google Compute Engine
      [subnetwork](https://cloud.google.com/compute/docs/subnetworks) to which
      the cluster is connected. On output this shows the subnetwork ID instead
      of the name.
    tags: Optional. Input only. Immutable. Tag keys/values directly bound to
      this resource. For example: "123/environment": "production",
      "123/costCenter": "marketing"
    tpuConfig: Configuration for Cloud TPU support; This field is deprecated
      due to the deprecation of 2VM TPU. The end of life date for 2VM TPU is
      2025-04-25.
    tpuIpv4CidrBlock: Output only. The IP address range of the Cloud TPUs in
      this cluster, in [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-
      Domain_Routing) notation (e.g. `1.2.3.4/29`). This field is deprecated
      due to the deprecation of 2VM TPU. The end of life date for 2VM TPU is
      2025-04-25.
    userManagedKeysConfig: The Custom keys configuration for the cluster.
    verticalPodAutoscaling: Cluster-level Vertical Pod Autoscaling
      configuration.
    workloadAltsConfig: Configuration for direct-path (via ALTS) with workload
      identity.
    workloadCertificates: Configuration for issuance of mTLS keys and
      certificates to Kubernetes pods.
    workloadConfig: Enable/Disable Workload Configuration for the cluster.
    workloadIdentityConfig: Configuration for the use of k8s Service Accounts
      in IAM policies.
    workloadMonitoringEnabledEap: Whether to send workload metrics from the
      cluster to Google Cloud Monitoring. Temporary flag for EAP.
    zone: Output only. The name of the Google Compute Engine
      [zone](https://cloud.google.com/compute/docs/zones#available) in which
      the cluster resides. This field is deprecated, use location instead.
  """

  class NodeSchedulingStrategyValueValuesEnum(_messages.Enum):
    r"""Defines behaviour of k8s scheduler.

    Values:
      STRATEGY_UNSPECIFIED: Use default scheduling strategy.
      PRIORITIZE_LEAST_UTILIZED: Least utilized nodes will be prioritized by
        k8s scheduler.
      PRIORITIZE_MEDIUM_UTILIZED: Nodes with medium utilization will be
        prioritized by k8s scheduler. This option improves interoperability of
        scheduler with cluster autoscaler.
    """
    STRATEGY_UNSPECIFIED = 0
    PRIORITIZE_LEAST_UTILIZED = 1
    PRIORITIZE_MEDIUM_UTILIZED = 2

  class StatusValueValuesEnum(_messages.Enum):
    r"""Output only. The current status of this cluster.

    Values:
      STATUS_UNSPECIFIED: Not set.
      PROVISIONING: The PROVISIONING state indicates the cluster is being
        created.
      RUNNING: The RUNNING state indicates the cluster has been created and is
        fully usable.
      RECONCILING: The RECONCILING state indicates that some work is actively
        being done on the cluster, such as upgrading the master or node
        software. Details can be found in the `statusMessage` field.
      STOPPING: The STOPPING state indicates the cluster is being deleted.
      ERROR: The ERROR state indicates the cluster may be unusable. Details
        can be found in the `statusMessage` field.
      DEGRADED: The DEGRADED state indicates the cluster requires user action
        to restore full functionality. Details can be found in the
        `statusMessage` field.
    """
    STATUS_UNSPECIFIED = 0
    PROVISIONING = 1
    RUNNING = 2
    RECONCILING = 3
    STOPPING = 4
    ERROR = 5
    DEGRADED = 6

  @encoding.MapUnrecognizedFields('additionalProperties')
  class ResourceLabelsValue(_messages.Message):
    r"""The resource labels for the cluster to use to annotate any related
    Compute Engine resources.

    Messages:
      AdditionalProperty: An additional property for a ResourceLabelsValue
        object.

    Fields:
      additionalProperties: Additional properties of type ResourceLabelsValue
    """

    class AdditionalProperty(_messages.Message):
      r"""An additional property for a ResourceLabelsValue object.

      Fields:
        key: Name of the additional property.
        value: A string attribute.
      """

      key = _messages.StringField(1)
      value = _messages.StringField(2)

    additionalProperties = _messages.MessageField('AdditionalProperty', 1, repeated=True)

  @encoding.MapUnrecognizedFields('additionalProperties')
  class TagsValue(_messages.Message):
    r"""Optional. Input only. Immutable. Tag keys/values directly bound to
    this resource. For example: "123/environment": "production",
    "123/costCenter": "marketing"

    Messages:
      AdditionalProperty: An additional property for a TagsValue object.

    Fields:
      additionalProperties: Additional properties of type TagsValue
    """

    class AdditionalProperty(_messages.Message):
      r"""An additional property for a TagsValue object.

      Fields:
        key: Name of the additional property.
        value: A string attribute.
      """

      key = _messages.StringField(1)
      value = _messages.StringField(2)

    additionalProperties = _messages.MessageField('AdditionalProperty', 1, repeated=True)

  addonsConfig = _messages.MessageField('AddonsConfig', 1)
  alphaClusterFeatureGates = _messages.StringField(2, repeated=True)
  anonymousAuthenticationConfig = _messages.MessageField('AnonymousAuthenticationConfig', 3)
  authenticatorGroupsConfig = _messages.MessageField('AuthenticatorGroupsConfig', 4)
  autogke = _messages.MessageField('AutoGKE', 5)
  autopilot = _messages.MessageField('Autopilot', 6)
  autoscaling = _messages.MessageField('ClusterAutoscaling', 7)
  binaryAuthorization = _messages.MessageField('BinaryAuthorization', 8)
  clusterIpv4Cidr = _messages.StringField(9)
  clusterTelemetry = _messages.MessageField('ClusterTelemetry', 10)
  compliancePostureConfig = _messages.MessageField('CompliancePostureConfig', 11)
  concurrentOpsConfig = _messages.MessageField('ConcurrentOpsConfig', 12)
  conditions = _messages.MessageField('StatusCondition', 13, repeated=True)
  confidentialNodes = _messages.MessageField('ConfidentialNodes', 14)
  controlPlaneEgress = _messages.MessageField('ControlPlaneEgress', 15)
  controlPlaneEndpointsConfig = _messages.MessageField('ControlPlaneEndpointsConfig', 16)
  costManagementConfig = _messages.MessageField('CostManagementConfig', 17)
  createTime = _messages.StringField(18)
  currentEmulatedVersion = _messages.StringField(19)
  currentMasterVersion = _messages.StringField(20)
  currentNodeCount = _messages.IntegerField(21, variant=_messages.Variant.INT32)
  currentNodeVersion = _messages.StringField(22)
  databaseEncryption = _messages.MessageField('DatabaseEncryption', 23)
  databaseEncryptionKeyId = _messages.StringField(24)
  defaultMaxPodsConstraint = _messages.MessageField('MaxPodsConstraint', 25)
  description = _messages.StringField(26)
  enableGvnic = _messages.BooleanField(27)
  enableK8sBetaApis = _messages.MessageField('K8sBetaAPIConfig', 28)
  enableKubernetesAlpha = _messages.BooleanField(29)
  enableTpu = _messages.BooleanField(30)
  endpoint = _messages.StringField(31)
  enterpriseConfig = _messages.MessageField('EnterpriseConfig', 32)
  etag = _messages.StringField(33)
  expireTime = _messages.StringField(34)
  fleet = _messages.MessageField('Fleet', 35)
  gkeAutoUpgradeConfig = _messages.MessageField('GkeAutoUpgradeConfig', 36)
  gkeOidcConfig = _messages.MessageField('GkeOidcConfig', 37)
  id = _messages.StringField(38)
  identityServiceConfig = _messages.MessageField('IdentityServiceConfig', 39)
  initialClusterVersion = _messages.StringField(40)
  initialNodeCount = _messages.IntegerField(41, variant=_messages.Variant.INT32)
  instanceGroupUrls = _messages.StringField(42, repeated=True)
  ipAllocationPolicy = _messages.MessageField('IPAllocationPolicy', 43)
  kubernetesObjectsExportConfig = _messages.MessageField('KubernetesObjectsExportConfig', 44)
  labelFingerprint = _messages.StringField(45)
  legacyAbac = _messages.MessageField('LegacyAbac', 46)
  location = _messages.StringField(47)
  locations = _messages.StringField(48, repeated=True)
  loggingConfig = _messages.MessageField('LoggingConfig', 49)
  loggingService = _messages.StringField(50)
  maintenancePolicy = _messages.MessageField('MaintenancePolicy', 51)
  managedConfig = _messages.MessageField('ManagedConfig', 52)
  managedOpentelemetryConfig = _messages.MessageField('ManagedOpenTelemetryConfig', 53)
  master = _messages.MessageField('Master', 54)
  masterAuth = _messages.MessageField('MasterAuth', 55)
  masterAuthorizedNetworksConfig = _messages.MessageField('MasterAuthorizedNetworksConfig', 56)
  masterIpv4CidrBlock = _messages.StringField(57)
  meshCertificates = _messages.MessageField('MeshCertificates', 58)
  monitoringConfig = _messages.MessageField('MonitoringConfig', 59)
  monitoringService = _messages.StringField(60)
  name = _messages.StringField(61)
  network = _messages.StringField(62)
  networkConfig = _messages.MessageField('NetworkConfig', 63)
  networkPolicy = _messages.MessageField('NetworkPolicy', 64)
  nodeConfig = _messages.MessageField('NodeConfig', 65)
  nodeIpv4CidrSize = _messages.IntegerField(66, variant=_messages.Variant.INT32)
  nodePoolAutoConfig = _messages.MessageField('NodePoolAutoConfig', 67)
  nodePoolDefaults = _messages.MessageField('NodePoolDefaults', 68)
  nodePools = _messages.MessageField('NodePool', 69, repeated=True)
  nodeSchedulingStrategy = _messages.EnumField('NodeSchedulingStrategyValueValuesEnum', 70)
  notificationConfig = _messages.MessageField('NotificationConfig', 71)
  parentProductConfig = _messages.MessageField('ParentProductConfig', 72)
  podAutoscaling = _messages.MessageField('PodAutoscaling', 73)
  podSecurityPolicyConfig = _messages.MessageField('PodSecurityPolicyConfig', 74)
  privateCluster = _messages.BooleanField(75)
  privateClusterConfig = _messages.MessageField('PrivateClusterConfig', 76)
  protectConfig = _messages.MessageField('ProtectConfig', 77)
  rbacBindingConfig = _messages.MessageField('RBACBindingConfig', 78)
  releaseChannel = _messages.MessageField('ReleaseChannel', 79)
  resourceLabels = _messages.MessageField('ResourceLabelsValue', 80)
  resourceUsageExportConfig = _messages.MessageField('ResourceUsageExportConfig', 81)
  resourceVersion = _messages.StringField(82)
  rollbackSafeUpgrade = _messages.MessageField('RollbackSafeUpgrade', 83)
  runtimeVulnerabilityInsightConfig = _messages.MessageField('RuntimeVulnerabilityInsightConfig', 84)
  satisfiesPzi = _messages.BooleanField(85)
  satisfiesPzs = _messages.BooleanField(86)
  scheduleUpgradeConfig = _messages.MessageField('ScheduleUpgradeConfig', 87)
  secretManagerConfig = _messages.MessageField('SecretManagerConfig', 88)
  secretSyncConfig = _messages.MessageField('SecretSyncConfig', 89)
  securityPostureConfig = _messages.MessageField('SecurityPostureConfig', 90)
  securityProfile = _messages.MessageField('SecurityProfile', 91)
  selfLink = _messages.StringField(92)
  servicesIpv4Cidr = _messages.StringField(93)
  shieldedNodes = _messages.MessageField('ShieldedNodes', 94)
  status = _messages.EnumField('StatusValueValuesEnum', 95)
  statusMessage = _messages.StringField(96)
  subnetwork = _messages.StringField(97)
  tags = _messages.MessageField('TagsValue', 98)
  tpuConfig = _messages.MessageField('TpuConfig', 99)
  tpuIpv4CidrBlock = _messages.StringField(100)
  userManagedKeysConfig = _messages.MessageField('UserManagedKeysConfig', 101)
  verticalPodAutoscaling = _messages.MessageField('VerticalPodAutoscaling', 102)
  workloadAltsConfig = _messages.MessageField('WorkloadALTSConfig', 103)
  workloadCertificates = _messages.MessageField('WorkloadCertificates', 104)
  workloadConfig = _messages.MessageField('WorkloadConfig', 105)
  workloadIdentityConfig = _messages.MessageField('WorkloadIdentityConfig', 106)
  workloadMonitoringEnabledEap = _messages.BooleanField(107)
  zone = _messages.StringField(108)


class ClusterAutoscaling(_messages.Message):
  r"""ClusterAutoscaling contains global, per-cluster information required by
  Cluster Autoscaler to automatically adjust the size of the cluster and
  create/delete node pools based on the current needs.

  Enums:
    AutoscalingProfileValueValuesEnum: Defines autoscaling behaviour.

  Fields:
    autoprovisioningLocations: The list of Google Compute Engine
      [zones](https://cloud.google.com/compute/docs/zones#available) in which
      the NodePool's nodes can be created by NAP.
    autoprovisioningNodePoolDefaults: AutoprovisioningNodePoolDefaults
      contains defaults for a node pool created by NAP.
    autoscalingProfile: Defines autoscaling behaviour.
    defaultComputeClassConfig: Default compute class is a configuration for
      default compute class.
    enableNodeAutoprovisioning: Enables automatic node pool creation and
      deletion.
    resourceLimits: Contains global constraints regarding minimum and maximum
      amount of resources in the cluster.
  """

  class AutoscalingProfileValueValuesEnum(_messages.Enum):
    r"""Defines autoscaling behaviour.

    Values:
      PROFILE_UNSPECIFIED: No change to autoscaling configuration.
      OPTIMIZE_UTILIZATION: Prioritize optimizing utilization of resources.
      BALANCED: Use default (balanced) autoscaling configuration.
    """
    PROFILE_UNSPECIFIED = 0
    OPTIMIZE_UTILIZATION = 1
    BALANCED = 2

  autoprovisioningLocations = _messages.StringField(1, repeated=True)
  autoprovisioningNodePoolDefaults = _messages.MessageField('AutoprovisioningNodePoolDefaults', 2)
  autoscalingProfile = _messages.EnumField('AutoscalingProfileValueValuesEnum', 3)
  defaultComputeClassConfig = _messages.MessageField('DefaultComputeClassConfig', 4)
  enableNodeAutoprovisioning = _messages.BooleanField(5)
  resourceLimits = _messages.MessageField('ResourceLimit', 6, repeated=True)


class ClusterNetworkPerformanceConfig(_messages.Message):
  r"""Configuration of network bandwidth tiers

  Enums:
    TotalEgressBandwidthTierValueValuesEnum: Specifies the total network
      bandwidth tier for NodePools in the cluster.

  Fields:
    totalEgressBandwidthTier: Specifies the total network bandwidth tier for
      NodePools in the cluster.
  """

  class TotalEgressBandwidthTierValueValuesEnum(_messages.Enum):
    r"""Specifies the total network bandwidth tier for NodePools in the
    cluster.

    Values:
      TIER_UNSPECIFIED: Default value
      TIER_1: Higher bandwidth, actual values based on VM size.
    """
    TIER_UNSPECIFIED = 0
    TIER_1 = 1

  totalEgressBandwidthTier = _messages.EnumField('TotalEgressBandwidthTierValueValuesEnum', 1)


class ClusterTelemetry(_messages.Message):
  r"""Telemetry integration for the cluster.

  Enums:
    TypeValueValuesEnum: Type of the integration.

  Fields:
    type: Type of the integration.
  """

  class TypeValueValuesEnum(_messages.Enum):
    r"""Type of the integration.

    Values:
      UNSPECIFIED: Not set.
      DISABLED: Monitoring integration is disabled.
      ENABLED: Monitoring integration is enabled.
      SYSTEM_ONLY: Only system components are monitored and logged.
    """
    UNSPECIFIED = 0
    DISABLED = 1
    ENABLED = 2
    SYSTEM_ONLY = 3

  type = _messages.EnumField('TypeValueValuesEnum', 1)


class ClusterUpdate(_messages.Message):
  r"""ClusterUpdate describes an update to the cluster. Exactly one update can
  be applied to a cluster with each request, so at most one field can be
  provided.

  Enums:
    DesiredDatapathProviderValueValuesEnum: The desired datapath provider for
      the cluster.
    DesiredInTransitEncryptionConfigValueValuesEnum: Specify the details of
      in-transit encryption.
    DesiredPrivateIpv6GoogleAccessValueValuesEnum: The desired state of IPv6
      connectivity to Google Services.
    DesiredStackTypeValueValuesEnum: The desired stack type of the cluster. If
      a stack type is provided and does not match the current stack type of
      the cluster, update will attempt to change the stack type to the new
      type.

  Fields:
    additionalPodRangesConfig: The additional pod ranges to be added to the
      cluster. These pod ranges can be used by node pools to allocate pod IPs.
    concurrentNodeCount: Controls how many nodes to upgrade in parallel. A
      maximum of 20 concurrent nodes is allowed. Deprecated. This feature will
      be replaced by an equivalent new feature that gives better control over
      concurrency. It is not planned to propagate this field to GA and it will
      be eventually removed from the API.
    desiredAdditionalIpRangesConfig: The desired config for additional
      subnetworks attached to the cluster.
    desiredAddonsConfig: Configurations for the various addons available to
      run in the cluster.
    desiredAnonymousAuthenticationConfig: Configuration for limiting anonymous
      access to all endpoints except the health checks.
    desiredAuthenticatorGroupsConfig: AuthenticatorGroupsConfig specifies the
      config for the cluster security groups settings.
    desiredAutoGke: AutoGKE is the configuration for AutoGKE settings on the
      cluster.
    desiredAutoIpamConfig: AutoIpamConfig contains all information related to
      Auto IPAM
    desiredAutopilot: The desired Autopilot configuration for the cluster.
    desiredAutopilotInsecureKubeletReadonlyPortEnabled: Enable/disable kubelet
      readonly port for autopilot cluster
    desiredAutopilotWorkloadPolicyConfig: WorkloadPolicyConfig is the
      configuration related to GCW workload policy
    desiredBinaryAuthorization: The desired configuration options for the
      Binary Authorization feature.
    desiredCloudNatStatus: The desired status of Cloud NAT for this cluster.
      Deprecated: use desired_default_snat_status instead.
    desiredClusterAutoscaling: The desired cluster-level autoscaling
      configuration.
    desiredClusterTelemetry: The desired telemetry integration for the
      cluster.
    desiredCompliancePostureConfig: Enable/Disable Compliance Posture features
      for the cluster.
    desiredConcurrentOpsConfig: Desired value for the cluster's
      concurrent_ops_config.
    desiredContainerdConfig: The desired containerd config for the cluster.
    desiredControlPlaneEgress: The desired control plane egress control config
      for the cluster.
    desiredControlPlaneEndpointsConfig: Control plane endpoints configuration.
    desiredCostManagementConfig: The desired configuration for the fine-
      grained cost management feature.
    desiredDatabaseEncryption: Configuration of etcd encryption.
    desiredDatapathProvider: The desired datapath provider for the cluster.
    desiredDefaultEnablePrivateNodes: Override the default setting of whether
      future created nodes have private IP addresses only, namely
      NetworkConfig.default_enable_private_nodes
    desiredDefaultSnatStatus: The desired status of whether to disable default
      sNAT for this cluster.
    desiredDisableL4LbFirewallReconciliation: Enable/Disable L4 LB VPC
      firewall reconciliation for the cluster.
    desiredDnsConfig: DNSConfig contains clusterDNS config for this cluster.
    desiredEnableCiliumClusterwideNetworkPolicy: Enable/Disable Cilium
      Clusterwide Network Policy for the cluster.
    desiredEnableFqdnNetworkPolicy: Enable/Disable FQDN Network Policy for the
      cluster.
    desiredEnableGvnic: to be deprecated TODO(b/192680711), replaced with
      UpdateNodePoolRequest.Gvnic = 29
    desiredEnableMultiNetworking: Enable/Disable Multi-Networking for the
      cluster
    desiredEnablePrivateEndpoint: Enable/Disable private endpoint for the
      cluster's master. Deprecated: Use desired_control_plane_endpoints_config
      .ip_endpoints_config.enable_public_endpoint instead. Note that the value
      of enable_public_endpoint is reversed: if enable_private_endpoint is
      false, then enable_public_endpoint will be true.
    desiredEnterpriseConfig: The desired enterprise configuration for the
      cluster. Deprecated: GKE Enterprise features are now available without
      an Enterprise tier.
    desiredFleet: The desired fleet configuration for the cluster.
    desiredGatewayApiConfig: The desired config of Gateway API on this
      cluster.
    desiredGcfsConfig: The desired GCFS config for the cluster.
    desiredGkeOidcConfig: Security message for security related configuration
    desiredHostMaintenancePolicy: HostMaintenancePolicy contains the desired
      maintenance policy for the Google Compute Engine hosts.
    desiredIdentityServiceConfig: The desired Identity Service component
      configuration.
    desiredImage: The desired name of the image to use for this node. This is
      used to create clusters using a custom image.
    desiredImageProject: The project containing the desired image to use for
      this node. This is used to create clusters using a custom image.
    desiredImageType: The desired image type for the node pool. NOTE: Set the
      "desired_node_pool" field as well.
    desiredInTransitEncryptionConfig: Specify the details of in-transit
      encryption.
    desiredIntraNodeVisibilityConfig: The desired config of Intra-node
      visibility.
    desiredK8sBetaApis: Desired Beta APIs to be enabled for cluster.
    desiredKubernetesObjectsExportConfig: Configuration which enables export
      of kubernetes objects changes and snapshots to specified targets.
    desiredL4ilbSubsettingConfig: The desired L4 Internal Load Balancer
      Subsetting configuration.
    desiredLocations: The desired list of Google Compute Engine
      [zones](https://cloud.google.com/compute/docs/zones#available) in which
      the cluster's nodes should be located. This list must always include the
      cluster's primary zone. Warning: changing cluster locations will update
      the locations of all node pools and will result in nodes being added
      and/or removed.
    desiredLoggingConfig: The desired logging configuration.
    desiredLoggingService: The logging service the cluster should use to write
      logs. Currently available options: * `logging.googleapis.com/kubernetes`
      - The Cloud Logging service with a Kubernetes-native resource model *
      `logging.googleapis.com` - The legacy Cloud Logging service (no longer
      available as of GKE 1.15). * `none` - no logs will be exported from the
      cluster. If left as an empty string,`logging.googleapis.com/kubernetes`
      will be used for GKE 1.14+ or `logging.googleapis.com` for earlier
      versions.
    desiredLustreConfig: The desired lustre config for the cluster.
    desiredManagedConfig: The desired managed config for the cluster.
    desiredManagedOpentelemetryConfig: The desired managed open telemetry
      configuration.
    desiredMaster: Configuration for master components.
    desiredMasterAuthorizedNetworksConfig: The desired configuration options
      for master authorized networks feature. Deprecated: Use desired_control_
      plane_endpoints_config.ip_endpoints_config.authorized_networks_config
      instead.
    desiredMasterVersion: The Kubernetes version to change the master to.
      Users may specify either explicit versions offered by Kubernetes Engine
      or version aliases, which have the following behavior: - "latest": picks
      the highest valid Kubernetes version - "1.X": picks the highest valid
      patch+gke.N patch in the 1.X version - "1.X.Y": picks the highest valid
      gke.N patch in the 1.X.Y version - "1.X.Y-gke.N": picks an explicit
      Kubernetes version - "-": picks the default Kubernetes version
    desiredMeshCertificates: Configuration for issuance of mTLS keys and
      certificates to Kubernetes pods.
    desiredMonitoringConfig: The desired monitoring configuration.
    desiredMonitoringService: The monitoring service the cluster should use to
      write metrics. Currently available options: *
      `monitoring.googleapis.com/kubernetes` - The Cloud Monitoring service
      with a Kubernetes-native resource model * `monitoring.googleapis.com` -
      The legacy Cloud Monitoring service (no longer available as of GKE
      1.15). * `none` - No metrics will be exported from the cluster. If left
      as an empty string,`monitoring.googleapis.com/kubernetes` will be used
      for GKE 1.14+ or `monitoring.googleapis.com` for earlier versions.
    desiredNetworkPerformanceConfig: The desired network performance config.
    desiredNetworkTierConfig: The desired network tier configuration for the
      cluster.
    desiredNodeKubeletConfig: The desired node kubelet config for the cluster.
    desiredNodeNetworkPolicy: NodeNetworkPolicy specifies the config for the
      node firewall feature. This feature is only supported with
      DatapathProvider=ADVANCED_DATAPATH.
    desiredNodePoolAutoConfigKubeletConfig: The desired node kubelet config
      for all auto-provisioned node pools in autopilot clusters and node auto-
      provisioning enabled clusters.
    desiredNodePoolAutoConfigLinuxNodeConfig: The desired Linux node config
      for all auto-provisioned node pools in autopilot clusters and node auto-
      provisioning enabled clusters. Currently only `cgroup_mode` can be set
      here.
    desiredNodePoolAutoConfigNetworkTags: The desired network tags that apply
      to all auto-provisioned node pools in autopilot clusters and node auto-
      provisioning enabled clusters.
    desiredNodePoolAutoConfigResourceManagerTags: The desired resource manager
      tags that apply to all auto-provisioned node pools in autopilot clusters
      and node auto-provisioning enabled clusters.
    desiredNodePoolAutoscaling: Autoscaler configuration for the node pool
      specified in desired_node_pool_id. If there is only one pool in the
      cluster and desired_node_pool_id is not provided then the change applies
      to that single node pool.
    desiredNodePoolId: The node pool to be upgraded. This field is mandatory
      if "desired_node_version", "desired_image_family",
      "desired_node_pool_autoscaling", or "desired_workload_metadata_config"
      is specified and there is more than one node pool on the cluster.
    desiredNodePoolLoggingConfig: The desired node pool logging configuration
      defaults for the cluster.
    desiredNodeVersion: The Kubernetes version to change the nodes to
      (typically an upgrade). Users may specify either explicit versions
      offered by Kubernetes Engine or version aliases, which have the
      following behavior: - "latest": picks the highest valid Kubernetes
      version - "1.X": picks the highest valid patch+gke.N patch in the 1.X
      version - "1.X.Y": picks the highest valid gke.N patch in the 1.X.Y
      version - "1.X.Y-gke.N": picks an explicit Kubernetes version - "-":
      picks the Kubernetes master version
    desiredNotificationConfig: The desired notification configuration.
    desiredParentProductConfig: The desired parent product config for the
      cluster.
    desiredPodAutoscaling: The desired config for pod autoscaling.
    desiredPodSecurityPolicyConfig: The desired configuration options for the
      PodSecurityPolicy feature.
    desiredPrivateClusterConfig: The desired private cluster configuration.
      master_global_access_config is the only field that can be changed via
      this field. See also ClusterUpdate.desired_enable_private_endpoint for
      modifying other fields within PrivateClusterConfig. Deprecated: Use
      desired_control_plane_endpoints_config.ip_endpoints_config.global_access
      instead.
    desiredPrivateIpv6Access: The desired status of Private IPv6 access for
      this cluster. Deprecated. Use desired_private_ipv6_google_access
      instead.
    desiredPrivateIpv6GoogleAccess: The desired state of IPv6 connectivity to
      Google Services.
    desiredPrivilegedAdmissionConfig: The desired privileged admission config
      for the cluster.
    desiredProtectConfig: Deprecated: Use DesiredSecurityPostureConfig
      instead. Enable/Disable Protect API features for the cluster.
    desiredRbacBindingConfig: RBACBindingConfig allows user to restrict
      ClusterRoleBindings an RoleBindings that can be created.
    desiredReleaseChannel: The desired release channel configuration.
    desiredResourceUsageExportConfig: The desired configuration for exporting
      resource usage.
    desiredRollbackSafeUpgrade: The desired rollback safe upgrade
      configuration.
    desiredRuntimeVulnerabilityInsightConfig: Enable/Disable RVI features for
      the cluster.
    desiredScheduleUpgradeConfig: The desired schedule upgrade configuration
      for the cluster.
    desiredSecretManagerConfig: Enable/Disable Secret Manager Config.
    desiredSecretSyncConfig: The desired secret sync config for the cluster.
    desiredSecurityPostureConfig: Enable/Disable Security Posture API features
      for the cluster.
    desiredServiceExternalIpsConfig: ServiceExternalIPsConfig specifies the
      config for the use of Services with ExternalIPs field.
    desiredShieldedNodes: Configuration for Shielded Nodes.
    desiredStableFleetConfig: StableFleetConfig contains the desired stable
      fleet config for the cluster. This is deprecated. Use
      HostMaintenancePolicy instead.
    desiredStackType: The desired stack type of the cluster. If a stack type
      is provided and does not match the current stack type of the cluster,
      update will attempt to change the stack type to the new type.
    desiredTpuConfig: The desired Cloud TPU configuration. This field is
      deprecated due to the deprecation of 2VM TPU. The end of life date for
      2VM TPU is 2025-04-25.
    desiredUserManagedKeysConfig: The desired user managed keys config for the
      cluster.
    desiredVerticalPodAutoscaling: Cluster-level Vertical Pod Autoscaling
      configuration.
    desiredWorkloadAltsConfig: Configuration for direct-path (via ALTS) with
      workload identity.
    desiredWorkloadCertificates: Configuration for issuance of mTLS keys and
      certificates to Kubernetes pods.
    desiredWorkloadConfig: Enable/Disable Workload Configuration for the
      cluster.
    desiredWorkloadIdentityConfig: Configuration for Workload Identity.
    desiredWorkloadMonitoringEapConfig: Configuration for workload monitoring
      EAP.
    enableK8sBetaApis: Kubernetes open source beta apis enabled on the
      cluster. Only beta apis
    etag: The current etag of the cluster. If an etag is provided and does not
      match the current etag of the cluster, update will be blocked and an
      ABORTED error will be returned.
    gkeAutoUpgradeConfig: Configuration for GKE auto upgrade.
    privateClusterConfig: The desired private cluster configuration. Has no
      effect. Use desired_private_cluster_config instead.
    removedAdditionalPodRangesConfig: The additional pod ranges that are to be
      removed from the cluster. The pod ranges specified here must have been
      specified earlier in the 'additional_pod_ranges_config' argument.
    securityProfile: User may change security profile during update
    userManagedKeysConfig: The Custom keys configuration for the cluster. This
      field is deprecated. Use ClusterUpdate.desired_user_managed_keys_config
      instead.
  """

  class DesiredDatapathProviderValueValuesEnum(_messages.Enum):
    r"""The desired datapath provider for the cluster.

    Values:
      DATAPATH_PROVIDER_UNSPECIFIED: Default value.
      LEGACY_DATAPATH: Use the IPTables implementation based on kube-proxy.
      ADVANCED_DATAPATH: Use the eBPF based data plane with additional
        visibility features.
      MIGRATE_TO_ADVANCED_DATAPATH: Cluster has some existing nodes but new
        nodes should use ADVANCED_DATAPATH.
      MIGRATE_TO_LEGACY_DATAPATH: Cluster has some existing nodes but new
        nodes should use LEGACY_DATAPATH.
    """
    DATAPATH_PROVIDER_UNSPECIFIED = 0
    LEGACY_DATAPATH = 1
    ADVANCED_DATAPATH = 2
    MIGRATE_TO_ADVANCED_DATAPATH = 3
    MIGRATE_TO_LEGACY_DATAPATH = 4

  class DesiredInTransitEncryptionConfigValueValuesEnum(_messages.Enum):
    r"""Specify the details of in-transit encryption.

    Values:
      IN_TRANSIT_ENCRYPTION_CONFIG_UNSPECIFIED: Unspecified, will be inferred
        as default - IN_TRANSIT_ENCRYPTION_UNSPECIFIED.
      IN_TRANSIT_ENCRYPTION_DISABLED: In-transit encryption is disabled.
      IN_TRANSIT_ENCRYPTION_INTER_NODE_TRANSPARENT: Data in-transit is
        encrypted with inter-node transparent encryption.
    """
    IN_TRANSIT_ENCRYPTION_CONFIG_UNSPECIFIED = 0
    IN_TRANSIT_ENCRYPTION_DISABLED = 1
    IN_TRANSIT_ENCRYPTION_INTER_NODE_TRANSPARENT = 2

  class DesiredPrivateIpv6GoogleAccessValueValuesEnum(_messages.Enum):
    r"""The desired state of IPv6 connectivity to Google Services.

    Values:
      PRIVATE_IPV6_GOOGLE_ACCESS_UNSPECIFIED: Default value. Same as DISABLED
      PRIVATE_IPV6_GOOGLE_ACCESS_DISABLED: No private access to or from Google
        Services
      PRIVATE_IPV6_GOOGLE_ACCESS_TO_GOOGLE: Enables private IPv6 access to
        Google Services from GKE
      PRIVATE_IPV6_GOOGLE_ACCESS_BIDIRECTIONAL: Enables private IPv6 access to
        and from Google Services
    """
    PRIVATE_IPV6_GOOGLE_ACCESS_UNSPECIFIED = 0
    PRIVATE_IPV6_GOOGLE_ACCESS_DISABLED = 1
    PRIVATE_IPV6_GOOGLE_ACCESS_TO_GOOGLE = 2
    PRIVATE_IPV6_GOOGLE_ACCESS_BIDIRECTIONAL = 3

  class DesiredStackTypeValueValuesEnum(_messages.Enum):
    r"""The desired stack type of the cluster. If a stack type is provided and
    does not match the current stack type of the cluster, update will attempt
    to change the stack type to the new type.

    Values:
      STACK_TYPE_UNSPECIFIED: By default, the clusters will be IPV4 only
      IPV4: The value used if the cluster is a IPV4 only
      IPV4_IPV6: The value used if the cluster is a dual stack cluster
    """
    STACK_TYPE_UNSPECIFIED = 0
    IPV4 = 1
    IPV4_IPV6 = 2

  additionalPodRangesConfig = _messages.MessageField('AdditionalPodRangesConfig', 1)
  concurrentNodeCount = _messages.IntegerField(2, variant=_messages.Variant.INT32)
  desiredAdditionalIpRangesConfig = _messages.MessageField('DesiredAdditionalIPRangesConfig', 3)
  desiredAddonsConfig = _messages.MessageField('AddonsConfig', 4)
  desiredAnonymousAuthenticationConfig = _messages.MessageField('AnonymousAuthenticationConfig', 5)
  desiredAuthenticatorGroupsConfig = _messages.MessageField('AuthenticatorGroupsConfig', 6)
  desiredAutoGke = _messages.MessageField('AutoGKE', 7)
  desiredAutoIpamConfig = _messages.MessageField('AutoIpamConfig', 8)
  desiredAutopilot = _messages.MessageField('Autopilot', 9)
  desiredAutopilotInsecureKubeletReadonlyPortEnabled = _messages.BooleanField(10)
  desiredAutopilotWorkloadPolicyConfig = _messages.MessageField('WorkloadPolicyConfig', 11)
  desiredBinaryAuthorization = _messages.MessageField('BinaryAuthorization', 12)
  desiredCloudNatStatus = _messages.MessageField('CloudNatStatus', 13)
  desiredClusterAutoscaling = _messages.MessageField('ClusterAutoscaling', 14)
  desiredClusterTelemetry = _messages.MessageField('ClusterTelemetry', 15)
  desiredCompliancePostureConfig = _messages.MessageField('CompliancePostureConfig', 16)
  desiredConcurrentOpsConfig = _messages.MessageField('ConcurrentOpsConfig', 17)
  desiredContainerdConfig = _messages.MessageField('ContainerdConfig', 18)
  desiredControlPlaneEgress = _messages.MessageField('ControlPlaneEgress', 19)
  desiredControlPlaneEndpointsConfig = _messages.MessageField('ControlPlaneEndpointsConfig', 20)
  desiredCostManagementConfig = _messages.MessageField('CostManagementConfig', 21)
  desiredDatabaseEncryption = _messages.MessageField('DatabaseEncryption', 22)
  desiredDatapathProvider = _messages.EnumField('DesiredDatapathProviderValueValuesEnum', 23)
  desiredDefaultEnablePrivateNodes = _messages.BooleanField(24)
  desiredDefaultSnatStatus = _messages.MessageField('DefaultSnatStatus', 25)
  desiredDisableL4LbFirewallReconciliation = _messages.BooleanField(26)
  desiredDnsConfig = _messages.MessageField('DNSConfig', 27)
  desiredEnableCiliumClusterwideNetworkPolicy = _messages.BooleanField(28)
  desiredEnableFqdnNetworkPolicy = _messages.BooleanField(29)
  desiredEnableGvnic = _messages.BooleanField(30)
  desiredEnableMultiNetworking = _messages.BooleanField(31)
  desiredEnablePrivateEndpoint = _messages.BooleanField(32)
  desiredEnterpriseConfig = _messages.MessageField('DesiredEnterpriseConfig', 33)
  desiredFleet = _messages.MessageField('Fleet', 34)
  desiredGatewayApiConfig = _messages.MessageField('GatewayAPIConfig', 35)
  desiredGcfsConfig = _messages.MessageField('GcfsConfig', 36)
  desiredGkeOidcConfig = _messages.MessageField('GkeOidcConfig', 37)
  desiredHostMaintenancePolicy = _messages.MessageField('HostMaintenancePolicy', 38)
  desiredIdentityServiceConfig = _messages.MessageField('IdentityServiceConfig', 39)
  desiredImage = _messages.StringField(40)
  desiredImageProject = _messages.StringField(41)
  desiredImageType = _messages.StringField(42)
  desiredInTransitEncryptionConfig = _messages.EnumField('DesiredInTransitEncryptionConfigValueValuesEnum', 43)
  desiredIntraNodeVisibilityConfig = _messages.MessageField('IntraNodeVisibilityConfig', 44)
  desiredK8sBetaApis = _messages.MessageField('K8sBetaAPIConfig', 45)
  desiredKubernetesObjectsExportConfig = _messages.MessageField('KubernetesObjectsExportConfig', 46)
  desiredL4ilbSubsettingConfig = _messages.MessageField('ILBSubsettingConfig', 47)
  desiredLocations = _messages.StringField(48, repeated=True)
  desiredLoggingConfig = _messages.MessageField('LoggingConfig', 49)
  desiredLoggingService = _messages.StringField(50)
  desiredLustreConfig = _messages.MessageField('LustreConfig', 51)
  desiredManagedConfig = _messages.MessageField('ManagedConfig', 52)
  desiredManagedOpentelemetryConfig = _messages.MessageField('ManagedOpenTelemetryConfig', 53)
  desiredMaster = _messages.MessageField('Master', 54)
  desiredMasterAuthorizedNetworksConfig = _messages.MessageField('MasterAuthorizedNetworksConfig', 55)
  desiredMasterVersion = _messages.StringField(56)
  desiredMeshCertificates = _messages.MessageField('MeshCertificates', 57)
  desiredMonitoringConfig = _messages.MessageField('MonitoringConfig', 58)
  desiredMonitoringService = _messages.StringField(59)
  desiredNetworkPerformanceConfig = _messages.MessageField('ClusterNetworkPerformanceConfig', 60)
  desiredNetworkTierConfig = _messages.MessageField('NetworkTierConfig', 61)
  desiredNodeKubeletConfig = _messages.MessageField('NodeKubeletConfig', 62)
  desiredNodeNetworkPolicy = _messages.MessageField('NodeNetworkPolicy', 63)
  desiredNodePoolAutoConfigKubeletConfig = _messages.MessageField('NodeKubeletConfig', 64)
  desiredNodePoolAutoConfigLinuxNodeConfig = _messages.MessageField('LinuxNodeConfig', 65)
  desiredNodePoolAutoConfigNetworkTags = _messages.MessageField('NetworkTags', 66)
  desiredNodePoolAutoConfigResourceManagerTags = _messages.MessageField('ResourceManagerTags', 67)
  desiredNodePoolAutoscaling = _messages.MessageField('NodePoolAutoscaling', 68)
  desiredNodePoolId = _messages.StringField(69)
  desiredNodePoolLoggingConfig = _messages.MessageField('NodePoolLoggingConfig', 70)
  desiredNodeVersion = _messages.StringField(71)
  desiredNotificationConfig = _messages.MessageField('NotificationConfig', 72)
  desiredParentProductConfig = _messages.MessageField('ParentProductConfig', 73)
  desiredPodAutoscaling = _messages.MessageField('PodAutoscaling', 74)
  desiredPodSecurityPolicyConfig = _messages.MessageField('PodSecurityPolicyConfig', 75)
  desiredPrivateClusterConfig = _messages.MessageField('PrivateClusterConfig', 76)
  desiredPrivateIpv6Access = _messages.MessageField('PrivateIPv6Status', 77)
  desiredPrivateIpv6GoogleAccess = _messages.EnumField('DesiredPrivateIpv6GoogleAccessValueValuesEnum', 78)
  desiredPrivilegedAdmissionConfig = _messages.MessageField('PrivilegedAdmissionConfig', 79)
  desiredProtectConfig = _messages.MessageField('ProtectConfig', 80)
  desiredRbacBindingConfig = _messages.MessageField('RBACBindingConfig', 81)
  desiredReleaseChannel = _messages.MessageField('ReleaseChannel', 82)
  desiredResourceUsageExportConfig = _messages.MessageField('ResourceUsageExportConfig', 83)
  desiredRollbackSafeUpgrade = _messages.MessageField('RollbackSafeUpgrade', 84)
  desiredRuntimeVulnerabilityInsightConfig = _messages.MessageField('RuntimeVulnerabilityInsightConfig', 85)
  desiredScheduleUpgradeConfig = _messages.MessageField('ScheduleUpgradeConfig', 86)
  desiredSecretManagerConfig = _messages.MessageField('SecretManagerConfig', 87)
  desiredSecretSyncConfig = _messages.MessageField('SecretSyncConfig', 88)
  desiredSecurityPostureConfig = _messages.MessageField('SecurityPostureConfig', 89)
  desiredServiceExternalIpsConfig = _messages.MessageField('ServiceExternalIPsConfig', 90)
  desiredShieldedNodes = _messages.MessageField('ShieldedNodes', 91)
  desiredStableFleetConfig = _messages.MessageField('StableFleetConfig', 92)
  desiredStackType = _messages.EnumField('DesiredStackTypeValueValuesEnum', 93)
  desiredTpuConfig = _messages.MessageField('TpuConfig', 94)
  desiredUserManagedKeysConfig = _messages.MessageField('UserManagedKeysConfig', 95)
  desiredVerticalPodAutoscaling = _messages.MessageField('VerticalPodAutoscaling', 96)
  desiredWorkloadAltsConfig = _messages.MessageField('WorkloadALTSConfig', 97)
  desiredWorkloadCertificates = _messages.MessageField('WorkloadCertificates', 98)
  desiredWorkloadConfig = _messages.MessageField('WorkloadConfig', 99)
  desiredWorkloadIdentityConfig = _messages.MessageField('WorkloadIdentityConfig', 100)
  desiredWorkloadMonitoringEapConfig = _messages.MessageField('WorkloadMonitoringEapConfig', 101)
  enableK8sBetaApis = _messages.MessageField('K8sBetaAPIConfig', 102)
  etag = _messages.StringField(103)
  gkeAutoUpgradeConfig = _messages.MessageField('GkeAutoUpgradeConfig', 104)
  privateClusterConfig = _messages.MessageField('PrivateClusterConfig', 105)
  removedAdditionalPodRangesConfig = _messages.MessageField('AdditionalPodRangesConfig', 106)
  securityProfile = _messages.MessageField('SecurityProfile', 107)
  userManagedKeysConfig = _messages.MessageField('UserManagedKeysConfig', 108)


class ClusterUpgradeInfo(_messages.Message):
  r"""ClusterUpgradeInfo contains the upgrade information of a cluster.

  Enums:
    AutoUpgradeStatusValueListEntryValuesEnum:
    PausedReasonValueListEntryValuesEnum:

  Fields:
    autoUpgradeStatus: The auto upgrade status.
    endOfExtendedSupportTimestamp: The cluster's current minor version's end
      of extended support timestamp.
    endOfStandardSupportTimestamp: The cluster's current minor version's end
      of standard support timestamp.
    minorTargetVersion: minor_target_version indicates the target version for
      minor upgrade.
    patchTargetVersion: patch_target_version indicates the target version for
      patch upgrade.
    pausedReason: The auto upgrade paused reason.
    rollbackSafeUpgradeStatus: The cluster's rollback-safe upgrade status.
    upgradeDetails: The list of past auto upgrades.
  """

  class AutoUpgradeStatusValueListEntryValuesEnum(_messages.Enum):
    r"""AutoUpgradeStatusValueListEntryValuesEnum enum type.

    Values:
      UNKNOWN: UNKNOWN indicates an unknown status.
      ACTIVE: ACTIVE indicates an active status.
      MINOR_UPGRADE_PAUSED: MINOR_UPGRADE_PAUSED indicates the minor version
        upgrade is paused.
      UPGRADE_PAUSED: UPGRADE_PAUSED indicates the upgrade is paused.
    """
    UNKNOWN = 0
    ACTIVE = 1
    MINOR_UPGRADE_PAUSED = 2
    UPGRADE_PAUSED = 3

  class PausedReasonValueListEntryValuesEnum(_messages.Enum):
    r"""PausedReasonValueListEntryValuesEnum enum type.

    Values:
      AUTO_UPGRADE_PAUSED_REASON_UNSPECIFIED:
        AUTO_UPGRADE_PAUSED_REASON_UNSPECIFIED indicates an unspecified
        reason.
      MAINTENANCE_WINDOW: MAINTENANCE_WINDOW indicates the cluster is outside
        customer maintenance window.
      MAINTENANCE_EXCLUSION_NO_UPGRADES: MAINTENANCE_EXCLUSION_NO_UPGRADES
        indicates the cluster is in a maintenance exclusion with scope
        NO_UPGRADES.
      MAINTENANCE_EXCLUSION_NO_MINOR_UPGRADES:
        MAINTENANCE_EXCLUSION_NO_MINOR_UPGRADES indicates the cluster is in a
        maintenance exclusion with scope NO_MINOR_UPGRADES.
      CLUSTER_DISRUPTION_BUDGET: CLUSTER_DISRUPTION_BUDGET indicates the
        cluster is outside the cluster disruption budget.
      CLUSTER_DISRUPTION_BUDGET_MINOR_UPGRADE:
        CLUSTER_DISRUPTION_BUDGET_MINOR_UPGRADE indicates the cluster is
        outside the cluster disruption budget for minor version upgrade.
      SYSTEM_CONFIG: SYSTEM_CONFIG indicates the cluster upgrade is paused by
        system config.
    """
    AUTO_UPGRADE_PAUSED_REASON_UNSPECIFIED = 0
    MAINTENANCE_WINDOW = 1
    MAINTENANCE_EXCLUSION_NO_UPGRADES = 2
    MAINTENANCE_EXCLUSION_NO_MINOR_UPGRADES = 3
    CLUSTER_DISRUPTION_BUDGET = 4
    CLUSTER_DISRUPTION_BUDGET_MINOR_UPGRADE = 5
    SYSTEM_CONFIG = 6

  autoUpgradeStatus = _messages.EnumField('AutoUpgradeStatusValueListEntryValuesEnum', 1, repeated=True)
  endOfExtendedSupportTimestamp = _messages.StringField(2)
  endOfStandardSupportTimestamp = _messages.StringField(3)
  minorTargetVersion = _messages.StringField(4)
  patchTargetVersion = _messages.StringField(5)
  pausedReason = _messages.EnumField('PausedReasonValueListEntryValuesEnum', 6, repeated=True)
  rollbackSafeUpgradeStatus = _messages.MessageField('RollbackSafeUpgradeStatus', 7)
  upgradeDetails = _messages.MessageField('UpgradeDetails', 8, repeated=True)


class CompatibilityStatus(_messages.Message):
  r"""CompatibilityStatus is the status regarding the control plane's
  compatibility.

  Fields:
    downgradableVersion: Output only. The GKE version that the cluster can be
      safely downgraded to if the cluster is emulating the previous minor
      version. It is usually the cluster's previous version before a minor
      version upgrade.
    emulatedVersionTime: Output only. Last time the control plane became
      available after a minor version binary upgrade with emulated version
      set. It indicates the last time the cluster entered the rollback safe
      mode.
  """

  downgradableVersion = _messages.StringField(1)
  emulatedVersionTime = _messages.StringField(2)


class CompleteControlPlaneUpgradeRequest(_messages.Message):
  r"""CompleteControlPlaneUpgradeRequest sets the name of target cluster to
  complete upgrade.

  Fields:
    version: API request version that initiates this operation.
  """

  version = _messages.StringField(1)


class CompleteConvertToAutopilotRequest(_messages.Message):
  r"""CompleteConvertToAutopilotRequest completes the Autopilot conversion for
  a given cluster.
  """



class CompleteIPRotationRequest(_messages.Message):
  r"""CompleteIPRotationRequest moves the cluster master back into single-IP
  mode.

  Fields:
    clusterId: Deprecated. The name of the cluster. This field has been
      deprecated and replaced by the name field.
    name: The name (project, location, cluster name) of the cluster to
      complete IP rotation. Specified in the format
      `projects/*/locations/*/clusters/*`.
    projectId: Deprecated. The Google Developers Console [project ID or
      project number](https://cloud.google.com/resource-manager/docs/creating-
      managing-projects). This field has been deprecated and replaced by the
      name field.
    zone: Deprecated. The name of the Google Compute Engine
      [zone](https://cloud.google.com/compute/docs/zones#available) in which
      the cluster resides. This field has been deprecated and replaced by the
      name field.
  """

  clusterId = _messages.StringField(1)
  name = _messages.StringField(2)
  projectId = _messages.StringField(3)
  zone = _messages.StringField(4)


class CompleteNodePoolUpgradeRequest(_messages.Message):
  r"""CompleteNodePoolUpgradeRequest sets the name of target node pool to
  complete upgrade.
  """



class CompliancePostureConfig(_messages.Message):
  r"""CompliancePostureConfig defines the settings needed to enable/disable
  features for the Compliance Posture.

  Enums:
    ModeValueValuesEnum: Defines the enablement mode for Compliance Posture.

  Fields:
    complianceStandards: List of enabled compliance standards.
    mode: Defines the enablement mode for Compliance Posture.
  """

  class ModeValueValuesEnum(_messages.Enum):
    r"""Defines the enablement mode for Compliance Posture.

    Values:
      MODE_UNSPECIFIED: Default value not specified.
      DISABLED: Disables Compliance Posture features on the cluster.
      ENABLED: Enables Compliance Posture features on the cluster.
    """
    MODE_UNSPECIFIED = 0
    DISABLED = 1
    ENABLED = 2

  complianceStandards = _messages.MessageField('ComplianceStandard', 1, repeated=True)
  mode = _messages.EnumField('ModeValueValuesEnum', 2)


class ComplianceStandard(_messages.Message):
  r"""Defines the details of a compliance standard.

  Fields:
    standard: Name of the compliance standard.
  """

  standard = _messages.StringField(1)


class ConcurrentOpsConfig(_messages.Message):
  r"""Configures operations using concurrent ops.

  Fields:
    enableConcurrentCreateNodePool: Enables concurrent ops for supported
      CreateNodePool cases. Some fields may still use legacy ops.
    enableConcurrentDeleteNodePool: Enables concurrent ops for supported
      DeleteNodePool cases. Some fields may still use legacy ops.
    enableConcurrentResizeNodePool: Enabled concurrent ops for ResizeNodePool
      operations.
    enableConcurrentRollbackNodePool: Enables concurrent ops for supported
      RollbackNodePool cases. Some fields may still use legacy ops.
    enableConcurrentUpdateNodePoolVersion: Enables concurrent ops for
      UpdateNodePool with only the version field. Some cluster features may
      still use legacy ops.
  """

  enableConcurrentCreateNodePool = _messages.BooleanField(1)
  enableConcurrentDeleteNodePool = _messages.BooleanField(2)
  enableConcurrentResizeNodePool = _messages.BooleanField(3)
  enableConcurrentRollbackNodePool = _messages.BooleanField(4)
  enableConcurrentUpdateNodePoolVersion = _messages.BooleanField(5)


class ConfidentialNodes(_messages.Message):
  r"""ConfidentialNodes is configuration for the confidential nodes feature,
  which makes nodes run on confidential VMs.

  Enums:
    ConfidentialInstanceTypeValueValuesEnum: Defines the type of technology
      used by the confidential nodes.

  Fields:
    confidentialInstanceType: Defines the type of technology used by the
      confidential nodes.
    enabled: Whether Confidential Nodes feature is enabled.
  """

  class ConfidentialInstanceTypeValueValuesEnum(_messages.Enum):
    r"""Defines the type of technology used by the confidential nodes.

    Values:
      CONFIDENTIAL_INSTANCE_TYPE_UNSPECIFIED: No type specified. Do not use
        this value.
      SEV: AMD Secure Encrypted Virtualization.
      SEV_SNP: AMD Secure Encrypted Virtualization - Secure Nested Paging.
      TDX: Intel Trust Domain eXtension.
    """
    CONFIDENTIAL_INSTANCE_TYPE_UNSPECIFIED = 0
    SEV = 1
    SEV_SNP = 2
    TDX = 3

  confidentialInstanceType = _messages.EnumField('ConfidentialInstanceTypeValueValuesEnum', 1)
  enabled = _messages.BooleanField(2)


class ConfigConnectorConfig(_messages.Message):
  r"""Configuration options for the Config Connector add-on.

  Fields:
    enabled: Whether Cloud Connector is enabled for this cluster.
  """

  enabled = _messages.BooleanField(1)


class ConsumptionMeteringConfig(_messages.Message):
  r"""Parameters for controlling consumption metering.

  Fields:
    enabled: Whether to enable consumption metering for this cluster. If
      enabled, a second BigQuery table will be created to hold resource
      consumption records.
  """

  enabled = _messages.BooleanField(1)


class ContainerProjectsAggregatedUsableSubnetworksListRequest(_messages.Message):
  r"""A ContainerProjectsAggregatedUsableSubnetworksListRequest object.

  Fields:
    filter: Filtering currently only supports equality on the networkProjectId
      and must be in the form: "networkProjectId=[PROJECTID]", where
      `networkProjectId` is the project which owns the listed subnetworks.
      This defaults to the parent project ID.
    pageSize: The max number of results per page that should be returned. If
      the number of available results is larger than `page_size`, a
      `next_page_token` is returned which can be used to get the next page of
      results in subsequent requests. Acceptable values are 0 to 500,
      inclusive. (Default: 500)
    pageToken: Specifies a page token to use. Set this to the next_page_token
      returned by previous list requests to get the next page of results.
    parent: The parent project where subnetworks are usable. Specified in the
      format 'projects/*'.
  """

  filter = _messages.StringField(1)
  pageSize = _messages.IntegerField(2, variant=_messages.Variant.INT32)
  pageToken = _messages.StringField(3)
  parent = _messages.StringField(4, required=True)


class ContainerProjectsLocationsClustersCheckAutopilotCompatibilityRequest(_messages.Message):
  r"""A ContainerProjectsLocationsClustersCheckAutopilotCompatibilityRequest
  object.

  Fields:
    name: The name (project, location, cluster) of the cluster to retrieve.
      Specified in the format `projects/*/locations/*/clusters/*`.
  """

  name = _messages.StringField(1, required=True)


class ContainerProjectsLocationsClustersCompleteControlPlaneUpgradeRequest(_messages.Message):
  r"""A ContainerProjectsLocationsClustersCompleteControlPlaneUpgradeRequest
  object.

  Fields:
    completeControlPlaneUpgradeRequest: A CompleteControlPlaneUpgradeRequest
      resource to be passed as the request body.
    name: The name (project, location, cluster) of the cluster to complete
      upgrade. Specified in the format `projects/*/locations/*/clusters/*`.
  """

  completeControlPlaneUpgradeRequest = _messages.MessageField('CompleteControlPlaneUpgradeRequest', 1)
  name = _messages.StringField(2, required=True)


class ContainerProjectsLocationsClustersCompleteConvertToAutopilotRequest(_messages.Message):
  r"""A ContainerProjectsLocationsClustersCompleteConvertToAutopilotRequest
  object.

  Fields:
    completeConvertToAutopilotRequest: A CompleteConvertToAutopilotRequest
      resource to be passed as the request body.
    name: The name (project, location, cluster) of the cluster to convert.
      Specified in the format `projects/*/locations/*/clusters/*`.
  """

  completeConvertToAutopilotRequest = _messages.MessageField('CompleteConvertToAutopilotRequest', 1)
  name = _messages.StringField(2, required=True)


class ContainerProjectsLocationsClustersDeleteRequest(_messages.Message):
  r"""A ContainerProjectsLocationsClustersDeleteRequest object.

  Fields:
    clusterId: Deprecated. The name of the cluster to delete. This field has
      been deprecated and replaced by the name field.
    name: The name (project, location, cluster) of the cluster to delete.
      Specified in the format `projects/*/locations/*/clusters/*`.
    projectId: Deprecated. The Google Developers Console [project ID or
      project number](https://cloud.google.com/resource-manager/docs/creating-
      managing-projects). This field has been deprecated and replaced by the
      name field.
    zone: Deprecated. The name of the Google Compute Engine
      [zone](https://cloud.google.com/compute/docs/zones#available) in which
      the cluster resides. This field has been deprecated and replaced by the
      name field.
  """

  clusterId = _messages.StringField(1)
  name = _messages.StringField(2, required=True)
  projectId = _messages.StringField(3)
  zone = _messages.StringField(4)


class ContainerProjectsLocationsClustersFetchClusterUpgradeInfoRequest(_messages.Message):
  r"""A ContainerProjectsLocationsClustersFetchClusterUpgradeInfoRequest
  object.

  Fields:
    name: Required. The name (project, location, cluster) of the cluster to
      get. Specified in the format `projects/*/locations/*/clusters/*` or
      `projects/*/zones/*/clusters/*`.
    version: API request version that initiates this operation.
  """

  name = _messages.StringField(1, required=True)
  version = _messages.StringField(2)


class ContainerProjectsLocationsClustersGetJwksRequest(_messages.Message):
  r"""A ContainerProjectsLocationsClustersGetJwksRequest object.

  Fields:
    parent: The cluster (project, location, cluster name) to get keys for.
      Specified in the format `projects/*/locations/*/clusters/*`.
  """

  parent = _messages.StringField(1, required=True)


class ContainerProjectsLocationsClustersGetRequest(_messages.Message):
  r"""A ContainerProjectsLocationsClustersGetRequest object.

  Fields:
    clusterId: Deprecated. The name of the cluster to retrieve. This field has
      been deprecated and replaced by the name field.
    name: The name (project, location, cluster) of the cluster to retrieve.
      Specified in the format `projects/*/locations/*/clusters/*`.
    projectId: Deprecated. The Google Developers Console [project ID or
      project number](https://cloud.google.com/resource-manager/docs/creating-
      managing-projects). This field has been deprecated and replaced by the
      name field.
    zone: Deprecated. The name of the Google Compute Engine
      [zone](https://cloud.google.com/compute/docs/zones#available) in which
      the cluster resides. This field has been deprecated and replaced by the
      name field.
  """

  clusterId = _messages.StringField(1)
  name = _messages.StringField(2, required=True)
  projectId = _messages.StringField(3)
  zone = _messages.StringField(4)


class ContainerProjectsLocationsClustersListRequest(_messages.Message):
  r"""A ContainerProjectsLocationsClustersListRequest object.

  Fields:
    parent: The parent (project and location) where the clusters will be
      listed. Specified in the format `projects/*/locations/*`. Location "-"
      matches all zones and all regions.
    projectId: Deprecated. The Google Developers Console [project ID or
      project number](https://cloud.google.com/resource-manager/docs/creating-
      managing-projects). This field has been deprecated and replaced by the
      parent field.
    zone: Deprecated. The name of the Google Compute Engine
      [zone](https://cloud.google.com/compute/docs/zones#available) in which
      the cluster resides, or "-" for all zones. This field has been
      deprecated and replaced by the parent field.
  """

  parent = _messages.StringField(1, required=True)
  projectId = _messages.StringField(2)
  zone = _messages.StringField(3)


class ContainerProjectsLocationsClustersNodePoolsCompleteUpgradeRequest(_messages.Message):
  r"""A ContainerProjectsLocationsClustersNodePoolsCompleteUpgradeRequest
  object.

  Fields:
    completeNodePoolUpgradeRequest: A CompleteNodePoolUpgradeRequest resource
      to be passed as the request body.
    name: The name (project, location, cluster, node pool id) of the node pool
      to complete upgrade. Specified in the format
      `projects/*/locations/*/clusters/*/nodePools/*`.
  """

  completeNodePoolUpgradeRequest = _messages.MessageField('CompleteNodePoolUpgradeRequest', 1)
  name = _messages.StringField(2, required=True)


class ContainerProjectsLocationsClustersNodePoolsDeleteRequest(_messages.Message):
  r"""A ContainerProjectsLocationsClustersNodePoolsDeleteRequest object.

  Fields:
    clusterId: Deprecate. The name of the cluster. This field has been
      deprecated and replaced by the name field.
    name: The name (project, location, cluster, node pool id) of the node pool
      to delete. Specified in the format
      `projects/*/locations/*/clusters/*/nodePools/*`.
    nodePoolId: Deprecated. The name of the node pool to delete. This field
      has been deprecated and replaced by the name field.
    projectId: Deprecated. The Google Developers Console [project ID or
      project number](https://cloud.google.com/resource-manager/docs/creating-
      managing-projects). This field has been deprecated and replaced by the
      name field.
    zone: Deprecated. The name of the Google Compute Engine
      [zone](https://cloud.google.com/compute/docs/zones#available) in which
      the cluster resides. This field has been deprecated and replaced by the
      name field.
  """

  clusterId = _messages.StringField(1)
  name = _messages.StringField(2, required=True)
  nodePoolId = _messages.StringField(3)
  projectId = _messages.StringField(4)
  zone = _messages.StringField(5)


class ContainerProjectsLocationsClustersNodePoolsFetchNodePoolUpgradeInfoRequest(_messages.Message):
  r"""A
  ContainerProjectsLocationsClustersNodePoolsFetchNodePoolUpgradeInfoRequest
  object.

  Fields:
    name: Required. The name (project, location, cluster, nodepool) of the
      nodepool to get. Specified in the format
      `projects/*/locations/*/clusters/*/nodePools/*` or
      `projects/*/zones/*/clusters/*/nodePools/*`.
    version: API request version that initiates this operation.
  """

  name = _messages.StringField(1, required=True)
  version = _messages.StringField(2)


class ContainerProjectsLocationsClustersNodePoolsGetRequest(_messages.Message):
  r"""A ContainerProjectsLocationsClustersNodePoolsGetRequest object.

  Fields:
    clusterId: Deprecated. The name of the cluster. This field has been
      deprecated and replaced by the name field.
    name: The name (project, location, cluster, node pool id) of the node pool
      to get. Specified in the format
      `projects/*/locations/*/clusters/*/nodePools/*`.
    nodePoolId: Deprecated. The name of the node pool. This field has been
      deprecated and replaced by the name field.
    projectId: Deprecated. The Google Developers Console [project ID or
      project number](https://cloud.google.com/resource-manager/docs/creating-
      managing-projects). This field has been deprecated and replaced by the
      name field.
    zone: Deprecated. The name of the Google Compute Engine
      [zone](https://cloud.google.com/compute/docs/zones#available) in which
      the cluster resides. This field has been deprecated and replaced by the
      name field.
  """

  clusterId = _messages.StringField(1)
  name = _messages.StringField(2, required=True)
  nodePoolId = _messages.StringField(3)
  projectId = _messages.StringField(4)
  zone = _messages.StringField(5)


class ContainerProjectsLocationsClustersNodePoolsListRequest(_messages.Message):
  r"""A ContainerProjectsLocationsClustersNodePoolsListRequest object.

  Fields:
    clusterId: Deprecated. The name of the cluster. This field has been
      deprecated and replaced by the parent field.
    parent: The parent (project, location, cluster name) where the node pools
      will be listed. Specified in the format
      `projects/*/locations/*/clusters/*`.
    projectId: Deprecated. The Google Developers Console [project ID or
      project number](https://cloud.google.com/resource-manager/docs/creating-
      managing-projects). This field has been deprecated and replaced by the
      parent field.
    zone: Deprecated. The name of the Google Compute Engine
      [zone](https://cloud.google.com/compute/docs/zones#available) in which
      the cluster resides. This field has been deprecated and replaced by the
      parent field.
  """

  clusterId = _messages.StringField(1)
  parent = _messages.StringField(2, required=True)
  projectId = _messages.StringField(3)
  zone = _messages.StringField(4)


class ContainerProjectsLocationsClustersWellKnownGetOpenidConfigurationRequest(_messages.Message):
  r"""A
  ContainerProjectsLocationsClustersWellKnownGetOpenidConfigurationRequest
  object.

  Fields:
    parent: The cluster (project, location, cluster name) to get the discovery
      document for. Specified in the format
      `projects/*/locations/*/clusters/*`.
  """

  parent = _messages.StringField(1, required=True)


class ContainerProjectsLocationsGetServerConfigRequest(_messages.Message):
  r"""A ContainerProjectsLocationsGetServerConfigRequest object.

  Fields:
    name: The name (project and location) of the server config to get,
      specified in the format `projects/*/locations/*`.
    projectId: Deprecated. The Google Developers Console [project ID or
      project number](https://cloud.google.com/resource-manager/docs/creating-
      managing-projects). This field has been deprecated and replaced by the
      name field.
    zone: Deprecated. The name of the Google Compute Engine
      [zone](https://cloud.google.com/compute/docs/zones#available) to return
      operations for. This field has been deprecated and replaced by the name
      field.
  """

  name = _messages.StringField(1, required=True)
  projectId = _messages.StringField(2)
  zone = _messages.StringField(3)


class ContainerProjectsLocationsListRequest(_messages.Message):
  r"""A ContainerProjectsLocationsListRequest object.

  Fields:
    parent: Contains the name of the resource requested. Specified in the
      format 'projects/*'.
  """

  parent = _messages.StringField(1, required=True)


class ContainerProjectsLocationsOperationsGetRequest(_messages.Message):
  r"""A ContainerProjectsLocationsOperationsGetRequest object.

  Fields:
    name: The name (project, location, operation id) of the operation to get.
      Specified in the format `projects/*/locations/*/operations/*`.
    operationId: Deprecated. The server-assigned `name` of the operation. This
      field has been deprecated and replaced by the name field.
    projectId: Deprecated. The Google Developers Console [project ID or
      project number](https://cloud.google.com/resource-manager/docs/creating-
      managing-projects). This field has been deprecated and replaced by the
      name field.
    zone: Deprecated. The name of the Google Compute Engine
      [zone](https://cloud.google.com/compute/docs/zones#available) in which
      the cluster resides. This field has been deprecated and replaced by the
      name field.
  """

  name = _messages.StringField(1, required=True)
  operationId = _messages.StringField(2)
  projectId = _messages.StringField(3)
  zone = _messages.StringField(4)


class ContainerProjectsLocationsOperationsListRequest(_messages.Message):
  r"""A ContainerProjectsLocationsOperationsListRequest object.

  Fields:
    parent: The parent (project and location) where the operations will be
      listed. Specified in the format `projects/*/locations/*`. Location "-"
      matches all zones and all regions.
    projectId: Deprecated. The Google Developers Console [project ID or
      project number](https://cloud.google.com/resource-manager/docs/creating-
      managing-projects). This field has been deprecated and replaced by the
      parent field.
    zone: Deprecated. The name of the Google Compute Engine
      [zone](https://cloud.google.com/compute/docs/zones#available) to return
      operations for, or `-` for all zones. This field has been deprecated and
      replaced by the parent field.
  """

  parent = _messages.StringField(1, required=True)
  projectId = _messages.StringField(2)
  zone = _messages.StringField(3)


class ContainerProjectsZonesClustersCompleteControlPlaneUpgradeRequest(_messages.Message):
  r"""A ContainerProjectsZonesClustersCompleteControlPlaneUpgradeRequest
  object.

  Fields:
    completeControlPlaneUpgradeRequest: A CompleteControlPlaneUpgradeRequest
      resource to be passed as the request body.
    name: The name (project, location, cluster) of the cluster to complete
      upgrade. Specified in the format `projects/*/locations/*/clusters/*`.
  """

  completeControlPlaneUpgradeRequest = _messages.MessageField('CompleteControlPlaneUpgradeRequest', 1)
  name = _messages.StringField(2, required=True)


class ContainerProjectsZonesClustersDeleteRequest(_messages.Message):
  r"""A ContainerProjectsZonesClustersDeleteRequest object.

  Fields:
    clusterId: Deprecated. The name of the cluster to delete. This field has
      been deprecated and replaced by the name field.
    name: The name (project, location, cluster) of the cluster to delete.
      Specified in the format `projects/*/locations/*/clusters/*`.
    projectId: Deprecated. The Google Developers Console [project ID or
      project number](https://cloud.google.com/resource-manager/docs/creating-
      managing-projects). This field has been deprecated and replaced by the
      name field.
    zone: Deprecated. The name of the Google Compute Engine
      [zone](https://cloud.google.com/compute/docs/zones#available) in which
      the cluster resides. This field has been deprecated and replaced by the
      name field.
  """

  clusterId = _messages.StringField(1, required=True)
  name = _messages.StringField(2)
  projectId = _messages.StringField(3, required=True)
  zone = _messages.StringField(4, required=True)


class ContainerProjectsZonesClustersFetchClusterUpgradeInfoRequest(_messages.Message):
  r"""A ContainerProjectsZonesClustersFetchClusterUpgradeInfoRequest object.

  Fields:
    name: Required. The name (project, location, cluster) of the cluster to
      get. Specified in the format `projects/*/locations/*/clusters/*` or
      `projects/*/zones/*/clusters/*`.
    version: API request version that initiates this operation.
  """

  name = _messages.StringField(1, required=True)
  version = _messages.StringField(2)


class ContainerProjectsZonesClustersGetRequest(_messages.Message):
  r"""A ContainerProjectsZonesClustersGetRequest object.

  Fields:
    clusterId: Deprecated. The name of the cluster to retrieve. This field has
      been deprecated and replaced by the name field.
    name: The name (project, location, cluster) of the cluster to retrieve.
      Specified in the format `projects/*/locations/*/clusters/*`.
    projectId: Deprecated. The Google Developers Console [project ID or
      project number](https://cloud.google.com/resource-manager/docs/creating-
      managing-projects). This field has been deprecated and replaced by the
      name field.
    zone: Deprecated. The name of the Google Compute Engine
      [zone](https://cloud.google.com/compute/docs/zones#available) in which
      the cluster resides. This field has been deprecated and replaced by the
      name field.
  """

  clusterId = _messages.StringField(1, required=True)
  name = _messages.StringField(2)
  projectId = _messages.StringField(3, required=True)
  zone = _messages.StringField(4, required=True)


class ContainerProjectsZonesClustersListRequest(_messages.Message):
  r"""A ContainerProjectsZonesClustersListRequest object.

  Fields:
    parent: The parent (project and location) where the clusters will be
      listed. Specified in the format `projects/*/locations/*`. Location "-"
      matches all zones and all regions.
    projectId: Deprecated. The Google Developers Console [project ID or
      project number](https://cloud.google.com/resource-manager/docs/creating-
      managing-projects). This field has been deprecated and replaced by the
      parent field.
    zone: Deprecated. The name of the Google Compute Engine
      [zone](https://cloud.google.com/compute/docs/zones#available) in which
      the cluster resides, or "-" for all zones. This field has been
      deprecated and replaced by the parent field.
  """

  parent = _messages.StringField(1)
  projectId = _messages.StringField(2, required=True)
  zone = _messages.StringField(3, required=True)


class ContainerProjectsZonesClustersNodePoolsDeleteRequest(_messages.Message):
  r"""A ContainerProjectsZonesClustersNodePoolsDeleteRequest object.

  Fields:
    clusterId: Deprecate. The name of the cluster. This field has been
      deprecated and replaced by the name field.
    name: The name (project, location, cluster, node pool id) of the node pool
      to delete. Specified in the format
      `projects/*/locations/*/clusters/*/nodePools/*`.
    nodePoolId: Deprecated. The name of the node pool to delete. This field
      has been deprecated and replaced by the name field.
    projectId: Deprecated. The Google Developers Console [project ID or
      project number](https://cloud.google.com/resource-manager/docs/creating-
      managing-projects). This field has been deprecated and replaced by the
      name field.
    zone: Deprecated. The name of the Google Compute Engine
      [zone](https://cloud.google.com/compute/docs/zones#available) in which
      the cluster resides. This field has been deprecated and replaced by the
      name field.
  """

  clusterId = _messages.StringField(1, required=True)
  name = _messages.StringField(2)
  nodePoolId = _messages.StringField(3, required=True)
  projectId = _messages.StringField(4, required=True)
  zone = _messages.StringField(5, required=True)


class ContainerProjectsZonesClustersNodePoolsFetchNodePoolUpgradeInfoRequest(_messages.Message):
  r"""A ContainerProjectsZonesClustersNodePoolsFetchNodePoolUpgradeInfoRequest
  object.

  Fields:
    name: Required. The name (project, location, cluster, nodepool) of the
      nodepool to get. Specified in the format
      `projects/*/locations/*/clusters/*/nodePools/*` or
      `projects/*/zones/*/clusters/*/nodePools/*`.
    version: API request version that initiates this operation.
  """

  name = _messages.StringField(1, required=True)
  version = _messages.StringField(2)


class ContainerProjectsZonesClustersNodePoolsGetRequest(_messages.Message):
  r"""A ContainerProjectsZonesClustersNodePoolsGetRequest object.

  Fields:
    clusterId: Deprecated. The name of the cluster. This field has been
      deprecated and replaced by the name field.
    name: The name (project, location, cluster, node pool id) of the node pool
      to get. Specified in the format
      `projects/*/locations/*/clusters/*/nodePools/*`.
    nodePoolId: Deprecated. The name of the node pool. This field has been
      deprecated and replaced by the name field.
    projectId: Deprecated. The Google Developers Console [project ID or
      project number](https://cloud.google.com/resource-manager/docs/creating-
      managing-projects). This field has been deprecated and replaced by the
      name field.
    zone: Deprecated. The name of the Google Compute Engine
      [zone](https://cloud.google.com/compute/docs/zones#available) in which
      the cluster resides. This field has been deprecated and replaced by the
      name field.
  """

  clusterId = _messages.StringField(1, required=True)
  name = _messages.StringField(2)
  nodePoolId = _messages.StringField(3, required=True)
  projectId = _messages.StringField(4, required=True)
  zone = _messages.StringField(5, required=True)


class ContainerProjectsZonesClustersNodePoolsListRequest(_messages.Message):
  r"""A ContainerProjectsZonesClustersNodePoolsListRequest object.

  Fields:
    clusterId: Deprecated. The name of the cluster. This field has been
      deprecated and replaced by the parent field.
    parent: The parent (project, location, cluster name) where the node pools
      will be listed. Specified in the format
      `projects/*/locations/*/clusters/*`.
    projectId: Deprecated. The Google Developers Console [project ID or
      project number](https://cloud.google.com/resource-manager/docs/creating-
      managing-projects). This field has been deprecated and replaced by the
      parent field.
    zone: Deprecated. The name of the Google Compute Engine
      [zone](https://cloud.google.com/compute/docs/zones#available) in which
      the cluster resides. This field has been deprecated and replaced by the
      parent field.
  """

  clusterId = _messages.StringField(1, required=True)
  parent = _messages.StringField(2)
  projectId = _messages.StringField(3, required=True)
  zone = _messages.StringField(4, required=True)


class ContainerProjectsZonesGetServerconfigRequest(_messages.Message):
  r"""A ContainerProjectsZonesGetServerconfigRequest object.

  Fields:
    name: The name (project and location) of the server config to get,
      specified in the format `projects/*/locations/*`.
    projectId: Deprecated. The Google Developers Console [project ID or
      project number](https://cloud.google.com/resource-manager/docs/creating-
      managing-projects). This field has been deprecated and replaced by the
      name field.
    zone: Deprecated. The name of the Google Compute Engine
      [zone](https://cloud.google.com/compute/docs/zones#available) to return
      operations for. This field has been deprecated and replaced by the name
      field.
  """

  name = _messages.StringField(1)
  projectId = _messages.StringField(2, required=True)
  zone = _messages.StringField(3, required=True)


class ContainerProjectsZonesOperationsGetRequest(_messages.Message):
  r"""A ContainerProjectsZonesOperationsGetRequest object.

  Fields:
    name: The name (project, location, operation id) of the operation to get.
      Specified in the format `projects/*/locations/*/operations/*`.
    operationId: Deprecated. The server-assigned `name` of the operation. This
      field has been deprecated and replaced by the name field.
    projectId: Deprecated. The Google Developers Console [project ID or
      project number](https://cloud.google.com/resource-manager/docs/creating-
      managing-projects). This field has been deprecated and replaced by the
      name field.
    zone: Deprecated. The name of the Google Compute Engine
      [zone](https://cloud.google.com/compute/docs/zones#available) in which
      the cluster resides. This field has been deprecated and replaced by the
      name field.
  """

  name = _messages.StringField(1)
  operationId = _messages.StringField(2, required=True)
  projectId = _messages.StringField(3, required=True)
  zone = _messages.StringField(4, required=True)


class ContainerProjectsZonesOperationsListRequest(_messages.Message):
  r"""A ContainerProjectsZonesOperationsListRequest object.

  Fields:
    parent: The parent (project and location) where the operations will be
      listed. Specified in the format `projects/*/locations/*`. Location "-"
      matches all zones and all regions.
    projectId: Deprecated. The Google Developers Console [project ID or
      project number](https://cloud.google.com/resource-manager/docs/creating-
      managing-projects). This field has been deprecated and replaced by the
      parent field.
    zone: Deprecated. The name of the Google Compute Engine
      [zone](https://cloud.google.com/compute/docs/zones#available) to return
      operations for, or `-` for all zones. This field has been deprecated and
      replaced by the parent field.
  """

  parent = _messages.StringField(1)
  projectId = _messages.StringField(2, required=True)
  zone = _messages.StringField(3, required=True)


class ContainerdConfig(_messages.Message):
  r"""ContainerdConfig contains configuration to customize containerd.

  Fields:
    privateRegistryAccessConfig: PrivateRegistryAccessConfig is used to
      configure access configuration for private container registries.
    registryHosts: RegistryHostConfig configures containerd registry host
      configuration. Each registry_hosts represents a hosts.toml file. At most
      25 registry_hosts are allowed.
    writableCgroups: Optional. WritableCgroups defines writable cgroups
      configuration for the node pool.
  """

  privateRegistryAccessConfig = _messages.MessageField('PrivateRegistryAccessConfig', 1)
  registryHosts = _messages.MessageField('RegistryHostConfig', 2, repeated=True)
  writableCgroups = _messages.MessageField('WritableCgroups', 3)


class ControlPlaneEgress(_messages.Message):
  r"""ControlPlaneEgress defines the settings needed to enable control plane
  egress control.

  Enums:
    ModeValueValuesEnum: Defines the mode of limiting anonymous access in the
      cluster.

  Fields:
    mode: Defines the mode of limiting anonymous access in the cluster.
  """

  class ModeValueValuesEnum(_messages.Enum):
    r"""Defines the mode of limiting anonymous access in the cluster.

    Values:
      MODE_UNSPECIFIED: Default value not specified.
      VIA_CONTROL_PLANE: Control plane has public IP and no restriction on
        egress.
      NONE: No public IP on control plane and only internal allowlisted
        egress.
    """
    MODE_UNSPECIFIED = 0
    VIA_CONTROL_PLANE = 1
    NONE = 2

  mode = _messages.EnumField('ModeValueValuesEnum', 1)


class ControlPlaneEndpointsConfig(_messages.Message):
  r"""Configuration for all of the cluster's control plane endpoints.

  Fields:
    dnsEndpointConfig: DNS endpoint configuration.
    ipEndpointsConfig: IP endpoints configuration.
  """

  dnsEndpointConfig = _messages.MessageField('DNSEndpointConfig', 1)
  ipEndpointsConfig = _messages.MessageField('IPEndpointsConfig', 2)


class CostManagementConfig(_messages.Message):
  r"""Configuration for fine-grained cost management feature.

  Fields:
    enabled: Whether the feature is enabled or not.
  """

  enabled = _messages.BooleanField(1)


class CreateClusterRequest(_messages.Message):
  r"""CreateClusterRequest creates a cluster.

  Fields:
    cluster: A [cluster resource](https://cloud.google.com/container-
      engine/reference/rest/v1alpha1/projects.locations.clusters)
    parent: The parent (project and location) where the cluster will be
      created. Specified in the format `projects/*/locations/*`.
    projectId: Deprecated. The Google Developers Console [project ID or
      project number](https://cloud.google.com/resource-manager/docs/creating-
      managing-projects). This field has been deprecated and replaced by the
      parent field.
    zone: Deprecated. The name of the Google Compute Engine
      [zone](https://cloud.google.com/compute/docs/zones#available) in which
      the cluster resides. This field has been deprecated and replaced by the
      parent field.
  """

  cluster = _messages.MessageField('Cluster', 1)
  parent = _messages.StringField(2)
  projectId = _messages.StringField(3)
  zone = _messages.StringField(4)


class CreateNodePoolRequest(_messages.Message):
  r"""CreateNodePoolRequest creates a node pool for a cluster.

  Fields:
    clusterId: Deprecated. The name of the cluster. This field has been
      deprecated and replaced by the parent field.
    nodePool: The node pool to create.
    parent: The parent (project, location, cluster name) where the node pool
      will be created. Specified in the format
      `projects/*/locations/*/clusters/*`.
    projectId: Deprecated. The Google Developers Console [project ID or
      project number](https://cloud.google.com/resource-manager/docs/creating-
      managing-projects). This field has been deprecated and replaced by the
      parent field.
    zone: Deprecated. The name of the Google Compute Engine
      [zone](https://cloud.google.com/compute/docs/zones#available) in which
      the cluster resides. This field has been deprecated and replaced by the
      parent field.
  """

  clusterId = _messages.StringField(1)
  nodePool = _messages.MessageField('NodePool', 2)
  parent = _messages.StringField(3)
  projectId = _messages.StringField(4)
  zone = _messages.StringField(5)


class CrossConnectConfig(_messages.Message):
  r"""Configuration for managing inter vpc subnetworks for cluster's private
  endpoint availability.

  Fields:
    fingerprint: The fingerprint of the set of subnetworks, used to detect
      conflicts. The fingerprint is initially generated by Kubernetes Engine
      and changes after every request to modify or update cross connect
      config. You must always provide an up-to-date fingerprint hash when
      updating the cross connect config. Make a get() request to the resource
      to get the latest fingerprint.
    items: List of cross connect items where cluster's private endpoint is
      accessible.
  """

  fingerprint = _messages.StringField(1)
  items = _messages.MessageField('CrossConnectItem', 2, repeated=True)


class CrossConnectItem(_messages.Message):
  r"""Item for controlling single cross connect network's configuration.

  Fields:
    displayName: Optional. display_name is intended only for UI elements to
      help humans identify this item, not as a unique identifier.
    privateEndpoint: Output only. The internal IP address of this cluster's
      endpoint in the requested subnetwork.
    subnetwork: Subnetworks where cluster's private endpoint is accessible.
      specified in projects/*/regions/*/subnetworks/* format.
  """

  displayName = _messages.StringField(1)
  privateEndpoint = _messages.StringField(2)
  subnetwork = _messages.StringField(3)


class CustomImageConfig(_messages.Message):
  r"""CustomImageConfig contains the information

  Fields:
    image: The name of the image to use for this node.
    imageFamily: The name of the image family to use for this node.
    imageProject: The project containing the image to use for this node.
  """

  image = _messages.StringField(1)
  imageFamily = _messages.StringField(2)
  imageProject = _messages.StringField(3)


class CustomNodeInit(_messages.Message):
  r"""Support for running custom init code while bootstrapping nodes.

  Fields:
    initScript: Optional. The init script to be executed on the node.
  """

  initScript = _messages.MessageField('InitScript', 1)


class DNSAlias(_messages.Message):
  r"""DNSAlias describes an alternate hostname for a cluster.

  Enums:
    TypeValueValuesEnum: The type of the alias.

  Fields:
    hostname: The hostname for the alias.
    permissionResource: If set, overrides the resource to check for IAM
      permissions against. Intended only for use by Multi-Tenant clusters.
      permission_resource should be the name of a cluster resource:
      projects/my-project/locations/un-moon1/clusters/tenant-123abc.
    type: The type of the alias.
  """

  class TypeValueValuesEnum(_messages.Enum):
    r"""The type of the alias.

    Values:
      DNS_ALIAS_TYPE_UNSPECIFIED: Default value.
      STANDARD: No changes from the default behavior.
      TENANT: The view of the cluster should be restricted to a tenant, with
        the tenant derived from the hostname.
    """
    DNS_ALIAS_TYPE_UNSPECIFIED = 0
    STANDARD = 1
    TENANT = 2

  hostname = _messages.StringField(1)
  permissionResource = _messages.StringField(2)
  type = _messages.EnumField('TypeValueValuesEnum', 3)


class DNSConfig(_messages.Message):
  r"""DNSConfig contains the desired set of options for configuring
  clusterDNS.

  Enums:
    ClusterDnsValueValuesEnum: cluster_dns indicates which in-cluster DNS
      provider should be used.
    ClusterDnsScopeValueValuesEnum: cluster_dns_scope indicates the scope of
      access to cluster DNS records.

  Fields:
    additiveVpcScopeDnsDomain: Optional. The domain used in Additive VPC
      scope.
    clusterDns: cluster_dns indicates which in-cluster DNS provider should be
      used.
    clusterDnsDomain: cluster_dns_domain is the suffix used for all cluster
      service records.
    clusterDnsScope: cluster_dns_scope indicates the scope of access to
      cluster DNS records.
    enableAdditiveVpcScope: Optional. Deprecated:
      additive_vpc_scope_dns_domain is used to check for enablement instead.
      Indicates the enablement of Additive VPC scope. Which can be enabled
      alongside Cluster scope.
  """

  class ClusterDnsScopeValueValuesEnum(_messages.Enum):
    r"""cluster_dns_scope indicates the scope of access to cluster DNS
    records.

    Values:
      DNS_SCOPE_UNSPECIFIED: Default value, will be inferred as cluster scope
      CLUSTER_SCOPE: DNS records are accessible from within the cluster
      VPC_SCOPE: DNS records are accessible from within the VPC
    """
    DNS_SCOPE_UNSPECIFIED = 0
    CLUSTER_SCOPE = 1
    VPC_SCOPE = 2

  class ClusterDnsValueValuesEnum(_messages.Enum):
    r"""cluster_dns indicates which in-cluster DNS provider should be used.

    Values:
      PROVIDER_UNSPECIFIED: Default value
      PLATFORM_DEFAULT: Use GKE default DNS provider(kube-dns) for DNS
        resolution
      CLOUD_DNS: Use CloudDNS for DNS resolution.
      KUBE_DNS: Use KubeDNS for DNS resolution.
    """
    PROVIDER_UNSPECIFIED = 0
    PLATFORM_DEFAULT = 1
    CLOUD_DNS = 2
    KUBE_DNS = 3

  additiveVpcScopeDnsDomain = _messages.StringField(1)
  clusterDns = _messages.EnumField('ClusterDnsValueValuesEnum', 2)
  clusterDnsDomain = _messages.StringField(3)
  clusterDnsScope = _messages.EnumField('ClusterDnsScopeValueValuesEnum', 4)
  enableAdditiveVpcScope = _messages.BooleanField(5)


class DNSEndpointConfig(_messages.Message):
  r"""Describes the configuration of a DNS endpoint.

  Fields:
    allowExternalTraffic: Controls whether user traffic is allowed over this
      endpoint. Note that Google-managed services may still use the endpoint
      even if this is false.
    dnsAliases: Alternate hostnames for the cluster. The default hostname is
      not included in this list.
    enableK8sCertsViaDns: Controls whether the k8s certs auth is allowed via
      DNS.
    enableK8sTokensViaDns: Controls whether the k8s token auth is allowed via
      DNS.
    endpoint: Output only. The cluster's DNS endpoint configuration. A DNS
      format address. This is accessible from the public internet. Ex: uid.us-
      central1.gke.goog. Always present, but the behavior may change according
      to the value of DNSEndpointConfig.allow_external_traffic.
  """

  allowExternalTraffic = _messages.BooleanField(1)
  dnsAliases = _messages.MessageField('DNSAlias', 2, repeated=True)
  enableK8sCertsViaDns = _messages.BooleanField(3)
  enableK8sTokensViaDns = _messages.BooleanField(4)
  endpoint = _messages.StringField(5)


class DailyMaintenanceWindow(_messages.Message):
  r"""Time window specified for daily maintenance operations.

  Fields:
    duration: Output only. Duration of the time window, automatically chosen
      to be smallest possible in the given scenario.
    startTime: Time within the maintenance window to start the maintenance
      operations. It must be in format "HH:MM", where HH : [00-23] and MM :
      [00-59] GMT.
  """

  duration = _messages.StringField(1)
  startTime = _messages.StringField(2)


class DatabaseEncryption(_messages.Message):
  r"""Configuration of etcd encryption.

  Enums:
    CurrentStateValueValuesEnum: Output only. The current state of etcd
      encryption.
    StateValueValuesEnum: The desired state of etcd encryption.

  Fields:
    currentState: Output only. The current state of etcd encryption.
    decryptionKeys: Output only. Keys in use by the cluster for decrypting
      existing objects, in addition to the key in `key_name`. Each item is a
      CloudKMS key resource.
    keyName: Name of CloudKMS key to use for the encryption of secrets in
      etcd. Ex. projects/my-project/locations/global/keyRings/my-
      ring/cryptoKeys/my-key
    lastOperationErrors: Output only. Records errors seen during
      DatabaseEncryption update operations.
    state: The desired state of etcd encryption.
  """

  class CurrentStateValueValuesEnum(_messages.Enum):
    r"""Output only. The current state of etcd encryption.

    Values:
      CURRENT_STATE_UNSPECIFIED: Should never be set
      CURRENT_STATE_ENCRYPTED: Secrets in etcd are encrypted.
      CURRENT_STATE_DECRYPTED: Secrets in etcd are stored in plain text (at
        etcd level) - this is unrelated to Compute Engine level full disk
        encryption.
      CURRENT_STATE_ENCRYPTION_PENDING: Encryption (or re-encryption with a
        different CloudKMS key) of Secrets is in progress.
      CURRENT_STATE_ENCRYPTION_ERROR: Encryption (or re-encryption with a
        different CloudKMS key) of Secrets in etcd encountered an error.
      CURRENT_STATE_DECRYPTION_PENDING: De-crypting Secrets to plain text in
        etcd is in progress.
      CURRENT_STATE_DECRYPTION_ERROR: De-crypting Secrets to plain text in
        etcd encountered an error.
    """
    CURRENT_STATE_UNSPECIFIED = 0
    CURRENT_STATE_ENCRYPTED = 1
    CURRENT_STATE_DECRYPTED = 2
    CURRENT_STATE_ENCRYPTION_PENDING = 3
    CURRENT_STATE_ENCRYPTION_ERROR = 4
    CURRENT_STATE_DECRYPTION_PENDING = 5
    CURRENT_STATE_DECRYPTION_ERROR = 6

  class StateValueValuesEnum(_messages.Enum):
    r"""The desired state of etcd encryption.

    Values:
      UNKNOWN: Should never be set
      ENCRYPTED: Secrets in etcd are encrypted.
      DECRYPTED: Secrets in etcd are stored in plain text (at etcd level) -
        this is unrelated to Compute Engine level full disk encryption.
    """
    UNKNOWN = 0
    ENCRYPTED = 1
    DECRYPTED = 2

  currentState = _messages.EnumField('CurrentStateValueValuesEnum', 1)
  decryptionKeys = _messages.StringField(2, repeated=True)
  keyName = _messages.StringField(3)
  lastOperationErrors = _messages.MessageField('OperationError', 4, repeated=True)
  state = _messages.EnumField('StateValueValuesEnum', 5)


class Date(_messages.Message):
  r"""Represents a whole or partial calendar date, such as a birthday. The
  time of day and time zone are either specified elsewhere or are
  insignificant. The date is relative to the Gregorian Calendar. This can
  represent one of the following: * A full date, with non-zero year, month,
  and day values. * A month and day, with a zero year (for example, an
  anniversary). * A year on its own, with a zero month and a zero day. * A
  year and month, with a zero day (for example, a credit card expiration
  date). Related types: * google.type.TimeOfDay * google.type.DateTime *
  google.protobuf.Timestamp

  Fields:
    day: Day of a month. Must be from 1 to 31 and valid for the year and
      month, or 0 to specify a year by itself or a year and month where the
      day isn't significant.
    month: Month of a year. Must be from 1 to 12, or 0 to specify a year
      without a month and day.
    year: Year of the date. Must be from 1 to 9999, or 0 to specify a date
      without a year.
  """

  day = _messages.IntegerField(1, variant=_messages.Variant.INT32)
  month = _messages.IntegerField(2, variant=_messages.Variant.INT32)
  year = _messages.IntegerField(3, variant=_messages.Variant.INT32)


class DedicatedLocalSsdProfile(_messages.Message):
  r"""Provisions a new, separate local NVMe SSD exclusively for swap.

  Fields:
    diskCount: The number of physical local NVMe SSD disks to attach.
  """

  diskCount = _messages.IntegerField(1)


class DefaultComputeClassConfig(_messages.Message):
  r"""DefaultComputeClassConfig defines default compute class configuration.

  Fields:
    enabled: Enables default compute class.
  """

  enabled = _messages.BooleanField(1)


class DefaultSnatStatus(_messages.Message):
  r"""DefaultSnatStatus contains the desired state of whether default sNAT
  should be disabled on the cluster.

  Fields:
    disabled: Disables cluster default sNAT rules.
  """

  disabled = _messages.BooleanField(1)


class DesiredAdditionalIPRangesConfig(_messages.Message):
  r"""DesiredAdditionalIPRangesConfig is a wrapper used for cluster update
  operation and contains multiple AdditionalIPRangesConfigs.

  Fields:
    additionalIpRangesConfigs: List of additional IP ranges configs where each
      AdditionalIPRangesConfig corresponds to one subnetwork's IP ranges
  """

  additionalIpRangesConfigs = _messages.MessageField('AdditionalIPRangesConfig', 1, repeated=True)


class DesiredEnterpriseConfig(_messages.Message):
  r"""DesiredEnterpriseConfig is a wrapper used for updating
  enterprise_config. Deprecated: GKE Enterprise features are now available
  without an Enterprise tier.

  Enums:
    DesiredTierValueValuesEnum: desired_tier specifies the desired tier of the
      cluster.

  Fields:
    desiredTier: desired_tier specifies the desired tier of the cluster.
  """

  class DesiredTierValueValuesEnum(_messages.Enum):
    r"""desired_tier specifies the desired tier of the cluster.

    Values:
      CLUSTER_TIER_UNSPECIFIED: CLUSTER_TIER_UNSPECIFIED is when cluster_tier
        is not set.
      STANDARD: STANDARD indicates a standard GKE cluster.
      ENTERPRISE: ENTERPRISE indicates a GKE Enterprise cluster.
    """
    CLUSTER_TIER_UNSPECIFIED = 0
    STANDARD = 1
    ENTERPRISE = 2

  desiredTier = _messages.EnumField('DesiredTierValueValuesEnum', 1)


class DnsCacheConfig(_messages.Message):
  r"""Configuration for NodeLocal DNSCache

  Fields:
    enabled: Whether NodeLocal DNSCache is enabled for this cluster.
  """

  enabled = _messages.BooleanField(1)


class Empty(_messages.Message):
  r"""A generic empty message that you can re-use to avoid defining duplicated
  empty messages in your APIs. A typical example is to use it as the request
  or the response type of an API method. For instance: service Foo { rpc
  Bar(google.protobuf.Empty) returns (google.protobuf.Empty); }
  """



class EncryptionConfig(_messages.Message):
  r"""Defines encryption settings for the swap space.

  Fields:
    disabled: Optional. If true, swap space will not be encrypted. Defaults to
      false (encrypted).
  """

  disabled = _messages.BooleanField(1)


class EnterpriseConfig(_messages.Message):
  r"""EnterpriseConfig is the cluster enterprise configuration. Deprecated:
  GKE Enterprise features are now available without an Enterprise tier.

  Enums:
    ClusterTierValueValuesEnum: Output only. cluster_tier indicates the
      effective tier of the cluster.
    DesiredTierValueValuesEnum: desired_tier specifies the desired tier of the
      cluster.

  Fields:
    clusterTier: Output only. cluster_tier indicates the effective tier of the
      cluster.
    desiredTier: desired_tier specifies the desired tier of the cluster.
  """

  class ClusterTierValueValuesEnum(_messages.Enum):
    r"""Output only. cluster_tier indicates the effective tier of the cluster.

    Values:
      CLUSTER_TIER_UNSPECIFIED: CLUSTER_TIER_UNSPECIFIED is when cluster_tier
        is not set.
      STANDARD: STANDARD indicates a standard GKE cluster.
      ENTERPRISE: ENTERPRISE indicates a GKE Enterprise cluster.
    """
    CLUSTER_TIER_UNSPECIFIED = 0
    STANDARD = 1
    ENTERPRISE = 2

  class DesiredTierValueValuesEnum(_messages.Enum):
    r"""desired_tier specifies the desired tier of the cluster.

    Values:
      CLUSTER_TIER_UNSPECIFIED: CLUSTER_TIER_UNSPECIFIED is when cluster_tier
        is not set.
      STANDARD: STANDARD indicates a standard GKE cluster.
      ENTERPRISE: ENTERPRISE indicates a GKE Enterprise cluster.
    """
    CLUSTER_TIER_UNSPECIFIED = 0
    STANDARD = 1
    ENTERPRISE = 2

  clusterTier = _messages.EnumField('ClusterTierValueValuesEnum', 1)
  desiredTier = _messages.EnumField('DesiredTierValueValuesEnum', 2)


class EphemeralLocalSsdProfile(_messages.Message):
  r"""Swap on the local SSD shared with pod ephemeral storage.

  Fields:
    swapSizeGib: Specifies the size of the swap space in gibibytes (GiB).
    swapSizePercent: Specifies the size of the swap space as a percentage of
      the ephemeral local SSD capacity.
  """

  swapSizeGib = _messages.IntegerField(1)
  swapSizePercent = _messages.IntegerField(2, variant=_messages.Variant.INT32)


class EphemeralStorageConfig(_messages.Message):
  r"""EphemeralStorageConfig contains configuration for the ephemeral storage
  filesystem.

  Fields:
    localSsdCount: Number of local SSDs to use to back ephemeral storage. Uses
      NVMe interfaces. The limit for this value is dependent upon the maximum
      number of disk available on a machine per zone. See:
      https://cloud.google.com/compute/docs/disks/local-ssd for more
      information. A zero (or unset) value has different meanings depending on
      machine type being used: 1. For pre-Gen3 machines, which support
      flexible numbers of local ssds, zero (or unset) means to disable using
      local SSDs as ephemeral storage. 2. For Gen3 machines which dictate a
      specific number of local ssds, zero (or unset) means to use the default
      number of local ssds that goes with that machine type. For example, for
      a c3-standard-8-lssd machine, 2 local ssds would be provisioned. For
      c3-standard-8 (which doesn't support local ssds), 0 will be provisioned.
      See https://cloud.google.com/compute/docs/disks/local-
      ssd#choose_number_local_ssds for more info.
  """

  localSsdCount = _messages.IntegerField(1, variant=_messages.Variant.INT32)


class EphemeralStorageLocalSsdConfig(_messages.Message):
  r"""EphemeralStorageLocalSsdConfig contains configuration for the node
  ephemeral storage using Local SSDs.

  Fields:
    dataCacheCount: Number of local SSDs to use for GKE Data Cache.
    localSsdCount: Number of local SSDs to use to back ephemeral storage. Uses
      NVMe interfaces. A zero (or unset) value has different meanings
      depending on machine type being used: 1. For pre-Gen3 machines, which
      support flexible numbers of local ssds, zero (or unset) means to disable
      using local SSDs as ephemeral storage. The limit for this value is
      dependent upon the maximum number of disk available on a machine per
      zone. See: https://cloud.google.com/compute/docs/disks/local-ssd for
      more information. 2. For Gen3 machines which dictate a specific number
      of local ssds, zero (or unset) means to use the default number of local
      ssds that goes with that machine type. For example, for a
      c3-standard-8-lssd machine, 2 local ssds would be provisioned. For
      c3-standard-8 (which doesn't support local ssds), 0 will be provisioned.
      See https://cloud.google.com/compute/docs/disks/local-
      ssd#choose_number_local_ssds for more info.
  """

  dataCacheCount = _messages.IntegerField(1, variant=_messages.Variant.INT32)
  localSsdCount = _messages.IntegerField(2, variant=_messages.Variant.INT32)


class EtcHostsEntry(_messages.Message):
  r"""Additional entries to be added to /etc/hosts.

  Fields:
    host: The hostname of the host.
    ip: The IPv4 or IPv6 address of the host.
  """

  host = _messages.StringField(1)
  ip = _messages.StringField(2)


class EvictionGracePeriod(_messages.Message):
  r"""Eviction grace periods are grace periods for each eviction signal.

  Fields:
    imagefsAvailable: Optional. Grace period for eviction due to imagefs
      available signal. Sample format: "10s". Must be >= 0. See
      https://kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-
      eviction/#eviction-signals
    imagefsInodesFree: Optional. Grace period for eviction due to imagefs
      inodes free signal. Sample format: "10s". Must be >= 0. See
      https://kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-
      eviction/#eviction-signals
    memoryAvailable: Optional. Grace period for eviction due to memory
      available signal. Sample format: "10s". Must be >= 0. See
      https://kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-
      eviction/#eviction-signals
    nodefsAvailable: Optional. Grace period for eviction due to nodefs
      available signal. Sample format: "10s". Must be >= 0. See
      https://kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-
      eviction/#eviction-signals
    nodefsInodesFree: Optional. Grace period for eviction due to nodefs inodes
      free signal. Sample format: "10s". Must be >= 0. See
      https://kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-
      eviction/#eviction-signals
    pidAvailable: Optional. Grace period for eviction due to pid available
      signal. Sample format: "10s". Must be >= 0. See
      https://kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-
      eviction/#eviction-signals
  """

  imagefsAvailable = _messages.StringField(1)
  imagefsInodesFree = _messages.StringField(2)
  memoryAvailable = _messages.StringField(3)
  nodefsAvailable = _messages.StringField(4)
  nodefsInodesFree = _messages.StringField(5)
  pidAvailable = _messages.StringField(6)


class EvictionMinimumReclaim(_messages.Message):
  r"""Eviction minimum reclaims are the resource amounts of minimum reclaims
  for each eviction signal.

  Fields:
    imagefsAvailable: Optional. Minimum reclaim for eviction due to imagefs
      available signal. Only take percentage value for now. Sample format:
      "10%". Must be <=10%. See
      https://kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-
      eviction/#eviction-signals
    imagefsInodesFree: Optional. Minimum reclaim for eviction due to imagefs
      inodes free signal. Only take percentage value for now. Sample format:
      "10%". Must be <=10%. See
      https://kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-
      eviction/#eviction-signals
    memoryAvailable: Optional. Minimum reclaim for eviction due to memory
      available signal. Only take percentage value for now. Sample format:
      "10%". Must be <=10%. See
      https://kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-
      eviction/#eviction-signals
    nodefsAvailable: Optional. Minimum reclaim for eviction due to nodefs
      available signal. Only take percentage value for now. Sample format:
      "10%". Must be <=10%. See
      https://kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-
      eviction/#eviction-signals
    nodefsInodesFree: Optional. Minimum reclaim for eviction due to nodefs
      inodes free signal. Only take percentage value for now. Sample format:
      "10%". Must be <=10%. See
      https://kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-
      eviction/#eviction-signals
    pidAvailable: Optional. Minimum reclaim for eviction due to pid available
      signal. Only take percentage value for now. Sample format: "10%". Must
      be <=10%. See https://kubernetes.io/docs/concepts/scheduling-
      eviction/node-pressure-eviction/#eviction-signals
  """

  imagefsAvailable = _messages.StringField(1)
  imagefsInodesFree = _messages.StringField(2)
  memoryAvailable = _messages.StringField(3)
  nodefsAvailable = _messages.StringField(4)
  nodefsInodesFree = _messages.StringField(5)
  pidAvailable = _messages.StringField(6)


class EvictionSignals(_messages.Message):
  r"""Eviction signals are the current state of a particular resource at a
  specific point in time. The kubelet uses eviction signals to make eviction
  decisions by comparing the signals to eviction thresholds, which are the
  minimum amount of the resource that should be available on the node.

  Fields:
    imagefsAvailable: Optional. Amount of storage available on filesystem that
      container runtime uses for storing images layers. If the container
      filesystem and image filesystem are not separate, then imagefs can store
      both image layers and writeable layers. Defines the amount of
      "imagefs.available" signal in kubelet. Default is unset, if not
      specified in the kubelet config. Sample format: "30%". Must be >= 15%.
      See https://kubernetes.io/docs/concepts/scheduling-eviction/node-
      pressure-eviction/#eviction-signals
    imagefsInodesFree: Optional. Amount of inodes available on filesystem that
      container runtime uses for storing images layers. Defines the amount of
      "imagefs.inodesFree" signal in kubelet. Default is unset, if not
      specified in the kubelet config. Linux only. Sample format: "30%". Must
      be >= 5%. See https://kubernetes.io/docs/concepts/scheduling-
      eviction/node-pressure-eviction/#eviction-signals
    memoryAvailable: Optional. Memory available (i.e. capacity - workingSet),
      in bytes. Defines the amount of "memory.available" signal in kubelet.
      Default is unset, if not specified in the kubelet config. Format:
      positive number + unit, e.g. 100Ki, 10Mi, 5Gi. Valid units are Ki, Mi,
      Gi. Must be >= 100Mi and <= 50% of the node's memory. See
      https://kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-
      eviction/#eviction-signals
    nodefsAvailable: Optional. Amount of storage available on filesystem that
      kubelet uses for volumes, daemon logs, etc. Defines the amount of
      "nodefs.available" signal in kubelet. Default is unset, if not specified
      in the kubelet config. Sample format: "30%". Must be >= 10%. See
      https://kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-
      eviction/#eviction-signals
    nodefsInodesFree: Optional. Amount of inodes available on filesystem that
      kubelet uses for volumes, daemon logs, etc. Defines the amount of
      "nodefs.inodesFree" signal in kubelet. Default is unset, if not
      specified in the kubelet config. Linux only. It takses percentage value
      for now. Sample format: "30%". Must be >= 5% and <= 50%. See
      https://kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-
      eviction/#eviction-signals
    pidAvailable: Optional. Amount of PID available for pod allocation.
      Defines the amount of "pid.available" signal in kubelet. Default is
      unset, if not specified in the kubelet config. Sample format: "30%".
      Must be >= 10%. See https://kubernetes.io/docs/concepts/scheduling-
      eviction/node-pressure-eviction/#eviction-signals
  """

  imagefsAvailable = _messages.StringField(1)
  imagefsInodesFree = _messages.StringField(2)
  memoryAvailable = _messages.StringField(3)
  nodefsAvailable = _messages.StringField(4)
  nodefsInodesFree = _messages.StringField(5)
  pidAvailable = _messages.StringField(6)


class FastSocket(_messages.Message):
  r"""Configuration of FastSocket feature.

  Fields:
    enabled: Whether FastSocket features are enabled in the node pool.
  """

  enabled = _messages.BooleanField(1)


class Filter(_messages.Message):
  r"""Allows filtering to one or more specific event types. If event types are
  present, those and only those event types will be transmitted to the
  cluster. Other types will be skipped. If no filter is specified, or no event
  types are present, all event types will be sent

  Enums:
    EventTypeValueListEntryValuesEnum:

  Fields:
    eventType: Event types to allowlist.
  """

  class EventTypeValueListEntryValuesEnum(_messages.Enum):
    r"""EventTypeValueListEntryValuesEnum enum type.

    Values:
      EVENT_TYPE_UNSPECIFIED: Not set, will be ignored.
      UPGRADE_AVAILABLE_EVENT: Corresponds with UpgradeAvailableEvent.
      UPGRADE_EVENT: Corresponds with UpgradeEvent.
      SECURITY_BULLETIN_EVENT: Corresponds with SecurityBulletinEvent.
      UPGRADE_INFO_EVENT: Corresponds with UpgradeInfoEvent.
    """
    EVENT_TYPE_UNSPECIFIED = 0
    UPGRADE_AVAILABLE_EVENT = 1
    UPGRADE_EVENT = 2
    SECURITY_BULLETIN_EVENT = 3
    UPGRADE_INFO_EVENT = 4

  eventType = _messages.EnumField('EventTypeValueListEntryValuesEnum', 1, repeated=True)


class Fleet(_messages.Message):
  r"""Fleet is the fleet configuration for the cluster.

  Enums:
    MembershipTypeValueValuesEnum: The type of the cluster's fleet membership.

  Fields:
    membership: Output only. The full resource name of the registered fleet
      membership of the cluster, in the format
      `//gkehub.googleapis.com/projects/*/locations/*/memberships/*`.
    membershipType: The type of the cluster's fleet membership.
    preRegistered: Output only. Whether the cluster has been registered
      through the fleet API.
    project: The Fleet host project(project ID or project number) where this
      cluster will be registered to. This field cannot be changed after the
      cluster has been registered.
  """

  class MembershipTypeValueValuesEnum(_messages.Enum):
    r"""The type of the cluster's fleet membership.

    Values:
      MEMBERSHIP_TYPE_UNSPECIFIED: The MembershipType is not set.
      LIGHTWEIGHT: The membership supports only lightweight compatible
        features.
    """
    MEMBERSHIP_TYPE_UNSPECIFIED = 0
    LIGHTWEIGHT = 1

  membership = _messages.StringField(1)
  membershipType = _messages.EnumField('MembershipTypeValueValuesEnum', 2)
  preRegistered = _messages.BooleanField(3)
  project = _messages.StringField(4)


class GCPSecretManagerCertificateConfig(_messages.Message):
  r"""GCPSecretManagerCertificateConfig configures a secret from [Secret
  Manager](https://cloud.google.com/secret-manager).

  Fields:
    secretUri: Secret URI, in the form
      "projects/$PROJECT_ID/secrets/$SECRET_NAME/versions/$VERSION". Version
      can be fixed (e.g. "2") or "latest"
  """

  secretUri = _messages.StringField(1)


class GPUDirectConfig(_messages.Message):
  r"""GPUDirectConfig specifies the GPU direct strategy on the node pool.

  Enums:
    GpuDirectStrategyValueValuesEnum: The type of GPU direct strategy to
      enable on the node pool.

  Fields:
    gpuDirectStrategy: The type of GPU direct strategy to enable on the node
      pool.
  """

  class GpuDirectStrategyValueValuesEnum(_messages.Enum):
    r"""The type of GPU direct strategy to enable on the node pool.

    Values:
      GPU_DIRECT_STRATEGY_UNSPECIFIED: Default value. No GPU Direct strategy
        is enabled on the node.
      TCPX: GPUDirect-TCPX on A3
      RDMA: GPUDirect-RDMA on A3 Ultra, and A4 machine types
    """
    GPU_DIRECT_STRATEGY_UNSPECIFIED = 0
    TCPX = 1
    RDMA = 2

  gpuDirectStrategy = _messages.EnumField('GpuDirectStrategyValueValuesEnum', 1)


class GPUDriverInstallationConfig(_messages.Message):
  r"""GPUDriverInstallationConfig specifies the version of GPU driver to be
  auto installed.

  Enums:
    GpuDriverVersionValueValuesEnum: Mode for how the GPU driver is installed.

  Fields:
    gpuDriverVersion: Mode for how the GPU driver is installed.
  """

  class GpuDriverVersionValueValuesEnum(_messages.Enum):
    r"""Mode for how the GPU driver is installed.

    Values:
      GPU_DRIVER_VERSION_UNSPECIFIED: Default value is to not install any GPU
        driver.
      INSTALLATION_DISABLED: Disable GPU driver auto installation and needs
        manual installation
      DEFAULT: "Default" GPU driver in COS and Ubuntu.
      LATEST: "Latest" GPU driver in COS.
    """
    GPU_DRIVER_VERSION_UNSPECIFIED = 0
    INSTALLATION_DISABLED = 1
    DEFAULT = 2
    LATEST = 3

  gpuDriverVersion = _messages.EnumField('GpuDriverVersionValueValuesEnum', 1)


class GPUSharingConfig(_messages.Message):
  r"""GPUSharingConfig represents the GPU sharing configuration for Hardware
  Accelerators.

  Enums:
    GpuSharingStrategyValueValuesEnum: The type of GPU sharing strategy to
      enable on the GPU node.

  Fields:
    gpuSharingStrategy: The type of GPU sharing strategy to enable on the GPU
      node.
    maxSharedClientsPerGpu: The max number of containers that can share a
      physical GPU.
  """

  class GpuSharingStrategyValueValuesEnum(_messages.Enum):
    r"""The type of GPU sharing strategy to enable on the GPU node.

    Values:
      GPU_SHARING_STRATEGY_UNSPECIFIED: Default value.
      TIME_SHARING: GPUs are time-shared between containers.
      MPS: GPUs are shared between containers with NVIDIA MPS.
    """
    GPU_SHARING_STRATEGY_UNSPECIFIED = 0
    TIME_SHARING = 1
    MPS = 2

  gpuSharingStrategy = _messages.EnumField('GpuSharingStrategyValueValuesEnum', 1)
  maxSharedClientsPerGpu = _messages.IntegerField(2)


class GatewayAPIConfig(_messages.Message):
  r"""GatewayAPIConfig contains the desired config of Gateway API on this
  cluster.

  Enums:
    ChannelValueValuesEnum: The Gateway API release channel to use for Gateway
      API.

  Fields:
    channel: The Gateway API release channel to use for Gateway API.
  """

  class ChannelValueValuesEnum(_messages.Enum):
    r"""The Gateway API release channel to use for Gateway API.

    Values:
      CHANNEL_UNSPECIFIED: Default value.
      CHANNEL_DISABLED: Gateway API support is disabled
      CHANNEL_EXPERIMENTAL: Deprecated: use CHANNEL_STANDARD instead. Gateway
        API support is enabled, experimental CRDs are installed
      CHANNEL_STANDARD: Gateway API support is enabled, standard CRDs are
        installed
    """
    CHANNEL_UNSPECIFIED = 0
    CHANNEL_DISABLED = 1
    CHANNEL_EXPERIMENTAL = 2
    CHANNEL_STANDARD = 3

  channel = _messages.EnumField('ChannelValueValuesEnum', 1)


class GcePersistentDiskCsiDriverConfig(_messages.Message):
  r"""Configuration for the Compute Engine PD CSI driver.

  Fields:
    enabled: Whether the Compute Engine PD CSI driver is enabled for this
      cluster.
  """

  enabled = _messages.BooleanField(1)


class GcfsConfig(_messages.Message):
  r"""GcfsConfig contains configurations of Google Container File System.

  Fields:
    enabled: Whether to use GCFS.
  """

  enabled = _messages.BooleanField(1)


class GcpFilestoreCsiDriverConfig(_messages.Message):
  r"""Configuration for the Filestore CSI driver.

  Fields:
    enabled: Whether the Filestore CSI driver is enabled for this cluster.
  """

  enabled = _messages.BooleanField(1)


class GcsFuseCsiDriverConfig(_messages.Message):
  r"""Configuration for the Cloud Storage Fuse CSI driver.

  Fields:
    enabled: Whether the Cloud Storage Fuse CSI driver is enabled for this
      cluster.
  """

  enabled = _messages.BooleanField(1)


class GetJSONWebKeysResponse(_messages.Message):
  r"""GetJSONWebKeysResponse is a valid JSON Web Key Set as specified in rfc
  7517

  Fields:
    cacheHeader: For HTTP requests, this field is automatically extracted into
      the Cache-Control HTTP header.
    keys: The public component of the keys used by the cluster to sign token
      requests.
  """

  cacheHeader = _messages.MessageField('HttpCacheControlResponseHeader', 1)
  keys = _messages.MessageField('Jwk', 2, repeated=True)


class GetOpenIDConfigResponse(_messages.Message):
  r"""GetOpenIDConfigResponse is an OIDC discovery document for the cluster.
  See the OpenID Connect Discovery 1.0 specification for details.

  Fields:
    cacheHeader: For HTTP requests, this field is automatically extracted into
      the Cache-Control HTTP header.
    claims_supported: Supported claims.
    grant_types: Supported grant types.
    id_token_signing_alg_values_supported: supported ID Token signing
      Algorithms.
    issuer: OIDC Issuer.
    jwks_uri: JSON Web Key uri.
    response_types_supported: Supported response types.
    subject_types_supported: Supported subject types.
  """

  cacheHeader = _messages.MessageField('HttpCacheControlResponseHeader', 1)
  claims_supported = _messages.StringField(2, repeated=True)
  grant_types = _messages.StringField(3, repeated=True)
  id_token_signing_alg_values_supported = _messages.StringField(4, repeated=True)
  issuer = _messages.StringField(5)
  jwks_uri = _messages.StringField(6)
  response_types_supported = _messages.StringField(7, repeated=True)
  subject_types_supported = _messages.StringField(8, repeated=True)


class GkeAutoUpgradeConfig(_messages.Message):
  r"""GkeAutoUpgradeConfig is the configuration for GKE auto upgrades.

  Enums:
    PatchModeValueValuesEnum: PatchMode specifies how auto upgrade patch
      builds should be selected.

  Fields:
    patchMode: PatchMode specifies how auto upgrade patch builds should be
      selected.
  """

  class PatchModeValueValuesEnum(_messages.Enum):
    r"""PatchMode specifies how auto upgrade patch builds should be selected.

    Values:
      PATCH_MODE_UNSPECIFIED: PATCH_MODE_UNSPECIFIED defaults to using the
        upgrade target from the channel's patch upgrade targets as the upgrade
        target for the version.
      ACCELERATED: ACCELERATED denotes that the latest patch build in the
        channel should be used as the upgrade target for the version.
    """
    PATCH_MODE_UNSPECIFIED = 0
    ACCELERATED = 1

  patchMode = _messages.EnumField('PatchModeValueValuesEnum', 1)


class GkeBackupAgentConfig(_messages.Message):
  r"""Configuration for the Backup for GKE Agent.

  Fields:
    enabled: Whether the Backup for GKE agent is enabled for this cluster.
  """

  enabled = _messages.BooleanField(1)


class GkeOidcConfig(_messages.Message):
  r"""GkeOidcConfig is configuration for GKE OIDC which allows customers to
  use external OIDC providers with the K8S API

  Fields:
    enabled: Whether to enable the GKD OIDC component
  """

  enabled = _messages.BooleanField(1)


class HighScaleCheckpointingConfig(_messages.Message):
  r"""Configuration for the High Scale Checkpointing.

  Fields:
    enabled: Whether the High Scale Checkpointing is enabled for this cluster.
  """

  enabled = _messages.BooleanField(1)


class HorizontalPodAutoscaling(_messages.Message):
  r"""Configuration options for the horizontal pod autoscaling feature, which
  increases or decreases the number of replica pods a replication controller
  has based on the resource usage of the existing pods.

  Fields:
    disabled: Whether the Horizontal Pod Autoscaling feature is enabled in the
      cluster. When enabled, it ensures that metrics are collected into
      Stackdriver Monitoring.
  """

  disabled = _messages.BooleanField(1)


class HostConfig(_messages.Message):
  r"""HostConfig configures the registry host under a given Server.

  Enums:
    CapabilitiesValueListEntryValuesEnum:

  Fields:
    ca: CA configures the registry host certificate.
    capabilities: Capabilities represent the capabilities of the registry
      host, specifying what operations a host is capable of performing. If not
      set, containerd enables all capabilities by default.
    client: Client configures the registry host client certificate and key.
    dialTimeout: Specifies the maximum duration allowed for a connection
      attempt to complete. A shorter timeout helps reduce delays when falling
      back to the original registry if the mirror is unreachable. Maximum
      allowed value is 180s. If not set, containerd sets default 30s. The
      value should be a decimal number of seconds with an `s` suffix.
    header: Header configures the registry host headers.
    host: Host configures the registry host/mirror. It supports fully
      qualified domain names (FQDN) and IP addresses: Specifying port is
      supported. Wildcards are NOT supported. Examples: - my.customdomain.com
      - 10.0.1.2:5000
    overridePath: OverridePath is used to indicate the host's API root
      endpoint is defined in the URL path rather than by the API
      specification. This may be used with non-compliant OCI registries which
      are missing the /v2 prefix. If not set, containerd sets default false.
  """

  class CapabilitiesValueListEntryValuesEnum(_messages.Enum):
    r"""CapabilitiesValueListEntryValuesEnum enum type.

    Values:
      HOST_CAPABILITY_UNSPECIFIED: UNKNOWN should never be set.
      HOST_CAPABILITY_PULL: Pull represents the capability to fetch manifests
        and blobs by digest.
      HOST_CAPABILITY_RESOLVE: Resolve represents the capability to fetch
        manifests by name.
      HOST_CAPABILITY_PUSH: Push represents the capability to push blobs and
        manifests.
    """
    HOST_CAPABILITY_UNSPECIFIED = 0
    HOST_CAPABILITY_PULL = 1
    HOST_CAPABILITY_RESOLVE = 2
    HOST_CAPABILITY_PUSH = 3

  ca = _messages.MessageField('CertificateConfig', 1, repeated=True)
  capabilities = _messages.EnumField('CapabilitiesValueListEntryValuesEnum', 2, repeated=True)
  client = _messages.MessageField('CertificateConfigPair', 3, repeated=True)
  dialTimeout = _messages.StringField(4)
  header = _messages.MessageField('RegistryHeader', 5, repeated=True)
  host = _messages.StringField(6)
  overridePath = _messages.BooleanField(7)


class HostMaintenancePolicy(_messages.Message):
  r"""HostMaintenancePolicy contains the maintenance policy for the hosts on
  which the GKE VMs run on.

  Enums:
    MaintenanceIntervalValueValuesEnum: Specifies the frequency of planned
      maintenance events.

  Fields:
    maintenanceInterval: Specifies the frequency of planned maintenance
      events.
    opportunisticMaintenanceStrategy: Strategy that will trigger maintenance
      on behalf of the customer.
  """

  class MaintenanceIntervalValueValuesEnum(_messages.Enum):
    r"""Specifies the frequency of planned maintenance events.

    Values:
      MAINTENANCE_INTERVAL_UNSPECIFIED: The maintenance interval is not
        explicitly specified.
      AS_NEEDED: Nodes are eligible to receive infrastructure and hypervisor
        updates as they become available. This may result in more maintenance
        operations (live migrations or terminations) for the node than the
        PERIODIC option.
      PERIODIC: Nodes receive infrastructure and hypervisor updates on a
        periodic basis, minimizing the number of maintenance operations (live
        migrations or terminations) on an individual VM. This may mean
        underlying VMs will take longer to receive an update than if it was
        configured for AS_NEEDED. Security updates will still be applied as
        soon as they are available.
    """
    MAINTENANCE_INTERVAL_UNSPECIFIED = 0
    AS_NEEDED = 1
    PERIODIC = 2

  maintenanceInterval = _messages.EnumField('MaintenanceIntervalValueValuesEnum', 1)
  opportunisticMaintenanceStrategy = _messages.MessageField('OpportunisticMaintenanceStrategy', 2)


class HttpCacheControlResponseHeader(_messages.Message):
  r"""RFC-2616: cache control support

  Fields:
    age: 14.6 response cache age, in seconds since the response is generated
    directive: 14.9 request and response directives
    expires: 14.21 response cache expires, in RFC 1123 date format
  """

  age = _messages.IntegerField(1)
  directive = _messages.StringField(2)
  expires = _messages.StringField(3)


class HttpLoadBalancing(_messages.Message):
  r"""Configuration options for the HTTP (L7) load balancing controller addon,
  which makes it easy to set up HTTP load balancers for services in a cluster.

  Fields:
    disabled: Whether the HTTP Load Balancing controller is enabled in the
      cluster. When enabled, it runs a small pod in the cluster that manages
      the load balancers.
  """

  disabled = _messages.BooleanField(1)


class HugepagesConfig(_messages.Message):
  r"""Hugepages amount in both 2m and 1g size

  Fields:
    hugepageSize1g: Optional. Amount of 1G hugepages
    hugepageSize2m: Optional. Amount of 2M hugepages
  """

  hugepageSize1g = _messages.IntegerField(1, variant=_messages.Variant.INT32)
  hugepageSize2m = _messages.IntegerField(2, variant=_messages.Variant.INT32)


class ILBSubsettingConfig(_messages.Message):
  r"""ILBSubsettingConfig contains the desired config of L4 Internal
  LoadBalancer subsetting on this cluster.

  Fields:
    enabled: Enables l4 ILB subsetting for this cluster
  """

  enabled = _messages.BooleanField(1)


class IPAllocationPolicy(_messages.Message):
  r"""Configuration for controlling how IPs are allocated in the cluster.

  Enums:
    Ipv6AccessTypeValueValuesEnum: The ipv6 access type (internal or external)
      when create_subnetwork is true
    StackTypeValueValuesEnum: IP stack type

  Fields:
    additionalIpRangesConfigs: Output only. The additional IP ranges that are
      added to the cluster. These IP ranges can be used by new node pools to
      allocate node and pod IPs automatically. Each AdditionalIPRangesConfig
      corresponds to a single subnetwork. Once a range is removed it will not
      show up in IPAllocationPolicy.
    additionalPodRangesConfig: Output only. The additional pod ranges that are
      added to the cluster. These pod ranges can be used by new node pools to
      allocate pod IPs automatically. Once the range is removed it will not
      show up in IPAllocationPolicy.
    allowRouteOverlap: If true, allow allocation of cluster CIDR ranges that
      overlap with certain kinds of network routes. By default we do not allow
      cluster CIDR ranges to intersect with any user declared routes. With
      allow_route_overlap == true, we allow overlapping with CIDR ranges that
      are larger than the cluster CIDR range. If this field is set to true,
      then cluster and services CIDRs must be fully-specified (e.g.
      `10.96.0.0/14`, but not `/14`), which means: 1) When `use_ip_aliases` is
      true, `cluster_ipv4_cidr_block` and `services_ipv4_cidr_block` must be
      fully-specified. 2) When `use_ip_aliases` is false,
      `cluster.cluster_ipv4_cidr` muse be fully-specified.
    autoIpamConfig: Optional. AutoIpamConfig contains all information related
      to Auto IPAM configuration for the cluster.
    clusterIpv4Cidr: This field is deprecated, use cluster_ipv4_cidr_block.
    clusterIpv4CidrBlock: The IP address range for the cluster pod IPs. If
      this field is set, then `cluster.cluster_ipv4_cidr` must be left blank.
      This field is only applicable when `use_ip_aliases` is true. Set to
      blank to have a range chosen with the default size. Set to /netmask
      (e.g. `/14`) to have a range chosen with a specific netmask. Set to a
      [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing)
      notation (e.g. `10.96.0.0/14`) from the RFC-1918 private networks (e.g.
      `10.0.0.0/8`, `172.16.0.0/12`, `192.168.0.0/16`) to pick a specific
      range to use.
    clusterSecondaryRangeName: The name of the secondary range to be used for
      the cluster CIDR block. The secondary range will be used for pod IP
      addresses. This must be an existing secondary range associated with the
      cluster subnetwork. This field is only applicable if use_ip_aliases is
      true and create_subnetwork is false.
    createSubnetwork: Whether a new subnetwork will be created automatically
      for the cluster. This field is only applicable when `use_ip_aliases` is
      true.
    defaultPodIpv4RangeUtilization: Output only. The utilization of the
      cluster default IPv4 range for the pod. The ratio is Usage/[Total number
      of IPs in the secondary range], Usage=numNodes*numZones*podIPsPerNode.
    ipv6AccessType: The ipv6 access type (internal or external) when
      create_subnetwork is true
    networkTierConfig: Cluster-level network tier configuration is used to
      determine the default network tier for external IP addresses on cluster
      resources, such as node pools and load balancers.
    nodeIpv4Cidr: This field is deprecated, use node_ipv4_cidr_block.
    nodeIpv4CidrBlock: The IP address range of the instance IPs in this
      cluster. This is applicable only if `create_subnetwork` is true. Set to
      blank to have a range chosen with the default size. Set to /netmask
      (e.g. `/14`) to have a range chosen with a specific netmask. Set to a
      [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing)
      notation (e.g. `10.96.0.0/14`) from the RFC-1918 private networks (e.g.
      `10.0.0.0/8`, `172.16.0.0/12`, `192.168.0.0/16`) to pick a specific
      range to use.
    podCidrOverprovisionConfig: [PRIVATE FIELD] Pod CIDR size overprovisioning
      config for the cluster. Pod CIDR size per node depends on
      max_pods_per_node. By default, the value of max_pods_per_node is rounded
      off to next power of 2 and we then double that to get the size of pod
      CIDR block per node. Example: max_pods_per_node of 30 would result in 64
      IPs (/26). This config can disable the doubling of IPs (we still round
      off to next power of 2) Example: max_pods_per_node of 30 will result in
      32 IPs (/27) when overprovisioning is disabled.
    servicesIpv4Cidr: This field is deprecated, use services_ipv4_cidr_block.
    servicesIpv4CidrBlock: The IP address range of the services IPs in this
      cluster. If blank, a range will be automatically chosen with the default
      size. This field is only applicable when `use_ip_aliases` is true. Set
      to blank to have a range chosen with the default size. Set to /netmask
      (e.g. `/14`) to have a range chosen with a specific netmask. Set to a
      [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing)
      notation (e.g. `10.96.0.0/14`) from the RFC-1918 private networks (e.g.
      `10.0.0.0/8`, `172.16.0.0/12`, `192.168.0.0/16`) to pick a specific
      range to use.
    servicesIpv6CidrBlock: Output only. The services IPv6 CIDR block for the
      cluster.
    servicesSecondaryRangeName: The name of the secondary range to be used as
      for the services CIDR block. The secondary range will be used for
      service ClusterIPs. This must be an existing secondary range associated
      with the cluster subnetwork. This field is only applicable with
      use_ip_aliases is true and create_subnetwork is false.
    stackType: IP stack type
    subnetIpv6CidrBlock: Output only. The subnet's IPv6 CIDR block used by
      nodes and pods.
    subnetworkName: A custom subnetwork name to be used if `create_subnetwork`
      is true. If this field is empty, then an automatic name will be chosen
      for the new subnetwork.
    targetNodeIpv4Range: The target IP address range of the node IPs in this
      cluster. This is applicable only if `create_subnetwork` is true. This
      setting works in conjunction with `node_ipv4_cidr_block`. When
      `node_ipv4_cidr_block` specifies an IP mask length then the
      corresponding range will be auto assigned from within the CIDR block
      specified here. Set to blank to use the default range (10.0.0.0/8). Set
      to a [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing)
      notation (e.g. `100.64.0.0/16`) to pick a specific range to use.
    targetPodIpv4Range: The target IP address range of the pod IPs in this
      cluster. This setting works in conjunction with
      `cluster_ipv4_cidr_block`. When `cluster_ipv4_cidr_block` specifies an
      IP mask length then the corresponding range will be auto assigned from
      within the CIDR block specified here. Set to blank to use the default
      range (10.0.0.0/8). Set to a
      [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing)
      notation (e.g. `240.0.0.0/8`) to pick a specific range to use.
    targetServiceIpv4Range: The target IP address range of the services IPs in
      this cluster. This setting works in conjunction with
      `services_ipv4_cidr_block`. When `services_ipv4_cidr_block` specifies an
      IP mask length then the corresponding range will be auto assigned from
      within the CIDR block specified here. Set to blank to use the default
      range (10.0.0.0/8). Set to a
      [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing)
      notation (e.g. `192.168.0.0/16`) to pick a specific range to use.
    tpuIpv4CidrBlock: The IP address range of the Cloud TPUs in this cluster.
      If unspecified, a range will be automatically chosen with the default
      size. This field is only applicable when `use_ip_aliases` is true, and
      it must not be specified when the `tpu_use_service_networking` is
      `true`. Unspecified to have a range chosen with the default size `/20`.
      Set to /netmask (e.g. `/14`) to have a range chosen with a specific
      netmask. Set to a [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-
      Domain_Routing) notation (e.g. `10.96.0.0/14`) from the RFC-1918 private
      networks (e.g. `10.0.0.0/8`, `172.16.0.0/12`, `192.168.0.0/16`) to pick
      a specific range to use. This field is deprecated, use
      cluster.tpu_config.ipv4_cidr_block instead. This field is deprecated due
      to the deprecation of 2VM TPU. The end of life date for 2VM TPU is
      2025-04-25.
    tpuUseServiceNetworking: Enable Cloud TPU's Service Networking mode. In
      this mode, the CIDR blocks used by the Cloud TPUs will be allocated and
      managed by Service Networking, instead of GKE. This field must be
      `false` when `tpu_ipv4_cidr_block` is specified. This field is
      deprecated, use cluster.tpu_config.use_service_networking instead. This
      field is deprecated due to the deprecation of 2VM TPU. The end of life
      date for 2VM TPU is 2025-04-25.
    useIpAliases: Whether alias IPs will be used for pod IPs in the cluster.
      This is used in conjunction with use_routes. It cannot be true if
      use_routes is true. If both use_ip_aliases and use_routes are false,
      then the server picks the default IP allocation mode
    useRoutes: Whether routes will be used for pod IPs in the cluster. This is
      used in conjunction with use_ip_aliases. It cannot be true if
      use_ip_aliases is true. If both use_ip_aliases and use_routes are false,
      then the server picks the default IP allocation mode
  """

  class Ipv6AccessTypeValueValuesEnum(_messages.Enum):
    r"""The ipv6 access type (internal or external) when create_subnetwork is
    true

    Values:
      IPV6_ACCESS_TYPE_UNSPECIFIED: Default value, will be defaulted as type
        external.
      INTERNAL: Access type internal (all v6 addresses are internal IPs)
      EXTERNAL: Access type external (all v6 addresses are external IPs)
    """
    IPV6_ACCESS_TYPE_UNSPECIFIED = 0
    INTERNAL = 1
    EXTERNAL = 2

  class StackTypeValueValuesEnum(_messages.Enum):
    r"""IP stack type

    Values:
      STACK_TYPE_UNSPECIFIED: By default, the clusters will be IPV4 only
      IPV4: The value used if the cluster is a IPV4 only
      IPV4_IPV6: The value used if the cluster is a dual stack cluster
      IPV6: Cluster is IPv6 only.
    """
    STACK_TYPE_UNSPECIFIED = 0
    IPV4 = 1
    IPV4_IPV6 = 2
    IPV6 = 3

  additionalIpRangesConfigs = _messages.MessageField('AdditionalIPRangesConfig', 1, repeated=True)
  additionalPodRangesConfig = _messages.MessageField('AdditionalPodRangesConfig', 2)
  allowRouteOverlap = _messages.BooleanField(3)
  autoIpamConfig = _messages.MessageField('AutoIpamConfig', 4)
  clusterIpv4Cidr = _messages.StringField(5)
  clusterIpv4CidrBlock = _messages.StringField(6)
  clusterSecondaryRangeName = _messages.StringField(7)
  createSubnetwork = _messages.BooleanField(8)
  defaultPodIpv4RangeUtilization = _messages.FloatField(9)
  ipv6AccessType = _messages.EnumField('Ipv6AccessTypeValueValuesEnum', 10)
  networkTierConfig = _messages.MessageField('NetworkTierConfig', 11)
  nodeIpv4Cidr = _messages.StringField(12)
  nodeIpv4CidrBlock = _messages.StringField(13)
  podCidrOverprovisionConfig = _messages.MessageField('PodCIDROverprovisionConfig', 14)
  servicesIpv4Cidr = _messages.StringField(15)
  servicesIpv4CidrBlock = _messages.StringField(16)
  servicesIpv6CidrBlock = _messages.StringField(17)
  servicesSecondaryRangeName = _messages.StringField(18)
  stackType = _messages.EnumField('StackTypeValueValuesEnum', 19)
  subnetIpv6CidrBlock = _messages.StringField(20)
  subnetworkName = _messages.StringField(21)
  targetNodeIpv4Range = _messages.StringField(22)
  targetPodIpv4Range = _messages.StringField(23)
  targetServiceIpv4Range = _messages.StringField(24)
  tpuIpv4CidrBlock = _messages.StringField(25)
  tpuUseServiceNetworking = _messages.BooleanField(26)
  useIpAliases = _messages.BooleanField(27)
  useRoutes = _messages.BooleanField(28)


class IPEndpointsConfig(_messages.Message):
  r"""IP endpoints configuration.

  Fields:
    authorizedNetworksConfig: Configuration of authorized networks. If
      enabled, restricts access to the control plane based on source IP. It is
      invalid to specify both Cluster.masterAuthorizedNetworksConfig and this
      field at the same time.
    enablePublicEndpoint: Controls whether the control plane allows access
      through a public IP. It is invalid to specify both
      PrivateClusterConfig.enablePrivateEndpoint and this field at the same
      time.
    enabled: Controls whether to allow direct IP access.
    globalAccess: Controls whether the control plane's private endpoint is
      accessible from sources in other regions. It is invalid to specify both
      PrivateClusterMasterGlobalAccessConfig.enabled and this field at the
      same time.
    privateEndpoint: Output only. The internal IP address of this cluster's
      control plane. Only populated if enabled.
    privateEndpointSubnetwork: Subnet to provision the master's private
      endpoint during cluster creation. Specified in
      projects/*/regions/*/subnetworks/* format. It is invalid to specify both
      PrivateClusterConfig.privateEndpointSubnetwork and this field at the
      same time.
    publicEndpoint: Output only. The external IP address of this cluster's
      control plane. Only populated if enabled.
  """

  authorizedNetworksConfig = _messages.MessageField('MasterAuthorizedNetworksConfig', 1)
  enablePublicEndpoint = _messages.BooleanField(2)
  enabled = _messages.BooleanField(3)
  globalAccess = _messages.BooleanField(4)
  privateEndpoint = _messages.StringField(5)
  privateEndpointSubnetwork = _messages.StringField(6)
  publicEndpoint = _messages.StringField(7)


class IdentityServiceConfig(_messages.Message):
  r"""IdentityServiceConfig is configuration for Identity Service which allows
  customers to use external identity providers with the K8S API

  Fields:
    enabled: Whether to enable the Identity Service component
  """

  enabled = _messages.BooleanField(1)


class InitScript(_messages.Message):
  r"""InitScript provide a simply bash script to be executed on the node.

  Fields:
    args: Optional. The optional arguments line to be passed to the init
      script.
    gcpSecretManagerSecretUri: The resource name of the secret manager secret
      hosting the init script. Both global and regional secrets are supported
      with format below: Global secret:
      projects/{project}/secrets/{secret}/versions/{version} Regional secret:
      projects/{project}/locations/{location}/secrets/{secret}/versions/{versi
      on} Example: projects/1234567890/secrets/script_1/versions/1. Accept
      version number only, not support version alias. User can't configure
      both gcp_secret_manager_secret_uri and gcs_uri.
    gcsGeneration: The generation of the init script stored in Gloud Storage.
      This is the required field to identify the version of the init script.
      User can get the genetaion from `gcloud storage objects describe
      gs://BUCKET_NAME/OBJECT_NAME --format="value(generation)"` or from the
      "Version history" tab of the object in the Cloud Console UI.
    gcsUri: The Cloud Storage URI for storing the init script. Format:
      gs://BUCKET_NAME/OBJECT_NAME The service account on the nodepool must
      have read access to the object. User can't configure both gcs_uri and
      gcp_secret_manager_secret_uri.
  """

  args = _messages.StringField(1, repeated=True)
  gcpSecretManagerSecretUri = _messages.StringField(2)
  gcsGeneration = _messages.IntegerField(3)
  gcsUri = _messages.StringField(4)


class IntraNodeVisibilityConfig(_messages.Message):
  r"""IntraNodeVisibilityConfig contains the desired config of the intra-node
  visibility on this cluster.

  Fields:
    enabled: Enables intra node visibility for this cluster.
  """

  enabled = _messages.BooleanField(1)


class IstioConfig(_messages.Message):
  r"""Configuration options for Istio addon.

  Enums:
    AuthValueValuesEnum: The specified Istio auth mode, either none, or mutual
      TLS.

  Fields:
    auth: The specified Istio auth mode, either none, or mutual TLS.
    csmMeshName: DEPRECATED: No longer used.
    disabled: Whether Istio is enabled for this cluster.
  """

  class AuthValueValuesEnum(_messages.Enum):
    r"""The specified Istio auth mode, either none, or mutual TLS.

    Values:
      AUTH_NONE: auth not enabled
      AUTH_MUTUAL_TLS: auth mutual TLS enabled
    """
    AUTH_NONE = 0
    AUTH_MUTUAL_TLS = 1

  auth = _messages.EnumField('AuthValueValuesEnum', 1)
  csmMeshName = _messages.StringField(2)
  disabled = _messages.BooleanField(3)


class Jwk(_messages.Message):
  r"""Jwk is a JSON Web Key as specified in RFC 7517

  Fields:
    alg: Algorithm.
    crv: Used for ECDSA keys.
    e: Used for RSA keys.
    kid: Key ID.
    kty: Key Type.
    n: Used for RSA keys.
    use: Permitted uses for the public keys.
    x: Used for ECDSA keys.
    y: Used for ECDSA keys.
  """

  alg = _messages.StringField(1)
  crv = _messages.StringField(2)
  e = _messages.StringField(3)
  kid = _messages.StringField(4)
  kty = _messages.StringField(5)
  n = _messages.StringField(6)
  use = _messages.StringField(7)
  x = _messages.StringField(8)
  y = _messages.StringField(9)


class K8sBetaAPIConfig(_messages.Message):
  r"""Kubernetes open source beta apis enabled on the cluster.

  Fields:
    enabledApis: api name, e.g. storage.k8s.io/v1beta1/csistoragecapacities.
  """

  enabledApis = _messages.StringField(1, repeated=True)


class KalmConfig(_messages.Message):
  r"""Configuration options for the KALM addon.

  Fields:
    enabled: Whether KALM is enabled for this cluster.
  """

  enabled = _messages.BooleanField(1)


class KernelCommandlineOverrides(_messages.Message):
  r"""Definition of possible additional kernel command line arguments to be
  configured to the kernel.

  Enums:
    InitOnAllocValueValuesEnum: Optional. Defines the change of init_on_alloc.
    SpecRstackOverflowValueValuesEnum: Optional. Defines the change of
      spec_rstack_overflow.

  Fields:
    initOnAlloc: Optional. Defines the change of init_on_alloc.
    specRstackOverflow: Optional. Defines the change of spec_rstack_overflow.
  """

  class InitOnAllocValueValuesEnum(_messages.Enum):
    r"""Optional. Defines the change of init_on_alloc.

    Values:
      INIT_ON_ALLOC_UNSPECIFIED: Default value. GKE will not modify the kernel
        configuration.
      INIT_ON_ALLOC_OFF: Disable init_on_alloc.
    """
    INIT_ON_ALLOC_UNSPECIFIED = 0
    INIT_ON_ALLOC_OFF = 1

  class SpecRstackOverflowValueValuesEnum(_messages.Enum):
    r"""Optional. Defines the change of spec_rstack_overflow.

    Values:
      SPEC_RSTACK_OVERFLOW_UNSPECIFIED: Default value. GKE will not modify the
        kernel configuration.
      SPEC_RSTACK_OVERFLOW_OFF: Disable spec_rstack_overflow.
    """
    SPEC_RSTACK_OVERFLOW_UNSPECIFIED = 0
    SPEC_RSTACK_OVERFLOW_OFF = 1

  initOnAlloc = _messages.EnumField('InitOnAllocValueValuesEnum', 1)
  specRstackOverflow = _messages.EnumField('SpecRstackOverflowValueValuesEnum', 2)


class KernelOverrides(_messages.Message):
  r"""Parameters that can be configured on the kernel.

  Fields:
    kernelCommandlineOverrides: Optional. Allow setting for optional kernel
      command line arguments overrides.
    lruGen: Optional. lrugen (Multi-Gen LRU) options
  """

  kernelCommandlineOverrides = _messages.MessageField('KernelCommandlineOverrides', 1)
  lruGen = _messages.MessageField('LRUGen', 2)


class KubernetesDashboard(_messages.Message):
  r"""Configuration for the Kubernetes Dashboard.

  Fields:
    disabled: Whether the Kubernetes Dashboard is enabled for this cluster.
  """

  disabled = _messages.BooleanField(1)


class KubernetesObjectsExportConfig(_messages.Message):
  r"""KubernetesObjectsExportConfig is configuration which enables export of
  kubernetes resource changes to specified targets.

  Fields:
    kubernetesObjectsChangesTarget: Target to which objects changes should be
      sent. Currently the only supported value here is CLOUD_LOGGING.
    kubernetesObjectsSnapshotsTarget: Target to which objects snapshots should
      be sent. Currently the only supported value here is CLOUD_LOGGING.
  """

  kubernetesObjectsChangesTarget = _messages.StringField(1)
  kubernetesObjectsSnapshotsTarget = _messages.StringField(2)


class LRUGen(_messages.Message):
  r"""lrugen (Multi-Gen LRU) options See https://docs.kernel.org/admin-
  guide/mm/multigen_lru.html

  Fields:
    enabled: Optional. Enable lrugen.
    minTtlMs: Optional. Users can write N to min_ttl_ms to prevent the working
      set of N milliseconds from getting evicted.
  """

  enabled = _messages.BooleanField(1)
  minTtlMs = _messages.IntegerField(2, variant=_messages.Variant.INT32)


class LegacyAbac(_messages.Message):
  r"""Configuration for the legacy Attribute Based Access Control
  authorization mode.

  Fields:
    enabled: Whether the ABAC authorizer is enabled for this cluster. When
      enabled, identities in the system, including service accounts, nodes,
      and controllers, will have statically granted permissions beyond those
      provided by the RBAC configuration or IAM.
  """

  enabled = _messages.BooleanField(1)


class LinuxNodeConfig(_messages.Message):
  r"""Parameters that can be configured on Linux nodes.

  Enums:
    CgroupModeValueValuesEnum: cgroup_mode specifies the cgroup mode to be
      used on the node.
    TransparentHugepageDefragValueValuesEnum: Optional. Defines the
      transparent hugepage defrag configuration on the node. VM hugepage
      allocation can be managed by either limiting defragmentation for delayed
      allocation or skipping it entirely for immediate allocation only. See
      https://docs.kernel.org/admin-guide/mm/transhuge.html for more details.
    TransparentHugepageEnabledValueValuesEnum: Optional. Transparent hugepage
      support for anonymous memory can be entirely disabled (mostly for
      debugging purposes) or only enabled inside MADV_HUGEPAGE regions (to
      avoid the risk of consuming more memory resources) or enabled system
      wide. See https://docs.kernel.org/admin-guide/mm/transhuge.html for more
      details.

  Messages:
    SysctlsValue: The Linux kernel parameters to be applied to the nodes and
      all pods running on the nodes. The following parameters are supported.
      net.core.busy_poll net.core.busy_read net.core.netdev_max_backlog
      net.core.rmem_max net.core.rmem_default net.core.wmem_default
      net.core.wmem_max net.core.optmem_max net.core.somaxconn
      net.ipv4.tcp_rmem net.ipv4.tcp_wmem net.ipv4.tcp_tw_reuse
      net.ipv4.tcp_mtu_probing net.ipv4.tcp_max_orphans
      net.ipv4.tcp_max_tw_buckets net.ipv4.tcp_syn_retries net.ipv4.tcp_ecn
      net.ipv4.tcp_congestion_control net.netfilter.nf_conntrack_max
      net.netfilter.nf_conntrack_buckets
      net.netfilter.nf_conntrack_tcp_timeout_close_wait
      net.netfilter.nf_conntrack_tcp_timeout_time_wait
      net.netfilter.nf_conntrack_tcp_timeout_established
      net.netfilter.nf_conntrack_acct kernel.shmmni kernel.shmmax
      kernel.shmall kernel.perf_event_paranoid kernel.sched_rt_runtime_us
      kernel.softlockup_panic kernel.yama.ptrace_scope kernel.kptr_restrict
      kernel.dmesg_restrict kernel.sysrq fs.aio-max-nr fs.file-max
      fs.inotify.max_user_instances fs.inotify.max_user_watches fs.nr_open
      vm.dirty_background_ratio vm.dirty_background_bytes
      vm.dirty_expire_centisecs vm.dirty_ratio vm.dirty_bytes
      vm.dirty_writeback_centisecs vm.max_map_count vm.overcommit_memory
      vm.overcommit_ratio vm.vfs_cache_pressure vm.swappiness
      vm.watermark_scale_factor vm.min_free_kbytes

  Fields:
    additionalEtcHosts: Optional. Additional entries to be added to
      /etc/hosts.
    additionalEtcResolvConf: Optional. Additional entries to be added to
      /etc/resolv.conf.
    additionalEtcSystemdResolvedConf: Optional. Additional entries to be added
      to /etc/systemd/resolved.conf.
    cgroupMode: cgroup_mode specifies the cgroup mode to be used on the node.
    customNodeInit: Optional. Allow users to run arbitrary bash script or
      container on the node.
    hugepages: Optional. Amounts for 2M and 1G hugepages
    kernelOverrides: Optional. Defines the kernel overrides to be applied to
      the nodes. Note: sysctl changes are defined separately in the sysctls
      fields.
    nodeKernelModuleLoading: Optional. Configuration for kernel module loading
      on nodes. When enabled, the node pool will be provisioned with a
      Container-Optimized OS image that enforces kernel module signature
      verification.
    swapConfig: Optional. Enables and configures swap space on nodes. If
      omitted, swap is disabled.
    sysctls: The Linux kernel parameters to be applied to the nodes and all
      pods running on the nodes. The following parameters are supported.
      net.core.busy_poll net.core.busy_read net.core.netdev_max_backlog
      net.core.rmem_max net.core.rmem_default net.core.wmem_default
      net.core.wmem_max net.core.optmem_max net.core.somaxconn
      net.ipv4.tcp_rmem net.ipv4.tcp_wmem net.ipv4.tcp_tw_reuse
      net.ipv4.tcp_mtu_probing net.ipv4.tcp_max_orphans
      net.ipv4.tcp_max_tw_buckets net.ipv4.tcp_syn_retries net.ipv4.tcp_ecn
      net.ipv4.tcp_congestion_control net.netfilter.nf_conntrack_max
      net.netfilter.nf_conntrack_buckets
      net.netfilter.nf_conntrack_tcp_timeout_close_wait
      net.netfilter.nf_conntrack_tcp_timeout_time_wait
      net.netfilter.nf_conntrack_tcp_timeout_established
      net.netfilter.nf_conntrack_acct kernel.shmmni kernel.shmmax
      kernel.shmall kernel.perf_event_paranoid kernel.sched_rt_runtime_us
      kernel.softlockup_panic kernel.yama.ptrace_scope kernel.kptr_restrict
      kernel.dmesg_restrict kernel.sysrq fs.aio-max-nr fs.file-max
      fs.inotify.max_user_instances fs.inotify.max_user_watches fs.nr_open
      vm.dirty_background_ratio vm.dirty_background_bytes
      vm.dirty_expire_centisecs vm.dirty_ratio vm.dirty_bytes
      vm.dirty_writeback_centisecs vm.max_map_count vm.overcommit_memory
      vm.overcommit_ratio vm.vfs_cache_pressure vm.swappiness
      vm.watermark_scale_factor vm.min_free_kbytes
    timeZone: Optional. Configures the timezone of the node.
    transparentHugepageDefrag: Optional. Defines the transparent hugepage
      defrag configuration on the node. VM hugepage allocation can be managed
      by either limiting defragmentation for delayed allocation or skipping it
      entirely for immediate allocation only. See
      https://docs.kernel.org/admin-guide/mm/transhuge.html for more details.
    transparentHugepageEnabled: Optional. Transparent hugepage support for
      anonymous memory can be entirely disabled (mostly for debugging
      purposes) or only enabled inside MADV_HUGEPAGE regions (to avoid the
      risk of consuming more memory resources) or enabled system wide. See
      https://docs.kernel.org/admin-guide/mm/transhuge.html for more details.
  """

  class CgroupModeValueValuesEnum(_messages.Enum):
    r"""cgroup_mode specifies the cgroup mode to be used on the node.

    Values:
      CGROUP_MODE_UNSPECIFIED: CGROUP_MODE_UNSPECIFIED is when unspecified
        cgroup configuration is used. The default for the GKE node OS image
        will be used.
      CGROUP_MODE_V1: CGROUP_MODE_V1 specifies to use cgroupv1 for the cgroup
        configuration on the node image.
      CGROUP_MODE_V2: CGROUP_MODE_V2 specifies to use cgroupv2 for the cgroup
        configuration on the node image.
    """
    CGROUP_MODE_UNSPECIFIED = 0
    CGROUP_MODE_V1 = 1
    CGROUP_MODE_V2 = 2

  class TransparentHugepageDefragValueValuesEnum(_messages.Enum):
    r"""Optional. Defines the transparent hugepage defrag configuration on the
    node. VM hugepage allocation can be managed by either limiting
    defragmentation for delayed allocation or skipping it entirely for
    immediate allocation only. See https://docs.kernel.org/admin-
    guide/mm/transhuge.html for more details.

    Values:
      TRANSPARENT_HUGEPAGE_DEFRAG_UNSPECIFIED: Default value. GKE will not
        modify the kernel configuration.
      TRANSPARENT_HUGEPAGE_DEFRAG_ALWAYS: It means that an application
        requesting THP will stall on allocation failure and directly reclaim
        pages and compact memory in an effort to allocate a THP immediately.
      TRANSPARENT_HUGEPAGE_DEFRAG_DEFER: It means that an application will
        wake kswapd in the background to reclaim pages and wake kcompactd to
        compact memory so that THP is available in the near future. It's the
        responsibility of khugepaged to then install the THP pages later.
      TRANSPARENT_HUGEPAGE_DEFRAG_DEFER_WITH_MADVISE: It means that an
        application will enter direct reclaim and compaction like always, but
        only for regions that have used madvise(MADV_HUGEPAGE); all other
        regions will wake kswapd in the background to reclaim pages and wake
        kcompactd to compact memory so that THP is available in the near
        future.
      TRANSPARENT_HUGEPAGE_DEFRAG_MADVISE: It means that an application will
        enter direct reclaim like always but only for regions that are have
        used madvise(MADV_HUGEPAGE). This is the default kernel configuration.
      TRANSPARENT_HUGEPAGE_DEFRAG_NEVER: It means that an application will
        never enter direct reclaim or compaction.
    """
    TRANSPARENT_HUGEPAGE_DEFRAG_UNSPECIFIED = 0
    TRANSPARENT_HUGEPAGE_DEFRAG_ALWAYS = 1
    TRANSPARENT_HUGEPAGE_DEFRAG_DEFER = 2
    TRANSPARENT_HUGEPAGE_DEFRAG_DEFER_WITH_MADVISE = 3
    TRANSPARENT_HUGEPAGE_DEFRAG_MADVISE = 4
    TRANSPARENT_HUGEPAGE_DEFRAG_NEVER = 5

  class TransparentHugepageEnabledValueValuesEnum(_messages.Enum):
    r"""Optional. Transparent hugepage support for anonymous memory can be
    entirely disabled (mostly for debugging purposes) or only enabled inside
    MADV_HUGEPAGE regions (to avoid the risk of consuming more memory
    resources) or enabled system wide. See https://docs.kernel.org/admin-
    guide/mm/transhuge.html for more details.

    Values:
      TRANSPARENT_HUGEPAGE_ENABLED_UNSPECIFIED: Default value. GKE will not
        modify the kernel configuration.
      TRANSPARENT_HUGEPAGE_ENABLED_ALWAYS: Transparent hugepage support for
        anonymous memory is enabled system wide.
      TRANSPARENT_HUGEPAGE_ENABLED_MADVISE: Transparent hugepage support for
        anonymous memory is enabled inside MADV_HUGEPAGE regions. This is the
        default kernel configuration.
      TRANSPARENT_HUGEPAGE_ENABLED_NEVER: Transparent hugepage support for
        anonymous memory is disabled.
    """
    TRANSPARENT_HUGEPAGE_ENABLED_UNSPECIFIED = 0
    TRANSPARENT_HUGEPAGE_ENABLED_ALWAYS = 1
    TRANSPARENT_HUGEPAGE_ENABLED_MADVISE = 2
    TRANSPARENT_HUGEPAGE_ENABLED_NEVER = 3

  @encoding.MapUnrecognizedFields('additionalProperties')
  class SysctlsValue(_messages.Message):
    r"""The Linux kernel parameters to be applied to the nodes and all pods
    running on the nodes. The following parameters are supported.
    net.core.busy_poll net.core.busy_read net.core.netdev_max_backlog
    net.core.rmem_max net.core.rmem_default net.core.wmem_default
    net.core.wmem_max net.core.optmem_max net.core.somaxconn net.ipv4.tcp_rmem
    net.ipv4.tcp_wmem net.ipv4.tcp_tw_reuse net.ipv4.tcp_mtu_probing
    net.ipv4.tcp_max_orphans net.ipv4.tcp_max_tw_buckets
    net.ipv4.tcp_syn_retries net.ipv4.tcp_ecn net.ipv4.tcp_congestion_control
    net.netfilter.nf_conntrack_max net.netfilter.nf_conntrack_buckets
    net.netfilter.nf_conntrack_tcp_timeout_close_wait
    net.netfilter.nf_conntrack_tcp_timeout_time_wait
    net.netfilter.nf_conntrack_tcp_timeout_established
    net.netfilter.nf_conntrack_acct kernel.shmmni kernel.shmmax kernel.shmall
    kernel.perf_event_paranoid kernel.sched_rt_runtime_us
    kernel.softlockup_panic kernel.yama.ptrace_scope kernel.kptr_restrict
    kernel.dmesg_restrict kernel.sysrq fs.aio-max-nr fs.file-max
    fs.inotify.max_user_instances fs.inotify.max_user_watches fs.nr_open
    vm.dirty_background_ratio vm.dirty_background_bytes
    vm.dirty_expire_centisecs vm.dirty_ratio vm.dirty_bytes
    vm.dirty_writeback_centisecs vm.max_map_count vm.overcommit_memory
    vm.overcommit_ratio vm.vfs_cache_pressure vm.swappiness
    vm.watermark_scale_factor vm.min_free_kbytes

    Messages:
      AdditionalProperty: An additional property for a SysctlsValue object.

    Fields:
      additionalProperties: Additional properties of type SysctlsValue
    """

    class AdditionalProperty(_messages.Message):
      r"""An additional property for a SysctlsValue object.

      Fields:
        key: Name of the additional property.
        value: A string attribute.
      """

      key = _messages.StringField(1)
      value = _messages.StringField(2)

    additionalProperties = _messages.MessageField('AdditionalProperty', 1, repeated=True)

  additionalEtcHosts = _messages.MessageField('EtcHostsEntry', 1, repeated=True)
  additionalEtcResolvConf = _messages.MessageField('ResolvedConfEntry', 2, repeated=True)
  additionalEtcSystemdResolvedConf = _messages.MessageField('ResolvedConfEntry', 3, repeated=True)
  cgroupMode = _messages.EnumField('CgroupModeValueValuesEnum', 4)
  customNodeInit = _messages.MessageField('CustomNodeInit', 5)
  hugepages = _messages.MessageField('HugepagesConfig', 6)
  kernelOverrides = _messages.MessageField('KernelOverrides', 7)
  nodeKernelModuleLoading = _messages.MessageField('NodeKernelModuleLoading', 8)
  swapConfig = _messages.MessageField('SwapConfig', 9)
  sysctls = _messages.MessageField('SysctlsValue', 10)
  timeZone = _messages.StringField(11)
  transparentHugepageDefrag = _messages.EnumField('TransparentHugepageDefragValueValuesEnum', 12)
  transparentHugepageEnabled = _messages.EnumField('TransparentHugepageEnabledValueValuesEnum', 13)


class ListClustersResponse(_messages.Message):
  r"""ListClustersResponse is the result of ListClustersRequest.

  Fields:
    clusters: A list of clusters in the project in the specified zone, or
      across all ones.
    missingZones: If any zones are listed here, the list of clusters returned
      may be missing those zones.
  """

  clusters = _messages.MessageField('Cluster', 1, repeated=True)
  missingZones = _messages.StringField(2, repeated=True)


class ListLocationsResponse(_messages.Message):
  r"""ListLocationsResponse returns the list of all GKE locations and their
  recommendation state.

  Fields:
    locations: A full list of GKE locations.
    nextPageToken: Only return ListLocationsResponse that occur after the
      page_token. This value should be populated from the
      ListLocationsResponse.next_page_token if that response token was set
      (which happens when listing more Locations than fit in a single
      ListLocationsResponse). This is currently not used and will be honored
      once we use pagination.
  """

  locations = _messages.MessageField('Location', 1, repeated=True)
  nextPageToken = _messages.StringField(2)


class ListNodePoolsResponse(_messages.Message):
  r"""ListNodePoolsResponse is the result of ListNodePoolsRequest.

  Fields:
    nodePools: A list of node pools for a cluster.
  """

  nodePools = _messages.MessageField('NodePool', 1, repeated=True)


class ListOperationsResponse(_messages.Message):
  r"""ListOperationsResponse is the result of ListOperationsRequest.

  Fields:
    missingZones: If any zones are listed here, the list of operations
      returned may be missing the operations from those zones.
    operations: A list of operations in the project in the specified zone.
  """

  missingZones = _messages.StringField(1, repeated=True)
  operations = _messages.MessageField('Operation', 2, repeated=True)


class ListUsableSubnetworksResponse(_messages.Message):
  r"""ListUsableSubnetworksResponse is the response of
  ListUsableSubnetworksRequest.

  Fields:
    nextPageToken: This token allows you to get the next page of results for
      list requests. If the number of results is larger than `page_size`, use
      the `next_page_token` as a value for the query parameter `page_token` in
      the next request. The value will become empty when there are no more
      pages.
    subnetworks: A list of usable subnetworks in the specified network
      project.
  """

  nextPageToken = _messages.StringField(1)
  subnetworks = _messages.MessageField('UsableSubnetwork', 2, repeated=True)


class LocalNvmeSsdBlockConfig(_messages.Message):
  r"""LocalNvmeSsdBlockConfig contains configuration for using raw-block local
  NVMe SSDs

  Fields:
    localSsdCount: Number of local NVMe SSDs to use. The limit for this value
      is dependent upon the maximum number of disk available on a machine per
      zone. See: https://cloud.google.com/compute/docs/disks/local-ssd for
      more information. A zero (or unset) value has different meanings
      depending on machine type being used: 1. For pre-Gen3 machines, which
      support flexible numbers of local ssds, zero (or unset) means to disable
      using local SSDs as ephemeral storage. 2. For Gen3 machines which
      dictate a specific number of local ssds, zero (or unset) means to use
      the default number of local ssds that goes with that machine type. For
      example, for a c3-standard-8-lssd machine, 2 local ssds would be
      provisioned. For c3-standard-8 (which doesn't support local ssds), 0
      will be provisioned. See
      https://cloud.google.com/compute/docs/disks/local-
      ssd#choose_number_local_ssds for more info.
  """

  localSsdCount = _messages.IntegerField(1, variant=_messages.Variant.INT32)


class LocalSsdVolumeConfig(_messages.Message):
  r"""LocalSsdVolumeConfig is composed of three fields, count, type, and
  format. Count is the number of ssds of this grouping requested, type is the
  interface type and is either nvme or scsi, and format is whether the disk is
  to be formatted with a filesystem or left for block storage

  Enums:
    FormatValueValuesEnum: Format of the local SSD (fs/block).

  Fields:
    count: Number of local SSDs to use
    format: Format of the local SSD (fs/block).
    type: Local SSD interface to use (nvme/scsi).
  """

  class FormatValueValuesEnum(_messages.Enum):
    r"""Format of the local SSD (fs/block).

    Values:
      FORMAT_UNSPECIFIED: Default value
      FS: File system formatted
      BLOCK: Raw block
    """
    FORMAT_UNSPECIFIED = 0
    FS = 1
    BLOCK = 2

  count = _messages.IntegerField(1, variant=_messages.Variant.INT32)
  format = _messages.EnumField('FormatValueValuesEnum', 2)
  type = _messages.StringField(3)


class Location(_messages.Message):
  r"""Location returns the location name, and if the location is recommended
  for GKE cluster scheduling.

  Enums:
    TypeValueValuesEnum: Contains the type of location this Location is for.
      Regional or Zonal.

  Fields:
    name: Contains the name of the resource requested. Specified in the format
      `projects/*/locations/*`.
    recommended: Recommended is a bool combining the drain state of the
      location (ie- has the region been drained manually?), and the stockout
      status of any zone according to Zone Advisor. This will be internal only
      for use by pantheon.
    type: Contains the type of location this Location is for. Regional or
      Zonal.
  """

  class TypeValueValuesEnum(_messages.Enum):
    r"""Contains the type of location this Location is for. Regional or Zonal.

    Values:
      LOCATION_TYPE_UNSPECIFIED: LOCATION_TYPE_UNSPECIFIED means the location
        type was not determined.
      ZONE: A GKE Location where Zonal clusters can be created.
      REGION: A GKE Location where Regional clusters can be created.
    """
    LOCATION_TYPE_UNSPECIFIED = 0
    ZONE = 1
    REGION = 2

  name = _messages.StringField(1)
  recommended = _messages.BooleanField(2)
  type = _messages.EnumField('TypeValueValuesEnum', 3)


class LoggingComponentConfig(_messages.Message):
  r"""LoggingComponentConfig is cluster logging component configuration.

  Enums:
    EnableComponentsValueListEntryValuesEnum:

  Fields:
    enableComponents: Select components to collect logs. An empty set would
      disable all logging.
  """

  class EnableComponentsValueListEntryValuesEnum(_messages.Enum):
    r"""EnableComponentsValueListEntryValuesEnum enum type.

    Values:
      COMPONENT_UNSPECIFIED: Default value. This shouldn't be used.
      SYSTEM_COMPONENTS: system components
      WORKLOADS: workloads
      APISERVER: kube-apiserver
      SCHEDULER: kube-scheduler
      CONTROLLER_MANAGER: kube-controller-manager
      ADDON_MANAGER: kube-addon-manager
      KCP_SSHD: kcp-sshd
      KCP_CONNECTION: kcp connection logs
      KCP_HPA: horizontal pod autoscaler decision logs
    """
    COMPONENT_UNSPECIFIED = 0
    SYSTEM_COMPONENTS = 1
    WORKLOADS = 2
    APISERVER = 3
    SCHEDULER = 4
    CONTROLLER_MANAGER = 5
    ADDON_MANAGER = 6
    KCP_SSHD = 7
    KCP_CONNECTION = 8
    KCP_HPA = 9

  enableComponents = _messages.EnumField('EnableComponentsValueListEntryValuesEnum', 1, repeated=True)


class LoggingConfig(_messages.Message):
  r"""LoggingConfig is cluster logging configuration.

  Fields:
    componentConfig: Logging components configuration
    rayLoggingConfig: Optional. DEPRECATED. Use RayOperatorConfig instead.
  """

  componentConfig = _messages.MessageField('LoggingComponentConfig', 1)
  rayLoggingConfig = _messages.MessageField('RayLoggingConfig', 2)


class LoggingVariantConfig(_messages.Message):
  r"""LoggingVariantConfig specifies the behaviour of the logging component.

  Enums:
    VariantValueValuesEnum: Logging variant deployed on nodes.

  Fields:
    variant: Logging variant deployed on nodes.
  """

  class VariantValueValuesEnum(_messages.Enum):
    r"""Logging variant deployed on nodes.

    Values:
      VARIANT_UNSPECIFIED: Default value. This shouldn't be used.
      DEFAULT: default logging variant.
      MAX_THROUGHPUT: maximum logging throughput variant.
    """
    VARIANT_UNSPECIFIED = 0
    DEFAULT = 1
    MAX_THROUGHPUT = 2

  variant = _messages.EnumField('VariantValueValuesEnum', 1)


class LustreConfig(_messages.Message):
  r"""Configuration for Lustre settings on the node pool.

  Fields:
    multiRail: Optional. If true, the Lustre CSI driver will be configured to
      use multiple NICs on nodes in this pool.
  """

  multiRail = _messages.MessageField('MultiRail', 1)


class LustreCsiDriverConfig(_messages.Message):
  r"""Configuration for the Lustre CSI driver.

  Fields:
    enableLegacyLustrePort: If set to true, the Lustre CSI driver will install
      Lustre kernel modules using port 6988. This serves as a workaround for a
      port conflict with the gke-metadata-server. This field is required ONLY
      under the following conditions: 1. The GKE node version is older than
      1.33.2-gke.4655000. 2. You're connecting to a Lustre instance that has
      the 'gke-support-enabled' flag. Deprecated: This flag is no longer
      required as of GKE node version 1.33.2-gke.4655000, unless you are
      connecting to a Lustre instance that has the `gke-support-enabled` flag.
    enabled: Whether the Lustre CSI driver is enabled for this cluster.
  """

  enableLegacyLustrePort = _messages.BooleanField(1)
  enabled = _messages.BooleanField(2)


class MaintenanceExclusionOptions(_messages.Message):
  r"""Represents the Maintenance exclusion option.

  Enums:
    EndTimeBehaviorValueValuesEnum: EndTimeBehavior specifies the behavior of
      the exclusion end time.
    ScopeValueValuesEnum: Scope specifies the upgrade scope which upgrades are
      blocked by the exclusion.

  Fields:
    endTimeBehavior: EndTimeBehavior specifies the behavior of the exclusion
      end time.
    scope: Scope specifies the upgrade scope which upgrades are blocked by the
      exclusion.
  """

  class EndTimeBehaviorValueValuesEnum(_messages.Enum):
    r"""EndTimeBehavior specifies the behavior of the exclusion end time.

    Values:
      END_TIME_BEHAVIOR_UNSPECIFIED: END_TIME_BEHAVIOR_UNSPECIFIED is the
        default behavior, which is fixed end time.
      UNTIL_END_OF_SUPPORT: UNTIL_END_OF_SUPPORT means the exclusion will be
        in effect until the end of the support of the cluster's current
        version.
    """
    END_TIME_BEHAVIOR_UNSPECIFIED = 0
    UNTIL_END_OF_SUPPORT = 1

  class ScopeValueValuesEnum(_messages.Enum):
    r"""Scope specifies the upgrade scope which upgrades are blocked by the
    exclusion.

    Values:
      NO_UPGRADES: NO_UPGRADES excludes all upgrades, including patch upgrades
        and minor upgrades across control planes and nodes. This is the
        default exclusion behavior.
      NO_MINOR_UPGRADES: NO_MINOR_UPGRADES excludes all minor upgrades for the
        cluster, only patches are allowed.
      NO_MINOR_OR_NODE_UPGRADES: NO_MINOR_OR_NODE_UPGRADES excludes all minor
        upgrades for the cluster, and also exclude all node pool upgrades.
        Only control plane patches are allowed.
    """
    NO_UPGRADES = 0
    NO_MINOR_UPGRADES = 1
    NO_MINOR_OR_NODE_UPGRADES = 2

  endTimeBehavior = _messages.EnumField('EndTimeBehaviorValueValuesEnum', 1)
  scope = _messages.EnumField('ScopeValueValuesEnum', 2)


class MaintenancePolicy(_messages.Message):
  r"""MaintenancePolicy defines the maintenance policy to be used for the
  cluster.

  Fields:
    resourceVersion: A hash identifying the version of this policy, so that
      updates to fields of the policy won't accidentally undo intermediate
      changes (and so that users of the API unaware of some fields won't
      accidentally remove other fields). Make a `get()` request to the cluster
      to get the current resource version and include it with requests to set
      the policy.
    window: Specifies the maintenance window in which maintenance may be
      performed.
  """

  resourceVersion = _messages.StringField(1)
  window = _messages.MessageField('MaintenanceWindow', 2)


class MaintenanceWindow(_messages.Message):
  r"""MaintenanceWindow defines the maintenance window to be used for the
  cluster.

  Messages:
    MaintenanceExclusionsValue: Exceptions to maintenance window. Non-
      emergency maintenance should not occur in these windows.

  Fields:
    dailyMaintenanceWindow: DailyMaintenanceWindow specifies a daily
      maintenance operation window.
    maintenanceExclusions: Exceptions to maintenance window. Non-emergency
      maintenance should not occur in these windows.
    recurringWindow: RecurringWindow specifies some number of recurring time
      periods for maintenance to occur. The time windows may be overlapping.
      If no maintenance windows are set, maintenance can occur at any time.
  """

  @encoding.MapUnrecognizedFields('additionalProperties')
  class MaintenanceExclusionsValue(_messages.Message):
    r"""Exceptions to maintenance window. Non-emergency maintenance should not
    occur in these windows.

    Messages:
      AdditionalProperty: An additional property for a
        MaintenanceExclusionsValue object.

    Fields:
      additionalProperties: Additional properties of type
        MaintenanceExclusionsValue
    """

    class AdditionalProperty(_messages.Message):
      r"""An additional property for a MaintenanceExclusionsValue object.

      Fields:
        key: Name of the additional property.
        value: A TimeWindow attribute.
      """

      key = _messages.StringField(1)
      value = _messages.MessageField('TimeWindow', 2)

    additionalProperties = _messages.MessageField('AdditionalProperty', 1, repeated=True)

  dailyMaintenanceWindow = _messages.MessageField('DailyMaintenanceWindow', 1)
  maintenanceExclusions = _messages.MessageField('MaintenanceExclusionsValue', 2)
  recurringWindow = _messages.MessageField('RecurringTimeWindow', 3)


class ManagedConfig(_messages.Message):
  r"""ManagedConfig is used for enforcing set of cluster configurations that
  are conforming to strandards.

  Enums:
    TypeValueValuesEnum: The type of standard configurations to enforce for
      cluster.

  Fields:
    type: The type of standard configurations to enforce for cluster.
  """

  class TypeValueValuesEnum(_messages.Enum):
    r"""The type of standard configurations to enforce for cluster.

    Values:
      TYPE_UNSPECIFIED: Default value.
      DISABLED: ManagedConfig is disabled.
      AUTOFLEET: Use ManagedConfig that is conforming to Autofleet
        requirements.
    """
    TYPE_UNSPECIFIED = 0
    DISABLED = 1
    AUTOFLEET = 2

  type = _messages.EnumField('TypeValueValuesEnum', 1)


class ManagedOpenTelemetryConfig(_messages.Message):
  r"""ManagedOpenTelemetryConfig is the configuration for the GKE Managed
  OpenTelemetry pipeline.

  Enums:
    ScopeValueValuesEnum: Scope of the Managed OpenTelemetry pipeline.

  Fields:
    scope: Scope of the Managed OpenTelemetry pipeline.
  """

  class ScopeValueValuesEnum(_messages.Enum):
    r"""Scope of the Managed OpenTelemetry pipeline.

    Values:
      SCOPE_UNSPECIFIED: SCOPE_UNSPECIFIED is when the scope is not set.
      NONE: NONE is used to disable the Managed OpenTelemetry pipeline.
      COLLECTION_AND_INSTRUMENTATION_COMPONENTS:
        COLLECTION_AND_INSTRUMENTATION_COMPONENTS is used to enable the
        Managed OpenTelemetry pipeline for collection and instrumentation
        components.
    """
    SCOPE_UNSPECIFIED = 0
    NONE = 1
    COLLECTION_AND_INSTRUMENTATION_COMPONENTS = 2

  scope = _messages.EnumField('ScopeValueValuesEnum', 1)


class ManagedPrometheusConfig(_messages.Message):
  r"""ManagedPrometheusConfig defines the configuration for Google Cloud
  Managed Service for Prometheus.

  Fields:
    autoMonitoringConfig: GKE Workload Auto-Monitoring Configuration.
    enabled: Enable Managed Collection.
  """

  autoMonitoringConfig = _messages.MessageField('AutoMonitoringConfig', 1)
  enabled = _messages.BooleanField(2)


class Master(_messages.Message):
  r"""Master is the configuration for components on master.

  Fields:
    compatibilityStatus: Output only. The compatibility status of the control
      plane. It should be empty if the cluster does not have emulated version.
      For details, see go/user-initiated-rollbackable-upgrade-design.
    signalsConfig: Configuration used to enable sending selected master logs
      and metrics to customer project. This feature is has been replaced by
      the system component options in Cluster.logging_config.component_config.
  """

  compatibilityStatus = _messages.MessageField('CompatibilityStatus', 1)
  signalsConfig = _messages.MessageField('MasterSignalsConfig', 2)


class MasterAuth(_messages.Message):
  r"""The authentication information for accessing the master endpoint.
  Authentication can be done using HTTP basic auth or using client
  certificates.

  Fields:
    clientCertificate: Output only. Base64-encoded public certificate used by
      clients to authenticate to the cluster endpoint. Issued only if
      client_certificate_config is set.
    clientCertificateConfig: Configuration for client certificate
      authentication on the cluster. For clusters before v1.12, if no
      configuration is specified, a client certificate is issued.
    clientKey: Output only. Base64-encoded private key used by clients to
      authenticate to the cluster endpoint.
    clusterCaCertificate: Output only. Base64-encoded public certificate that
      is the root of trust for the cluster.
    password: The password to use for HTTP basic authentication to the master
      endpoint. Because the master endpoint is open to the Internet, you
      should create a strong password. If a password is provided for cluster
      creation, username must be non-empty. Warning: basic authentication is
      deprecated, and will be removed in GKE control plane versions 1.19 and
      newer. For a list of recommended authentication methods, see:
      https://cloud.google.com/kubernetes-engine/docs/how-to/api-server-
      authentication
    username: The username to use for HTTP basic authentication to the master
      endpoint. For clusters v1.6.0 and later, basic authentication can be
      disabled by leaving username unspecified (or setting it to the empty
      string). Warning: basic authentication is deprecated, and will be
      removed in GKE control plane versions 1.19 and newer. For a list of
      recommended authentication methods, see:
      https://cloud.google.com/kubernetes-engine/docs/how-to/api-server-
      authentication
  """

  clientCertificate = _messages.StringField(1)
  clientCertificateConfig = _messages.MessageField('ClientCertificateConfig', 2)
  clientKey = _messages.StringField(3)
  clusterCaCertificate = _messages.StringField(4)
  password = _messages.StringField(5)
  username = _messages.StringField(6)


class MasterAuthorizedNetworksConfig(_messages.Message):
  r"""Configuration options for the master authorized networks feature.
  Enabled master authorized networks will disallow all external traffic to
  access Kubernetes master through HTTPS except traffic from the given CIDR
  blocks, Google Compute Engine Public IPs and Google Prod IPs.

  Fields:
    cidrBlocks: cidr_blocks define up to 50 external networks that could
      access Kubernetes master through HTTPS.
    enabled: Whether or not master authorized networks is enabled.
    gcpPublicCidrsAccessEnabled: Whether master is accessible via Google
      Compute Engine Public IP addresses.
    privateEndpointEnforcementEnabled: Whether master authorized networks is
      enforced on private endpoint or not.
  """

  cidrBlocks = _messages.MessageField('CidrBlock', 1, repeated=True)
  enabled = _messages.BooleanField(2)
  gcpPublicCidrsAccessEnabled = _messages.BooleanField(3)
  privateEndpointEnforcementEnabled = _messages.BooleanField(4)


class MasterSignalsConfig(_messages.Message):
  r"""MasterSignalsConfig is the configuration for exposing selected master
  logs and metrics to customer

  Enums:
    LogEnabledComponentsValueListEntryValuesEnum:

  Fields:
    enableMetrics: Enable sendings metrics to customer
    logEnabledComponents: Select components to expose logs
  """

  class LogEnabledComponentsValueListEntryValuesEnum(_messages.Enum):
    r"""LogEnabledComponentsValueListEntryValuesEnum enum type.

    Values:
      COMPONENT_UNSPECIFIED: Didn't specify any components. Used to avoid
        overriding existing list.
      APISERVER: kube-apiserver
      SCHEDULER: kube-scheduler
      CONTROLLER_MANAGER: kube-controller-manager
      ADDON_MANAGER: kube-addon-manager
    """
    COMPONENT_UNSPECIFIED = 0
    APISERVER = 1
    SCHEDULER = 2
    CONTROLLER_MANAGER = 3
    ADDON_MANAGER = 4

  enableMetrics = _messages.BooleanField(1)
  logEnabledComponents = _messages.EnumField('LogEnabledComponentsValueListEntryValuesEnum', 2, repeated=True)


class MaxPodsConstraint(_messages.Message):
  r"""Constraints applied to pods.

  Fields:
    maxPodsPerNode: Constraint enforced on the max num of pods per node.
  """

  maxPodsPerNode = _messages.IntegerField(1)


class MemoryManager(_messages.Message):
  r"""The option enables the Kubernetes NUMA-aware Memory Manager feature.
  Detailed description about the feature can be found
  [here](https://kubernetes.io/docs/tasks/administer-cluster/memory-manager/).

  Fields:
    policy: Controls the memory management policy on the Node. See
      https://kubernetes.io/docs/tasks/administer-cluster/memory-
      manager/#policies The following values are allowed. * "none" * "static"
      The default value is 'none' if unspecified.
  """

  policy = _messages.StringField(1)


class MeshCertificates(_messages.Message):
  r"""Configuration for issuance of mTLS keys and certificates to Kubernetes
  pods.

  Fields:
    enableCertificates: enable_certificates controls issuance of workload mTLS
      certificates. If set, the GKE Workload Identity Certificates controller
      and node agent will be deployed in the cluster, which can then be
      configured by creating a WorkloadCertificateConfig Custom Resource.
      Requires Workload Identity (workload_pool must be non-empty).
  """

  enableCertificates = _messages.BooleanField(1)


class Metric(_messages.Message):
  r"""Progress metric is (string, int|float|string) pair.

  Fields:
    doubleValue: For metrics with floating point value.
    intValue: For metrics with integer value.
    name: Required. Metric name, e.g., "nodes total", "percent done".
    stringValue: For metrics with custom values (ratios, visual progress,
      etc.).
  """

  doubleValue = _messages.FloatField(1)
  intValue = _messages.IntegerField(2)
  name = _messages.StringField(3)
  stringValue = _messages.StringField(4)


class MonitoringComponentConfig(_messages.Message):
  r"""MonitoringComponentConfig is cluster monitoring component configuration.

  Enums:
    EnableComponentsValueListEntryValuesEnum:

  Fields:
    enableComponents: Select components to collect metrics. An empty set would
      disable all monitoring.
  """

  class EnableComponentsValueListEntryValuesEnum(_messages.Enum):
    r"""EnableComponentsValueListEntryValuesEnum enum type.

    Values:
      COMPONENT_UNSPECIFIED: Default value. This shouldn't be used.
      SYSTEM_COMPONENTS: system components
      WORKLOADS: Deprecated: Use Google Cloud Managed Service for Prometheus.
      APISERVER: kube-apiserver
      SCHEDULER: kube-scheduler
      CONTROLLER_MANAGER: kube-controller-manager
      GOOGLE_PROMETHEUS_ENGINE: Deprecated. google prometheus engine
      STORAGE: Storage
      HPA: Horizontal Pod Autoscaling
      POD: Pod
      DAEMONSET: DaemonSet
      DEPLOYMENT: Deployment
      STATEFULSET: Statefulset
      CADVISOR: CADVISOR
      KUBELET: KUBELET
      DCGM: NVIDIA Data Center GPU Manager (DCGM)
      JOBSET: JobSet
    """
    COMPONENT_UNSPECIFIED = 0
    SYSTEM_COMPONENTS = 1
    WORKLOADS = 2
    APISERVER = 3
    SCHEDULER = 4
    CONTROLLER_MANAGER = 5
    GOOGLE_PROMETHEUS_ENGINE = 6
    STORAGE = 7
    HPA = 8
    POD = 9
    DAEMONSET = 10
    DEPLOYMENT = 11
    STATEFULSET = 12
    CADVISOR = 13
    KUBELET = 14
    DCGM = 15
    JOBSET = 16

  enableComponents = _messages.EnumField('EnableComponentsValueListEntryValuesEnum', 1, repeated=True)


class MonitoringConfig(_messages.Message):
  r"""MonitoringConfig is cluster monitoring configuration.

  Fields:
    advancedDatapathObservabilityConfig: Configuration of Advanced Datapath
      Observability features.
    componentConfig: Monitoring components configuration
    managedPrometheusConfig: Enable Google Cloud Managed Service for
      Prometheus in the cluster.
    rayMonitoringConfig: Optional. DEPRECATED. Use RayOperatorConfig instead.
  """

  advancedDatapathObservabilityConfig = _messages.MessageField('AdvancedDatapathObservabilityConfig', 1)
  componentConfig = _messages.MessageField('MonitoringComponentConfig', 2)
  managedPrometheusConfig = _messages.MessageField('ManagedPrometheusConfig', 3)
  rayMonitoringConfig = _messages.MessageField('RayMonitoringConfig', 4)


class MultiRail(_messages.Message):
  r"""MultiRail contains configuration for the Multi-Rail Lustre feature.

  Fields:
    enabled: If true, the Multi-Rail Lustre feature is enabled.
  """

  enabled = _messages.BooleanField(1)


class NetworkConfig(_messages.Message):
  r"""Parameters for cluster networking.

  Enums:
    DatapathProviderValueValuesEnum: The desired datapath provider for this
      cluster. By default, uses the IPTables-based kube-proxy implementation.
    InTransitEncryptionConfigValueValuesEnum: Specify the details of in-
      transit encryption. Now named inter-node transparent encryption.
    PrivateIpv6GoogleAccessValueValuesEnum: The desired state of IPv6
      connectivity to Google Services. By default, no private IPv6 access to
      or from Google Services (all access will be via IPv4)

  Fields:
    datapathProvider: The desired datapath provider for this cluster. By
      default, uses the IPTables-based kube-proxy implementation.
    defaultEnablePrivateNodes: Controls whether by default nodes have private
      IP addresses only. It is invalid to specify both
      PrivateClusterConfig.enablePrivateNodes and this field at the same time.
      To update the default setting, use
      ClusterUpdate.desired_default_enable_private_nodes
    defaultSnatStatus: Whether the cluster disables default in-node sNAT
      rules. In-node sNAT rules will be disabled when default_snat_status is
      disabled. When disabled is set to false, default IP masquerade rules
      will be applied to the nodes to prevent sNAT on cluster internal
      traffic.
    disableDefaultSnat: Whether the cluster disables default in-node sNAT
      rules. In-node sNAT rules will be disabled when this flag is true. When
      set to false, default IP masquerade rules will be applied to the nodes
      to prevent sNAT on cluster internal traffic. Deprecated. Use
      default_snat_status instead
    disableL4LbFirewallReconciliation: Disable L4 load balancer VPC firewalls
      to enable firewall policies.
    dnsConfig: DNSConfig contains clusterDNS config for this cluster.
    enableCiliumClusterwideNetworkPolicy: Whether
      CiliumClusterWideNetworkPolicy is enabled on this cluster.
    enableCloudNat: Whether GKE Cloud NAT is enabled for this cluster.
      Requires that the cluster has already set
      IPAllocationPolicy.use_ip_aliases to true. Deprecated: use
      disable_default_snat instead.
    enableFqdnNetworkPolicy: Whether FQDN Network Policy is enabled on this
      cluster.
    enableIntraNodeVisibility: Whether Intra-node visibility is enabled for
      this cluster. This enables flow logs for same node pod to pod traffic.
    enableL4ilbSubsetting: Whether L4ILB Subsetting is enabled for this
      cluster.
    enableMultiNetworking: Whether multi-networking is enabled for this
      cluster.
    enablePrivateIpv6Access: Whether or not Private IPv6 access is enabled.
      This enables direct connectivity from GKE pods to Google Cloud services
      over gRPC. Deprecated: use private_ipv6_google_access instead
    enableSharedNetwork: Deprecated: This flag doesn't need to be flipped for
      using shared VPC and it has no effect.
    gatewayApiConfig: GatewayAPIConfig contains the desired config of Gateway
      API on this cluster.
    inTransitEncryptionConfig: Specify the details of in-transit encryption.
      Now named inter-node transparent encryption.
    network: Output only. The relative name of the Google Compute Engine
      [network](https://cloud.google.com/compute/docs/networks-and-
      firewalls#networks) to which the cluster is connected. Example:
      projects/my-project/global/networks/my-network
    networkPerformanceConfig: Network bandwidth tier configuration.
    nodeNetworkPolicy: NodeNetworkPolicy specifies the config for the node
      firewall feature. This feature is only supported with
      DatapathProvider=ADVANCED_DATAPATH.
    privateIpv6GoogleAccess: The desired state of IPv6 connectivity to Google
      Services. By default, no private IPv6 access to or from Google Services
      (all access will be via IPv4)
    serviceExternalIpsConfig: ServiceExternalIPsConfig specifies if services
      with externalIPs field are blocked or not.
    subnetwork: Output only. The relative name of the Google Compute Engine
      [subnetwork](https://cloud.google.com/compute/docs/vpc) to which the
      cluster is connected. Example: projects/my-project/regions/us-
      central1/subnetworks/my-subnet
  """

  class DatapathProviderValueValuesEnum(_messages.Enum):
    r"""The desired datapath provider for this cluster. By default, uses the
    IPTables-based kube-proxy implementation.

    Values:
      DATAPATH_PROVIDER_UNSPECIFIED: Default value.
      LEGACY_DATAPATH: Use the IPTables implementation based on kube-proxy.
      ADVANCED_DATAPATH: Use the eBPF based data plane with additional
        visibility features.
      MIGRATE_TO_ADVANCED_DATAPATH: Cluster has some existing nodes but new
        nodes should use ADVANCED_DATAPATH.
      MIGRATE_TO_LEGACY_DATAPATH: Cluster has some existing nodes but new
        nodes should use LEGACY_DATAPATH.
    """
    DATAPATH_PROVIDER_UNSPECIFIED = 0
    LEGACY_DATAPATH = 1
    ADVANCED_DATAPATH = 2
    MIGRATE_TO_ADVANCED_DATAPATH = 3
    MIGRATE_TO_LEGACY_DATAPATH = 4

  class InTransitEncryptionConfigValueValuesEnum(_messages.Enum):
    r"""Specify the details of in-transit encryption. Now named inter-node
    transparent encryption.

    Values:
      IN_TRANSIT_ENCRYPTION_CONFIG_UNSPECIFIED: Unspecified, will be inferred
        as default - IN_TRANSIT_ENCRYPTION_UNSPECIFIED.
      IN_TRANSIT_ENCRYPTION_DISABLED: In-transit encryption is disabled.
      IN_TRANSIT_ENCRYPTION_INTER_NODE_TRANSPARENT: Data in-transit is
        encrypted with inter-node transparent encryption.
    """
    IN_TRANSIT_ENCRYPTION_CONFIG_UNSPECIFIED = 0
    IN_TRANSIT_ENCRYPTION_DISABLED = 1
    IN_TRANSIT_ENCRYPTION_INTER_NODE_TRANSPARENT = 2

  class PrivateIpv6GoogleAccessValueValuesEnum(_messages.Enum):
    r"""The desired state of IPv6 connectivity to Google Services. By default,
    no private IPv6 access to or from Google Services (all access will be via
    IPv4)

    Values:
      PRIVATE_IPV6_GOOGLE_ACCESS_UNSPECIFIED: Default value. Same as DISABLED
      PRIVATE_IPV6_GOOGLE_ACCESS_DISABLED: No private access to or from Google
        Services
      PRIVATE_IPV6_GOOGLE_ACCESS_TO_GOOGLE: Enables private IPv6 access to
        Google Services from GKE
      PRIVATE_IPV6_GOOGLE_ACCESS_BIDIRECTIONAL: Enables private IPv6 access to
        and from Google Services
    """
    PRIVATE_IPV6_GOOGLE_ACCESS_UNSPECIFIED = 0
    PRIVATE_IPV6_GOOGLE_ACCESS_DISABLED = 1
    PRIVATE_IPV6_GOOGLE_ACCESS_TO_GOOGLE = 2
    PRIVATE_IPV6_GOOGLE_ACCESS_BIDIRECTIONAL = 3

  datapathProvider = _messages.EnumField('DatapathProviderValueValuesEnum', 1)
  defaultEnablePrivateNodes = _messages.BooleanField(2)
  defaultSnatStatus = _messages.MessageField('DefaultSnatStatus', 3)
  disableDefaultSnat = _messages.BooleanField(4)
  disableL4LbFirewallReconciliation = _messages.BooleanField(5)
  dnsConfig = _messages.MessageField('DNSConfig', 6)
  enableCiliumClusterwideNetworkPolicy = _messages.BooleanField(7)
  enableCloudNat = _messages.BooleanField(8)
  enableFqdnNetworkPolicy = _messages.BooleanField(9)
  enableIntraNodeVisibility = _messages.BooleanField(10)
  enableL4ilbSubsetting = _messages.BooleanField(11)
  enableMultiNetworking = _messages.BooleanField(12)
  enablePrivateIpv6Access = _messages.BooleanField(13)
  enableSharedNetwork = _messages.BooleanField(14)
  gatewayApiConfig = _messages.MessageField('GatewayAPIConfig', 15)
  inTransitEncryptionConfig = _messages.EnumField('InTransitEncryptionConfigValueValuesEnum', 16)
  network = _messages.StringField(17)
  networkPerformanceConfig = _messages.MessageField('ClusterNetworkPerformanceConfig', 18)
  nodeNetworkPolicy = _messages.MessageField('NodeNetworkPolicy', 19)
  privateIpv6GoogleAccess = _messages.EnumField('PrivateIpv6GoogleAccessValueValuesEnum', 20)
  serviceExternalIpsConfig = _messages.MessageField('ServiceExternalIPsConfig', 21)
  subnetwork = _messages.StringField(22)


class NetworkPerformanceConfig(_messages.Message):
  r"""Configuration of all network bandwidth tiers

  Enums:
    ExternalIpEgressBandwidthTierValueValuesEnum: Specifies the network
      bandwidth tier for the NodePool for traffic to external/public IP
      addresses.
    TotalEgressBandwidthTierValueValuesEnum: Specifies the total network
      bandwidth tier for the NodePool.

  Fields:
    externalIpEgressBandwidthTier: Specifies the network bandwidth tier for
      the NodePool for traffic to external/public IP addresses.
    totalEgressBandwidthTier: Specifies the total network bandwidth tier for
      the NodePool.
  """

  class ExternalIpEgressBandwidthTierValueValuesEnum(_messages.Enum):
    r"""Specifies the network bandwidth tier for the NodePool for traffic to
    external/public IP addresses.

    Values:
      TIER_UNSPECIFIED: Default value
      TIER_1: Higher bandwidth, actual values based on VM size.
    """
    TIER_UNSPECIFIED = 0
    TIER_1 = 1

  class TotalEgressBandwidthTierValueValuesEnum(_messages.Enum):
    r"""Specifies the total network bandwidth tier for the NodePool.

    Values:
      TIER_UNSPECIFIED: Default value
      TIER_1: Higher bandwidth, actual values based on VM size.
    """
    TIER_UNSPECIFIED = 0
    TIER_1 = 1

  externalIpEgressBandwidthTier = _messages.EnumField('ExternalIpEgressBandwidthTierValueValuesEnum', 1)
  totalEgressBandwidthTier = _messages.EnumField('TotalEgressBandwidthTierValueValuesEnum', 2)


class NetworkPolicy(_messages.Message):
  r"""Configuration options for the NetworkPolicy feature.
  https://kubernetes.io/docs/concepts/services-networking/networkpolicies/

  Enums:
    ProviderValueValuesEnum: The selected network policy provider.

  Fields:
    enabled: Whether network policy is enabled on the cluster.
    provider: The selected network policy provider.
  """

  class ProviderValueValuesEnum(_messages.Enum):
    r"""The selected network policy provider.

    Values:
      PROVIDER_UNSPECIFIED: Not set
      CALICO: Tigera (Calico Felix).
    """
    PROVIDER_UNSPECIFIED = 0
    CALICO = 1

  enabled = _messages.BooleanField(1)
  provider = _messages.EnumField('ProviderValueValuesEnum', 2)


class NetworkPolicyConfig(_messages.Message):
  r"""Configuration for NetworkPolicy. This only tracks whether the addon is
  enabled or not on the Master, it does not track whether network policy is
  enabled for the nodes.

  Fields:
    disabled: Whether NetworkPolicy is enabled for this cluster.
  """

  disabled = _messages.BooleanField(1)


class NetworkTags(_messages.Message):
  r"""Collection of Compute Engine network tags that can be applied to a
  node's underlying VM instance. (See `tags` field in
  [`NodeConfig`](https://cloud.google.com/kubernetes-
  engine/docs/reference/rest/v1/NodeConfig)).

  Fields:
    tags: List of network tags.
  """

  tags = _messages.StringField(1, repeated=True)


class NetworkTierConfig(_messages.Message):
  r"""NetworkTierConfig contains network tier information.

  Enums:
    NetworkTierValueValuesEnum: Network tier configuration.

  Fields:
    networkTier: Network tier configuration.
  """

  class NetworkTierValueValuesEnum(_messages.Enum):
    r"""Network tier configuration.

    Values:
      NETWORK_TIER_UNSPECIFIED: By default, use project-level configuration.
        When unspecified, the behavior defaults to NETWORK_TIER_DEFAULT. For
        cluster updates, this implies no action (no-op).
      NETWORK_TIER_DEFAULT: Default network tier. Use project-level
        configuration. User can specify this value, meaning they want to keep
        the same behaviour as before cluster level network tier configuration
        is introduced. This field ensures backward compatibility for the
        network tier of cluster resources, such as node pools and load
        balancers, for their external IP addresses.
      NETWORK_TIER_PREMIUM: Premium network tier.
      NETWORK_TIER_STANDARD: Standard network tier.
    """
    NETWORK_TIER_UNSPECIFIED = 0
    NETWORK_TIER_DEFAULT = 1
    NETWORK_TIER_PREMIUM = 2
    NETWORK_TIER_STANDARD = 3

  networkTier = _messages.EnumField('NetworkTierValueValuesEnum', 1)


class NodeAffinity(_messages.Message):
  r"""Specifies the NodeAffinity key, values, and affinity operator according
  to [shared sole tenant node group
  affinities](https://cloud.google.com/compute/docs/nodes/sole-tenant-
  nodes#node_affinity_and_anti-affinity).

  Enums:
    OperatorValueValuesEnum: Operator for NodeAffinity.

  Fields:
    key: Key for NodeAffinity.
    operator: Operator for NodeAffinity.
    values: Values for NodeAffinity.
  """

  class OperatorValueValuesEnum(_messages.Enum):
    r"""Operator for NodeAffinity.

    Values:
      OPERATOR_UNSPECIFIED: Invalid or unspecified affinity operator.
      IN: Affinity operator.
      NOT_IN: Anti-affinity operator.
    """
    OPERATOR_UNSPECIFIED = 0
    IN = 1
    NOT_IN = 2

  key = _messages.StringField(1)
  operator = _messages.EnumField('OperatorValueValuesEnum', 2)
  values = _messages.StringField(3, repeated=True)


class NodeConfig(_messages.Message):
  r"""Parameters that describe the nodes in a cluster. GKE Autopilot clusters
  do not recognize parameters in `NodeConfig`. Use
  AutoprovisioningNodePoolDefaults instead.

  Enums:
    EffectiveCgroupModeValueValuesEnum: Output only. effective_cgroup_mode is
      the cgroup mode actually used by the node pool. It is determined by the
      cgroup mode specified in the LinuxNodeConfig or the default cgroup mode
      based on the cluster creation version.
    LocalSsdEncryptionModeValueValuesEnum: Specifies which method should be
      used for encrypting the Local SSDs attached to the node.

  Messages:
    LabelsValue: The map of Kubernetes labels (key/value pairs) to be applied
      to each node. These will added in addition to any default label(s) that
      Kubernetes may apply to the node. In case of conflict in label keys, the
      applied set may differ depending on the Kubernetes version -- it's best
      to assume the behavior is undefined and conflicts should be avoided. For
      more information, including usage and the valid values, see:
      https://kubernetes.io/docs/concepts/overview/working-with-
      objects/labels/
    MetadataValue: The metadata key/value pairs assigned to instances in the
      cluster. Keys must conform to the regexp `[a-zA-Z0-9-_]+` and be less
      than 128 bytes in length. These are reflected as part of a URL in the
      metadata server. Additionally, to avoid ambiguity, keys must not
      conflict with any other metadata keys for the project or be one of the
      reserved keys: - "cluster-location" - "cluster-name" - "cluster-uid" -
      "configure-sh" - "containerd-configure-sh" - "enable-os-login" - "gci-
      ensure-gke-docker" - "gci-metrics-enabled" - "gci-update-strategy" -
      "instance-template" - "kube-env" - "startup-script" - "user-data" -
      "disable-address-manager" - "windows-startup-script-ps1" - "common-psm1"
      - "k8s-node-setup-psm1" - "install-ssh-psm1" - "user-profile-psm1"
      Values are free-form strings, and only have meaning as interpreted by
      the image running in the instance. The only restriction placed on them
      is that each value's size must be less than or equal to 32 KB. The total
      size of all keys and values must be less than 512 KB.
    ResourceLabelsValue: The resource labels for the node pool to use to
      annotate any related Google Compute Engine resources.

  Fields:
    accelerators: A list of hardware accelerators to be attached to each node.
      See https://cloud.google.com/compute/docs/gpus for more information
      about support for GPUs.
    advancedMachineFeatures: Advanced features for the Compute Engine VM.
    bootDisk: The boot disk configuration for the node pool.
    bootDiskKmsKey:  The Customer Managed Encryption Key used to encrypt the
      boot disk attached to each node in the node pool. This should be of the
      form projects/[KEY_PROJECT_ID]/locations/[LOCATION]/keyRings/[RING_NAME]
      /cryptoKeys/[KEY_NAME]. For more information about protecting resources
      with Cloud KMS Keys please see:
      https://cloud.google.com/compute/docs/disks/customer-managed-encryption
    confidentialNodes: Confidential nodes config. All the nodes in the node
      pool will be Confidential VM once enabled.
    consolidationDelay: Consolidation delay defines duration after which the
      Cluster Autoscaler can scale down underutilized nodes. If not set, nodes
      are scaled down by default behavior, i.e. according to the chosen
      autoscaling profile.
    containerdConfig: Parameters for containerd customization.
    diskSizeGb: Size of the disk attached to each node, specified in GB. The
      smallest allowed disk size is 10GB. If unspecified, the default disk
      size is 100GB.
    diskType: Type of the disk attached to each node (e.g. 'pd-standard', 'pd-
      ssd' or 'pd-balanced') If unspecified, the default disk type is 'pd-
      standard'
    effectiveCgroupMode: Output only. effective_cgroup_mode is the cgroup mode
      actually used by the node pool. It is determined by the cgroup mode
      specified in the LinuxNodeConfig or the default cgroup mode based on the
      cluster creation version.
    enableConfidentialStorage: Optional. Reserved for future use.
    ephemeralStorageConfig: Parameters for the ephemeral storage filesystem.
      If unspecified, ephemeral storage is backed by the boot disk.
    ephemeralStorageLocalSsdConfig: Parameters for the node ephemeral storage
      using Local SSDs. If unspecified, ephemeral storage is backed by the
      boot disk. This field is functionally equivalent to the
      ephemeral_storage_config
    fastSocket: Enable or disable NCCL fast socket for the node pool.
    flexStart: Flex Start flag for enabling Flex Start VM.
    gcfsConfig: GCFS (Google Container File System) configs.
    gpuDirectConfig: The configuration for GPU Direct
    gvnic: Enable or disable gvnic on the node pool.
    hostMaintenancePolicy: HostMaintenancePolicy contains the desired
      maintenance policy for the Google Compute Engine hosts.
    imageType: The image type to use for this node. Note that for a given
      image type, the latest version of it will be used. Please see
      https://cloud.google.com/kubernetes-engine/docs/concepts/node-images for
      available image types.
    kubeletConfig: Node kubelet configs.
    labels: The map of Kubernetes labels (key/value pairs) to be applied to
      each node. These will added in addition to any default label(s) that
      Kubernetes may apply to the node. In case of conflict in label keys, the
      applied set may differ depending on the Kubernetes version -- it's best
      to assume the behavior is undefined and conflicts should be avoided. For
      more information, including usage and the valid values, see:
      https://kubernetes.io/docs/concepts/overview/working-with-
      objects/labels/
    linuxNodeConfig: Parameters that can be configured on Linux nodes.
    localNvmeSsdBlockConfig: Parameters for using raw-block Local NVMe SSDs.
    localSsdCount: The number of local SSD disks to be attached to the node.
      The limit for this value is dependent upon the maximum number of disks
      available on a machine per zone. See:
      https://cloud.google.com/compute/docs/disks/local-ssd for more
      information.
    localSsdEncryptionMode: Specifies which method should be used for
      encrypting the Local SSDs attached to the node.
    localSsdVolumeConfigs: Parameters for using Local SSD with extra options
      as hostpath or local volumes
    loggingConfig: Logging configuration.
    lustreConfig: Optional. Configuration for Lustre settings on the node
      pool.
    machineType: The name of a Google Compute Engine [machine
      type](https://cloud.google.com/compute/docs/machine-types) (e.g.
      `n1-standard-1`). If unspecified, the default machine type is
      `n1-standard-1`.
    maxRunDuration: The maximum duration for the nodes to exist. If
      unspecified, the nodes can exist indefinitely.
    metadata: The metadata key/value pairs assigned to instances in the
      cluster. Keys must conform to the regexp `[a-zA-Z0-9-_]+` and be less
      than 128 bytes in length. These are reflected as part of a URL in the
      metadata server. Additionally, to avoid ambiguity, keys must not
      conflict with any other metadata keys for the project or be one of the
      reserved keys: - "cluster-location" - "cluster-name" - "cluster-uid" -
      "configure-sh" - "containerd-configure-sh" - "enable-os-login" - "gci-
      ensure-gke-docker" - "gci-metrics-enabled" - "gci-update-strategy" -
      "instance-template" - "kube-env" - "startup-script" - "user-data" -
      "disable-address-manager" - "windows-startup-script-ps1" - "common-psm1"
      - "k8s-node-setup-psm1" - "install-ssh-psm1" - "user-profile-psm1"
      Values are free-form strings, and only have meaning as interpreted by
      the image running in the instance. The only restriction placed on them
      is that each value's size must be less than or equal to 32 KB. The total
      size of all keys and values must be less than 512 KB.
    minCpuPlatform: Minimum CPU platform to be used by this instance. The
      instance may be scheduled on the specified or newer CPU platform.
      Applicable values are the friendly names of CPU platforms, such as
      `minCpuPlatform: "Intel Haswell"` or `minCpuPlatform: "Intel Sandy
      Bridge"`. For more
      platform](https://cloud.google.com/compute/docs/instances/specify-min-
      cpu-platform).
    nodeGroup: Setting this field will assign instances of this pool to run on
      the specified node group. This is useful for running workloads on [sole
      tenant nodes](https://cloud.google.com/compute/docs/nodes/sole-tenant-
      nodes).
    nodeImageConfig: The node image configuration to use for this node pool.
      Note that this is only applicable for node pools using
      image_type=CUSTOM.
    oauthScopes: The set of Google API scopes to be made available on all of
      the node VMs under the "default" service account. The following scopes
      are recommended, but not required, and by default are not included: *
      `https://www.googleapis.com/auth/compute` is required for mounting
      persistent storage on your nodes. *
      `https://www.googleapis.com/auth/devstorage.read_only` is required for
      communicating with **gcr.io** (the [Artifact
      Registry](https://cloud.google.com/artifact-registry/)). If unspecified,
      no scopes are added, unless Cloud Logging or Cloud Monitoring are
      enabled, in which case their required scopes will be added.
    preemptible: Whether the nodes are created as preemptible VM instances.
      See: https://cloud.google.com/compute/docs/instances/preemptible for
      more information about preemptible VM instances.
    reservationAffinity: The optional reservation affinity. Setting this field
      will apply the specified [Zonal Compute
      Reservation](https://cloud.google.com/compute/docs/instances/reserving-
      zonal-resources) to this node pool.
    resourceLabels: The resource labels for the node pool to use to annotate
      any related Google Compute Engine resources.
    resourceManagerTags: A map of resource manager tag keys and values to be
      attached to the nodes.
    runnerPoolConfig: The runner pool config configuration for the node pool.
    runnerPoolControl: The runner pool control configuration for the node
      pool.
    sandboxConfig: Sandbox configuration for this node.
    secondaryBootDiskUpdateStrategy: Secondary boot disk update strategy.
    secondaryBootDisks: List of secondary boot disks attached to the nodes.
    serviceAccount: The Google Cloud Platform Service Account to be used by
      the node VMs. Specify the email address of the Service Account;
      otherwise, if no Service Account is specified, the "default" service
      account is used.
    shieldedInstanceConfig: Shielded Instance options.
    soleTenantConfig: Parameters for node pools to be backed by shared sole
      tenant node groups.
    spot: Spot flag for enabling Spot VM, which is a rebrand of the existing
      preemptible flag.
    stableFleetConfig: Stable fleet configs. This is deprecated. Use
      HostMaintenancePolicy instead.
    storagePools: List of Storage Pools where boot disks are provisioned.
    tags: The list of instance tags applied to all nodes. Tags are used to
      identify valid sources or targets for network firewalls and are
      specified by the client during cluster or node pool creation. Each tag
      within the list must comply with RFC1035.
    taints: List of kubernetes taints to be applied to each node. For more
      information, including usage and the valid values, see:
      https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
    windowsNodeConfig: Parameters that can be configured on Windows nodes.
    workloadMetadataConfig: The workload metadata configuration for this node.
  """

  class EffectiveCgroupModeValueValuesEnum(_messages.Enum):
    r"""Output only. effective_cgroup_mode is the cgroup mode actually used by
    the node pool. It is determined by the cgroup mode specified in the
    LinuxNodeConfig or the default cgroup mode based on the cluster creation
    version.

    Values:
      EFFECTIVE_CGROUP_MODE_UNSPECIFIED: EFFECTIVE_CGROUP_MODE_UNSPECIFIED
        means the cgroup configuration for the node pool is unspecified, i.e.
        the node pool is a Windows node pool.
      EFFECTIVE_CGROUP_MODE_V1: CGROUP_MODE_V1 means the node pool is
        configured to use cgroupv1 for the cgroup configuration.
      EFFECTIVE_CGROUP_MODE_V2: CGROUP_MODE_V2 means the node pool is
        configured to use cgroupv2 for the cgroup configuration.
    """
    EFFECTIVE_CGROUP_MODE_UNSPECIFIED = 0
    EFFECTIVE_CGROUP_MODE_V1 = 1
    EFFECTIVE_CGROUP_MODE_V2 = 2

  class LocalSsdEncryptionModeValueValuesEnum(_messages.Enum):
    r"""Specifies which method should be used for encrypting the Local SSDs
    attached to the node.

    Values:
      LOCAL_SSD_ENCRYPTION_MODE_UNSPECIFIED: The given node will be encrypted
        using keys managed by Google infrastructure and the keys will be
        deleted when the node is deleted.
      STANDARD_ENCRYPTION: The given node will be encrypted using keys managed
        by Google infrastructure and the keys will be deleted when the node is
        deleted.
      EPHEMERAL_KEY_ENCRYPTION: The given node will opt-in for using ephemeral
        key for encryption of Local SSDs. The Local SSDs will not be able to
        recover data in case of node crash.
    """
    LOCAL_SSD_ENCRYPTION_MODE_UNSPECIFIED = 0
    STANDARD_ENCRYPTION = 1
    EPHEMERAL_KEY_ENCRYPTION = 2

  @encoding.MapUnrecognizedFields('additionalProperties')
  class LabelsValue(_messages.Message):
    r"""The map of Kubernetes labels (key/value pairs) to be applied to each
    node. These will added in addition to any default label(s) that Kubernetes
    may apply to the node. In case of conflict in label keys, the applied set
    may differ depending on the Kubernetes version -- it's best to assume the
    behavior is undefined and conflicts should be avoided. For more
    information, including usage and the valid values, see:
    https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/

    Messages:
      AdditionalProperty: An additional property for a LabelsValue object.

    Fields:
      additionalProperties: Additional properties of type LabelsValue
    """

    class AdditionalProperty(_messages.Message):
      r"""An additional property for a LabelsValue object.

      Fields:
        key: Name of the additional property.
        value: A string attribute.
      """

      key = _messages.StringField(1)
      value = _messages.StringField(2)

    additionalProperties = _messages.MessageField('AdditionalProperty', 1, repeated=True)

  @encoding.MapUnrecognizedFields('additionalProperties')
  class MetadataValue(_messages.Message):
    r"""The metadata key/value pairs assigned to instances in the cluster.
    Keys must conform to the regexp `[a-zA-Z0-9-_]+` and be less than 128
    bytes in length. These are reflected as part of a URL in the metadata
    server. Additionally, to avoid ambiguity, keys must not conflict with any
    other metadata keys for the project or be one of the reserved keys: -
    "cluster-location" - "cluster-name" - "cluster-uid" - "configure-sh" -
    "containerd-configure-sh" - "enable-os-login" - "gci-ensure-gke-docker" -
    "gci-metrics-enabled" - "gci-update-strategy" - "instance-template" -
    "kube-env" - "startup-script" - "user-data" - "disable-address-manager" -
    "windows-startup-script-ps1" - "common-psm1" - "k8s-node-setup-psm1" -
    "install-ssh-psm1" - "user-profile-psm1" Values are free-form strings, and
    only have meaning as interpreted by the image running in the instance. The
    only restriction placed on them is that each value's size must be less
    than or equal to 32 KB. The total size of all keys and values must be less
    than 512 KB.

    Messages:
      AdditionalProperty: An additional property for a MetadataValue object.

    Fields:
      additionalProperties: Additional properties of type MetadataValue
    """

    class AdditionalProperty(_messages.Message):
      r"""An additional property for a MetadataValue object.

      Fields:
        key: Name of the additional property.
        value: A string attribute.
      """

      key = _messages.StringField(1)
      value = _messages.StringField(2)

    additionalProperties = _messages.MessageField('AdditionalProperty', 1, repeated=True)

  @encoding.MapUnrecognizedFields('additionalProperties')
  class ResourceLabelsValue(_messages.Message):
    r"""The resource labels for the node pool to use to annotate any related
    Google Compute Engine resources.

    Messages:
      AdditionalProperty: An additional property for a ResourceLabelsValue
        object.

    Fields:
      additionalProperties: Additional properties of type ResourceLabelsValue
    """

    class AdditionalProperty(_messages.Message):
      r"""An additional property for a ResourceLabelsValue object.

      Fields:
        key: Name of the additional property.
        value: A string attribute.
      """

      key = _messages.StringField(1)
      value = _messages.StringField(2)

    additionalProperties = _messages.MessageField('AdditionalProperty', 1, repeated=True)

  accelerators = _messages.MessageField('AcceleratorConfig', 1, repeated=True)
  advancedMachineFeatures = _messages.MessageField('AdvancedMachineFeatures', 2)
  bootDisk = _messages.MessageField('BootDisk', 3)
  bootDiskKmsKey = _messages.StringField(4)
  confidentialNodes = _messages.MessageField('ConfidentialNodes', 5)
  consolidationDelay = _messages.StringField(6)
  containerdConfig = _messages.MessageField('ContainerdConfig', 7)
  diskSizeGb = _messages.IntegerField(8, variant=_messages.Variant.INT32)
  diskType = _messages.StringField(9)
  effectiveCgroupMode = _messages.EnumField('EffectiveCgroupModeValueValuesEnum', 10)
  enableConfidentialStorage = _messages.BooleanField(11)
  ephemeralStorageConfig = _messages.MessageField('EphemeralStorageConfig', 12)
  ephemeralStorageLocalSsdConfig = _messages.MessageField('EphemeralStorageLocalSsdConfig', 13)
  fastSocket = _messages.MessageField('FastSocket', 14)
  flexStart = _messages.BooleanField(15)
  gcfsConfig = _messages.MessageField('GcfsConfig', 16)
  gpuDirectConfig = _messages.MessageField('GPUDirectConfig', 17)
  gvnic = _messages.MessageField('VirtualNIC', 18)
  hostMaintenancePolicy = _messages.MessageField('HostMaintenancePolicy', 19)
  imageType = _messages.StringField(20)
  kubeletConfig = _messages.MessageField('NodeKubeletConfig', 21)
  labels = _messages.MessageField('LabelsValue', 22)
  linuxNodeConfig = _messages.MessageField('LinuxNodeConfig', 23)
  localNvmeSsdBlockConfig = _messages.MessageField('LocalNvmeSsdBlockConfig', 24)
  localSsdCount = _messages.IntegerField(25, variant=_messages.Variant.INT32)
  localSsdEncryptionMode = _messages.EnumField('LocalSsdEncryptionModeValueValuesEnum', 26)
  localSsdVolumeConfigs = _messages.MessageField('LocalSsdVolumeConfig', 27, repeated=True)
  loggingConfig = _messages.MessageField('NodePoolLoggingConfig', 28)
  lustreConfig = _messages.MessageField('LustreConfig', 29)
  machineType = _messages.StringField(30)
  maxRunDuration = _messages.StringField(31)
  metadata = _messages.MessageField('MetadataValue', 32)
  minCpuPlatform = _messages.StringField(33)
  nodeGroup = _messages.StringField(34)
  nodeImageConfig = _messages.MessageField('CustomImageConfig', 35)
  oauthScopes = _messages.StringField(36, repeated=True)
  preemptible = _messages.BooleanField(37)
  reservationAffinity = _messages.MessageField('ReservationAffinity', 38)
  resourceLabels = _messages.MessageField('ResourceLabelsValue', 39)
  resourceManagerTags = _messages.MessageField('ResourceManagerTags', 40)
  runnerPoolConfig = _messages.MessageField('RunnerPoolConfig', 41)
  runnerPoolControl = _messages.MessageField('RunnerPoolControl', 42)
  sandboxConfig = _messages.MessageField('SandboxConfig', 43)
  secondaryBootDiskUpdateStrategy = _messages.MessageField('SecondaryBootDiskUpdateStrategy', 44)
  secondaryBootDisks = _messages.MessageField('SecondaryBootDisk', 45, repeated=True)
  serviceAccount = _messages.StringField(46)
  shieldedInstanceConfig = _messages.MessageField('ShieldedInstanceConfig', 47)
  soleTenantConfig = _messages.MessageField('SoleTenantConfig', 48)
  spot = _messages.BooleanField(49)
  stableFleetConfig = _messages.MessageField('StableFleetConfig', 50)
  storagePools = _messages.StringField(51, repeated=True)
  tags = _messages.StringField(52, repeated=True)
  taints = _messages.MessageField('NodeTaint', 53, repeated=True)
  windowsNodeConfig = _messages.MessageField('WindowsNodeConfig', 54)
  workloadMetadataConfig = _messages.MessageField('WorkloadMetadataConfig', 55)


class NodeConfigDefaults(_messages.Message):
  r"""Subset of NodeConfig message that has defaults.

  Fields:
    containerdConfig: Parameters for containerd customization.
    gcfsConfig: GCFS (Google Container File System, also known as Riptide)
      options.
    hostMaintenancePolicy: HostMaintenancePolicy contains the desired
      maintenance policy for the Google Compute Engine hosts.
    loggingConfig: Logging configuration for node pools.
    nodeKubeletConfig: NodeKubeletConfig controls the defaults for new node-
      pools. Currently only `insecure_kubelet_readonly_port_enabled` can be
      set here.
    stableFleetConfig: Stable fleet configs. Deprecated; use
      HostMaintenancePolicy instead.
  """

  containerdConfig = _messages.MessageField('ContainerdConfig', 1)
  gcfsConfig = _messages.MessageField('GcfsConfig', 2)
  hostMaintenancePolicy = _messages.MessageField('HostMaintenancePolicy', 3)
  loggingConfig = _messages.MessageField('NodePoolLoggingConfig', 4)
  nodeKubeletConfig = _messages.MessageField('NodeKubeletConfig', 5)
  stableFleetConfig = _messages.MessageField('StableFleetConfig', 6)


class NodeDrainConfig(_messages.Message):
  r"""NodeDrainConfig contains the node drain related configurations for this
  nodepool.

  Fields:
    graceTerminationDuration: The duration of the grace termination period for
      node drain.
    pdbTimeoutDuration: The duration of the PDB timeout period for node drain.
    respectPdbDuringNodePoolDeletion: Whether to respect PDB during node pool
      deletion.
  """

  graceTerminationDuration = _messages.StringField(1)
  pdbTimeoutDuration = _messages.StringField(2)
  respectPdbDuringNodePoolDeletion = _messages.BooleanField(3)


class NodeKernelModuleLoading(_messages.Message):
  r"""Configuration for kernel module loading on nodes.

  Enums:
    PolicyValueValuesEnum: Set the node module loading policy for nodes in the
      node pool.

  Fields:
    policy: Set the node module loading policy for nodes in the node pool.
  """

  class PolicyValueValuesEnum(_messages.Enum):
    r"""Set the node module loading policy for nodes in the node pool.

    Values:
      POLICY_UNSPECIFIED: Default behavior. GKE selects the image based on
        node type. For CPU and TPU nodes, the image will not allow loading
        external kernel modules. For GPU nodes, the image will allow loading
        any module, whether it is signed or not.
      ENFORCE_SIGNED_MODULES: Enforced signature verification: Node pools will
        use a Container-Optimized OS image configured to allow loading of
        *Google-signed* external kernel modules. Loadpin is enabled but
        configured to exclude modules, and kernel module signature checking is
        enforced.
      DO_NOT_ENFORCE_SIGNED_MODULES: Mirrors existing DEFAULT behavior: For
        CPU and TPU nodes, the image will not allow loading external kernel
        modules. For GPU nodes, the image will allow loading any module,
        whether it is signed or not.
    """
    POLICY_UNSPECIFIED = 0
    ENFORCE_SIGNED_MODULES = 1
    DO_NOT_ENFORCE_SIGNED_MODULES = 2

  policy = _messages.EnumField('PolicyValueValuesEnum', 1)


class NodeKubeletConfig(_messages.Message):
  r"""Node kubelet configs. NOTE: This is an Alpha only API.

  Fields:
    allowedUnsafeSysctls: Optional. Defines a comma-separated allowlist of
      unsafe sysctls or sysctl patterns (ending in `*`). The unsafe namespaced
      sysctl groups are `kernel.shm*`, `kernel.msg*`, `kernel.sem`,
      `fs.mqueue.*`, and `net.*`. Leaving this allowlist empty means they
      cannot be set on Pods. To allow certain sysctls or sysctl patterns to be
      set on Pods, list them separated by commas. For example:
      `kernel.msg*,net.ipv4.route.min_pmtu`. See
      https://kubernetes.io/docs/tasks/administer-cluster/sysctl-cluster/ for
      more details.
    containerLogMaxFiles: Optional. Defines the maximum number of container
      log files that can be present for a container. See
      https://kubernetes.io/docs/concepts/cluster-administration/logging/#log-
      rotation The value must be an integer between 2 and 10, inclusive. The
      default value is 5 if unspecified.
    containerLogMaxSize: Optional. Defines the maximum size of the container
      log file before it is rotated. See
      https://kubernetes.io/docs/concepts/cluster-administration/logging/#log-
      rotation Valid format is positive number + unit, e.g. 100Ki, 10Mi. Valid
      units are Ki, Mi, Gi. The value must be between 10Mi and 500Mi,
      inclusive. Note that the total container log size
      (container_log_max_size * container_log_max_files) cannot exceed 1% of
      the total storage of the node, to avoid disk pressure caused by log
      files. The default value is 10Mi if unspecified.
    cpuCfsQuota: Enable CPU CFS quota enforcement for containers that specify
      CPU limits. This option is enabled by default which makes kubelet use
      CFS quota (https://www.kernel.org/doc/Documentation/scheduler/sched-
      bwc.txt) to enforce container CPU limits. Otherwise, CPU limits will not
      be enforced at all. Disable this option to mitigate CPU throttling
      problems while still having your pods to be in Guaranteed QoS class by
      specifying the CPU limits. The default value is 'true' if unspecified.
    cpuCfsQuotaPeriod: Set the CPU CFS quota period value 'cpu.cfs_period_us'.
      The string must be a sequence of decimal numbers, each with optional
      fraction and a unit suffix, such as "300ms". Valid time units are "ns",
      "us" (or "\xb5s"), "ms", "s", "m", "h". The value must be a positive
      duration between 1ms and 1 second, inclusive.
    cpuManagerPolicy: Control the CPU management policy on the node. See
      https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-
      policies/ The following values are allowed. * "none": the default, which
      represents the existing scheduling behavior. * "static": allows pods
      with certain resource characteristics to be granted increased CPU
      affinity and exclusivity on the node. The default value is 'none' if
      unspecified.
    evictionMaxPodGracePeriodSeconds: Optional.
      eviction_max_pod_grace_period_seconds is the maximum allowed grace
      period (in seconds) to use when terminating pods in response to a soft
      eviction threshold being met. This value effectively caps the Pod's
      terminationGracePeriodSeconds value during soft evictions. Default: 0.
      Range: [0, 300].
    evictionMinimumReclaim: Optional. eviction_minimum_reclaim is a map of
      signal names to quantities that defines minimum reclaims, which describe
      the minimum amount of a given resource the kubelet will reclaim when
      performing a pod eviction while that resource is under pressure.
    evictionSoft: Optional. eviction_soft is a map of signal names to
      quantities that defines soft eviction thresholds. Each signal is
      compared to its corresponding threshold to determine if a pod eviction
      should occur.
    evictionSoftGracePeriod: Optional. eviction_soft_grace_period is a map of
      signal names to quantities that defines grace periods for each soft
      eviction signal. The grace period is the amount of time that a pod must
      be under pressure before an eviction occurs.
    imageGcHighThresholdPercent: Optional. Defines the percent of disk usage
      after which image garbage collection is always run. The percent is
      calculated as this field value out of 100. The value must be between 10
      and 85, inclusive and greater than image_gc_low_threshold_percent. The
      default value is 85 if unspecified.
    imageGcLowThresholdPercent: Optional. Defines the percent of disk usage
      before which image garbage collection is never run. Lowest disk usage to
      garbage collect to. The percent is calculated as this field value out of
      100. The value must be between 10 and 85, inclusive and smaller than
      image_gc_high_threshold_percent. The default value is 80 if unspecified.
    imageMaximumGcAge: Optional. Defines the maximum age an image can be
      unused before it is garbage collected. The string must be a sequence of
      decimal numbers, each with optional fraction and a unit suffix, such as
      "300s", "1.5h", and "2h45m". Valid time units are "ns", "us" (or
      "\xb5s"), "ms", "s", "m", "h". The value must be a positive duration
      greater than image_minimum_gc_age or "0s". The default value is "0s" if
      unspecified, which disables this field, meaning images won't be garbage
      collected based on being unused for too long.
    imageMinimumGcAge: Optional. Defines the minimum age for an unused image
      before it is garbage collected. The string must be a sequence of decimal
      numbers, each with optional fraction and a unit suffix, such as "300s",
      "1.5h", and "2h45m". Valid time units are "ns", "us" (or "\xb5s"), "ms",
      "s", "m", "h". The value must be a positive duration less than or equal
      to 2 minutes. The default value is "2m0s" if unspecified.
    insecureKubeletReadonlyPortEnabled: Enable or disable Kubelet read only
      port.
    maxParallelImagePulls: Optional. Defines the maximum number of image pulls
      in parallel. The range is 2 to 5, inclusive. The default value is 2 or 3
      depending on the disk type. See
      https://kubernetes.io/docs/concepts/containers/images/#maximum-parallel-
      image-pulls for more details.
    memoryManager: Optional. Controls NUMA-aware Memory Manager configuration
      on the node. For more information, see:
      https://kubernetes.io/docs/tasks/administer-cluster/memory-manager/
    nodeSwapSizeGib: Optional. Defines Swap memory size available to container
      workloads. To enable Swap, set a positive integer which does not exceed
      50% of the boot disk size. The swap file is placed on boot disk by
      default. Swap_size is subtracted from the boot disk size when
      calculating reserved ephemeral storage
      https://cloud.google.com/kubernetes-engine/docs/concepts/plan-node-
      sizes#local_ephemeral_storage_reservation. System pods cannot use swap.
      Swap is not supported on all TPU machines and some GPU (A4X, A4, A3)
      machines. Swap is not supported on CgroupV1. Swap is disabled if the
      field is unspecified or set to 0.
    podPidsLimit: Set the Pod PID limits. See
      https://kubernetes.io/docs/concepts/policy/pid-limiting/#pod-pid-limits
      Controls the maximum number of processes allowed to run in a pod. The
      value must be greater than or equal to 1024 and less than 4194304.
    singleProcessOomKill: Optional. Defines whether to enable single process
      OOM killer. If true, will prevent the memory.oom.group flag from being
      set for container cgroups in cgroups v2. This causes processes in the
      container to be OOM killed individually instead of as a group.
    topologyManager: Optional. Controls Topology Manager configuration on the
      node. For more information, see:
      https://kubernetes.io/docs/tasks/administer-cluster/topology-manager/
  """

  allowedUnsafeSysctls = _messages.StringField(1, repeated=True)
  containerLogMaxFiles = _messages.IntegerField(2, variant=_messages.Variant.INT32)
  containerLogMaxSize = _messages.StringField(3)
  cpuCfsQuota = _messages.BooleanField(4)
  cpuCfsQuotaPeriod = _messages.StringField(5)
  cpuManagerPolicy = _messages.StringField(6)
  evictionMaxPodGracePeriodSeconds = _messages.IntegerField(7, variant=_messages.Variant.INT32)
  evictionMinimumReclaim = _messages.MessageField('EvictionMinimumReclaim', 8)
  evictionSoft = _messages.MessageField('EvictionSignals', 9)
  evictionSoftGracePeriod = _messages.MessageField('EvictionGracePeriod', 10)
  imageGcHighThresholdPercent = _messages.IntegerField(11, variant=_messages.Variant.INT32)
  imageGcLowThresholdPercent = _messages.IntegerField(12, variant=_messages.Variant.INT32)
  imageMaximumGcAge = _messages.StringField(13)
  imageMinimumGcAge = _messages.StringField(14)
  insecureKubeletReadonlyPortEnabled = _messages.BooleanField(15)
  maxParallelImagePulls = _messages.IntegerField(16, variant=_messages.Variant.INT32)
  memoryManager = _messages.MessageField('MemoryManager', 17)
  nodeSwapSizeGib = _messages.IntegerField(18)
  podPidsLimit = _messages.IntegerField(19)
  singleProcessOomKill = _messages.BooleanField(20)
  topologyManager = _messages.MessageField('TopologyManager', 21)


class NodeLabels(_messages.Message):
  r"""Collection of node-level [Kubernetes
  labels](https://kubernetes.io/docs/concepts/overview/working-with-
  objects/labels).

  Messages:
    LabelsValue: Map of node label keys and node label values.

  Fields:
    labels: Map of node label keys and node label values.
  """

  @encoding.MapUnrecognizedFields('additionalProperties')
  class LabelsValue(_messages.Message):
    r"""Map of node label keys and node label values.

    Messages:
      AdditionalProperty: An additional property for a LabelsValue object.

    Fields:
      additionalProperties: Additional properties of type LabelsValue
    """

    class AdditionalProperty(_messages.Message):
      r"""An additional property for a LabelsValue object.

      Fields:
        key: Name of the additional property.
        value: A string attribute.
      """

      key = _messages.StringField(1)
      value = _messages.StringField(2)

    additionalProperties = _messages.MessageField('AdditionalProperty', 1, repeated=True)

  labels = _messages.MessageField('LabelsValue', 1)


class NodeManagement(_messages.Message):
  r"""NodeManagement defines the set of node management services turned on for
  the node pool.

  Fields:
    autoRepair: Whether the nodes will be automatically repaired.
    autoUpgrade: Whether the nodes will be automatically upgraded.
    upgradeOptions: Specifies the Auto Upgrade knobs for the node pool.
  """

  autoRepair = _messages.BooleanField(1)
  autoUpgrade = _messages.BooleanField(2)
  upgradeOptions = _messages.MessageField('AutoUpgradeOptions', 3)


class NodeNetworkConfig(_messages.Message):
  r"""Parameters for node pool-level network config. Only applicable if
  `ip_allocation_policy.use_ip_aliases` is true.

  Fields:
    acceleratorNetworkProfile: Immutable. The accelerator network profile for
      the node pool. For now the only valid value is "auto". If specified, the
      network configuration of the nodes in this node pool will be managed by
      this profile for the supported machine types, zone, etc.
    additionalNodeNetworkConfigs: We specify the additional node networks for
      this node pool using this list. Each node network corresponds to an
      additional interface
    additionalPodNetworkConfigs: We specify the additional pod networks for
      this node pool using this list. Each pod network corresponds to an
      additional alias IP range for the node
    createPodRange: Input only. Whether to create a new range for pod IPs in
      this node pool. Defaults are provided for `pod_range` and
      `pod_ipv4_cidr_block` if they are not specified. If neither
      `create_pod_range` or `pod_range` are specified, the cluster-level
      default (`ip_allocation_policy.cluster_ipv4_cidr_block`) is used. Only
      applicable if `ip_allocation_policy.use_ip_aliases` is true. This field
      cannot be changed after the node pool has been created.
    enableEndpointsliceProxying: If true, kube-proxy will read from
      EndpointSlices instead of Endpoints. This flag only applies to GKE 1.18.
    enablePrivateNodes: Whether nodes have internal IP addresses only. If
      enable_private_nodes is not specified, then the value is derived from
      Cluster.NetworkConfig.default_enable_private_nodes
    networkPerformanceConfig: Network bandwidth tier configuration.
    networkTierConfig: Output only. The network tier configuration for the
      node pool inherits from the cluster-level configuration and remains
      immutable throughout the node pool's lifecycle, including during
      upgrades.
    podCidrOverprovisionConfig: [PRIVATE FIELD] Pod CIDR size overprovisioning
      config for the nodepool. Pod CIDR size per node depends on
      max_pods_per_node. By default, the value of max_pods_per_node is doubled
      and then rounded off to next power of 2 to get the size of pod CIDR
      block per node. Example: max_pods_per_node of 30 would result in 64 IPs
      (/26). This config can disable the doubling of IPs (we still round off
      to next power of 2) Example: max_pods_per_node of 30 will result in 32
      IPs (/27) when overprovisioning is disabled.
    podIpv4CidrBlock: The IP address range for pod IPs in this node pool. Only
      applicable if `create_pod_range` is true. Set to blank to have a range
      chosen with the default size. Set to /netmask (e.g. `/14`) to have a
      range chosen with a specific netmask. Set to a
      [CIDR](https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing)
      notation (e.g. `10.96.0.0/14`) to pick a specific range to use. Only
      applicable if `ip_allocation_policy.use_ip_aliases` is true. This field
      cannot be changed after the node pool has been created.
    podIpv4RangeUtilization: Output only. The utilization of the IPv4 range
      for the pod. The ratio is Usage/[Total number of IPs in the secondary
      range], Usage=numNodes*numZones*podIPsPerNode.
    podRange: The ID of the secondary range for pod IPs. If `create_pod_range`
      is true, this ID is used for the new range. If `create_pod_range` is
      false, uses an existing secondary range with this ID. Only applicable if
      `ip_allocation_policy.use_ip_aliases` is true. This field cannot be
      changed after the node pool has been created.
    subnetwork: Output only. The subnetwork path for the node pool. Format:
      projects/{project}/regions/{region}/subnetworks/{subnetwork} If the
      cluster is associated with multiple subnetworks, the subnetwork for the
      node pool is picked based on the IP utilization during node pool
      creation and is immutable.
    targetPodIpv4Range: The target IP address range of the pod IPs in this
      node pool. This setting works in conjunction with `pod_ipv4_cidr_block`.
      When `pod_ipv4_cidr_block` specifies an IP mask length then the
      corresponding range will be auto assigned from within the CIDR block
      specified here. Set to blank to use the default range (10.0.0.0/8). Set
      to a [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing)
      notation (e.g. `240.0.0.0/8`) to pick a specific range to use.
  """

  acceleratorNetworkProfile = _messages.StringField(1)
  additionalNodeNetworkConfigs = _messages.MessageField('AdditionalNodeNetworkConfig', 2, repeated=True)
  additionalPodNetworkConfigs = _messages.MessageField('AdditionalPodNetworkConfig', 3, repeated=True)
  createPodRange = _messages.BooleanField(4)
  enableEndpointsliceProxying = _messages.BooleanField(5)
  enablePrivateNodes = _messages.BooleanField(6)
  networkPerformanceConfig = _messages.MessageField('NetworkPerformanceConfig', 7)
  networkTierConfig = _messages.MessageField('NetworkTierConfig', 8)
  podCidrOverprovisionConfig = _messages.MessageField('PodCIDROverprovisionConfig', 9)
  podIpv4CidrBlock = _messages.StringField(10)
  podIpv4RangeUtilization = _messages.FloatField(11)
  podRange = _messages.StringField(12)
  subnetwork = _messages.StringField(13)
  targetPodIpv4Range = _messages.StringField(14)


class NodeNetworkPolicy(_messages.Message):
  r"""NodeNetworkPolicy specifies if node network policy feature is enabled.
  This feature is only supported with DatapathProvider=ADVANCED_DATAPATH.

  Fields:
    enabled: Whether node network policy is enabled.
  """

  enabled = _messages.BooleanField(1)


class NodePool(_messages.Message):
  r"""NodePool contains the name and configuration for a cluster's node pool.
  Node pools are a set of nodes (i.e. VM's), with a common configuration and
  specification, under the control of the cluster master. They may have a set
  of Kubernetes labels applied to them, which may be used to reference them
  during pod scheduling. They may also be resized up or down, to accommodate
  the workload.

  Enums:
    StatusValueValuesEnum: Output only. The status of the nodes in this pool
      instance.

  Fields:
    autopilotConfig: Specifies the autopilot configuration for this node pool.
      This field is exclusively reserved for Cluster Autoscaler.
    autoscaling: Autoscaler configuration for this NodePool. Autoscaler is
      enabled only if a valid configuration is present.
    bestEffortProvisioning: Enable best effort provisioning for nodes
    conditions: Which conditions caused the current node pool state.
    config: The node configuration of the pool.
    etag: This checksum is computed by the server based on the value of node
      pool fields, and may be sent on update requests to ensure the client has
      an up-to-date value before proceeding.
    initialNodeCount: The initial node count for the pool. You must ensure
      that your Compute Engine resource quota is sufficient for this number of
      instances. You must also have available firewall and routes quota.
    instanceGroupUrls: Output only. The resource URLs of the [managed instance
      groups](https://cloud.google.com/compute/docs/instance-groups/creating-
      groups-of-managed-instances) associated with this node pool. During the
      node pool blue-green upgrade operation, the URLs contain both blue and
      green resources.
    locations: The list of Google Compute Engine
      [zones](https://cloud.google.com/compute/docs/zones#available) in which
      the NodePool's nodes should be located. If this value is unspecified
      during node pool creation, the
      [Cluster.Locations](https://cloud.google.com/kubernetes-engine/docs/refe
      rence/rest/v1/projects.locations.clusters#Cluster.FIELDS.locations)
      value will be used, instead. Warning: changing node pool locations will
      result in nodes being added and/or removed.
    management: NodeManagement configuration for this NodePool.
    maxPodsConstraint: The constraint on the maximum number of pods that can
      be run simultaneously on a node in the node pool.
    name: The name of the node pool.
    networkConfig: Networking configuration for this NodePool. If specified,
      it overrides the cluster-level defaults.
    nodeDrainConfig: Specifies the node drain configuration for this node
      pool.
    placementPolicy: Specifies the node placement policy.
    podIpv4CidrSize: Output only. The pod CIDR block size per node in this
      node pool.
    queuedProvisioning: Specifies the configuration of queued provisioning.
    resourceVersion: Server-defined resource version (etag). Deprecated; use
      etag instead.
    selfLink: Output only. Server-defined URL for the resource.
    status: Output only. The status of the nodes in this pool instance.
    statusMessage: Output only. Additional information about the current
      status of this node pool instance, if available. Deprecated, use the
      field conditions instead.
    updateInfo: Output only. Upgrade info contains relevant information during
      a node pool update.
    upgradeSettings: Upgrade settings control disruption and speed of the
      upgrade.
    version: The version of Kubernetes running on this NodePool's nodes. If
      unspecified, it defaults as described
      [here](https://cloud.google.com/kubernetes-
      engine/versioning#specifying_node_version).
  """

  class StatusValueValuesEnum(_messages.Enum):
    r"""Output only. The status of the nodes in this pool instance.

    Values:
      STATUS_UNSPECIFIED: Not set.
      PROVISIONING: The PROVISIONING state indicates the node pool is being
        created.
      RUNNING: The RUNNING state indicates the node pool has been created and
        is fully usable.
      RUNNING_WITH_ERROR: The RUNNING_WITH_ERROR state indicates the node pool
        has been created and is partially usable. Some error state has
        occurred and some functionality may be impaired. Customer may need to
        reissue a request or trigger a new update.
      RECONCILING: The RECONCILING state indicates that some work is actively
        being done on the node pool, such as upgrading node software. Details
        can be found in the `statusMessage` field.
      STOPPING: The STOPPING state indicates the node pool is being deleted.
      ERROR: The ERROR state indicates the node pool may be unusable. Details
        can be found in the `statusMessage` field.
    """
    STATUS_UNSPECIFIED = 0
    PROVISIONING = 1
    RUNNING = 2
    RUNNING_WITH_ERROR = 3
    RECONCILING = 4
    STOPPING = 5
    ERROR = 6

  autopilotConfig = _messages.MessageField('AutopilotConfig', 1)
  autoscaling = _messages.MessageField('NodePoolAutoscaling', 2)
  bestEffortProvisioning = _messages.MessageField('BestEffortProvisioning', 3)
  conditions = _messages.MessageField('StatusCondition', 4, repeated=True)
  config = _messages.MessageField('NodeConfig', 5)
  etag = _messages.StringField(6)
  initialNodeCount = _messages.IntegerField(7, variant=_messages.Variant.INT32)
  instanceGroupUrls = _messages.StringField(8, repeated=True)
  locations = _messages.StringField(9, repeated=True)
  management = _messages.MessageField('NodeManagement', 10)
  maxPodsConstraint = _messages.MessageField('MaxPodsConstraint', 11)
  name = _messages.StringField(12)
  networkConfig = _messages.MessageField('NodeNetworkConfig', 13)
  nodeDrainConfig = _messages.MessageField('NodeDrainConfig', 14)
  placementPolicy = _messages.MessageField('PlacementPolicy', 15)
  podIpv4CidrSize = _messages.IntegerField(16, variant=_messages.Variant.INT32)
  queuedProvisioning = _messages.MessageField('QueuedProvisioning', 17)
  resourceVersion = _messages.StringField(18)
  selfLink = _messages.StringField(19)
  status = _messages.EnumField('StatusValueValuesEnum', 20)
  statusMessage = _messages.StringField(21)
  updateInfo = _messages.MessageField('UpdateInfo', 22)
  upgradeSettings = _messages.MessageField('UpgradeSettings', 23)
  version = _messages.StringField(24)


class NodePoolAutoConfig(_messages.Message):
  r"""node pool configs that apply to all auto-provisioned node pools in
  autopilot clusters and node auto-provisioning enabled clusters

  Fields:
    linuxNodeConfig: Output only. Configuration options for Linux nodes.
    networkTags: The list of instance tags applied to all nodes. Tags are used
      to identify valid sources or targets for network firewalls and are
      specified by the client during cluster creation. Each tag within the
      list must comply with RFC1035.
    nodeKubeletConfig: NodeKubeletConfig controls the defaults for
      autoprovisioned node-pools. Currently only
      `insecure_kubelet_readonly_port_enabled` can be set here.
    resourceManagerTags: Resource manager tag keys and values to be attached
      to the nodes for managing Compute Engine firewalls using Network
      Firewall Policies.
  """

  linuxNodeConfig = _messages.MessageField('LinuxNodeConfig', 1)
  networkTags = _messages.MessageField('NetworkTags', 2)
  nodeKubeletConfig = _messages.MessageField('NodeKubeletConfig', 3)
  resourceManagerTags = _messages.MessageField('ResourceManagerTags', 4)


class NodePoolAutoscaling(_messages.Message):
  r"""NodePoolAutoscaling contains information required by cluster autoscaler
  to adjust the size of the node pool to the current cluster usage.

  Enums:
    LocationPolicyValueValuesEnum: Location policy used when scaling up a
      nodepool.

  Fields:
    autoprovisioned: Can this node pool be deleted automatically.
    enabled: Is autoscaling enabled for this node pool.
    locationPolicy: Location policy used when scaling up a nodepool.
    maxNodeCount: Maximum number of nodes for one location in the node pool.
      Must be >= min_node_count. There has to be enough quota to scale up the
      cluster.
    minNodeCount: Minimum number of nodes for one location in the node pool.
      Must be greater than or equal to 0 and less than or equal to
      max_node_count.
    totalMaxNodeCount: Maximum number of nodes in the node pool. Must be
      greater than or equal to total_min_node_count. There has to be enough
      quota to scale up the cluster. The total_*_node_count fields are
      mutually exclusive with the *_node_count fields.
    totalMinNodeCount: Minimum number of nodes in the node pool. Must be
      greater than or equal to 0 and less than or equal to
      total_max_node_count. The total_*_node_count fields are mutually
      exclusive with the *_node_count fields.
  """

  class LocationPolicyValueValuesEnum(_messages.Enum):
    r"""Location policy used when scaling up a nodepool.

    Values:
      LOCATION_POLICY_UNSPECIFIED: Not set.
      BALANCED: BALANCED is a best effort policy that aims to balance the
        sizes of different zones.
      ANY: ANY policy picks zones that have the highest capacity available.
    """
    LOCATION_POLICY_UNSPECIFIED = 0
    BALANCED = 1
    ANY = 2

  autoprovisioned = _messages.BooleanField(1)
  enabled = _messages.BooleanField(2)
  locationPolicy = _messages.EnumField('LocationPolicyValueValuesEnum', 3)
  maxNodeCount = _messages.IntegerField(4, variant=_messages.Variant.INT32)
  minNodeCount = _messages.IntegerField(5, variant=_messages.Variant.INT32)
  totalMaxNodeCount = _messages.IntegerField(6, variant=_messages.Variant.INT32)
  totalMinNodeCount = _messages.IntegerField(7, variant=_messages.Variant.INT32)


class NodePoolDefaults(_messages.Message):
  r"""Subset of Nodepool message that has defaults.

  Fields:
    nodeConfigDefaults: Subset of NodeConfig message that has defaults.
  """

  nodeConfigDefaults = _messages.MessageField('NodeConfigDefaults', 1)


class NodePoolLoggingConfig(_messages.Message):
  r"""NodePoolLoggingConfig specifies logging configuration for nodepools.

  Fields:
    variantConfig: Logging variant configuration.
  """

  variantConfig = _messages.MessageField('LoggingVariantConfig', 1)


class NodePoolUpgradeInfo(_messages.Message):
  r"""NodePoolUpgradeInfo contains the upgrade information of a nodepool.

  Enums:
    AutoUpgradeStatusValueListEntryValuesEnum:
    PausedReasonValueListEntryValuesEnum:

  Fields:
    autoUpgradeStatus: The auto upgrade status.
    endOfExtendedSupportTimestamp: The nodepool's current minor version's end
      of extended support timestamp.
    endOfStandardSupportTimestamp: The nodepool's current minor version's end
      of standard support timestamp.
    minorTargetVersion: minor_target_version indicates the target version for
      minor upgrade.
    patchTargetVersion: patch_target_version indicates the target version for
      patch upgrade.
    pausedReason: The auto upgrade paused reason.
    upgradeDetails: The list of past auto upgrades.
  """

  class AutoUpgradeStatusValueListEntryValuesEnum(_messages.Enum):
    r"""AutoUpgradeStatusValueListEntryValuesEnum enum type.

    Values:
      UNKNOWN: UNKNOWN indicates an unknown status.
      ACTIVE: ACTIVE indicates an active status.
      MINOR_UPGRADE_PAUSED: MINOR_UPGRADE_PAUSED indicates the minor version
        upgrade is paused.
      UPGRADE_PAUSED: UPGRADE_PAUSED indicates the upgrade is paused.
    """
    UNKNOWN = 0
    ACTIVE = 1
    MINOR_UPGRADE_PAUSED = 2
    UPGRADE_PAUSED = 3

  class PausedReasonValueListEntryValuesEnum(_messages.Enum):
    r"""PausedReasonValueListEntryValuesEnum enum type.

    Values:
      AUTO_UPGRADE_PAUSED_REASON_UNSPECIFIED:
        AUTO_UPGRADE_PAUSED_REASON_UNSPECIFIED indicates an unspecified
        reason.
      MAINTENANCE_WINDOW: MAINTENANCE_WINDOW indicates the cluster is outside
        customer maintenance window.
      MAINTENANCE_EXCLUSION_NO_UPGRADES: MAINTENANCE_EXCLUSION_NO_UPGRADES
        indicates the cluster is in a maintenance exclusion with scope
        NO_UPGRADES.
      MAINTENANCE_EXCLUSION_NO_MINOR_UPGRADES:
        MAINTENANCE_EXCLUSION_NO_MINOR_UPGRADES indicates the cluster is in a
        maintenance exclusion with scope NO_MINOR_UPGRADES.
      SYSTEM_CONFIG: SYSTEM_CONFIG indicates the cluster upgrade is paused by
        system config.
    """
    AUTO_UPGRADE_PAUSED_REASON_UNSPECIFIED = 0
    MAINTENANCE_WINDOW = 1
    MAINTENANCE_EXCLUSION_NO_UPGRADES = 2
    MAINTENANCE_EXCLUSION_NO_MINOR_UPGRADES = 3
    SYSTEM_CONFIG = 4

  autoUpgradeStatus = _messages.EnumField('AutoUpgradeStatusValueListEntryValuesEnum', 1, repeated=True)
  endOfExtendedSupportTimestamp = _messages.StringField(2)
  endOfStandardSupportTimestamp = _messages.StringField(3)
  minorTargetVersion = _messages.StringField(4)
  patchTargetVersion = _messages.StringField(5)
  pausedReason = _messages.EnumField('PausedReasonValueListEntryValuesEnum', 6, repeated=True)
  upgradeDetails = _messages.MessageField('UpgradeDetails', 7, repeated=True)


class NodeTaint(_messages.Message):
  r"""Kubernetes taint is composed of three fields: key, value, and effect.
  Effect can only be one of three types: NoSchedule, PreferNoSchedule or
  NoExecute. See
  [here](https://kubernetes.io/docs/concepts/configuration/taint-and-
  toleration) for more information, including usage and the valid values.

  Enums:
    EffectValueValuesEnum: Effect for taint.

  Fields:
    effect: Effect for taint.
    key: Key for taint.
    value: Value for taint.
  """

  class EffectValueValuesEnum(_messages.Enum):
    r"""Effect for taint.

    Values:
      EFFECT_UNSPECIFIED: Not set
      NO_SCHEDULE: NoSchedule
      PREFER_NO_SCHEDULE: PreferNoSchedule
      NO_EXECUTE: NoExecute
    """
    EFFECT_UNSPECIFIED = 0
    NO_SCHEDULE = 1
    PREFER_NO_SCHEDULE = 2
    NO_EXECUTE = 3

  effect = _messages.EnumField('EffectValueValuesEnum', 1)
  key = _messages.StringField(2)
  value = _messages.StringField(3)


class NodeTaints(_messages.Message):
  r"""Collection of Kubernetes [node
  taints](https://kubernetes.io/docs/concepts/configuration/taint-and-
  toleration).

  Fields:
    taints: List of node taints.
  """

  taints = _messages.MessageField('NodeTaint', 1, repeated=True)


class NotificationConfig(_messages.Message):
  r"""NotificationConfig is the configuration of notifications.

  Fields:
    pubsub: Notification config for Pub/Sub.
  """

  pubsub = _messages.MessageField('PubSub', 1)


class Operation(_messages.Message):
  r"""This operation resource represents operations that may have happened or
  are happening on the cluster. All fields are output only.

  Enums:
    OperationTypeValueValuesEnum: Output only. The operation type.
    StatusValueValuesEnum: Output only. The current status of the operation.

  Fields:
    clusterConditions: Which conditions caused the current cluster state.
      Deprecated. Use field error instead.
    detail: Output only. Detailed operation progress, if available.
    endTime: Output only. The time the operation completed, in
      [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) text format.
    error: The error result of the operation in case of failure.
    location: Output only. The name of the Google Compute Engine
      [zone](https://cloud.google.com/compute/docs/regions-zones/regions-
      zones#available) or
      [region](https://cloud.google.com/compute/docs/regions-zones/regions-
      zones#available) in which the cluster resides.
    name: Output only. The server-assigned ID for the operation.
    nodepoolConditions: Which conditions caused the current node pool state.
      Deprecated. Use field error instead.
    operationType: Output only. The operation type.
    progress: Output only. Progress information for an operation.
    selfLink: Output only. Server-defined URI for the resource.
    startTime: Output only. The time the operation started, in
      [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) text format.
    status: Output only. The current status of the operation.
    statusMessage: Output only. If an error has occurred, a textual
      description of the error. Deprecated. Use the field error instead.
    targetLink: Output only. Server-defined URI for the target of the
      operation. The format of this is a URI to the resource being modified
      (such as a cluster, node pool, or node). For node pool repairs, there
      may be multiple nodes being repaired, but only one will be the target.
      Examples: -
      `https://container.googleapis.com/v1alpha1/projects/123/locations/us-
      central1/clusters/my-cluster` -
      `https://container.googleapis.com/v1alpha1/projects/123/zones/us-
      central1-c/clusters/my-cluster/nodePools/my-np` -
      `https://container.googleapis.com/v1alpha1/projects/123/zones/us-
      central1-c/clusters/my-cluster/nodePools/my-np/node/my-node`
    zone: Output only. The name of the Google Compute Engine
      [zone](https://cloud.google.com/compute/docs/zones#available) in which
      the operation is taking place. This field is deprecated, use location
      instead.
  """

  class OperationTypeValueValuesEnum(_messages.Enum):
    r"""Output only. The operation type.

    Values:
      TYPE_UNSPECIFIED: Not set.
      CREATE_CLUSTER: The cluster is being created. The cluster should be
        assumed to be unusable until the operation finishes. In the event of
        the operation failing, the cluster will enter the ERROR state and
        eventually be deleted.
      DELETE_CLUSTER: The cluster is being deleted. The cluster should be
        assumed to be unusable as soon as this operation starts. In the event
        of the operation failing, the cluster will enter the ERROR state and
        the deletion will be automatically retried until completed.
      UPGRADE_MASTER: The cluster version is being updated. Note that this
        includes "upgrades" to the same version, which are simply a
        recreation. This also includes [auto-
        upgrades](https://cloud.google.com/kubernetes-
        engine/docs/concepts/cluster-upgrades#upgrading_automatically). For
        more details, see [documentation on cluster
        upgrades](https://cloud.google.com/kubernetes-
        engine/docs/concepts/cluster-upgrades#cluster_upgrades).
      UPGRADE_NODES: A node pool is being updated. Despite calling this an
        "upgrade", this includes most forms of updates to node pools. This
        also includes [auto-upgrades](https://cloud.google.com/kubernetes-
        engine/docs/how-to/node-auto-upgrades). This operation sets the
        progress field and may be canceled. The upgrade strategy depends on
        [node pool configuration](https://cloud.google.com/kubernetes-
        engine/docs/concepts/node-pool-upgrade-strategies). The nodes are
        generally still usable during this operation.
      REPAIR_CLUSTER: A problem has been detected with the control plane and
        is being repaired. This operation type is initiated by GKE. For more
        details, see [documentation on
        repairs](https://cloud.google.com/kubernetes-
        engine/docs/concepts/maintenance-windows-and-exclusions#repairs).
      UPDATE_CLUSTER: The cluster is being updated. This is a broad category
        of operations and includes operations that only change metadata as
        well as those that must recreate the entire cluster. If the control
        plane must be recreated, this will cause temporary downtime for zonal
        clusters. Some features require recreating the nodes as well. Those
        will be recreated as separate operations and the update may not be
        completely functional until the node pools recreations finish. Node
        recreations will generally follow [maintenance
        policies](https://cloud.google.com/kubernetes-
        engine/docs/concepts/maintenance-windows-and-exclusions). Some GKE-
        initiated operations use this type. This includes certain types of
        auto-upgrades and incident mitigations.
      CREATE_NODE_POOL: A node pool is being created. The node pool should be
        assumed to be unusable until this operation finishes. In the event of
        an error, the node pool may be partially created. If enabled, [node
        autoprovisioning](https://cloud.google.com/kubernetes-engine/docs/how-
        to/node-auto-provisioning) may have automatically initiated such
        operations.
      DELETE_NODE_POOL: The node pool is being deleted. The node pool should
        be assumed to be unusable as soon as this operation starts.
      SET_NODE_POOL_MANAGEMENT: The node pool's manamagent field is being
        updated. These operations only update metadata and may be concurrent
        with most other operations.
      AUTO_REPAIR_NODES: A problem has been detected with nodes and [they are
        being repaired](https://cloud.google.com/kubernetes-engine/docs/how-
        to/node-auto-repair). This operation type is initiated by GKE,
        typically automatically. This operation may be concurrent with other
        operations and there may be multiple repairs occurring on the same
        node pool.
      AUTO_UPGRADE_NODES: Unused. Automatic node upgrade uses UPGRADE_NODES.
      SET_LABELS: Unused. Updating labels uses UPDATE_CLUSTER.
      SET_MASTER_AUTH: Unused. Updating master auth uses UPDATE_CLUSTER.
      SET_NODE_POOL_SIZE: The node pool is being resized. With the exception
        of resizing to or from size zero, the node pool is generally usable
        during this operation.
      SET_NETWORK_POLICY: Unused. Updating network policy uses UPDATE_CLUSTER.
      SET_MAINTENANCE_POLICY: Unused. Updating maintenance policy uses
        UPDATE_CLUSTER.
      UPDATE_IP_ALLOCATION_POLICY: The cluster's ip_allocation_policy is being
        updated.
      RESIZE_CLUSTER: The control plane is being resized. This operation type
        is initiated by GKE. These operations are often performed preemptively
        to ensure that the control plane has sufficient resources and is not
        typically an indication of issues. For more details, see
        [documentation on resizes](https://cloud.google.com/kubernetes-
        engine/docs/concepts/maintenance-windows-and-exclusions#repairs).
      FLEET_FEATURE_UPGRADE: Fleet features of GKE Enterprise are being
        upgraded. The cluster should be assumed to be blocked for other
        upgrades until the operation finishes.
    """
    TYPE_UNSPECIFIED = 0
    CREATE_CLUSTER = 1
    DELETE_CLUSTER = 2
    UPGRADE_MASTER = 3
    UPGRADE_NODES = 4
    REPAIR_CLUSTER = 5
    UPDATE_CLUSTER = 6
    CREATE_NODE_POOL = 7
    DELETE_NODE_POOL = 8
    SET_NODE_POOL_MANAGEMENT = 9
    AUTO_REPAIR_NODES = 10
    AUTO_UPGRADE_NODES = 11
    SET_LABELS = 12
    SET_MASTER_AUTH = 13
    SET_NODE_POOL_SIZE = 14
    SET_NETWORK_POLICY = 15
    SET_MAINTENANCE_POLICY = 16
    UPDATE_IP_ALLOCATION_POLICY = 17
    RESIZE_CLUSTER = 18
    FLEET_FEATURE_UPGRADE = 19

  class StatusValueValuesEnum(_messages.Enum):
    r"""Output only. The current status of the operation.

    Values:
      STATUS_UNSPECIFIED: Not set.
      PENDING: The operation has been created.
      RUNNING: The operation is currently running.
      DONE: The operation is done, either cancelled or completed.
      ABORTING: The operation is aborting.
    """
    STATUS_UNSPECIFIED = 0
    PENDING = 1
    RUNNING = 2
    DONE = 3
    ABORTING = 4

  clusterConditions = _messages.MessageField('StatusCondition', 1, repeated=True)
  detail = _messages.StringField(2)
  endTime = _messages.StringField(3)
  error = _messages.MessageField('Status', 4)
  location = _messages.StringField(5)
  name = _messages.StringField(6)
  nodepoolConditions = _messages.MessageField('StatusCondition', 7, repeated=True)
  operationType = _messages.EnumField('OperationTypeValueValuesEnum', 8)
  progress = _messages.MessageField('OperationProgress', 9)
  selfLink = _messages.StringField(10)
  startTime = _messages.StringField(11)
  status = _messages.EnumField('StatusValueValuesEnum', 12)
  statusMessage = _messages.StringField(13)
  targetLink = _messages.StringField(14)
  zone = _messages.StringField(15)


class OperationError(_messages.Message):
  r"""OperationError records errors seen from CloudKMS keys encountered during
  updates to DatabaseEncryption configuration.

  Fields:
    errorMessage: Description of the error seen during the operation.
    keyName: CloudKMS key resource that had the error.
    timestamp: Time when the CloudKMS error was seen.
  """

  errorMessage = _messages.StringField(1)
  keyName = _messages.StringField(2)
  timestamp = _messages.StringField(3)


class OperationProgress(_messages.Message):
  r"""Information about operation (or operation stage) progress.

  Enums:
    StatusValueValuesEnum: Status of an operation stage. Unset for single-
      stage operations.

  Fields:
    metrics: Progress metric bundle, for example: metrics: [{name: "nodes
      done", int_value: 15}, {name: "nodes total", int_value: 32}] or metrics:
      [{name: "progress", double_value: 0.56}, {name: "progress scale",
      double_value: 1.0}]
    name: A non-parameterized string describing an operation stage. Unset for
      single-stage operations.
    stages: Substages of an operation or a stage.
    status: Status of an operation stage. Unset for single-stage operations.
  """

  class StatusValueValuesEnum(_messages.Enum):
    r"""Status of an operation stage. Unset for single-stage operations.

    Values:
      STATUS_UNSPECIFIED: Not set.
      PENDING: The operation has been created.
      RUNNING: The operation is currently running.
      DONE: The operation is done, either cancelled or completed.
      ABORTING: The operation is aborting.
    """
    STATUS_UNSPECIFIED = 0
    PENDING = 1
    RUNNING = 2
    DONE = 3
    ABORTING = 4

  metrics = _messages.MessageField('Metric', 1, repeated=True)
  name = _messages.StringField(2)
  stages = _messages.MessageField('OperationProgress', 3, repeated=True)
  status = _messages.EnumField('StatusValueValuesEnum', 4)


class OpportunisticMaintenanceStrategy(_messages.Message):
  r"""Strategy that will trigger maintenance on behalf of the customer.

  Fields:
    maintenanceAvailabilityWindow: The window of time that opportunistic
      maintenance can run. Example: A setting of 14 days implies that
      opportunistic maintenance can only be ran in the 2 weeks leading up to
      the scheduled maintenance date. Setting 28 days allows opportunistic
      maintenance to run at any time in the scheduled maintenance window (all
      `PERIODIC` maintenance is set 28 days in advance).
    minNodesPerPool: The minimum nodes required to be available in a pool.
      Blocks maintenance if it would cause the number of running nodes to dip
      below this value.
    nodeIdleTimeWindow: The amount of time that a node can remain idle (no
      customer owned workloads running), before triggering maintenance.
  """

  maintenanceAvailabilityWindow = _messages.StringField(1)
  minNodesPerPool = _messages.IntegerField(2)
  nodeIdleTimeWindow = _messages.StringField(3)


class ParallelstoreCsiDriverConfig(_messages.Message):
  r"""Configuration for the Cloud Storage Parallelstore CSI driver.

  Fields:
    enabled: Whether the Cloud Storage Parallelstore CSI driver is enabled for
      this cluster.
  """

  enabled = _messages.BooleanField(1)


class ParentProductConfig(_messages.Message):
  r"""ParentProductConfig is the configuration of the parent product of the
  cluster. This field is used by Google internal products that are built on
  top of a GKE cluster and take the ownership of the cluster.

  Messages:
    LabelsValue: Labels contain the configuration of the parent product.

  Fields:
    labels: Labels contain the configuration of the parent product.
    productName: Name of the parent product associated with the cluster.
  """

  @encoding.MapUnrecognizedFields('additionalProperties')
  class LabelsValue(_messages.Message):
    r"""Labels contain the configuration of the parent product.

    Messages:
      AdditionalProperty: An additional property for a LabelsValue object.

    Fields:
      additionalProperties: Additional properties of type LabelsValue
    """

    class AdditionalProperty(_messages.Message):
      r"""An additional property for a LabelsValue object.

      Fields:
        key: Name of the additional property.
        value: A string attribute.
      """

      key = _messages.StringField(1)
      value = _messages.StringField(2)

    additionalProperties = _messages.MessageField('AdditionalProperty', 1, repeated=True)

  labels = _messages.MessageField('LabelsValue', 1)
  productName = _messages.StringField(2)


class PlacementPolicy(_messages.Message):
  r"""PlacementPolicy defines the placement policy used by the node pool.

  Enums:
    TypeValueValuesEnum: The type of placement.

  Fields:
    policyName: If set, refers to the name of a custom resource policy
      supplied by the user. The resource policy must be in the same project
      and region as the node pool. If not found, InvalidArgument error is
      returned.
    tpuTopology: TPU placement topology for pod slice node pool.
      https://cloud.google.com/tpu/docs/types-topologies#tpu_topologies
    type: The type of placement.
  """

  class TypeValueValuesEnum(_messages.Enum):
    r"""The type of placement.

    Values:
      TYPE_UNSPECIFIED: TYPE_UNSPECIFIED specifies no requirements on nodes
        placement.
      COMPACT: COMPACT specifies node placement in the same availability
        domain to ensure low communication latency.
    """
    TYPE_UNSPECIFIED = 0
    COMPACT = 1

  policyName = _messages.StringField(1)
  tpuTopology = _messages.StringField(2)
  type = _messages.EnumField('TypeValueValuesEnum', 3)


class PodAutoscaling(_messages.Message):
  r"""PodAutoscaling is used for configuration of parameters for workload
  autoscaling.

  Enums:
    HpaProfileValueValuesEnum: Selected Horizontal Pod Autoscaling profile.

  Fields:
    directMetricsOptIn: DEPRECATED: use HPAProfile instead. Indicates the
      cluster has opted-into direct metrics collection.
    hpaProfile: Selected Horizontal Pod Autoscaling profile.
  """

  class HpaProfileValueValuesEnum(_messages.Enum):
    r"""Selected Horizontal Pod Autoscaling profile.

    Values:
      HPA_PROFILE_UNSPECIFIED: HPA_PROFILE_UNSPECIFIED is used when no custom
        HPA profile is set.
      NONE: Customers explicitly opt-out of HPA profiles.
      PERFORMANCE: PERFORMANCE is used when customers opt-in to the
        performance HPA profile. In this profile we support a higher number of
        HPAs per cluster and faster metrics collection for workload
        autoscaling.
    """
    HPA_PROFILE_UNSPECIFIED = 0
    NONE = 1
    PERFORMANCE = 2

  directMetricsOptIn = _messages.BooleanField(1)
  hpaProfile = _messages.EnumField('HpaProfileValueValuesEnum', 2)


class PodCIDROverprovisionConfig(_messages.Message):
  r"""[PRIVATE FIELD] Config for pod CIDR size overprovisioning.

  Fields:
    disable: Whether Pod CIDR overprovisioning is disabled. Note: Pod CIDR
      overprovisioning is enabled by default.
  """

  disable = _messages.BooleanField(1)


class PodSecurityPolicyConfig(_messages.Message):
  r"""Configuration for the PodSecurityPolicy feature.

  Fields:
    enabled: Enable the PodSecurityPolicy controller for this cluster. If
      enabled, pods must be valid under a PodSecurityPolicy to be created.
  """

  enabled = _messages.BooleanField(1)


class PodSnapshotConfig(_messages.Message):
  r"""PodSnapshotConfig is the configuration for GKE Pod Snapshots feature.

  Fields:
    enabled: Whether or not the Pod Snapshots feature is enabled.
  """

  enabled = _messages.BooleanField(1)


class PolicyBinding(_messages.Message):
  r"""Binauthz policy that applies to this cluster.

  Enums:
    EnforcementModeValueValuesEnum: Mode of operation for binauthz policy
      enforcement.

  Fields:
    enforcementMode: Mode of operation for binauthz policy enforcement.
    name: The relative resource name of the binauthz platform policy to
      evaluate. GKE platform policies have the following format:
      `projects/{project_number}/platforms/gke/policies/{policy_id}`.
  """

  class EnforcementModeValueValuesEnum(_messages.Enum):
    r"""Mode of operation for binauthz policy enforcement.

    Values:
      ENFORCEMENT_MODE_UNSPECIFIED: Default value. For backwards
        compatibility, this has the same behavior as AUDIT.
      AUDIT: Enable Continuous Validation only.
      AUDIT_AND_DRYRUN: Enable Continuous Validation and produce warnings, but
        do not block workloads which are not conformant with the policy.
      AUDIT_AND_ENFORCE: Enable Continuous Validation and block workloads
        which are not conformant with the policy.
    """
    ENFORCEMENT_MODE_UNSPECIFIED = 0
    AUDIT = 1
    AUDIT_AND_DRYRUN = 2
    AUDIT_AND_ENFORCE = 3

  enforcementMode = _messages.EnumField('EnforcementModeValueValuesEnum', 1)
  name = _messages.StringField(2)


class PrivateClusterConfig(_messages.Message):
  r"""Configuration options for private clusters.

  Fields:
    crossConnectConfig: Controls cross connect configuration.
    enablePrivateEndpoint: Whether the master's internal IP address is used as
      the cluster endpoint. Deprecated: Use
      ControlPlaneEndpointsConfig.IPEndpointsConfig.enable_public_endpoint
      instead. Note that the value of enable_public_endpoint is reversed: if
      enable_private_endpoint is false, then enable_public_endpoint will be
      true.
    enablePrivateNodes: Whether nodes have internal IP addresses only. If
      enabled, all nodes are given only RFC 1918 private addresses and
      communicate with the master via private networking. Deprecated: Use
      NetworkConfig.default_enable_private_nodes instead.
    masterGlobalAccessConfig: Controls master global access settings.
      Deprecated: Use
      ControlPlaneEndpointsConfig.IPEndpointsConfig.enable_global_access
      instead.
    masterIpv4CidrBlock: The IP range in CIDR notation to use for the hosted
      master network. This range will be used for assigning internal IP
      addresses to the master or set of masters, as well as the ILB VIP. This
      range must not overlap with any other ranges in use within the cluster's
      network.
    peeringName: Output only. The peering name in the customer VPC used by
      this cluster.
    privateCluster: Whether the cluster is private.
    privateEndpoint: Output only. The internal IP address of this cluster's
      master endpoint. Deprecated: Use
      ControlPlaneEndpointsConfig.IPEndpointsConfig.private_endpoint instead.
    privateEndpointFqdn: Output only. The private endpoint's FQDN.
    privateEndpointSubnetwork: Subnet to provision the master's private
      endpoint during cluster creation. Specified in
      projects/*/regions/*/subnetworks/* format. Deprecated: Use ControlPlaneE
      ndpointsConfig.IPEndpointsConfig.private_endpoint_subnetwork instead.
    publicEndpoint: Output only. The external IP address of this cluster's
      master endpoint. Deprecated: Use
      ControlPlaneEndpointsConfig.IPEndpointsConfig.public_endpoint instead.
  """

  crossConnectConfig = _messages.MessageField('CrossConnectConfig', 1)
  enablePrivateEndpoint = _messages.BooleanField(2)
  enablePrivateNodes = _messages.BooleanField(3)
  masterGlobalAccessConfig = _messages.MessageField('PrivateClusterMasterGlobalAccessConfig', 4)
  masterIpv4CidrBlock = _messages.StringField(5)
  peeringName = _messages.StringField(6)
  privateCluster = _messages.BooleanField(7)
  privateEndpoint = _messages.StringField(8)
  privateEndpointFqdn = _messages.StringField(9)
  privateEndpointSubnetwork = _messages.StringField(10)
  publicEndpoint = _messages.StringField(11)


class PrivateClusterMasterGlobalAccessConfig(_messages.Message):
  r"""Configuration for controlling master global access settings.

  Fields:
    enabled: Whenever master is accessible globally or not.
  """

  enabled = _messages.BooleanField(1)


class PrivateIPv6Status(_messages.Message):
  r"""PrivateIPv6Status contains the desired state of the IPv6 fast path on
  this cluster. Private IPv6 access allows direct high speed communication
  from GKE pods to gRPC Google cloud services over IPv6.

  Fields:
    enabled: Enables private IPv6 access to Google Cloud services for this
      cluster.
  """

  enabled = _messages.BooleanField(1)


class PrivateRegistryAccessConfig(_messages.Message):
  r"""PrivateRegistryAccessConfig contains access configuration for private
  container registries.

  Fields:
    certificateAuthorityDomainConfig: Private registry access configuration.
    enabled: Private registry access is enabled.
  """

  certificateAuthorityDomainConfig = _messages.MessageField('CertificateAuthorityDomainConfig', 1, repeated=True)
  enabled = _messages.BooleanField(2)


class PrivilegedAdmissionConfig(_messages.Message):
  r"""PrivilegedAdmissionConfig stores the list of authorized allowlist paths
  for the cluster.

  Fields:
    allowlistPaths: The customer allowlist Cloud Storage paths for the
      cluster. These paths are used with the `--autopilot-privileged-
      admission` flag to authorize privileged workloads in Autopilot clusters.
      Paths can be GKE-owned, in the format `gke:////`, or customer-owned, in
      the format `gs:///`. Wildcards (`*`) are supported to authorize all
      allowlists under specific paths or directories. Example: `gs://my-
      bucket/*` will authorize all allowlists under the `my-bucket` bucket.
  """

  allowlistPaths = _messages.StringField(1, repeated=True)


class ProtectConfig(_messages.Message):
  r"""ProtectConfig defines the flags needed to enable/disable features for
  the Protect API.

  Enums:
    WorkloadVulnerabilityModeValueValuesEnum: Sets which mode to use for
      Protect workload vulnerability scanning feature.

  Fields:
    workloadConfig: WorkloadConfig defines which actions are enabled for a
      cluster's workload configurations.
    workloadVulnerabilityMode: Sets which mode to use for Protect workload
      vulnerability scanning feature.
  """

  class WorkloadVulnerabilityModeValueValuesEnum(_messages.Enum):
    r"""Sets which mode to use for Protect workload vulnerability scanning
    feature.

    Values:
      WORKLOAD_VULNERABILITY_MODE_UNSPECIFIED: Default value not specified.
      DISABLED: Disables Workload Vulnerability Scanning feature on the
        cluster.
      BASIC: Applies basic vulnerability scanning settings for cluster
        workloads.
    """
    WORKLOAD_VULNERABILITY_MODE_UNSPECIFIED = 0
    DISABLED = 1
    BASIC = 2

  workloadConfig = _messages.MessageField('WorkloadConfig', 1)
  workloadVulnerabilityMode = _messages.EnumField('WorkloadVulnerabilityModeValueValuesEnum', 2)


class PubSub(_messages.Message):
  r"""Pub/Sub specific notification config.

  Fields:
    enabled: Enable notifications for Pub/Sub.
    filter: Allows filtering to one or more specific event types. If no filter
      is specified, or if a filter is specified with no event types, all event
      types will be sent
    topic: The desired Pub/Sub topic to which notifications will be sent by
      GKE. Format is `projects/{project}/topics/{topic}`.
  """

  enabled = _messages.BooleanField(1)
  filter = _messages.MessageField('Filter', 2)
  topic = _messages.StringField(3)


class QueuedProvisioning(_messages.Message):
  r"""QueuedProvisioning defines the queued provisioning used by the node
  pool.

  Fields:
    enabled: Denotes that this nodepool is QRM specific, meaning nodes can be
      only obtained through queuing via the Cluster Autoscaler
      ProvisioningRequest API.
  """

  enabled = _messages.BooleanField(1)


class RBACBindingConfig(_messages.Message):
  r"""RBACBindingConfig allows user to restrict ClusterRoleBindings an
  RoleBindings that can be created.

  Fields:
    enableInsecureBindingSystemAuthenticated: Setting this to true will allow
      any ClusterRoleBinding and RoleBinding with subjects
      system:authenticated.
    enableInsecureBindingSystemUnauthenticated: Setting this to true will
      allow any ClusterRoleBinding and RoleBinding with subjets
      system:anonymous or system:unauthenticated.
  """

  enableInsecureBindingSystemAuthenticated = _messages.BooleanField(1)
  enableInsecureBindingSystemUnauthenticated = _messages.BooleanField(2)


class RangeInfo(_messages.Message):
  r"""RangeInfo contains the range name and the range utilization by this
  cluster.

  Fields:
    rangeName: Output only. Name of a range.
    utilization: Output only. The utilization of the range.
  """

  rangeName = _messages.StringField(1)
  utilization = _messages.FloatField(2)


class RayClusterLoggingConfig(_messages.Message):
  r"""RayClusterLoggingConfig specifies logging configuration for Ray
  clusters.

  Fields:
    enabled: Enable log collection for Ray clusters.
  """

  enabled = _messages.BooleanField(1)


class RayClusterMonitoringConfig(_messages.Message):
  r"""RayClusterMonitoringConfig specifies monitoring configuration for Ray
  clusters.

  Fields:
    enabled: Enable metrics collection for Ray clusters.
  """

  enabled = _messages.BooleanField(1)


class RayConfig(_messages.Message):
  r"""DEPRECATED. Use RayOperatorConfig instead. Configuration options for the
  Ray add-on.

  Fields:
    enabled: Whether the Ray addon is enabled for this cluster.
  """

  enabled = _messages.BooleanField(1)


class RayLoggingConfig(_messages.Message):
  r"""RayLoggingConfig specifies configuration of Ray logging.

  Fields:
    enabled: Enable log collection for Ray clusters.
  """

  enabled = _messages.BooleanField(1)


class RayMonitoringConfig(_messages.Message):
  r"""RayMonitoringConfig specifies configuration of Ray Monitoring feature.

  Fields:
    enabled: Enable metrics collection for Ray clusters.
  """

  enabled = _messages.BooleanField(1)


class RayOperatorConfig(_messages.Message):
  r"""Configuration options for the Ray Operator add-on.

  Fields:
    enabled: Whether the Ray Operator addon is enabled for this cluster.
    rayClusterLoggingConfig: Optional. Logging configuration for Ray clusters.
    rayClusterMonitoringConfig: Optional. Monitoring configuration for Ray
      clusters.
  """

  enabled = _messages.BooleanField(1)
  rayClusterLoggingConfig = _messages.MessageField('RayClusterLoggingConfig', 2)
  rayClusterMonitoringConfig = _messages.MessageField('RayClusterMonitoringConfig', 3)


class RecurringTimeWindow(_messages.Message):
  r"""Represents an arbitrary window of time that recurs.

  Fields:
    recurrence: An RRULE (https://tools.ietf.org/html/rfc5545#section-3.8.5.3)
      for how this window reccurs. They go on for the span of time between the
      start and end time. For example, to have something repeat every weekday,
      you'd use: `FREQ=WEEKLY;BYDAY=MO,TU,WE,TH,FR` To repeat some window
      daily (equivalent to the DailyMaintenanceWindow): `FREQ=DAILY` For the
      first weekend of every month: `FREQ=MONTHLY;BYSETPOS=1;BYDAY=SA,SU` This
      specifies how frequently the window starts. Eg, if you wanted to have a
      9-5 UTC-4 window every weekday, you'd use something like: ``` start time
      = 2019-01-01T09:00:00-0400 end time = 2019-01-01T17:00:00-0400
      recurrence = FREQ=WEEKLY;BYDAY=MO,TU,WE,TH,FR ``` Windows can span
      multiple days. Eg, to make the window encompass every weekend from
      midnight Saturday till the last minute of Sunday UTC: ``` start time =
      2019-01-05T00:00:00Z end time = 2019-01-07T23:59:00Z recurrence =
      FREQ=WEEKLY;BYDAY=SA ``` Note the start and end time's specific dates
      are largely arbitrary except to specify duration of the window and when
      it first starts. The FREQ values of HOURLY, MINUTELY, and SECONDLY are
      not supported.
    window: The window of the first recurrence.
  """

  recurrence = _messages.StringField(1)
  window = _messages.MessageField('TimeWindow', 2)


class RegistryHeader(_messages.Message):
  r"""RegistryHeader configures headers for the registry.

  Fields:
    key: Key configures the header key.
    value: Value configures the header value.
  """

  key = _messages.StringField(1)
  value = _messages.StringField(2, repeated=True)


class RegistryHostConfig(_messages.Message):
  r"""RegistryHostConfig configures the top-level structure for a single
  containerd registry server's configuration, which represents one hosts.toml
  file on the node. It will override the same fqdns in
  PrivateRegistryAccessConfig.

  Fields:
    hosts: HostConfig configures a list of host-specific configurations for
      the server. Each server can have at most 10 host configurations.
    server: Defines the host name of the registry server, which will be used
      to create configuration file as /etc/containerd/hosts.d//hosts.toml. It
      supports fully qualified domain names (FQDN) and IP addresses:
      Specifying port is supported. Wildcards are NOT supported. Examples: -
      my.customdomain.com - 10.0.1.2:5000
  """

  hosts = _messages.MessageField('HostConfig', 1, repeated=True)
  server = _messages.StringField(2)


class ReleaseChannel(_messages.Message):
  r"""ReleaseChannel indicates which release channel a cluster is subscribed
  to. Release channels are arranged in order of risk. When a cluster is
  subscribed to a release channel, Google maintains both the master version
  and the node version. Node auto-upgrade defaults to true and cannot be
  disabled.

  Enums:
    ChannelValueValuesEnum: channel specifies which release channel the
      cluster is subscribed to.

  Fields:
    channel: channel specifies which release channel the cluster is subscribed
      to.
  """

  class ChannelValueValuesEnum(_messages.Enum):
    r"""channel specifies which release channel the cluster is subscribed to.

    Values:
      UNSPECIFIED: No channel specified.
      RAPID: RAPID channel is offered on an early access basis for customers
        who want to test new releases. WARNING: Versions available in the
        RAPID Channel may be subject to unresolved issues with no known
        workaround and are not subject to any SLAs.
      REGULAR: Clusters subscribed to REGULAR receive versions that are
        considered GA quality. REGULAR is intended for production users who
        want to take advantage of new features.
      STABLE: Clusters subscribed to STABLE receive versions that are known to
        be stable and reliable in production.
      EXTENDED: Clusters subscribed to EXTENDED receive extended support and
        availability for versions which are known to be stable and reliable in
        production.
    """
    UNSPECIFIED = 0
    RAPID = 1
    REGULAR = 2
    STABLE = 3
    EXTENDED = 4

  channel = _messages.EnumField('ChannelValueValuesEnum', 1)


class ReleaseChannelConfig(_messages.Message):
  r"""ReleaseChannelConfig exposes configuration for a release channel.

  Enums:
    ChannelValueValuesEnum: The release channel this configuration applies to.

  Fields:
    availableVersions: Deprecated. This field has been deprecated and replaced
      with the valid_versions field.
    channel: The release channel this configuration applies to.
    defaultVersion: The default version for newly created clusters on the
      channel.
    upgradeTargetVersion: The auto upgrade target version for clusters on the
      channel.
    validVersions: List of valid versions for the channel.
  """

  class ChannelValueValuesEnum(_messages.Enum):
    r"""The release channel this configuration applies to.

    Values:
      UNSPECIFIED: No channel specified.
      RAPID: RAPID channel is offered on an early access basis for customers
        who want to test new releases. WARNING: Versions available in the
        RAPID Channel may be subject to unresolved issues with no known
        workaround and are not subject to any SLAs.
      REGULAR: Clusters subscribed to REGULAR receive versions that are
        considered GA quality. REGULAR is intended for production users who
        want to take advantage of new features.
      STABLE: Clusters subscribed to STABLE receive versions that are known to
        be stable and reliable in production.
      EXTENDED: Clusters subscribed to EXTENDED receive extended support and
        availability for versions which are known to be stable and reliable in
        production.
    """
    UNSPECIFIED = 0
    RAPID = 1
    REGULAR = 2
    STABLE = 3
    EXTENDED = 4

  availableVersions = _messages.MessageField('AvailableVersion', 1, repeated=True)
  channel = _messages.EnumField('ChannelValueValuesEnum', 2)
  defaultVersion = _messages.StringField(3)
  upgradeTargetVersion = _messages.StringField(4)
  validVersions = _messages.StringField(5, repeated=True)


class ReservationAffinity(_messages.Message):
  r"""[ReservationAffinity](https://cloud.google.com/compute/docs/instances/re
  serving-zonal-resources) is the configuration of desired reservation which
  instances could take capacity from.

  Enums:
    ConsumeReservationTypeValueValuesEnum: Corresponds to the type of
      reservation consumption.

  Fields:
    consumeReservationType: Corresponds to the type of reservation
      consumption.
    key: Corresponds to the label key of a reservation resource. To target a
      SPECIFIC_RESERVATION by name, specify
      "compute.googleapis.com/reservation-name" as the key and specify the
      name of your reservation as its value.
    values: Corresponds to the label value(s) of reservation resource(s).
  """

  class ConsumeReservationTypeValueValuesEnum(_messages.Enum):
    r"""Corresponds to the type of reservation consumption.

    Values:
      UNSPECIFIED: Default value. This should not be used.
      NO_RESERVATION: Do not consume from any reserved capacity.
      ANY_RESERVATION: Consume any reservation available.
      SPECIFIC_RESERVATION: Must consume from a specific reservation. Must
        specify key value fields for specifying the reservations.
    """
    UNSPECIFIED = 0
    NO_RESERVATION = 1
    ANY_RESERVATION = 2
    SPECIFIC_RESERVATION = 3

  consumeReservationType = _messages.EnumField('ConsumeReservationTypeValueValuesEnum', 1)
  key = _messages.StringField(2)
  values = _messages.StringField(3, repeated=True)


class ResolvedConfEntry(_messages.Message):
  r"""Additional entries to be added to resolved.conf.

  Fields:
    key: The key of resolved.conf
    value: Optional. The value of resolved.conf
  """

  key = _messages.StringField(1)
  value = _messages.StringField(2, repeated=True)


class ResourceLabels(_messages.Message):
  r"""Collection of [Resource Manager
  labels](https://cloud.google.com/resource-manager/docs/creating-managing-
  labels).

  Messages:
    LabelsValue: Map of node label keys and node label values.

  Fields:
    labels: Map of node label keys and node label values.
  """

  @encoding.MapUnrecognizedFields('additionalProperties')
  class LabelsValue(_messages.Message):
    r"""Map of node label keys and node label values.

    Messages:
      AdditionalProperty: An additional property for a LabelsValue object.

    Fields:
      additionalProperties: Additional properties of type LabelsValue
    """

    class AdditionalProperty(_messages.Message):
      r"""An additional property for a LabelsValue object.

      Fields:
        key: Name of the additional property.
        value: A string attribute.
      """

      key = _messages.StringField(1)
      value = _messages.StringField(2)

    additionalProperties = _messages.MessageField('AdditionalProperty', 1, repeated=True)

  labels = _messages.MessageField('LabelsValue', 1)


class ResourceLimit(_messages.Message):
  r"""Contains information about amount of some resource in the cluster. For
  memory, value should be in GB.

  Fields:
    maximum: Maximum amount of the resource in the cluster.
    minimum: Minimum amount of the resource in the cluster.
    resourceType: Resource name "cpu", "memory" or gpu-specific string.
  """

  maximum = _messages.IntegerField(1)
  minimum = _messages.IntegerField(2)
  resourceType = _messages.StringField(3)


class ResourceManagerTags(_messages.Message):
  r"""A map of resource manager tag keys and values to be attached to the
  nodes for managing Compute Engine firewalls using Network Firewall Policies.
  Tags must be according to specifications in
  https://cloud.google.com/vpc/docs/tags-firewalls-overview#specifications. A
  maximum of 5 tag key-value pairs can be specified. Existing tags will be
  replaced with new values.

  Messages:
    TagsValue: Tags must be in one of the following formats ([KEY]=[VALUE]) 1.
      `tagKeys/{tag_key_id}=tagValues/{tag_value_id}` 2.
      `{org_id}/{tag_key_name}={tag_value_name}` 3.
      `{project_id}/{tag_key_name}={tag_value_name}`

  Fields:
    tags: Tags must be in one of the following formats ([KEY]=[VALUE]) 1.
      `tagKeys/{tag_key_id}=tagValues/{tag_value_id}` 2.
      `{org_id}/{tag_key_name}={tag_value_name}` 3.
      `{project_id}/{tag_key_name}={tag_value_name}`
  """

  @encoding.MapUnrecognizedFields('additionalProperties')
  class TagsValue(_messages.Message):
    r"""Tags must be in one of the following formats ([KEY]=[VALUE]) 1.
    `tagKeys/{tag_key_id}=tagValues/{tag_value_id}` 2.
    `{org_id}/{tag_key_name}={tag_value_name}` 3.
    `{project_id}/{tag_key_name}={tag_value_name}`

    Messages:
      AdditionalProperty: An additional property for a TagsValue object.

    Fields:
      additionalProperties: Additional properties of type TagsValue
    """

    class AdditionalProperty(_messages.Message):
      r"""An additional property for a TagsValue object.

      Fields:
        key: Name of the additional property.
        value: A string attribute.
      """

      key = _messages.StringField(1)
      value = _messages.StringField(2)

    additionalProperties = _messages.MessageField('AdditionalProperty', 1, repeated=True)

  tags = _messages.MessageField('TagsValue', 1)


class ResourceUsageExportConfig(_messages.Message):
  r"""Configuration for exporting cluster resource usages.

  Fields:
    bigqueryDestination: Configuration to use BigQuery as usage export
      destination.
    consumptionMeteringConfig: Configuration to enable resource consumption
      metering.
    enableNetworkEgressMetering: Whether to enable network egress metering for
      this cluster. If enabled, a daemonset will be created in the cluster to
      meter network egress traffic.
  """

  bigqueryDestination = _messages.MessageField('BigQueryDestination', 1)
  consumptionMeteringConfig = _messages.MessageField('ConsumptionMeteringConfig', 2)
  enableNetworkEgressMetering = _messages.BooleanField(3)


class RollbackNodePoolUpgradeRequest(_messages.Message):
  r"""RollbackNodePoolUpgradeRequest rollbacks the previously Aborted or
  Failed NodePool upgrade. This will be an no-op if the last upgrade
  successfully completed.

  Fields:
    clusterId: Deprecated. The name of the cluster to rollback. This field has
      been deprecated and replaced by the name field.
    name: The name (project, location, cluster, node pool id) of the node poll
      to rollback upgrade. Specified in the format
      `projects/*/locations/*/clusters/*/nodePools/*`.
    nodePoolId: Deprecated. The name of the node pool to rollback. This field
      has been deprecated and replaced by the name field.
    projectId: Deprecated. The Google Developers Console [project ID or
      project number](https://cloud.google.com/resource-manager/docs/creating-
      managing-projects). This field has been deprecated and replaced by the
      name field.
    respectPdb: Option for rollback to ignore the PodDisruptionBudget. Default
      value is false.
    zone: Deprecated. The name of the Google Compute Engine
      [zone](https://cloud.google.com/compute/docs/zones#available) in which
      the cluster resides. This field has been deprecated and replaced by the
      name field.
  """

  clusterId = _messages.StringField(1)
  name = _messages.StringField(2)
  nodePoolId = _messages.StringField(3)
  projectId = _messages.StringField(4)
  respectPdb = _messages.BooleanField(5)
  zone = _messages.StringField(6)


class RollbackSafeUpgrade(_messages.Message):
  r"""RollbackSafeUpgrade is the configuration for the rollback safe upgrade.

  Fields:
    controlPlaneSoakDuration: A user-defined period for the cluster remains in
      the rollbackable state. ex: {seconds: 21600}.
  """

  controlPlaneSoakDuration = _messages.StringField(1)


class RollbackSafeUpgradeStatus(_messages.Message):
  r"""RollbackSafeUpgradeStatus contains the rollback-safe upgrade status of a
  cluster.

  Enums:
    ModeValueValuesEnum: The mode of the rollback-safe upgrade.

  Fields:
    controlPlaneUpgradeRollbackEndTime: The rollback-safe mode expiration
      time.
    mode: The mode of the rollback-safe upgrade.
    previousVersion: The GKE version that the cluster previously used before
      step-one upgrade.
  """

  class ModeValueValuesEnum(_messages.Enum):
    r"""The mode of the rollback-safe upgrade.

    Values:
      MODE_UNSPECIFIED: MODE_UNSPECIFIED means it's in regular upgrade mode.
      KCP_MINOR_UPGRADE_ROLLBACK_SAFE_MODE:
        KCP_MINOR_UPGRADE_ROLLBACK_SAFE_MODE means it's in rollback-safe mode
        after a KCP minor version step-one upgrade.
    """
    MODE_UNSPECIFIED = 0
    KCP_MINOR_UPGRADE_ROLLBACK_SAFE_MODE = 1

  controlPlaneUpgradeRollbackEndTime = _messages.StringField(1)
  mode = _messages.EnumField('ModeValueValuesEnum', 2)
  previousVersion = _messages.StringField(3)


class RollingSettings(_messages.Message):
  r"""Settings for rolling update.

  Fields:
    maxSurgePercentage: Percentage of the maximum number of nodes that can be
      created beyond the current size of the node pool during the upgrade
      process. The range of this field should be [0, 100].
    maxUnavailablePercentage: Percentage of the maximum number of nodes that
      can be unavailable during during the upgrade process.
  """

  maxSurgePercentage = _messages.IntegerField(1, variant=_messages.Variant.INT32)
  maxUnavailablePercentage = _messages.IntegerField(2, variant=_messages.Variant.INT32)


class RotationConfig(_messages.Message):
  r"""RotationConfig is config for secret manager auto rotation.

  Fields:
    enabled: Whether the rotation is enabled.
    rotationInterval: The interval between two consecutive rotations. Default
      rotation interval is 2 minutes.
  """

  enabled = _messages.BooleanField(1)
  rotationInterval = _messages.StringField(2)


class RunnerPoolConfig(_messages.Message):
  r"""RunnerPoolConfig contains the configuration for the runner pool.

  Fields:
    attestation: Attestation config for the runner pool.
    controlNodePool: The name of the node pool that the runner pool is linked
      to.
  """

  attestation = _messages.MessageField('AttestationConfig', 1)
  controlNodePool = _messages.StringField(2)


class RunnerPoolControl(_messages.Message):
  r"""RunnerPoolControl contains the configuration for the control node of
  runner pool.

  Enums:
    ModeValueValuesEnum: The mode of the runner pool control.

  Fields:
    mode: The mode of the runner pool control.
  """

  class ModeValueValuesEnum(_messages.Enum):
    r"""The mode of the runner pool control.

    Values:
      MODE_UNSPECIFIED: Unspecified mode.
      DISABLED: Control node is not capable of managing runner pools.
      CONFIDENTIAL: Control node is capable of managing confidential runner
        pools.
    """
    MODE_UNSPECIFIED = 0
    DISABLED = 1
    CONFIDENTIAL = 2

  mode = _messages.EnumField('ModeValueValuesEnum', 1)


class RuntimeVulnerabilityInsightConfig(_messages.Message):
  r"""RuntimeVulnerabilityInsightConfig defines the flags needed to
  enable/disable RVI features for the cluster.

  Enums:
    ModeValueValuesEnum: Sets which mode to use for Runtime Vulnerability
      Insight features.

  Fields:
    mode: Sets which mode to use for Runtime Vulnerability Insight features.
  """

  class ModeValueValuesEnum(_messages.Enum):
    r"""Sets which mode to use for Runtime Vulnerability Insight features.

    Values:
      MODE_UNSPECIFIED: Default value not specified.
      DISABLED: Disables RuntimeVulnerabilityInsight on the cluster.
      PREMIUM_VULNERABILITY_SCAN: Applies premium vulnerability insights on
        the cluster.
    """
    MODE_UNSPECIFIED = 0
    DISABLED = 1
    PREMIUM_VULNERABILITY_SCAN = 2

  mode = _messages.EnumField('ModeValueValuesEnum', 1)


class SandboxConfig(_messages.Message):
  r"""SandboxConfig contains configurations of the sandbox to use for the
  node.

  Enums:
    TypeValueValuesEnum: Type of the sandbox to use for the node.

  Fields:
    sandboxType: Type of the sandbox to use for the node (e.g. 'gvisor')
    type: Type of the sandbox to use for the node.
  """

  class TypeValueValuesEnum(_messages.Enum):
    r"""Type of the sandbox to use for the node.

    Values:
      UNSPECIFIED: Default value. This should not be used.
      GVISOR: Run sandbox using gvisor.
    """
    UNSPECIFIED = 0
    GVISOR = 1

  sandboxType = _messages.StringField(1)
  type = _messages.EnumField('TypeValueValuesEnum', 2)


class ScheduleUpgradeConfig(_messages.Message):
  r"""ScheduleUpgradeConfig defines the settings needed to enable/disable
  scheduled upgrades for the cluster.

  Fields:
    enabled: Whether or not the schedule upgrade is enabled.
  """

  enabled = _messages.BooleanField(1)


class SecondaryBootDisk(_messages.Message):
  r"""SecondaryBootDisk represents a persistent disk attached to a node with
  special configurations based on its mode.

  Enums:
    ModeValueValuesEnum: Disk mode (container image cache, etc.)

  Fields:
    diskImage: Fully-qualified resource ID for an existing disk image.
    mode: Disk mode (container image cache, etc.)
  """

  class ModeValueValuesEnum(_messages.Enum):
    r"""Disk mode (container image cache, etc.)

    Values:
      MODE_UNSPECIFIED: MODE_UNSPECIFIED is when mode is not set.
      CONTAINER_IMAGE_CACHE: CONTAINER_IMAGE_CACHE is for using the secondary
        boot disk as a container image cache.
    """
    MODE_UNSPECIFIED = 0
    CONTAINER_IMAGE_CACHE = 1

  diskImage = _messages.StringField(1)
  mode = _messages.EnumField('ModeValueValuesEnum', 2)


class SecondaryBootDiskUpdateStrategy(_messages.Message):
  r"""SecondaryBootDiskUpdateStrategy is a placeholder which will be extended
  in the future to define different options for updating secondary boot disks.
  """



class SecretManagerConfig(_messages.Message):
  r"""SecretManagerConfig is config for secret manager enablement.

  Fields:
    enabled: Enable/Disable Secret Manager Config.
    rotationConfig: Rotation config for secret manager.
  """

  enabled = _messages.BooleanField(1)
  rotationConfig = _messages.MessageField('RotationConfig', 2)


class SecretSyncConfig(_messages.Message):
  r"""Configuration for sync Secret Manager secrets as k8s secrets.

  Fields:
    enabled: Enable/Disable Secret Sync Config.
    rotationConfig: Rotation config for secret manager.
  """

  enabled = _messages.BooleanField(1)
  rotationConfig = _messages.MessageField('SyncRotationConfig', 2)


class SecurityPostureConfig(_messages.Message):
  r"""SecurityPostureConfig defines the flags needed to enable/disable
  features for the Security Posture API.

  Enums:
    ModeValueValuesEnum: Sets which mode to use for Security Posture features.
    VulnerabilityModeValueValuesEnum: Sets which mode to use for vulnerability
      scanning.

  Fields:
    mode: Sets which mode to use for Security Posture features.
    vulnerabilityMode: Sets which mode to use for vulnerability scanning.
  """

  class ModeValueValuesEnum(_messages.Enum):
    r"""Sets which mode to use for Security Posture features.

    Values:
      MODE_UNSPECIFIED: Default value not specified.
      DISABLED: Disables Security Posture features on the cluster.
      BASIC: Applies Security Posture features on the cluster.
      ENTERPRISE: Applies the Security Posture off cluster Enterprise level
        features.
    """
    MODE_UNSPECIFIED = 0
    DISABLED = 1
    BASIC = 2
    ENTERPRISE = 3

  class VulnerabilityModeValueValuesEnum(_messages.Enum):
    r"""Sets which mode to use for vulnerability scanning.

    Values:
      VULNERABILITY_MODE_UNSPECIFIED: Default value not specified.
      VULNERABILITY_DISABLED: Disables vulnerability scanning on the cluster.
      VULNERABILITY_BASIC: Applies basic vulnerability scanning on the
        cluster.
      VULNERABILITY_ENTERPRISE: Applies the Security Posture's vulnerability
        on cluster Enterprise level features.
    """
    VULNERABILITY_MODE_UNSPECIFIED = 0
    VULNERABILITY_DISABLED = 1
    VULNERABILITY_BASIC = 2
    VULNERABILITY_ENTERPRISE = 3

  mode = _messages.EnumField('ModeValueValuesEnum', 1)
  vulnerabilityMode = _messages.EnumField('VulnerabilityModeValueValuesEnum', 2)


class SecurityProfile(_messages.Message):
  r"""User selected security profile

  Fields:
    disableRuntimeRules: Don't apply runtime rules. When set to true, no
      objects/deployments will be installed in the cluster to enforce runtime
      rules. This is useful to work with config-as-code systems
    name: Name with version of selected security profile A security profile
      name follows kebob-case (a-zA-Z*) and a version is like MAJOR.MINOR-
      suffix suffix is ([a-zA-Z0-9\-_\.]+) e.g. default-1.0-gke.0
  """

  disableRuntimeRules = _messages.BooleanField(1)
  name = _messages.StringField(2)


class ServerConfig(_messages.Message):
  r"""Kubernetes Engine service configuration.

  Messages:
    WindowsVersionMapsValue: Maps of Kubernetes version and supported Windows
      server versions.

  Fields:
    channels: List of release channel configurations.
    defaultClusterVersion: Version of Kubernetes the service deploys by
      default.
    defaultImageType: Default image type.
    validImageTypes: List of valid image types.
    validMasterVersions: List of valid master versions, in descending order.
    validNodeVersions: List of valid node upgrade target versions, in
      descending order.
    windowsVersionMaps: Maps of Kubernetes version and supported Windows
      server versions.
  """

  @encoding.MapUnrecognizedFields('additionalProperties')
  class WindowsVersionMapsValue(_messages.Message):
    r"""Maps of Kubernetes version and supported Windows server versions.

    Messages:
      AdditionalProperty: An additional property for a WindowsVersionMapsValue
        object.

    Fields:
      additionalProperties: Additional properties of type
        WindowsVersionMapsValue
    """

    class AdditionalProperty(_messages.Message):
      r"""An additional property for a WindowsVersionMapsValue object.

      Fields:
        key: Name of the additional property.
        value: A WindowsVersions attribute.
      """

      key = _messages.StringField(1)
      value = _messages.MessageField('WindowsVersions', 2)

    additionalProperties = _messages.MessageField('AdditionalProperty', 1, repeated=True)

  channels = _messages.MessageField('ReleaseChannelConfig', 1, repeated=True)
  defaultClusterVersion = _messages.StringField(2)
  defaultImageType = _messages.StringField(3)
  validImageTypes = _messages.StringField(4, repeated=True)
  validMasterVersions = _messages.StringField(5, repeated=True)
  validNodeVersions = _messages.StringField(6, repeated=True)
  windowsVersionMaps = _messages.MessageField('WindowsVersionMapsValue', 7)


class ServiceExternalIPsConfig(_messages.Message):
  r"""Config to block services with externalIPs field.

  Fields:
    enabled: Whether Services with ExternalIPs field are allowed or not.
  """

  enabled = _messages.BooleanField(1)


class SetAddonsConfigRequest(_messages.Message):
  r"""SetAddonsRequest sets the addons associated with the cluster.

  Fields:
    addonsConfig: The desired configurations for the various addons available
      to run in the cluster.
    clusterId: Deprecated. The name of the cluster to upgrade. This field has
      been deprecated and replaced by the name field.
    name: The name (project, location, cluster) of the cluster to set addons.
      Specified in the format `projects/*/locations/*/clusters/*`.
    projectId: Deprecated. The Google Developers Console [project ID or
      project number](https://cloud.google.com/resource-manager/docs/creating-
      managing-projects). This field has been deprecated and replaced by the
      name field.
    zone: Deprecated. The name of the Google Compute Engine
      [zone](https://cloud.google.com/compute/docs/zones#available) in which
      the cluster resides. This field has been deprecated and replaced by the
      name field.
  """

  addonsConfig = _messages.MessageField('AddonsConfig', 1)
  clusterId = _messages.StringField(2)
  name = _messages.StringField(3)
  projectId = _messages.StringField(4)
  zone = _messages.StringField(5)


class SetLabelsRequest(_messages.Message):
  r"""SetLabelsRequest sets the Google Cloud Platform labels on a Google
  Container Engine cluster, which will in turn set them for Google Compute
  Engine resources used by that cluster

  Messages:
    ResourceLabelsValue: The labels to set for that cluster.

  Fields:
    clusterId: Deprecated. The name of the cluster. This field has been
      deprecated and replaced by the name field.
    labelFingerprint: The fingerprint of the previous set of labels for this
      resource, used to detect conflicts. The fingerprint is initially
      generated by Kubernetes Engine and changes after every request to modify
      or update labels. You must always provide an up-to-date fingerprint hash
      when updating or changing labels. Make a get() request to the resource
      to get the latest fingerprint.
    name: The name (project, location, cluster name) of the cluster to set
      labels. Specified in the format `projects/*/locations/*/clusters/*`.
    projectId: Deprecated. The Google Developers Console [project ID or
      project number](https://cloud.google.com/resource-manager/docs/creating-
      managing-projects). This field has been deprecated and replaced by the
      name field.
    resourceLabels: The labels to set for that cluster.
    zone: Deprecated. The name of the Google Compute Engine
      [zone](https://cloud.google.com/compute/docs/zones#available) in which
      the cluster resides. This field has been deprecated and replaced by the
      name field.
  """

  @encoding.MapUnrecognizedFields('additionalProperties')
  class ResourceLabelsValue(_messages.Message):
    r"""The labels to set for that cluster.

    Messages:
      AdditionalProperty: An additional property for a ResourceLabelsValue
        object.

    Fields:
      additionalProperties: Additional properties of type ResourceLabelsValue
    """

    class AdditionalProperty(_messages.Message):
      r"""An additional property for a ResourceLabelsValue object.

      Fields:
        key: Name of the additional property.
        value: A string attribute.
      """

      key = _messages.StringField(1)
      value = _messages.StringField(2)

    additionalProperties = _messages.MessageField('AdditionalProperty', 1, repeated=True)

  clusterId = _messages.StringField(1)
  labelFingerprint = _messages.StringField(2)
  name = _messages.StringField(3)
  projectId = _messages.StringField(4)
  resourceLabels = _messages.MessageField('ResourceLabelsValue', 5)
  zone = _messages.StringField(6)


class SetLegacyAbacRequest(_messages.Message):
  r"""SetLegacyAbacRequest enables or disables the ABAC authorization
  mechanism for a cluster.

  Fields:
    clusterId: Deprecated. The name of the cluster to update. This field has
      been deprecated and replaced by the name field.
    enabled: Whether ABAC authorization will be enabled in the cluster.
    name: The name (project, location, cluster name) of the cluster to set
      legacy abac. Specified in the format
      `projects/*/locations/*/clusters/*`.
    projectId: Deprecated. The Google Developers Console [project ID or
      project number](https://cloud.google.com/resource-manager/docs/creating-
      managing-projects). This field has been deprecated and replaced by the
      name field.
    zone: Deprecated. The name of the Google Compute Engine
      [zone](https://cloud.google.com/compute/docs/zones#available) in which
      the cluster resides. This field has been deprecated and replaced by the
      name field.
  """

  clusterId = _messages.StringField(1)
  enabled = _messages.BooleanField(2)
  name = _messages.StringField(3)
  projectId = _messages.StringField(4)
  zone = _messages.StringField(5)


class SetLocationsRequest(_messages.Message):
  r"""SetLocationsRequest sets the locations of the cluster.

  Fields:
    clusterId: Deprecated. The name of the cluster to upgrade. This field has
      been deprecated and replaced by the name field.
    locations: The desired list of Google Compute Engine
      [zones](https://cloud.google.com/compute/docs/zones#available) in which
      the cluster's nodes should be located. Changing the locations a cluster
      is in will result in nodes being either created or removed from the
      cluster, depending on whether locations are being added or removed. This
      list must always include the cluster's primary zone.
    name: The name (project, location, cluster) of the cluster to set
      locations. Specified in the format `projects/*/locations/*/clusters/*`.
    projectId: Deprecated. The Google Developers Console [project ID or
      project number](https://cloud.google.com/resource-manager/docs/creating-
      managing-projects). This field has been deprecated and replaced by the
      name field.
    zone: Deprecated. The name of the Google Compute Engine
      [zone](https://cloud.google.com/compute/docs/zones#available) in which
      the cluster resides. This field has been deprecated and replaced by the
      name field.
  """

  clusterId = _messages.StringField(1)
  locations = _messages.StringField(2, repeated=True)
  name = _messages.StringField(3)
  projectId = _messages.StringField(4)
  zone = _messages.StringField(5)


class SetLoggingServiceRequest(_messages.Message):
  r"""SetLoggingServiceRequest sets the logging service of a cluster.

  Fields:
    clusterId: Deprecated. The name of the cluster to upgrade. This field has
      been deprecated and replaced by the name field.
    loggingService: The logging service the cluster should use to write logs.
      Currently available options: * `logging.googleapis.com/kubernetes` - The
      Cloud Logging service with a Kubernetes-native resource model *
      `logging.googleapis.com` - The legacy Cloud Logging service (no longer
      available as of GKE 1.15). * `none` - no logs will be exported from the
      cluster. If left as an empty string,`logging.googleapis.com/kubernetes`
      will be used for GKE 1.14+ or `logging.googleapis.com` for earlier
      versions.
    name: The name (project, location, cluster) of the cluster to set logging.
      Specified in the format `projects/*/locations/*/clusters/*`.
    projectId: Deprecated. The Google Developers Console [project ID or
      project number](https://cloud.google.com/resource-manager/docs/creating-
      managing-projects). This field has been deprecated and replaced by the
      name field.
    zone: Deprecated. The name of the Google Compute Engine
      [zone](https://cloud.google.com/compute/docs/zones#available) in which
      the cluster resides. This field has been deprecated and replaced by the
      name field.
  """

  clusterId = _messages.StringField(1)
  loggingService = _messages.StringField(2)
  name = _messages.StringField(3)
  projectId = _messages.StringField(4)
  zone = _messages.StringField(5)


class SetMaintenancePolicyRequest(_messages.Message):
  r"""SetMaintenancePolicyRequest sets the maintenance policy for a cluster.

  Fields:
    clusterId: The name of the cluster to update.
    maintenancePolicy: The maintenance policy to be set for the cluster. An
      empty field clears the existing maintenance policy.
    name: The name (project, location, cluster name) of the cluster to set
      maintenance policy. Specified in the format
      `projects/*/locations/*/clusters/*`.
    projectId: The Google Developers Console [project ID or project
      number](https://cloud.google.com/resource-manager/docs/creating-
      managing-projects).
    zone: The name of the Google Compute Engine
      [zone](https://cloud.google.com/compute/docs/zones#available) in which
      the cluster resides.
  """

  clusterId = _messages.StringField(1)
  maintenancePolicy = _messages.MessageField('MaintenancePolicy', 2)
  name = _messages.StringField(3)
  projectId = _messages.StringField(4)
  zone = _messages.StringField(5)


class SetMasterAuthRequest(_messages.Message):
  r"""SetMasterAuthRequest updates the admin password of a cluster.

  Enums:
    ActionValueValuesEnum: The exact form of action to be taken on the master
      auth.

  Fields:
    action: The exact form of action to be taken on the master auth.
    clusterId: Deprecated. The name of the cluster to upgrade. This field has
      been deprecated and replaced by the name field.
    name: The name (project, location, cluster) of the cluster to set auth.
      Specified in the format `projects/*/locations/*/clusters/*`.
    projectId: Deprecated. The Google Developers Console [project ID or
      project number](https://cloud.google.com/resource-manager/docs/creating-
      managing-projects). This field has been deprecated and replaced by the
      name field.
    update: A description of the update.
    zone: Deprecated. The name of the Google Compute Engine
      [zone](https://cloud.google.com/compute/docs/zones#available) in which
      the cluster resides. This field has been deprecated and replaced by the
      name field.
  """

  class ActionValueValuesEnum(_messages.Enum):
    r"""The exact form of action to be taken on the master auth.

    Values:
      UNKNOWN: Operation is unknown and will error out.
      SET_PASSWORD: Set the password to a user generated value.
      GENERATE_PASSWORD: Generate a new password and set it to that.
      SET_USERNAME: Set the username. If an empty username is provided, basic
        authentication is disabled for the cluster. If a non-empty username is
        provided, basic authentication is enabled, with either a provided
        password or a generated one.
    """
    UNKNOWN = 0
    SET_PASSWORD = 1
    GENERATE_PASSWORD = 2
    SET_USERNAME = 3

  action = _messages.EnumField('ActionValueValuesEnum', 1)
  clusterId = _messages.StringField(2)
  name = _messages.StringField(3)
  projectId = _messages.StringField(4)
  update = _messages.MessageField('MasterAuth', 5)
  zone = _messages.StringField(6)


class SetMonitoringServiceRequest(_messages.Message):
  r"""SetMonitoringServiceRequest sets the monitoring service of a cluster.

  Fields:
    clusterId: Deprecated. The name of the cluster to upgrade. This field has
      been deprecated and replaced by the name field.
    monitoringService: The monitoring service the cluster should use to write
      metrics. Currently available options: *
      `monitoring.googleapis.com/kubernetes` - The Cloud Monitoring service
      with a Kubernetes-native resource model * `monitoring.googleapis.com` -
      The legacy Cloud Monitoring service (no longer available as of GKE
      1.15). * `none` - No metrics will be exported from the cluster. If left
      as an empty string,`monitoring.googleapis.com/kubernetes` will be used
      for GKE 1.14+ or `monitoring.googleapis.com` for earlier versions.
    name: The name (project, location, cluster) of the cluster to set
      monitoring. Specified in the format `projects/*/locations/*/clusters/*`.
    projectId: Deprecated. The Google Developers Console [project ID or
      project number](https://cloud.google.com/resource-manager/docs/creating-
      managing-projects). This field has been deprecated and replaced by the
      name field.
    zone: Deprecated. The name of the Google Compute Engine
      [zone](https://cloud.google.com/compute/docs/zones#available) in which
      the cluster resides. This field has been deprecated and replaced by the
      name field.
  """

  clusterId = _messages.StringField(1)
  monitoringService = _messages.StringField(2)
  name = _messages.StringField(3)
  projectId = _messages.StringField(4)
  zone = _messages.StringField(5)


class SetNetworkPolicyRequest(_messages.Message):
  r"""SetNetworkPolicyRequest enables/disables network policy for a cluster.

  Fields:
    clusterId: Deprecated. The name of the cluster. This field has been
      deprecated and replaced by the name field.
    name: The name (project, location, cluster name) of the cluster to set
      networking policy. Specified in the format
      `projects/*/locations/*/clusters/*`.
    networkPolicy: Configuration options for the NetworkPolicy feature.
    projectId: Deprecated. The Google Developers Console [project ID or
      project number](https://cloud.google.com/resource-manager/docs/creating-
      managing-projects). This field has been deprecated and replaced by the
      name field.
    zone: Deprecated. The name of the Google Compute Engine
      [zone](https://cloud.google.com/compute/docs/zones#available) in which
      the cluster resides. This field has been deprecated and replaced by the
      name field.
  """

  clusterId = _messages.StringField(1)
  name = _messages.StringField(2)
  networkPolicy = _messages.MessageField('NetworkPolicy', 3)
  projectId = _messages.StringField(4)
  zone = _messages.StringField(5)


class SetNodePoolAutoscalingRequest(_messages.Message):
  r"""SetNodePoolAutoscalingRequest sets the autoscaler settings of a node
  pool.

  Fields:
    autoscaling: Autoscaling configuration for the node pool.
    clusterId: Deprecated. The name of the cluster to upgrade. This field has
      been deprecated and replaced by the name field.
    name: The name (project, location, cluster, node pool) of the node pool to
      set autoscaler settings. Specified in the format
      `projects/*/locations/*/clusters/*/nodePools/*`.
    nodePoolId: Deprecated. The name of the node pool to upgrade. This field
      has been deprecated and replaced by the name field.
    projectId: Deprecated. The Google Developers Console [project ID or
      project number](https://cloud.google.com/resource-manager/docs/creating-
      managing-projects). This field has been deprecated and replaced by the
      name field.
    zone: Deprecated. The name of the Google Compute Engine
      [zone](https://cloud.google.com/compute/docs/zones#available) in which
      the cluster resides. This field has been deprecated and replaced by the
      name field.
  """

  autoscaling = _messages.MessageField('NodePoolAutoscaling', 1)
  clusterId = _messages.StringField(2)
  name = _messages.StringField(3)
  nodePoolId = _messages.StringField(4)
  projectId = _messages.StringField(5)
  zone = _messages.StringField(6)


class SetNodePoolManagementRequest(_messages.Message):
  r"""SetNodePoolManagementRequest sets the node management properties of a
  node pool.

  Fields:
    clusterId: Deprecated. The name of the cluster to update. This field has
      been deprecated and replaced by the name field.
    management: NodeManagement configuration for the node pool.
    name: The name (project, location, cluster, node pool id) of the node pool
      to set management properties. Specified in the format
      `projects/*/locations/*/clusters/*/nodePools/*`.
    nodePoolId: Deprecated. The name of the node pool to update. This field
      has been deprecated and replaced by the name field.
    projectId: Deprecated. The Google Developers Console [project ID or
      project number](https://cloud.google.com/resource-manager/docs/creating-
      managing-projects). This field has been deprecated and replaced by the
      name field.
    zone: Deprecated. The name of the Google Compute Engine
      [zone](https://cloud.google.com/compute/docs/zones#available) in which
      the cluster resides. This field has been deprecated and replaced by the
      name field.
  """

  clusterId = _messages.StringField(1)
  management = _messages.MessageField('NodeManagement', 2)
  name = _messages.StringField(3)
  nodePoolId = _messages.StringField(4)
  projectId = _messages.StringField(5)
  zone = _messages.StringField(6)


class SetNodePoolSizeRequest(_messages.Message):
  r"""SetNodePoolSizeRequest sets the size of a node pool.

  Fields:
    clusterId: Deprecated. The name of the cluster to update. This field has
      been deprecated and replaced by the name field.
    name: The name (project, location, cluster, node pool id) of the node pool
      to set size. Specified in the format
      `projects/*/locations/*/clusters/*/nodePools/*`.
    nodeCount: The desired node count for the pool.
    nodePoolId: Deprecated. The name of the node pool to update. This field
      has been deprecated and replaced by the name field.
    projectId: Deprecated. The Google Developers Console [project ID or
      project number](https://cloud.google.com/resource-manager/docs/creating-
      managing-projects).
    zone: Deprecated. The name of the Google Compute Engine
      [zone](https://cloud.google.com/compute/docs/zones#available) in which
      the cluster resides. This field has been deprecated and replaced by the
      name field.
  """

  clusterId = _messages.StringField(1)
  name = _messages.StringField(2)
  nodeCount = _messages.IntegerField(3, variant=_messages.Variant.INT32)
  nodePoolId = _messages.StringField(4)
  projectId = _messages.StringField(5)
  zone = _messages.StringField(6)


class ShieldedInstanceConfig(_messages.Message):
  r"""A set of Shielded Instance options.

  Fields:
    enableIntegrityMonitoring: Defines whether the instance has integrity
      monitoring enabled.
    enableSecureBoot: Defines whether the instance has Secure Boot enabled.
  """

  enableIntegrityMonitoring = _messages.BooleanField(1)
  enableSecureBoot = _messages.BooleanField(2)


class ShieldedNodes(_messages.Message):
  r"""Configuration of Shielded Nodes feature.

  Fields:
    enabled: Whether Shielded Nodes features are enabled on all nodes in this
      cluster.
  """

  enabled = _messages.BooleanField(1)


class SliceControllerConfig(_messages.Message):
  r"""Configuration for the Slice Controller.

  Fields:
    enabled: Whether the Slice Controller is enabled for this cluster.
  """

  enabled = _messages.BooleanField(1)


class SoleTenantConfig(_messages.Message):
  r"""SoleTenantConfig contains the NodeAffinities to specify what shared sole
  tenant node groups should back the node pool.

  Fields:
    minNodeCpus: Optional. The minimum number of virtual CPUs this instance
      will consume when running on a sole-tenant node. This field can only be
      set if the node pool is created in a shared sole-tenant node group.
    nodeAffinities: NodeAffinities used to match to a shared sole tenant node
      group.
  """

  minNodeCpus = _messages.IntegerField(1, variant=_messages.Variant.INT32)
  nodeAffinities = _messages.MessageField('NodeAffinity', 2, repeated=True)


class StableFleetConfig(_messages.Message):
  r"""StableFleetConfig contains configurations of stable fleet for the node
  or cluster.

  Enums:
    MaintenanceIntervalValueValuesEnum: Specifies the frequency of planned
      maintenance events.

  Fields:
    maintenanceInterval: Specifies the frequency of planned maintenance
      events.
  """

  class MaintenanceIntervalValueValuesEnum(_messages.Enum):
    r"""Specifies the frequency of planned maintenance events.

    Values:
      MAINTENANCE_INTERVAL_UNSPECIFIED: The maintenance interval is not
        explicitly specified
      AS_NEEDED: Nodes are eligible to receive infrastructure and hypervisor
        updates as they become available. This may result in more maintenance
        operations (live migrations or terminations) for the node than the
        PERIODIC option.
      PERIODIC: Nodes receive infrastructure and hypervisor updates on a
        periodic basis, minimizing the number of maintenance operations (live
        migrations or terminations) on an individual VM. This may mean
        underlying VMs will take longer to receive an update than if it was
        configured for AS_NEEDED. Security updates will still be applied as
        soon as they are available.
    """
    MAINTENANCE_INTERVAL_UNSPECIFIED = 0
    AS_NEEDED = 1
    PERIODIC = 2

  maintenanceInterval = _messages.EnumField('MaintenanceIntervalValueValuesEnum', 1)


class StandardQueryParameters(_messages.Message):
  r"""Query parameters accepted by all methods.

  Enums:
    FXgafvValueValuesEnum: V1 error format.
    AltValueValuesEnum: Data format for response.

  Fields:
    f__xgafv: V1 error format.
    access_token: OAuth access token.
    alt: Data format for response.
    callback: JSONP
    fields: Selector specifying which fields to include in a partial response.
    key: API key. Your API key identifies your project and provides you with
      API access, quota, and reports. Required unless you provide an OAuth 2.0
      token.
    oauth_token: OAuth 2.0 token for the current user.
    prettyPrint: Returns response with indentations and line breaks.
    quotaUser: Available to use for quota purposes for server-side
      applications. Can be any arbitrary string assigned to a user, but should
      not exceed 40 characters.
    trace: A tracing token of the form "token:<tokenid>" to include in api
      requests.
    uploadType: Legacy upload protocol for media (e.g. "media", "multipart").
    upload_protocol: Upload protocol for media (e.g. "raw", "multipart").
  """

  class AltValueValuesEnum(_messages.Enum):
    r"""Data format for response.

    Values:
      json: Responses with Content-Type of application/json
      media: Media download with context-dependent Content-Type
      proto: Responses with Content-Type of application/x-protobuf
    """
    json = 0
    media = 1
    proto = 2

  class FXgafvValueValuesEnum(_messages.Enum):
    r"""V1 error format.

    Values:
      _1: v1 error format
      _2: v2 error format
    """
    _1 = 0
    _2 = 1

  f__xgafv = _messages.EnumField('FXgafvValueValuesEnum', 1)
  access_token = _messages.StringField(2)
  alt = _messages.EnumField('AltValueValuesEnum', 3, default='json')
  callback = _messages.StringField(4)
  fields = _messages.StringField(5)
  key = _messages.StringField(6)
  oauth_token = _messages.StringField(7)
  prettyPrint = _messages.BooleanField(8, default=True)
  quotaUser = _messages.StringField(9)
  trace = _messages.StringField(10)
  uploadType = _messages.StringField(11)
  upload_protocol = _messages.StringField(12)


class StandardRolloutPolicy(_messages.Message):
  r"""Standard rollout policy is the default policy for blue-green.

  Fields:
    batchNodeCount: Number of blue nodes to drain in a batch.
    batchPercentage: Percentage of the blue pool nodes to drain in a batch.
      The range of this field should be (0.0, 1.0].
    batchSoakDuration: Soak time after each batch gets drained. Default to
      zero.
  """

  batchNodeCount = _messages.IntegerField(1, variant=_messages.Variant.INT32)
  batchPercentage = _messages.FloatField(2, variant=_messages.Variant.FLOAT)
  batchSoakDuration = _messages.StringField(3)


class StartIPRotationRequest(_messages.Message):
  r"""StartIPRotationRequest creates a new IP for the cluster and then
  performs a node upgrade on each node pool to point to the new IP.

  Fields:
    clusterId: Deprecated. The name of the cluster. This field has been
      deprecated and replaced by the name field.
    name: The name (project, location, cluster name) of the cluster to start
      IP rotation. Specified in the format
      `projects/*/locations/*/clusters/*`.
    projectId: Deprecated. The Google Developers Console [project ID or
      project number](https://cloud.google.com/resource-manager/docs/creating-
      managing-projects). This field has been deprecated and replaced by the
      name field.
    rotateCredentials: Whether to rotate credentials during IP rotation.
    zone: Deprecated. The name of the Google Compute Engine
      [zone](https://cloud.google.com/compute/docs/zones#available) in which
      the cluster resides. This field has been deprecated and replaced by the
      name field.
  """

  clusterId = _messages.StringField(1)
  name = _messages.StringField(2)
  projectId = _messages.StringField(3)
  rotateCredentials = _messages.BooleanField(4)
  zone = _messages.StringField(5)


class StatefulHAConfig(_messages.Message):
  r"""Configuration for the Stateful HA add-on.

  Fields:
    enabled: Whether the Stateful HA add-on is enabled for this cluster.
  """

  enabled = _messages.BooleanField(1)


class Status(_messages.Message):
  r"""The `Status` type defines a logical error model that is suitable for
  different programming environments, including REST APIs and RPC APIs. It is
  used by [gRPC](https://github.com/grpc). Each `Status` message contains
  three pieces of data: error code, error message, and error details. You can
  find out more about this error model and how to work with it in the [API
  Design Guide](https://cloud.google.com/apis/design/errors).

  Messages:
    DetailsValueListEntry: A DetailsValueListEntry object.

  Fields:
    code: The status code, which should be an enum value of google.rpc.Code.
    details: A list of messages that carry the error details. There is a
      common set of message types for APIs to use.
    message: A developer-facing error message, which should be in English. Any
      user-facing error message should be localized and sent in the
      google.rpc.Status.details field, or localized by the client.
  """

  @encoding.MapUnrecognizedFields('additionalProperties')
  class DetailsValueListEntry(_messages.Message):
    r"""A DetailsValueListEntry object.

    Messages:
      AdditionalProperty: An additional property for a DetailsValueListEntry
        object.

    Fields:
      additionalProperties: Properties of the object. Contains field @type
        with type URL.
    """

    class AdditionalProperty(_messages.Message):
      r"""An additional property for a DetailsValueListEntry object.

      Fields:
        key: Name of the additional property.
        value: A extra_types.JsonValue attribute.
      """

      key = _messages.StringField(1)
      value = _messages.MessageField('extra_types.JsonValue', 2)

    additionalProperties = _messages.MessageField('AdditionalProperty', 1, repeated=True)

  code = _messages.IntegerField(1, variant=_messages.Variant.INT32)
  details = _messages.MessageField('DetailsValueListEntry', 2, repeated=True)
  message = _messages.StringField(3)


class StatusCondition(_messages.Message):
  r"""StatusCondition describes why a cluster or a node pool has a certain
  status (e.g., ERROR or DEGRADED).

  Enums:
    CanonicalCodeValueValuesEnum: Canonical code of the condition.
    CodeValueValuesEnum: Machine-friendly representation of the condition
      Deprecated. Use canonical_code instead.

  Fields:
    canonicalCode: Canonical code of the condition.
    code: Machine-friendly representation of the condition Deprecated. Use
      canonical_code instead.
    message: Human-friendly representation of the condition
  """

  class CanonicalCodeValueValuesEnum(_messages.Enum):
    r"""Canonical code of the condition.

    Values:
      OK: Not an error; returned on success. HTTP Mapping: 200 OK
      CANCELLED: The operation was cancelled, typically by the caller. HTTP
        Mapping: 499 Client Closed Request
      UNKNOWN: Unknown error. For example, this error may be returned when a
        `Status` value received from another address space belongs to an error
        space that is not known in this address space. Also errors raised by
        APIs that do not return enough error information may be converted to
        this error. HTTP Mapping: 500 Internal Server Error
      INVALID_ARGUMENT: The client specified an invalid argument. Note that
        this differs from `FAILED_PRECONDITION`. `INVALID_ARGUMENT` indicates
        arguments that are problematic regardless of the state of the system
        (e.g., a malformed file name). HTTP Mapping: 400 Bad Request
      DEADLINE_EXCEEDED: The deadline expired before the operation could
        complete. For operations that change the state of the system, this
        error may be returned even if the operation has completed
        successfully. For example, a successful response from a server could
        have been delayed long enough for the deadline to expire. HTTP
        Mapping: 504 Gateway Timeout
      NOT_FOUND: Some requested entity (e.g., file or directory) was not
        found. Note to server developers: if a request is denied for an entire
        class of users, such as gradual feature rollout or undocumented
        allowlist, `NOT_FOUND` may be used. If a request is denied for some
        users within a class of users, such as user-based access control,
        `PERMISSION_DENIED` must be used. HTTP Mapping: 404 Not Found
      ALREADY_EXISTS: The entity that a client attempted to create (e.g., file
        or directory) already exists. HTTP Mapping: 409 Conflict
      PERMISSION_DENIED: The caller does not have permission to execute the
        specified operation. `PERMISSION_DENIED` must not be used for
        rejections caused by exhausting some resource (use
        `RESOURCE_EXHAUSTED` instead for those errors). `PERMISSION_DENIED`
        must not be used if the caller can not be identified (use
        `UNAUTHENTICATED` instead for those errors). This error code does not
        imply the request is valid or the requested entity exists or satisfies
        other pre-conditions. HTTP Mapping: 403 Forbidden
      UNAUTHENTICATED: The request does not have valid authentication
        credentials for the operation. HTTP Mapping: 401 Unauthorized
      RESOURCE_EXHAUSTED: Some resource has been exhausted, perhaps a per-user
        quota, or perhaps the entire file system is out of space. HTTP
        Mapping: 429 Too Many Requests
      FAILED_PRECONDITION: The operation was rejected because the system is
        not in a state required for the operation's execution. For example,
        the directory to be deleted is non-empty, an rmdir operation is
        applied to a non-directory, etc. Service implementors can use the
        following guidelines to decide between `FAILED_PRECONDITION`,
        `ABORTED`, and `UNAVAILABLE`: (a) Use `UNAVAILABLE` if the client can
        retry just the failing call. (b) Use `ABORTED` if the client should
        retry at a higher level. For example, when a client-specified test-
        and-set fails, indicating the client should restart a read-modify-
        write sequence. (c) Use `FAILED_PRECONDITION` if the client should not
        retry until the system state has been explicitly fixed. For example,
        if an "rmdir" fails because the directory is non-empty,
        `FAILED_PRECONDITION` should be returned since the client should not
        retry unless the files are deleted from the directory. HTTP Mapping:
        400 Bad Request
      ABORTED: The operation was aborted, typically due to a concurrency issue
        such as a sequencer check failure or transaction abort. See the
        guidelines above for deciding between `FAILED_PRECONDITION`,
        `ABORTED`, and `UNAVAILABLE`. HTTP Mapping: 409 Conflict
      OUT_OF_RANGE: The operation was attempted past the valid range. E.g.,
        seeking or reading past end-of-file. Unlike `INVALID_ARGUMENT`, this
        error indicates a problem that may be fixed if the system state
        changes. For example, a 32-bit file system will generate
        `INVALID_ARGUMENT` if asked to read at an offset that is not in the
        range [0,2^32-1], but it will generate `OUT_OF_RANGE` if asked to read
        from an offset past the current file size. There is a fair bit of
        overlap between `FAILED_PRECONDITION` and `OUT_OF_RANGE`. We recommend
        using `OUT_OF_RANGE` (the more specific error) when it applies so that
        callers who are iterating through a space can easily look for an
        `OUT_OF_RANGE` error to detect when they are done. HTTP Mapping: 400
        Bad Request
      UNIMPLEMENTED: The operation is not implemented or is not
        supported/enabled in this service. HTTP Mapping: 501 Not Implemented
      INTERNAL: Internal errors. This means that some invariants expected by
        the underlying system have been broken. This error code is reserved
        for serious errors. HTTP Mapping: 500 Internal Server Error
      UNAVAILABLE: The service is currently unavailable. This is most likely a
        transient condition, which can be corrected by retrying with a
        backoff. Note that it is not always safe to retry non-idempotent
        operations. See the guidelines above for deciding between
        `FAILED_PRECONDITION`, `ABORTED`, and `UNAVAILABLE`. HTTP Mapping: 503
        Service Unavailable
      DATA_LOSS: Unrecoverable data loss or corruption. HTTP Mapping: 500
        Internal Server Error
    """
    OK = 0
    CANCELLED = 1
    UNKNOWN = 2
    INVALID_ARGUMENT = 3
    DEADLINE_EXCEEDED = 4
    NOT_FOUND = 5
    ALREADY_EXISTS = 6
    PERMISSION_DENIED = 7
    UNAUTHENTICATED = 8
    RESOURCE_EXHAUSTED = 9
    FAILED_PRECONDITION = 10
    ABORTED = 11
    OUT_OF_RANGE = 12
    UNIMPLEMENTED = 13
    INTERNAL = 14
    UNAVAILABLE = 15
    DATA_LOSS = 16

  class CodeValueValuesEnum(_messages.Enum):
    r"""Machine-friendly representation of the condition Deprecated. Use
    canonical_code instead.

    Values:
      UNKNOWN: UNKNOWN indicates a generic condition.
      GCE_STOCKOUT: GCE_STOCKOUT indicates that Google Compute Engine
        resources are temporarily unavailable.
      GKE_SERVICE_ACCOUNT_DELETED: GKE_SERVICE_ACCOUNT_DELETED indicates that
        the user deleted their robot service account.
      GCE_QUOTA_EXCEEDED: Google Compute Engine quota was exceeded.
      SET_BY_OPERATOR: Cluster state was manually changed by an SRE due to a
        system logic error.
      CLOUD_KMS_KEY_ERROR: Unable to perform an encrypt operation against the
        CloudKMS key used for etcd level encryption.
      CA_EXPIRING: Cluster CA is expiring soon.
      NODE_SERVICE_ACCOUNT_MISSING_PERMISSIONS: Node service account is
        missing permissions.
      CLOUD_KMS_KEY_DESTROYED: Cloud KMS key version used for etcd level
        encryption has been destroyed. This is a permanent error.
    """
    UNKNOWN = 0
    GCE_STOCKOUT = 1
    GKE_SERVICE_ACCOUNT_DELETED = 2
    GCE_QUOTA_EXCEEDED = 3
    SET_BY_OPERATOR = 4
    CLOUD_KMS_KEY_ERROR = 5
    CA_EXPIRING = 6
    NODE_SERVICE_ACCOUNT_MISSING_PERMISSIONS = 7
    CLOUD_KMS_KEY_DESTROYED = 8

  canonicalCode = _messages.EnumField('CanonicalCodeValueValuesEnum', 1)
  code = _messages.EnumField('CodeValueValuesEnum', 2)
  message = _messages.StringField(3)


class SwapConfig(_messages.Message):
  r"""Configuration for swap memory on a node pool.

  Fields:
    bootDiskProfile: Swap on the node's boot disk.
    dedicatedLocalSsdProfile: Provisions a new, separate local NVMe SSD
      exclusively for swap.
    enabled: Optional. Enables or disables swap for the node pool.
    encryptionConfig: Optional. If omitted, swap space is encrypted by
      default.
    ephemeralLocalSsdProfile: Swap on the local SSD shared with pod ephemeral
      storage.
  """

  bootDiskProfile = _messages.MessageField('BootDiskProfile', 1)
  dedicatedLocalSsdProfile = _messages.MessageField('DedicatedLocalSsdProfile', 2)
  enabled = _messages.BooleanField(3)
  encryptionConfig = _messages.MessageField('EncryptionConfig', 4)
  ephemeralLocalSsdProfile = _messages.MessageField('EphemeralLocalSsdProfile', 5)


class SyncRotationConfig(_messages.Message):
  r"""SyncRotationConfig is config for secret manager auto rotation.

  Fields:
    enabled: Whether the rotation is enabled.
    rotationInterval: The interval between two consecutive rotations. Default
      rotation interval is 2 minutes.
  """

  enabled = _messages.BooleanField(1)
  rotationInterval = _messages.StringField(2)


class TimeWindow(_messages.Message):
  r"""Represents an arbitrary window of time.

  Fields:
    endTime: The time that the window ends. The end time should take place
      after the start time.
    maintenanceExclusionOptions: MaintenanceExclusionOptions provides
      maintenance exclusion related options.
    startTime: The time that the window first starts.
  """

  endTime = _messages.StringField(1)
  maintenanceExclusionOptions = _messages.MessageField('MaintenanceExclusionOptions', 2)
  startTime = _messages.StringField(3)


class TopologyManager(_messages.Message):
  r"""TopologyManager defines the configuration options for Topology Manager
  feature. See https://kubernetes.io/docs/tasks/administer-cluster/topology-
  manager/

  Fields:
    policy: Configures the strategy for resource alignment. Allowed values
      are: * none: the default policy, and does not perform any topology
      alignment. * restricted: the topology manager stores the preferred NUMA
      node affinity for the container, and will reject the pod if the affinity
      if not preferred. * best-effort: the topology manager stores the
      preferred NUMA node affinity for the container. If the affinity is not
      preferred, the topology manager will admit the pod to the node anyway. *
      single-numa-node: the topology manager determines if the single NUMA
      node affinity is possible. If it is, Topology Manager will store this
      and the Hint Providers can then use this information when making the
      resource allocation decision. If, however, this is not possible then the
      Topology Manager will reject the pod from the node. This will result in
      a pod in a Terminated state with a pod admission failure. The default
      policy value is 'none' if unspecified. Details about each strategy can
      be found [here](https://kubernetes.io/docs/tasks/administer-
      cluster/topology-manager/#topology-manager-policies).
    scope: The Topology Manager aligns resources in following scopes: *
      container * pod The default scope is 'container' if unspecified. See
      https://kubernetes.io/docs/tasks/administer-cluster/topology-
      manager/#topology-manager-scopes
  """

  policy = _messages.StringField(1)
  scope = _messages.StringField(2)


class TpuConfig(_messages.Message):
  r"""Configuration for Cloud TPU. This message is deprecated due to the
  deprecation of 2VM TPU. The end of life date for 2VM TPU is 2025-04-25.

  Fields:
    enabled: Whether Cloud TPU integration is enabled or not.
    ipv4CidrBlock: IPv4 CIDR block reserved for Cloud TPU in the VPC.
    useServiceNetworking: Whether to use service networking for Cloud TPU or
      not.
  """

  enabled = _messages.BooleanField(1)
  ipv4CidrBlock = _messages.StringField(2)
  useServiceNetworking = _messages.BooleanField(3)


class UpdateClusterRequest(_messages.Message):
  r"""UpdateClusterRequest updates the settings of a cluster.

  Fields:
    clusterId: Deprecated. The name of the cluster to upgrade. This field has
      been deprecated and replaced by the name field.
    name: The name (project, location, cluster) of the cluster to update.
      Specified in the format `projects/*/locations/*/clusters/*`.
    projectId: Deprecated. The Google Developers Console [project ID or
      project number](https://cloud.google.com/resource-manager/docs/creating-
      managing-projects). This field has been deprecated and replaced by the
      name field.
    update: A description of the update.
    updatedCluster: The updated cluster object. This field must be empty if
      'update' is set.
    zone: Deprecated. The name of the Google Compute Engine
      [zone](https://cloud.google.com/compute/docs/zones#available) in which
      the cluster resides. This field has been deprecated and replaced by the
      name field.
  """

  clusterId = _messages.StringField(1)
  name = _messages.StringField(2)
  projectId = _messages.StringField(3)
  update = _messages.MessageField('ClusterUpdate', 4)
  updatedCluster = _messages.MessageField('Cluster', 5)
  zone = _messages.StringField(6)


class UpdateInfo(_messages.Message):
  r"""UpdateInfo contains resource (instance groups, etc), status and other
  intermediate information relevant to a node pool update.

  Fields:
    blueGreenInfo: Information of a blue-green upgrade.
  """

  blueGreenInfo = _messages.MessageField('BlueGreenInfo', 1)


class UpdateMasterRequest(_messages.Message):
  r"""UpdateMasterRequest updates the master of the cluster.

  Fields:
    clusterId: Deprecated. The name of the cluster to upgrade. This field has
      been deprecated and replaced by the name field.
    masterVersion: The Kubernetes version to change the master to. Users may
      specify either explicit versions offered by Kubernetes Engine or version
      aliases, which have the following behavior: - "latest": picks the
      highest valid Kubernetes version - "1.X": picks the highest valid
      patch+gke.N patch in the 1.X version - "1.X.Y": picks the highest valid
      gke.N patch in the 1.X.Y version - "1.X.Y-gke.N": picks an explicit
      Kubernetes version - "-": picks the default Kubernetes version
    name: The name (project, location, cluster) of the cluster to update.
      Specified in the format `projects/*/locations/*/clusters/*`.
    projectId: Deprecated. The Google Developers Console [project ID or
      project number](https://cloud.google.com/resource-manager/docs/creating-
      managing-projects).
    zone: Deprecated. The name of the Google Compute Engine
      [zone](https://cloud.google.com/compute/docs/zones#available) in which
      the cluster resides. This field has been deprecated and replaced by the
      name field.
  """

  clusterId = _messages.StringField(1)
  masterVersion = _messages.StringField(2)
  name = _messages.StringField(3)
  projectId = _messages.StringField(4)
  zone = _messages.StringField(5)


class UpdateNodePoolRequest(_messages.Message):
  r"""SetNodePoolVersionRequest updates the version of a node pool.

  Fields:
    accelerators: A list of hardware accelerators to be attached to each node.
      See https://cloud.google.com/compute/docs/gpus for more information
      about support for GPUs.
    bootDisk: The desired boot disk config for nodes in the node pool.
      Initiates an upgrade operation that migrates the nodes in the node pool
      to the specified boot disk config.
    clusterId: Deprecated. The name of the cluster to upgrade. This field has
      been deprecated and replaced by the name field.
    confidentialNodes: Confidential nodes config. All the nodes in the node
      pool will be Confidential VM once enabled.
    consolidationDelay: Consolidation delay defines duration after which the
      Cluster Autoscaler can scale down underutilized nodes. If not set, nodes
      are scaled down by default behavior, i.e. according to the chosen
      autoscaling profile.
    containerdConfig: The desired containerd config for nodes in the node
      pool. Initiates an upgrade operation that recreates the nodes with the
      new config.
    diskSizeGb: Optional. The desired disk size for nodes in the node pool.
      Initiates an upgrade operation that migrates the nodes in the node pool
      to the specified disk size.
    diskType: Optional. The desired disk type for nodes in the node pool.
      Initiates an upgrade operation that migrates the nodes in the node pool
      to the specified disk type.
    etag: The current etag of the node pool. If an etag is provided and does
      not match the current etag of the node pool, update will be blocked and
      an ABORTED error will be returned.
    fastSocket: Enable or disable NCCL fast socket for the node pool.
    flexStart: Flex Start flag for enabling Flex Start VM.
    gcfsConfig: GCFS config.
    gvnic: Enable or disable gvnic on the node pool.
    image: The desired name of the image name to use for this node. This is
      used to create clusters using a custom image.
    imageProject: The project containing the desired image to use for this
      node pool. This is used to create clusters using a custom image.
    imageType: The desired image type for the node pool. Please see
      https://cloud.google.com/kubernetes-engine/docs/concepts/node-images for
      available image types.
    kubeletConfig: Node kubelet configs.
    labels: The desired node labels to be applied to all nodes in the node
      pool. If this field is not present, the labels will not be changed.
      Otherwise, the existing node labels will be *replaced* with the provided
      labels.
    linuxNodeConfig: Parameters that can be configured on Linux nodes.
    locations: The desired list of Google Compute Engine
      [zones](https://cloud.google.com/compute/docs/zones#available) in which
      the node pool's nodes should be located. Changing the locations for a
      node pool will result in nodes being either created or removed from the
      node pool, depending on whether locations are being added or removed.
      Warning: It is recommended to update node pool locations in a standalone
      API call. Do not combine a location update with changes to other fields
      (such as `tags`, `labels`, `taints`, etc.) in the same request.
      Otherwise, the API performs a structural modification where changes to
      other fields will only apply to newly created nodes and will not be
      applied to existing nodes in the node pool. To ensure all nodes are
      updated consistently, use a separate API call for location changes.
    loggingConfig: Logging configuration.
    lustreConfig: Configuration for Lustre settings on the node pool.
    machineType: Optional. The desired machine type for nodes in the node
      pool. Initiates an upgrade operation that migrates the nodes in the node
      pool to the specified machine type.
    maxRunDuration: The maximum duration for the nodes to exist. If
      unspecified, the nodes can exist indefinitely.
    name: The name (project, location, cluster, node pool) of the node pool to
      update. Specified in the format
      `projects/*/locations/*/clusters/*/nodePools/*`.
    nodeDrainConfig: The desired node drain configuration for nodes in the
      node pool.
    nodeNetworkConfig: Node network config.
    nodePoolId: Deprecated. The name of the node pool to upgrade. This field
      has been deprecated and replaced by the name field.
    nodeVersion: The Kubernetes version to change the nodes to (typically an
      upgrade). Users may specify either explicit versions offered by
      Kubernetes Engine or version aliases, which have the following behavior:
      - "latest": picks the highest valid Kubernetes version - "1.X": picks
      the highest valid patch+gke.N patch in the 1.X version - "1.X.Y": picks
      the highest valid gke.N patch in the 1.X.Y version - "1.X.Y-gke.N":
      picks an explicit Kubernetes version - "-": picks the Kubernetes master
      version
    projectId: Deprecated. The Google Developers Console [project ID or
      project number](https://cloud.google.com/resource-manager/docs/creating-
      managing-projects). This field has been deprecated and replaced by the
      name field.
    queuedProvisioning: Specifies the configuration of queued provisioning.
    resourceLabels: The resource labels for the node pool to use to annotate
      any related Google Compute Engine resources.
    resourceManagerTags: Desired resource manager tag keys and values to be
      attached to the nodes for managing Compute Engine firewalls using
      Network Firewall Policies. Existing tags will be replaced with new
      values.
    storagePools: List of Storage Pools where boot disks are provisioned.
      Existing Storage Pools will be replaced with storage-pools.
    tags: The desired network tags to be applied to all nodes in the node
      pool. If this field is not present, the tags will not be changed.
      Otherwise, the existing network tags will be *replaced* with the
      provided tags.
    taints: The desired node taints to be applied to all nodes in the node
      pool. If this field is not present, the taints will not be changed.
      Otherwise, the existing node taints will be *replaced* with the provided
      taints.
    updatedNodePool: The updated node pool object. This field must be empty if
      any other node pool field is set (e.g. 'node_version', 'image_type',
      'locations', etc.)
    upgradeSettings: Upgrade settings control disruption and speed of the
      upgrade.
    windowsNodeConfig: Parameters that can be configured on Windows nodes.
    workloadMetadataConfig: The desired workload metadata config for the node
      pool.
    zone: Deprecated. The name of the Google Compute Engine
      [zone](https://cloud.google.com/compute/docs/zones#available) in which
      the cluster resides. This field has been deprecated and replaced by the
      name field.
  """

  accelerators = _messages.MessageField('AcceleratorConfig', 1, repeated=True)
  bootDisk = _messages.MessageField('BootDisk', 2)
  clusterId = _messages.StringField(3)
  confidentialNodes = _messages.MessageField('ConfidentialNodes', 4)
  consolidationDelay = _messages.StringField(5)
  containerdConfig = _messages.MessageField('ContainerdConfig', 6)
  diskSizeGb = _messages.IntegerField(7)
  diskType = _messages.StringField(8)
  etag = _messages.StringField(9)
  fastSocket = _messages.MessageField('FastSocket', 10)
  flexStart = _messages.BooleanField(11)
  gcfsConfig = _messages.MessageField('GcfsConfig', 12)
  gvnic = _messages.MessageField('VirtualNIC', 13)
  image = _messages.StringField(14)
  imageProject = _messages.StringField(15)
  imageType = _messages.StringField(16)
  kubeletConfig = _messages.MessageField('NodeKubeletConfig', 17)
  labels = _messages.MessageField('NodeLabels', 18)
  linuxNodeConfig = _messages.MessageField('LinuxNodeConfig', 19)
  locations = _messages.StringField(20, repeated=True)
  loggingConfig = _messages.MessageField('NodePoolLoggingConfig', 21)
  lustreConfig = _messages.MessageField('LustreConfig', 22)
  machineType = _messages.StringField(23)
  maxRunDuration = _messages.StringField(24)
  name = _messages.StringField(25)
  nodeDrainConfig = _messages.MessageField('NodeDrainConfig', 26)
  nodeNetworkConfig = _messages.MessageField('NodeNetworkConfig', 27)
  nodePoolId = _messages.StringField(28)
  nodeVersion = _messages.StringField(29)
  projectId = _messages.StringField(30)
  queuedProvisioning = _messages.MessageField('QueuedProvisioning', 31)
  resourceLabels = _messages.MessageField('ResourceLabels', 32)
  resourceManagerTags = _messages.MessageField('ResourceManagerTags', 33)
  storagePools = _messages.StringField(34, repeated=True)
  tags = _messages.MessageField('NetworkTags', 35)
  taints = _messages.MessageField('NodeTaints', 36)
  updatedNodePool = _messages.MessageField('NodePool', 37)
  upgradeSettings = _messages.MessageField('UpgradeSettings', 38)
  windowsNodeConfig = _messages.MessageField('WindowsNodeConfig', 39)
  workloadMetadataConfig = _messages.MessageField('WorkloadMetadataConfig', 40)
  zone = _messages.StringField(41)


class UpgradeDetails(_messages.Message):
  r"""UpgradeDetails contains detailed information of each individual upgrade
  operation.

  Enums:
    StartTypeValueValuesEnum: The start type of the upgrade.
    StateValueValuesEnum: Output only. The state of the upgrade.

  Fields:
    endTime: The end timestamp of the upgrade.
    initialEmulatedVersion: The emulated version before the upgrade.
    initialVersion: The version before the upgrade.
    startTime: The start timestamp of the upgrade.
    startType: The start type of the upgrade.
    state: Output only. The state of the upgrade.
    targetEmulatedVersion: The emulated version after the upgrade.
    targetVersion: The version after the upgrade.
  """

  class StartTypeValueValuesEnum(_messages.Enum):
    r"""The start type of the upgrade.

    Values:
      START_TYPE_UNSPECIFIED: Upgrade start type is unspecified.
      AUTOMATIC: Upgrade started automatically.
      MANUAL: Upgrade started manually.
    """
    START_TYPE_UNSPECIFIED = 0
    AUTOMATIC = 1
    MANUAL = 2

  class StateValueValuesEnum(_messages.Enum):
    r"""Output only. The state of the upgrade.

    Values:
      UNKNOWN: Upgrade state is unknown.
      FAILED: Upgrade has failed with an error.
      SUCCEEDED: Upgrade has succeeded.
      CANCELED: Upgrade has been canceled.
      RUNNING: Upgrade is running.
    """
    UNKNOWN = 0
    FAILED = 1
    SUCCEEDED = 2
    CANCELED = 3
    RUNNING = 4

  endTime = _messages.StringField(1)
  initialEmulatedVersion = _messages.StringField(2)
  initialVersion = _messages.StringField(3)
  startTime = _messages.StringField(4)
  startType = _messages.EnumField('StartTypeValueValuesEnum', 5)
  state = _messages.EnumField('StateValueValuesEnum', 6)
  targetEmulatedVersion = _messages.StringField(7)
  targetVersion = _messages.StringField(8)


class UpgradeSettings(_messages.Message):
  r"""These upgrade settings control the level of parallelism and the level of
  disruption caused by an upgrade. maxUnavailable controls the number of nodes
  that can be simultaneously unavailable. maxSurge controls the number of
  additional nodes that can be added to the node pool temporarily for the time
  of the upgrade to increase the number of available nodes. (maxUnavailable +
  maxSurge) determines the level of parallelism (how many nodes are being
  upgraded at the same time). Note: upgrades inevitably introduce some
  disruption since workloads need to be moved from old nodes to new, upgraded
  ones. Even if maxUnavailable=0, this holds true. (Disruption stays within
  the limits of PodDisruptionBudget, if it is configured.) For example, a
  5-node pool is created with maxSurge set to 2 and maxUnavailable set to 1.
  During an upgrade, GKE creates 2 upgraded nodes, then brings down up to 3
  existing nodes after the upgraded nodes are ready. GKE will only bring down
  1 node at a time. These upgrade settings configure the upgrade strategy for
  the node pool. Use strategy to switch between the strategies applied to the
  node pool. If the strategy is SURGE, use max_surge and max_unavailable to
  control the level of parallelism and the level of disruption caused by
  upgrade. 1. maxSurge controls the number of additional nodes that can be
  added to the node pool temporarily for the time of the upgrade to increase
  the number of available nodes. 2. maxUnavailable controls the number of
  nodes that can be simultaneously unavailable. 3. (maxUnavailable + maxSurge)
  determines the level of parallelism (how many nodes are being upgraded at
  the same time). If the strategy is BLUE_GREEN, use blue_green_settings to
  configure the blue-green upgrade related settings. 1.
  standard_rollout_policy is the default policy. The policy is used to control
  the way blue pool gets drained. The draining is executed in the batch mode.
  The batch size could be specified as either percentage of the node pool size
  or the number of nodes. batch_soak_duration is the soak time after each
  batch gets drained. 2. node_pool_soak_duration is the soak time after all
  blue nodes are drained. After this period, the blue pool nodes will be
  deleted.

  Enums:
    StrategyValueValuesEnum: Update strategy of the node pool.

  Fields:
    blueGreenSettings: Settings for blue-green upgrade strategy.
    maxSurge: The maximum number of nodes that can be created beyond the
      current size of the node pool during the upgrade process.
    maxUnavailable: The maximum number of nodes that can be simultaneously
      unavailable during the upgrade process. A node is considered available
      if its status is Ready.
    rollingSettings: Settings for rolling update strategy.
    strategy: Update strategy of the node pool.
  """

  class StrategyValueValuesEnum(_messages.Enum):
    r"""Update strategy of the node pool.

    Values:
      NODE_POOL_UPDATE_STRATEGY_UNSPECIFIED: Default value if unset. GKE
        internally defaults the update strategy to SURGE for unspecified
        strategies.
      ROLLING: ROLLING is the synonymous with SURGE. Deprecate this value and
        use SURGE instead.
      BLUE_GREEN: blue-green upgrade.
      SURGE: SURGE is the traditional way of upgrading a node pool. max_surge
        and max_unavailable determines the level of upgrade parallelism.
      QUEUED_PROVISIONING: QUEUED_PROVISIONING is the dedicated upgrade
        strategy for QueuedProvisioning nodepools scaled up only by enqueueing
        to the Dynamic Workload Scheduler (DWS). Deprecated; Use SHORT_LIVED
        instead.
      SHORT_LIVED: SHORT_LIVED is the dedicated upgrade strategy for
        QueuedProvisioning and flex start nodepools scaled up only by
        enqueueing to the Dynamic Workload Scheduler (DWS).
    """
    NODE_POOL_UPDATE_STRATEGY_UNSPECIFIED = 0
    ROLLING = 1
    BLUE_GREEN = 2
    SURGE = 3
    QUEUED_PROVISIONING = 4
    SHORT_LIVED = 5

  blueGreenSettings = _messages.MessageField('BlueGreenSettings', 1)
  maxSurge = _messages.IntegerField(2, variant=_messages.Variant.INT32)
  maxUnavailable = _messages.IntegerField(3, variant=_messages.Variant.INT32)
  rollingSettings = _messages.MessageField('RollingSettings', 4)
  strategy = _messages.EnumField('StrategyValueValuesEnum', 5)


class UsableSubnetwork(_messages.Message):
  r"""UsableSubnetwork resource returns the subnetwork name, its associated
  network and the primary CIDR range.

  Fields:
    ipCidrRange: The range of internal addresses that are owned by this
      subnetwork.
    network: Network Name.
    secondaryIpRanges: Secondary IP ranges.
    statusMessage: A human readable status message representing the reasons
      for cases where the caller cannot use the secondary ranges under the
      subnet. For example if the secondary_ip_ranges is empty due to a
      permission issue, an insufficient permission message will be given by
      status_message.
    subnetwork: Subnetwork Name.
  """

  ipCidrRange = _messages.StringField(1)
  network = _messages.StringField(2)
  secondaryIpRanges = _messages.MessageField('UsableSubnetworkSecondaryRange', 3, repeated=True)
  statusMessage = _messages.StringField(4)
  subnetwork = _messages.StringField(5)


class UsableSubnetworkSecondaryRange(_messages.Message):
  r"""Secondary IP range of a usable subnetwork.

  Enums:
    StatusValueValuesEnum: This field is to determine the status of the
      secondary range programmably.

  Fields:
    ipCidrRange: The range of IP addresses belonging to this subnetwork
      secondary range.
    rangeName: The name associated with this subnetwork secondary range, used
      when adding an alias IP range to a VM instance.
    status: This field is to determine the status of the secondary range
      programmably.
  """

  class StatusValueValuesEnum(_messages.Enum):
    r"""This field is to determine the status of the secondary range
    programmably.

    Values:
      UNKNOWN: UNKNOWN is the zero value of the Status enum. It's not a valid
        status.
      UNUSED: UNUSED denotes that this range is unclaimed by any cluster.
      IN_USE_SERVICE: IN_USE_SERVICE denotes that this range is claimed by a
        cluster for services. It cannot be used for other clusters.
      IN_USE_SHAREABLE_POD: IN_USE_SHAREABLE_POD denotes this range was
        created by the network admin and is currently claimed by a cluster for
        pods. It can only be used by other clusters as a pod range.
      IN_USE_MANAGED_POD: IN_USE_MANAGED_POD denotes this range was created by
        Google Kubernetes Engine and is claimed for pods. It cannot be used
        for other clusters.
    """
    UNKNOWN = 0
    UNUSED = 1
    IN_USE_SERVICE = 2
    IN_USE_SHAREABLE_POD = 3
    IN_USE_MANAGED_POD = 4

  ipCidrRange = _messages.StringField(1)
  rangeName = _messages.StringField(2)
  status = _messages.EnumField('StatusValueValuesEnum', 3)


class UserManagedKeysConfig(_messages.Message):
  r"""UserManagedKeysConfig holds the resource address to Keys which are used
  for signing certs and token that are used for communication within cluster.

  Fields:
    aggregationCa: The Certificate Authority Service caPool to use for the
      aggregation CA in this cluster.
    clusterCa: The Certificate Authority Service caPool to use for the cluster
      CA in this cluster.
    controlPlaneDiskEncryptionKey: The Cloud KMS cryptoKey to use for
      Confidential Hyperdisk on the control plane nodes.
    controlPlaneDiskEncryptionKeyVersions: Output only. All of the versions of
      the Cloud KMS cryptoKey that are used by Confidential Hyperdisks on the
      control plane nodes.
    etcdApiCa: Resource path of the Certificate Authority Service caPool to
      use for the etcd API CA in this cluster.
    etcdPeerCa: Resource path of the Certificate Authority Service caPool to
      use for the etcd peer CA in this cluster.
    gkeopsEtcdBackupEncryptionKey: Resource path of the Cloud KMS cryptoKey to
      use for encryption of internal etcd backups.
    serviceAccountSigningKeys: The Cloud KMS cryptoKeyVersions to use for
      signing service account JWTs issued by this cluster. Format: `projects/{
      project}/locations/{location}/keyRings/{keyring}/cryptoKeys/{cryptoKey}/
      cryptoKeyVersions/{cryptoKeyVersion}`
    serviceAccountVerificationKeys: The Cloud KMS cryptoKeyVersions to use for
      verifying service account JWTs issued by this cluster. Format: `projects
      /{project}/locations/{location}/keyRings/{keyring}/cryptoKeys/{cryptoKey
      }/cryptoKeyVersions/{cryptoKeyVersion}`
  """

  aggregationCa = _messages.StringField(1)
  clusterCa = _messages.StringField(2)
  controlPlaneDiskEncryptionKey = _messages.StringField(3)
  controlPlaneDiskEncryptionKeyVersions = _messages.StringField(4, repeated=True)
  etcdApiCa = _messages.StringField(5)
  etcdPeerCa = _messages.StringField(6)
  gkeopsEtcdBackupEncryptionKey = _messages.StringField(7)
  serviceAccountSigningKeys = _messages.StringField(8, repeated=True)
  serviceAccountVerificationKeys = _messages.StringField(9, repeated=True)


class VerticalPodAutoscaling(_messages.Message):
  r"""VerticalPodAutoscaling contains global, per-cluster information required
  by Vertical Pod Autoscaler to automatically adjust the resources of pods
  controlled by it.

  Fields:
    enableExperimentalFeatures: Enables experimental features support for
      Vertical Pod Autoscaling.
    enabled: Enables vertical pod autoscaling.
  """

  enableExperimentalFeatures = _messages.BooleanField(1)
  enabled = _messages.BooleanField(2)


class VirtualNIC(_messages.Message):
  r"""Configuration of gVNIC feature.

  Fields:
    enabled: Whether gVNIC features are enabled in the node pool
  """

  enabled = _messages.BooleanField(1)


class WindowsNodeConfig(_messages.Message):
  r"""Parameters that can be configured on Windows nodes. Windows Node Config
  that define the parameters that will be used to configure the Windows node
  pool settings.

  Enums:
    OsVersionValueValuesEnum: OSVersion specifies the Windows node config to
      be used on the node.

  Fields:
    osVersion: OSVersion specifies the Windows node config to be used on the
      node.
  """

  class OsVersionValueValuesEnum(_messages.Enum):
    r"""OSVersion specifies the Windows node config to be used on the node.

    Values:
      OS_VERSION_UNSPECIFIED: When OSVersion is not specified
      OS_VERSION_LTSC2019: LTSC2019 specifies to use LTSC2019 as the Windows
        Servercore Base Image.
      OS_VERSION_LTSC2022: LTSC2022 specifies to use LTSC2022 as the Windows
        Servercore Base Image.
    """
    OS_VERSION_UNSPECIFIED = 0
    OS_VERSION_LTSC2019 = 1
    OS_VERSION_LTSC2022 = 2

  osVersion = _messages.EnumField('OsVersionValueValuesEnum', 1)


class WindowsVersion(_messages.Message):
  r"""Windows server version.

  Fields:
    imageType: Windows server image type
    osVersion: Windows server build number
    supportEndDate: Mainstream support end date
  """

  imageType = _messages.StringField(1)
  osVersion = _messages.StringField(2)
  supportEndDate = _messages.MessageField('Date', 3)


class WindowsVersions(_messages.Message):
  r"""Windows server versions.

  Fields:
    windowsVersions: List of Windows server versions.
  """

  windowsVersions = _messages.MessageField('WindowsVersion', 1, repeated=True)


class WorkloadALTSConfig(_messages.Message):
  r"""Configuration for direct-path (via ALTS) with workload identity.

  Fields:
    enableAlts: enable_alts controls whether the alts handshaker should be
      enabled or not for direct-path. Requires Workload Identity
      (workload_pool must be non-empty).
  """

  enableAlts = _messages.BooleanField(1)


class WorkloadCertificates(_messages.Message):
  r"""Configuration for issuance of mTLS keys and certificates to Kubernetes
  pods.

  Fields:
    enableCertificates: enable_certificates controls issuance of workload mTLS
      certificates. If set, the GKE Workload Identity Certificates controller
      and node agent will be deployed in the cluster, which can then be
      configured by creating a WorkloadCertificateConfig Custom Resource.
      Requires Workload Identity (workload_pool must be non-empty).
  """

  enableCertificates = _messages.BooleanField(1)


class WorkloadConfig(_messages.Message):
  r"""WorkloadConfig defines the flags to enable or disable the workload
  configurations for the cluster.

  Enums:
    AuditModeValueValuesEnum: Sets which mode of auditing should be used for
      the cluster's workloads.
    VulnerabilityScanningModeValueValuesEnum: Sets which mode of vulnerability
      scanning should be used for cluster's workloads.

  Fields:
    auditMode: Sets which mode of auditing should be used for the cluster's
      workloads.
    vulnerabilityScanningMode: Sets which mode of vulnerability scanning
      should be used for cluster's workloads.
  """

  class AuditModeValueValuesEnum(_messages.Enum):
    r"""Sets which mode of auditing should be used for the cluster's
    workloads.

    Values:
      MODE_UNSPECIFIED: Default value meaning that no mode has been specified.
      DISABLED: This disables Workload Configuration auditing on the cluster,
        meaning that nothing is surfaced.
      BASIC: Applies the default set of policy auditing to a cluster's
        workloads.
      BASELINE: Surfaces configurations that are not in line with the Pod
        Security Standard Baseline policy.
      RESTRICTED: Surfaces configurations that are not in line with the Pod
        Security Standard Restricted policy.
    """
    MODE_UNSPECIFIED = 0
    DISABLED = 1
    BASIC = 2
    BASELINE = 3
    RESTRICTED = 4

  class VulnerabilityScanningModeValueValuesEnum(_messages.Enum):
    r"""Sets which mode of vulnerability scanning should be used for cluster's
    workloads.

    Values:
      MODE_UNSPECIFIED: Default value meaning that no mode has been specified.
      DISABLED: This disables Workload Configuration auditing on the cluster,
        meaning that nothing is surfaced.
      BASIC: Applies the default set of policy auditing to a cluster's
        workloads.
      BASELINE: Surfaces configurations that are not in line with the Pod
        Security Standard Baseline policy.
      RESTRICTED: Surfaces configurations that are not in line with the Pod
        Security Standard Restricted policy.
    """
    MODE_UNSPECIFIED = 0
    DISABLED = 1
    BASIC = 2
    BASELINE = 3
    RESTRICTED = 4

  auditMode = _messages.EnumField('AuditModeValueValuesEnum', 1)
  vulnerabilityScanningMode = _messages.EnumField('VulnerabilityScanningModeValueValuesEnum', 2)


class WorkloadIdentityConfig(_messages.Message):
  r"""Configuration for the use of k8s Service Accounts in IAM policies.

  Fields:
    identityNamespace: IAM Identity Namespace to attach all k8s Service
      Accounts to.
    identityProvider: identity provider is the third party identity provider.
    issuingCertificateAuthority: DEPRECATED: Use enable_certificates instead
      issuing_certificate_authority controls issuance of workload mTLS
      certificates. If non-empty, it must be a Private CA resource URL of the
      form "//privateca.googleapis.com/projects/{project}/locations/{location}
      /certificateAuthorities/{name}". If non-empty, Workload Identity
      (standard or Hub) must be active (workload_pool must be non-empty).
    workloadPool: The workload pool to attach all Kubernetes service accounts
      to.
  """

  identityNamespace = _messages.StringField(1)
  identityProvider = _messages.StringField(2)
  issuingCertificateAuthority = _messages.StringField(3)
  workloadPool = _messages.StringField(4)


class WorkloadMetadataConfig(_messages.Message):
  r"""WorkloadMetadataConfig defines the metadata configuration to expose to
  workloads on the node pool.

  Enums:
    ModeValueValuesEnum: Mode is the configuration for how to expose metadata
      to workloads running on the node pool.
    NodeMetadataValueValuesEnum: NodeMetadata is the configuration for how to
      expose metadata to the workloads running on the node.

  Fields:
    mode: Mode is the configuration for how to expose metadata to workloads
      running on the node pool.
    nodeMetadata: NodeMetadata is the configuration for how to expose metadata
      to the workloads running on the node.
  """

  class ModeValueValuesEnum(_messages.Enum):
    r"""Mode is the configuration for how to expose metadata to workloads
    running on the node pool.

    Values:
      MODE_UNSPECIFIED: Not set.
      GCE_METADATA: Expose all Compute Engine metadata to pods.
      GKE_METADATA: Run the GKE Metadata Server on this node. The GKE Metadata
        Server exposes a metadata API to workloads that is compatible with the
        V1 Compute Metadata APIs exposed by the Compute Engine and App Engine
        Metadata Servers. This feature can only be enabled if Workload
        Identity is enabled at the cluster level.
    """
    MODE_UNSPECIFIED = 0
    GCE_METADATA = 1
    GKE_METADATA = 2

  class NodeMetadataValueValuesEnum(_messages.Enum):
    r"""NodeMetadata is the configuration for how to expose metadata to the
    workloads running on the node.

    Values:
      UNSPECIFIED: Not set.
      SECURE: Prevent workloads not in hostNetwork from accessing certain VM
        metadata, specifically kube-env, which contains Kubelet credentials,
        and the instance identity token. Metadata concealment is a temporary
        security solution available while the bootstrapping process for
        cluster nodes is being redesigned with significant security
        improvements. This feature is scheduled to be deprecated in the future
        and later removed.
      EXPOSE: Expose all VM metadata to pods.
      GKE_METADATA_SERVER: Run the GKE Metadata Server on this node. The GKE
        Metadata Server exposes a metadata API to workloads that is compatible
        with the V1 Compute Metadata APIs exposed by the Compute Engine and
        App Engine Metadata Servers. This feature can only be enabled if
        Workload Identity is enabled at the cluster level.
    """
    UNSPECIFIED = 0
    SECURE = 1
    EXPOSE = 2
    GKE_METADATA_SERVER = 3

  mode = _messages.EnumField('ModeValueValuesEnum', 1)
  nodeMetadata = _messages.EnumField('NodeMetadataValueValuesEnum', 2)


class WorkloadMonitoringEapConfig(_messages.Message):
  r"""WorkloadMonitoringConfig is configuration for collecting workload
  metrics on GKE. Temporary config for EAP.

  Fields:
    enabled: Whether to send workload metrics from the cluster to Google Cloud
      Monitoring.
  """

  enabled = _messages.BooleanField(1)


class WorkloadPolicyConfig(_messages.Message):
  r"""WorkloadPolicyConfig is the configuration related to GCW workload policy

  Fields:
    allowNetAdmin: If true, workloads can use NET_ADMIN capability.
    autopilotCompatibilityAuditingEnabled: If true, enables the GCW Auditor
      that audits workloads on standard clusters.
  """

  allowNetAdmin = _messages.BooleanField(1)
  autopilotCompatibilityAuditingEnabled = _messages.BooleanField(2)


class WritableCgroups(_messages.Message):
  r"""Defines writable cgroups configuration.

  Fields:
    enabled: Optional. Whether writable cgroups is enabled.
  """

  enabled = _messages.BooleanField(1)


encoding.AddCustomJsonFieldMapping(
    StandardQueryParameters, 'f__xgafv', '$.xgafv')
encoding.AddCustomJsonEnumMapping(
    StandardQueryParameters.FXgafvValueValuesEnum, '_1', '1')
encoding.AddCustomJsonEnumMapping(
    StandardQueryParameters.FXgafvValueValuesEnum, '_2', '2')
