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

SearchAssets

Search for federated assets by name or label across all clusters in a group.

Execution Availability

Try It Out

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

Path Parameters

Query Parameters

Request Inputs

Path Parameters

  • groupIdStringRequired

    ID of the cluster group to search within

Query Parameters

  • qString

    Full-text search query string Full-text search query string

  • assetTypeString

    Filter search results by asset type Filter search results by asset type

Responses

200 OK

On success, this API returns the following response structure.

  • assetsList

    List of assets matching the search query

    Example: (nested array)

    • clusterIdString

      UUID of the cluster this asset belongs to

      Example: cluster-abc-001

    • clusterNameString

      Human-readable name of the cluster

      Example: prod-cluster-east

    • assetTypeString

      Type of federated asset (e.g. vm, pod, volume)

      Example: pod

    • nameString

      Name of the asset within its cluster

      Example: nginx-deployment-abc

    • namespaceString

      Kubernetes namespace or equivalent scope

      Example: default

    • statusString

      Current status of the asset (Running, Stopped, etc.)

      Example: Running

    • labelsLinkedHashMap

      Key-value labels attached to this resource

      Example: (nested object)

    • cpuRequestString

      CPU resource request (e.g. "500m")

      Example: 500m

    • memRequestString

      Memory resource request (e.g. "256Mi")

      Example: 256Mi

  • timeoutClustersList

    List of cluster IDs that timed out during search

    Example: item1,item2

  • totalCountInteger

    Total number of matching assets found

    Example: 42

Endpoint

GET/api/v1/federation/cluster-groups/{groupId}/search

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

Operation ID

SearchAssets

Permalink

Request Example

curl -X GET '{host}/api/v1/federation/cluster-groups/{groupId}/search' -H 'Authorization: Bearer {token}'

Response Example

200
{
  "assets": [
    {}
  ],
  "timeoutClusters": [],
  "totalCount": 42
}

Change History

This API has no change history records yet.

View all change history