Skip to main content
GET
/
projects
/
{id}
/
computes
/
{computeId}
Get Compute Resource Details
curl --request GET \
  --url https://relytone.data.cloud/api/v1/projects/{id}/computes/{computeId} \
  --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

computeId
string
required

Compute resource identifier

Response

Successfully retrieved compute resource details

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