Skip to main content
GET
/
kubeclusters
/
{cluster}
/
resources
List Resources
curl --request GET \
  --url https://api.example.com/kubeclusters/{cluster}/resources
{
  "results": [
    {
      "cluster": "<string>",
      "external_id": "<string>",
      "namespace": "<string>",
      "resource_kind": "Deployment",
      "resource_name": "<string>",
      "scanned_on": 123,
      "$schema": "<string>",
      "deployment_system": "<string>",
      "package": "<string>",
      "package_component": "<string>",
      "package_system": "<string>"
    }
  ],
  "$schema": "<string>",
  "pagination": {
    "continue": "<string>"
  }
}

Query Parameters

continue
string

Continuation token value (used when retrieving the next page of results).

n
integer<int64>

Number of records to show per page of results.

Required range: 0 <= x <= 100
filter
string

Record filter.

Response

OK

results
object[] | null
required
$schema
string<uri>

A URL to the JSON Schema for this object.

Example:

"https://example.com/schemas/ListKubeClusterResourcesOutputBody.json"

pagination
object