Uses RFC 3339, where generated output will always be Z-normalized and use 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: "2014-10-02T15:01:23Z", "2014-10-02T15:01:23.045123456Z" or "2014-10-02T15:01:23+05:30".
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-09-05 UTC."],[],[],null,["- [HTTP request](#body.HTTP_TEMPLATE)\n- [Path parameters](#body.PATH_PARAMETERS)\n- [Request body](#body.request_body)\n- [Response body](#body.response_body)\n - [JSON representation](#body.CheckAutopilotCompatibilityResponse.SCHEMA_REPRESENTATION)\n- [Authorization scopes](#body.aspect)\n- [AutopilotCompatibilityIssue](#AutopilotCompatibilityIssue)\n - [JSON representation](#AutopilotCompatibilityIssue.SCHEMA_REPRESENTATION)\n- [IssueType](#IssueType)\n- [Try it!](#try-it)\n\nChecks the cluster compatibility with Autopilot mode, and returns a list of compatibility issues.\n\nHTTP request\n\n`GET https://container.googleapis.com/v1beta1/{name=projects/*/locations/*/clusters/*}:checkAutopilotCompatibility`\n\nThe URL uses [gRPC Transcoding](https://google.aip.dev/127) syntax.\n\nPath parameters\n\n| Parameters ||\n|--------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `name` | `string` The name (project, location, cluster) of the cluster to retrieve. Specified in the format `projects/*/locations/*/clusters/*`. Authorization requires the following [IAM](https://cloud.google.com/iam/docs/) permission on the specified resource `name`: - `container.clusters.get` |\n\nRequest body\n\nThe request body must be empty.\n\nResponse body CheckAutopilotCompatibilityResponse has a list of compatibility issues.\n\nIf successful, the response body contains data with the following structure:\n\n| JSON representation |\n|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"issues\": [ { object (/kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters/checkAutopilotCompatibility#AutopilotCompatibilityIssue) } ], \"summary\": string } ``` |\n\n| Fields ||\n|------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `issues[]` | `object (`[AutopilotCompatibilityIssue](/kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters/checkAutopilotCompatibility#AutopilotCompatibilityIssue)`)` The list of issues for the given operation. |\n| `summary` | `string` The summary of the autopilot compatibility response. |\n\nAuthorization scopes\n\nRequires the following OAuth scope:\n\n- `https://www.googleapis.com/auth/cloud-platform`\n\nFor more information, see the [Authentication Overview](/docs/authentication#authorization-gcp).\n\nAutopilotCompatibilityIssue AutopilotCompatibilityIssue contains information about a specific compatibility issue with Autopilot mode.\n\n| JSON representation |\n|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"lastObservation\": string, \"constraintType\": string, \"incompatibilityType\": enum (/kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters/checkAutopilotCompatibility#IssueType), \"subjects\": [ string ], \"documentationUrl\": string, \"description\": string } ``` |\n\n| Fields ||\n|-----------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `lastObservation` | `string (`[Timestamp](https://protobuf.dev/reference/protobuf/google.protobuf/#timestamp)` format)` The last time when this issue was observed. Uses RFC 3339, where generated output will always be Z-normalized and use 0, 3, 6 or 9 fractional digits. Offsets other than \"Z\" are also accepted. Examples: `\"2014-10-02T15:01:23Z\"`, `\"2014-10-02T15:01:23.045123456Z\"` or `\"2014-10-02T15:01:23+05:30\"`. |\n| `constraintType` | `string` The constraint type of the issue. |\n| `incompatibilityType` | `enum (`[IssueType](/kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters/checkAutopilotCompatibility#IssueType)`)` The incompatibility type of this issue. |\n| `subjects[]` | `string` The name of the resources which are subject to this issue. |\n| `documentationUrl` | `string` A URL to a public documentation, which addresses resolving this issue. |\n| `description` | `string` The description of the issue. |\n\nIssueType The type of the reported issue.\n\n| Enums ||\n|-------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `UNSPECIFIED` | Default value, should not be used. |\n| `INCOMPATIBILITY` | Indicates that the issue is a known incompatibility between the cluster and Autopilot mode. |\n| `ADDITIONAL_CONFIG_REQUIRED` | Indicates the issue is an incompatibility if customers take no further action to resolve. |\n| `PASSED_WITH_OPTIONAL_CONFIG` | Indicates the issue is not an incompatibility, but depending on the workloads business logic, there is a potential that they won't work on Autopilot. |"]]