Skip to main content
Platform Operations/Platform Federation
PUTPlatformSince 1.0SynchronousAuth Required

UpdateClusterGroup

Update the cluster membership list for an existing cluster group.

Execution Availability

Try It Out

Submit a mock request using the current auth context and example-driven inputs.

Path Parameters

Request Inputs

Path Parameters

  • groupIdStringRequired

    ID of the cluster group to update

Body Fields

  • clusterIdsListRequired

    Updated list of cluster UUIDs for this group

    Example: item1,item2

Responses

200 OK

On success, this API returns the following response structure.

  • idString

    Unique identifier of the cluster group

    Example: cg-001-xyz

  • nameString

    Human-readable name of the cluster group

    Example: production-clusters

  • descriptionString

    Description of the cluster group purpose

    Example: All production environment clusters

  • clusterIdsList

    List of cluster UUIDs that belong to this group

    Example: item1,item2

  • createdAtString

    Created at

    Example: 2026-01-15T08:00:00Z

Endpoint

PUT/api/v1/federation/cluster-groups/{groupId}/clusters

/api/v1/federation/cluster-groups/{groupId}/clusters

Operation ID

UpdateClusterGroup

Permalink

Request Example

curl -X PUT '{host}/api/v1/federation/cluster-groups/{groupId}/clusters' -H 'Authorization: Bearer {token}' -H 'Content-Type: application/json' -d '{"key": "value"}'

Response Example

200
{
  "id": "cg-001-xyz",
  "name": "production-clusters",
  "description": "All production environment clusters",
  "clusterIds": [],
  "createdAt": "example"
}

Change History

This API has no change history records yet.

View all change history