Cluster objects
Authorizations
Path parameters
coreInstanceIDstring · uuidRequired
Query parameters
kindstring · enumOptionalDefault:
Kind of the kubernetes object
namespace
Possible values: namestringOptionalExample:
Kubernetes object name to filter by.
kube-system
lastintegerOptional
beforestringOptional
Responses
200
OK
application/json
get
GET /v1/core_instances/{coreInstanceID}/cluster_objects HTTP/1.1
Host: cloud-api.calyptia.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200
OK
[
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"kind": "namespace",
"createdAt": "2025-06-28T01:50:57.629Z",
"updatedAt": "2025-06-28T01:50:57.629Z"
}
]
Authorizations
Path parameters
coreInstanceIDstring · uuidRequired
Body
Request body to create a new cluster object for a core instance.
namestring · kubernetes valid hostname or namespace name.
https://kubernetes.io/docs/reference/labels-annotations-taints/
Required
kindstring · enumRequiredDefault:
Kind of the kubernetes object
namespace
Possible values: Responses
201
Created
application/json
post
POST /v1/core_instances/{coreInstanceID}/cluster_objects HTTP/1.1
Host: cloud-api.calyptia.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 34
{
"name": "text",
"kind": "namespace"
}
201
Created
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2025-06-28T01:50:57.629Z"
}