DELETE
/
privateclusters
/
{privateClusterName}
curl --request DELETE \
  --url https://api.blaxel.ai/v0/privateclusters/{privateClusterName} \
  --header 'Authorization: Bearer <token>'
{
  "createdAt": "<string>",
  "updatedAt": "<string>",
  "createdBy": "<string>",
  "updatedBy": "<string>",
  "continent": "<string>",
  "country": "<string>",
  "displayName": "<string>",
  "healthy": true,
  "lastHealthCheckTime": "<string>",
  "latitude": "<string>",
  "longitude": "<string>",
  "name": "<string>",
  "ownedBy": "<string>",
  "workspace": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

privateClusterName
string
required

Name of the private cluster

Response

200
application/json
successful operation

A private cluster where models can be located on.

createdAt
string

The date and time when the resource was created

updatedAt
string

The date and time when the resource was updated

createdBy
string

The user or service account who created the resource

updatedBy
string

The user or service account who updated the resource

continent
string

The private cluster's continent, used to determine the closest private cluster to serve inference requests based on the user's location

country
string

The country where the private cluster is located, used to determine the closest private cluster to serve inference requests based on the user's location

displayName
string

The private cluster's display Name

healthy
boolean

Whether the private cluster is healthy or not, used to determine if the private cluster is ready to run inference

lastHealthCheckTime
string

The private cluster's unique name

latitude
string

The private cluster's latitude, used to determine the closest private cluster to serve inference requests based on the user's location

longitude
string

The private cluster's longitude, used to determine the closest private cluster to serve inference requests based on the user's location

name
string

The name of the private cluster, it must be unique

ownedBy
string

The service account (operator) that owns the cluster

workspace
string

The workspace the private cluster belongs to