ClusterConfigsListResult

ClusterConfigsListResult
Cluster Configs List Result

Paginated list result containing cluster configurations with offset-based pagination metadata.

AllOf
This class requires all of the following:
JSON Example
{
    "offset": 0,
    "number_of_results": 0,
    "total_result_count": 0,
    "total_pages": 0,
    "sort_ascending": false,
    "sort_by": "string",
    "results": [
        {
            "cluster_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
            "cluster_name": "Production-Cluster-01",
            "cluster_type": "VLCM",
            "dfw_status": "ON",
            "hosts_count": 25,
            "idps_status": "ON",
            "turbo_eligible": "ELIGIBLE",
            "classic_eligible": "INELIGIBLE",
            "health": {
                "overall_health": "HIGH",
                "health_breakdown": [
                    {
                        "health_level": "CRITICAL",
                        "host_count": 0
                    },
                    {
                        "health_level": "HIGH",
                        "host_count": 2
                    },
                    {
                        "health_level": "NORMAL",
                        "host_count": 22
                    },
                    {
                        "health_level": "UNKNOWN",
                        "host_count": 1
                    },
                    {
                        "health_level": "INCORRECT_CONFIGURATION",
                        "host_count": 0
                    },
                    {
                        "health_level": "REQUIREMENT_NOT_MET",
                        "host_count": 0
                    }
                ]
            },
            "turbo_status": "ON",
            "remediation_message": [
                {
                    "key": "MEMORY_THRESHOLD_EXCEEDED",
                    "value": "Host memory usage above 90% on 2 hosts"
                }
            ]
        }
    ]
}