{
  "discoveryVersion": "v1",
  "batchPath": "batch",
  "basePath": "",
  "title": "Kubernetes Engine API",
  "id": "container:v1beta1",
  "icons": {
    "x32": "http://www.google.com/images/icons/product/search-32.gif",
    "x16": "http://www.google.com/images/icons/product/search-16.gif"
  },
  "version_module": true,
  "fullyEncodeReservedExpansion": true,
  "version": "v1beta1",
  "schemas": {
    "GcfsConfig": {
      "type": "object",
      "properties": {
        "enabled": {
          "type": "boolean",
          "description": "Whether to use GCFS."
        }
      },
      "description": "GcfsConfig contains configurations of Google Container File System.",
      "id": "GcfsConfig"
    },
    "LoggingConfig": {
      "id": "LoggingConfig",
      "description": "LoggingConfig is cluster logging configuration.",
      "type": "object",
      "properties": {
        "componentConfig": {
          "description": "Logging components configuration",
          "$ref": "LoggingComponentConfig"
        }
      }
    },
    "ClusterNetworkPerformanceConfig": {
      "type": "object",
      "properties": {
        "totalEgressBandwidthTier": {
          "type": "string",
          "enum": [
            "TIER_UNSPECIFIED",
            "TIER_1"
          ],
          "description": "Specifies the total network bandwidth tier for the NodePool.",
          "enumDescriptions": [
            "Default value",
            "Higher bandwidth, actual values based on VM size."
          ]
        }
      },
      "description": "Configuration of all network bandwidth tiers",
      "id": "ClusterNetworkPerformanceConfig"
    },
    "GPUDriverInstallationConfig": {
      "id": "GPUDriverInstallationConfig",
      "description": "GPUDriverInstallationConfig specifies the version of GPU driver to be auto installed.",
      "type": "object",
      "properties": {
        "gpuDriverVersion": {
          "type": "string",
          "enum": [
            "GPU_DRIVER_VERSION_UNSPECIFIED",
            "INSTALLATION_DISABLED",
            "DEFAULT",
            "LATEST"
          ],
          "description": "Mode for how the GPU driver is installed.",
          "enumDescriptions": [
            "Default value is to not install any GPU driver.",
            "Disable GPU driver auto installation and needs manual installation",
            "\"Default\" GPU driver in COS and Ubuntu.",
            "\"Latest\" GPU driver in COS."
          ]
        }
      }
    },
    "EvictionSignals": {
      "type": "object",
      "properties": {
        "nodefsInodesFree": {
          "description": "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 \u003e= 5% and \u003c= 50%. See https://kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-eviction/#eviction-signals",
          "type": "string"
        },
        "imagefsAvailable": {
          "description": "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 \u003e= 15%. See https://kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-eviction/#eviction-signals",
          "type": "string"
        },
        "pidAvailable": {
          "type": "string",
          "description": "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 \u003e= 10%. See https://kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-eviction/#eviction-signals"
        },
        "nodefsAvailable": {
          "description": "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 \u003e= 10%. See https://kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-eviction/#eviction-signals",
          "type": "string"
        },
        "memoryAvailable": {
          "type": "string",
          "description": "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 \u003e= 100Mi and \u003c= 50% of the node's memory. See https://kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-eviction/#eviction-signals"
        },
        "imagefsInodesFree": {
          "description": "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 \u003e= 5%. See https://kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-eviction/#eviction-signals",
          "type": "string"
        }
      },
      "description": "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.",
      "id": "EvictionSignals"
    },
    "MonitoringComponentConfig": {
      "id": "MonitoringComponentConfig",
      "description": "MonitoringComponentConfig is cluster monitoring component configuration.",
      "type": "object",
      "properties": {
        "enableComponents": {
          "description": "Select components to collect metrics. An empty set would disable all monitoring.",
          "type": "array",
          "items": {
            "type": "string",
            "enum": [
              "COMPONENT_UNSPECIFIED",
              "SYSTEM_COMPONENTS",
              "WORKLOADS",
              "APISERVER",
              "SCHEDULER",
              "CONTROLLER_MANAGER",
              "STORAGE",
              "HPA",
              "POD",
              "DAEMONSET",
              "DEPLOYMENT",
              "STATEFULSET",
              "CADVISOR",
              "KUBELET",
              "DCGM",
              "JOBSET"
            ],
            "enumDescriptions": [
              "Default value. This shouldn't be used.",
              "system components",
              "Deprecated: Use Google Cloud Managed Service for Prometheus.",
              "kube-apiserver",
              "kube-scheduler",
              "kube-controller-manager",
              "Storage",
              "Horizontal Pod Autoscaling",
              "Pod",
              "DaemonSet",
              "Deployment",
              "Statefulset",
              "CADVISOR",
              "KUBELET",
              "NVIDIA Data Center GPU Manager (DCGM)",
              "JobSet"
            ],
            "enumDeprecated": [
              false,
              false,
              true,
              false,
              false,
              false,
              false,
              false,
              false,
              false,
              false,
              false,
              false,
              false,
              false,
              false
            ]
          }
        }
      }
    },
    "GkeAutoUpgradeConfig": {
      "id": "GkeAutoUpgradeConfig",
      "description": "GkeAutoUpgradeConfig is the configuration for GKE auto upgrades.",
      "type": "object",
      "properties": {
        "patchMode": {
          "type": "string",
          "enum": [
            "PATCH_MODE_UNSPECIFIED",
            "ACCELERATED"
          ],
          "description": "PatchMode specifies how auto upgrade patch builds should be selected.",
          "enumDescriptions": [
            "PATCH_MODE_UNSPECIFIED defaults to using the upgrade target from the channel's patch upgrade targets as the upgrade target for the version.",
            "ACCELERATED denotes that the latest patch build in the channel should be used as the upgrade target for the version."
          ]
        }
      }
    },
    "Status": {
      "description": "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).",
      "type": "object",
      "properties": {
        "details": {
          "description": "A list of messages that carry the error details. There is a common set of message types for APIs to use.",
          "type": "array",
          "items": {
            "type": "object",
            "additionalProperties": {
              "type": "any",
              "description": "Properties of the object. Contains field @type with type URL."
            }
          }
        },
        "message": {
          "description": "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.",
          "type": "string"
        },
        "code": {
          "type": "integer",
          "description": "The status code, which should be an enum value of google.rpc.Code.",
          "format": "int32"
        }
      },
      "id": "Status"
    },
    "DesiredAdditionalIPRangesConfig": {
      "description": "DesiredAdditionalIPRangesConfig is a wrapper used for cluster update operation and contains multiple AdditionalIPRangesConfigs.",
      "type": "object",
      "properties": {
        "additionalIpRangesConfigs": {
          "description": "List of additional IP ranges configs where each AdditionalIPRangesConfig corresponds to one subnetwork's IP ranges",
          "type": "array",
          "items": {
            "$ref": "AdditionalIPRangesConfig"
          }
        }
      },
      "id": "DesiredAdditionalIPRangesConfig"
    },
    "ControlPlaneEgress": {
      "id": "ControlPlaneEgress",
      "type": "object",
      "properties": {
        "mode": {
          "description": "Defines the mode of control plane egress.",
          "enumDescriptions": [
            "Default value not specified.",
            "Control plane has public IP and no restriction on egress.",
            "No public IP on control plane and only internal allowlisted egress."
          ],
          "type": "string",
          "enum": [
            "MODE_UNSPECIFIED",
            "VIA_CONTROL_PLANE",
            "NONE"
          ]
        }
      },
      "description": "ControlPlaneEgress defines the settings needed to enable control plane egress control."
    },
    "OpportunisticMaintenanceStrategy": {
      "type": "object",
      "properties": {
        "nodeIdleTimeWindow": {
          "type": "string",
          "description": "The amount of time that a node can remain idle (no customer owned workloads running), before triggering maintenance.",
          "format": "google-duration"
        },
        "maintenanceAvailabilityWindow": {
          "description": "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).",
          "format": "google-duration",
          "type": "string"
        },
        "minNodesPerPool": {
          "type": "string",
          "description": "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.",
          "format": "int64"
        }
      },
      "description": "Strategy that will trigger maintenance on behalf of the customer.",
      "id": "OpportunisticMaintenanceStrategy"
    },
    "BlueGreenInfo": {
      "type": "object",
      "properties": {
        "greenInstanceGroupUrls": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "The resource URLs of the [managed instance groups] (/compute/docs/instance-groups/creating-groups-of-managed-instances) associated with green pool."
        },
        "phase": {
          "description": "Current blue-green upgrade phase.",
          "enumDescriptions": [
            "Unspecified phase.",
            "blue-green upgrade has been initiated.",
            "Start creating green pool nodes.",
            "Start cordoning blue pool nodes.",
            "Start waiting after cordoning the blue pool and before draining it.",
            "Start draining blue pool nodes.",
            "Start soaking time after draining entire blue pool.",
            "Start deleting blue nodes.",
            "Rollback has been initiated."
          ],
          "type": "string",
          "enum": [
            "PHASE_UNSPECIFIED",
            "UPDATE_STARTED",
            "CREATING_GREEN_POOL",
            "CORDONING_BLUE_POOL",
            "WAITING_TO_DRAIN_BLUE_POOL",
            "DRAINING_BLUE_POOL",
            "NODE_POOL_SOAKING",
            "DELETING_BLUE_POOL",
            "ROLLBACK_STARTED"
          ]
        },
        "blueInstanceGroupUrls": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "The resource URLs of the [managed instance groups] (/compute/docs/instance-groups/creating-groups-of-managed-instances) associated with blue pool."
        },
        "greenPoolVersion": {
          "type": "string",
          "description": "Version of green pool."
        },
        "bluePoolDeletionStartTime": {
          "type": "string",
          "description": "Time to start deleting blue pool to complete blue-green upgrade, in [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) text format."
        }
      },
      "description": "Information relevant to blue-green upgrade.",
      "id": "BlueGreenInfo"
    },
    "WorkloadIdentityConfig": {
      "description": "Configuration for the use of Kubernetes Service Accounts in IAM policies.",
      "type": "object",
      "properties": {
        "identityProvider": {
          "type": "string",
          "description": "identity provider is the third party identity provider."
        },
        "identityNamespace": {
          "type": "string",
          "description": "IAM Identity Namespace to attach all Kubernetes Service Accounts to.",
          "deprecated": true
        },
        "workloadPool": {
          "description": "The workload pool to attach all Kubernetes service accounts to.",
          "type": "string"
        }
      },
      "id": "WorkloadIdentityConfig"
    },
    "TpuConfig": {
      "description": "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.",
      "type": "object",
      "properties": {
        "ipv4CidrBlock": {
          "description": "IPv4 CIDR block reserved for Cloud TPU in the VPC.",
          "type": "string"
        },
        "enabled": {
          "description": "Whether Cloud TPU integration is enabled or not.",
          "type": "boolean"
        },
        "useServiceNetworking": {
          "description": "Whether to use service networking for Cloud TPU or not.",
          "type": "boolean"
        }
      },
      "id": "TpuConfig",
      "deprecated": true
    },
    "GcePersistentDiskCsiDriverConfig": {
      "type": "object",
      "properties": {
        "enabled": {
          "description": "Whether the Compute Engine PD CSI driver is enabled for this cluster.",
          "type": "boolean"
        }
      },
      "description": "Configuration for the Compute Engine PD CSI driver.",
      "id": "GcePersistentDiskCsiDriverConfig"
    },
    "GetOpenIDConfigResponse": {
      "type": "object",
      "properties": {
        "response_types_supported": {
          "description": "Supported response types.",
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "subject_types_supported": {
          "description": "Supported subject types.",
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "grant_types": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Supported grant types."
        },
        "issuer": {
          "description": "OIDC Issuer.",
          "type": "string"
        },
        "id_token_signing_alg_values_supported": {
          "description": "supported ID Token signing Algorithms.",
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "jwks_uri": {
          "type": "string",
          "description": "JSON Web Key uri."
        },
        "claims_supported": {
          "description": "Supported claims.",
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "cacheHeader": {
          "description": "For HTTP requests, this field is automatically extracted into the Cache-Control HTTP header.",
          "$ref": "HttpCacheControlResponseHeader"
        }
      },
      "description": "GetOpenIDConfigResponse is an OIDC discovery document for the cluster. See the OpenID Connect Discovery 1.0 specification for details.",
      "id": "GetOpenIDConfigResponse"
    },
    "ILBSubsettingConfig": {
      "id": "ILBSubsettingConfig",
      "description": "ILBSubsettingConfig contains the desired config of L4 Internal LoadBalancer subsetting on this cluster.",
      "type": "object",
      "properties": {
        "enabled": {
          "description": "Enables l4 ILB subsetting for this cluster",
          "type": "boolean"
        }
      }
    },
    "OperationProgress": {
      "id": "OperationProgress",
      "type": "object",
      "properties": {
        "status": {
          "description": "Status of an operation stage. Unset for single-stage operations.",
          "enumDescriptions": [
            "Not set.",
            "The operation has been created.",
            "The operation is currently running.",
            "The operation is done, either cancelled or completed.",
            "The operation is aborting."
          ],
          "type": "string",
          "enum": [
            "STATUS_UNSPECIFIED",
            "PENDING",
            "RUNNING",
            "DONE",
            "ABORTING"
          ]
        },
        "metrics": {
          "type": "array",
          "items": {
            "$ref": "Metric"
          },
          "description": "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": {
          "description": "A non-parameterized string describing an operation stage. Unset for single-stage operations.",
          "type": "string"
        },
        "stages": {
          "type": "array",
          "items": {
            "$ref": "OperationProgress"
          },
          "description": "Substages of an operation or a stage."
        }
      },
      "description": "Information about operation (or operation stage) progress."
    },
    "EncryptionConfig": {
      "id": "EncryptionConfig",
      "description": "Defines encryption settings for the swap space.",
      "type": "object",
      "properties": {
        "disabled": {
          "type": "boolean",
          "description": "Optional. If true, swap space will not be encrypted. Defaults to false (encrypted)."
        }
      }
    },
    "AdditionalPodNetworkConfig": {
      "id": "AdditionalPodNetworkConfig",
      "description": "AdditionalPodNetworkConfig is the configuration for additional pod networks within the NodeNetworkConfig message",
      "type": "object",
      "properties": {
        "maxPodsPerNode": {
          "description": "The maximum number of pods per node which use this pod network.",
          "$ref": "MaxPodsConstraint"
        },
        "secondaryPodRange": {
          "description": "The name of the secondary range on the subnet which provides IP address for this pod range.",
          "type": "string"
        },
        "networkAttachment": {
          "description": "The name of the network attachment for pods to communicate to; cannot be specified along with subnetwork or secondary_pod_range.",
          "type": "string"
        },
        "subnetwork": {
          "type": "string",
          "description": "Name of the subnetwork where the additional pod network belongs."
        }
      }
    },
    "IstioConfig": {
      "id": "IstioConfig",
      "type": "object",
      "properties": {
        "disabled": {
          "type": "boolean",
          "description": "Whether Istio is enabled for this cluster.",
          "deprecated": true
        },
        "auth": {
          "type": "string",
          "enum": [
            "AUTH_NONE",
            "AUTH_MUTUAL_TLS"
          ],
          "description": "The specified Istio auth mode, either none, or mutual TLS.",
          "enumDescriptions": [
            "auth not enabled",
            "auth mutual TLS enabled"
          ],
          "deprecated": true
        }
      },
      "description": "Configuration options for Istio addon."
    },
    "DisruptionBudget": {
      "id": "DisruptionBudget",
      "description": "DisruptionBudget defines the upgrade disruption budget for the cluster control plane.",
      "type": "object",
      "properties": {
        "patchVersionDisruptionInterval": {
          "description": "Optional. The minimum duration between two patch version upgrades of the control plane.",
          "format": "google-duration",
          "type": "string"
        },
        "lastDisruptionTime": {
          "type": "string",
          "description": "Output only. The last time a disruption was performed on the control plane.",
          "readOnly": true,
          "format": "google-datetime"
        },
        "minorVersionDisruptionInterval": {
          "type": "string",
          "description": "Optional. The minimum duration between two minor version upgrades of the control plane.",
          "format": "google-duration"
        },
        "lastMinorVersionDisruptionTime": {
          "description": "Output only. The last time a minor version upgrade was performed on the control plane.",
          "readOnly": true,
          "format": "google-datetime",
          "type": "string"
        }
      }
    },
    "CompliancePostureConfig": {
      "id": "CompliancePostureConfig",
      "type": "object",
      "properties": {
        "mode": {
          "description": "Defines the enablement mode for Compliance Posture.",
          "enumDescriptions": [
            "Default value not specified.",
            "Disables Compliance Posture features on the cluster.",
            "Enables Compliance Posture features on the cluster."
          ],
          "type": "string",
          "enum": [
            "MODE_UNSPECIFIED",
            "DISABLED",
            "ENABLED"
          ]
        },
        "complianceStandards": {
          "description": "List of enabled compliance standards.",
          "type": "array",
          "items": {
            "$ref": "ComplianceStandard"
          }
        }
      },
      "description": "Deprecated: Compliance Posture is no longer supported. For more details, see https://cloud.google.com/kubernetes-engine/docs/deprecations/posture-management-deprecation. CompliancePostureConfig defines the settings needed to enable/disable features for the Compliance Posture.",
      "deprecated": true
    },
    "SetMonitoringServiceRequest": {
      "id": "SetMonitoringServiceRequest",
      "description": "SetMonitoringServiceRequest sets the monitoring service of a cluster.",
      "type": "object",
      "properties": {
        "zone": {
          "type": "string",
          "description": "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.",
          "deprecated": true
        },
        "name": {
          "type": "string",
          "description": "The name (project, location, cluster) of the cluster to set monitoring. Specified in the format `projects/*/locations/*/clusters/*`."
        },
        "projectId": {
          "description": "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.",
          "deprecated": true,
          "type": "string"
        },
        "clusterId": {
          "description": "Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field.",
          "deprecated": true,
          "type": "string"
        },
        "monitoringService": {
          "type": "string",
          "description": "Required. 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."
        }
      }
    },
    "K8sBetaAPIConfig": {
      "id": "K8sBetaAPIConfig",
      "type": "object",
      "properties": {
        "enabledApis": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "api name, e.g. storage.k8s.io/v1beta1/csistoragecapacities."
        }
      },
      "description": "Kubernetes open source beta apis enabled on the cluster."
    },
    "PubSub": {
      "type": "object",
      "properties": {
        "enabled": {
          "description": "Enable notifications for Pub/Sub.",
          "type": "boolean"
        },
        "filter": {
          "description": "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",
          "$ref": "Filter"
        },
        "topic": {
          "description": "The desired Pub/Sub topic to which notifications will be sent by GKE. Format is `projects/{project}/topics/{topic}`.",
          "type": "string"
        }
      },
      "description": "Pub/Sub specific notification config.",
      "id": "PubSub"
    },
    "CompleteIPRotationRequest": {
      "description": "CompleteIPRotationRequest moves the cluster master back into single-IP mode.",
      "type": "object",
      "properties": {
        "zone": {
          "description": "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.",
          "deprecated": true,
          "type": "string"
        },
        "clusterId": {
          "description": "Deprecated. The name of the cluster. This field has been deprecated and replaced by the name field.",
          "deprecated": true,
          "type": "string"
        },
        "name": {
          "description": "The name (project, location, cluster name) of the cluster to complete IP rotation. Specified in the format `projects/*/locations/*/clusters/*`.",
          "type": "string"
        },
        "projectId": {
          "type": "string",
          "description": "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.",
          "deprecated": true
        }
      },
      "id": "CompleteIPRotationRequest"
    },
    "NodeLabels": {
      "description": "Collection of node-level [Kubernetes labels](https://kubernetes.io/docs/concepts/overview/working-with-objects/labels).",
      "type": "object",
      "properties": {
        "labels": {
          "description": "Map of node label keys and node label values.",
          "additionalProperties": {
            "type": "string"
          },
          "type": "object"
        }
      },
      "id": "NodeLabels"
    },
    "NodeNetworkConfig": {
      "id": "NodeNetworkConfig",
      "type": "object",
      "properties": {
        "additionalNodeNetworkConfigs": {
          "type": "array",
          "items": {
            "$ref": "AdditionalNodeNetworkConfig"
          },
          "description": "We specify the additional node networks for this node pool using this list. Each node network corresponds to an additional interface"
        },
        "createPodRange": {
          "type": "boolean",
          "description": "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."
        },
        "enablePrivateNodes": {
          "description": "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",
          "type": "boolean"
        },
        "networkTierConfig": {
          "$ref": "NetworkTierConfig",
          "description": "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.",
          "readOnly": true
        },
        "podCidrOverprovisionConfig": {
          "description": "[PRIVATE FIELD] Pod CIDR size overprovisioning config for the node pool. 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.",
          "$ref": "PodCIDROverprovisionConfig"
        },
        "subnetwork": {
          "description": "Optional. The subnetwork name/path for the node pool. Format: projects/{project}/regions/{region}/subnetworks/{subnetwork} If the cluster is associated with multiple subnetworks, the subnetwork can be either: - A user supplied subnetwork name during node pool creation (e.g., `my-subnet`). The name must be between 1 and 63 characters long, start with a letter, contain only letters, numbers, and hyphens, and end with a letter or a number. - A full subnetwork path during node pool creation, such as `projects/gke-project/regions/us-central1/subnetworks/my-subnet` - A subnetwork path picked based on the IP utilization during node pool creation and is immutable.",
          "type": "string"
        },
        "podIpv4RangeUtilization": {
          "description": "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.",
          "readOnly": true,
          "format": "double",
          "type": "number"
        },
        "podRange": {
          "type": "string",
          "description": "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."
        },
        "acceleratorNetworkProfile": {
          "type": "string",
          "description": "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."
        },
        "podIpv4CidrBlock": {
          "description": "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.",
          "type": "string"
        },
        "additionalPodNetworkConfigs": {
          "type": "array",
          "items": {
            "$ref": "AdditionalPodNetworkConfig"
          },
          "description": "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"
        },
        "networkPerformanceConfig": {
          "description": "Network bandwidth tier configuration.",
          "$ref": "NetworkPerformanceConfig"
        }
      },
      "description": "Parameters for node pool-level network config."
    },
    "NotificationConfig": {
      "description": "NotificationConfig is the configuration of notifications.",
      "type": "object",
      "properties": {
        "pubsub": {
          "description": "Notification config for Pub/Sub.",
          "$ref": "PubSub"
        }
      },
      "id": "NotificationConfig"
    },
    "IntraNodeVisibilityConfig": {
      "id": "IntraNodeVisibilityConfig",
      "type": "object",
      "properties": {
        "enabled": {
          "description": "Enables intra node visibility for this cluster.",
          "type": "boolean"
        }
      },
      "description": "IntraNodeVisibilityConfig contains the desired config of the intra-node visibility on this cluster."
    },
    "RecurringTimeWindow": {
      "id": "RecurringTimeWindow",
      "description": "Represents an arbitrary window of time that recurs.",
      "type": "object",
      "properties": {
        "window": {
          "description": "The window of the first recurrence.",
          "$ref": "TimeWindow"
        },
        "recurrence": {
          "description": "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.",
          "type": "string"
        }
      }
    },
    "VerticalPodAutoscaling": {
      "description": "VerticalPodAutoscaling contains global, per-cluster information required by Vertical Pod Autoscaler to automatically adjust the resources of pods controlled by it.",
      "type": "object",
      "properties": {
        "enabled": {
          "type": "boolean",
          "description": "Enables vertical pod autoscaling."
        }
      },
      "id": "VerticalPodAutoscaling"
    },
    "HighScaleCheckpointingConfig": {
      "id": "HighScaleCheckpointingConfig",
      "description": "Configuration for the High Scale Checkpointing.",
      "type": "object",
      "properties": {
        "enabled": {
          "type": "boolean",
          "description": "Whether the High Scale Checkpointing is enabled for this cluster."
        }
      }
    },
    "CreateClusterRequest": {
      "type": "object",
      "properties": {
        "zone": {
          "type": "string",
          "description": "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.",
          "deprecated": true
        },
        "cluster": {
          "description": "Required. A [cluster resource](https://cloud.google.com/container-engine/reference/rest/v1beta1/projects.locations.clusters)",
          "$ref": "Cluster"
        },
        "projectId": {
          "type": "string",
          "description": "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.",
          "deprecated": true
        },
        "parent": {
          "description": "The parent (project and location) where the cluster will be created. Specified in the format `projects/*/locations/*`.",
          "type": "string"
        }
      },
      "description": "CreateClusterRequest creates a cluster.",
      "id": "CreateClusterRequest"
    },
    "ResourceLimit": {
      "id": "ResourceLimit",
      "description": "Contains information about amount of some resource in the cluster. For memory, value should be in GB.",
      "type": "object",
      "properties": {
        "maximum": {
          "type": "string",
          "description": "Maximum amount of the resource in the cluster.",
          "format": "int64"
        },
        "resourceType": {
          "type": "string",
          "description": "Resource name \"cpu\", \"memory\" or gpu-specific string."
        },
        "minimum": {
          "description": "Minimum amount of the resource in the cluster.",
          "format": "int64",
          "type": "string"
        }
      }
    },
    "Fleet": {
      "id": "Fleet",
      "type": "object",
      "properties": {
        "membershipType": {
          "type": "string",
          "enum": [
            "MEMBERSHIP_TYPE_UNSPECIFIED",
            "LIGHTWEIGHT"
          ],
          "description": "The type of the cluster's fleet membership.",
          "enumDescriptions": [
            "The MembershipType is not set.",
            "The membership supports only lightweight compatible features."
          ]
        },
        "membership": {
          "description": "Output only. The full resource name of the registered fleet membership of the cluster, in the format `//gkehub.googleapis.com/projects/*/locations/*/memberships/*`.",
          "readOnly": true,
          "type": "string"
        },
        "preRegistered": {
          "type": "boolean",
          "description": "Output only. Whether the cluster has been registered through the fleet API.",
          "readOnly": true
        },
        "project": {
          "description": "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.",
          "type": "string"
        }
      },
      "description": "Fleet is the fleet configuration for the cluster."
    },
    "KubernetesDashboard": {
      "description": "Configuration for the Kubernetes Dashboard.",
      "type": "object",
      "properties": {
        "disabled": {
          "description": "Whether the Kubernetes Dashboard is enabled for this cluster.",
          "type": "boolean"
        }
      },
      "id": "KubernetesDashboard"
    },
    "SecretSyncConfig": {
      "description": "Configuration for sync Secret Manager secrets as k8s secrets.",
      "type": "object",
      "properties": {
        "enabled": {
          "type": "boolean",
          "description": "Enable/Disable Secret Sync Config."
        },
        "rotationConfig": {
          "description": "Rotation config for secret manager.",
          "$ref": "SyncRotationConfig"
        }
      },
      "id": "SecretSyncConfig"
    },
    "Metric": {
      "id": "Metric",
      "description": "Progress metric is (string, int|float|string) pair.",
      "type": "object",
      "properties": {
        "name": {
          "type": "string",
          "description": "Required. Metric name, e.g., \"nodes total\", \"percent done\"."
        },
        "doubleValue": {
          "type": "number",
          "description": "For metrics with floating point value.",
          "format": "double"
        },
        "stringValue": {
          "type": "string",
          "description": "For metrics with custom values (ratios, visual progress, etc.)."
        },
        "intValue": {
          "description": "For metrics with integer value.",
          "format": "int64",
          "type": "string"
        }
      }
    },
    "NodePool": {
      "description": "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.",
      "type": "object",
      "properties": {
        "updateInfo": {
          "description": "Output only. Update info contains relevant information during a node pool update.",
          "readOnly": true,
          "$ref": "UpdateInfo"
        },
        "statusMessage": {
          "description": "Output only. Deprecated. Use conditions instead. Additional information about the current status of this node pool instance, if available.",
          "readOnly": true,
          "deprecated": true,
          "type": "string"
        },
        "instanceGroupUrls": {
          "description": "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.",
          "readOnly": true,
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "upgradeSettings": {
          "description": "Upgrade settings control disruption and speed of the upgrade.",
          "$ref": "UpgradeSettings"
        },
        "management": {
          "description": "NodeManagement configuration for this NodePool.",
          "$ref": "NodeManagement"
        },
        "version": {
          "description": "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).",
          "type": "string"
        },
        "podIpv4CidrSize": {
          "type": "integer",
          "description": "Output only. The pod CIDR block size per node in this node pool.",
          "readOnly": true,
          "format": "int32"
        },
        "networkConfig": {
          "description": "Networking configuration for this NodePool. If specified, it overrides the cluster-level defaults.",
          "$ref": "NodeNetworkConfig"
        },
        "bestEffortProvisioning": {
          "description": "Enable best effort provisioning for nodes",
          "$ref": "BestEffortProvisioning"
        },
        "name": {
          "description": "The name of the node pool.",
          "type": "string"
        },
        "conditions": {
          "type": "array",
          "items": {
            "$ref": "StatusCondition"
          },
          "description": "Which conditions caused the current node pool state."
        },
        "placementPolicy": {
          "description": "Specifies the node placement policy.",
          "$ref": "PlacementPolicy"
        },
        "config": {
          "description": "The node configuration of the pool.",
          "$ref": "NodeConfig"
        },
        "etag": {
          "type": "string",
          "description": "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."
        },
        "autopilotConfig": {
          "description": "Specifies the autopilot configuration for this node pool. This field is exclusively reserved for Cluster Autoscaler.",
          "$ref": "AutopilotConfig"
        },
        "nodeDrainConfig": {
          "description": "Specifies the node drain configuration for this node pool.",
          "$ref": "NodeDrainConfig"
        },
        "locations": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "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/reference/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."
        },
        "autoscaling": {
          "description": "Autoscaler configuration for this NodePool. Autoscaler is enabled only if a valid configuration is present.",
          "$ref": "NodePoolAutoscaling"
        },
        "initialNodeCount": {
          "description": "The initial node count for the pool. You must ensure that your Compute Engine [resource quota](https://cloud.google.com/compute/quotas) is sufficient for this number of instances. You must also have available firewall and routes quota.",
          "format": "int32",
          "type": "integer"
        },
        "maxPodsConstraint": {
          "description": "The constraint on the maximum number of pods that can be run simultaneously on a node in the node pool.",
          "$ref": "MaxPodsConstraint"
        },
        "status": {
          "readOnly": true,
          "type": "string",
          "enum": [
            "STATUS_UNSPECIFIED",
            "PROVISIONING",
            "RUNNING",
            "RUNNING_WITH_ERROR",
            "RECONCILING",
            "STOPPING",
            "ERROR"
          ],
          "description": "Output only. The status of the nodes in this pool instance.",
          "enumDescriptions": [
            "Not set.",
            "The PROVISIONING state indicates the node pool is being created.",
            "The RUNNING state indicates the node pool has been created and is fully usable.",
            "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.",
            "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.",
            "The STOPPING state indicates the node pool is being deleted.",
            "The ERROR state indicates the node pool may be unusable. Details can be found in the `statusMessage` field."
          ]
        },
        "selfLink": {
          "type": "string",
          "description": "Output only. Server-defined URL for the resource.",
          "readOnly": true
        },
        "queuedProvisioning": {
          "description": "Specifies the configuration of queued provisioning.",
          "$ref": "QueuedProvisioning"
        }
      },
      "id": "NodePool"
    },
    "StartIPRotationRequest": {
      "id": "StartIPRotationRequest",
      "description": "StartIPRotationRequest creates a new IP for the cluster and then performs a node upgrade on each node pool to point to the new IP.",
      "type": "object",
      "properties": {
        "zone": {
          "type": "string",
          "description": "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.",
          "deprecated": true
        },
        "projectId": {
          "description": "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.",
          "deprecated": true,
          "type": "string"
        },
        "name": {
          "type": "string",
          "description": "The name (project, location, cluster name) of the cluster to start IP rotation. Specified in the format `projects/*/locations/*/clusters/*`."
        },
        "clusterId": {
          "type": "string",
          "description": "Deprecated. The name of the cluster. This field has been deprecated and replaced by the name field.",
          "deprecated": true
        },
        "rotateCredentials": {
          "type": "boolean",
          "description": "Whether to rotate credentials during IP rotation."
        }
      }
    },
    "AdditionalIPRangesConfig": {
      "type": "object",
      "properties": {
        "status": {
          "type": "string",
          "enum": [
            "STATUS_UNSPECIFIED",
            "ACTIVE",
            "DRAINING"
          ],
          "description": "Draining status of the additional subnet.",
          "enumDescriptions": [
            "Not set, same as ACTIVE.",
            "ACTIVE status indicates that the subnet is available for new node pool creation.",
            "DRAINING status indicates that the subnet is not used for new node pool creation."
          ]
        },
        "subnetwork": {
          "type": "string",
          "description": "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"
        },
        "podIpv4RangeNames": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "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"
        }
      },
      "description": "AdditionalIPRangesConfig is the configuration for individual additional subnetwork attached to the cluster",
      "id": "AdditionalIPRangesConfig"
    },
    "AutopilotConfig": {
      "description": "AutopilotConfig contains configuration of autopilot feature for this node pool.",
      "type": "object",
      "properties": {
        "enabled": {
          "type": "boolean",
          "description": "Denotes that nodes belonging to this node pool are Autopilot nodes."
        }
      },
      "id": "AutopilotConfig"
    },
    "Date": {
      "id": "Date",
      "type": "object",
      "properties": {
        "year": {
          "type": "integer",
          "description": "Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.",
          "format": "int32"
        },
        "day": {
          "type": "integer",
          "description": "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.",
          "format": "int32"
        },
        "month": {
          "type": "integer",
          "description": "Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.",
          "format": "int32"
        }
      },
      "description": "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"
    },
    "NetworkPolicy": {
      "id": "NetworkPolicy",
      "type": "object",
      "properties": {
        "enabled": {
          "description": "Whether network policy is enabled on the cluster.",
          "type": "boolean"
        },
        "provider": {
          "description": "The selected network policy provider.",
          "enumDescriptions": [
            "Not set",
            "Tigera (Calico Felix)."
          ],
          "type": "string",
          "enum": [
            "PROVIDER_UNSPECIFIED",
            "CALICO"
          ]
        }
      },
      "description": "Configuration options for the NetworkPolicy feature. https://kubernetes.io/docs/concepts/services-networking/networkpolicies/"
    },
    "ControlPlaneEndpointsConfig": {
      "id": "ControlPlaneEndpointsConfig",
      "description": "Configuration for all of the cluster's control plane endpoints.",
      "type": "object",
      "properties": {
        "ipEndpointsConfig": {
          "description": "IP endpoints configuration.",
          "$ref": "IPEndpointsConfig"
        },
        "dnsEndpointConfig": {
          "description": "DNS endpoint configuration.",
          "$ref": "DNSEndpointConfig"
        }
      }
    },
    "ComplianceStandard": {
      "type": "object",
      "properties": {
        "standard": {
          "description": "Name of the compliance standard.",
          "type": "string"
        }
      },
      "description": "Defines the details of a compliance standard.",
      "id": "ComplianceStandard"
    },
    "Filter": {
      "description": "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",
      "type": "object",
      "properties": {
        "eventType": {
          "type": "array",
          "items": {
            "type": "string",
            "enum": [
              "EVENT_TYPE_UNSPECIFIED",
              "UPGRADE_AVAILABLE_EVENT",
              "UPGRADE_EVENT",
              "SECURITY_BULLETIN_EVENT",
              "UPGRADE_INFO_EVENT"
            ],
            "enumDescriptions": [
              "Not set, will be ignored.",
              "Corresponds with UpgradeAvailableEvent.",
              "Corresponds with UpgradeEvent.",
              "Corresponds with SecurityBulletinEvent.",
              "Corresponds with UpgradeInfoEvent."
            ]
          },
          "description": "Event types to allowlist."
        }
      },
      "id": "Filter"
    },
    "SandboxConfig": {
      "type": "object",
      "properties": {
        "type": {
          "description": "Type of the sandbox to use for the node.",
          "enumDescriptions": [
            "Default value. This should not be used.",
            "Run sandbox using gvisor."
          ],
          "type": "string",
          "enum": [
            "UNSPECIFIED",
            "GVISOR"
          ]
        },
        "sandboxType": {
          "description": "Type of the sandbox to use for the node (e.g. 'gvisor')",
          "deprecated": true,
          "type": "string"
        }
      },
      "description": "SandboxConfig contains configurations of the sandbox to use for the node.",
      "id": "SandboxConfig"
    },
    "AdvancedDatapathObservabilityConfig": {
      "id": "AdvancedDatapathObservabilityConfig",
      "type": "object",
      "properties": {
        "enableRelay": {
          "description": "Enable Relay component",
          "type": "boolean"
        },
        "enableMetrics": {
          "type": "boolean",
          "description": "Expose flow metrics on nodes"
        },
        "relayMode": {
          "description": "Method used to make Relay available",
          "enumDescriptions": [
            "Default value. This shouldn't be used.",
            "disabled",
            "exposed via internal load balancer",
            "exposed via external load balancer"
          ],
          "type": "string",
          "enum": [
            "RELAY_MODE_UNSPECIFIED",
            "DISABLED",
            "INTERNAL_VPC_LB",
            "EXTERNAL_LB"
          ]
        }
      },
      "description": "AdvancedDatapathObservabilityConfig specifies configuration of observability features of advanced datapath."
    },
    "CrashLoopBackOffConfig": {
      "id": "CrashLoopBackOffConfig",
      "description": "Contains config to modify node-level parameters for container restart behavior.",
      "type": "object",
      "properties": {
        "maxContainerRestartPeriod": {
          "description": "Optional. The maximum duration the backoff delay can accrue to for container restarts, minimum 1 second, maximum 300 seconds. If not set, defaults to the internal crashloopbackoff maximum. 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 \"µs\"), \"ms\", \"s\", \"m\", \"h\". See https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#configurable-container-restart-delay for more details.",
          "type": "string"
        }
      }
    },
    "ServerConfig": {
      "type": "object",
      "properties": {
        "validMasterVersions": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "List of valid master versions, in descending order."
        },
        "defaultClusterVersion": {
          "description": "Version of Kubernetes the service deploys by default.",
          "type": "string"
        },
        "validImageTypes": {
          "description": "List of valid image types.",
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "validNodeVersions": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "List of valid node upgrade target versions, in descending order."
        },
        "channels": {
          "type": "array",
          "items": {
            "$ref": "ReleaseChannelConfig"
          },
          "description": "List of release channel configurations."
        },
        "defaultImageType": {
          "description": "Default image type.",
          "type": "string"
        },
        "windowsVersionMaps": {
          "description": "Maps of Kubernetes version and supported Windows server versions.",
          "additionalProperties": {
            "$ref": "WindowsVersions"
          },
          "type": "object"
        }
      },
      "description": "Kubernetes Engine service configuration.",
      "id": "ServerConfig"
    },
    "TimeWindow": {
      "id": "TimeWindow",
      "type": "object",
      "properties": {
        "endTime": {
          "description": "The time that the window ends. The end time should take place after the start time.",
          "format": "google-datetime",
          "type": "string"
        },
        "maintenanceExclusionOptions": {
          "description": "MaintenanceExclusionOptions provides maintenance exclusion related options.",
          "$ref": "MaintenanceExclusionOptions"
        },
        "startTime": {
          "type": "string",
          "description": "The time that the window first starts.",
          "format": "google-datetime"
        }
      },
      "description": "Represents an arbitrary window of time."
    },
    "QueuedProvisioning": {
      "id": "QueuedProvisioning",
      "description": "QueuedProvisioning defines the queued provisioning used by the node pool.",
      "type": "object",
      "properties": {
        "enabled": {
          "type": "boolean",
          "description": "Denotes that this node pool is QRM specific, meaning nodes can be only obtained through queuing via the Cluster Autoscaler ProvisioningRequest API."
        }
      }
    },
    "AutoIpamConfig": {
      "id": "AutoIpamConfig",
      "description": "AutoIpamConfig contains all information related to Auto IPAM",
      "type": "object",
      "properties": {
        "enabled": {
          "type": "boolean",
          "description": "The flag that enables Auto IPAM on this cluster"
        }
      }
    },
    "SecondaryBootDiskUpdateStrategy": {
      "description": "SecondaryBootDiskUpdateStrategy is a placeholder which will be extended in the future to define different options for updating secondary boot disks.",
      "type": "object",
      "properties": {},
      "id": "SecondaryBootDiskUpdateStrategy"
    },
    "CompatibilityStatus": {
      "type": "object",
      "properties": {
        "emulatedVersionTime": {
          "type": "string",
          "description": "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.",
          "readOnly": true,
          "format": "google-datetime"
        },
        "downgradableVersion": {
          "description": "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.",
          "readOnly": true,
          "type": "string"
        }
      },
      "description": "CompatibilityStatus is the status regarding the control plane's compatibility.",
      "id": "CompatibilityStatus"
    },
    "Autopilot": {
      "type": "object",
      "properties": {
        "enabled": {
          "description": "Enable Autopilot",
          "type": "boolean"
        },
        "workloadPolicyConfig": {
          "description": "WorkloadPolicyConfig is the configuration related to GCW workload policy",
          "$ref": "WorkloadPolicyConfig"
        },
        "privilegedAdmissionConfig": {
          "description": "PrivilegedAdmissionConfig is the configuration related to privileged admission control.",
          "$ref": "PrivilegedAdmissionConfig"
        },
        "conversionStatus": {
          "$ref": "AutopilotConversionStatus",
          "description": "Output only. ConversionStatus shows conversion status.",
          "readOnly": true
        },
        "clusterPolicyConfig": {
          "description": "ClusterPolicyConfig denotes cluster level policies that are enforced for the cluster.",
          "$ref": "ClusterPolicyConfig"
        }
      },
      "description": "Autopilot is the configuration for Autopilot settings on the cluster.",
      "id": "Autopilot"
    },
    "SetLabelsRequest": {
      "id": "SetLabelsRequest",
      "description": "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",
      "type": "object",
      "properties": {
        "zone": {
          "description": "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.",
          "deprecated": true,
          "type": "string"
        },
        "name": {
          "description": "The name (project, location, cluster name) of the cluster to set labels. Specified in the format `projects/*/locations/*/clusters/*`.",
          "type": "string"
        },
        "projectId": {
          "type": "string",
          "description": "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.",
          "deprecated": true
        },
        "resourceLabels": {
          "description": "Required. The labels to set for that cluster.",
          "additionalProperties": {
            "type": "string"
          },
          "type": "object"
        },
        "clusterId": {
          "type": "string",
          "description": "Deprecated. The name of the cluster. This field has been deprecated and replaced by the name field.",
          "deprecated": true
        },
        "labelFingerprint": {
          "type": "string",
          "description": "Required. 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."
        }
      }
    },
    "ShieldedInstanceConfig": {
      "type": "object",
      "properties": {
        "enableSecureBoot": {
          "description": "Defines whether the instance has Secure Boot enabled. Secure Boot helps ensure that the system only runs authentic software by verifying the digital signature of all boot components, and halting the boot process if signature verification fails.",
          "type": "boolean"
        },
        "enableIntegrityMonitoring": {
          "type": "boolean",
          "description": "Defines whether the instance has integrity monitoring enabled. Enables monitoring and attestation of the boot integrity of the instance. The attestation is performed against the integrity policy baseline. This baseline is initially derived from the implicitly trusted boot image when the instance is created."
        }
      },
      "description": "A set of Shielded Instance options.",
      "id": "ShieldedInstanceConfig"
    },
    "AdvancedMachineFeatures": {
      "id": "AdvancedMachineFeatures",
      "type": "object",
      "properties": {
        "enableNestedVirtualization": {
          "description": "Whether or not to enable nested virtualization (defaults to false).",
          "type": "boolean"
        },
        "performanceMonitoringUnit": {
          "type": "string",
          "enum": [
            "PERFORMANCE_MONITORING_UNIT_UNSPECIFIED",
            "ARCHITECTURAL",
            "STANDARD",
            "ENHANCED"
          ],
          "description": "Type of Performance Monitoring Unit (PMU) requested on node pool instances. If unset, PMU will not be available to the node.",
          "enumDescriptions": [
            "PMU not enabled.",
            "Architecturally defined non-LLC events.",
            "Most documented core/L2 events.",
            "Most documented core/L2 and LLC events."
          ]
        },
        "threadsPerCore": {
          "description": "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.",
          "format": "int64",
          "type": "string"
        }
      },
      "description": "Specifies options for controlling advanced machine features."
    },
    "KalmConfig": {
      "id": "KalmConfig",
      "description": "Configuration options for the KALM addon.",
      "type": "object",
      "properties": {
        "enabled": {
          "description": "Whether KALM is enabled for this cluster.",
          "deprecated": true,
          "type": "boolean"
        }
      }
    },
    "HttpLoadBalancing": {
      "id": "HttpLoadBalancing",
      "type": "object",
      "properties": {
        "disabled": {
          "type": "boolean",
          "description": "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."
        }
      },
      "description": "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."
    },
    "ReleaseChannel": {
      "id": "ReleaseChannel",
      "description": "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.",
      "type": "object",
      "properties": {
        "channel": {
          "type": "string",
          "enum": [
            "UNSPECIFIED",
            "RAPID",
            "REGULAR",
            "STABLE",
            "EXTENDED"
          ],
          "description": "channel specifies which release channel the cluster is subscribed to.",
          "enumDescriptions": [
            "No channel specified.",
            "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.",
            "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.",
            "Clusters subscribed to STABLE receive versions that are known to be stable and reliable in production.",
            "Clusters subscribed to EXTENDED receive extended support and availability for versions which are known to be stable and reliable in production."
          ]
        }
      }
    },
    "CloudRunConfig": {
      "type": "object",
      "properties": {
        "disabled": {
          "description": "Whether Cloud Run addon is enabled for this cluster.",
          "type": "boolean"
        },
        "loadBalancerType": {
          "type": "string",
          "enum": [
            "LOAD_BALANCER_TYPE_UNSPECIFIED",
            "LOAD_BALANCER_TYPE_EXTERNAL",
            "LOAD_BALANCER_TYPE_INTERNAL"
          ],
          "description": "Which load balancer type is installed for Cloud Run.",
          "enumDescriptions": [
            "Load balancer type for Cloud Run is unspecified.",
            "Install external load balancer for Cloud Run.",
            "Install internal load balancer for Cloud Run."
          ]
        }
      },
      "description": "Configuration options for the Cloud Run feature.",
      "id": "CloudRunConfig"
    },
    "AgentSandboxConfig": {
      "id": "AgentSandboxConfig",
      "type": "object",
      "properties": {
        "enabled": {
          "description": "Optional. Whether AgentSandbox is enabled for this cluster.",
          "type": "boolean"
        }
      },
      "description": "Configuration for the AgentSandbox addon."
    },
    "CertificateConfigPair": {
      "description": "CertificateConfigPair configures pairs of certificates, which is used for client certificate and key pairs under a registry.",
      "type": "object",
      "properties": {
        "key": {
          "description": "Key configures the client private key. Optional.",
          "$ref": "CertificateConfig"
        },
        "cert": {
          "description": "Cert configures the client certificate.",
          "$ref": "CertificateConfig"
        }
      },
      "id": "CertificateConfigPair"
    },
    "WorkloadCertificates": {
      "id": "WorkloadCertificates",
      "description": "Configuration for issuance of mTLS keys and certificates to Kubernetes pods.",
      "type": "object",
      "properties": {
        "enableCertificates": {
          "type": "boolean",
          "description": "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)."
        }
      }
    },
    "LocalNvmeSsdBlockConfig": {
      "type": "object",
      "properties": {
        "localSsdCount": {
          "description": "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.",
          "format": "int32",
          "type": "integer"
        }
      },
      "description": "LocalNvmeSsdBlockConfig contains configuration for using raw-block local NVMe SSDs",
      "id": "LocalNvmeSsdBlockConfig"
    },
    "IPAllocationPolicy": {
      "id": "IPAllocationPolicy",
      "description": "Configuration for controlling how IPs are allocated in the cluster.",
      "type": "object",
      "properties": {
        "servicesIpv4Cidr": {
          "type": "string",
          "description": "This field is deprecated, use services_ipv4_cidr_block.",
          "deprecated": true
        },
        "useRoutes": {
          "description": "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",
          "type": "boolean"
        },
        "defaultPodIpv4RangeUtilization": {
          "type": "number",
          "description": "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.",
          "readOnly": true,
          "format": "double"
        },
        "clusterSecondaryRangeName": {
          "description": "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 with use_ip_aliases and create_subnetwork is false.",
          "type": "string"
        },
        "servicesIpv4CidrBlock": {
          "type": "string",
          "description": "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](https://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": {
          "description": "[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 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.",
          "$ref": "PodCIDROverprovisionConfig"
        },
        "additionalIpRangesConfigs": {
          "description": "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.",
          "readOnly": true,
          "type": "array",
          "items": {
            "$ref": "AdditionalIPRangesConfig"
          }
        },
        "networkTierConfig": {
          "description": "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.",
          "$ref": "NetworkTierConfig"
        },
        "clusterIpv4Cidr": {
          "description": "This field is deprecated, use cluster_ipv4_cidr_block.",
          "deprecated": true,
          "type": "string"
        },
        "clusterIpv4CidrBlock": {
          "description": "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](https://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.",
          "type": "string"
        },
        "tpuIpv4CidrBlock": {
          "type": "string",
          "description": "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. If unspecified, the range will use 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`) 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.",
          "deprecated": true
        },
        "stackType": {
          "description": "IP stack type",
          "enumDescriptions": [
            "By default, the clusters will be IPV4 only",
            "The value used if the cluster is a IPV4 only",
            "The value used if the cluster is a dual stack cluster"
          ],
          "type": "string",
          "enum": [
            "STACK_TYPE_UNSPECIFIED",
            "IPV4",
            "IPV4_IPV6"
          ]
        },
        "nodeIpv4Cidr": {
          "description": "This field is deprecated, use node_ipv4_cidr_block.",
          "deprecated": true,
          "type": "string"
        },
        "servicesSecondaryRangeName": {
          "type": "string",
          "description": "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 and create_subnetwork is false."
        },
        "subnetworkName": {
          "description": "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.",
          "type": "string"
        },
        "nodeIpv4CidrBlock": {
          "type": "string",
          "description": "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](https://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."
        },
        "subnetIpv6CidrBlock": {
          "type": "string",
          "description": "Output only. The subnet's IPv6 CIDR block used by nodes and pods.",
          "readOnly": true
        },
        "additionalPodRangesConfig": {
          "$ref": "AdditionalPodRangesConfig",
          "description": "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.",
          "readOnly": true
        },
        "useIpAliases": {
          "description": "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",
          "type": "boolean"
        },
        "allowRouteOverlap": {
          "type": "boolean",
          "description": "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."
        },
        "createSubnetwork": {
          "description": "Whether a new subnetwork will be created automatically for the cluster. This field is only applicable when `use_ip_aliases` is true.",
          "type": "boolean"
        },
        "ipv6AccessType": {
          "type": "string",
          "enum": [
            "IPV6_ACCESS_TYPE_UNSPECIFIED",
            "INTERNAL",
            "EXTERNAL"
          ],
          "description": "The ipv6 access type (internal or external) when create_subnetwork is true",
          "enumDescriptions": [
            "Default value, will be defaulted as type external.",
            "Access type internal (all v6 addresses are internal IPs)",
            "Access type external (all v6 addresses are external IPs)"
          ]
        },
        "servicesIpv6CidrBlock": {
          "description": "Output only. The services IPv6 CIDR block for the cluster.",
          "readOnly": true,
          "type": "string"
        },
        "autoIpamConfig": {
          "description": "Optional. AutoIpamConfig contains all information related to Auto IPAM",
          "$ref": "AutoIpamConfig"
        }
      }
    },
    "UsableSubnetworkSecondaryRange": {
      "id": "UsableSubnetworkSecondaryRange",
      "type": "object",
      "properties": {
        "rangeName": {
          "type": "string",
          "description": "The name associated with this subnetwork secondary range, used when adding an alias IP range to a VM instance."
        },
        "status": {
          "type": "string",
          "enum": [
            "UNKNOWN",
            "UNUSED",
            "IN_USE_SERVICE",
            "IN_USE_SHAREABLE_POD",
            "IN_USE_MANAGED_POD"
          ],
          "description": "This field is to determine the status of the secondary range programmably.",
          "enumDescriptions": [
            "UNKNOWN is the zero value of the Status enum. It's not a valid status.",
            "UNUSED denotes that this range is unclaimed by any cluster.",
            "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 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 denotes this range was created by GKE and is claimed for pods. It cannot be used for other clusters."
          ]
        },
        "ipCidrRange": {
          "description": "The range of IP addresses belonging to this subnetwork secondary range.",
          "type": "string"
        }
      },
      "description": "Secondary IP range of a usable subnetwork."
    },
    "MemoryManager": {
      "id": "MemoryManager",
      "type": "object",
      "properties": {
        "policy": {
          "description": "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.",
          "type": "string"
        }
      },
      "description": "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/)."
    },
    "DnsCacheConfig": {
      "id": "DnsCacheConfig",
      "description": "Configuration for NodeLocal DNSCache",
      "type": "object",
      "properties": {
        "enabled": {
          "type": "boolean",
          "description": "Whether NodeLocal DNSCache is enabled for this cluster."
        }
      }
    },
    "MaintenanceExclusionOptions": {
      "description": "Represents the Maintenance exclusion option.",
      "type": "object",
      "properties": {
        "scope": {
          "description": "Scope specifies the upgrade scope which upgrades are blocked by the exclusion.",
          "enumDescriptions": [
            "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 excludes all minor upgrades for the cluster, only patches are allowed.",
            "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."
          ],
          "type": "string",
          "enum": [
            "NO_UPGRADES",
            "NO_MINOR_UPGRADES",
            "NO_MINOR_OR_NODE_UPGRADES"
          ]
        },
        "endTimeBehavior": {
          "type": "string",
          "enum": [
            "END_TIME_BEHAVIOR_UNSPECIFIED",
            "UNTIL_END_OF_SUPPORT"
          ],
          "description": "EndTimeBehavior specifies the behavior of the exclusion end time.",
          "enumDescriptions": [
            "END_TIME_BEHAVIOR_UNSPECIFIED is the default behavior, which is fixed end time.",
            "UNTIL_END_OF_SUPPORT means the exclusion will be in effect until the end of the support of the cluster's current version."
          ]
        }
      },
      "id": "MaintenanceExclusionOptions"
    },
    "DefaultSnatStatus": {
      "id": "DefaultSnatStatus",
      "type": "object",
      "properties": {
        "disabled": {
          "description": "Disables cluster default sNAT rules.",
          "type": "boolean"
        }
      },
      "description": "DefaultSnatStatus contains the desired state of whether default sNAT should be disabled on the cluster."
    },
    "WindowsNodeConfig": {
      "id": "WindowsNodeConfig",
      "description": "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.",
      "type": "object",
      "properties": {
        "osVersion": {
          "type": "string",
          "enum": [
            "OS_VERSION_UNSPECIFIED",
            "OS_VERSION_LTSC2019",
            "OS_VERSION_LTSC2022"
          ],
          "description": "OSVersion specifies the Windows node config to be used on the node.",
          "enumDescriptions": [
            "When OSVersion is not specified",
            "LTSC2019 specifies to use LTSC2019 as the Windows Servercore Base Image.",
            "LTSC2022 specifies to use LTSC2022 as the Windows Servercore Base Image."
          ]
        }
      }
    },
    "DatabaseEncryption": {
      "description": "Configuration of etcd encryption.",
      "type": "object",
      "properties": {
        "lastOperationErrors": {
          "description": "Output only. Records errors seen during DatabaseEncryption update operations.",
          "readOnly": true,
          "type": "array",
          "items": {
            "$ref": "OperationError"
          }
        },
        "state": {
          "type": "string",
          "enum": [
            "UNKNOWN",
            "ENCRYPTED",
            "DECRYPTED",
            "ALL_OBJECTS_ENCRYPTION_ENABLED"
          ],
          "description": "The desired state of etcd encryption.",
          "enumDescriptions": [
            "Should never be set",
            "Secrets in etcd are encrypted.",
            "Secrets in etcd are stored in plain text (at etcd level) - this is unrelated to Compute Engine level full disk encryption.",
            "Encryption of all objects in the storage is enabled. There is no guarantee that all objects in the storage are encrypted, but eventually they will be."
          ]
        },
        "decryptionKeys": {
          "description": "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.",
          "readOnly": true,
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "keyName": {
          "type": "string",
          "description": "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"
        },
        "currentState": {
          "readOnly": true,
          "description": "Output only. The current state of etcd encryption.",
          "enumDescriptions": [
            "Should never be set",
            "Secrets in etcd are encrypted.",
            "Secrets in etcd are stored in plain text (at etcd level) - this is unrelated to Compute Engine level full disk encryption.",
            "Encryption (or re-encryption with a different CloudKMS key) of Secrets is in progress.",
            "Encryption (or re-encryption with a different CloudKMS key) of Secrets in etcd encountered an error.",
            "De-crypting Secrets to plain text in etcd is in progress.",
            "De-crypting Secrets to plain text in etcd encountered an error.",
            "Encryption of all objects in the storage is enabled. It does not guarantee that all objects in the storage are encrypted, but eventually they will be.",
            "Enablement of the encryption of all objects in storage is pending.",
            "Enabling encryption of all objects in storage encountered an error."
          ],
          "type": "string",
          "enum": [
            "CURRENT_STATE_UNSPECIFIED",
            "CURRENT_STATE_ENCRYPTED",
            "CURRENT_STATE_DECRYPTED",
            "CURRENT_STATE_ENCRYPTION_PENDING",
            "CURRENT_STATE_ENCRYPTION_ERROR",
            "CURRENT_STATE_DECRYPTION_PENDING",
            "CURRENT_STATE_DECRYPTION_ERROR",
            "CURRENT_STATE_ALL_OBJECTS_ENCRYPTION_ENABLED",
            "CURRENT_STATE_ALL_OBJECTS_ENCRYPTION_PENDING",
            "CURRENT_STATE_ALL_OBJECTS_ENCRYPTION_ERROR"
          ]
        }
      },
      "id": "DatabaseEncryption"
    },
    "UpgradeInfoEvent": {
      "id": "UpgradeInfoEvent",
      "type": "object",
      "properties": {
        "operation": {
          "description": "The operation associated with this upgrade.",
          "type": "string"
        },
        "currentEmulatedVersion": {
          "description": "The current emulated version before the upgrade.",
          "type": "string"
        },
        "description": {
          "description": "A brief description of the event.",
          "type": "string"
        },
        "standardSupportEndTime": {
          "description": "The end of standard support timestamp.",
          "format": "google-datetime",
          "type": "string"
        },
        "targetVersion": {
          "description": "The target version for the upgrade.",
          "type": "string"
        },
        "targetEmulatedVersion": {
          "type": "string",
          "description": "The target emulated version for the upgrade."
        },
        "startTime": {
          "description": "The time when the operation was started.",
          "format": "google-datetime",
          "type": "string"
        },
        "currentVersion": {
          "type": "string",
          "description": "The current version before the upgrade."
        },
        "extendedSupportEndTime": {
          "type": "string",
          "description": "The end of extended support timestamp.",
          "format": "google-datetime"
        },
        "disruptionEvent": {
          "description": "The information about the disruption event. This field is only populated when event_type is DISRUPTION_EVENT.",
          "$ref": "DisruptionEvent"
        },
        "resourceType": {
          "type": "string",
          "enum": [
            "UPGRADE_RESOURCE_TYPE_UNSPECIFIED",
            "MASTER",
            "NODE_POOL"
          ],
          "description": "The resource type associated with the upgrade.",
          "enumDescriptions": [
            "Default value. This shouldn't be used.",
            "Master / control plane",
            "Node pool"
          ]
        },
        "resource": {
          "type": "string",
          "description": "Optional relative path to the resource. For example in node pool upgrades, the relative path of the node pool."
        },
        "endTime": {
          "description": "The time when the operation ended.",
          "format": "google-datetime",
          "type": "string"
        },
        "state": {
          "description": "Output only. The state of the upgrade.",
          "enumDescriptions": [
            "STATE_UNSPECIFIED indicates the state is unspecified.",
            "SCHEDULED indicates the upgrade was scheduled.",
            "STARTED indicates the upgrade has started.",
            "SUCCEEDED indicates the upgrade has completed successfully.",
            "FAILED indicates the upgrade has failed.",
            "CANCELED indicates the upgrade has canceled."
          ],
          "type": "string",
          "enum": [
            "STATE_UNSPECIFIED",
            "SCHEDULED",
            "STARTED",
            "SUCCEEDED",
            "FAILED",
            "CANCELED"
          ],
          "readOnly": true
        },
        "eventType": {
          "type": "string",
          "enum": [
            "EVENT_TYPE_UNSPECIFIED",
            "END_OF_SUPPORT",
            "COS_MILESTONE_VERSION_UPDATE",
            "UPGRADE_LIFECYCLE",
            "DISRUPTION_EVENT"
          ],
          "description": "The type of the event.",
          "enumDescriptions": [
            "EVENT_TYPE_UNSPECIFIED indicates the event type is unspecified.",
            "END_OF_SUPPORT indicates GKE version reaches end of support, check standard_support_end_time and extended_support_end_time for more details.",
            "COS_MILESTONE_VERSION_UPDATE indicates that the COS node image will update COS milestone version for new patch versions starting with the one in the description.",
            "UPGRADE_LIFECYCLE indicates the event is about the upgrade lifecycle.",
            "DISRUPTION_EVENT indicates the event is about the disruption."
          ]
        }
      },
      "description": "UpgradeInfoEvent is a notification sent to customers about the upgrade information of a resource."
    },
    "WorkloadPolicyConfig": {
      "id": "WorkloadPolicyConfig",
      "description": "WorkloadPolicyConfig is the configuration related to GCW workload policy",
      "type": "object",
      "properties": {
        "allowNetAdmin": {
          "description": "If true, workloads can use NET_ADMIN capability.",
          "type": "boolean"
        },
        "autopilotCompatibilityAuditingEnabled": {
          "type": "boolean",
          "description": "If true, enables the GCW Auditor that audits workloads on standard clusters."
        }
      }
    },
    "NodePoolUpgradeInfo": {
      "type": "object",
      "properties": {
        "upgradeDetails": {
          "type": "array",
          "items": {
            "$ref": "UpgradeDetails"
          },
          "description": "The list of past auto upgrades."
        },
        "endOfStandardSupportTimestamp": {
          "type": "string",
          "description": "The node pool's current minor version's end of standard support timestamp."
        },
        "autoUpgradeStatus": {
          "description": "The auto upgrade status.",
          "type": "array",
          "items": {
            "enumDescriptions": [
              "UNKNOWN indicates an unknown status.",
              "ACTIVE indicates an active status.",
              "MINOR_UPGRADE_PAUSED indicates the minor version upgrade is paused.",
              "UPGRADE_PAUSED indicates the upgrade is paused."
            ],
            "type": "string",
            "enum": [
              "UNKNOWN",
              "ACTIVE",
              "MINOR_UPGRADE_PAUSED",
              "UPGRADE_PAUSED"
            ]
          }
        },
        "endOfExtendedSupportTimestamp": {
          "type": "string",
          "description": "The node pool's current minor version's end of extended support timestamp."
        },
        "minorTargetVersion": {
          "type": "string",
          "description": "minor_target_version indicates the target version for minor upgrade."
        },
        "patchTargetVersion": {
          "description": "patch_target_version indicates the target version for patch upgrade.",
          "type": "string"
        },
        "pausedReason": {
          "type": "array",
          "items": {
            "enumDescriptions": [
              "AUTO_UPGRADE_PAUSED_REASON_UNSPECIFIED indicates an unspecified reason.",
              "MAINTENANCE_WINDOW indicates the cluster is outside customer maintenance window.",
              "MAINTENANCE_EXCLUSION_NO_UPGRADES indicates the cluster is in a maintenance exclusion with scope NO_UPGRADES.",
              "MAINTENANCE_EXCLUSION_NO_MINOR_UPGRADES indicates the cluster is in a maintenance exclusion with scope NO_MINOR_UPGRADES.",
              "SYSTEM_CONFIG indicates the cluster upgrade is paused by system config."
            ],
            "type": "string",
            "enum": [
              "AUTO_UPGRADE_PAUSED_REASON_UNSPECIFIED",
              "MAINTENANCE_WINDOW",
              "MAINTENANCE_EXCLUSION_NO_UPGRADES",
              "MAINTENANCE_EXCLUSION_NO_MINOR_UPGRADES",
              "SYSTEM_CONFIG"
            ]
          },
          "description": "The auto upgrade paused reason."
        }
      },
      "description": "NodePoolUpgradeInfo contains the upgrade information of a node pool.",
      "id": "NodePoolUpgradeInfo"
    },
    "GkeBackupAgentConfig": {
      "id": "GkeBackupAgentConfig",
      "description": "Configuration for the Backup for GKE Agent.",
      "type": "object",
      "properties": {
        "enabled": {
          "description": "Whether the Backup for GKE agent is enabled for this cluster.",
          "type": "boolean"
        }
      }
    },
    "UpdateClusterRequest": {
      "type": "object",
      "properties": {
        "update": {
          "description": "Required. A description of the update.",
          "$ref": "ClusterUpdate"
        },
        "clusterId": {
          "description": "Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field.",
          "deprecated": true,
          "type": "string"
        },
        "name": {
          "type": "string",
          "description": "The name (project, location, cluster) of the cluster to update. Specified in the format `projects/*/locations/*/clusters/*`."
        },
        "projectId": {
          "type": "string",
          "description": "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.",
          "deprecated": true
        },
        "zone": {
          "type": "string",
          "description": "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.",
          "deprecated": true
        }
      },
      "description": "UpdateClusterRequest updates the settings of a cluster.",
      "id": "UpdateClusterRequest"
    },
    "NetworkPerformanceConfig": {
      "type": "object",
      "properties": {
        "externalIpEgressBandwidthTier": {
          "description": "Specifies the network bandwidth tier for the NodePool for traffic to external/public IP addresses.",
          "enumDescriptions": [
            "Default value",
            "Higher bandwidth, actual values based on VM size."
          ],
          "type": "string",
          "enum": [
            "TIER_UNSPECIFIED",
            "TIER_1"
          ]
        },
        "totalEgressBandwidthTier": {
          "type": "string",
          "enum": [
            "TIER_UNSPECIFIED",
            "TIER_1"
          ],
          "description": "Specifies the total network bandwidth tier for the NodePool.",
          "enumDescriptions": [
            "Default value",
            "Higher bandwidth, actual values based on VM size."
          ]
        }
      },
      "description": "Configuration of all network bandwidth tiers",
      "id": "NetworkPerformanceConfig"
    },
    "GPUSharingConfig": {
      "id": "GPUSharingConfig",
      "type": "object",
      "properties": {
        "maxSharedClientsPerGpu": {
          "type": "string",
          "description": "The max number of containers that can share a physical GPU.",
          "format": "int64"
        },
        "gpuSharingStrategy": {
          "type": "string",
          "enum": [
            "GPU_SHARING_STRATEGY_UNSPECIFIED",
            "TIME_SHARING",
            "MPS"
          ],
          "description": "The type of GPU sharing strategy to enable on the GPU node.",
          "enumDescriptions": [
            "Default value.",
            "GPUs are time-shared between containers.",
            "GPUs are shared between containers with NVIDIA MPS."
          ]
        }
      },
      "description": "GPUSharingConfig represents the GPU sharing configuration for Hardware Accelerators."
    },
    "ResourceUsageExportConfig": {
      "id": "ResourceUsageExportConfig",
      "description": "Configuration for exporting cluster resource usages.",
      "type": "object",
      "properties": {
        "bigqueryDestination": {
          "description": "Configuration to use BigQuery as usage export destination.",
          "$ref": "BigQueryDestination"
        },
        "consumptionMeteringConfig": {
          "description": "Configuration to enable resource consumption metering.",
          "$ref": "ConsumptionMeteringConfig"
        },
        "enableNetworkEgressMetering": {
          "type": "boolean",
          "description": "Whether to enable network egress metering for this cluster. If enabled, a daemonset will be created in the cluster to meter network egress traffic."
        }
      }
    },
    "AnonymousAuthenticationConfig": {
      "id": "AnonymousAuthenticationConfig",
      "description": "AnonymousAuthenticationConfig defines the settings needed to limit endpoints that allow anonymous authentication.",
      "type": "object",
      "properties": {
        "mode": {
          "description": "Defines the mode of limiting anonymous access in the cluster.",
          "enumDescriptions": [
            "Default value not specified.",
            "Anonymous authentication is allowed for all endpoints.",
            "Anonymous authentication is allowed for only health check endpoints."
          ],
          "type": "string",
          "enum": [
            "MODE_UNSPECIFIED",
            "ENABLED",
            "LIMITED"
          ]
        }
      }
    },
    "LinuxNodeConfig": {
      "description": "Parameters that can be configured on Linux nodes.",
      "type": "object",
      "properties": {
        "sysctls": {
          "type": "object",
          "description": "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",
          "additionalProperties": {
            "type": "string"
          }
        },
        "nodeKernelModuleLoading": {
          "description": "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.",
          "$ref": "NodeKernelModuleLoading"
        },
        "transparentHugepageDefrag": {
          "description": "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.",
          "enumDescriptions": [
            "Default value. GKE will not modify the kernel configuration.",
            "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.",
            "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.",
            "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.",
            "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.",
            "It means that an application will never enter direct reclaim or compaction."
          ],
          "type": "string",
          "enum": [
            "TRANSPARENT_HUGEPAGE_DEFRAG_UNSPECIFIED",
            "TRANSPARENT_HUGEPAGE_DEFRAG_ALWAYS",
            "TRANSPARENT_HUGEPAGE_DEFRAG_DEFER",
            "TRANSPARENT_HUGEPAGE_DEFRAG_DEFER_WITH_MADVISE",
            "TRANSPARENT_HUGEPAGE_DEFRAG_MADVISE",
            "TRANSPARENT_HUGEPAGE_DEFRAG_NEVER"
          ]
        },
        "swapConfig": {
          "description": "Optional. Enables and configures swap space on nodes. If omitted, swap is disabled.",
          "$ref": "SwapConfig"
        },
        "transparentHugepageEnabled": {
          "description": "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.",
          "enumDescriptions": [
            "Default value. GKE will not modify the kernel configuration.",
            "Transparent hugepage support for anonymous memory is enabled system wide.",
            "Transparent hugepage support for anonymous memory is enabled inside MADV_HUGEPAGE regions. This is the default kernel configuration.",
            "Transparent hugepage support for anonymous memory is disabled."
          ],
          "type": "string",
          "enum": [
            "TRANSPARENT_HUGEPAGE_ENABLED_UNSPECIFIED",
            "TRANSPARENT_HUGEPAGE_ENABLED_ALWAYS",
            "TRANSPARENT_HUGEPAGE_ENABLED_MADVISE",
            "TRANSPARENT_HUGEPAGE_ENABLED_NEVER"
          ]
        },
        "accurateTimeConfig": {
          "description": "Optional. The accurate time configuration for the node pool.",
          "$ref": "AccurateTimeConfig"
        },
        "cgroupMode": {
          "description": "cgroup_mode specifies the cgroup mode to be used on the node.",
          "enumDescriptions": [
            "CGROUP_MODE_UNSPECIFIED is when unspecified cgroup configuration is used. The default for the GKE node OS image will be used.",
            "CGROUP_MODE_V1 specifies to use cgroupv1 for the cgroup configuration on the node image.",
            "CGROUP_MODE_V2 specifies to use cgroupv2 for the cgroup configuration on the node image."
          ],
          "type": "string",
          "enum": [
            "CGROUP_MODE_UNSPECIFIED",
            "CGROUP_MODE_V1",
            "CGROUP_MODE_V2"
          ]
        },
        "hugepages": {
          "description": "Optional. Amounts for 2M and 1G hugepages",
          "$ref": "HugepagesConfig"
        }
      },
      "id": "LinuxNodeConfig"
    },
    "VirtualNIC": {
      "id": "VirtualNIC",
      "description": "Configuration of gVNIC feature.",
      "type": "object",
      "properties": {
        "enabled": {
          "description": "Whether gVNIC features are enabled in the node pool.",
          "type": "boolean"
        }
      }
    },
    "WorkloadALTSConfig": {
      "id": "WorkloadALTSConfig",
      "description": "Configuration for direct-path (via ALTS) with workload identity. This feature is not officially supported for external customers in Kubernetes Engine when using Workload Identity.",
      "type": "object",
      "properties": {
        "enableAlts": {
          "type": "boolean",
          "description": "enable_alts controls whether the alts handshaker should be enabled or not for direct-path. Requires Workload Identity (workload_pool must be non-empty)."
        }
      }
    },
    "StatusCondition": {
      "type": "object",
      "properties": {
        "code": {
          "deprecated": true,
          "description": "Machine-friendly representation of the condition Deprecated. Use canonical_code instead.",
          "enumDescriptions": [
            "UNKNOWN indicates a generic condition.",
            "GCE_STOCKOUT indicates that Google Compute Engine resources are temporarily unavailable.",
            "GKE_SERVICE_ACCOUNT_DELETED indicates that the user deleted their robot service account.",
            "Google Compute Engine quota was exceeded.",
            "Cluster state was manually changed by an SRE due to a system logic error.",
            "Unable to perform an encrypt operation against the CloudKMS key used for etcd level encryption.",
            "Cluster CA is expiring soon.",
            "Node service account is missing permissions.",
            "Cloud KMS key version used for etcd level encryption has been destroyed. This is a permanent error."
          ],
          "type": "string",
          "enum": [
            "UNKNOWN",
            "GCE_STOCKOUT",
            "GKE_SERVICE_ACCOUNT_DELETED",
            "GCE_QUOTA_EXCEEDED",
            "SET_BY_OPERATOR",
            "CLOUD_KMS_KEY_ERROR",
            "CA_EXPIRING",
            "NODE_SERVICE_ACCOUNT_MISSING_PERMISSIONS",
            "CLOUD_KMS_KEY_DESTROYED"
          ]
        },
        "canonicalCode": {
          "type": "string",
          "enum": [
            "OK",
            "CANCELLED",
            "UNKNOWN",
            "INVALID_ARGUMENT",
            "DEADLINE_EXCEEDED",
            "NOT_FOUND",
            "ALREADY_EXISTS",
            "PERMISSION_DENIED",
            "UNAUTHENTICATED",
            "RESOURCE_EXHAUSTED",
            "FAILED_PRECONDITION",
            "ABORTED",
            "OUT_OF_RANGE",
            "UNIMPLEMENTED",
            "INTERNAL",
            "UNAVAILABLE",
            "DATA_LOSS"
          ],
          "description": "Canonical code of the condition.",
          "enumDescriptions": [
            "Not an error; returned on success. HTTP Mapping: 200 OK",
            "The operation was cancelled, typically by the caller. HTTP Mapping: 499 Client Closed Request",
            "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",
            "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",
            "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",
            "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",
            "The entity that a client attempted to create (e.g., file or directory) already exists. HTTP Mapping: 409 Conflict",
            "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",
            "The request does not have valid authentication credentials for the operation. HTTP Mapping: 401 Unauthorized",
            "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",
            "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",
            "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",
            "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",
            "The operation is not implemented or is not supported/enabled in this service. HTTP Mapping: 501 Not Implemented",
            "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",
            "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",
            "Unrecoverable data loss or corruption. HTTP Mapping: 500 Internal Server Error"
          ]
        },
        "message": {
          "type": "string",
          "description": "Human-friendly representation of the condition"
        }
      },
      "description": "StatusCondition describes why a cluster or a node pool has a certain status (e.g., ERROR or DEGRADED).",
      "id": "StatusCondition"
    },
    "GcpFilestoreCsiDriverConfig": {
      "id": "GcpFilestoreCsiDriverConfig",
      "type": "object",
      "properties": {
        "enabled": {
          "type": "boolean",
          "description": "Whether the Filestore CSI driver is enabled for this cluster."
        }
      },
      "description": "Configuration for the Filestore CSI driver."
    },
    "UpdateNodePoolRequest": {
      "type": "object",
      "properties": {
        "etag": {
          "description": "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.",
          "type": "string"
        },
        "gcfsConfig": {
          "description": "GCFS config.",
          "$ref": "GcfsConfig"
        },
        "nodeDrainConfig": {
          "description": "The desired node drain configuration for nodes in the node pool.",
          "$ref": "NodeDrainConfig"
        },
        "locations": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "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."
        },
        "windowsNodeConfig": {
          "description": "Parameters that can be configured on Windows nodes.",
          "$ref": "WindowsNodeConfig"
        },
        "bootDisk": {
          "description": "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.",
          "$ref": "BootDisk"
        },
        "projectId": {
          "description": "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.",
          "deprecated": true,
          "type": "string"
        },
        "imageType": {
          "description": "Required. The desired image type for the node pool. Please see https://cloud.google.com/kubernetes-engine/docs/concepts/node-images for available image types.",
          "type": "string"
        },
        "nodeVersion": {
          "description": "Required. 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",
          "type": "string"
        },
        "zone": {
          "description": "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.",
          "deprecated": true,
          "type": "string"
        },
        "labels": {
          "description": "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.",
          "$ref": "NodeLabels"
        },
        "consolidationDelay": {
          "type": "string",
          "description": "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.",
          "format": "google-duration"
        },
        "fastSocket": {
          "description": "Enable or disable NCCL fast socket for the node pool.",
          "$ref": "FastSocket"
        },
        "diskType": {
          "type": "string",
          "description": "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."
        },
        "resourceLabels": {
          "description": "The resource labels for the node pool to use to annotate any related Google Compute Engine resources.",
          "$ref": "ResourceLabels"
        },
        "upgradeSettings": {
          "description": "Upgrade settings control disruption and speed of the upgrade.",
          "$ref": "UpgradeSettings"
        },
        "taints": {
          "description": "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.",
          "$ref": "NodeTaints"
        },
        "linuxNodeConfig": {
          "description": "Parameters that can be configured on Linux nodes.",
          "$ref": "LinuxNodeConfig"
        },
        "loggingConfig": {
          "description": "Logging configuration.",
          "$ref": "NodePoolLoggingConfig"
        },
        "tags": {
          "description": "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.",
          "$ref": "NetworkTags"
        },
        "clusterId": {
          "description": "Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field.",
          "deprecated": true,
          "type": "string"
        },
        "machineType": {
          "type": "string",
          "description": "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."
        },
        "containerdConfig": {
          "description": "The desired containerd config for nodes in the node pool. Initiates an upgrade operation that recreates the nodes with the new config.",
          "$ref": "ContainerdConfig"
        },
        "flexStart": {
          "type": "boolean",
          "description": "Flex Start flag for enabling Flex Start VM."
        },
        "storagePools": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "List of Storage Pools where boot disks are provisioned. Existing Storage Pools will be replaced with storage-pools."
        },
        "nodeNetworkConfig": {
          "description": "Node network config.",
          "$ref": "NodeNetworkConfig"
        },
        "workloadMetadataConfig": {
          "description": "The desired workload metadata config for the node pool.",
          "$ref": "WorkloadMetadataConfig"
        },
        "resourceManagerTags": {
          "description": "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.",
          "$ref": "ResourceManagerTags"
        },
        "queuedProvisioning": {
          "description": "Specifies the configuration of queued provisioning.",
          "$ref": "QueuedProvisioning"
        },
        "accelerators": {
          "description": "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.",
          "type": "array",
          "items": {
            "$ref": "AcceleratorConfig"
          }
        },
        "maxRunDuration": {
          "type": "string",
          "description": "The maximum duration for the nodes to exist. If unspecified, the nodes can exist indefinitely.",
          "format": "google-duration"
        },
        "gvnic": {
          "description": "Enable or disable gvnic on the node pool.",
          "$ref": "VirtualNIC"
        },
        "nodePoolId": {
          "description": "Deprecated. The name of the node pool to upgrade. This field has been deprecated and replaced by the name field.",
          "deprecated": true,
          "type": "string"
        },
        "kubeletConfig": {
          "description": "Node kubelet configs.",
          "$ref": "NodeKubeletConfig"
        },
        "name": {
          "type": "string",
          "description": "The name (project, location, cluster, node pool) of the node pool to update. Specified in the format `projects/*/locations/*/clusters/*/nodePools/*`."
        },
        "diskSizeGb": {
          "type": "string",
          "description": "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.",
          "format": "int64"
        },
        "confidentialNodes": {
          "description": "Confidential nodes config. All the nodes in the node pool will be Confidential VM once enabled.",
          "$ref": "ConfidentialNodes"
        }
      },
      "description": "SetNodePoolVersionRequest updates the version of a node pool.",
      "id": "UpdateNodePoolRequest"
    },
    "CreateNodePoolRequest": {
      "id": "CreateNodePoolRequest",
      "type": "object",
      "properties": {
        "projectId": {
          "type": "string",
          "description": "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.",
          "deprecated": true
        },
        "zone": {
          "type": "string",
          "description": "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.",
          "deprecated": true
        },
        "parent": {
          "type": "string",
          "description": "The parent (project, location, cluster name) where the node pool will be created. Specified in the format `projects/*/locations/*/clusters/*`."
        },
        "nodePool": {
          "description": "Required. The node pool to create.",
          "$ref": "NodePool"
        },
        "clusterId": {
          "type": "string",
          "description": "Deprecated. The name of the cluster. This field has been deprecated and replaced by the parent field.",
          "deprecated": true
        }
      },
      "description": "CreateNodePoolRequest creates a node pool for a cluster."
    },
    "UpgradeSettings": {
      "id": "UpgradeSettings",
      "type": "object",
      "properties": {
        "maxUnavailable": {
          "description": "The maximum number of nodes that can be simultaneously unavailable during the upgrade process. A node is considered available if its status is Ready.",
          "format": "int32",
          "type": "integer"
        },
        "strategy": {
          "description": "Update strategy of the node pool.",
          "enumDescriptions": [
            "Default value if unset. GKE internally defaults the update strategy to SURGE for unspecified strategies.",
            "blue-green upgrade.",
            "SURGE is the traditional way of upgrading a node pool. max_surge and max_unavailable determines the level of upgrade parallelism.",
            "SHORT_LIVED is the dedicated upgrade strategy for QueuedProvisioning and flex start node pools scaled up only by enqueueing to the Dynamic Workload Scheduler (DWS)."
          ],
          "type": "string",
          "enum": [
            "NODE_POOL_UPDATE_STRATEGY_UNSPECIFIED",
            "BLUE_GREEN",
            "SURGE",
            "SHORT_LIVED"
          ]
        },
        "maxSurge": {
          "type": "integer",
          "description": "The maximum number of nodes that can be created beyond the current size of the node pool during the upgrade process.",
          "format": "int32"
        },
        "blueGreenSettings": {
          "description": "Settings for blue-green upgrade strategy.",
          "$ref": "BlueGreenSettings"
        }
      },
      "description": "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.) Consider a hypothetical node pool with 5 nodes having maxSurge=2, maxUnavailable=1. This means the upgrade process upgrades 3 nodes simultaneously. It creates 2 additional (upgraded) nodes, then it brings down 3 old (not yet upgraded) nodes at the same time. This ensures that there are always at least 4 nodes available. 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."
    },
    "UpdateInfo": {
      "description": "UpdateInfo contains resource (instance groups, etc), status and other intermediate information relevant to a node pool upgrade.",
      "type": "object",
      "properties": {
        "blueGreenInfo": {
          "description": "Information of a blue-green upgrade.",
          "$ref": "BlueGreenInfo"
        }
      },
      "id": "UpdateInfo"
    },
    "PodCIDROverprovisionConfig": {
      "id": "PodCIDROverprovisionConfig",
      "description": "[PRIVATE FIELD] Config for pod CIDR size overprovisioning.",
      "type": "object",
      "properties": {
        "disable": {
          "description": "Whether Pod CIDR overprovisioning is disabled. Note: Pod CIDR overprovisioning is enabled by default.",
          "type": "boolean"
        }
      }
    },
    "AdditionalNodeNetworkConfig": {
      "id": "AdditionalNodeNetworkConfig",
      "type": "object",
      "properties": {
        "network": {
          "description": "Name of the VPC where the additional interface belongs",
          "type": "string"
        },
        "subnetwork": {
          "description": "Name of the subnetwork where the additional interface belongs",
          "type": "string"
        }
      },
      "description": "AdditionalNodeNetworkConfig is the configuration for additional node networks within the NodeNetworkConfig message"
    },
    "BlueGreenSettings": {
      "id": "BlueGreenSettings",
      "description": "Settings for blue-green upgrade.",
      "type": "object",
      "properties": {
        "standardRolloutPolicy": {
          "description": "Standard policy for the blue-green upgrade.",
          "$ref": "StandardRolloutPolicy"
        },
        "autoscaledRolloutPolicy": {
          "description": "Autoscaled policy for cluster autoscaler enabled blue-green upgrade.",
          "$ref": "AutoscaledRolloutPolicy"
        },
        "nodePoolSoakDuration": {
          "description": "Time needed after draining entire blue pool. After this period, blue pool will be cleaned up.",
          "format": "google-duration",
          "type": "string"
        }
      }
    },
    "MonitoringConfig": {
      "id": "MonitoringConfig",
      "type": "object",
      "properties": {
        "managedPrometheusConfig": {
          "description": "Enable Google Cloud Managed Service for Prometheus in the cluster.",
          "$ref": "ManagedPrometheusConfig"
        },
        "componentConfig": {
          "description": "Monitoring components configuration",
          "$ref": "MonitoringComponentConfig"
        },
        "advancedDatapathObservabilityConfig": {
          "description": "Configuration of Advanced Datapath Observability features.",
          "$ref": "AdvancedDatapathObservabilityConfig"
        }
      },
      "description": "MonitoringConfig is cluster monitoring configuration."
    },
    "ListOperationsResponse": {
      "id": "ListOperationsResponse",
      "type": "object",
      "properties": {
        "operations": {
          "type": "array",
          "items": {
            "$ref": "Operation"
          },
          "description": "A list of operations in the project in the specified zone."
        },
        "missingZones": {
          "description": "If any zones are listed here, the list of operations returned may be missing the operations from those zones.",
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      },
      "description": "ListOperationsResponse is the result of ListOperationsRequest."
    },
    "NodeAffinity": {
      "id": "NodeAffinity",
      "type": "object",
      "properties": {
        "values": {
          "description": "Values for NodeAffinity.",
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "operator": {
          "type": "string",
          "enum": [
            "OPERATOR_UNSPECIFIED",
            "IN",
            "NOT_IN"
          ],
          "description": "Operator for NodeAffinity.",
          "enumDescriptions": [
            "Invalid or unspecified affinity operator.",
            "Affinity operator.",
            "Anti-affinity operator."
          ]
        },
        "key": {
          "description": "Key for NodeAffinity.",
          "type": "string"
        }
      },
      "description": "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)."
    },
    "ClusterPolicyConfig": {
      "description": "ClusterPolicyConfig stores the configuration for cluster wide policies.",
      "type": "object",
      "properties": {
        "noSystemMutation": {
          "type": "boolean",
          "description": "Denotes that preventing creation and mutation of resources in GKE managed namespaces and cluster-scoped GKE managed resources ."
        },
        "noStandardNodePools": {
          "description": "Denotes preventing standard node pools and requiring only autopilot node pools.",
          "type": "boolean"
        },
        "noSystemImpersonation": {
          "type": "boolean",
          "description": "Denotes preventing impersonation and CSRs for GKE System users."
        },
        "noUnsafeWebhooks": {
          "type": "boolean",
          "description": "Denotes preventing unsafe webhooks."
        }
      },
      "id": "ClusterPolicyConfig"
    },
    "NodePoolAutoscaling": {
      "id": "NodePoolAutoscaling",
      "description": "NodePoolAutoscaling contains information required by cluster autoscaler to adjust the size of the node pool to the current cluster usage.",
      "type": "object",
      "properties": {
        "locationPolicy": {
          "type": "string",
          "enum": [
            "LOCATION_POLICY_UNSPECIFIED",
            "BALANCED",
            "ANY"
          ],
          "description": "Location policy used when scaling up a node pool.",
          "enumDescriptions": [
            "Not set.",
            "BALANCED is a best effort policy that aims to balance the sizes of different zones.",
            "ANY policy picks zones that have the highest capacity available."
          ]
        },
        "enabled": {
          "type": "boolean",
          "description": "Is autoscaling enabled for this node pool."
        },
        "totalMinNodeCount": {
          "description": "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.",
          "format": "int32",
          "type": "integer"
        },
        "autoprovisioned": {
          "type": "boolean",
          "description": "Can this node pool be deleted automatically."
        },
        "maxNodeCount": {
          "type": "integer",
          "description": "Maximum number of nodes for one location in the node pool. Must be \u003e= min_node_count. There has to be enough quota to scale up the cluster.",
          "format": "int32"
        },
        "minNodeCount": {
          "type": "integer",
          "description": "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.",
          "format": "int32"
        },
        "totalMaxNodeCount": {
          "description": "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.",
          "format": "int32",
          "type": "integer"
        }
      }
    },
    "CheckAutopilotCompatibilityResponse": {
      "id": "CheckAutopilotCompatibilityResponse",
      "type": "object",
      "properties": {
        "issues": {
          "description": "The list of issues for the given operation.",
          "type": "array",
          "items": {
            "$ref": "AutopilotCompatibilityIssue"
          }
        },
        "summary": {
          "description": "The summary of the autopilot compatibility response.",
          "type": "string"
        }
      },
      "description": "CheckAutopilotCompatibilityResponse has a list of compatibility issues."
    },
    "Location": {
      "id": "Location",
      "type": "object",
      "properties": {
        "type": {
          "description": "Contains the type of location this Location is for. Regional or Zonal.",
          "enumDescriptions": [
            "LOCATION_TYPE_UNSPECIFIED means the location type was not determined.",
            "A GKE Location where Zonal clusters can be created.",
            "A GKE Location where Regional clusters can be created."
          ],
          "type": "string",
          "enum": [
            "LOCATION_TYPE_UNSPECIFIED",
            "ZONE",
            "REGION"
          ]
        },
        "name": {
          "type": "string",
          "description": "Contains the name of the resource requested. Specified in the format `projects/*/locations/*`."
        },
        "recommended": {
          "type": "boolean",
          "description": "Whether the location is recommended for GKE cluster scheduling."
        }
      },
      "description": "Location returns the location name, and if the location is recommended for GKE cluster scheduling."
    },
    "SoleTenantConfig": {
      "id": "SoleTenantConfig",
      "description": "SoleTenantConfig contains the NodeAffinities to specify what shared sole tenant node groups should back the node pool.",
      "type": "object",
      "properties": {
        "nodeAffinities": {
          "description": "NodeAffinities used to match to a shared sole tenant node group.",
          "type": "array",
          "items": {
            "$ref": "NodeAffinity"
          }
        },
        "minNodeCpus": {
          "description": "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.",
          "format": "int32",
          "type": "integer"
        }
      }
    },
    "ShieldedNodes": {
      "id": "ShieldedNodes",
      "description": "Configuration of Shielded Nodes feature.",
      "type": "object",
      "properties": {
        "enabled": {
          "type": "boolean",
          "description": "Whether Shielded Nodes features are enabled on all nodes in this cluster."
        }
      }
    },
    "SetMasterAuthRequest": {
      "type": "object",
      "properties": {
        "clusterId": {
          "type": "string",
          "description": "Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field.",
          "deprecated": true
        },
        "update": {
          "description": "Required. A description of the update.",
          "$ref": "MasterAuth"
        },
        "zone": {
          "description": "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.",
          "deprecated": true,
          "type": "string"
        },
        "action": {
          "description": "Required. The exact form of action to be taken on the master auth.",
          "enumDescriptions": [
            "Operation is unknown and will error out.",
            "Set the password to a user generated value.",
            "Generate a new password and set it to that.",
            "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."
          ],
          "type": "string",
          "enum": [
            "UNKNOWN",
            "SET_PASSWORD",
            "GENERATE_PASSWORD",
            "SET_USERNAME"
          ]
        },
        "projectId": {
          "type": "string",
          "description": "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.",
          "deprecated": true
        },
        "name": {
          "description": "The name (project, location, cluster) of the cluster to set auth. Specified in the format `projects/*/locations/*/clusters/*`.",
          "type": "string"
        }
      },
      "description": "SetMasterAuthRequest updates the admin password of a cluster.",
      "id": "SetMasterAuthRequest"
    },
    "AutoprovisioningNodePoolDefaults": {
      "id": "AutoprovisioningNodePoolDefaults",
      "description": "AutoprovisioningNodePoolDefaults contains defaults for a node pool created by NAP.",
      "type": "object",
      "properties": {
        "oauthScopes": {
          "description": "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.",
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "shieldedInstanceConfig": {
          "description": "Shielded Instance options.",
          "$ref": "ShieldedInstanceConfig"
        },
        "diskSizeGb": {
          "type": "integer",
          "description": "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.",
          "format": "int32"
        },
        "insecureKubeletReadonlyPortEnabled": {
          "description": "DEPRECATED. Use NodePoolAutoConfig.NodeKubeletConfig instead.",
          "type": "boolean"
        },
        "minCpuPlatform": {
          "description": "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.",
          "deprecated": true,
          "type": "string"
        },
        "imageType": {
          "description": "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.",
          "type": "string"
        },
        "bootDiskKmsKey": {
          "description": " 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",
          "type": "string"
        },
        "serviceAccount": {
          "type": "string",
          "description": "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."
        },
        "diskType": {
          "type": "string",
          "description": "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'"
        },
        "management": {
          "description": "NodeManagement configuration for this NodePool.",
          "$ref": "NodeManagement"
        },
        "upgradeSettings": {
          "description": "Upgrade settings control disruption and speed of the upgrade.",
          "$ref": "UpgradeSettings"
        }
      }
    },
    "PodAutoscaling": {
      "id": "PodAutoscaling",
      "description": "PodAutoscaling is used for configuration of parameters for workload autoscaling.",
      "type": "object",
      "properties": {
        "hpaProfile": {
          "description": "Selected Horizontal Pod Autoscaling profile.",
          "enumDescriptions": [
            "HPA_PROFILE_UNSPECIFIED is used when no custom HPA profile is set.",
            "Customers explicitly opt-out of HPA profiles.",
            "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."
          ],
          "type": "string",
          "enum": [
            "HPA_PROFILE_UNSPECIFIED",
            "NONE",
            "PERFORMANCE"
          ]
        }
      }
    },
    "DisruptionEvent": {
      "description": "DisruptionEvent is a notification sent to customers about the disruption event of a resource.",
      "type": "object",
      "properties": {
        "pdbViolationTimeout": {
          "description": "The timeout in seconds for which the node drain is blocked by PDB. After this timeout, pods are forcefully evicted. This field is only populated when event_type is POD_PDB_VIOLATION.",
          "format": "google-duration",
          "type": "string"
        },
        "disruptionType": {
          "description": "The type of the disruption event.",
          "enumDescriptions": [
            "DISRUPTION_TYPE_UNSPECIFIED indicates the disruption type is unspecified.",
            "POD_NOT_ENOUGH_PDB indicates there are still running pods on the node during node drain because their evictions are blocked by PDB.",
            "POD_PDB_VIOLATION indicates that there are force pod evictions during node drain which violate the PDB."
          ],
          "type": "string",
          "enum": [
            "DISRUPTION_TYPE_UNSPECIFIED",
            "POD_NOT_ENOUGH_PDB",
            "POD_PDB_VIOLATION"
          ]
        },
        "pdbBlockedNode": {
          "type": "string",
          "description": "The node whose drain is blocked by PDB. This field is set for both POD_PDB_VIOLATION and POD_NOT_ENOUGH_PDB event."
        },
        "pdbBlockedPod": {
          "description": "The pods whose evictions are blocked by PDB. This field is set for both POD_PDB_VIOLATION and POD_NOT_ENOUGH_PDB event.",
          "type": "array",
          "items": {
            "$ref": "PdbBlockedPod"
          }
        }
      },
      "id": "DisruptionEvent"
    },
    "PrivateRegistryAccessConfig": {
      "id": "PrivateRegistryAccessConfig",
      "description": "PrivateRegistryAccessConfig contains access configuration for private container registries.",
      "type": "object",
      "properties": {
        "enabled": {
          "type": "boolean",
          "description": "Private registry access is enabled."
        },
        "certificateAuthorityDomainConfig": {
          "type": "array",
          "items": {
            "$ref": "CertificateAuthorityDomainConfig"
          },
          "description": "Private registry access configuration."
        }
      }
    },
    "WindowsVersion": {
      "id": "WindowsVersion",
      "type": "object",
      "properties": {
        "supportEndDate": {
          "description": "Mainstream support end date",
          "$ref": "Date"
        },
        "imageType": {
          "description": "Windows server image type",
          "type": "string"
        },
        "osVersion": {
          "type": "string",
          "description": "Windows server build number"
        }
      },
      "description": "Windows server version."
    },
    "SecurityBulletinEvent": {
      "type": "object",
      "properties": {
        "bulletinId": {
          "description": "The ID of the bulletin corresponding to the vulnerability.",
          "type": "string"
        },
        "briefDescription": {
          "description": "A brief description of the bulletin. See the bulletin pointed to by the bulletin_uri field for an expanded description.",
          "type": "string"
        },
        "suggestedUpgradeTarget": {
          "description": "This represents a version selected from the patched_versions field that the cluster receiving this notification should most likely want to upgrade to based on its current version. Note that if this notification is being received by a given cluster, it means that this version is currently available as an upgrade target in that cluster's location.",
          "type": "string"
        },
        "affectedSupportedMinors": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "The GKE minor versions affected by this vulnerability."
        },
        "cveIds": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "The CVEs associated with this bulletin."
        },
        "resourceTypeAffected": {
          "description": "The resource type (node/control plane) that has the vulnerability. Multiple notifications (1 notification per resource type) will be sent for a vulnerability that affects \u003e 1 resource type.",
          "type": "string"
        },
        "manualStepsRequired": {
          "description": "If this field is specified, it means there are manual steps that the user must take to make their clusters safe.",
          "type": "boolean"
        },
        "severity": {
          "type": "string",
          "description": "The severity of this bulletin as it relates to GKE."
        },
        "bulletinUri": {
          "description": "The URI link to the bulletin on the website for more information.",
          "type": "string"
        },
        "patchedVersions": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "The GKE versions where this vulnerability is patched."
        },
        "mitigatedVersions": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "The GKE versions where this vulnerability is mitigated."
        }
      },
      "description": "SecurityBulletinEvent is a notification sent to customers when a security bulletin has been posted that they are vulnerable to.",
      "id": "SecurityBulletinEvent"
    },
    "SecondaryBootDisk": {
      "description": "SecondaryBootDisk represents a persistent disk attached to a node with special configurations based on its mode.",
      "type": "object",
      "properties": {
        "diskImage": {
          "description": "Fully-qualified resource ID for an existing disk image.",
          "type": "string"
        },
        "mode": {
          "type": "string",
          "enum": [
            "MODE_UNSPECIFIED",
            "CONTAINER_IMAGE_CACHE"
          ],
          "description": "Disk mode (container image cache, etc.)",
          "enumDescriptions": [
            "MODE_UNSPECIFIED is when mode is not set.",
            "CONTAINER_IMAGE_CACHE is for using the secondary boot disk as a container image cache."
          ]
        }
      },
      "id": "SecondaryBootDisk"
    },
    "ConfigConnectorConfig": {
      "description": "Configuration options for the Config Connector add-on.",
      "type": "object",
      "properties": {
        "enabled": {
          "type": "boolean",
          "description": "Whether Cloud Connector is enabled for this cluster."
        }
      },
      "id": "ConfigConnectorConfig"
    },
    "CertificateAuthorityDomainConfig": {
      "id": "CertificateAuthorityDomainConfig",
      "type": "object",
      "properties": {
        "fqdns": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "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": {
          "description": "Secret Manager certificate configuration.",
          "$ref": "GCPSecretManagerCertificateConfig"
        }
      },
      "description": "CertificateAuthorityDomainConfig configures one or more fully qualified domain names (FQDN) to a specific certificate."
    },
    "MasterAuth": {
      "type": "object",
      "properties": {
        "clusterCaCertificate": {
          "description": "Output only. Base64-encoded public certificate that is the root of trust for the cluster.",
          "readOnly": true,
          "type": "string"
        },
        "clientCertificate": {
          "description": "Output only. Base64-encoded public certificate used by clients to authenticate to the cluster endpoint. Issued only if client_certificate_config is set.",
          "readOnly": true,
          "type": "string"
        },
        "password": {
          "type": "string",
          "description": "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",
          "deprecated": true
        },
        "clientCertificateConfig": {
          "description": "Configuration for client certificate authentication on the cluster. For clusters before v1.12, if no configuration is specified, a client certificate is issued.",
          "$ref": "ClientCertificateConfig"
        },
        "username": {
          "description": "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",
          "deprecated": true,
          "type": "string"
        },
        "clientKey": {
          "type": "string",
          "description": "Output only. Base64-encoded private key used by clients to authenticate to the cluster endpoint.",
          "readOnly": true
        }
      },
      "description": "The authentication information for accessing the master endpoint. Authentication can be done using HTTP basic auth or using client certificates.",
      "id": "MasterAuth"
    },
    "EphemeralStorageLocalSsdConfig": {
      "id": "EphemeralStorageLocalSsdConfig",
      "description": "EphemeralStorageLocalSsdConfig contains configuration for the node ephemeral storage using Local SSDs.",
      "type": "object",
      "properties": {
        "localSsdCount": {
          "description": "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.",
          "format": "int32",
          "type": "integer"
        },
        "dataCacheCount": {
          "type": "integer",
          "description": "Number of local SSDs to use for GKE Data Cache.",
          "format": "int32"
        }
      }
    },
    "UserManagedKeysConfig": {
      "id": "UserManagedKeysConfig",
      "type": "object",
      "properties": {
        "controlPlaneDiskEncryptionKeyVersions": {
          "description": "Output only. All of the versions of the Cloud KMS cryptoKey that are used by Confidential Hyperdisks on the control plane nodes.",
          "readOnly": true,
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "clusterCa": {
          "type": "string",
          "description": "The Certificate Authority Service caPool to use for the cluster CA in this cluster."
        },
        "aggregationCa": {
          "type": "string",
          "description": "The Certificate Authority Service caPool to use for the aggregation CA in this cluster."
        },
        "gkeopsEtcdBackupEncryptionKey": {
          "type": "string",
          "description": "Resource path of the Cloud KMS cryptoKey to use for encryption of internal etcd backups."
        },
        "etcdApiCa": {
          "description": "Resource path of the Certificate Authority Service caPool to use for the etcd API CA in this cluster.",
          "type": "string"
        },
        "etcdPeerCa": {
          "description": "Resource path of the Certificate Authority Service caPool to use for the etcd peer CA in this cluster.",
          "type": "string"
        },
        "serviceAccountSigningKeys": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "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}`"
        },
        "controlPlaneDiskEncryptionKey": {
          "type": "string",
          "description": "The Cloud KMS cryptoKey to use for Confidential Hyperdisk on the control plane nodes."
        },
        "serviceAccountVerificationKeys": {
          "description": "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}`",
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      },
      "description": "UserManagedKeysConfig holds the resource address to Keys which are used for signing certs and token that are used for communication within cluster."
    },
    "SetNodePoolSizeRequest": {
      "type": "object",
      "properties": {
        "projectId": {
          "type": "string",
          "description": "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.",
          "deprecated": true
        },
        "nodeCount": {
          "type": "integer",
          "description": "Required. The desired node count for the pool.",
          "format": "int32"
        },
        "name": {
          "type": "string",
          "description": "The name (project, location, cluster, node pool id) of the node pool to set size. Specified in the format `projects/*/locations/*/clusters/*/nodePools/*`."
        },
        "zone": {
          "type": "string",
          "description": "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.",
          "deprecated": true
        },
        "nodePoolId": {
          "description": "Deprecated. The name of the node pool to update. This field has been deprecated and replaced by the name field.",
          "deprecated": true,
          "type": "string"
        },
        "clusterId": {
          "type": "string",
          "description": "Deprecated. The name of the cluster to update. This field has been deprecated and replaced by the name field.",
          "deprecated": true
        }
      },
      "description": "SetNodePoolSizeRequest sets the size of a node pool.",
      "id": "SetNodePoolSizeRequest"
    },
    "NodeKernelModuleLoading": {
      "id": "NodeKernelModuleLoading",
      "type": "object",
      "properties": {
        "policy": {
          "description": "Set the node module loading policy for nodes in the node pool.",
          "enumDescriptions": [
            "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.",
            "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.",
            "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."
          ],
          "type": "string",
          "enum": [
            "POLICY_UNSPECIFIED",
            "ENFORCE_SIGNED_MODULES",
            "DO_NOT_ENFORCE_SIGNED_MODULES"
          ]
        }
      },
      "description": "Configuration for kernel module loading on nodes."
    },
    "EvictionMinimumReclaim": {
      "description": "Eviction minimum reclaims are the resource amounts of minimum reclaims for each eviction signal.",
      "type": "object",
      "properties": {
        "nodefsAvailable": {
          "description": "Optional. Minimum reclaim for eviction due to nodefs available signal. Only take percentage value for now. Sample format: \"10%\". Must be \u003c=10%. See https://kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-eviction/#eviction-signals",
          "type": "string"
        },
        "pidAvailable": {
          "type": "string",
          "description": "Optional. Minimum reclaim for eviction due to pid available signal. Only take percentage value for now. Sample format: \"10%\". Must be \u003c=10%. See https://kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-eviction/#eviction-signals"
        },
        "nodefsInodesFree": {
          "type": "string",
          "description": "Optional. Minimum reclaim for eviction due to nodefs inodes free signal. Only take percentage value for now. Sample format: \"10%\". Must be \u003c=10%. See https://kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-eviction/#eviction-signals"
        },
        "imagefsAvailable": {
          "description": "Optional. Minimum reclaim for eviction due to imagefs available signal. Only take percentage value for now. Sample format: \"10%\". Must be \u003c=10%. See https://kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-eviction/#eviction-signals",
          "type": "string"
        },
        "memoryAvailable": {
          "description": "Optional. Minimum reclaim for eviction due to memory available signal. Only take percentage value for now. Sample format: \"10%\". Must be \u003c=10%. See https://kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-eviction/#eviction-signals",
          "type": "string"
        },
        "imagefsInodesFree": {
          "type": "string",
          "description": "Optional. Minimum reclaim for eviction due to imagefs inodes free signal. Only take percentage value for now. Sample format: \"10%\". Must be \u003c=10%. See https://kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-eviction/#eviction-signals"
        }
      },
      "id": "EvictionMinimumReclaim"
    },
    "IdentityServiceConfig": {
      "description": "IdentityServiceConfig is configuration for Identity Service which allows customers to use external identity providers with the K8S API",
      "type": "object",
      "properties": {
        "enabled": {
          "type": "boolean",
          "description": "Whether to enable the Identity Service component"
        }
      },
      "id": "IdentityServiceConfig"
    },
    "PrivilegedAdmissionConfig": {
      "type": "object",
      "properties": {
        "allowlistPaths": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "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."
        }
      },
      "description": "PrivilegedAdmissionConfig stores the list of authorized allowlist paths for the cluster.",
      "id": "PrivilegedAdmissionConfig"
    },
    "ProtectConfig": {
      "type": "object",
      "properties": {
        "workloadVulnerabilityMode": {
          "type": "string",
          "enum": [
            "WORKLOAD_VULNERABILITY_MODE_UNSPECIFIED",
            "DISABLED",
            "BASIC"
          ],
          "description": "Sets which mode to use for Protect workload vulnerability scanning feature.",
          "enumDescriptions": [
            "Default value not specified.",
            "Disables Workload Vulnerability Scanning feature on the cluster.",
            "Applies basic vulnerability scanning settings for cluster workloads."
          ]
        },
        "workloadConfig": {
          "description": "WorkloadConfig defines which actions are enabled for a cluster's workload configurations.",
          "$ref": "WorkloadConfig"
        }
      },
      "description": "ProtectConfig defines the flags needed to enable/disable features for the Protect API.",
      "id": "ProtectConfig"
    },
    "BigQueryDestination": {
      "id": "BigQueryDestination",
      "type": "object",
      "properties": {
        "datasetId": {
          "description": "The ID of a BigQuery Dataset.",
          "type": "string"
        }
      },
      "description": "Parameters for using BigQuery as the destination of resource usage export."
    },
    "ClusterTelemetry": {
      "description": "Telemetry integration for the cluster.",
      "type": "object",
      "properties": {
        "type": {
          "description": "Type of the integration.",
          "enumDescriptions": [
            "Not set.",
            "Monitoring integration is disabled.",
            "Monitoring integration is enabled.",
            "Only system components are monitored and logged."
          ],
          "type": "string",
          "enum": [
            "UNSPECIFIED",
            "DISABLED",
            "ENABLED",
            "SYSTEM_ONLY"
          ]
        }
      },
      "id": "ClusterTelemetry"
    },
    "RayOperatorConfig": {
      "description": "Configuration options for the Ray Operator add-on.",
      "type": "object",
      "properties": {
        "rayClusterLoggingConfig": {
          "description": "Optional. Logging configuration for Ray clusters.",
          "$ref": "RayClusterLoggingConfig"
        },
        "rayClusterMonitoringConfig": {
          "description": "Optional. Monitoring configuration for Ray clusters.",
          "$ref": "RayClusterMonitoringConfig"
        },
        "enabled": {
          "description": "Whether the Ray addon is enabled for this cluster.",
          "type": "boolean"
        }
      },
      "id": "RayOperatorConfig"
    },
    "NodeManagement": {
      "id": "NodeManagement",
      "description": "NodeManagement defines the set of node management services turned on for the node pool.",
      "type": "object",
      "properties": {
        "upgradeOptions": {
          "description": "Specifies the Auto Upgrade knobs for the node pool.",
          "$ref": "AutoUpgradeOptions"
        },
        "autoUpgrade": {
          "description": "Whether the nodes will be automatically upgraded.",
          "type": "boolean"
        },
        "autoRepair": {
          "type": "boolean",
          "description": "Whether the nodes will be automatically repaired."
        }
      }
    },
    "BinaryAuthorization": {
      "id": "BinaryAuthorization",
      "type": "object",
      "properties": {
        "policyBindings": {
          "type": "array",
          "items": {
            "$ref": "PolicyBinding"
          },
          "description": "Optional. Binauthz policies that apply to this cluster."
        },
        "enabled": {
          "description": "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.",
          "deprecated": true,
          "type": "boolean"
        },
        "evaluationMode": {
          "type": "string",
          "enum": [
            "EVALUATION_MODE_UNSPECIFIED",
            "DISABLED",
            "PROJECT_SINGLETON_POLICY_ENFORCE",
            "POLICY_BINDINGS",
            "POLICY_BINDINGS_AND_PROJECT_SINGLETON_POLICY_ENFORCE"
          ],
          "description": "Mode of operation for binauthz policy evaluation. If unspecified, defaults to DISABLED.",
          "enumDescriptions": [
            "Default value",
            "Disable BinaryAuthorization",
            "Enforce Kubernetes admission requests with BinaryAuthorization using the project's singleton policy. This is equivalent to setting the enabled boolean to true.",
            "Use Binary Authorization Continuous Validation with the policies specified in policy_bindings.",
            "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."
          ]
        }
      },
      "description": "Configuration for Binary Authorization."
    },
    "NodeTaints": {
      "type": "object",
      "properties": {
        "taints": {
          "description": "List of node taints.",
          "type": "array",
          "items": {
            "$ref": "NodeTaint"
          }
        }
      },
      "description": "Collection of Kubernetes [node taints](https://kubernetes.io/docs/concepts/configuration/taint-and-toleration).",
      "id": "NodeTaints"
    },
    "CompleteControlPlaneUpgradeRequest": {
      "id": "CompleteControlPlaneUpgradeRequest",
      "description": "CompleteControlPlaneUpgradeRequest sets the name of target cluster to complete upgrade.",
      "type": "object",
      "properties": {
        "version": {
          "type": "string",
          "description": "API request version that initiates this operation."
        }
      }
    },
    "FastSocket": {
      "type": "object",
      "properties": {
        "enabled": {
          "description": "Whether Fast Socket features are enabled in the node pool.",
          "type": "boolean"
        }
      },
      "description": "Configuration of Fast Socket feature.",
      "id": "FastSocket"
    },
    "RegistryHostConfig": {
      "description": "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.",
      "type": "object",
      "properties": {
        "hosts": {
          "type": "array",
          "items": {
            "$ref": "HostConfig"
          },
          "description": "HostConfig configures a list of host-specific configurations for the server. Each server can have at most 10 host configurations."
        },
        "server": {
          "description": "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, while scheme and path are NOT supported. Wildcards are NOT supported. Examples: - `my.customdomain.com` - `10.0.1.2:5000`",
          "type": "string"
        }
      },
      "id": "RegistryHostConfig"
    },
    "ParallelstoreCsiDriverConfig": {
      "id": "ParallelstoreCsiDriverConfig",
      "type": "object",
      "properties": {
        "enabled": {
          "description": "Whether the Cloud Storage Parallelstore CSI driver is enabled for this cluster.",
          "type": "boolean"
        }
      },
      "description": "Configuration for the Cloud Storage Parallelstore CSI driver."
    },
    "NodePoolLoggingConfig": {
      "id": "NodePoolLoggingConfig",
      "type": "object",
      "properties": {
        "variantConfig": {
          "description": "Logging variant configuration.",
          "$ref": "LoggingVariantConfig"
        }
      },
      "description": "NodePoolLoggingConfig specifies logging configuration for node pools."
    },
    "HttpCacheControlResponseHeader": {
      "description": "RFC-2616: cache control support",
      "type": "object",
      "properties": {
        "directive": {
          "description": "14.9 request and response directives",
          "type": "string"
        },
        "age": {
          "description": "14.6 response cache age, in seconds since the response is generated",
          "format": "int64",
          "type": "string"
        },
        "expires": {
          "type": "string",
          "description": "14.21 response cache expires, in RFC 1123 date format"
        }
      },
      "id": "HttpCacheControlResponseHeader"
    },
    "UsableSubnetwork": {
      "id": "UsableSubnetwork",
      "type": "object",
      "properties": {
        "subnetwork": {
          "type": "string",
          "description": "Subnetwork Name. Example: projects/my-project/regions/us-central1/subnetworks/my-subnet"
        },
        "network": {
          "type": "string",
          "description": "Network Name. Example: projects/my-project/global/networks/my-network"
        },
        "ipCidrRange": {
          "description": "The range of internal addresses that are owned by this subnetwork.",
          "type": "string"
        },
        "secondaryIpRanges": {
          "description": "Secondary IP ranges.",
          "type": "array",
          "items": {
            "$ref": "UsableSubnetworkSecondaryRange"
          }
        },
        "statusMessage": {
          "description": "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.",
          "type": "string"
        }
      },
      "description": "UsableSubnetwork resource returns the subnetwork name, its associated network and the primary CIDR range."
    },
    "MasterAuthorizedNetworksConfig": {
      "description": "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.",
      "type": "object",
      "properties": {
        "enabled": {
          "type": "boolean",
          "description": "Whether or not master authorized networks is enabled."
        },
        "cidrBlocks": {
          "description": "cidr_blocks define up to 10 external networks that could access Kubernetes master through HTTPS.",
          "type": "array",
          "items": {
            "$ref": "CidrBlock"
          }
        },
        "privateEndpointEnforcementEnabled": {
          "description": "Whether master authorized networks is enforced on private endpoint or not.",
          "type": "boolean"
        },
        "gcpPublicCidrsAccessEnabled": {
          "type": "boolean",
          "description": "Whether master is accessible via Google Compute Engine Public IP addresses."
        }
      },
      "id": "MasterAuthorizedNetworksConfig"
    },
    "DedicatedLocalSsdProfile": {
      "id": "DedicatedLocalSsdProfile",
      "type": "object",
      "properties": {
        "diskCount": {
          "description": "The number of physical local NVMe SSD disks to attach.",
          "format": "int64",
          "type": "string"
        }
      },
      "description": "Provisions a new, separate local NVMe SSD exclusively for swap."
    },
    "GatewayAPIConfig": {
      "id": "GatewayAPIConfig",
      "type": "object",
      "properties": {
        "channel": {
          "description": "The Gateway API release channel to use for Gateway API.",
          "enumDescriptions": [
            "Default value.",
            "Gateway API support is disabled",
            "Deprecated: use CHANNEL_STANDARD instead. Gateway API support is enabled, experimental CRDs are installed",
            "Gateway API support is enabled, standard CRDs are installed"
          ],
          "type": "string",
          "enum": [
            "CHANNEL_UNSPECIFIED",
            "CHANNEL_DISABLED",
            "CHANNEL_EXPERIMENTAL",
            "CHANNEL_STANDARD"
          ],
          "enumDeprecated": [
            false,
            false,
            true,
            false
          ]
        }
      },
      "description": "GatewayAPIConfig contains the desired config of Gateway API on this cluster."
    },
    "WorkloadConfig": {
      "description": "WorkloadConfig defines the flags to enable or disable the workload configurations for the cluster.",
      "type": "object",
      "properties": {
        "auditMode": {
          "description": "Sets which mode of auditing should be used for the cluster's workloads.",
          "enumDescriptions": [
            "Default value meaning that no mode has been specified.",
            "This disables Workload Configuration auditing on the cluster, meaning that nothing is surfaced.",
            "Applies the default set of policy auditing to a cluster's workloads.",
            "Surfaces configurations that are not in line with the Pod Security Standard Baseline policy.",
            "Surfaces configurations that are not in line with the Pod Security Standard Restricted policy."
          ],
          "type": "string",
          "enum": [
            "MODE_UNSPECIFIED",
            "DISABLED",
            "BASIC",
            "BASELINE",
            "RESTRICTED"
          ],
          "enumDeprecated": [
            false,
            false,
            false,
            true,
            true
          ]
        }
      },
      "id": "WorkloadConfig"
    },
    "HorizontalPodAutoscaling": {
      "type": "object",
      "properties": {
        "disabled": {
          "type": "boolean",
          "description": "Whether the Horizontal Pod Autoscaling feature is enabled in the cluster. When enabled, it ensures that metrics are collected into Stackdriver Monitoring."
        }
      },
      "description": "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.",
      "id": "HorizontalPodAutoscaling"
    },
    "TopologyManager": {
      "type": "object",
      "properties": {
        "scope": {
          "type": "string",
          "description": "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": {
          "description": "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).",
          "type": "string"
        }
      },
      "description": "TopologyManager defines the configuration options for Topology Manager feature. See https://kubernetes.io/docs/tasks/administer-cluster/topology-manager/",
      "id": "TopologyManager"
    },
    "TaintConfig": {
      "description": "TaintConfig contains the configuration for the taints of the node pool.",
      "type": "object",
      "properties": {
        "architectureTaintBehavior": {
          "description": "Optional. Controls architecture tainting behavior.",
          "enumDescriptions": [
            "Specifies that the behavior is unspecified, defaults to ARM.",
            "Disables default architecture taints on the node pool.",
            "Taints all the nodes in the node pool with the default ARM taint."
          ],
          "type": "string",
          "enum": [
            "ARCHITECTURE_TAINT_BEHAVIOR_UNSPECIFIED",
            "NONE",
            "ARM"
          ]
        }
      },
      "id": "TaintConfig"
    },
    "BootDisk": {
      "description": "BootDisk specifies the boot disk configuration for node pools.",
      "type": "object",
      "properties": {
        "sizeGb": {
          "type": "string",
          "description": "Disk size in GB. Replaces NodeConfig.disk_size_gb",
          "format": "int64"
        },
        "diskType": {
          "description": "Disk type of the boot disk. (i.e. Hyperdisk-Balanced, PD-Balanced, etc.)",
          "type": "string"
        },
        "provisionedThroughput": {
          "description": "For Hyperdisk-Balanced only, the provisioned throughput config value.",
          "format": "int64",
          "type": "string"
        },
        "provisionedIops": {
          "description": "For Hyperdisk-Balanced only, the provisioned IOPS config value.",
          "format": "int64",
          "type": "string"
        }
      },
      "id": "BootDisk"
    },
    "RollbackNodePoolUpgradeRequest": {
      "type": "object",
      "properties": {
        "nodePoolId": {
          "type": "string",
          "description": "Deprecated. The name of the node pool to rollback. This field has been deprecated and replaced by the name field.",
          "deprecated": true
        },
        "clusterId": {
          "description": "Deprecated. The name of the cluster to rollback. This field has been deprecated and replaced by the name field.",
          "deprecated": true,
          "type": "string"
        },
        "name": {
          "type": "string",
          "description": "The name (project, location, cluster, node pool id) of the node poll to rollback upgrade. Specified in the format `projects/*/locations/*/clusters/*/nodePools/*`."
        },
        "projectId": {
          "type": "string",
          "description": "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.",
          "deprecated": true
        },
        "respectPdb": {
          "description": "Option for rollback to ignore the PodDisruptionBudget. Default value is false.",
          "type": "boolean"
        },
        "zone": {
          "description": "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.",
          "deprecated": true,
          "type": "string"
        }
      },
      "description": "RollbackNodePoolUpgradeRequest rollbacks the previously Aborted or Failed NodePool upgrade. This will be an no-op if the last upgrade successfully completed.",
      "id": "RollbackNodePoolUpgradeRequest"
    },
    "CertificateConfig": {
      "type": "object",
      "properties": {
        "gcpSecretManagerSecretUri": {
          "type": "string",
          "description": "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/versions/$VERSION\" for regional secret. Version can be fixed (e.g. \"2\") or \"latest\""
        }
      },
      "description": "CertificateConfig configures certificate for the registry.",
      "id": "CertificateConfig"
    },
    "DesiredEnterpriseConfig": {
      "id": "DesiredEnterpriseConfig",
      "description": "DesiredEnterpriseConfig is a wrapper used for updating enterprise_config. Deprecated: GKE Enterprise features are now available without an Enterprise tier.",
      "type": "object",
      "properties": {
        "desiredTier": {
          "type": "string",
          "enum": [
            "CLUSTER_TIER_UNSPECIFIED",
            "STANDARD",
            "ENTERPRISE"
          ],
          "description": "desired_tier specifies the desired tier of the cluster.",
          "enumDescriptions": [
            "CLUSTER_TIER_UNSPECIFIED is when cluster_tier is not set.",
            "STANDARD indicates a standard GKE cluster.",
            "ENTERPRISE indicates a GKE Enterprise cluster."
          ]
        }
      },
      "deprecated": true
    },
    "AutopilotConversionStatus": {
      "type": "object",
      "properties": {
        "state": {
          "description": "Output only. The current state of the conversion.",
          "enumDescriptions": [
            "STATE_UNSPECIFIED indicates the state is unspecified.",
            "DONE indicates the conversion has been completed. Old node pools will continue being deleted in the background."
          ],
          "type": "string",
          "enum": [
            "STATE_UNSPECIFIED",
            "DONE"
          ],
          "readOnly": true
        }
      },
      "description": "AutopilotConversionStatus represents conversion status.",
      "id": "AutopilotConversionStatus"
    },
    "SliceControllerConfig": {
      "type": "object",
      "properties": {
        "enabled": {
          "description": "Optional. Indicates whether Slice Controller is enabled in the cluster.",
          "type": "boolean"
        }
      },
      "description": "Configuration for the Slice Controller.",
      "id": "SliceControllerConfig"
    },
    "EphemeralStorageConfig": {
      "description": "EphemeralStorageConfig contains configuration for the ephemeral storage filesystem.",
      "type": "object",
      "properties": {
        "localSsdCount": {
          "description": "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.",
          "format": "int32",
          "type": "integer"
        }
      },
      "id": "EphemeralStorageConfig"
    },
    "NetworkPolicyConfig": {
      "id": "NetworkPolicyConfig",
      "description": "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.",
      "type": "object",
      "properties": {
        "disabled": {
          "type": "boolean",
          "description": "Whether NetworkPolicy is enabled for this cluster."
        }
      }
    },
    "ClusterUpgradeInfo": {
      "type": "object",
      "properties": {
        "minorTargetVersion": {
          "type": "string",
          "description": "minor_target_version indicates the target version for minor upgrade."
        },
        "patchTargetVersion": {
          "description": "patch_target_version indicates the target version for patch upgrade.",
          "type": "string"
        },
        "pausedReason": {
          "type": "array",
          "items": {
            "enumDescriptions": [
              "AUTO_UPGRADE_PAUSED_REASON_UNSPECIFIED indicates an unspecified reason.",
              "MAINTENANCE_WINDOW indicates the cluster is outside customer maintenance window.",
              "MAINTENANCE_EXCLUSION_NO_UPGRADES indicates the cluster is in a maintenance exclusion with scope NO_UPGRADES.",
              "MAINTENANCE_EXCLUSION_NO_MINOR_UPGRADES indicates the cluster is in a maintenance exclusion with scope NO_MINOR_UPGRADES.",
              "CLUSTER_DISRUPTION_BUDGET indicates the cluster is outside the cluster disruption budget.",
              "CLUSTER_DISRUPTION_BUDGET_MINOR_UPGRADE indicates the cluster is outside the cluster disruption budget for minor version upgrade.",
              "SYSTEM_CONFIG indicates the cluster upgrade is paused by system config."
            ],
            "type": "string",
            "enum": [
              "AUTO_UPGRADE_PAUSED_REASON_UNSPECIFIED",
              "MAINTENANCE_WINDOW",
              "MAINTENANCE_EXCLUSION_NO_UPGRADES",
              "MAINTENANCE_EXCLUSION_NO_MINOR_UPGRADES",
              "CLUSTER_DISRUPTION_BUDGET",
              "CLUSTER_DISRUPTION_BUDGET_MINOR_UPGRADE",
              "SYSTEM_CONFIG"
            ]
          },
          "description": "The auto upgrade paused reason."
        },
        "upgradeDetails": {
          "description": "The list of past auto upgrades.",
          "type": "array",
          "items": {
            "$ref": "UpgradeDetails"
          }
        },
        "endOfStandardSupportTimestamp": {
          "type": "string",
          "description": "The cluster's current minor version's end of standard support timestamp."
        },
        "autoUpgradeStatus": {
          "type": "array",
          "items": {
            "enumDescriptions": [
              "UNKNOWN indicates an unknown status.",
              "ACTIVE indicates an active status.",
              "MINOR_UPGRADE_PAUSED indicates the minor version upgrade is paused.",
              "UPGRADE_PAUSED indicates the upgrade is paused."
            ],
            "type": "string",
            "enum": [
              "UNKNOWN",
              "ACTIVE",
              "MINOR_UPGRADE_PAUSED",
              "UPGRADE_PAUSED"
            ]
          },
          "description": "The auto upgrade status."
        },
        "endOfExtendedSupportTimestamp": {
          "type": "string",
          "description": "The cluster's current minor version's end of extended support timestamp."
        },
        "rollbackSafeUpgradeStatus": {
          "description": "The cluster's rollback-safe upgrade status.",
          "$ref": "RollbackSafeUpgradeStatus"
        }
      },
      "description": "ClusterUpgradeInfo contains the upgrade information of a cluster.",
      "id": "ClusterUpgradeInfo"
    },
    "AccurateTimeConfig": {
      "description": "AccurateTimeConfig contains configuration for the accurate time synchronization feature.",
      "type": "object",
      "properties": {
        "enablePtpKvmTimeSync": {
          "type": "boolean",
          "description": "Enables enhanced time synchronization using PTP-KVM."
        }
      },
      "id": "AccurateTimeConfig"
    },
    "Cluster": {
      "type": "object",
      "properties": {
        "compliancePostureConfig": {
          "description": "Optional. Deprecated: Compliance Posture is no longer supported. For more details, see https://cloud.google.com/kubernetes-engine/docs/deprecations/posture-management-deprecation. Enable/Disable Compliance Posture features for the cluster.",
          "deprecated": true,
          "$ref": "CompliancePostureConfig"
        },
        "networkPolicy": {
          "description": "Configuration options for the NetworkPolicy feature.",
          "$ref": "NetworkPolicy"
        },
        "podSecurityPolicyConfig": {
          "description": "Configuration for the PodSecurityPolicy feature.",
          "$ref": "PodSecurityPolicyConfig"
        },
        "databaseEncryption": {
          "description": "Configuration of etcd encryption.",
          "$ref": "DatabaseEncryption"
        },
        "id": {
          "type": "string",
          "description": "Output only. Unique id for the cluster.",
          "readOnly": true
        },
        "currentNodeCount": {
          "type": "integer",
          "description": "Output only. The number of nodes currently in the cluster. Deprecated. Call Kubernetes API directly to retrieve node information.",
          "readOnly": true,
          "deprecated": true,
          "format": "int32"
        },
        "enableKubernetesAlpha": {
          "type": "boolean",
          "description": "Kubernetes alpha features are enabled on this cluster. This includes alpha API groups (e.g. v1beta1) 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."
        },
        "costManagementConfig": {
          "description": "Configuration for the fine-grained cost management feature.",
          "$ref": "CostManagementConfig"
        },
        "currentEmulatedVersion": {
          "type": "string",
          "description": "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.",
          "readOnly": true
        },
        "controlPlaneEgress": {
          "description": "Configuration for control plane egress control.",
          "$ref": "ControlPlaneEgress"
        },
        "addonsConfig": {
          "description": "Configurations for the various addons available to run in the cluster.",
          "$ref": "AddonsConfig"
        },
        "privateClusterConfig": {
          "description": "Configuration for private cluster.",
          "$ref": "PrivateClusterConfig"
        },
        "etag": {
          "type": "string",
          "description": "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."
        },
        "locations": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "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.FIELDS.locations) are not specified during node pool creation. Warning: changing cluster locations will update the [NodePool.Locations](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/projects.locations.clusters.nodePools#NodePool.FIELDS.locations) of all node pools and will result in nodes being added and/or removed."
        },
        "authenticatorGroupsConfig": {
          "description": "Configuration controlling RBAC group membership information.",
          "$ref": "AuthenticatorGroupsConfig"
        },
        "currentMasterVersion": {
          "description": "Output only. The current software version of the master endpoint.",
          "readOnly": true,
          "type": "string"
        },
        "nodePoolAutoConfig": {
          "description": "Node pool configs that apply to all auto-provisioned node pools in autopilot clusters and node auto-provisioning enabled clusters.",
          "$ref": "NodePoolAutoConfig"
        },
        "secretSyncConfig": {
          "description": "Configuration for sync Secret Manager secrets as k8s secrets.",
          "$ref": "SecretSyncConfig"
        },
        "workloadCertificates": {
          "description": "Configuration for issuance of mTLS keys and certificates to Kubernetes pods.",
          "$ref": "WorkloadCertificates"
        },
        "defaultMaxPodsConstraint": {
          "description": "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.",
          "$ref": "MaxPodsConstraint"
        },
        "shieldedNodes": {
          "description": "Shielded Nodes configuration.",
          "$ref": "ShieldedNodes"
        },
        "networkConfig": {
          "description": "Configuration for cluster networking.",
          "$ref": "NetworkConfig"
        },
        "securityPostureConfig": {
          "description": "Optional. Enable/Disable Security Posture API features for the cluster.",
          "$ref": "SecurityPostureConfig"
        },
        "nodePoolDefaults": {
          "description": "Default NodePool settings for the entire cluster. These settings are overridden if specified on the specific NodePool object.",
          "$ref": "NodePoolDefaults"
        },
        "privateCluster": {
          "type": "boolean",
          "description": "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.",
          "deprecated": true
        },
        "identityServiceConfig": {
          "description": "Configuration for Identity Service component.",
          "$ref": "IdentityServiceConfig"
        },
        "monitoringConfig": {
          "description": "Monitoring configuration for the cluster.",
          "$ref": "MonitoringConfig"
        },
        "statusMessage": {
          "description": "Output only. Deprecated. Use conditions instead. Additional information about the current status of this cluster, if available.",
          "readOnly": true,
          "deprecated": true,
          "type": "string"
        },
        "fleet": {
          "description": "Fleet information for the cluster.",
          "$ref": "Fleet"
        },
        "legacyAbac": {
          "description": "Configuration for the legacy ABAC authorization mode.",
          "$ref": "LegacyAbac"
        },
        "alphaClusterFeatureGates": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "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\")"
        },
        "maintenancePolicy": {
          "description": "Configure the maintenance policy for this cluster.",
          "$ref": "MaintenancePolicy"
        },
        "binaryAuthorization": {
          "description": "Configuration for Binary Authorization.",
          "$ref": "BinaryAuthorization"
        },
        "workloadIdentityConfig": {
          "description": "Configuration for the use of Kubernetes Service Accounts in IAM policies.",
          "$ref": "WorkloadIdentityConfig"
        },
        "labelFingerprint": {
          "description": "The fingerprint of the set of labels for this cluster.",
          "type": "string"
        },
        "managedOpentelemetryConfig": {
          "description": "Configuration for Managed OpenTelemetry pipeline.",
          "$ref": "ManagedOpenTelemetryConfig"
        },
        "description": {
          "description": "An optional description of this cluster.",
          "type": "string"
        },
        "secretManagerConfig": {
          "description": "Secret CSI driver configuration.",
          "$ref": "SecretManagerConfig"
        },
        "enableK8sBetaApis": {
          "description": "Kubernetes open source beta apis enabled on the cluster. Only beta apis.",
          "$ref": "K8sBetaAPIConfig"
        },
        "autopilot": {
          "description": "Autopilot configuration for the cluster.",
          "$ref": "Autopilot"
        },
        "masterAuth": {
          "description": "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.",
          "$ref": "MasterAuth"
        },
        "parentProductConfig": {
          "description": "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.",
          "$ref": "ParentProductConfig"
        },
        "resourceUsageExportConfig": {
          "description": "Configuration for exporting resource usages. Resource usage export is disabled when this config unspecified.",
          "$ref": "ResourceUsageExportConfig"
        },
        "workloadAltsConfig": {
          "description": "Configuration for direct-path (via ALTS) with workload identity. This feature is not officially supported for external customers in Kubernetes Engine when using Workload Identity.",
          "$ref": "WorkloadALTSConfig"
        },
        "satisfiesPzs": {
          "type": "boolean",
          "description": "Output only. Reserved for future use.",
          "readOnly": true
        },
        "master": {
          "description": "Configuration for master components.",
          "$ref": "Master"
        },
        "verticalPodAutoscaling": {
          "description": "Cluster-level Vertical Pod Autoscaling configuration.",
          "$ref": "VerticalPodAutoscaling"
        },
        "currentNodeVersion": {
          "type": "string",
          "description": "Output only. Deprecated, use [NodePool.version](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters.nodePools) 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.",
          "readOnly": true,
          "deprecated": true
        },
        "network": {
          "description": "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. On output this shows the network ID instead of the name.",
          "type": "string"
        },
        "initialNodeCount": {
          "type": "integer",
          "description": "The number of nodes to create in this cluster. You must ensure that your Compute Engine [resource quota](https://cloud.google.com/compute/quotas) 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.",
          "deprecated": true,
          "format": "int32"
        },
        "selfLink": {
          "description": "Output only. Server-defined URL for the resource.",
          "readOnly": true,
          "type": "string"
        },
        "status": {
          "type": "string",
          "enum": [
            "STATUS_UNSPECIFIED",
            "PROVISIONING",
            "RUNNING",
            "RECONCILING",
            "STOPPING",
            "ERROR",
            "DEGRADED"
          ],
          "description": "Output only. The current status of this cluster.",
          "enumDescriptions": [
            "Not set.",
            "The PROVISIONING state indicates the cluster is being created.",
            "The RUNNING state indicates the cluster has been created and is fully usable.",
            "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.",
            "The STOPPING state indicates the cluster is being deleted.",
            "The ERROR state indicates the cluster may be unusable. Details can be found in the `statusMessage` field.",
            "The DEGRADED state indicates the cluster requires user action to restore full functionality. Details can be found in the `statusMessage` field."
          ],
          "readOnly": true
        },
        "satisfiesPzi": {
          "description": "Output only. Reserved for future use.",
          "readOnly": true,
          "type": "boolean"
        },
        "location": {
          "description": "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.",
          "readOnly": true,
          "type": "string"
        },
        "enterpriseConfig": {
          "$ref": "EnterpriseConfig",
          "description": "GKE Enterprise Configuration. Deprecated: GKE Enterprise features are now available without an Enterprise tier.",
          "deprecated": true
        },
        "autoscaling": {
          "description": "Cluster-level autoscaling configuration.",
          "$ref": "ClusterAutoscaling"
        },
        "rbacBindingConfig": {
          "description": "RBACBindingConfig allows user to restrict ClusterRoleBindings an RoleBindings that can be created.",
          "$ref": "RBACBindingConfig"
        },
        "scheduleUpgradeConfig": {
          "description": "Optional. Configuration for scheduled upgrades.",
          "$ref": "ScheduleUpgradeConfig"
        },
        "masterIpv4CidrBlock": {
          "description": "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.",
          "deprecated": true,
          "type": "string"
        },
        "loggingConfig": {
          "description": "Logging configuration for the cluster.",
          "$ref": "LoggingConfig"
        },
        "podAutoscaling": {
          "description": "The config for pod autoscaling.",
          "$ref": "PodAutoscaling"
        },
        "meshCertificates": {
          "description": "Configuration for issuance of mTLS keys and certificates to Kubernetes pods.",
          "$ref": "MeshCertificates"
        },
        "tpuIpv4CidrBlock": {
          "type": "string",
          "description": "Output only. The IP address range of the Cloud TPUs in this cluster, in [CIDR](https://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.",
          "readOnly": true,
          "deprecated": true
        },
        "ipAllocationPolicy": {
          "description": "Configuration for cluster IP allocation.",
          "$ref": "IPAllocationPolicy"
        },
        "masterAuthorizedNetworksConfig": {
          "$ref": "MasterAuthorizedNetworksConfig",
          "description": "The configuration options for master authorized networks feature. Deprecated: Use ControlPlaneEndpointsConfig.IPEndpointsConfig.authorized_networks_config instead.",
          "deprecated": true
        },
        "conditions": {
          "type": "array",
          "items": {
            "$ref": "StatusCondition"
          },
          "description": "Which conditions caused the current cluster state."
        },
        "resourceLabels": {
          "type": "object",
          "description": "The resource labels for the cluster to use to annotate any related Google Compute Engine resources.",
          "additionalProperties": {
            "type": "string"
          }
        },
        "releaseChannel": {
          "description": "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.",
          "$ref": "ReleaseChannel"
        },
        "loggingService": {
          "type": "string",
          "description": "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."
        },
        "zone": {
          "type": "string",
          "description": "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.",
          "readOnly": true,
          "deprecated": true
        },
        "gkeAutoUpgradeConfig": {
          "description": "Configuration for GKE auto upgrades.",
          "$ref": "GkeAutoUpgradeConfig"
        },
        "createTime": {
          "description": "Output only. The time the cluster was created, in [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) text format.",
          "readOnly": true,
          "type": "string"
        },
        "servicesIpv4Cidr": {
          "type": "string",
          "description": "Output only. The IP address range of the Kubernetes services in this cluster, in [CIDR](https://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.",
          "readOnly": true
        },
        "nodePools": {
          "description": "The node pools associated with this cluster. This field should not be set if \"node_config\" or \"initial_node_count\" are specified.",
          "type": "array",
          "items": {
            "$ref": "NodePool"
          }
        },
        "controlPlaneEndpointsConfig": {
          "description": "Configuration for all cluster's control plane endpoints.",
          "$ref": "ControlPlaneEndpointsConfig"
        },
        "expireTime": {
          "type": "string",
          "description": "Output only. The time the cluster will be automatically deleted in [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) text format.",
          "readOnly": true
        },
        "anonymousAuthenticationConfig": {
          "description": "Configuration for limiting anonymous access to all endpoints except the health checks.",
          "$ref": "AnonymousAuthenticationConfig"
        },
        "monitoringService": {
          "type": "string",
          "description": "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."
        },
        "initialClusterVersion": {
          "description": "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",
          "type": "string"
        },
        "subnetwork": {
          "description": "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.",
          "type": "string"
        },
        "tpuConfig": {
          "$ref": "TpuConfig",
          "description": "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.",
          "deprecated": true
        },
        "rollbackSafeUpgrade": {
          "description": "The rollback safe upgrade information of the cluster. This field is used when user manually triggers a rollback safe upgrade.",
          "$ref": "RollbackSafeUpgrade"
        },
        "protectConfig": {
          "description": "Deprecated: Use SecurityPostureConfig instead. Enable/Disable Protect API features for the cluster.",
          "deprecated": true,
          "$ref": "ProtectConfig"
        },
        "clusterTelemetry": {
          "description": "Telemetry integration for the cluster.",
          "$ref": "ClusterTelemetry"
        },
        "name": {
          "description": "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.",
          "type": "string"
        },
        "nodeConfig": {
          "$ref": "NodeConfig",
          "description": "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.",
          "deprecated": true
        },
        "managedMachineLearningDiagnosticsConfig": {
          "description": "Configuration for managed machine learning diagnostics.",
          "$ref": "ManagedMachineLearningDiagnosticsConfig"
        },
        "confidentialNodes": {
          "description": "Configuration of Confidential Nodes. All the nodes in the cluster will be Confidential VM once enabled.",
          "$ref": "ConfidentialNodes"
        },
        "enableTpu": {
          "type": "boolean",
          "description": "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.",
          "deprecated": true
        },
        "userManagedKeysConfig": {
          "description": "The Custom keys configuration for the cluster.",
          "$ref": "UserManagedKeysConfig"
        },
        "notificationConfig": {
          "description": "Notification configuration of the cluster.",
          "$ref": "NotificationConfig"
        },
        "endpoint": {
          "type": "string",
          "description": "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.",
          "readOnly": true
        },
        "clusterIpv4Cidr": {
          "description": "The IP address range of the container pods in this cluster, in [CIDR](https://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`.",
          "type": "string"
        },
        "instanceGroupUrls": {
          "type": "array",
          "description": "Output only. Deprecated. Use node_pools.instance_group_urls.",
          "items": {
            "type": "string"
          },
          "readOnly": true,
          "deprecated": true
        },
        "nodeIpv4CidrSize": {
          "type": "integer",
          "description": "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.",
          "readOnly": true,
          "format": "int32"
        }
      },
      "description": "A Google Kubernetes Engine cluster.",
      "id": "Cluster"
    },
    "GcsFuseCsiDriverConfig": {
      "description": "Configuration for the Cloud Storage Fuse CSI driver.",
      "type": "object",
      "properties": {
        "enabled": {
          "type": "boolean",
          "description": "Whether the Cloud Storage Fuse CSI driver is enabled for this cluster."
        }
      },
      "id": "GcsFuseCsiDriverConfig"
    },
    "SecurityPostureConfig": {
      "id": "SecurityPostureConfig",
      "description": "SecurityPostureConfig defines the flags needed to enable/disable features for the Security Posture API.",
      "type": "object",
      "properties": {
        "mode": {
          "enumDeprecated": [
            false,
            false,
            false,
            true
          ],
          "type": "string",
          "enum": [
            "MODE_UNSPECIFIED",
            "DISABLED",
            "BASIC",
            "ENTERPRISE"
          ],
          "description": "Sets which mode to use for Security Posture features.",
          "enumDescriptions": [
            "Default value not specified.",
            "Disables Security Posture features on the cluster.",
            "Applies Security Posture features on the cluster.",
            "Deprecated: Security Posture Enterprise features are no longer supported. For more details, see https://cloud.google.com/kubernetes-engine/docs/deprecations/posture-management-deprecation. Applies the Security Posture off cluster Enterprise level features."
          ]
        },
        "vulnerabilityMode": {
          "type": "string",
          "enum": [
            "VULNERABILITY_MODE_UNSPECIFIED",
            "VULNERABILITY_DISABLED",
            "VULNERABILITY_BASIC",
            "VULNERABILITY_ENTERPRISE"
          ],
          "description": "Sets which mode to use for vulnerability scanning.",
          "enumDescriptions": [
            "Default value not specified.",
            "Disables vulnerability scanning on the cluster.",
            "Deprecated: Basic vulnerability scanning is no longer supported. For more details, see https://cloud.google.com/kubernetes-engine/docs/deprecations/posture-management-deprecation. Applies basic vulnerability scanning on the cluster.",
            "Applies the Security Posture's vulnerability on cluster Enterprise level features."
          ],
          "enumDeprecated": [
            false,
            false,
            true,
            false
          ]
        }
      }
    },
    "RangeInfo": {
      "id": "RangeInfo",
      "description": "RangeInfo contains the range name and the range utilization by this cluster.",
      "type": "object",
      "properties": {
        "rangeName": {
          "description": "Output only. Name of a range.",
          "readOnly": true,
          "type": "string"
        },
        "utilization": {
          "type": "number",
          "description": "Output only. The utilization of the range.",
          "readOnly": true,
          "format": "double"
        }
      }
    },
    "NetworkConfig": {
      "description": "NetworkConfig reports the relative names of network & subnetwork.",
      "type": "object",
      "properties": {
        "datapathProvider": {
          "description": "The desired datapath provider for this cluster. By default, uses the IPTables-based kube-proxy implementation.",
          "enumDescriptions": [
            "Default value.",
            "Use the IPTables implementation based on kube-proxy.",
            "Use the eBPF based GKE Dataplane V2 with additional features. See the [GKE Dataplane V2 documentation](https://cloud.google.com/kubernetes-engine/docs/how-to/dataplane-v2) for more."
          ],
          "type": "string",
          "enum": [
            "DATAPATH_PROVIDER_UNSPECIFIED",
            "LEGACY_DATAPATH",
            "ADVANCED_DATAPATH"
          ]
        },
        "networkPerformanceConfig": {
          "description": "Network bandwidth tier configuration.",
          "$ref": "ClusterNetworkPerformanceConfig"
        },
        "gatewayApiConfig": {
          "description": "GatewayAPIConfig contains the desired config of Gateway API on this cluster.",
          "$ref": "GatewayAPIConfig"
        },
        "inTransitEncryptionConfig": {
          "description": "Specify the details of in-transit encryption.",
          "enumDescriptions": [
            "Unspecified, will be inferred as default - IN_TRANSIT_ENCRYPTION_UNSPECIFIED.",
            "In-transit encryption is disabled.",
            "Data in-transit is encrypted using inter-node transparent encryption."
          ],
          "type": "string",
          "enum": [
            "IN_TRANSIT_ENCRYPTION_CONFIG_UNSPECIFIED",
            "IN_TRANSIT_ENCRYPTION_DISABLED",
            "IN_TRANSIT_ENCRYPTION_INTER_NODE_TRANSPARENT"
          ]
        },
        "enableL4ilbSubsetting": {
          "description": "Whether L4ILB Subsetting is enabled for this cluster.",
          "type": "boolean"
        },
        "dnsConfig": {
          "description": "DNSConfig contains clusterDNS config for this cluster.",
          "$ref": "DNSConfig"
        },
        "defaultSnatStatus": {
          "description": "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.",
          "$ref": "DefaultSnatStatus"
        },
        "subnetwork": {
          "description": "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",
          "readOnly": true,
          "type": "string"
        },
        "serviceExternalIpsConfig": {
          "description": "ServiceExternalIPsConfig specifies if services with externalIPs field are blocked or not.",
          "$ref": "ServiceExternalIPsConfig"
        },
        "enableFqdnNetworkPolicy": {
          "description": "Whether FQDN Network Policy is enabled on this cluster.",
          "type": "boolean"
        },
        "defaultEnablePrivateNodes": {
          "type": "boolean",
          "description": "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"
        },
        "enableIntraNodeVisibility": {
          "description": "Whether Intra-node visibility is enabled for this cluster. This makes same node pod to pod traffic visible for VPC network.",
          "type": "boolean"
        },
        "enableCiliumClusterwideNetworkPolicy": {
          "description": "Whether CiliumClusterWideNetworkPolicy is enabled on this cluster.",
          "type": "boolean"
        },
        "network": {
          "description": "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",
          "readOnly": true,
          "type": "string"
        },
        "enableMultiNetworking": {
          "description": "Whether multi-networking is enabled for this cluster.",
          "type": "boolean"
        },
        "disableL4LbFirewallReconciliation": {
          "type": "boolean",
          "description": "Disable L4 load balancer VPC firewalls to enable firewall policies."
        },
        "privateIpv6GoogleAccess": {
          "type": "string",
          "enum": [
            "PRIVATE_IPV6_GOOGLE_ACCESS_UNSPECIFIED",
            "PRIVATE_IPV6_GOOGLE_ACCESS_DISABLED",
            "PRIVATE_IPV6_GOOGLE_ACCESS_TO_GOOGLE",
            "PRIVATE_IPV6_GOOGLE_ACCESS_BIDIRECTIONAL"
          ],
          "description": "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)",
          "enumDescriptions": [
            "Default value. Same as DISABLED",
            "No private access to or from Google Services",
            "Enables private IPv6 access to Google Services from GKE",
            "Enables private IPv6 access to and from Google Services"
          ]
        }
      },
      "id": "NetworkConfig"
    },
    "CidrBlock": {
      "id": "CidrBlock",
      "description": "CidrBlock contains an optional name and one CIDR block.",
      "type": "object",
      "properties": {
        "cidrBlock": {
          "description": "cidr_block must be specified in CIDR notation.",
          "type": "string"
        },
        "displayName": {
          "description": "display_name is an optional field for users to identify CIDR blocks.",
          "type": "string"
        }
      }
    },
    "PodSecurityPolicyConfig": {
      "description": "Configuration for the PodSecurityPolicy feature.",
      "type": "object",
      "properties": {
        "enabled": {
          "description": "Enable the PodSecurityPolicy controller for this cluster. If enabled, pods must be valid under a PodSecurityPolicy to be created.",
          "type": "boolean"
        }
      },
      "id": "PodSecurityPolicyConfig"
    },
    "StatefulHAConfig": {
      "id": "StatefulHAConfig",
      "description": "Configuration for the Stateful HA add-on.",
      "type": "object",
      "properties": {
        "enabled": {
          "type": "boolean",
          "description": "Whether the Stateful HA add-on is enabled for this cluster."
        }
      }
    },
    "EphemeralLocalSsdProfile": {
      "id": "EphemeralLocalSsdProfile",
      "type": "object",
      "properties": {
        "swapSizeGib": {
          "type": "string",
          "description": "Specifies the size of the swap space in gibibytes (GiB).",
          "format": "int64"
        },
        "swapSizePercent": {
          "description": "Specifies the size of the swap space as a percentage of the ephemeral local SSD capacity.",
          "format": "int32",
          "type": "integer"
        }
      },
      "description": "Swap on the local SSD shared with pod ephemeral storage."
    },
    "ListUsableSubnetworksResponse": {
      "id": "ListUsableSubnetworksResponse",
      "description": "ListUsableSubnetworksResponse is the response of ListUsableSubnetworksRequest.",
      "type": "object",
      "properties": {
        "subnetworks": {
          "description": "A list of usable subnetworks in the specified network project.",
          "type": "array",
          "items": {
            "$ref": "UsableSubnetwork"
          }
        },
        "nextPageToken": {
          "type": "string",
          "description": "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."
        }
      }
    },
    "NodePoolAutoConfig": {
      "id": "NodePoolAutoConfig",
      "type": "object",
      "properties": {
        "resourceManagerTags": {
          "description": "Resource manager tag keys and values to be attached to the nodes for managing Compute Engine firewalls using Network Firewall Policies.",
          "$ref": "ResourceManagerTags"
        },
        "nodeKubeletConfig": {
          "description": "NodeKubeletConfig controls the defaults for autoprovisioned node-pools. Currently only `insecure_kubelet_readonly_port_enabled` can be set here.",
          "$ref": "NodeKubeletConfig"
        },
        "linuxNodeConfig": {
          "$ref": "LinuxNodeConfig",
          "description": "Output only. Configuration options for Linux nodes.",
          "readOnly": true
        },
        "networkTags": {
          "description": "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.",
          "$ref": "NetworkTags"
        }
      },
      "description": "node pool configs that apply to all auto-provisioned node pools in autopilot clusters and node auto-provisioning enabled clusters"
    },
    "RollbackSafeUpgradeStatus": {
      "description": "RollbackSafeUpgradeStatus contains the rollback-safe upgrade status of a cluster.",
      "type": "object",
      "properties": {
        "mode": {
          "description": "The mode of the rollback-safe upgrade.",
          "enumDescriptions": [
            "MODE_UNSPECIFIED means it's in regular upgrade mode.",
            "KCP_MINOR_UPGRADE_ROLLBACK_SAFE_MODE means it's in rollback-safe mode after a KCP minor version step-one upgrade."
          ],
          "type": "string",
          "enum": [
            "MODE_UNSPECIFIED",
            "KCP_MINOR_UPGRADE_ROLLBACK_SAFE_MODE"
          ]
        },
        "previousVersion": {
          "description": "The GKE version that the cluster previously used before step-one upgrade.",
          "type": "string"
        },
        "controlPlaneUpgradeRollbackEndTime": {
          "type": "string",
          "description": "The rollback-safe mode expiration time.",
          "format": "google-datetime"
        }
      },
      "id": "RollbackSafeUpgradeStatus"
    },
    "SetNodePoolAutoscalingRequest": {
      "id": "SetNodePoolAutoscalingRequest",
      "type": "object",
      "properties": {
        "autoscaling": {
          "description": "Required. Autoscaling configuration for the node pool.",
          "$ref": "NodePoolAutoscaling"
        },
        "nodePoolId": {
          "description": "Deprecated. The name of the node pool to upgrade. This field has been deprecated and replaced by the name field.",
          "deprecated": true,
          "type": "string"
        },
        "clusterId": {
          "description": "Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field.",
          "deprecated": true,
          "type": "string"
        },
        "name": {
          "type": "string",
          "description": "The name (project, location, cluster, node pool) of the node pool to set autoscaler settings. Specified in the format `projects/*/locations/*/clusters/*/nodePools/*`."
        },
        "projectId": {
          "description": "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.",
          "deprecated": true,
          "type": "string"
        },
        "zone": {
          "type": "string",
          "description": "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.",
          "deprecated": true
        }
      },
      "description": "SetNodePoolAutoscalingRequest sets the autoscaler settings of a node pool."
    },
    "ResourceManagerTags": {
      "id": "ResourceManagerTags",
      "type": "object",
      "properties": {
        "tags": {
          "type": "object",
          "description": "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}`",
          "additionalProperties": {
            "type": "string"
          }
        }
      },
      "description": "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."
    },
    "GetJSONWebKeysResponse": {
      "id": "GetJSONWebKeysResponse",
      "description": "GetJSONWebKeysResponse is a valid JSON Web Key Set as specified in rfc 7517",
      "type": "object",
      "properties": {
        "cacheHeader": {
          "description": "For HTTP requests, this field is automatically extracted into the Cache-Control HTTP header.",
          "$ref": "HttpCacheControlResponseHeader"
        },
        "keys": {
          "type": "array",
          "items": {
            "$ref": "Jwk"
          },
          "description": "The public component of the keys used by the cluster to sign token requests."
        }
      }
    },
    "StandardRolloutPolicy": {
      "id": "StandardRolloutPolicy",
      "type": "object",
      "properties": {
        "batchNodeCount": {
          "type": "integer",
          "description": "Number of blue nodes to drain in a batch.",
          "format": "int32"
        },
        "batchSoakDuration": {
          "type": "string",
          "description": "Soak time after each batch gets drained. Default to zero.",
          "format": "google-duration"
        },
        "batchPercentage": {
          "description": "Percentage of the blue pool nodes to drain in a batch. The range of this field should be (0.0, 1.0].",
          "format": "float",
          "type": "number"
        }
      },
      "description": "Standard rollout policy is the default policy for blue-green."
    },
    "ClusterAutoscaling": {
      "id": "ClusterAutoscaling",
      "type": "object",
      "properties": {
        "autopilotGeneralProfile": {
          "description": "Autopilot general profile for the cluster, which defines the configuration for the cluster.",
          "enumDescriptions": [
            "Use default configuration.",
            "Avoid extra IP consumption.",
            "Use default configuration."
          ],
          "type": "string",
          "enum": [
            "AUTOPILOT_GENERAL_PROFILE_UNSPECIFIED",
            "NO_PERFORMANCE",
            "NONE"
          ]
        },
        "autoprovisioningNodePoolDefaults": {
          "description": "AutoprovisioningNodePoolDefaults contains defaults for a node pool created by NAP.",
          "$ref": "AutoprovisioningNodePoolDefaults"
        },
        "autoprovisioningLocations": {
          "description": "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.",
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "autoscalingProfile": {
          "description": "Defines autoscaling behaviour.",
          "enumDescriptions": [
            "No change to autoscaling configuration.",
            "Prioritize optimizing utilization of resources.",
            "Use default (balanced) autoscaling configuration."
          ],
          "type": "string",
          "enum": [
            "PROFILE_UNSPECIFIED",
            "OPTIMIZE_UTILIZATION",
            "BALANCED"
          ]
        },
        "enableNodeAutoprovisioning": {
          "description": "Enables automatic node pool creation and deletion.",
          "type": "boolean"
        },
        "resourceLimits": {
          "description": "Contains global constraints regarding minimum and maximum amount of resources in the cluster.",
          "type": "array",
          "items": {
            "$ref": "ResourceLimit"
          }
        },
        "defaultComputeClassConfig": {
          "description": "Default compute class is a configuration for default compute class.",
          "$ref": "DefaultComputeClassConfig"
        }
      },
      "description": "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."
    },
    "SwapConfig": {
      "type": "object",
      "properties": {
        "dedicatedLocalSsdProfile": {
          "description": "Provisions a new, separate local NVMe SSD exclusively for swap.",
          "$ref": "DedicatedLocalSsdProfile"
        },
        "enabled": {
          "description": "Optional. Enables or disables swap for the node pool.",
          "type": "boolean"
        },
        "ephemeralLocalSsdProfile": {
          "description": "Swap on the local SSD shared with pod ephemeral storage.",
          "$ref": "EphemeralLocalSsdProfile"
        },
        "bootDiskProfile": {
          "description": "Swap on the node's boot disk.",
          "$ref": "BootDiskProfile"
        },
        "encryptionConfig": {
          "description": "Optional. If omitted, swap space is encrypted by default.",
          "$ref": "EncryptionConfig"
        }
      },
      "description": "Configuration for swap memory on a node pool.",
      "id": "SwapConfig"
    },
    "HugepagesConfig": {
      "id": "HugepagesConfig",
      "type": "object",
      "properties": {
        "hugepageSize2m": {
          "type": "integer",
          "description": "Optional. Amount of 2M hugepages",
          "format": "int32"
        },
        "hugepageSize1g": {
          "description": "Optional. Amount of 1G hugepages",
          "format": "int32",
          "type": "integer"
        }
      },
      "description": "Hugepages amount in both 2m and 1g size"
    },
    "RegistryHeader": {
      "type": "object",
      "properties": {
        "key": {
          "description": "Key configures the header key.",
          "type": "string"
        },
        "value": {
          "description": "Value configures the header value.",
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      },
      "description": "RegistryHeader configures headers for the registry.",
      "id": "RegistryHeader"
    },
    "ServiceExternalIPsConfig": {
      "type": "object",
      "properties": {
        "enabled": {
          "description": "Whether Services with ExternalIPs field are allowed or not.",
          "type": "boolean"
        }
      },
      "description": "Config to block services with externalIPs field.",
      "id": "ServiceExternalIPsConfig"
    },
    "NodeTaint": {
      "type": "object",
      "properties": {
        "value": {
          "type": "string",
          "description": "Value for taint."
        },
        "effect": {
          "description": "Effect for taint.",
          "enumDescriptions": [
            "Not set",
            "NoSchedule",
            "PreferNoSchedule",
            "NoExecute"
          ],
          "type": "string",
          "enum": [
            "EFFECT_UNSPECIFIED",
            "NO_SCHEDULE",
            "PREFER_NO_SCHEDULE",
            "NO_EXECUTE"
          ]
        },
        "key": {
          "type": "string",
          "description": "Key for taint."
        }
      },
      "description": "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.",
      "id": "NodeTaint"
    },
    "ConfidentialNodes": {
      "description": "ConfidentialNodes is configuration for the confidential nodes feature, which makes nodes run on confidential VMs.",
      "type": "object",
      "properties": {
        "enabled": {
          "description": "Whether Confidential Nodes feature is enabled.",
          "type": "boolean"
        },
        "confidentialInstanceType": {
          "type": "string",
          "enum": [
            "CONFIDENTIAL_INSTANCE_TYPE_UNSPECIFIED",
            "SEV",
            "SEV_SNP",
            "TDX"
          ],
          "description": "Defines the type of technology used by the confidential node.",
          "enumDescriptions": [
            "No type specified. Do not use this value.",
            "AMD Secure Encrypted Virtualization.",
            "AMD Secure Encrypted Virtualization - Secure Nested Paging.",
            "Intel Trust Domain eXtension."
          ]
        }
      },
      "id": "ConfidentialNodes"
    },
    "Operation": {
      "type": "object",
      "properties": {
        "zone": {
          "type": "string",
          "description": "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.",
          "readOnly": true,
          "deprecated": true
        },
        "progress": {
          "description": "Output only. Progress information for an operation.",
          "readOnly": true,
          "$ref": "OperationProgress"
        },
        "statusMessage": {
          "description": "Output only. If an error has occurred, a textual description of the error. Deprecated. Use field error instead.",
          "readOnly": true,
          "deprecated": true,
          "type": "string"
        },
        "endTime": {
          "type": "string",
          "description": "Output only. The time the operation completed, in [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) text format.",
          "readOnly": true
        },
        "name": {
          "description": "Output only. The server-assigned ID for the operation.",
          "readOnly": true,
          "type": "string"
        },
        "targetLink": {
          "description": "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/v1/projects/123/locations/us-central1/clusters/my-cluster` ## `https://container.googleapis.com/v1/projects/123/zones/us-central1-c/clusters/my-cluster/nodePools/my-np` `https://container.googleapis.com/v1/projects/123/zones/us-central1-c/clusters/my-cluster/nodePools/my-np/node/my-node`",
          "readOnly": true,
          "type": "string"
        },
        "detail": {
          "type": "string",
          "description": "Output only. Detailed operation progress, if available.",
          "readOnly": true
        },
        "nodepoolConditions": {
          "description": "Which conditions caused the current node pool state. Deprecated. Use field error instead.",
          "deprecated": true,
          "type": "array",
          "items": {
            "$ref": "StatusCondition"
          }
        },
        "error": {
          "description": "The error result of the operation in case of failure.",
          "$ref": "Status"
        },
        "location": {
          "description": "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.",
          "readOnly": true,
          "type": "string"
        },
        "status": {
          "description": "Output only. The current status of the operation.",
          "enumDescriptions": [
            "Not set.",
            "The operation has been created.",
            "The operation is currently running.",
            "The operation is done, either cancelled or completed.",
            "The operation is aborting."
          ],
          "type": "string",
          "enum": [
            "STATUS_UNSPECIFIED",
            "PENDING",
            "RUNNING",
            "DONE",
            "ABORTING"
          ],
          "readOnly": true
        },
        "selfLink": {
          "description": "Output only. Server-defined URI for the operation. Example: `https://container.googleapis.com/v1alpha1/projects/123/locations/us-central1/operations/operation-123`.",
          "readOnly": true,
          "type": "string"
        },
        "startTime": {
          "description": "Output only. The time the operation started, in [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) text format.",
          "readOnly": true,
          "type": "string"
        },
        "clusterConditions": {
          "description": "Which conditions caused the current cluster state. Deprecated. Use field error instead.",
          "deprecated": true,
          "type": "array",
          "items": {
            "$ref": "StatusCondition"
          }
        },
        "operationType": {
          "enumDeprecated": [
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            true,
            true,
            true,
            false,
            true,
            true,
            false,
            false
          ],
          "type": "string",
          "enum": [
            "TYPE_UNSPECIFIED",
            "CREATE_CLUSTER",
            "DELETE_CLUSTER",
            "UPGRADE_MASTER",
            "UPGRADE_NODES",
            "REPAIR_CLUSTER",
            "UPDATE_CLUSTER",
            "CREATE_NODE_POOL",
            "DELETE_NODE_POOL",
            "SET_NODE_POOL_MANAGEMENT",
            "AUTO_REPAIR_NODES",
            "AUTO_UPGRADE_NODES",
            "SET_LABELS",
            "SET_MASTER_AUTH",
            "SET_NODE_POOL_SIZE",
            "SET_NETWORK_POLICY",
            "SET_MAINTENANCE_POLICY",
            "RESIZE_CLUSTER",
            "FLEET_FEATURE_UPGRADE"
          ],
          "description": "Output only. The operation type.",
          "enumDescriptions": [
            "Not set.",
            "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.",
            "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.",
            "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).",
            "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.",
            "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).",
            "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.",
            "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.",
            "The node pool is being deleted. The node pool should be assumed to be unusable as soon as this operation starts.",
            "The node pool's manamagent field is being updated. These operations only update metadata and may be concurrent with most other operations.",
            "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.",
            "Unused. Automatic node upgrade uses UPGRADE_NODES.",
            "Unused. Updating labels uses UPDATE_CLUSTER.",
            "Unused. Updating master auth uses UPDATE_CLUSTER.",
            "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.",
            "Unused. Updating network policy uses UPDATE_CLUSTER.",
            "Unused. Updating maintenance policy uses UPDATE_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 features of GKE Enterprise are being upgraded. The cluster should be assumed to be blocked for other upgrades until the operation finishes."
          ],
          "readOnly": true
        }
      },
      "description": "This operation resource represents operations that may have happened or are happening on the cluster. All fields are output only.",
      "id": "Operation"
    },
    "ListNodePoolsResponse": {
      "id": "ListNodePoolsResponse",
      "description": "ListNodePoolsResponse is the result of ListNodePoolsRequest.",
      "type": "object",
      "properties": {
        "nodePools": {
          "type": "array",
          "items": {
            "$ref": "NodePool"
          },
          "description": "A list of node pools for a cluster."
        }
      }
    },
    "ReleaseChannelConfig": {
      "id": "ReleaseChannelConfig",
      "type": "object",
      "properties": {
        "upgradeTargetVersion": {
          "type": "string",
          "description": "The auto upgrade target version for clusters on the channel."
        },
        "validVersions": {
          "description": "List of valid versions for the channel.",
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "defaultVersion": {
          "description": "The default version for newly created clusters on the channel.",
          "type": "string"
        },
        "availableVersions": {
          "type": "array",
          "items": {
            "$ref": "AvailableVersion"
          },
          "description": "Deprecated. This field has been deprecated and replaced with the valid_versions field.",
          "deprecated": true
        },
        "channel": {
          "type": "string",
          "enum": [
            "UNSPECIFIED",
            "RAPID",
            "REGULAR",
            "STABLE",
            "EXTENDED"
          ],
          "description": "The release channel this configuration applies to.",
          "enumDescriptions": [
            "No channel specified.",
            "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.",
            "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.",
            "Clusters subscribed to STABLE receive versions that are known to be stable and reliable in production.",
            "Clusters subscribed to EXTENDED receive extended support and availability for versions which are known to be stable and reliable in production."
          ]
        }
      },
      "description": "ReleaseChannelConfig exposes configuration for a release channel."
    },
    "AutoscaledRolloutPolicy": {
      "id": "AutoscaledRolloutPolicy",
      "description": "Autoscaled rollout policy utilizes the cluster autoscaler during blue-green upgrade to scale both the blue and green pools.",
      "type": "object",
      "properties": {
        "waitForDrainDuration": {
          "type": "string",
          "description": "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.",
          "format": "google-duration"
        }
      }
    },
    "SetLegacyAbacRequest": {
      "type": "object",
      "properties": {
        "clusterId": {
          "description": "Deprecated. The name of the cluster to update. This field has been deprecated and replaced by the name field.",
          "deprecated": true,
          "type": "string"
        },
        "enabled": {
          "description": "Required. Whether ABAC authorization will be enabled in the cluster.",
          "type": "boolean"
        },
        "zone": {
          "type": "string",
          "description": "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.",
          "deprecated": true
        },
        "name": {
          "description": "The name (project, location, cluster name) of the cluster to set legacy abac. Specified in the format `projects/*/locations/*/clusters/*`.",
          "type": "string"
        },
        "projectId": {
          "description": "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.",
          "deprecated": true,
          "type": "string"
        }
      },
      "description": "SetLegacyAbacRequest enables or disables the ABAC authorization mechanism for a cluster.",
      "id": "SetLegacyAbacRequest"
    },
    "WorkloadMetadataConfig": {
      "description": "WorkloadMetadataConfig defines the metadata configuration to expose to workloads on the node pool.",
      "type": "object",
      "properties": {
        "nodeMetadata": {
          "type": "string",
          "enum": [
            "UNSPECIFIED",
            "SECURE",
            "EXPOSE",
            "GKE_METADATA_SERVER"
          ],
          "description": "NodeMetadata is the configuration for how to expose metadata to the workloads running on the node.",
          "enumDescriptions": [
            "Not set.",
            "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 all VM metadata to pods.",
            "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."
          ],
          "deprecated": true
        },
        "mode": {
          "type": "string",
          "enum": [
            "MODE_UNSPECIFIED",
            "GCE_METADATA",
            "GKE_METADATA"
          ],
          "description": "Mode is the configuration for how to expose metadata to workloads running on the node pool.",
          "enumDescriptions": [
            "Not set.",
            "Expose all Compute Engine metadata to pods.",
            "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."
          ]
        }
      },
      "id": "WorkloadMetadataConfig"
    },
    "LustreCsiDriverConfig": {
      "id": "LustreCsiDriverConfig",
      "description": "Configuration for the Lustre CSI driver.",
      "type": "object",
      "properties": {
        "enableLegacyLustrePort": {
          "description": "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.",
          "deprecated": true,
          "type": "boolean"
        },
        "enabled": {
          "description": "Whether the Lustre CSI driver is enabled for this cluster.",
          "type": "boolean"
        },
        "disableMultiNic": {
          "description": "When set to true, this disables multi-NIC support for the Lustre CSI driver. By default, GKE enables multi-NIC support, which allows the Lustre CSI driver to automatically detect and configure all suitable network interfaces on a node to maximize I/O performance for demanding workloads.",
          "type": "boolean"
        }
      }
    },
    "MeshCertificates": {
      "type": "object",
      "properties": {
        "enableCertificates": {
          "type": "boolean",
          "description": "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)."
        }
      },
      "description": "Configuration for issuance of mTLS keys and certificates to Kubernetes pods.",
      "id": "MeshCertificates"
    },
    "CompleteNodePoolUpgradeRequest": {
      "id": "CompleteNodePoolUpgradeRequest",
      "type": "object",
      "properties": {},
      "description": "CompleteNodePoolUpgradeRequest sets the name of target node pool to complete upgrade."
    },
    "PdbBlockedPod": {
      "type": "object",
      "properties": {
        "namespace": {
          "description": "The namespace of the pod.",
          "type": "string"
        },
        "name": {
          "type": "string",
          "description": "The name of the pod."
        }
      },
      "description": "The namespace/name of the pod whose eviction is blocked by PDB.",
      "id": "PdbBlockedPod"
    },
    "ListClustersResponse": {
      "id": "ListClustersResponse",
      "type": "object",
      "properties": {
        "clusters": {
          "description": "A list of clusters in the project in the specified zone, or across all ones.",
          "type": "array",
          "items": {
            "$ref": "Cluster"
          }
        },
        "missingZones": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "If any zones are listed here, the list of clusters returned may be missing those zones."
        }
      },
      "description": "ListClustersResponse is the result of ListClustersRequest."
    },
    "LoggingVariantConfig": {
      "id": "LoggingVariantConfig",
      "type": "object",
      "properties": {
        "variant": {
          "description": "Logging variant deployed on nodes.",
          "enumDescriptions": [
            "Default value. This shouldn't be used.",
            "default logging variant.",
            "maximum logging throughput variant."
          ],
          "type": "string",
          "enum": [
            "VARIANT_UNSPECIFIED",
            "DEFAULT",
            "MAX_THROUGHPUT"
          ]
        }
      },
      "description": "LoggingVariantConfig specifies the behaviour of the logging component."
    },
    "UpgradeDetails": {
      "type": "object",
      "properties": {
        "state": {
          "readOnly": true,
          "type": "string",
          "enum": [
            "UNKNOWN",
            "FAILED",
            "SUCCEEDED",
            "CANCELED",
            "RUNNING"
          ],
          "description": "Output only. The state of the upgrade.",
          "enumDescriptions": [
            "Upgrade state is unknown.",
            "Upgrade has failed with an error.",
            "Upgrade has succeeded.",
            "Upgrade has been canceled.",
            "Upgrade is running."
          ]
        },
        "endTime": {
          "description": "The end timestamp of the upgrade.",
          "format": "google-datetime",
          "type": "string"
        },
        "initialVersion": {
          "type": "string",
          "description": "The version before the upgrade."
        },
        "initialEmulatedVersion": {
          "description": "The emulated version before the upgrade.",
          "type": "string"
        },
        "targetEmulatedVersion": {
          "type": "string",
          "description": "The emulated version after the upgrade."
        },
        "startTime": {
          "description": "The start timestamp of the upgrade.",
          "format": "google-datetime",
          "type": "string"
        },
        "targetVersion": {
          "type": "string",
          "description": "The version after the upgrade."
        },
        "startType": {
          "description": "The start type of the upgrade.",
          "enumDescriptions": [
            "Upgrade start type is unspecified.",
            "Upgrade started automatically.",
            "Upgrade started manually."
          ],
          "type": "string",
          "enum": [
            "START_TYPE_UNSPECIFIED",
            "AUTOMATIC",
            "MANUAL"
          ]
        }
      },
      "description": "UpgradeDetails contains detailed information of each individual upgrade operation.",
      "id": "UpgradeDetails"
    },
    "AddonsConfig": {
      "id": "AddonsConfig",
      "type": "object",
      "properties": {
        "horizontalPodAutoscaling": {
          "description": "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.",
          "$ref": "HorizontalPodAutoscaling"
        },
        "gcePersistentDiskCsiDriverConfig": {
          "description": "Configuration for the Compute Engine Persistent Disk CSI driver.",
          "$ref": "GcePersistentDiskCsiDriverConfig"
        },
        "httpLoadBalancing": {
          "description": "Configuration for the HTTP (L7) load balancing controller addon, which makes it easy to set up HTTP load balancers for services in a cluster.",
          "$ref": "HttpLoadBalancing"
        },
        "podSnapshotConfig": {
          "description": "Configuration for the Pod Snapshot feature.",
          "$ref": "PodSnapshotConfig"
        },
        "kubernetesDashboard": {
          "$ref": "KubernetesDashboard",
          "description": "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",
          "deprecated": true
        },
        "gcpFilestoreCsiDriverConfig": {
          "description": "Configuration for the Filestore CSI driver.",
          "$ref": "GcpFilestoreCsiDriverConfig"
        },
        "statefulHaConfig": {
          "description": "Optional. Configuration for the StatefulHA add-on.",
          "$ref": "StatefulHAConfig"
        },
        "dnsCacheConfig": {
          "description": "Configuration for NodeLocalDNS, a dns cache running on cluster nodes",
          "$ref": "DnsCacheConfig"
        },
        "istioConfig": {
          "description": "Configuration for Istio, an open platform to connect, manage, and secure microservices.",
          "deprecated": true,
          "$ref": "IstioConfig"
        },
        "parallelstoreCsiDriverConfig": {
          "description": "Configuration for the Cloud Storage Parallelstore CSI driver.",
          "$ref": "ParallelstoreCsiDriverConfig"
        },
        "lustreCsiDriverConfig": {
          "description": "Configuration for the Lustre CSI driver.",
          "$ref": "LustreCsiDriverConfig"
        },
        "networkPolicyConfig": {
          "description": "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.",
          "$ref": "NetworkPolicyConfig"
        },
        "slurmOperatorConfig": {
          "description": "Configuration for the Slurm Operator.",
          "$ref": "SlurmOperatorConfig"
        },
        "agentSandboxConfig": {
          "description": "Optional. Configuration for the AgentSandbox addon.",
          "$ref": "AgentSandboxConfig"
        },
        "highScaleCheckpointingConfig": {
          "description": "Configuration for the High Scale Checkpointing add-on.",
          "$ref": "HighScaleCheckpointingConfig"
        },
        "kalmConfig": {
          "$ref": "KalmConfig",
          "description": "Configuration for the KALM addon, which manages the lifecycle of k8s applications.",
          "deprecated": true
        },
        "gcsFuseCsiDriverConfig": {
          "description": "Configuration for the Cloud Storage Fuse CSI driver.",
          "$ref": "GcsFuseCsiDriverConfig"
        },
        "sliceControllerConfig": {
          "description": "Optional. Configuration for the slice controller add-on.",
          "$ref": "SliceControllerConfig"
        },
        "configConnectorConfig": {
          "description": "Configuration for the ConfigConnector add-on, a Kubernetes extension to manage hosted Google Cloud services through the Kubernetes API.",
          "$ref": "ConfigConnectorConfig"
        },
        "gkeBackupAgentConfig": {
          "description": "Configuration for the Backup for GKE agent addon.",
          "$ref": "GkeBackupAgentConfig"
        },
        "cloudRunConfig": {
          "description": "Configuration for the Cloud Run addon. The `IstioConfig` addon must be enabled in order to enable Cloud Run addon. This option can only be enabled at cluster creation time.",
          "$ref": "CloudRunConfig"
        },
        "rayOperatorConfig": {
          "description": "Optional. Configuration for Ray Operator addon.",
          "$ref": "RayOperatorConfig"
        }
      },
      "description": "Configuration for the addons that can be automatically spun up in the cluster, enabling additional functionality."
    },
    "SetLoggingServiceRequest": {
      "id": "SetLoggingServiceRequest",
      "type": "object",
      "properties": {
        "projectId": {
          "description": "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.",
          "deprecated": true,
          "type": "string"
        },
        "name": {
          "description": "The name (project, location, cluster) of the cluster to set logging. Specified in the format `projects/*/locations/*/clusters/*`.",
          "type": "string"
        },
        "zone": {
          "type": "string",
          "description": "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.",
          "deprecated": true
        },
        "loggingService": {
          "description": "Required. 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.",
          "type": "string"
        },
        "clusterId": {
          "type": "string",
          "description": "Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field.",
          "deprecated": true
        }
      },
      "description": "SetLoggingServiceRequest sets the logging service of a cluster."
    },
    "UpgradeAvailableEvent": {
      "description": "UpgradeAvailableEvent is a notification sent to customers when a new available version is released.",
      "type": "object",
      "properties": {
        "resourceType": {
          "type": "string",
          "enum": [
            "UPGRADE_RESOURCE_TYPE_UNSPECIFIED",
            "MASTER",
            "NODE_POOL"
          ],
          "description": "The resource type of the release version.",
          "enumDescriptions": [
            "Default value. This shouldn't be used.",
            "Master / control plane",
            "Node pool"
          ]
        },
        "resource": {
          "type": "string",
          "description": "Optional relative path to the resource. For example, the relative path of the node pool."
        },
        "version": {
          "type": "string",
          "description": "The release version available for upgrade."
        },
        "windowsVersions": {
          "description": "Windows node versions info.",
          "$ref": "WindowsVersions"
        },
        "releaseChannel": {
          "description": "The release channel of the version. If empty, it means a non-channel release.",
          "$ref": "ReleaseChannel"
        }
      },
      "id": "UpgradeAvailableEvent"
    },
    "PrivateClusterMasterGlobalAccessConfig": {
      "id": "PrivateClusterMasterGlobalAccessConfig",
      "type": "object",
      "properties": {
        "enabled": {
          "description": "Whenever master is accessible globally or not.",
          "type": "boolean"
        }
      },
      "description": "Configuration for controlling master global access settings."
    },
    "SecretManagerConfig": {
      "description": "SecretManagerConfig is config for secret manager enablement.",
      "type": "object",
      "properties": {
        "enabled": {
          "type": "boolean",
          "description": "Enable/Disable Secret Manager Config."
        },
        "rotationConfig": {
          "description": "Rotation config for secret manager.",
          "$ref": "RotationConfig"
        }
      },
      "id": "SecretManagerConfig"
    },
    "EvictionGracePeriod": {
      "description": "Eviction grace periods are grace periods for each eviction signal.",
      "type": "object",
      "properties": {
        "nodefsInodesFree": {
          "description": "Optional. Grace period for eviction due to nodefs inodes free signal. Sample format: \"10s\". Must be \u003e= 0. See https://kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-eviction/#eviction-signals",
          "type": "string"
        },
        "imagefsAvailable": {
          "description": "Optional. Grace period for eviction due to imagefs available signal. Sample format: \"10s\". Must be \u003e= 0. See https://kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-eviction/#eviction-signals",
          "type": "string"
        },
        "pidAvailable": {
          "description": "Optional. Grace period for eviction due to pid available signal. Sample format: \"10s\". Must be \u003e= 0. See https://kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-eviction/#eviction-signals",
          "type": "string"
        },
        "nodefsAvailable": {
          "type": "string",
          "description": "Optional. Grace period for eviction due to nodefs available signal. Sample format: \"10s\". Must be \u003e= 0. See https://kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-eviction/#eviction-signals"
        },
        "memoryAvailable": {
          "type": "string",
          "description": "Optional. Grace period for eviction due to memory available signal. Sample format: \"10s\". Must be \u003e= 0. See https://kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-eviction/#eviction-signals"
        },
        "imagefsInodesFree": {
          "description": "Optional. Grace period for eviction due to imagefs inodes free signal. Sample format: \"10s\". Must be \u003e= 0. See https://kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-eviction/#eviction-signals",
          "type": "string"
        }
      },
      "id": "EvictionGracePeriod"
    },
    "RayClusterLoggingConfig": {
      "type": "object",
      "properties": {
        "enabled": {
          "type": "boolean",
          "description": "Enable log collection for Ray clusters."
        }
      },
      "description": "RayClusterLoggingConfig specifies logging configuration for Ray clusters.",
      "id": "RayClusterLoggingConfig"
    },
    "DefaultComputeClassConfig": {
      "type": "object",
      "properties": {
        "enabled": {
          "description": "Enables default compute class.",
          "type": "boolean"
        }
      },
      "description": "DefaultComputeClassConfig defines default compute class configuration.",
      "id": "DefaultComputeClassConfig"
    },
    "RotationConfig": {
      "type": "object",
      "properties": {
        "rotationInterval": {
          "type": "string",
          "description": "The interval between two consecutive rotations. Default rotation interval is 2 minutes.",
          "format": "google-duration"
        },
        "enabled": {
          "type": "boolean",
          "description": "Whether the rotation is enabled."
        }
      },
      "description": "RotationConfig is config for secret manager auto rotation.",
      "id": "RotationConfig"
    },
    "ClientCertificateConfig": {
      "id": "ClientCertificateConfig",
      "description": "Configuration for client certificates on the cluster.",
      "type": "object",
      "properties": {
        "issueClientCertificate": {
          "type": "boolean",
          "description": "Issue a client certificate."
        }
      }
    },
    "ConsumptionMeteringConfig": {
      "id": "ConsumptionMeteringConfig",
      "description": "Parameters for controlling consumption metering.",
      "type": "object",
      "properties": {
        "enabled": {
          "description": "Whether to enable consumption metering for this cluster. If enabled, a second BigQuery table will be created to hold resource consumption records.",
          "type": "boolean"
        }
      }
    },
    "SetMaintenancePolicyRequest": {
      "id": "SetMaintenancePolicyRequest",
      "description": "SetMaintenancePolicyRequest sets the maintenance policy for a cluster.",
      "type": "object",
      "properties": {
        "clusterId": {
          "type": "string",
          "description": "Required. The name of the cluster to update."
        },
        "projectId": {
          "type": "string",
          "description": "Required. The Google Developers Console [project ID or project number](https://cloud.google.com/resource-manager/docs/creating-managing-projects)."
        },
        "name": {
          "description": "The name (project, location, cluster name) of the cluster to set maintenance policy. Specified in the format `projects/*/locations/*/clusters/*`.",
          "type": "string"
        },
        "zone": {
          "description": "Required. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides.",
          "type": "string"
        },
        "maintenancePolicy": {
          "description": "Required. The maintenance policy to be set for the cluster. An empty field clears the existing maintenance policy.",
          "$ref": "MaintenancePolicy"
        }
      }
    },
    "AcceleratorConfig": {
      "id": "AcceleratorConfig",
      "type": "object",
      "properties": {
        "gpuSharingConfig": {
          "description": "The configuration for GPU sharing options.",
          "$ref": "GPUSharingConfig"
        },
        "acceleratorCount": {
          "description": "The number of the accelerator cards exposed to an instance.",
          "format": "int64",
          "type": "string"
        },
        "gpuPartitionSize": {
          "description": "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).",
          "type": "string"
        },
        "maxTimeSharedClientsPerGpu": {
          "description": "The number of time-shared GPU resources to expose for each physical GPU.",
          "deprecated": true,
          "format": "int64",
          "type": "string"
        },
        "gpuDriverInstallationConfig": {
          "description": "The configuration for auto installation of GPU driver.",
          "$ref": "GPUDriverInstallationConfig"
        },
        "acceleratorType": {
          "type": "string",
          "description": "The accelerator type resource name. List of supported accelerators [here](https://cloud.google.com/compute/docs/gpus)"
        }
      },
      "description": "AcceleratorConfig represents a Hardware Accelerator request."
    },
    "AutoMonitoringConfig": {
      "description": "AutoMonitoringConfig defines the configuration for GKE Workload Auto-Monitoring.",
      "type": "object",
      "properties": {
        "scope": {
          "description": "Scope for GKE Workload Auto-Monitoring.",
          "enumDescriptions": [
            "Not set.",
            "Auto-Monitoring is enabled for all supported applications.",
            "Disable Auto-Monitoring."
          ],
          "type": "string",
          "enum": [
            "SCOPE_UNSPECIFIED",
            "ALL",
            "NONE"
          ]
        }
      },
      "id": "AutoMonitoringConfig"
    },
    "NetworkTierConfig": {
      "id": "NetworkTierConfig",
      "description": "NetworkTierConfig contains network tier information.",
      "type": "object",
      "properties": {
        "networkTier": {
          "description": "Network tier configuration.",
          "enumDescriptions": [
            "By default, use project-level configuration. When unspecified, the behavior defaults to NETWORK_TIER_DEFAULT. For cluster updates, this implies no action (no-op).",
            "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.",
            "Premium network tier.",
            "Standard network tier."
          ],
          "type": "string",
          "enum": [
            "NETWORK_TIER_UNSPECIFIED",
            "NETWORK_TIER_DEFAULT",
            "NETWORK_TIER_PREMIUM",
            "NETWORK_TIER_STANDARD"
          ]
        }
      }
    },
    "RollbackSafeUpgrade": {
      "description": "RollbackSafeUpgrade is the configuration for the rollback safe upgrade.",
      "type": "object",
      "properties": {
        "controlPlaneSoakDuration": {
          "description": "A user-defined period for the cluster remains in the rollbackable state. ex: {seconds: 21600}.",
          "format": "google-duration",
          "type": "string"
        }
      },
      "id": "RollbackSafeUpgrade"
    },
    "ClusterUpdate": {
      "id": "ClusterUpdate",
      "type": "object",
      "properties": {
        "desiredMasterAuthorizedNetworksConfig": {
          "$ref": "MasterAuthorizedNetworksConfig",
          "description": "The desired configuration options for master authorized networks feature. Deprecated: Use desired_control_plane_endpoints_config.ip_endpoints_config.authorized_networks_config instead.",
          "deprecated": true
        },
        "desiredLoggingConfig": {
          "description": "The desired logging configuration.",
          "$ref": "LoggingConfig"
        },
        "desiredAdditionalIpRangesConfig": {
          "description": "The desired config for additional subnetworks attached to the cluster.",
          "$ref": "DesiredAdditionalIPRangesConfig"
        },
        "desiredDefaultEnablePrivateNodes": {
          "description": "Override the default setting of whether future created nodes have private IP addresses only, namely NetworkConfig.default_enable_private_nodes",
          "type": "boolean"
        },
        "desiredSecurityPostureConfig": {
          "description": "Enable/Disable Security Posture API features for the cluster.",
          "$ref": "SecurityPostureConfig"
        },
        "desiredNodePoolLoggingConfig": {
          "description": "The desired node pool logging configuration defaults for the cluster.",
          "$ref": "NodePoolLoggingConfig"
        },
        "desiredNodePoolAutoConfigLinuxNodeConfig": {
          "description": "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.",
          "$ref": "LinuxNodeConfig"
        },
        "gkeAutoUpgradeConfig": {
          "description": "Configuration for GKE auto upgrade.",
          "$ref": "GkeAutoUpgradeConfig"
        },
        "desiredNetworkTierConfig": {
          "description": "The desired network tier configuration for the cluster.",
          "$ref": "NetworkTierConfig"
        },
        "desiredParentProductConfig": {
          "description": "The desired parent product config for the cluster.",
          "$ref": "ParentProductConfig"
        },
        "desiredPodSecurityPolicyConfig": {
          "description": "The desired configuration options for the PodSecurityPolicy feature.",
          "$ref": "PodSecurityPolicyConfig"
        },
        "desiredAuthenticatorGroupsConfig": {
          "description": "AuthenticatorGroupsConfig specifies the config for the cluster security groups settings.",
          "$ref": "AuthenticatorGroupsConfig"
        },
        "desiredK8sBetaApis": {
          "description": "Beta APIs enabled for cluster.",
          "$ref": "K8sBetaAPIConfig"
        },
        "desiredFleet": {
          "description": "The desired fleet configuration for the cluster.",
          "$ref": "Fleet"
        },
        "desiredDatabaseEncryption": {
          "description": "Configuration of etcd encryption.",
          "$ref": "DatabaseEncryption"
        },
        "desiredServiceExternalIpsConfig": {
          "description": "ServiceExternalIPsConfig specifies the config for the use of Services with ExternalIPs field.",
          "$ref": "ServiceExternalIPsConfig"
        },
        "desiredNodePoolId": {
          "type": "string",
          "description": "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."
        },
        "desiredPodAutoscaling": {
          "description": "The desired config for pod autoscaling.",
          "$ref": "PodAutoscaling"
        },
        "desiredContainerdConfig": {
          "description": "The desired containerd config for the cluster.",
          "$ref": "ContainerdConfig"
        },
        "desiredSecretSyncConfig": {
          "description": "Configuration for sync Secret Manager secrets as k8s secrets.",
          "$ref": "SecretSyncConfig"
        },
        "desiredClusterTelemetry": {
          "description": "The desired telemetry integration for the cluster.",
          "$ref": "ClusterTelemetry"
        },
        "desiredMasterVersion": {
          "description": "The Kubernetes version to change the master to. The only valid value is the latest supported version. 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",
          "type": "string"
        },
        "desiredResourceUsageExportConfig": {
          "description": "The desired configuration for exporting resource usage.",
          "$ref": "ResourceUsageExportConfig"
        },
        "desiredNodePoolAutoConfigResourceManagerTags": {
          "description": "The desired resource manager tags that apply to all auto-provisioned node pools in autopilot clusters and node auto-provisioning enabled clusters.",
          "$ref": "ResourceManagerTags"
        },
        "desiredPrivilegedAdmissionConfig": {
          "description": "The desired privileged admission config for the cluster.",
          "$ref": "PrivilegedAdmissionConfig"
        },
        "userManagedKeysConfig": {
          "$ref": "UserManagedKeysConfig",
          "description": "The Custom keys configuration for the cluster. This field is deprecated. Use ClusterUpdate.desired_user_managed_keys_config instead.",
          "deprecated": true
        },
        "desiredMaster": {
          "description": "Configuration for master components.",
          "$ref": "Master"
        },
        "desiredMonitoringService": {
          "type": "string",
          "description": "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."
        },
        "desiredPrivateIpv6GoogleAccess": {
          "description": "The desired state of IPv6 connectivity to Google Services.",
          "enumDescriptions": [
            "Default value. Same as DISABLED",
            "No private access to or from Google Services",
            "Enables private IPv6 access to Google Services from GKE",
            "Enables private IPv6 access to and from Google Services"
          ],
          "type": "string",
          "enum": [
            "PRIVATE_IPV6_GOOGLE_ACCESS_UNSPECIFIED",
            "PRIVATE_IPV6_GOOGLE_ACCESS_DISABLED",
            "PRIVATE_IPV6_GOOGLE_ACCESS_TO_GOOGLE",
            "PRIVATE_IPV6_GOOGLE_ACCESS_BIDIRECTIONAL"
          ]
        },
        "desiredCompliancePostureConfig": {
          "$ref": "CompliancePostureConfig",
          "description": "Deprecated: Compliance Posture is no longer supported. For more details, see https://cloud.google.com/kubernetes-engine/docs/deprecations/posture-management-deprecation. Enable/Disable Compliance Posture features for the cluster.",
          "deprecated": true
        },
        "desiredAutoIpamConfig": {
          "description": "AutoIpamConfig contains all information related to Auto IPAM",
          "$ref": "AutoIpamConfig"
        },
        "desiredNodePoolAutoConfigNetworkTags": {
          "description": "The desired network tags that apply to all auto-provisioned node pools in autopilot clusters and node auto-provisioning enabled clusters.",
          "$ref": "NetworkTags"
        },
        "desiredIntraNodeVisibilityConfig": {
          "description": "The desired config of Intra-node visibility.",
          "$ref": "IntraNodeVisibilityConfig"
        },
        "desiredManagedOpentelemetryConfig": {
          "description": "The desired managed open telemetry configuration.",
          "$ref": "ManagedOpenTelemetryConfig"
        },
        "desiredVerticalPodAutoscaling": {
          "description": "Cluster-level Vertical Pod Autoscaling configuration.",
          "$ref": "VerticalPodAutoscaling"
        },
        "desiredCostManagementConfig": {
          "description": "The desired configuration for the fine-grained cost management feature.",
          "$ref": "CostManagementConfig"
        },
        "desiredHostMaintenancePolicy": {
          "description": "HostMaintenancePolicy contains the desired maintenance policy for the Google Compute Engine hosts.",
          "$ref": "HostMaintenancePolicy"
        },
        "desiredDefaultSnatStatus": {
          "description": "The desired status of whether to disable default sNAT for this cluster.",
          "$ref": "DefaultSnatStatus"
        },
        "desiredReleaseChannel": {
          "description": "The desired release channel configuration.",
          "$ref": "ReleaseChannel"
        },
        "desiredControlPlaneEndpointsConfig": {
          "description": "Control plane endpoints configuration.",
          "$ref": "ControlPlaneEndpointsConfig"
        },
        "desiredInTransitEncryptionConfig": {
          "type": "string",
          "enum": [
            "IN_TRANSIT_ENCRYPTION_CONFIG_UNSPECIFIED",
            "IN_TRANSIT_ENCRYPTION_DISABLED",
            "IN_TRANSIT_ENCRYPTION_INTER_NODE_TRANSPARENT"
          ],
          "description": "Specify the details of in-transit encryption. Now named inter-node transparent encryption.",
          "enumDescriptions": [
            "Unspecified, will be inferred as default - IN_TRANSIT_ENCRYPTION_UNSPECIFIED.",
            "In-transit encryption is disabled.",
            "Data in-transit is encrypted using inter-node transparent encryption."
          ]
        },
        "desiredDatapathProvider": {
          "description": "The desired datapath provider for the cluster.",
          "enumDescriptions": [
            "Default value.",
            "Use the IPTables implementation based on kube-proxy.",
            "Use the eBPF based GKE Dataplane V2 with additional features. See the [GKE Dataplane V2 documentation](https://cloud.google.com/kubernetes-engine/docs/how-to/dataplane-v2) for more."
          ],
          "type": "string",
          "enum": [
            "DATAPATH_PROVIDER_UNSPECIFIED",
            "LEGACY_DATAPATH",
            "ADVANCED_DATAPATH"
          ]
        },
        "desiredEnableFqdnNetworkPolicy": {
          "description": "Enable/Disable FQDN Network Policy for the cluster.",
          "type": "boolean"
        },
        "desiredIdentityServiceConfig": {
          "description": "The desired Identity Service component configuration.",
          "$ref": "IdentityServiceConfig"
        },
        "desiredNodeKubeletConfig": {
          "description": "The desired node kubelet config for the cluster.",
          "$ref": "NodeKubeletConfig"
        },
        "desiredL4ilbSubsettingConfig": {
          "description": "The desired L4 Internal Load Balancer Subsetting configuration.",
          "$ref": "ILBSubsettingConfig"
        },
        "desiredGatewayApiConfig": {
          "description": "The desired config of Gateway API on this cluster.",
          "$ref": "GatewayAPIConfig"
        },
        "desiredNodePoolAutoConfigKubeletConfig": {
          "description": "The desired node kubelet config for all auto-provisioned node pools in autopilot clusters and node auto-provisioning enabled clusters.",
          "$ref": "NodeKubeletConfig"
        },
        "desiredGcfsConfig": {
          "description": "The desired GCFS config for the cluster.",
          "$ref": "GcfsConfig"
        },
        "removedAdditionalPodRangesConfig": {
          "description": "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.",
          "$ref": "AdditionalPodRangesConfig"
        },
        "desiredEnableMultiNetworking": {
          "description": "Enable/Disable Multi-Networking for the cluster",
          "type": "boolean"
        },
        "desiredTpuConfig": {
          "$ref": "TpuConfig",
          "description": "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.",
          "deprecated": true
        },
        "desiredEnablePrivateEndpoint": {
          "description": "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.",
          "deprecated": true,
          "type": "boolean"
        },
        "desiredRollbackSafeUpgrade": {
          "description": "The desired rollback safe upgrade configuration.",
          "$ref": "RollbackSafeUpgrade"
        },
        "desiredDisableL4LbFirewallReconciliation": {
          "description": "Enable/Disable L4 LB VPC firewall reconciliation for the cluster.",
          "type": "boolean"
        },
        "desiredScheduleUpgradeConfig": {
          "description": "Optional. The desired scheduled upgrades configuration for the cluster.",
          "$ref": "ScheduleUpgradeConfig"
        },
        "desiredWorkloadIdentityConfig": {
          "description": "Configuration for Workload Identity.",
          "$ref": "WorkloadIdentityConfig"
        },
        "desiredBinaryAuthorization": {
          "description": "The desired configuration options for the Binary Authorization feature.",
          "$ref": "BinaryAuthorization"
        },
        "desiredMeshCertificates": {
          "description": "Configuration for issuance of mTLS keys and certificates to Kubernetes pods.",
          "$ref": "MeshCertificates"
        },
        "desiredManagedMachineLearningDiagnosticsConfig": {
          "description": "The desired managed machine learning diagnostics configuration.",
          "$ref": "ManagedMachineLearningDiagnosticsConfig"
        },
        "desiredAddonsConfig": {
          "description": "Configurations for the various addons available to run in the cluster.",
          "$ref": "AddonsConfig"
        },
        "desiredSecretManagerConfig": {
          "description": "Enable/Disable Secret Manager Config.",
          "$ref": "SecretManagerConfig"
        },
        "desiredUserManagedKeysConfig": {
          "description": "The desired user managed keys config for the cluster.",
          "$ref": "UserManagedKeysConfig"
        },
        "desiredRbacBindingConfig": {
          "description": "RBACBindingConfig allows user to restrict ClusterRoleBindings an RoleBindings that can be created.",
          "$ref": "RBACBindingConfig"
        },
        "desiredShieldedNodes": {
          "description": "Configuration for Shielded Nodes.",
          "$ref": "ShieldedNodes"
        },
        "desiredLoggingService": {
          "type": "string",
          "description": "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."
        },
        "privateClusterConfig": {
          "description": "The desired private cluster configuration. Has no effect. Use desired_private_cluster_config instead.",
          "deprecated": true,
          "$ref": "PrivateClusterConfig"
        },
        "etag": {
          "description": "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.",
          "type": "string"
        },
        "desiredControlPlaneEgress": {
          "description": "The desired control plane egress control config for the cluster.",
          "$ref": "ControlPlaneEgress"
        },
        "desiredWorkloadCertificates": {
          "description": "Configuration for issuance of mTLS keys and certificates to Kubernetes pods.",
          "$ref": "WorkloadCertificates"
        },
        "desiredNetworkPerformanceConfig": {
          "description": "The desired network performance config.",
          "$ref": "ClusterNetworkPerformanceConfig"
        },
        "desiredEnableCiliumClusterwideNetworkPolicy": {
          "description": "Enable/Disable Cilium Clusterwide Network Policy for the cluster.",
          "type": "boolean"
        },
        "desiredAutopilotClusterPolicyConfig": {
          "description": "The desired autopilot cluster policies that to be enforced in the cluster.",
          "$ref": "ClusterPolicyConfig"
        },
        "desiredClusterAutoscaling": {
          "description": "Cluster-level autoscaling configuration.",
          "$ref": "ClusterAutoscaling"
        },
        "desiredPrivateClusterConfig": {
          "description": "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.",
          "deprecated": true,
          "$ref": "PrivateClusterConfig"
        },
        "desiredWorkloadAltsConfig": {
          "description": "Configuration for direct-path (via ALTS) with workload identity. This feature is not officially supported for external customers in Kubernetes Engine when using Workload Identity.",
          "$ref": "WorkloadALTSConfig"
        },
        "desiredStackType": {
          "description": "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.",
          "enumDescriptions": [
            "By default, the clusters will be IPV4 only",
            "The value used if the cluster is a IPV4 only",
            "The value used if the cluster is a dual stack cluster"
          ],
          "type": "string",
          "enum": [
            "STACK_TYPE_UNSPECIFIED",
            "IPV4",
            "IPV4_IPV6"
          ]
        },
        "desiredAnonymousAuthenticationConfig": {
          "description": "Configuration for limiting anonymous access to all endpoints except the health checks.",
          "$ref": "AnonymousAuthenticationConfig"
        },
        "desiredMonitoringConfig": {
          "description": "The desired monitoring configuration.",
          "$ref": "MonitoringConfig"
        },
        "desiredNotificationConfig": {
          "description": "The desired notification configuration.",
          "$ref": "NotificationConfig"
        },
        "desiredProtectConfig": {
          "$ref": "ProtectConfig",
          "description": "Deprecated: Use DesiredSecurityPostureConfig instead. Enable/Disable Protect API features for the cluster.",
          "deprecated": true
        },
        "enableK8sBetaApis": {
          "description": "Kubernetes open source beta apis enabled on the cluster. Only beta apis",
          "$ref": "K8sBetaAPIConfig"
        },
        "desiredNodeVersion": {
          "description": "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",
          "type": "string"
        },
        "desiredLocations": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "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."
        },
        "desiredImageType": {
          "description": "The desired image type for the node pool. NOTE: Set the \"desired_node_pool\" field as well.",
          "type": "string"
        },
        "desiredDnsConfig": {
          "description": "DNSConfig contains clusterDNS config for this cluster.",
          "$ref": "DNSConfig"
        },
        "additionalPodRangesConfig": {
          "description": "The additional pod ranges to be added to the cluster. These pod ranges can be used by node pools to allocate pod IPs.",
          "$ref": "AdditionalPodRangesConfig"
        },
        "desiredEnterpriseConfig": {
          "description": "The desired enterprise configuration for the cluster. Deprecated: GKE Enterprise features are now available without an Enterprise tier.",
          "deprecated": true,
          "$ref": "DesiredEnterpriseConfig"
        },
        "desiredNodePoolAutoscaling": {
          "description": "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.",
          "$ref": "NodePoolAutoscaling"
        },
        "desiredAutopilotWorkloadPolicyConfig": {
          "description": "WorkloadPolicyConfig is the configuration related to GCW workload policy",
          "$ref": "WorkloadPolicyConfig"
        }
      },
      "description": "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."
    },
    "SlurmOperatorConfig": {
      "id": "SlurmOperatorConfig",
      "description": "Configuration for the Slurm Operator.",
      "type": "object",
      "properties": {
        "enabled": {
          "description": "Whether the Slurm Operator is enabled in the cluster.",
          "type": "boolean"
        }
      }
    },
    "MaintenancePolicy": {
      "id": "MaintenancePolicy",
      "description": "MaintenancePolicy defines the maintenance policy to be used for the cluster.",
      "type": "object",
      "properties": {
        "window": {
          "description": "Specifies the maintenance window in which maintenance may be performed.",
          "$ref": "MaintenanceWindow"
        },
        "resourceVersion": {
          "type": "string",
          "description": "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."
        },
        "disruptionBudget": {
          "description": "Optional. The upgrade disruption budget for the cluster control plane.",
          "$ref": "DisruptionBudget"
        }
      }
    },
    "PlacementPolicy": {
      "description": "PlacementPolicy defines the placement policy used by the node pool.",
      "type": "object",
      "properties": {
        "type": {
          "description": "The type of placement.",
          "enumDescriptions": [
            "TYPE_UNSPECIFIED specifies no requirements on nodes placement.",
            "COMPACT specifies node placement in the same availability domain to ensure low communication latency."
          ],
          "type": "string",
          "enum": [
            "TYPE_UNSPECIFIED",
            "COMPACT"
          ]
        },
        "tpuTopology": {
          "type": "string",
          "description": "TPU placement topology for pod slice node pool. https://cloud.google.com/tpu/docs/types-topologies#tpu_topologies"
        },
        "policyName": {
          "type": "string",
          "description": "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."
        }
      },
      "id": "PlacementPolicy"
    },
    "NodeDrainConfig": {
      "id": "NodeDrainConfig",
      "description": "NodeDrainConfig contains the node drain related configurations for this node pool.",
      "type": "object",
      "properties": {
        "respectPdbDuringNodePoolDeletion": {
          "type": "boolean",
          "description": "Whether to respect PDB during node pool deletion."
        }
      }
    },
    "SetLocationsRequest": {
      "description": "SetLocationsRequest sets the locations of the cluster.",
      "type": "object",
      "properties": {
        "zone": {
          "type": "string",
          "description": "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.",
          "deprecated": true
        },
        "projectId": {
          "type": "string",
          "description": "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.",
          "deprecated": true
        },
        "name": {
          "description": "The name (project, location, cluster) of the cluster to set locations. Specified in the format `projects/*/locations/*/clusters/*`.",
          "type": "string"
        },
        "clusterId": {
          "description": "Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field.",
          "deprecated": true,
          "type": "string"
        },
        "locations": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Required. 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."
        }
      },
      "id": "SetLocationsRequest"
    },
    "UpdateMasterRequest": {
      "type": "object",
      "properties": {
        "name": {
          "description": "The name (project, location, cluster) of the cluster to update. Specified in the format `projects/*/locations/*/clusters/*`.",
          "type": "string"
        },
        "projectId": {
          "type": "string",
          "description": "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.",
          "deprecated": true
        },
        "zone": {
          "description": "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.",
          "deprecated": true,
          "type": "string"
        },
        "masterVersion": {
          "description": "Required. 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",
          "type": "string"
        },
        "clusterId": {
          "description": "Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field.",
          "deprecated": true,
          "type": "string"
        }
      },
      "description": "UpdateMasterRequest updates the master of the cluster.",
      "id": "UpdateMasterRequest"
    },
    "GPUDirectConfig": {
      "id": "GPUDirectConfig",
      "description": "GPUDirectConfig specifies the GPU direct strategy on the node pool.",
      "type": "object",
      "properties": {
        "gpuDirectStrategy": {
          "description": "The type of GPU direct strategy to enable on the node pool.",
          "enumDescriptions": [
            "Default value. No GPU Direct strategy is enabled on the node.",
            "GPUDirect-RDMA on A3 Ultra, and A4 machine types"
          ],
          "type": "string",
          "enum": [
            "GPU_DIRECT_STRATEGY_UNSPECIFIED",
            "RDMA"
          ]
        }
      }
    },
    "CancelOperationRequest": {
      "type": "object",
      "properties": {
        "zone": {
          "type": "string",
          "description": "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.",
          "deprecated": true
        },
        "operationId": {
          "description": "Deprecated. The server-assigned `name` of the operation. This field has been deprecated and replaced by the name field.",
          "deprecated": true,
          "type": "string"
        },
        "name": {
          "type": "string",
          "description": "The name (project, location, operation id) of the operation to cancel. Specified in the format `projects/*/locations/*/operations/*`."
        },
        "projectId": {
          "type": "string",
          "description": "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.",
          "deprecated": true
        }
      },
      "description": "CancelOperationRequest cancels a single operation.",
      "id": "CancelOperationRequest"
    },
    "HostMaintenancePolicy": {
      "id": "HostMaintenancePolicy",
      "type": "object",
      "properties": {
        "maintenanceInterval": {
          "description": "Specifies the frequency of planned maintenance events.",
          "enumDescriptions": [
            "The maintenance interval is not explicitly specified.",
            "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.",
            "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."
          ],
          "type": "string",
          "enum": [
            "MAINTENANCE_INTERVAL_UNSPECIFIED",
            "AS_NEEDED",
            "PERIODIC"
          ]
        },
        "opportunisticMaintenanceStrategy": {
          "description": "Strategy that will trigger maintenance on behalf of the customer.",
          "$ref": "OpportunisticMaintenanceStrategy"
        }
      },
      "description": "HostMaintenancePolicy contains the maintenance policy for the hosts on which the GKE VMs run on."
    },
    "PodSnapshotConfig": {
      "id": "PodSnapshotConfig",
      "type": "object",
      "properties": {
        "enabled": {
          "description": "Whether or not the Pod Snapshots feature is enabled.",
          "type": "boolean"
        }
      },
      "description": "PodSnapshotConfig is the configuration for GKE Pod Snapshots feature."
    },
    "ManagedMachineLearningDiagnosticsConfig": {
      "type": "object",
      "properties": {
        "enabled": {
          "type": "boolean",
          "description": "Enable/Disable Managed Machine Learning Diagnostics."
        }
      },
      "description": "ManagedMachineLearningDiagnosticsConfig is the configuration for the GKE Managed Machine Learning Diagnostics pipeline.",
      "id": "ManagedMachineLearningDiagnosticsConfig"
    },
    "DNSConfig": {
      "id": "DNSConfig",
      "description": "DNSConfig contains the desired set of options for configuring clusterDNS.",
      "type": "object",
      "properties": {
        "clusterDnsDomain": {
          "type": "string",
          "description": "cluster_dns_domain is the suffix used for all cluster service records."
        },
        "additiveVpcScopeDnsDomain": {
          "description": "Optional. The domain used in Additive VPC scope.",
          "type": "string"
        },
        "clusterDns": {
          "type": "string",
          "enum": [
            "PROVIDER_UNSPECIFIED",
            "PLATFORM_DEFAULT",
            "CLOUD_DNS",
            "KUBE_DNS"
          ],
          "description": "cluster_dns indicates which in-cluster DNS provider should be used.",
          "enumDescriptions": [
            "Default value",
            "Use GKE default DNS provider(kube-dns) for DNS resolution.",
            "Use CloudDNS for DNS resolution.",
            "Use KubeDNS for DNS resolution."
          ]
        },
        "clusterDnsScope": {
          "description": "cluster_dns_scope indicates the scope of access to cluster DNS records.",
          "enumDescriptions": [
            "Default value, will be inferred as cluster scope.",
            "DNS records are accessible from within the cluster.",
            "DNS records are accessible from within the VPC."
          ],
          "type": "string",
          "enum": [
            "DNS_SCOPE_UNSPECIFIED",
            "CLUSTER_SCOPE",
            "VPC_SCOPE"
          ]
        }
      }
    },
    "RayClusterMonitoringConfig": {
      "type": "object",
      "properties": {
        "enabled": {
          "type": "boolean",
          "description": "Enable metrics collection for Ray clusters."
        }
      },
      "description": "RayClusterMonitoringConfig specifies monitoring configuration for Ray clusters.",
      "id": "RayClusterMonitoringConfig"
    },
    "ReservationAffinity": {
      "description": "[ReservationAffinity](https://cloud.google.com/compute/docs/instances/reserving-zonal-resources) is the configuration of desired reservation which instances could take capacity from.",
      "type": "object",
      "properties": {
        "consumeReservationType": {
          "description": "Corresponds to the type of reservation consumption.",
          "enumDescriptions": [
            "Default value. This should not be used.",
            "Do not consume from any reserved capacity.",
            "Consume any reservation available.",
            "Must consume from a specific reservation. Must specify key value fields for specifying the reservations."
          ],
          "type": "string",
          "enum": [
            "UNSPECIFIED",
            "NO_RESERVATION",
            "ANY_RESERVATION",
            "SPECIFIC_RESERVATION"
          ]
        },
        "values": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Corresponds to the label value(s) of reservation resource(s)."
        },
        "key": {
          "type": "string",
          "description": "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."
        }
      },
      "id": "ReservationAffinity"
    },
    "AuthenticatorGroupsConfig": {
      "id": "AuthenticatorGroupsConfig",
      "type": "object",
      "properties": {
        "enabled": {
          "type": "boolean",
          "description": "Whether this cluster should return group membership lookups during authentication using a group of security groups."
        },
        "securityGroup": {
          "description": "The name of the security group-of-groups to be used. Only relevant if enabled = true.",
          "type": "string"
        }
      },
      "description": "Configuration for returning group information from authenticators."
    },
    "SetAddonsConfigRequest": {
      "description": "SetAddonsRequest sets the addons associated with the cluster.",
      "type": "object",
      "properties": {
        "zone": {
          "type": "string",
          "description": "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.",
          "deprecated": true
        },
        "projectId": {
          "description": "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.",
          "deprecated": true,
          "type": "string"
        },
        "addonsConfig": {
          "description": "Required. The desired configurations for the various addons available to run in the cluster.",
          "$ref": "AddonsConfig"
        },
        "name": {
          "description": "The name (project, location, cluster) of the cluster to set addons. Specified in the format `projects/*/locations/*/clusters/*`.",
          "type": "string"
        },
        "clusterId": {
          "description": "Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field.",
          "deprecated": true,
          "type": "string"
        }
      },
      "id": "SetAddonsConfigRequest"
    },
    "ContainerdConfig": {
      "id": "ContainerdConfig",
      "type": "object",
      "properties": {
        "writableCgroups": {
          "description": "Optional. WritableCgroups defines writable cgroups configuration for the node pool.",
          "$ref": "WritableCgroups"
        },
        "privateRegistryAccessConfig": {
          "description": "PrivateRegistryAccessConfig is used to configure access configuration for private container registries.",
          "$ref": "PrivateRegistryAccessConfig"
        },
        "registryHosts": {
          "description": "RegistryHostConfig configures containerd registry host configuration. Each registry_hosts represents a hosts.toml file. At most 25 registry_hosts are allowed.",
          "type": "array",
          "items": {
            "$ref": "RegistryHostConfig"
          }
        }
      },
      "description": "ContainerdConfig contains configuration to customize containerd."
    },
    "NodePoolDefaults": {
      "id": "NodePoolDefaults",
      "description": "Subset of Nodepool message that has defaults.",
      "type": "object",
      "properties": {
        "nodeConfigDefaults": {
          "description": "Subset of NodeConfig message that has defaults.",
          "$ref": "NodeConfigDefaults"
        }
      }
    },
    "MaxPodsConstraint": {
      "description": "Constraints applied to pods.",
      "type": "object",
      "properties": {
        "maxPodsPerNode": {
          "type": "string",
          "description": "Constraint enforced on the max num of pods per node.",
          "format": "int64"
        }
      },
      "id": "MaxPodsConstraint"
    },
    "AutopilotCompatibilityIssue": {
      "id": "AutopilotCompatibilityIssue",
      "description": "AutopilotCompatibilityIssue contains information about a specific compatibility issue with Autopilot mode.",
      "type": "object",
      "properties": {
        "description": {
          "description": "The description of the issue.",
          "type": "string"
        },
        "incompatibilityType": {
          "type": "string",
          "enum": [
            "UNSPECIFIED",
            "INCOMPATIBILITY",
            "ADDITIONAL_CONFIG_REQUIRED",
            "PASSED_WITH_OPTIONAL_CONFIG"
          ],
          "description": "The incompatibility type of this issue.",
          "enumDescriptions": [
            "Default value, should not be used.",
            "Indicates that the issue is a known incompatibility between the cluster and Autopilot mode.",
            "Indicates the issue is an incompatibility if customers take no further action to resolve.",
            "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."
          ]
        },
        "constraintType": {
          "type": "string",
          "description": "The constraint type of the issue."
        },
        "documentationUrl": {
          "description": "A URL to a public documentation, which addresses resolving this issue.",
          "type": "string"
        },
        "lastObservation": {
          "description": "The last time when this issue was observed.",
          "format": "google-datetime",
          "type": "string"
        },
        "subjects": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "The name of the resources which are subject to this issue."
        }
      }
    },
    "CostManagementConfig": {
      "id": "CostManagementConfig",
      "description": "Configuration for fine-grained cost management feature.",
      "type": "object",
      "properties": {
        "enabled": {
          "type": "boolean",
          "description": "Whether the feature is enabled or not."
        }
      }
    },
    "LegacyAbac": {
      "id": "LegacyAbac",
      "type": "object",
      "properties": {
        "enabled": {
          "type": "boolean",
          "description": "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."
        }
      },
      "description": "Configuration for the legacy Attribute Based Access Control authorization mode."
    },
    "PolicyBinding": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string",
          "description": "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}`."
        }
      },
      "description": "Binauthz policy that applies to this cluster.",
      "id": "PolicyBinding"
    },
    "OperationError": {
      "id": "OperationError",
      "type": "object",
      "properties": {
        "timestamp": {
          "description": "Time when the CloudKMS error was seen.",
          "format": "google-datetime",
          "type": "string"
        },
        "keyName": {
          "description": "CloudKMS key resource that had the error.",
          "type": "string"
        },
        "errorMessage": {
          "type": "string",
          "description": "Description of the error seen during the operation."
        }
      },
      "description": "OperationError records errors seen from CloudKMS keys encountered during updates to DatabaseEncryption configuration."
    },
    "NodeConfigDefaults": {
      "id": "NodeConfigDefaults",
      "description": "Subset of NodeConfig message that has defaults.",
      "type": "object",
      "properties": {
        "gcfsConfig": {
          "description": "GCFS (Google Container File System, also known as Riptide) options.",
          "$ref": "GcfsConfig"
        },
        "containerdConfig": {
          "description": "Parameters for containerd customization.",
          "$ref": "ContainerdConfig"
        },
        "loggingConfig": {
          "description": "Logging configuration for node pools.",
          "$ref": "NodePoolLoggingConfig"
        },
        "hostMaintenancePolicy": {
          "description": "HostMaintenancePolicy contains the desired maintenance policy for the Google Compute Engine hosts.",
          "$ref": "HostMaintenancePolicy"
        },
        "nodeKubeletConfig": {
          "description": "NodeKubeletConfig controls the defaults for new node-pools. Currently only `insecure_kubelet_readonly_port_enabled` can be set here.",
          "$ref": "NodeKubeletConfig"
        }
      }
    },
    "LoggingComponentConfig": {
      "id": "LoggingComponentConfig",
      "description": "LoggingComponentConfig is cluster logging component configuration.",
      "type": "object",
      "properties": {
        "enableComponents": {
          "description": "Select components to collect logs. An empty set would disable all logging.",
          "type": "array",
          "items": {
            "type": "string",
            "enum": [
              "COMPONENT_UNSPECIFIED",
              "SYSTEM_COMPONENTS",
              "WORKLOADS",
              "APISERVER",
              "SCHEDULER",
              "CONTROLLER_MANAGER",
              "KCP_SSHD",
              "KCP_CONNECTION",
              "KCP_HPA"
            ],
            "enumDescriptions": [
              "Default value. This shouldn't be used.",
              "system components",
              "workloads",
              "kube-apiserver",
              "kube-scheduler",
              "kube-controller-manager",
              "kcp-sshd",
              "kcp connection logs",
              "horizontal pod autoscaler decision logs"
            ]
          }
        }
      }
    },
    "BestEffortProvisioning": {
      "description": "Best effort provisioning.",
      "type": "object",
      "properties": {
        "enabled": {
          "description": "When this is enabled, cluster/node pool creations will ignore non-fatal errors like stockout to best provision as many nodes as possible right now and eventually bring up all target number of nodes",
          "type": "boolean"
        },
        "minProvisionNodes": {
          "description": "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.",
          "format": "int32",
          "type": "integer"
        }
      },
      "id": "BestEffortProvisioning"
    },
    "Master": {
      "description": "Master is the configuration for components on master.",
      "type": "object",
      "properties": {
        "compatibilityStatus": {
          "description": "Output only. The compatibility status of the control plane. It should be empty if the cluster does not have emulated version.",
          "readOnly": true,
          "$ref": "CompatibilityStatus"
        }
      },
      "id": "Master"
    },
    "AutoUpgradeOptions": {
      "id": "AutoUpgradeOptions",
      "type": "object",
      "properties": {
        "autoUpgradeStartTime": {
          "description": "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.",
          "readOnly": true,
          "type": "string"
        },
        "description": {
          "type": "string",
          "description": "Output only. This field is set when upgrades are about to commence with the description of the upgrade.",
          "readOnly": true
        }
      },
      "description": "AutoUpgradeOptions defines the set of options for the user to control how the Auto Upgrades will proceed."
    },
    "MaintenanceWindow": {
      "description": "MaintenanceWindow defines the maintenance window to be used for the cluster.",
      "type": "object",
      "properties": {
        "dailyMaintenanceWindow": {
          "description": "DailyMaintenanceWindow specifies a daily maintenance operation window.",
          "$ref": "DailyMaintenanceWindow"
        },
        "recurringWindow": {
          "description": "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.",
          "$ref": "RecurringTimeWindow"
        },
        "maintenanceExclusions": {
          "type": "object",
          "description": "Exceptions to maintenance window. Non-emergency maintenance should not occur in these windows.",
          "additionalProperties": {
            "$ref": "TimeWindow"
          }
        }
      },
      "id": "MaintenanceWindow"
    },
    "UpgradeEvent": {
      "id": "UpgradeEvent",
      "description": "UpgradeEvent is a notification sent to customers by the cluster server when a resource is upgrading.",
      "type": "object",
      "properties": {
        "operation": {
          "type": "string",
          "description": "The operation associated with this upgrade."
        },
        "currentEmulatedVersion": {
          "type": "string",
          "description": "The current emulated version before the upgrade."
        },
        "resourceType": {
          "description": "The resource type that is upgrading.",
          "enumDescriptions": [
            "Default value. This shouldn't be used.",
            "Master / control plane",
            "Node pool"
          ],
          "type": "string",
          "enum": [
            "UPGRADE_RESOURCE_TYPE_UNSPECIFIED",
            "MASTER",
            "NODE_POOL"
          ]
        },
        "targetEmulatedVersion": {
          "description": "The target emulated version for the upgrade.",
          "type": "string"
        },
        "resource": {
          "description": "Optional relative path to the resource. For example in node pool upgrades, the relative path of the node pool.",
          "type": "string"
        },
        "operationStartTime": {
          "type": "string",
          "description": "The time when the operation was started.",
          "format": "google-datetime"
        },
        "currentVersion": {
          "description": "The current version before the upgrade.",
          "type": "string"
        },
        "targetVersion": {
          "description": "The target version for the upgrade.",
          "type": "string"
        }
      }
    },
    "NodeConfig": {
      "description": "Parameters that describe the nodes in a cluster. GKE Autopilot clusters do not recognize parameters in `NodeConfig`. Use AutoprovisioningNodePoolDefaults instead.",
      "type": "object",
      "properties": {
        "ephemeralStorageConfig": {
          "description": "Parameters for the ephemeral storage filesystem. If unspecified, ephemeral storage is backed by the boot disk.",
          "$ref": "EphemeralStorageConfig"
        },
        "gvnic": {
          "description": "Enable or disable gvnic on the node pool.",
          "$ref": "VirtualNIC"
        },
        "gpuDirectConfig": {
          "description": "The configuration for GPU Direct",
          "$ref": "GPUDirectConfig"
        },
        "taintConfig": {
          "description": "Optional. The taint configuration for the node pool.",
          "$ref": "TaintConfig"
        },
        "maxRunDuration": {
          "type": "string",
          "description": "The maximum duration for the nodes to exist. If unspecified, the nodes can exist indefinitely.",
          "format": "google-duration"
        },
        "accelerators": {
          "description": "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.",
          "type": "array",
          "items": {
            "$ref": "AcceleratorConfig"
          }
        },
        "resourceManagerTags": {
          "description": "A map of resource manager tag keys and values to be attached to the nodes.",
          "$ref": "ResourceManagerTags"
        },
        "nodeGroup": {
          "type": "string",
          "description": "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)."
        },
        "containerdConfig": {
          "description": "Parameters for containerd customization.",
          "$ref": "ContainerdConfig"
        },
        "flexStart": {
          "description": "Flex Start flag for enabling Flex Start VM.",
          "type": "boolean"
        },
        "localSsdEncryptionMode": {
          "type": "string",
          "enum": [
            "LOCAL_SSD_ENCRYPTION_MODE_UNSPECIFIED",
            "STANDARD_ENCRYPTION",
            "EPHEMERAL_KEY_ENCRYPTION"
          ],
          "description": "Specifies which method should be used for encrypting the Local SSDs attached to the node.",
          "enumDescriptions": [
            "The given node will be encrypted using keys managed by Google infrastructure and the keys will be deleted when the node is deleted.",
            "The given node will be encrypted using keys managed by Google infrastructure and the keys will be deleted when the node is deleted.",
            "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."
          ]
        },
        "soleTenantConfig": {
          "description": "Parameters for node pools to be backed by shared sole tenant node groups.",
          "$ref": "SoleTenantConfig"
        },
        "secondaryBootDisks": {
          "description": "List of secondary boot disks attached to the nodes.",
          "type": "array",
          "items": {
            "$ref": "SecondaryBootDisk"
          }
        },
        "enableConfidentialStorage": {
          "description": "Optional. Reserved for future use.",
          "type": "boolean"
        },
        "secondaryBootDiskUpdateStrategy": {
          "description": "Secondary boot disk update strategy.",
          "$ref": "SecondaryBootDiskUpdateStrategy"
        },
        "tags": {
          "description": "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.",
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "spot": {
          "description": "Spot flag for enabling Spot VM, which is a rebrand of the existing preemptible flag.",
          "type": "boolean"
        },
        "linuxNodeConfig": {
          "description": "Parameters that can be configured on Linux nodes.",
          "$ref": "LinuxNodeConfig"
        },
        "sandboxConfig": {
          "description": "Sandbox configuration for this node.",
          "$ref": "SandboxConfig"
        },
        "taints": {
          "description": "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/",
          "type": "array",
          "items": {
            "$ref": "NodeTaint"
          }
        },
        "diskType": {
          "description": "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'",
          "type": "string"
        },
        "fastSocket": {
          "description": "Enable or disable NCCL fast socket for the node pool.",
          "$ref": "FastSocket"
        },
        "consolidationDelay": {
          "type": "string",
          "description": "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.",
          "format": "google-duration"
        },
        "bootDisk": {
          "description": "Boot disk configuration for the node pool.",
          "$ref": "BootDisk"
        },
        "oauthScopes": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "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."
        },
        "confidentialNodes": {
          "description": "Confidential nodes config. All the nodes in the node pool will be Confidential VM once enabled.",
          "$ref": "ConfidentialNodes"
        },
        "bootDiskKmsKey": {
          "description": " 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",
          "type": "string"
        },
        "diskSizeGb": {
          "type": "integer",
          "description": "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.",
          "format": "int32"
        },
        "kubeletConfig": {
          "description": "Node kubelet configs.",
          "$ref": "NodeKubeletConfig"
        },
        "localSsdCount": {
          "type": "integer",
          "description": "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.",
          "format": "int32"
        },
        "serviceAccount": {
          "description": "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.",
          "type": "string"
        },
        "minCpuPlatform": {
          "description": "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 information, read [how to specify min CPU platform](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform).",
          "type": "string"
        },
        "workloadMetadataConfig": {
          "description": "The workload metadata configuration for this node.",
          "$ref": "WorkloadMetadataConfig"
        },
        "localNvmeSsdBlockConfig": {
          "description": "Parameters for using raw-block Local NVMe SSDs.",
          "$ref": "LocalNvmeSsdBlockConfig"
        },
        "storagePools": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "List of Storage Pools where boot disks are provisioned."
        },
        "machineType": {
          "type": "string",
          "description": "The name of a Google Compute Engine [machine type](https://cloud.google.com/compute/docs/machine-types). If unspecified, the default machine type is `e2-medium`."
        },
        "reservationAffinity": {
          "description": "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.",
          "$ref": "ReservationAffinity"
        },
        "metadata": {
          "description": "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-oslogin\" - \"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.",
          "additionalProperties": {
            "type": "string"
          },
          "type": "object"
        },
        "shieldedInstanceConfig": {
          "description": "Shielded Instance options.",
          "$ref": "ShieldedInstanceConfig"
        },
        "loggingConfig": {
          "description": "Logging configuration.",
          "$ref": "NodePoolLoggingConfig"
        },
        "hostMaintenancePolicy": {
          "description": "HostMaintenancePolicy contains the desired maintenance policy for the Google Compute Engine hosts.",
          "$ref": "HostMaintenancePolicy"
        },
        "preemptible": {
          "description": "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.",
          "type": "boolean"
        },
        "resourceLabels": {
          "description": "The resource labels for the node pool to use to annotate any related Google Compute Engine resources.",
          "additionalProperties": {
            "type": "string"
          },
          "type": "object"
        },
        "ephemeralStorageLocalSsdConfig": {
          "description": "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",
          "$ref": "EphemeralStorageLocalSsdConfig"
        },
        "labels": {
          "type": "object",
          "description": "The Kubernetes labels (key/value pairs) to apply to each node. The values in this field are added to the set of default labels Kubernetes applies to nodes. This field has the following restrictions: * Labels must use a valid Kubernetes syntax and character set, as defined in https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#syntax-and-character-set. * This field supports up to 1,024 total characters in a single request. Depending on the Kubernetes version, keys in this field might conflict with the keys of the default labels, which might change which of your labels are applied to the nodes. Assume that the behavior is unpredictable and avoid label key conflicts. For more information about the default labels, see: https://kubernetes.io/docs/reference/labels-annotations-taints/",
          "additionalProperties": {
            "type": "string"
          }
        },
        "advancedMachineFeatures": {
          "description": "Advanced features for the Compute Engine VM.",
          "$ref": "AdvancedMachineFeatures"
        },
        "effectiveCgroupMode": {
          "description": "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.",
          "enumDescriptions": [
            "EFFECTIVE_CGROUP_MODE_UNSPECIFIED means the cgroup configuration for the node pool is unspecified, i.e. the node pool is a Windows node pool.",
            "CGROUP_MODE_V1 means the node pool is configured to use cgroupv1 for the cgroup configuration.",
            "CGROUP_MODE_V2 means the node pool is configured to use cgroupv2 for the cgroup configuration."
          ],
          "type": "string",
          "enum": [
            "EFFECTIVE_CGROUP_MODE_UNSPECIFIED",
            "EFFECTIVE_CGROUP_MODE_V1",
            "EFFECTIVE_CGROUP_MODE_V2"
          ],
          "readOnly": true
        },
        "imageType": {
          "type": "string",
          "description": "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."
        },
        "windowsNodeConfig": {
          "description": "Parameters that can be configured on Windows nodes.",
          "$ref": "WindowsNodeConfig"
        },
        "gcfsConfig": {
          "description": "GCFS (Google Container File System) configs.",
          "$ref": "GcfsConfig"
        }
      },
      "id": "NodeConfig"
    },
    "AdditionalPodRangesConfig": {
      "id": "AdditionalPodRangesConfig",
      "description": "AdditionalPodRangesConfig is the configuration for additional pod secondary ranges supporting the ClusterUpdate message.",
      "type": "object",
      "properties": {
        "podRangeNames": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Name for pod secondary ipv4 range which has the actual range defined ahead."
        },
        "podRangeInfo": {
          "type": "array",
          "items": {
            "$ref": "RangeInfo"
          },
          "description": "Output only. Information for additional pod range.",
          "readOnly": true
        }
      }
    },
    "ScheduleUpgradeConfig": {
      "id": "ScheduleUpgradeConfig",
      "type": "object",
      "properties": {
        "enabled": {
          "description": "Optional. Whether or not scheduled upgrades are enabled.",
          "type": "boolean"
        }
      },
      "description": "Configuration for scheduled upgrades on the cluster."
    },
    "ParentProductConfig": {
      "id": "ParentProductConfig",
      "type": "object",
      "properties": {
        "labels": {
          "type": "object",
          "description": "Labels contain the configuration of the parent product.",
          "additionalProperties": {
            "type": "string"
          }
        },
        "productName": {
          "type": "string",
          "description": "Name of the parent product associated with the cluster."
        }
      },
      "description": "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."
    },
    "Jwk": {
      "id": "Jwk",
      "type": "object",
      "properties": {
        "y": {
          "type": "string",
          "description": "Used for ECDSA keys."
        },
        "e": {
          "type": "string",
          "description": "Used for RSA keys."
        },
        "kty": {
          "type": "string",
          "description": "Key Type."
        },
        "alg": {
          "type": "string",
          "description": "Algorithm."
        },
        "crv": {
          "type": "string",
          "description": "Used for ECDSA keys."
        },
        "use": {
          "type": "string",
          "description": "Permitted uses for the public keys."
        },
        "n": {
          "type": "string",
          "description": "Used for RSA keys."
        },
        "x": {
          "type": "string",
          "description": "Used for ECDSA keys."
        },
        "kid": {
          "description": "Key ID.",
          "type": "string"
        }
      },
      "description": "Jwk is a JSON Web Key as specified in RFC 7517"
    },
    "RBACBindingConfig": {
      "id": "RBACBindingConfig",
      "description": "RBACBindingConfig allows user to restrict ClusterRoleBindings an RoleBindings that can be created.",
      "type": "object",
      "properties": {
        "enableInsecureBindingSystemAuthenticated": {
          "description": "Setting this to true will allow any ClusterRoleBinding and RoleBinding with subjects system:authenticated.",
          "type": "boolean"
        },
        "enableInsecureBindingSystemUnauthenticated": {
          "type": "boolean",
          "description": "Setting this to true will allow any ClusterRoleBinding and RoleBinding with subjets system:anonymous or system:unauthenticated."
        }
      }
    },
    "SetNetworkPolicyRequest": {
      "id": "SetNetworkPolicyRequest",
      "type": "object",
      "properties": {
        "name": {
          "description": "The name (project, location, cluster name) of the cluster to set networking policy. Specified in the format `projects/*/locations/*/clusters/*`.",
          "type": "string"
        },
        "projectId": {
          "type": "string",
          "description": "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.",
          "deprecated": true
        },
        "networkPolicy": {
          "description": "Required. Configuration options for the NetworkPolicy feature.",
          "$ref": "NetworkPolicy"
        },
        "zone": {
          "description": "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.",
          "deprecated": true,
          "type": "string"
        },
        "clusterId": {
          "type": "string",
          "description": "Deprecated. The name of the cluster. This field has been deprecated and replaced by the name field.",
          "deprecated": true
        }
      },
      "description": "SetNetworkPolicyRequest enables/disables network policy for a cluster."
    },
    "ManagedOpenTelemetryConfig": {
      "type": "object",
      "properties": {
        "scope": {
          "type": "string",
          "enum": [
            "SCOPE_UNSPECIFIED",
            "NONE",
            "COLLECTION_AND_INSTRUMENTATION_COMPONENTS"
          ],
          "description": "Scope of the Managed OpenTelemetry pipeline.",
          "enumDescriptions": [
            "SCOPE_UNSPECIFIED is when the scope is not set.",
            "NONE is used to disable the Managed OpenTelemetry pipeline.",
            "COLLECTION_AND_INSTRUMENTATION_COMPONENTS is used to enable the Managed OpenTelemetry pipeline for collection and instrumentation components."
          ]
        }
      },
      "description": "ManagedOpenTelemetryConfig is the configuration for the GKE Managed OpenTelemetry pipeline.",
      "id": "ManagedOpenTelemetryConfig"
    },
    "PrivateClusterConfig": {
      "id": "PrivateClusterConfig",
      "type": "object",
      "properties": {
        "enablePrivateNodes": {
          "description": "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.",
          "deprecated": true,
          "type": "boolean"
        },
        "masterIpv4CidrBlock": {
          "type": "string",
          "description": "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."
        },
        "enablePrivateEndpoint": {
          "description": "Whether the master's internal IP address is used as the cluster endpoint. 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.",
          "deprecated": true,
          "type": "boolean"
        },
        "privateEndpoint": {
          "type": "string",
          "description": "Output only. The internal IP address of this cluster's master endpoint. Deprecated: Use ControlPlaneEndpointsConfig.IPEndpointsConfig.private_endpoint instead.",
          "readOnly": true,
          "deprecated": true
        },
        "publicEndpoint": {
          "description": "Output only. The external IP address of this cluster's master endpoint. Deprecated: Use ControlPlaneEndpointsConfig.IPEndpointsConfig.public_endpoint instead.",
          "readOnly": true,
          "deprecated": true,
          "type": "string"
        },
        "privateEndpointSubnetwork": {
          "description": "Subnet to provision the master's private endpoint during cluster creation. Specified in projects/*/regions/*/subnetworks/* format. Deprecated: Use ControlPlaneEndpointsConfig.IPEndpointsConfig.private_endpoint_subnetwork instead.",
          "deprecated": true,
          "type": "string"
        },
        "peeringName": {
          "type": "string",
          "description": "Output only. The peering name in the customer VPC used by this cluster.",
          "readOnly": true
        },
        "masterGlobalAccessConfig": {
          "$ref": "PrivateClusterMasterGlobalAccessConfig",
          "description": "Controls master global access settings. Deprecated: Use ControlPlaneEndpointsConfig.IPEndpointsConfig.enable_global_access instead.",
          "deprecated": true
        }
      },
      "description": "Configuration options for private clusters."
    },
    "IPEndpointsConfig": {
      "id": "IPEndpointsConfig",
      "type": "object",
      "properties": {
        "enabled": {
          "type": "boolean",
          "description": "Controls whether to allow direct IP access."
        },
        "enablePublicEndpoint": {
          "description": "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.",
          "type": "boolean"
        },
        "privateEndpointSubnetwork": {
          "type": "string",
          "description": "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": {
          "type": "string",
          "description": "Output only. The external IP address of this cluster's control plane. Only populated if enabled.",
          "readOnly": true
        },
        "privateEndpoint": {
          "type": "string",
          "description": "Output only. The internal IP address of this cluster's control plane. Only populated if enabled.",
          "readOnly": true
        },
        "globalAccess": {
          "type": "boolean",
          "description": "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."
        },
        "authorizedNetworksConfig": {
          "description": "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.",
          "$ref": "MasterAuthorizedNetworksConfig"
        }
      },
      "description": "IP endpoints configuration."
    },
    "ListLocationsResponse": {
      "type": "object",
      "properties": {
        "locations": {
          "type": "array",
          "items": {
            "$ref": "Location"
          },
          "description": "A full list of GKE locations."
        },
        "nextPageToken": {
          "description": "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).",
          "type": "string"
        }
      },
      "description": "ListLocationsResponse returns the list of all GKE locations and their recommendation state.",
      "id": "ListLocationsResponse"
    },
    "NetworkTags": {
      "description": "Collection of Compute Engine network tags that can be applied to a node's underlying VM instance. (See `tags` field in [`NodeConfig`](/kubernetes-engine/docs/reference/rest/v1/NodeConfig)).",
      "type": "object",
      "properties": {
        "tags": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "List of network tags."
        }
      },
      "id": "NetworkTags"
    },
    "GCPSecretManagerCertificateConfig": {
      "id": "GCPSecretManagerCertificateConfig",
      "type": "object",
      "properties": {
        "secretUri": {
          "type": "string",
          "description": "Secret URI, in the form \"projects/$PROJECT_ID/secrets/$SECRET_NAME/versions/$VERSION\". Version can be fixed (e.g. \"2\") or \"latest\""
        }
      },
      "description": "GCPSecretManagerCertificateConfig configures a secret from [Secret Manager](https://cloud.google.com/secret-manager)."
    },
    "DNSEndpointConfig": {
      "type": "object",
      "properties": {
        "allowExternalTraffic": {
          "type": "boolean",
          "description": "Controls whether user traffic is allowed over this endpoint. Note that Google-managed services may still use the endpoint even if this is false."
        },
        "enableK8sTokensViaDns": {
          "type": "boolean",
          "description": "Controls whether the k8s token auth is allowed via DNS."
        },
        "endpoint": {
          "type": "string",
          "description": "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.",
          "readOnly": true
        },
        "enableK8sCertsViaDns": {
          "description": "Controls whether the k8s certs auth is allowed via DNS.",
          "type": "boolean"
        }
      },
      "description": "Describes the configuration of a DNS endpoint.",
      "id": "DNSEndpointConfig"
    },
    "EnterpriseConfig": {
      "deprecated": true,
      "description": "EnterpriseConfig is the cluster enterprise configuration. Deprecated: GKE Enterprise features are now available without an Enterprise tier.",
      "type": "object",
      "properties": {
        "clusterTier": {
          "readOnly": true,
          "type": "string",
          "enum": [
            "CLUSTER_TIER_UNSPECIFIED",
            "STANDARD",
            "ENTERPRISE"
          ],
          "description": "Output only. cluster_tier indicates the effective tier of the cluster.",
          "enumDescriptions": [
            "CLUSTER_TIER_UNSPECIFIED is when cluster_tier is not set.",
            "STANDARD indicates a standard GKE cluster.",
            "ENTERPRISE indicates a GKE Enterprise cluster."
          ]
        },
        "desiredTier": {
          "type": "string",
          "enum": [
            "CLUSTER_TIER_UNSPECIFIED",
            "STANDARD",
            "ENTERPRISE"
          ],
          "description": "desired_tier specifies the desired tier of the cluster.",
          "enumDescriptions": [
            "CLUSTER_TIER_UNSPECIFIED is when cluster_tier is not set.",
            "STANDARD indicates a standard GKE cluster.",
            "ENTERPRISE indicates a GKE Enterprise cluster."
          ]
        }
      },
      "id": "EnterpriseConfig"
    },
    "HostConfig": {
      "type": "object",
      "properties": {
        "header": {
          "description": "Header configures the registry host headers.",
          "type": "array",
          "items": {
            "$ref": "RegistryHeader"
          }
        },
        "ca": {
          "description": "CA configures the registry host certificate.",
          "type": "array",
          "items": {
            "$ref": "CertificateConfig"
          }
        },
        "dialTimeout": {
          "description": "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.",
          "format": "google-duration",
          "type": "string"
        },
        "host": {
          "type": "string",
          "description": "Host configures the registry host/mirror. It supports fully qualified domain names (FQDNs) and IP addresses. Specifying scheme, port or path is supported. Scheme can only be http or https. Wildcards are NOT supported. Examples: - `my.customdomain.com` - `https://my.customdomain.com/path` - `10.0.1.2:5000`"
        },
        "capabilities": {
          "description": "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.",
          "type": "array",
          "items": {
            "enumDescriptions": [
              "UNKNOWN should never be set.",
              "Pull represents the capability to fetch manifests and blobs by digest.",
              "Resolve represents the capability to fetch manifests by name.",
              "Push represents the capability to push blobs and manifests."
            ],
            "type": "string",
            "enum": [
              "HOST_CAPABILITY_UNSPECIFIED",
              "HOST_CAPABILITY_PULL",
              "HOST_CAPABILITY_RESOLVE",
              "HOST_CAPABILITY_PUSH"
            ]
          }
        },
        "overridePath": {
          "description": "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.",
          "type": "boolean"
        },
        "client": {
          "type": "array",
          "items": {
            "$ref": "CertificateConfigPair"
          },
          "description": "Client configures the registry host client certificate and key."
        }
      },
      "description": "HostConfig configures the registry host under a given Server.",
      "id": "HostConfig"
    },
    "WritableCgroups": {
      "id": "WritableCgroups",
      "type": "object",
      "properties": {
        "enabled": {
          "description": "Optional. Whether writable cgroups is enabled.",
          "type": "boolean"
        }
      },
      "description": "Defines writable cgroups configuration."
    },
    "BootDiskProfile": {
      "id": "BootDiskProfile",
      "description": "Swap on the node's boot disk.",
      "type": "object",
      "properties": {
        "swapSizeGib": {
          "type": "string",
          "description": "Specifies the size of the swap space in gibibytes (GiB).",
          "format": "int64"
        },
        "swapSizePercent": {
          "description": "Specifies the size of the swap space as a percentage of the boot disk size.",
          "format": "int32",
          "type": "integer"
        }
      }
    },
    "ManagedPrometheusConfig": {
      "id": "ManagedPrometheusConfig",
      "type": "object",
      "properties": {
        "autoMonitoringConfig": {
          "description": "GKE Workload Auto-Monitoring Configuration.",
          "$ref": "AutoMonitoringConfig"
        },
        "enabled": {
          "type": "boolean",
          "description": "Enable Managed Collection."
        }
      },
      "description": "ManagedPrometheusConfig defines the configuration for Google Cloud Managed Service for Prometheus."
    },
    "ResourceLabels": {
      "id": "ResourceLabels",
      "description": "Collection of [Resource Manager labels](https://cloud.google.com/resource-manager/docs/creating-managing-labels).",
      "type": "object",
      "properties": {
        "labels": {
          "description": "Map of node label keys and node label values.",
          "additionalProperties": {
            "type": "string"
          },
          "type": "object"
        }
      }
    },
    "SetNodePoolManagementRequest": {
      "id": "SetNodePoolManagementRequest",
      "type": "object",
      "properties": {
        "nodePoolId": {
          "description": "Deprecated. The name of the node pool to update. This field has been deprecated and replaced by the name field.",
          "deprecated": true,
          "type": "string"
        },
        "clusterId": {
          "description": "Deprecated. The name of the cluster to update. This field has been deprecated and replaced by the name field.",
          "deprecated": true,
          "type": "string"
        },
        "management": {
          "description": "Required. NodeManagement configuration for the node pool.",
          "$ref": "NodeManagement"
        },
        "name": {
          "description": "The name (project, location, cluster, node pool id) of the node pool to set management properties. Specified in the format `projects/*/locations/*/clusters/*/nodePools/*`.",
          "type": "string"
        },
        "projectId": {
          "description": "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.",
          "deprecated": true,
          "type": "string"
        },
        "zone": {
          "description": "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.",
          "deprecated": true,
          "type": "string"
        }
      },
      "description": "SetNodePoolManagementRequest sets the node management properties of a node pool."
    },
    "NodeKubeletConfig": {
      "id": "NodeKubeletConfig",
      "type": "object",
      "properties": {
        "containerLogMaxSize": {
          "description": "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.",
          "type": "string"
        },
        "evictionMaxPodGracePeriodSeconds": {
          "type": "integer",
          "description": "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].",
          "format": "int32"
        },
        "imageGcLowThresholdPercent": {
          "description": "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.",
          "format": "int32",
          "type": "integer"
        },
        "memoryManager": {
          "description": "Optional. Controls NUMA-aware Memory Manager configuration on the node. For more information, see: https://kubernetes.io/docs/tasks/administer-cluster/memory-manager/",
          "$ref": "MemoryManager"
        },
        "cpuCfsQuota": {
          "type": "boolean",
          "description": "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."
        },
        "cpuManagerPolicy": {
          "description": "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.",
          "type": "string"
        },
        "topologyManager": {
          "description": "Optional. Controls Topology Manager configuration on the node. For more information, see: https://kubernetes.io/docs/tasks/administer-cluster/topology-manager/",
          "$ref": "TopologyManager"
        },
        "evictionSoftGracePeriod": {
          "description": "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.",
          "$ref": "EvictionGracePeriod"
        },
        "containerLogMaxFiles": {
          "type": "integer",
          "description": "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.",
          "format": "int32"
        },
        "crashLoopBackOff": {
          "description": "Optional. Contains configuration options to modify node-level parameters for container restart behavior.",
          "$ref": "CrashLoopBackOffConfig"
        },
        "singleProcessOomKill": {
          "description": "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.",
          "type": "boolean"
        },
        "allowedUnsafeSysctls": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "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."
        },
        "shutdownGracePeriodCriticalPodsSeconds": {
          "type": "integer",
          "description": "Optional. shutdown_grace_period_critical_pods_seconds is the maximum allowed grace period (in seconds) used to terminate critical pods during a node shutdown. This value should be \u003c= shutdown_grace_period_seconds, and is only valid if shutdown_grace_period_seconds is set. https://kubernetes.io/docs/concepts/cluster-administration/node-shutdown/ Range: [0, 120].",
          "format": "int32"
        },
        "cpuCfsQuotaPeriod": {
          "description": "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 \"µs\"), \"ms\", \"s\", \"m\", \"h\". The value must be a positive duration between 1ms and 1 second, inclusive.",
          "type": "string"
        },
        "shutdownGracePeriodSeconds": {
          "type": "integer",
          "description": "Optional. shutdown_grace_period_seconds is the maximum allowed grace period (in seconds) the total duration that the node should delay the shutdown during a graceful shutdown. This is the total grace period for pod termination for both regular and critical pods. https://kubernetes.io/docs/concepts/cluster-administration/node-shutdown/ If set to 0, node will not enable the graceful node shutdown functionality. This field is only valid for Spot VMs. Allowed values: 0, 30, 120.",
          "format": "int32"
        },
        "imageMinimumGcAge": {
          "type": "string",
          "description": "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 \"µs\"), \"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."
        },
        "evictionMinimumReclaim": {
          "description": "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.",
          "$ref": "EvictionMinimumReclaim"
        },
        "imageMaximumGcAge": {
          "description": "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 \"µs\"), \"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.",
          "type": "string"
        },
        "maxParallelImagePulls": {
          "type": "integer",
          "description": "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.",
          "format": "int32"
        },
        "evictionSoft": {
          "description": "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.",
          "$ref": "EvictionSignals"
        },
        "insecureKubeletReadonlyPortEnabled": {
          "description": "Enable or disable Kubelet read only port.",
          "type": "boolean"
        },
        "imageGcHighThresholdPercent": {
          "type": "integer",
          "description": "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.",
          "format": "int32"
        },
        "podPidsLimit": {
          "description": "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.",
          "format": "int64",
          "type": "string"
        }
      },
      "description": "Node kubelet configs."
    },
    "SyncRotationConfig": {
      "id": "SyncRotationConfig",
      "description": "SyncRotationConfig is config for secret manager auto rotation.",
      "type": "object",
      "properties": {
        "rotationInterval": {
          "type": "string",
          "description": "The interval between two consecutive rotations. Default rotation interval is 2 minutes.",
          "format": "google-duration"
        },
        "enabled": {
          "description": "Whether the rotation is enabled.",
          "type": "boolean"
        }
      }
    },
    "DailyMaintenanceWindow": {
      "id": "DailyMaintenanceWindow",
      "type": "object",
      "properties": {
        "startTime": {
          "type": "string",
          "description": "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": {
          "description": "Output only. Duration of the time window, automatically chosen to be smallest possible in the given scenario.",
          "readOnly": true,
          "type": "string"
        }
      },
      "description": "Time window specified for daily maintenance operations."
    },
    "Empty": {
      "id": "Empty",
      "description": "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); }",
      "type": "object",
      "properties": {}
    },
    "AvailableVersion": {
      "description": "Deprecated.",
      "type": "object",
      "properties": {
        "version": {
          "description": "Kubernetes version.",
          "type": "string"
        },
        "reason": {
          "type": "string",
          "description": "Reason for availability."
        }
      },
      "id": "AvailableVersion",
      "deprecated": true
    },
    "WindowsVersions": {
      "id": "WindowsVersions",
      "type": "object",
      "properties": {
        "windowsVersions": {
          "type": "array",
          "items": {
            "$ref": "WindowsVersion"
          },
          "description": "List of Windows server versions."
        }
      },
      "description": "Windows server versions."
    }
  },
  "description": "Builds and manages container-based applications, powered by the open source Kubernetes technology.",
  "servicePath": "",
  "resources": {
    "projects": {
      "resources": {
        "zones": {
          "methods": {
            "getServerconfig": {
              "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/serverconfig",
              "parameters": {
                "zone": {
                  "type": "string",
                  "description": "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.",
                  "location": "path",
                  "required": true
                },
                "projectId": {
                  "description": "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.",
                  "location": "path",
                  "type": "string",
                  "required": true
                },
                "name": {
                  "type": "string",
                  "description": "The name (project and location) of the server config to get, specified in the format `projects/*/locations/*`.",
                  "location": "query"
                }
              },
              "description": "Returns configuration info about the Google Kubernetes Engine service.",
              "parameterOrder": [
                "projectId",
                "zone"
              ],
              "scopes": [
                "https://www.googleapis.com/auth/cloud-platform"
              ],
              "id": "container.projects.zones.getServerconfig",
              "path": "v1beta1/projects/{projectId}/zones/{zone}/serverconfig",
              "response": {
                "$ref": "ServerConfig"
              },
              "httpMethod": "GET"
            }
          },
          "resources": {
            "clusters": {
              "methods": {
                "fetchClusterUpgradeInfo": {
                  "parameterOrder": [
                    "name"
                  ],
                  "id": "container.projects.zones.clusters.fetchClusterUpgradeInfo",
                  "path": "v1beta1/{+name}:fetchClusterUpgradeInfo",
                  "response": {
                    "$ref": "ClusterUpgradeInfo"
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "httpMethod": "GET",
                  "flatPath": "v1beta1/projects/{projectsId}/zones/{zonesId}/clusters/{clustersId}:fetchClusterUpgradeInfo",
                  "parameters": {
                    "version": {
                      "type": "string",
                      "description": "API request version that initiates this operation.",
                      "location": "query"
                    },
                    "name": {
                      "required": true,
                      "pattern": "^projects/[^/]+/zones/[^/]+/clusters/[^/]+$",
                      "type": "string",
                      "description": "Required. The name (project, location, cluster) of the cluster to get. Specified in the format `projects/*/locations/*/clusters/*` or `projects/*/zones/*/clusters/*`.",
                      "location": "path"
                    }
                  },
                  "description": "Fetch upgrade information of a specific cluster."
                },
                "delete": {
                  "httpMethod": "DELETE",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "id": "container.projects.zones.clusters.delete",
                  "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}",
                  "response": {
                    "$ref": "Operation"
                  },
                  "parameterOrder": [
                    "projectId",
                    "zone",
                    "clusterId"
                  ],
                  "description": "Deletes the cluster, including the Kubernetes endpoint and all worker nodes. Firewalls and routes that were configured during cluster creation are also deleted. Other Google Compute Engine resources that might be in use by the cluster, such as load balancer resources, are not deleted if they weren't present when the cluster was initially created.",
                  "parameters": {
                    "clusterId": {
                      "description": "Deprecated. The name of the cluster to delete. This field has been deprecated and replaced by the name field.",
                      "location": "path",
                      "type": "string",
                      "required": true
                    },
                    "zone": {
                      "required": true,
                      "type": "string",
                      "description": "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.",
                      "location": "path"
                    },
                    "projectId": {
                      "required": true,
                      "type": "string",
                      "description": "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.",
                      "location": "path"
                    },
                    "name": {
                      "type": "string",
                      "description": "The name (project, location, cluster) of the cluster to delete. Specified in the format `projects/*/locations/*/clusters/*`.",
                      "location": "query"
                    }
                  },
                  "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}"
                },
                "startIpRotation": {
                  "id": "container.projects.zones.clusters.startIpRotation",
                  "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}:startIpRotation",
                  "response": {
                    "$ref": "Operation"
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "httpMethod": "POST",
                  "parameterOrder": [
                    "projectId",
                    "zone",
                    "clusterId"
                  ],
                  "description": "Starts master IP rotation.",
                  "request": {
                    "$ref": "StartIPRotationRequest"
                  },
                  "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}:startIpRotation",
                  "parameters": {
                    "projectId": {
                      "required": true,
                      "type": "string",
                      "description": "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.",
                      "location": "path"
                    },
                    "clusterId": {
                      "required": true,
                      "type": "string",
                      "description": "Deprecated. The name of the cluster. This field has been deprecated and replaced by the name field.",
                      "location": "path"
                    },
                    "zone": {
                      "required": true,
                      "type": "string",
                      "description": "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.",
                      "location": "path"
                    }
                  }
                },
                "setMaintenancePolicy": {
                  "description": "Sets the maintenance policy for a cluster.",
                  "request": {
                    "$ref": "SetMaintenancePolicyRequest"
                  },
                  "parameters": {
                    "projectId": {
                      "description": "Required. The Google Developers Console [project ID or project number](https://cloud.google.com/resource-manager/docs/creating-managing-projects).",
                      "location": "path",
                      "type": "string",
                      "required": true
                    },
                    "zone": {
                      "type": "string",
                      "description": "Required. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides.",
                      "location": "path",
                      "required": true
                    },
                    "clusterId": {
                      "required": true,
                      "description": "Required. The name of the cluster to update.",
                      "location": "path",
                      "type": "string"
                    }
                  },
                  "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}:setMaintenancePolicy",
                  "httpMethod": "POST",
                  "id": "container.projects.zones.clusters.setMaintenancePolicy",
                  "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}:setMaintenancePolicy",
                  "response": {
                    "$ref": "Operation"
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "parameterOrder": [
                    "projectId",
                    "zone",
                    "clusterId"
                  ]
                },
                "master": {
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "id": "container.projects.zones.clusters.master",
                  "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/master",
                  "response": {
                    "$ref": "Operation"
                  },
                  "httpMethod": "POST",
                  "parameterOrder": [
                    "projectId",
                    "zone",
                    "clusterId"
                  ],
                  "request": {
                    "$ref": "UpdateMasterRequest"
                  },
                  "description": "Updates the master for a specific cluster.",
                  "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/master",
                  "parameters": {
                    "zone": {
                      "type": "string",
                      "description": "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.",
                      "location": "path",
                      "required": true
                    },
                    "clusterId": {
                      "description": "Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field.",
                      "location": "path",
                      "type": "string",
                      "required": true
                    },
                    "projectId": {
                      "required": true,
                      "description": "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.",
                      "location": "path",
                      "type": "string"
                    }
                  }
                },
                "setNetworkPolicy": {
                  "id": "container.projects.zones.clusters.setNetworkPolicy",
                  "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}:setNetworkPolicy",
                  "response": {
                    "$ref": "Operation"
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "httpMethod": "POST",
                  "parameterOrder": [
                    "projectId",
                    "zone",
                    "clusterId"
                  ],
                  "description": "Enables or disables Network Policy for a cluster.",
                  "request": {
                    "$ref": "SetNetworkPolicyRequest"
                  },
                  "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}:setNetworkPolicy",
                  "parameters": {
                    "projectId": {
                      "description": "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.",
                      "location": "path",
                      "type": "string",
                      "required": true
                    },
                    "zone": {
                      "description": "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.",
                      "location": "path",
                      "type": "string",
                      "required": true
                    },
                    "clusterId": {
                      "required": true,
                      "description": "Deprecated. The name of the cluster. This field has been deprecated and replaced by the name field.",
                      "location": "path",
                      "type": "string"
                    }
                  }
                },
                "legacyAbac": {
                  "description": "Enables or disables the ABAC authorization mechanism on a cluster.",
                  "request": {
                    "$ref": "SetLegacyAbacRequest"
                  },
                  "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/legacyAbac",
                  "parameters": {
                    "projectId": {
                      "type": "string",
                      "description": "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.",
                      "location": "path",
                      "required": true
                    },
                    "clusterId": {
                      "required": true,
                      "type": "string",
                      "description": "Deprecated. The name of the cluster to update. This field has been deprecated and replaced by the name field.",
                      "location": "path"
                    },
                    "zone": {
                      "required": true,
                      "type": "string",
                      "description": "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.",
                      "location": "path"
                    }
                  },
                  "id": "container.projects.zones.clusters.legacyAbac",
                  "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/legacyAbac",
                  "response": {
                    "$ref": "Operation"
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "httpMethod": "POST",
                  "parameterOrder": [
                    "projectId",
                    "zone",
                    "clusterId"
                  ]
                },
                "logging": {
                  "parameterOrder": [
                    "projectId",
                    "zone",
                    "clusterId"
                  ],
                  "id": "container.projects.zones.clusters.logging",
                  "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/logging",
                  "response": {
                    "$ref": "Operation"
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "httpMethod": "POST",
                  "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/logging",
                  "parameters": {
                    "clusterId": {
                      "description": "Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field.",
                      "location": "path",
                      "type": "string",
                      "required": true
                    },
                    "zone": {
                      "type": "string",
                      "description": "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.",
                      "location": "path",
                      "required": true
                    },
                    "projectId": {
                      "required": true,
                      "type": "string",
                      "description": "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.",
                      "location": "path"
                    }
                  },
                  "description": "Sets the logging service for a specific cluster.",
                  "request": {
                    "$ref": "SetLoggingServiceRequest"
                  }
                },
                "resourceLabels": {
                  "parameterOrder": [
                    "projectId",
                    "zone",
                    "clusterId"
                  ],
                  "httpMethod": "POST",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "id": "container.projects.zones.clusters.resourceLabels",
                  "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/resourceLabels",
                  "response": {
                    "$ref": "Operation"
                  },
                  "parameters": {
                    "clusterId": {
                      "type": "string",
                      "description": "Deprecated. The name of the cluster. This field has been deprecated and replaced by the name field.",
                      "location": "path",
                      "required": true
                    },
                    "zone": {
                      "type": "string",
                      "description": "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.",
                      "location": "path",
                      "required": true
                    },
                    "projectId": {
                      "required": true,
                      "type": "string",
                      "description": "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.",
                      "location": "path"
                    }
                  },
                  "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/resourceLabels",
                  "request": {
                    "$ref": "SetLabelsRequest"
                  },
                  "description": "Sets labels on a cluster."
                },
                "monitoring": {
                  "parameterOrder": [
                    "projectId",
                    "zone",
                    "clusterId"
                  ],
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "id": "container.projects.zones.clusters.monitoring",
                  "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/monitoring",
                  "response": {
                    "$ref": "Operation"
                  },
                  "httpMethod": "POST",
                  "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/monitoring",
                  "parameters": {
                    "projectId": {
                      "description": "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.",
                      "location": "path",
                      "type": "string",
                      "required": true
                    },
                    "zone": {
                      "required": true,
                      "description": "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.",
                      "location": "path",
                      "type": "string"
                    },
                    "clusterId": {
                      "required": true,
                      "description": "Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field.",
                      "location": "path",
                      "type": "string"
                    }
                  },
                  "request": {
                    "$ref": "SetMonitoringServiceRequest"
                  },
                  "description": "Sets the monitoring service for a specific cluster."
                },
                "addons": {
                  "httpMethod": "POST",
                  "id": "container.projects.zones.clusters.addons",
                  "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/addons",
                  "response": {
                    "$ref": "Operation"
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "parameterOrder": [
                    "projectId",
                    "zone",
                    "clusterId"
                  ],
                  "description": "Sets the addons for a specific cluster.",
                  "request": {
                    "$ref": "SetAddonsConfigRequest"
                  },
                  "parameters": {
                    "zone": {
                      "description": "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.",
                      "location": "path",
                      "type": "string",
                      "required": true
                    },
                    "clusterId": {
                      "required": true,
                      "description": "Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field.",
                      "location": "path",
                      "type": "string"
                    },
                    "projectId": {
                      "description": "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.",
                      "location": "path",
                      "type": "string",
                      "required": true
                    }
                  },
                  "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/addons"
                },
                "get": {
                  "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}",
                  "parameters": {
                    "projectId": {
                      "required": true,
                      "type": "string",
                      "description": "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.",
                      "location": "path"
                    },
                    "name": {
                      "type": "string",
                      "description": "The name (project, location, cluster) of the cluster to retrieve. Specified in the format `projects/*/locations/*/clusters/*`.",
                      "location": "query"
                    },
                    "clusterId": {
                      "required": true,
                      "type": "string",
                      "description": "Deprecated. The name of the cluster to retrieve. This field has been deprecated and replaced by the name field.",
                      "location": "path"
                    },
                    "zone": {
                      "type": "string",
                      "description": "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.",
                      "location": "path",
                      "required": true
                    }
                  },
                  "description": "Gets the details for a specific cluster.",
                  "parameterOrder": [
                    "projectId",
                    "zone",
                    "clusterId"
                  ],
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "id": "container.projects.zones.clusters.get",
                  "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}",
                  "response": {
                    "$ref": "Cluster"
                  },
                  "httpMethod": "GET"
                },
                "completeIpRotation": {
                  "request": {
                    "$ref": "CompleteIPRotationRequest"
                  },
                  "description": "Completes master IP rotation.",
                  "parameters": {
                    "zone": {
                      "type": "string",
                      "description": "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.",
                      "location": "path",
                      "required": true
                    },
                    "clusterId": {
                      "description": "Deprecated. The name of the cluster. This field has been deprecated and replaced by the name field.",
                      "location": "path",
                      "type": "string",
                      "required": true
                    },
                    "projectId": {
                      "required": true,
                      "description": "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.",
                      "location": "path",
                      "type": "string"
                    }
                  },
                  "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}:completeIpRotation",
                  "httpMethod": "POST",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "id": "container.projects.zones.clusters.completeIpRotation",
                  "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}:completeIpRotation",
                  "response": {
                    "$ref": "Operation"
                  },
                  "parameterOrder": [
                    "projectId",
                    "zone",
                    "clusterId"
                  ]
                },
                "completeControlPlaneUpgrade": {
                  "httpMethod": "POST",
                  "id": "container.projects.zones.clusters.completeControlPlaneUpgrade",
                  "path": "v1beta1/{+name}:completeControlPlaneUpgrade",
                  "response": {
                    "$ref": "Operation"
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "parameterOrder": [
                    "name"
                  ],
                  "description": "CompleteControlPlaneUpgrade completes the rollback-safe upgrade by performing the step two upgrade for a specific cluster.",
                  "request": {
                    "$ref": "CompleteControlPlaneUpgradeRequest"
                  },
                  "parameters": {
                    "name": {
                      "required": true,
                      "pattern": "^projects/[^/]+/zones/[^/]+/clusters/[^/]+$",
                      "type": "string",
                      "description": "The name (project, location, cluster) of the cluster to complete upgrade. Specified in the format `projects/*/locations/*/clusters/*`.",
                      "location": "path"
                    }
                  },
                  "flatPath": "v1beta1/projects/{projectsId}/zones/{zonesId}/clusters/{clustersId}:completeControlPlaneUpgrade"
                },
                "update": {
                  "description": "Updates the settings for a specific cluster.",
                  "request": {
                    "$ref": "UpdateClusterRequest"
                  },
                  "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}",
                  "parameters": {
                    "zone": {
                      "required": true,
                      "description": "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.",
                      "location": "path",
                      "type": "string"
                    },
                    "clusterId": {
                      "required": true,
                      "type": "string",
                      "description": "Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field.",
                      "location": "path"
                    },
                    "projectId": {
                      "description": "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.",
                      "location": "path",
                      "type": "string",
                      "required": true
                    }
                  },
                  "id": "container.projects.zones.clusters.update",
                  "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}",
                  "response": {
                    "$ref": "Operation"
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "httpMethod": "PUT",
                  "parameterOrder": [
                    "projectId",
                    "zone",
                    "clusterId"
                  ]
                },
                "locations": {
                  "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/locations",
                  "parameters": {
                    "zone": {
                      "required": true,
                      "description": "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.",
                      "location": "path",
                      "type": "string"
                    },
                    "clusterId": {
                      "required": true,
                      "description": "Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field.",
                      "location": "path",
                      "type": "string"
                    },
                    "projectId": {
                      "type": "string",
                      "description": "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.",
                      "location": "path",
                      "required": true
                    }
                  },
                  "description": "Sets the locations for a specific cluster. Deprecated. Use [projects.locations.clusters.update](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters/update) instead.",
                  "request": {
                    "$ref": "SetLocationsRequest"
                  },
                  "deprecated": true,
                  "parameterOrder": [
                    "projectId",
                    "zone",
                    "clusterId"
                  ],
                  "id": "container.projects.zones.clusters.locations",
                  "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/locations",
                  "response": {
                    "$ref": "Operation"
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "httpMethod": "POST"
                },
                "list": {
                  "description": "Lists all clusters owned by a project in either the specified zone or all zones.",
                  "parameters": {
                    "projectId": {
                      "required": true,
                      "description": "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.",
                      "location": "path",
                      "type": "string"
                    },
                    "parent": {
                      "description": "The parent (project and location) where the clusters will be listed. Specified in the format `projects/*/locations/*`. Location \"-\" matches all zones and all regions.",
                      "location": "query",
                      "type": "string"
                    },
                    "zone": {
                      "required": true,
                      "description": "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.",
                      "location": "path",
                      "type": "string"
                    }
                  },
                  "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters",
                  "httpMethod": "GET",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "id": "container.projects.zones.clusters.list",
                  "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters",
                  "response": {
                    "$ref": "ListClustersResponse"
                  },
                  "parameterOrder": [
                    "projectId",
                    "zone"
                  ]
                },
                "create": {
                  "parameterOrder": [
                    "projectId",
                    "zone"
                  ],
                  "httpMethod": "POST",
                  "id": "container.projects.zones.clusters.create",
                  "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters",
                  "response": {
                    "$ref": "Operation"
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "parameters": {
                    "projectId": {
                      "type": "string",
                      "description": "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.",
                      "location": "path",
                      "required": true
                    },
                    "zone": {
                      "type": "string",
                      "description": "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.",
                      "location": "path",
                      "required": true
                    }
                  },
                  "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters",
                  "description": "Creates a cluster, consisting of the specified number and type of Google Compute Engine instances. By default, the cluster is created in the project's [default network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks). One firewall is added for the cluster. After cluster creation, the kubelet creates routes for each node to allow the containers on that node to communicate with all other instances in the cluster. Finally, an entry is added to the project's global metadata indicating which CIDR range the cluster is using.",
                  "request": {
                    "$ref": "CreateClusterRequest"
                  }
                },
                "setMasterAuth": {
                  "description": "Sets master auth materials. Currently supports changing the admin password or a specific cluster, either via password generation or explicitly setting the password.",
                  "request": {
                    "$ref": "SetMasterAuthRequest"
                  },
                  "parameters": {
                    "zone": {
                      "type": "string",
                      "description": "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.",
                      "location": "path",
                      "required": true
                    },
                    "clusterId": {
                      "required": true,
                      "type": "string",
                      "description": "Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field.",
                      "location": "path"
                    },
                    "projectId": {
                      "description": "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.",
                      "location": "path",
                      "type": "string",
                      "required": true
                    }
                  },
                  "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}:setMasterAuth",
                  "httpMethod": "POST",
                  "id": "container.projects.zones.clusters.setMasterAuth",
                  "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}:setMasterAuth",
                  "response": {
                    "$ref": "Operation"
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "parameterOrder": [
                    "projectId",
                    "zone",
                    "clusterId"
                  ]
                }
              },
              "resources": {
                "nodePools": {
                  "methods": {
                    "fetchNodePoolUpgradeInfo": {
                      "description": "Fetch upgrade information of a specific node pool.",
                      "parameters": {
                        "name": {
                          "type": "string",
                          "description": "Required. The name (project, location, cluster, node pool) of the node pool to get. Specified in the format `projects/*/locations/*/clusters/*/nodePools/*` or `projects/*/zones/*/clusters/*/nodePools/*`.",
                          "location": "path",
                          "pattern": "^projects/[^/]+/zones/[^/]+/clusters/[^/]+/nodePools/[^/]+$",
                          "required": true
                        },
                        "version": {
                          "description": "API request version that initiates this operation.",
                          "location": "query",
                          "type": "string"
                        }
                      },
                      "flatPath": "v1beta1/projects/{projectsId}/zones/{zonesId}/clusters/{clustersId}/nodePools/{nodePoolsId}:fetchNodePoolUpgradeInfo",
                      "httpMethod": "GET",
                      "id": "container.projects.zones.clusters.nodePools.fetchNodePoolUpgradeInfo",
                      "path": "v1beta1/{+name}:fetchNodePoolUpgradeInfo",
                      "response": {
                        "$ref": "NodePoolUpgradeInfo"
                      },
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform"
                      ],
                      "parameterOrder": [
                        "name"
                      ]
                    },
                    "get": {
                      "description": "Retrieves the requested node pool.",
                      "parameters": {
                        "clusterId": {
                          "required": true,
                          "description": "Deprecated. The name of the cluster. This field has been deprecated and replaced by the name field.",
                          "location": "path",
                          "type": "string"
                        },
                        "nodePoolId": {
                          "required": true,
                          "type": "string",
                          "description": "Deprecated. The name of the node pool. This field has been deprecated and replaced by the name field.",
                          "location": "path"
                        },
                        "zone": {
                          "description": "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.",
                          "location": "path",
                          "type": "string",
                          "required": true
                        },
                        "name": {
                          "type": "string",
                          "description": "The name (project, location, cluster, node pool id) of the node pool to get. Specified in the format `projects/*/locations/*/clusters/*/nodePools/*`.",
                          "location": "query"
                        },
                        "projectId": {
                          "type": "string",
                          "description": "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.",
                          "location": "path",
                          "required": true
                        }
                      },
                      "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools/{nodePoolId}",
                      "httpMethod": "GET",
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform"
                      ],
                      "id": "container.projects.zones.clusters.nodePools.get",
                      "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools/{nodePoolId}",
                      "response": {
                        "$ref": "NodePool"
                      },
                      "parameterOrder": [
                        "projectId",
                        "zone",
                        "clusterId",
                        "nodePoolId"
                      ]
                    },
                    "delete": {
                      "parameterOrder": [
                        "projectId",
                        "zone",
                        "clusterId",
                        "nodePoolId"
                      ],
                      "id": "container.projects.zones.clusters.nodePools.delete",
                      "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools/{nodePoolId}",
                      "response": {
                        "$ref": "Operation"
                      },
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform"
                      ],
                      "httpMethod": "DELETE",
                      "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools/{nodePoolId}",
                      "parameters": {
                        "zone": {
                          "required": true,
                          "type": "string",
                          "description": "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.",
                          "location": "path"
                        },
                        "name": {
                          "type": "string",
                          "description": "The name (project, location, cluster, node pool id) of the node pool to delete. Specified in the format `projects/*/locations/*/clusters/*/nodePools/*`.",
                          "location": "query"
                        },
                        "projectId": {
                          "description": "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.",
                          "location": "path",
                          "type": "string",
                          "required": true
                        },
                        "clusterId": {
                          "description": "Deprecated. The name of the cluster. This field has been deprecated and replaced by the name field.",
                          "location": "path",
                          "type": "string",
                          "required": true
                        },
                        "nodePoolId": {
                          "type": "string",
                          "description": "Deprecated. The name of the node pool to delete. This field has been deprecated and replaced by the name field.",
                          "location": "path",
                          "required": true
                        }
                      },
                      "description": "Deletes a node pool from a cluster."
                    },
                    "rollback": {
                      "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools/{nodePoolId}:rollback",
                      "parameters": {
                        "projectId": {
                          "required": true,
                          "type": "string",
                          "description": "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.",
                          "location": "path"
                        },
                        "nodePoolId": {
                          "required": true,
                          "description": "Deprecated. The name of the node pool to rollback. This field has been deprecated and replaced by the name field.",
                          "location": "path",
                          "type": "string"
                        },
                        "zone": {
                          "type": "string",
                          "description": "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.",
                          "location": "path",
                          "required": true
                        },
                        "clusterId": {
                          "required": true,
                          "description": "Deprecated. The name of the cluster to rollback. This field has been deprecated and replaced by the name field.",
                          "location": "path",
                          "type": "string"
                        }
                      },
                      "request": {
                        "$ref": "RollbackNodePoolUpgradeRequest"
                      },
                      "description": "Rolls back a previously Aborted or Failed NodePool upgrade. This makes no changes if the last upgrade successfully completed.",
                      "parameterOrder": [
                        "projectId",
                        "zone",
                        "clusterId",
                        "nodePoolId"
                      ],
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform"
                      ],
                      "id": "container.projects.zones.clusters.nodePools.rollback",
                      "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools/{nodePoolId}:rollback",
                      "response": {
                        "$ref": "Operation"
                      },
                      "httpMethod": "POST"
                    },
                    "setManagement": {
                      "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools/{nodePoolId}/setManagement",
                      "parameters": {
                        "clusterId": {
                          "type": "string",
                          "description": "Deprecated. The name of the cluster to update. This field has been deprecated and replaced by the name field.",
                          "location": "path",
                          "required": true
                        },
                        "zone": {
                          "description": "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.",
                          "location": "path",
                          "type": "string",
                          "required": true
                        },
                        "projectId": {
                          "description": "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.",
                          "location": "path",
                          "type": "string",
                          "required": true
                        },
                        "nodePoolId": {
                          "required": true,
                          "description": "Deprecated. The name of the node pool to update. This field has been deprecated and replaced by the name field.",
                          "location": "path",
                          "type": "string"
                        }
                      },
                      "description": "Sets the NodeManagement options for a node pool.",
                      "request": {
                        "$ref": "SetNodePoolManagementRequest"
                      },
                      "parameterOrder": [
                        "projectId",
                        "zone",
                        "clusterId",
                        "nodePoolId"
                      ],
                      "id": "container.projects.zones.clusters.nodePools.setManagement",
                      "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools/{nodePoolId}/setManagement",
                      "response": {
                        "$ref": "Operation"
                      },
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform"
                      ],
                      "httpMethod": "POST"
                    },
                    "list": {
                      "description": "Lists the node pools for a cluster.",
                      "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools",
                      "parameters": {
                        "projectId": {
                          "type": "string",
                          "description": "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.",
                          "location": "path",
                          "required": true
                        },
                        "parent": {
                          "description": "The parent (project, location, cluster name) where the node pools will be listed. Specified in the format `projects/*/locations/*/clusters/*`.",
                          "location": "query",
                          "type": "string"
                        },
                        "clusterId": {
                          "required": true,
                          "type": "string",
                          "description": "Deprecated. The name of the cluster. This field has been deprecated and replaced by the parent field.",
                          "location": "path"
                        },
                        "zone": {
                          "type": "string",
                          "description": "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.",
                          "location": "path",
                          "required": true
                        }
                      },
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform"
                      ],
                      "id": "container.projects.zones.clusters.nodePools.list",
                      "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools",
                      "response": {
                        "$ref": "ListNodePoolsResponse"
                      },
                      "httpMethod": "GET",
                      "parameterOrder": [
                        "projectId",
                        "zone",
                        "clusterId"
                      ]
                    },
                    "create": {
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform"
                      ],
                      "id": "container.projects.zones.clusters.nodePools.create",
                      "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools",
                      "response": {
                        "$ref": "Operation"
                      },
                      "httpMethod": "POST",
                      "parameterOrder": [
                        "projectId",
                        "zone",
                        "clusterId"
                      ],
                      "request": {
                        "$ref": "CreateNodePoolRequest"
                      },
                      "description": "Creates a node pool for a cluster.",
                      "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools",
                      "parameters": {
                        "zone": {
                          "description": "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.",
                          "location": "path",
                          "type": "string",
                          "required": true
                        },
                        "clusterId": {
                          "required": true,
                          "type": "string",
                          "description": "Deprecated. The name of the cluster. This field has been deprecated and replaced by the parent field.",
                          "location": "path"
                        },
                        "projectId": {
                          "required": true,
                          "description": "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.",
                          "location": "path",
                          "type": "string"
                        }
                      }
                    },
                    "update": {
                      "id": "container.projects.zones.clusters.nodePools.update",
                      "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools/{nodePoolId}/update",
                      "response": {
                        "$ref": "Operation"
                      },
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform"
                      ],
                      "httpMethod": "POST",
                      "parameterOrder": [
                        "projectId",
                        "zone",
                        "clusterId",
                        "nodePoolId"
                      ],
                      "description": "Updates the version and/or image type of a specific node pool.",
                      "request": {
                        "$ref": "UpdateNodePoolRequest"
                      },
                      "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools/{nodePoolId}/update",
                      "parameters": {
                        "zone": {
                          "required": true,
                          "description": "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.",
                          "location": "path",
                          "type": "string"
                        },
                        "clusterId": {
                          "description": "Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field.",
                          "location": "path",
                          "type": "string",
                          "required": true
                        },
                        "projectId": {
                          "required": true,
                          "description": "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.",
                          "location": "path",
                          "type": "string"
                        },
                        "nodePoolId": {
                          "description": "Deprecated. The name of the node pool to upgrade. This field has been deprecated and replaced by the name field.",
                          "location": "path",
                          "type": "string",
                          "required": true
                        }
                      }
                    },
                    "autoscaling": {
                      "parameters": {
                        "zone": {
                          "description": "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.",
                          "location": "path",
                          "type": "string",
                          "required": true
                        },
                        "clusterId": {
                          "required": true,
                          "type": "string",
                          "description": "Deprecated. The name of the cluster to upgrade. This field has been deprecated and replaced by the name field.",
                          "location": "path"
                        },
                        "projectId": {
                          "required": true,
                          "description": "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.",
                          "location": "path",
                          "type": "string"
                        },
                        "nodePoolId": {
                          "required": true,
                          "description": "Deprecated. The name of the node pool to upgrade. This field has been deprecated and replaced by the name field.",
                          "location": "path",
                          "type": "string"
                        }
                      },
                      "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools/{nodePoolId}/autoscaling",
                      "request": {
                        "$ref": "SetNodePoolAutoscalingRequest"
                      },
                      "description": "Sets the autoscaling settings of a specific node pool.",
                      "parameterOrder": [
                        "projectId",
                        "zone",
                        "clusterId",
                        "nodePoolId"
                      ],
                      "httpMethod": "POST",
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform"
                      ],
                      "id": "container.projects.zones.clusters.nodePools.autoscaling",
                      "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools/{nodePoolId}/autoscaling",
                      "response": {
                        "$ref": "Operation"
                      }
                    },
                    "setSize": {
                      "id": "container.projects.zones.clusters.nodePools.setSize",
                      "path": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools/{nodePoolId}/setSize",
                      "response": {
                        "$ref": "Operation"
                      },
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform"
                      ],
                      "httpMethod": "POST",
                      "parameterOrder": [
                        "projectId",
                        "zone",
                        "clusterId",
                        "nodePoolId"
                      ],
                      "description": "SetNodePoolSizeRequest sets the size of a node pool. The new size will be used for all replicas, including future replicas created by modifying NodePool.locations.",
                      "request": {
                        "$ref": "SetNodePoolSizeRequest"
                      },
                      "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/clusters/{clusterId}/nodePools/{nodePoolId}/setSize",
                      "parameters": {
                        "zone": {
                          "required": true,
                          "description": "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.",
                          "location": "path",
                          "type": "string"
                        },
                        "clusterId": {
                          "required": true,
                          "description": "Deprecated. The name of the cluster to update. This field has been deprecated and replaced by the name field.",
                          "location": "path",
                          "type": "string"
                        },
                        "projectId": {
                          "description": "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.",
                          "location": "path",
                          "type": "string",
                          "required": true
                        },
                        "nodePoolId": {
                          "description": "Deprecated. The name of the node pool to update. This field has been deprecated and replaced by the name field.",
                          "location": "path",
                          "type": "string",
                          "required": true
                        }
                      }
                    }
                  }
                }
              }
            },
            "operations": {
              "methods": {
                "list": {
                  "parameterOrder": [
                    "projectId",
                    "zone"
                  ],
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "id": "container.projects.zones.operations.list",
                  "path": "v1beta1/projects/{projectId}/zones/{zone}/operations",
                  "response": {
                    "$ref": "ListOperationsResponse"
                  },
                  "httpMethod": "GET",
                  "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/operations",
                  "parameters": {
                    "projectId": {
                      "required": true,
                      "description": "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.",
                      "location": "path",
                      "type": "string"
                    },
                    "parent": {
                      "type": "string",
                      "description": "The parent (project and location) where the operations will be listed. Specified in the format `projects/*/locations/*`. Location \"-\" matches all zones and all regions.",
                      "location": "query"
                    },
                    "zone": {
                      "type": "string",
                      "description": "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.",
                      "location": "path",
                      "required": true
                    }
                  },
                  "description": "Lists all operations in a project in the specified zone or all zones."
                },
                "get": {
                  "description": "Gets the specified operation.",
                  "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/operations/{operationId}",
                  "parameters": {
                    "zone": {
                      "required": true,
                      "description": "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.",
                      "location": "path",
                      "type": "string"
                    },
                    "operationId": {
                      "type": "string",
                      "description": "Deprecated. The server-assigned `name` of the operation. This field has been deprecated and replaced by the name field.",
                      "location": "path",
                      "required": true
                    },
                    "name": {
                      "description": "The name (project, location, operation id) of the operation to get. Specified in the format `projects/*/locations/*/operations/*`.",
                      "location": "query",
                      "type": "string"
                    },
                    "projectId": {
                      "type": "string",
                      "description": "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.",
                      "location": "path",
                      "required": true
                    }
                  },
                  "id": "container.projects.zones.operations.get",
                  "path": "v1beta1/projects/{projectId}/zones/{zone}/operations/{operationId}",
                  "response": {
                    "$ref": "Operation"
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "httpMethod": "GET",
                  "parameterOrder": [
                    "projectId",
                    "zone",
                    "operationId"
                  ]
                },
                "cancel": {
                  "parameterOrder": [
                    "projectId",
                    "zone",
                    "operationId"
                  ],
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "id": "container.projects.zones.operations.cancel",
                  "path": "v1beta1/projects/{projectId}/zones/{zone}/operations/{operationId}:cancel",
                  "response": {
                    "$ref": "Empty"
                  },
                  "httpMethod": "POST",
                  "flatPath": "v1beta1/projects/{projectId}/zones/{zone}/operations/{operationId}:cancel",
                  "parameters": {
                    "zone": {
                      "description": "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.",
                      "location": "path",
                      "type": "string",
                      "required": true
                    },
                    "operationId": {
                      "required": true,
                      "type": "string",
                      "description": "Deprecated. The server-assigned `name` of the operation. This field has been deprecated and replaced by the name field.",
                      "location": "path"
                    },
                    "projectId": {
                      "type": "string",
                      "description": "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.",
                      "location": "path",
                      "required": true
                    }
                  },
                  "request": {
                    "$ref": "CancelOperationRequest"
                  },
                  "description": "Cancels the specified operation."
                }
              }
            }
          }
        },
        "aggregated": {
          "resources": {
            "usableSubnetworks": {
              "methods": {
                "list": {
                  "id": "container.projects.aggregated.usableSubnetworks.list",
                  "path": "v1beta1/{+parent}/aggregated/usableSubnetworks",
                  "response": {
                    "$ref": "ListUsableSubnetworksResponse"
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "httpMethod": "GET",
                  "parameterOrder": [
                    "parent"
                  ],
                  "description": "Lists subnetworks that can be used for creating clusters in a project.",
                  "flatPath": "v1beta1/projects/{projectsId}/aggregated/usableSubnetworks",
                  "parameters": {
                    "pageSize": {
                      "type": "integer",
                      "description": "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)",
                      "location": "query",
                      "format": "int32"
                    },
                    "filter": {
                      "type": "string",
                      "description": "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.",
                      "location": "query"
                    },
                    "pageToken": {
                      "description": "Specifies a page token to use. Set this to the nextPageToken returned by previous list requests to get the next page of results.",
                      "location": "query",
                      "type": "string"
                    },
                    "parent": {
                      "required": true,
                      "type": "string",
                      "description": "Required. The parent project where subnetworks are usable. Specified in the format `projects/*`.",
                      "location": "path",
                      "pattern": "^projects/[^/]+$"
                    }
                  }
                }
              }
            }
          }
        },
        "locations": {
          "methods": {
            "getServerConfig": {
              "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/serverConfig",
              "parameters": {
                "zone": {
                  "description": "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.",
                  "location": "query",
                  "deprecated": true,
                  "type": "string"
                },
                "name": {
                  "pattern": "^projects/[^/]+/locations/[^/]+$",
                  "description": "The name (project and location) of the server config to get, specified in the format `projects/*/locations/*`.",
                  "location": "path",
                  "type": "string",
                  "required": true
                },
                "projectId": {
                  "type": "string",
                  "description": "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.",
                  "location": "query",
                  "deprecated": true
                }
              },
              "description": "Returns configuration info about the Google Kubernetes Engine service.",
              "parameterOrder": [
                "name"
              ],
              "scopes": [
                "https://www.googleapis.com/auth/cloud-platform"
              ],
              "id": "container.projects.locations.getServerConfig",
              "path": "v1beta1/{+name}/serverConfig",
              "response": {
                "$ref": "ServerConfig"
              },
              "httpMethod": "GET"
            },
            "list": {
              "parameterOrder": [
                "parent"
              ],
              "httpMethod": "GET",
              "scopes": [
                "https://www.googleapis.com/auth/cloud-platform"
              ],
              "id": "container.projects.locations.list",
              "path": "v1beta1/{+parent}/locations",
              "response": {
                "$ref": "ListLocationsResponse"
              },
              "parameters": {
                "parent": {
                  "required": true,
                  "pattern": "^projects/[^/]+$",
                  "description": "Required. Contains the name of the resource requested. Specified in the format `projects/*`.",
                  "location": "path",
                  "type": "string"
                }
              },
              "flatPath": "v1beta1/projects/{projectsId}/locations",
              "description": "Fetches locations that offer Google Kubernetes Engine."
            }
          },
          "resources": {
            "clusters": {
              "methods": {
                "delete": {
                  "parameterOrder": [
                    "name"
                  ],
                  "httpMethod": "DELETE",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "id": "container.projects.locations.clusters.delete",
                  "path": "v1beta1/{+name}",
                  "response": {
                    "$ref": "Operation"
                  },
                  "parameters": {
                    "projectId": {
                      "type": "string",
                      "description": "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.",
                      "location": "query",
                      "deprecated": true
                    },
                    "name": {
                      "required": true,
                      "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+$",
                      "description": "The name (project, location, cluster) of the cluster to delete. Specified in the format `projects/*/locations/*/clusters/*`.",
                      "location": "path",
                      "type": "string"
                    },
                    "clusterId": {
                      "type": "string",
                      "description": "Deprecated. The name of the cluster to delete. This field has been deprecated and replaced by the name field.",
                      "location": "query",
                      "deprecated": true
                    },
                    "zone": {
                      "type": "string",
                      "description": "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.",
                      "location": "query",
                      "deprecated": true
                    }
                  },
                  "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}",
                  "description": "Deletes the cluster, including the Kubernetes endpoint and all worker nodes. Firewalls and routes that were configured during cluster creation are also deleted. Other Google Compute Engine resources that might be in use by the cluster, such as load balancer resources, are not deleted if they weren't present when the cluster was initially created."
                },
                "fetchClusterUpgradeInfo": {
                  "parameters": {
                    "version": {
                      "description": "API request version that initiates this operation.",
                      "location": "query",
                      "type": "string"
                    },
                    "name": {
                      "required": true,
                      "description": "Required. The name (project, location, cluster) of the cluster to get. Specified in the format `projects/*/locations/*/clusters/*` or `projects/*/zones/*/clusters/*`.",
                      "location": "path",
                      "type": "string",
                      "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+$"
                    }
                  },
                  "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}:fetchClusterUpgradeInfo",
                  "description": "Fetch upgrade information of a specific cluster.",
                  "parameterOrder": [
                    "name"
                  ],
                  "httpMethod": "GET",
                  "id": "container.projects.locations.clusters.fetchClusterUpgradeInfo",
                  "path": "v1beta1/{+name}:fetchClusterUpgradeInfo",
                  "response": {
                    "$ref": "ClusterUpgradeInfo"
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ]
                },
                "setAddons": {
                  "id": "container.projects.locations.clusters.setAddons",
                  "path": "v1beta1/{+name}:setAddons",
                  "response": {
                    "$ref": "Operation"
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "httpMethod": "POST",
                  "parameterOrder": [
                    "name"
                  ],
                  "description": "Sets the addons for a specific cluster.",
                  "request": {
                    "$ref": "SetAddonsConfigRequest"
                  },
                  "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}:setAddons",
                  "parameters": {
                    "name": {
                      "description": "The name (project, location, cluster) of the cluster to set addons. Specified in the format `projects/*/locations/*/clusters/*`.",
                      "location": "path",
                      "type": "string",
                      "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+$",
                      "required": true
                    }
                  }
                },
                "setLegacyAbac": {
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "id": "container.projects.locations.clusters.setLegacyAbac",
                  "path": "v1beta1/{+name}:setLegacyAbac",
                  "response": {
                    "$ref": "Operation"
                  },
                  "httpMethod": "POST",
                  "parameterOrder": [
                    "name"
                  ],
                  "request": {
                    "$ref": "SetLegacyAbacRequest"
                  },
                  "description": "Enables or disables the ABAC authorization mechanism on a cluster.",
                  "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}:setLegacyAbac",
                  "parameters": {
                    "name": {
                      "type": "string",
                      "description": "The name (project, location, cluster name) of the cluster to set legacy abac. Specified in the format `projects/*/locations/*/clusters/*`.",
                      "location": "path",
                      "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+$",
                      "required": true
                    }
                  }
                },
                "startIpRotation": {
                  "id": "container.projects.locations.clusters.startIpRotation",
                  "path": "v1beta1/{+name}:startIpRotation",
                  "response": {
                    "$ref": "Operation"
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "httpMethod": "POST",
                  "parameterOrder": [
                    "name"
                  ],
                  "description": "Starts master IP rotation.",
                  "request": {
                    "$ref": "StartIPRotationRequest"
                  },
                  "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}:startIpRotation",
                  "parameters": {
                    "name": {
                      "required": true,
                      "description": "The name (project, location, cluster name) of the cluster to start IP rotation. Specified in the format `projects/*/locations/*/clusters/*`.",
                      "location": "path",
                      "type": "string",
                      "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+$"
                    }
                  }
                },
                "setMaintenancePolicy": {
                  "httpMethod": "POST",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "id": "container.projects.locations.clusters.setMaintenancePolicy",
                  "path": "v1beta1/{+name}:setMaintenancePolicy",
                  "response": {
                    "$ref": "Operation"
                  },
                  "parameterOrder": [
                    "name"
                  ],
                  "request": {
                    "$ref": "SetMaintenancePolicyRequest"
                  },
                  "description": "Sets the maintenance policy for a cluster.",
                  "parameters": {
                    "name": {
                      "required": true,
                      "description": "The name (project, location, cluster name) of the cluster to set maintenance policy. Specified in the format `projects/*/locations/*/clusters/*`.",
                      "location": "path",
                      "type": "string",
                      "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+$"
                    }
                  },
                  "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}:setMaintenancePolicy"
                },
                "setNetworkPolicy": {
                  "parameterOrder": [
                    "name"
                  ],
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "id": "container.projects.locations.clusters.setNetworkPolicy",
                  "path": "v1beta1/{+name}:setNetworkPolicy",
                  "response": {
                    "$ref": "Operation"
                  },
                  "httpMethod": "POST",
                  "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}:setNetworkPolicy",
                  "parameters": {
                    "name": {
                      "required": true,
                      "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+$",
                      "description": "The name (project, location, cluster name) of the cluster to set networking policy. Specified in the format `projects/*/locations/*/clusters/*`.",
                      "location": "path",
                      "type": "string"
                    }
                  },
                  "request": {
                    "$ref": "SetNetworkPolicyRequest"
                  },
                  "description": "Enables or disables Network Policy for a cluster."
                },
                "setResourceLabels": {
                  "request": {
                    "$ref": "SetLabelsRequest"
                  },
                  "description": "Sets labels on a cluster.",
                  "parameters": {
                    "name": {
                      "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+$",
                      "description": "The name (project, location, cluster name) of the cluster to set labels. Specified in the format `projects/*/locations/*/clusters/*`.",
                      "location": "path",
                      "type": "string",
                      "required": true
                    }
                  },
                  "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}:setResourceLabels",
                  "httpMethod": "POST",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "id": "container.projects.locations.clusters.setResourceLabels",
                  "path": "v1beta1/{+name}:setResourceLabels",
                  "response": {
                    "$ref": "Operation"
                  },
                  "parameterOrder": [
                    "name"
                  ]
                },
                "checkAutopilotCompatibility": {
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "id": "container.projects.locations.clusters.checkAutopilotCompatibility",
                  "path": "v1beta1/{+name}:checkAutopilotCompatibility",
                  "response": {
                    "$ref": "CheckAutopilotCompatibilityResponse"
                  },
                  "httpMethod": "GET",
                  "parameterOrder": [
                    "name"
                  ],
                  "description": "Checks the cluster compatibility with Autopilot mode, and returns a list of compatibility issues.",
                  "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}:checkAutopilotCompatibility",
                  "parameters": {
                    "name": {
                      "required": true,
                      "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+$",
                      "description": "The name (project, location, cluster) of the cluster to retrieve. Specified in the format `projects/*/locations/*/clusters/*`.",
                      "location": "path",
                      "type": "string"
                    }
                  }
                },
                "get": {
                  "description": "Gets the details for a specific cluster.",
                  "parameters": {
                    "projectId": {
                      "type": "string",
                      "description": "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.",
                      "location": "query",
                      "deprecated": true
                    },
                    "name": {
                      "required": true,
                      "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+$",
                      "type": "string",
                      "description": "The name (project, location, cluster) of the cluster to retrieve. Specified in the format `projects/*/locations/*/clusters/*`.",
                      "location": "path"
                    },
                    "clusterId": {
                      "type": "string",
                      "description": "Deprecated. The name of the cluster to retrieve. This field has been deprecated and replaced by the name field.",
                      "location": "query",
                      "deprecated": true
                    },
                    "zone": {
                      "description": "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.",
                      "location": "query",
                      "deprecated": true,
                      "type": "string"
                    }
                  },
                  "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}",
                  "httpMethod": "GET",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "id": "container.projects.locations.clusters.get",
                  "path": "v1beta1/{+name}",
                  "response": {
                    "$ref": "Cluster"
                  },
                  "parameterOrder": [
                    "name"
                  ]
                },
                "completeControlPlaneUpgrade": {
                  "request": {
                    "$ref": "CompleteControlPlaneUpgradeRequest"
                  },
                  "description": "CompleteControlPlaneUpgrade completes the rollback-safe upgrade by performing the step two upgrade for a specific cluster.",
                  "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}:completeControlPlaneUpgrade",
                  "parameters": {
                    "name": {
                      "required": true,
                      "type": "string",
                      "description": "The name (project, location, cluster) of the cluster to complete upgrade. Specified in the format `projects/*/locations/*/clusters/*`.",
                      "location": "path",
                      "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+$"
                    }
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "id": "container.projects.locations.clusters.completeControlPlaneUpgrade",
                  "path": "v1beta1/{+name}:completeControlPlaneUpgrade",
                  "response": {
                    "$ref": "Operation"
                  },
                  "httpMethod": "POST",
                  "parameterOrder": [
                    "name"
                  ]
                },
                "setLocations": {
                  "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}:setLocations",
                  "parameters": {
                    "name": {
                      "required": true,
                      "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+$",
                      "description": "The name (project, location, cluster) of the cluster to set locations. Specified in the format `projects/*/locations/*/clusters/*`.",
                      "location": "path",
                      "type": "string"
                    }
                  },
                  "description": "Sets the locations for a specific cluster. Deprecated. Use [projects.locations.clusters.update](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters/update) instead.",
                  "request": {
                    "$ref": "SetLocationsRequest"
                  },
                  "deprecated": true,
                  "parameterOrder": [
                    "name"
                  ],
                  "id": "container.projects.locations.clusters.setLocations",
                  "path": "v1beta1/{+name}:setLocations",
                  "response": {
                    "$ref": "Operation"
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "httpMethod": "POST"
                },
                "completeIpRotation": {
                  "parameters": {
                    "name": {
                      "type": "string",
                      "description": "The name (project, location, cluster name) of the cluster to complete IP rotation. Specified in the format `projects/*/locations/*/clusters/*`.",
                      "location": "path",
                      "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+$",
                      "required": true
                    }
                  },
                  "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}:completeIpRotation",
                  "description": "Completes master IP rotation.",
                  "request": {
                    "$ref": "CompleteIPRotationRequest"
                  },
                  "parameterOrder": [
                    "name"
                  ],
                  "httpMethod": "POST",
                  "id": "container.projects.locations.clusters.completeIpRotation",
                  "path": "v1beta1/{+name}:completeIpRotation",
                  "response": {
                    "$ref": "Operation"
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ]
                },
                "setMonitoring": {
                  "description": "Sets the monitoring service for a specific cluster.",
                  "request": {
                    "$ref": "SetMonitoringServiceRequest"
                  },
                  "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}:setMonitoring",
                  "parameters": {
                    "name": {
                      "required": true,
                      "description": "The name (project, location, cluster) of the cluster to set monitoring. Specified in the format `projects/*/locations/*/clusters/*`.",
                      "location": "path",
                      "type": "string",
                      "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+$"
                    }
                  },
                  "id": "container.projects.locations.clusters.setMonitoring",
                  "path": "v1beta1/{+name}:setMonitoring",
                  "response": {
                    "$ref": "Operation"
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "httpMethod": "POST",
                  "parameterOrder": [
                    "name"
                  ]
                },
                "list": {
                  "parameters": {
                    "zone": {
                      "description": "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.",
                      "location": "query",
                      "deprecated": true,
                      "type": "string"
                    },
                    "parent": {
                      "required": true,
                      "pattern": "^projects/[^/]+/locations/[^/]+$",
                      "description": "The parent (project and location) where the clusters will be listed. Specified in the format `projects/*/locations/*`. Location \"-\" matches all zones and all regions.",
                      "location": "path",
                      "type": "string"
                    },
                    "projectId": {
                      "type": "string",
                      "description": "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.",
                      "location": "query",
                      "deprecated": true
                    }
                  },
                  "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters",
                  "description": "Lists all clusters owned by a project in either the specified zone or all zones.",
                  "parameterOrder": [
                    "parent"
                  ],
                  "httpMethod": "GET",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "id": "container.projects.locations.clusters.list",
                  "path": "v1beta1/{+parent}/clusters",
                  "response": {
                    "$ref": "ListClustersResponse"
                  }
                },
                "create": {
                  "parameterOrder": [
                    "parent"
                  ],
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "id": "container.projects.locations.clusters.create",
                  "path": "v1beta1/{+parent}/clusters",
                  "response": {
                    "$ref": "Operation"
                  },
                  "httpMethod": "POST",
                  "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters",
                  "parameters": {
                    "parent": {
                      "pattern": "^projects/[^/]+/locations/[^/]+$",
                      "type": "string",
                      "description": "The parent (project and location) where the cluster will be created. Specified in the format `projects/*/locations/*`.",
                      "location": "path",
                      "required": true
                    }
                  },
                  "request": {
                    "$ref": "CreateClusterRequest"
                  },
                  "description": "Creates a cluster, consisting of the specified number and type of Google Compute Engine instances. By default, the cluster is created in the project's [default network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks). One firewall is added for the cluster. After cluster creation, the kubelet creates routes for each node to allow the containers on that node to communicate with all other instances in the cluster. Finally, an entry is added to the project's global metadata indicating which CIDR range the cluster is using."
                },
                "setLogging": {
                  "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}:setLogging",
                  "parameters": {
                    "name": {
                      "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+$",
                      "type": "string",
                      "description": "The name (project, location, cluster) of the cluster to set logging. Specified in the format `projects/*/locations/*/clusters/*`.",
                      "location": "path",
                      "required": true
                    }
                  },
                  "description": "Sets the logging service for a specific cluster.",
                  "request": {
                    "$ref": "SetLoggingServiceRequest"
                  },
                  "parameterOrder": [
                    "name"
                  ],
                  "id": "container.projects.locations.clusters.setLogging",
                  "path": "v1beta1/{+name}:setLogging",
                  "response": {
                    "$ref": "Operation"
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "httpMethod": "POST"
                },
                "updateMaster": {
                  "id": "container.projects.locations.clusters.updateMaster",
                  "path": "v1beta1/{+name}:updateMaster",
                  "response": {
                    "$ref": "Operation"
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "httpMethod": "POST",
                  "parameterOrder": [
                    "name"
                  ],
                  "description": "Updates the master for a specific cluster.",
                  "request": {
                    "$ref": "UpdateMasterRequest"
                  },
                  "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}:updateMaster",
                  "parameters": {
                    "name": {
                      "type": "string",
                      "description": "The name (project, location, cluster) of the cluster to update. Specified in the format `projects/*/locations/*/clusters/*`.",
                      "location": "path",
                      "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+$",
                      "required": true
                    }
                  }
                },
                "setMasterAuth": {
                  "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}:setMasterAuth",
                  "parameters": {
                    "name": {
                      "description": "The name (project, location, cluster) of the cluster to set auth. Specified in the format `projects/*/locations/*/clusters/*`.",
                      "location": "path",
                      "type": "string",
                      "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+$",
                      "required": true
                    }
                  },
                  "request": {
                    "$ref": "SetMasterAuthRequest"
                  },
                  "description": "Sets master auth materials. Currently supports changing the admin password or a specific cluster, either via password generation or explicitly setting the password.",
                  "parameterOrder": [
                    "name"
                  ],
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "id": "container.projects.locations.clusters.setMasterAuth",
                  "path": "v1beta1/{+name}:setMasterAuth",
                  "response": {
                    "$ref": "Operation"
                  },
                  "httpMethod": "POST"
                },
                "update": {
                  "parameters": {
                    "name": {
                      "required": true,
                      "type": "string",
                      "description": "The name (project, location, cluster) of the cluster to update. Specified in the format `projects/*/locations/*/clusters/*`.",
                      "location": "path",
                      "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+$"
                    }
                  },
                  "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}",
                  "request": {
                    "$ref": "UpdateClusterRequest"
                  },
                  "description": "Updates the settings for a specific cluster.",
                  "parameterOrder": [
                    "name"
                  ],
                  "httpMethod": "PUT",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "id": "container.projects.locations.clusters.update",
                  "path": "v1beta1/{+name}",
                  "response": {
                    "$ref": "Operation"
                  }
                },
                "getJwks": {
                  "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}/jwks",
                  "parameters": {
                    "parent": {
                      "required": true,
                      "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+$",
                      "type": "string",
                      "description": "The cluster (project, location, cluster name) to get keys for. Specified in the format `projects/*/locations/*/clusters/*`.",
                      "location": "path"
                    }
                  },
                  "parameterOrder": [
                    "parent"
                  ],
                  "id": "container.projects.locations.clusters.getJwks",
                  "path": "v1beta1/{+parent}/jwks",
                  "response": {
                    "$ref": "GetJSONWebKeysResponse"
                  },
                  "httpMethod": "GET",
                  "description": "Gets the public component of the cluster signing keys in JSON Web Key format."
                }
              },
              "resources": {
                "nodePools": {
                  "methods": {
                    "fetchNodePoolUpgradeInfo": {
                      "parameterOrder": [
                        "name"
                      ],
                      "httpMethod": "GET",
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform"
                      ],
                      "id": "container.projects.locations.clusters.nodePools.fetchNodePoolUpgradeInfo",
                      "path": "v1beta1/{+name}:fetchNodePoolUpgradeInfo",
                      "response": {
                        "$ref": "NodePoolUpgradeInfo"
                      },
                      "parameters": {
                        "name": {
                          "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+/nodePools/[^/]+$",
                          "type": "string",
                          "description": "Required. The name (project, location, cluster, node pool) of the node pool to get. Specified in the format `projects/*/locations/*/clusters/*/nodePools/*` or `projects/*/zones/*/clusters/*/nodePools/*`.",
                          "location": "path",
                          "required": true
                        },
                        "version": {
                          "description": "API request version that initiates this operation.",
                          "location": "query",
                          "type": "string"
                        }
                      },
                      "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}/nodePools/{nodePoolsId}:fetchNodePoolUpgradeInfo",
                      "description": "Fetch upgrade information of a specific node pool."
                    },
                    "get": {
                      "parameterOrder": [
                        "name"
                      ],
                      "id": "container.projects.locations.clusters.nodePools.get",
                      "path": "v1beta1/{+name}",
                      "response": {
                        "$ref": "NodePool"
                      },
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform"
                      ],
                      "httpMethod": "GET",
                      "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}/nodePools/{nodePoolsId}",
                      "parameters": {
                        "nodePoolId": {
                          "type": "string",
                          "description": "Deprecated. The name of the node pool. This field has been deprecated and replaced by the name field.",
                          "location": "query",
                          "deprecated": true
                        },
                        "clusterId": {
                          "type": "string",
                          "description": "Deprecated. The name of the cluster. This field has been deprecated and replaced by the name field.",
                          "location": "query",
                          "deprecated": true
                        },
                        "projectId": {
                          "type": "string",
                          "description": "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.",
                          "location": "query",
                          "deprecated": true
                        },
                        "name": {
                          "required": true,
                          "type": "string",
                          "description": "The name (project, location, cluster, node pool id) of the node pool to get. Specified in the format `projects/*/locations/*/clusters/*/nodePools/*`.",
                          "location": "path",
                          "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+/nodePools/[^/]+$"
                        },
                        "zone": {
                          "type": "string",
                          "description": "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.",
                          "location": "query",
                          "deprecated": true
                        }
                      },
                      "description": "Retrieves the requested node pool."
                    },
                    "delete": {
                      "httpMethod": "DELETE",
                      "id": "container.projects.locations.clusters.nodePools.delete",
                      "path": "v1beta1/{+name}",
                      "response": {
                        "$ref": "Operation"
                      },
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform"
                      ],
                      "parameterOrder": [
                        "name"
                      ],
                      "description": "Deletes a node pool from a cluster.",
                      "parameters": {
                        "name": {
                          "required": true,
                          "description": "The name (project, location, cluster, node pool id) of the node pool to delete. Specified in the format `projects/*/locations/*/clusters/*/nodePools/*`.",
                          "location": "path",
                          "type": "string",
                          "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+/nodePools/[^/]+$"
                        },
                        "projectId": {
                          "type": "string",
                          "description": "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.",
                          "location": "query",
                          "deprecated": true
                        },
                        "zone": {
                          "description": "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.",
                          "location": "query",
                          "deprecated": true,
                          "type": "string"
                        },
                        "nodePoolId": {
                          "type": "string",
                          "description": "Deprecated. The name of the node pool to delete. This field has been deprecated and replaced by the name field.",
                          "location": "query",
                          "deprecated": true
                        },
                        "clusterId": {
                          "type": "string",
                          "description": "Deprecated. The name of the cluster. This field has been deprecated and replaced by the name field.",
                          "location": "query",
                          "deprecated": true
                        }
                      },
                      "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}/nodePools/{nodePoolsId}"
                    },
                    "rollback": {
                      "id": "container.projects.locations.clusters.nodePools.rollback",
                      "path": "v1beta1/{+name}:rollback",
                      "response": {
                        "$ref": "Operation"
                      },
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform"
                      ],
                      "httpMethod": "POST",
                      "parameterOrder": [
                        "name"
                      ],
                      "description": "Rolls back a previously Aborted or Failed NodePool upgrade. This makes no changes if the last upgrade successfully completed.",
                      "request": {
                        "$ref": "RollbackNodePoolUpgradeRequest"
                      },
                      "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}/nodePools/{nodePoolsId}:rollback",
                      "parameters": {
                        "name": {
                          "required": true,
                          "description": "The name (project, location, cluster, node pool id) of the node poll to rollback upgrade. Specified in the format `projects/*/locations/*/clusters/*/nodePools/*`.",
                          "location": "path",
                          "type": "string",
                          "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+/nodePools/[^/]+$"
                        }
                      }
                    },
                    "completeUpgrade": {
                      "parameterOrder": [
                        "name"
                      ],
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform"
                      ],
                      "id": "container.projects.locations.clusters.nodePools.completeUpgrade",
                      "path": "v1beta1/{+name}:completeUpgrade",
                      "response": {
                        "$ref": "Empty"
                      },
                      "httpMethod": "POST",
                      "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}/nodePools/{nodePoolsId}:completeUpgrade",
                      "parameters": {
                        "name": {
                          "required": true,
                          "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+/nodePools/[^/]+$",
                          "description": "The name (project, location, cluster, node pool id) of the node pool to complete upgrade. Specified in the format `projects/*/locations/*/clusters/*/nodePools/*`.",
                          "location": "path",
                          "type": "string"
                        }
                      },
                      "request": {
                        "$ref": "CompleteNodePoolUpgradeRequest"
                      },
                      "description": "CompleteNodePoolUpgrade will signal an on-going node pool upgrade to complete."
                    },
                    "setManagement": {
                      "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}/nodePools/{nodePoolsId}:setManagement",
                      "parameters": {
                        "name": {
                          "required": true,
                          "description": "The name (project, location, cluster, node pool id) of the node pool to set management properties. Specified in the format `projects/*/locations/*/clusters/*/nodePools/*`.",
                          "location": "path",
                          "type": "string",
                          "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+/nodePools/[^/]+$"
                        }
                      },
                      "request": {
                        "$ref": "SetNodePoolManagementRequest"
                      },
                      "description": "Sets the NodeManagement options for a node pool.",
                      "parameterOrder": [
                        "name"
                      ],
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform"
                      ],
                      "id": "container.projects.locations.clusters.nodePools.setManagement",
                      "path": "v1beta1/{+name}:setManagement",
                      "response": {
                        "$ref": "Operation"
                      },
                      "httpMethod": "POST"
                    },
                    "list": {
                      "parameterOrder": [
                        "parent"
                      ],
                      "id": "container.projects.locations.clusters.nodePools.list",
                      "path": "v1beta1/{+parent}/nodePools",
                      "response": {
                        "$ref": "ListNodePoolsResponse"
                      },
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform"
                      ],
                      "httpMethod": "GET",
                      "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}/nodePools",
                      "parameters": {
                        "zone": {
                          "type": "string",
                          "description": "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.",
                          "location": "query",
                          "deprecated": true
                        },
                        "clusterId": {
                          "type": "string",
                          "description": "Deprecated. The name of the cluster. This field has been deprecated and replaced by the parent field.",
                          "location": "query",
                          "deprecated": true
                        },
                        "parent": {
                          "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+$",
                          "type": "string",
                          "description": "The parent (project, location, cluster name) where the node pools will be listed. Specified in the format `projects/*/locations/*/clusters/*`.",
                          "location": "path",
                          "required": true
                        },
                        "projectId": {
                          "description": "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.",
                          "location": "query",
                          "deprecated": true,
                          "type": "string"
                        }
                      },
                      "description": "Lists the node pools for a cluster."
                    },
                    "create": {
                      "request": {
                        "$ref": "CreateNodePoolRequest"
                      },
                      "description": "Creates a node pool for a cluster.",
                      "parameters": {
                        "parent": {
                          "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+$",
                          "type": "string",
                          "description": "The parent (project, location, cluster name) where the node pool will be created. Specified in the format `projects/*/locations/*/clusters/*`.",
                          "location": "path",
                          "required": true
                        }
                      },
                      "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}/nodePools",
                      "httpMethod": "POST",
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform"
                      ],
                      "id": "container.projects.locations.clusters.nodePools.create",
                      "path": "v1beta1/{+parent}/nodePools",
                      "response": {
                        "$ref": "Operation"
                      },
                      "parameterOrder": [
                        "parent"
                      ]
                    },
                    "update": {
                      "parameterOrder": [
                        "name"
                      ],
                      "httpMethod": "PUT",
                      "id": "container.projects.locations.clusters.nodePools.update",
                      "path": "v1beta1/{+name}",
                      "response": {
                        "$ref": "Operation"
                      },
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform"
                      ],
                      "parameters": {
                        "name": {
                          "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+/nodePools/[^/]+$",
                          "description": "The name (project, location, cluster, node pool) of the node pool to update. Specified in the format `projects/*/locations/*/clusters/*/nodePools/*`.",
                          "location": "path",
                          "type": "string",
                          "required": true
                        }
                      },
                      "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}/nodePools/{nodePoolsId}",
                      "description": "Updates the version and/or image type of a specific node pool.",
                      "request": {
                        "$ref": "UpdateNodePoolRequest"
                      }
                    },
                    "setSize": {
                      "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}/nodePools/{nodePoolsId}:setSize",
                      "parameters": {
                        "name": {
                          "required": true,
                          "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+/nodePools/[^/]+$",
                          "description": "The name (project, location, cluster, node pool id) of the node pool to set size. Specified in the format `projects/*/locations/*/clusters/*/nodePools/*`.",
                          "location": "path",
                          "type": "string"
                        }
                      },
                      "request": {
                        "$ref": "SetNodePoolSizeRequest"
                      },
                      "description": "SetNodePoolSizeRequest sets the size of a node pool. The new size will be used for all replicas, including future replicas created by modifying NodePool.locations.",
                      "parameterOrder": [
                        "name"
                      ],
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform"
                      ],
                      "id": "container.projects.locations.clusters.nodePools.setSize",
                      "path": "v1beta1/{+name}:setSize",
                      "response": {
                        "$ref": "Operation"
                      },
                      "httpMethod": "POST"
                    },
                    "setAutoscaling": {
                      "parameterOrder": [
                        "name"
                      ],
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform"
                      ],
                      "id": "container.projects.locations.clusters.nodePools.setAutoscaling",
                      "path": "v1beta1/{+name}:setAutoscaling",
                      "response": {
                        "$ref": "Operation"
                      },
                      "httpMethod": "POST",
                      "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}/nodePools/{nodePoolsId}:setAutoscaling",
                      "parameters": {
                        "name": {
                          "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+/nodePools/[^/]+$",
                          "description": "The name (project, location, cluster, node pool) of the node pool to set autoscaler settings. Specified in the format `projects/*/locations/*/clusters/*/nodePools/*`.",
                          "location": "path",
                          "type": "string",
                          "required": true
                        }
                      },
                      "request": {
                        "$ref": "SetNodePoolAutoscalingRequest"
                      },
                      "description": "Sets the autoscaling settings of a specific node pool."
                    }
                  }
                },
                "well-known": {
                  "methods": {
                    "getOpenid-configuration": {
                      "id": "container.projects.locations.clusters.well-known.getOpenid-configuration",
                      "path": "v1beta1/{+parent}/.well-known/openid-configuration",
                      "response": {
                        "$ref": "GetOpenIDConfigResponse"
                      },
                      "httpMethod": "GET",
                      "description": "Gets the OIDC discovery document for the cluster. See the [OpenID Connect Discovery 1.0 specification](https://openid.net/specs/openid-connect-discovery-1_0.html) for details.",
                      "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/clusters/{clustersId}/.well-known/openid-configuration",
                      "parameters": {
                        "parent": {
                          "type": "string",
                          "description": "The cluster (project, location, cluster name) to get the discovery document for. Specified in the format `projects/*/locations/*/clusters/*`.",
                          "location": "path",
                          "pattern": "^projects/[^/]+/locations/[^/]+/clusters/[^/]+$",
                          "required": true
                        }
                      },
                      "parameterOrder": [
                        "parent"
                      ]
                    }
                  }
                }
              }
            },
            "operations": {
              "methods": {
                "list": {
                  "id": "container.projects.locations.operations.list",
                  "path": "v1beta1/{+parent}/operations",
                  "response": {
                    "$ref": "ListOperationsResponse"
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "httpMethod": "GET",
                  "parameterOrder": [
                    "parent"
                  ],
                  "description": "Lists all operations in a project in the specified zone or all zones.",
                  "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/operations",
                  "parameters": {
                    "zone": {
                      "description": "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.",
                      "location": "query",
                      "deprecated": true,
                      "type": "string"
                    },
                    "parent": {
                      "description": "The parent (project and location) where the operations will be listed. Specified in the format `projects/*/locations/*`. Location \"-\" matches all zones and all regions.",
                      "location": "path",
                      "type": "string",
                      "pattern": "^projects/[^/]+/locations/[^/]+$",
                      "required": true
                    },
                    "projectId": {
                      "type": "string",
                      "description": "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.",
                      "location": "query",
                      "deprecated": true
                    }
                  }
                },
                "get": {
                  "parameters": {
                    "zone": {
                      "description": "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.",
                      "location": "query",
                      "deprecated": true,
                      "type": "string"
                    },
                    "operationId": {
                      "description": "Deprecated. The server-assigned `name` of the operation. This field has been deprecated and replaced by the name field.",
                      "location": "query",
                      "deprecated": true,
                      "type": "string"
                    },
                    "projectId": {
                      "description": "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.",
                      "location": "query",
                      "deprecated": true,
                      "type": "string"
                    },
                    "name": {
                      "required": true,
                      "description": "The name (project, location, operation id) of the operation to get. Specified in the format `projects/*/locations/*/operations/*`.",
                      "location": "path",
                      "type": "string",
                      "pattern": "^projects/[^/]+/locations/[^/]+/operations/[^/]+$"
                    }
                  },
                  "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/operations/{operationsId}",
                  "description": "Gets the specified operation.",
                  "parameterOrder": [
                    "name"
                  ],
                  "httpMethod": "GET",
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "id": "container.projects.locations.operations.get",
                  "path": "v1beta1/{+name}",
                  "response": {
                    "$ref": "Operation"
                  }
                },
                "cancel": {
                  "request": {
                    "$ref": "CancelOperationRequest"
                  },
                  "description": "Cancels the specified operation.",
                  "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/operations/{operationsId}:cancel",
                  "parameters": {
                    "name": {
                      "required": true,
                      "description": "The name (project, location, operation id) of the operation to cancel. Specified in the format `projects/*/locations/*/operations/*`.",
                      "location": "path",
                      "type": "string",
                      "pattern": "^projects/[^/]+/locations/[^/]+/operations/[^/]+$"
                    }
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform"
                  ],
                  "id": "container.projects.locations.operations.cancel",
                  "path": "v1beta1/{+name}:cancel",
                  "response": {
                    "$ref": "Empty"
                  },
                  "httpMethod": "POST",
                  "parameterOrder": [
                    "name"
                  ]
                }
              }
            }
          }
        }
      }
    }
  },
  "documentationLink": "https://cloud.google.com/kubernetes-engine/docs/",
  "canonicalName": "Container",
  "auth": {
    "oauth2": {
      "scopes": {
        "https://www.googleapis.com/auth/cloud-platform": {
          "description": "See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account."
        }
      }
    }
  },
  "ownerName": "Google",
  "mtlsRootUrl": "https://container.mtls.googleapis.com/",
  "protocol": "rest",
  "baseUrl": "https://container.googleapis.com/",
  "kind": "discovery#restDescription",
  "parameters": {
    "alt": {
      "description": "Data format for response.",
      "enumDescriptions": [
        "Responses with Content-Type of application/json",
        "Media download with context-dependent Content-Type",
        "Responses with Content-Type of application/x-protobuf"
      ],
      "location": "query",
      "type": "string",
      "enum": [
        "json",
        "media",
        "proto"
      ],
      "default": "json"
    },
    "upload_protocol": {
      "description": "Upload protocol for media (e.g. \"raw\", \"multipart\").",
      "location": "query",
      "type": "string"
    },
    "key": {
      "type": "string",
      "description": "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.",
      "location": "query"
    },
    "oauth_token": {
      "type": "string",
      "description": "OAuth 2.0 token for the current user.",
      "location": "query"
    },
    "quotaUser": {
      "description": "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.",
      "location": "query",
      "type": "string"
    },
    "access_token": {
      "description": "OAuth access token.",
      "location": "query",
      "type": "string"
    },
    "fields": {
      "type": "string",
      "description": "Selector specifying which fields to include in a partial response.",
      "location": "query"
    },
    "callback": {
      "type": "string",
      "description": "JSONP",
      "location": "query"
    },
    "prettyPrint": {
      "type": "boolean",
      "description": "Returns response with indentations and line breaks.",
      "location": "query",
      "default": "true"
    },
    "uploadType": {
      "type": "string",
      "description": "Legacy upload protocol for media (e.g. \"media\", \"multipart\").",
      "location": "query"
    },
    "$.xgafv": {
      "type": "string",
      "enum": [
        "1",
        "2"
      ],
      "description": "V1 error format.",
      "enumDescriptions": [
        "v1 error format",
        "v2 error format"
      ],
      "location": "query"
    }
  },
  "name": "container",
  "rootUrl": "https://container.googleapis.com/",
  "ownerDomain": "google.com",
  "revision": "20260407"
}
