List all cluster object regexes in descending order with backward pagination.
Last cluster object regexes.
Cluster object regexes before the given cursor.
GET /v1/pipelines/{pipelineID}/cluster_object_regexes HTTP/1.1 Host: cloud-api.calyptia.com Authorization: Bearer YOUR_SECRET_TOKEN Accept: */*
OK
{ "items": [ { "id": "123e4567-e89b-12d3-a456-426614174000", "pipelineID": "123e4567-e89b-12d3-a456-426614174000", "regex": "text", "description": "text", "createdAt": "2025-04-24T06:54:23.281Z", "updatedAt": "2025-04-24T06:54:23.281Z", "clusterObjects": [ { "id": "123e4567-e89b-12d3-a456-426614174000", "name": "text", "kind": "namespace", "createdAt": "2025-04-24T06:54:23.281Z", "updatedAt": "2025-04-24T06:54:23.281Z" } ] } ], "endCursor": "text" }
Create a new cluster object regex.
POST /v1/pipelines/{pipelineID}/cluster_object_regexes HTTP/1.1 Host: cloud-api.calyptia.com Authorization: Bearer YOUR_SECRET_TOKEN Content-Type: application/json Accept: */* Content-Length: 37 { "regex": "text", "description": "text" }
Created
{ "id": "123e4567-e89b-12d3-a456-426614174000", "createdAt": "2025-04-24T06:54:23.281Z" }