Skip to main content
GET
/
projects
/
{id}
/
computes
Get Project Compute Resources List
curl --request GET \
  --url https://relytone.data.cloud/api/v1/projects/{id}/computes \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "name": "<string>",
    "status": "READY",
    "computeType": "primary",
    "host": "<string>",
    "poolerHost": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z",
    "createUser": {
      "id": "<string>",
      "name": "<string>",
      "email": "<string>"
    }
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Project identifier

Query Parameters

compute
string

Compute resource identifier (optional, for getting specific compute resource)

Response

Successfully retrieved compute resources list

id
string

Compute resource identifier

name
string

Compute resource name

status
enum<string>

Compute resource status

Available options:
READY,
FROZEN,
CREATING,
PROVISIONING,
ERROR
computeType
enum<string>

Compute resource type

Available options:
primary,
replica
host
string

Host address

poolerHost
string

Connection pool host address

createdAt
string<date-time>

Creation time

updatedAt
string<date-time>

Update time

createUser
object