Skip to main content

ClusterEvents

statusboolean

Whether the request succeeded.

Example: true
messagestring

Human-readable description of the result.

Example: Successfully retrived events for Cluster example-c1
cluster_events object[]

An array of objects each containing details about an event for the specified cluster.

  • Array [
  • idinteger

    Unique numeric identifier.

    Example: 6190
    cluster_idinteger

    Identifier of the Kubernetes cluster.

    Example: 5341
    user_idinteger

    Identifier of the user.

    Example: 1402
    org_idinteger

    Identifier of the organization that owns the resource.

    Example: 9876
    timestring<date-time>

    The timestamp when the event occurred.

    Example: 2026-05-06T14:32:11Z
    typestring

    Resource type.

    Example: normal
    reasonstring

    Human-readable reason the operation was rejected.

    Example: ClusterCreationRequest
    objectstring

    The name of the cluster related to the event.

    Example: example-c1
    messagestring

    Human-readable description of the result.

    Example: Cluster example-c1 Creation Request Sent.
  • ]
  • ClusterEvents
    {
    "status": true,
    "message": "Successfully retrived events for Cluster example-c1",
    "cluster_events": [
    {
    "id": 6190,
    "cluster_id": 5341,
    "user_id": 1402,
    "org_id": 9876,
    "time": "2026-05-06T14:32:11Z",
    "type": "normal",
    "reason": "ClusterCreationRequest",
    "object": "example-c1",
    "message": "Cluster example-c1 Creation Request Sent."
    }
    ]
    }