Kubernetes Versions

Lists available upgrades and downgrades for a given Kubernetes version.

List supported Kubernetes versions.

HTTP Responses codes for "List supported Kubernetes versions."
Status CodeDescription
200Request was successfully processed. The response body contains the requested data.
400Invalid request parameters. Please review the documentation for valid parameter values.
403You do not have the necessary permissions to access this resource.
404The requested resource could not be found. Please check the resource URL or identifier.
500An internal error occurred on the server.
GET /api/v1/cluster-versions

Response

    No Content

                
{
  "items": {
    "$ref": "#/components/schemas/AMEKubernetesVersionResponse"
  },
  "type": "array"
}
                    

List available Kubernetes downgrade versions for a cluster.

Path Parameters:

  • version
HTTP Responses codes for "List available Kubernetes downgrade versions for a cluster."
Status CodeDescription
200Request was successfully processed. The response body contains the requested data.
400Invalid request parameters. Please review the documentation for valid parameter values.
403You do not have the necessary permissions to access this resource.
404The requested resource could not be found. Please check the resource URL or identifier.
500An internal error occurred on the server.
GET /api/v1/cluster-versions/{version}/available-downgrades

Response

    No Content

                
{
  "items": {
    "$ref": "#/components/schemas/AMEKubernetesVersionResponse"
  },
  "type": "array"
}
                    

List available Kubernetes upgrade versions for a cluster.

Path Parameters:

  • version
HTTP Responses codes for "List available Kubernetes upgrade versions for a cluster."
Status CodeDescription
200Request was successfully processed. The response body contains the requested data.
400Invalid request parameters. Please review the documentation for valid parameter values.
403You do not have the necessary permissions to access this resource.
404The requested resource could not be found. Please check the resource URL or identifier.
500An internal error occurred on the server.
GET /api/v1/cluster-versions/{version}/available-upgrades

Response

    No Content

                
{
  "items": {
    "$ref": "#/components/schemas/AMEKubernetesVersionResponse"
  },
  "type": "array"
}