XSKY remote-clusters API
RemoteClusterController API /remote-clusters
RemoteClusterController API /remote-clusters
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.curl "https://apis.io/api/v1/apis/xsky-remote-clusters-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
description: XMS is the controller of distributed storage system
version: SDS_4.2.000.0.200302
title: XMS access-paths Remote Clusters API
contact: {}
license:
name: Commercial
servers:
- url: /v1
tags:
- name: remote-clusters
description: 'RemoteClusterController API /remote-clusters
'
paths:
/remote-clusters/:
get:
tags:
- remote-clusters
description: List remote clusters
operationId: ListRemoteClusters
parameters:
- name: limit
in: query
description: paging param
required: false
x-exportParamName: Limit
schema:
type: integer
format: int64
- name: offset
in: query
description: paging param
required: false
x-exportParamName: Offset
schema:
type: integer
format: int64
- name: q
in: query
description: query param of search
required: false
x-exportParamName: Q
schema:
type: string
- name: sort
in: query
description: sort param of search
required: false
x-exportParamName: Sort
schema:
type: string
- name: fs_id
in: query
description: fsid of cluster
required: false
x-exportParamName: FsId
schema:
type: string
responses:
200:
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/RemoteClustersResp'
400:
description: BadRequest
500:
description: InternalServerError
security:
- tokenInQuery: []
- tokenInHeader: []
post:
tags:
- remote-clusters
description: Create a remote cluster
operationId: CreateRemoteCluster
responses:
200:
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/RemoteClusterResp'
400:
description: BadRequest
409:
description: Conflict
500:
description: InternalServerError
security:
- tokenInHeader: []
- tokenInQuery: []
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/RemoteClusterCreateReq'
description: remote cluster info
required: true
/remote-clusters/{cluster_id}:
get:
tags:
- remote-clusters
description: Get remote cluster
operationId: GetRemoteCluster
parameters:
- name: cluster_id
in: path
description: remote cluster id
required: true
x-exportParamName: ClusterId
schema:
type: integer
format: int64
responses:
200:
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/RemoteClusterResp'
400:
description: BadRequest
404:
description: NotFound
500:
description: InternalServerError
security:
- tokenInQuery: []
- tokenInHeader: []
delete:
tags:
- remote-clusters
description: Delete a remote cluster
operationId: DeleteRemoteCluster
parameters:
- name: cluster_id
in: path
description: remote cluster id
required: true
x-exportParamName: ClusterId
schema:
type: integer
format: int64
responses:
202:
description: Accepted
content:
application/json:
schema:
$ref: '#/components/schemas/RemoteClusterResp'
204:
description: NoContent
400:
description: BadRequest
403:
description: Forbidden
404:
description: NotFound
500:
description: InternalServerError
security:
- tokenInQuery: []
- tokenInHeader: []
patch:
tags:
- remote-clusters
description: Update a remote cluster
operationId: UpdateRemoteCluster
parameters:
- name: cluster_id
in: path
description: remote cluster id
required: true
x-exportParamName: ClusterId
schema:
type: integer
format: int64
responses:
200:
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/RemoteClusterResp'
400:
description: BadRequest
403:
description: Forbidden
404:
description: NotFound
500:
description: InternalServerError
security:
- tokenInQuery: []
- tokenInHeader: []
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/RemoteClusterUpdateReq'
description: remote cluster info
required: true
components:
schemas:
RemoteClusterResp:
type: object
properties:
remote_cluster:
$ref: '#/components/schemas/RemoteCluster'
title: RemoteClusterResp
example:
remote_cluster:
dp_site_num: 1
block_volume_num: 6
update: '2000-01-23T04:56:07.000+00:00'
version: version
os_zone_num: 5
url: url
access_token: access_token
block_snapshot_num: 0
connected: true
name: name
create: '2000-01-23T04:56:07.000+00:00'
id: 5
fs_id: fs_id
status: status
RemoteClusterCreateReq:
type: object
properties:
remote_cluster:
$ref: '#/components/schemas/RemoteClusterCreateReq_RemoteCluster'
title: RemoteClusterCreateReq
example:
remote_cluster:
access_token: access_token
url: url
RemoteClustersResp:
type: object
properties:
remote_clusters:
type: array
items:
$ref: '#/components/schemas/RemoteCluster'
title: RemoteClustersResp
example:
remote_clusters:
- dp_site_num: 1
block_volume_num: 6
update: '2000-01-23T04:56:07.000+00:00'
version: version
os_zone_num: 5
url: url
access_token: access_token
block_snapshot_num: 0
connected: true
name: name
create: '2000-01-23T04:56:07.000+00:00'
id: 5
fs_id: fs_id
status: status
- dp_site_num: 1
block_volume_num: 6
update: '2000-01-23T04:56:07.000+00:00'
version: version
os_zone_num: 5
url: url
access_token: access_token
block_snapshot_num: 0
connected: true
name: name
create: '2000-01-23T04:56:07.000+00:00'
id: 5
fs_id: fs_id
status: status
RemoteClusterUpdateReq:
type: object
properties:
remote_cluster:
$ref: '#/components/schemas/RemoteClusterUpdateReq_RemoteCluster'
title: RemoteClusterUpdateReq
example:
remote_cluster:
access_token: access_token
url: url
RemoteClusterUpdateReq_RemoteCluster:
type: object
required:
- access_token
- url
properties:
access_token:
type: string
description: access token of remote cluster
url:
type: string
description: URL of remote cluster
title: RemoteClusterUpdateReq_RemoteCluster
example:
access_token: access_token
url: url
RemoteClusterCreateReq_RemoteCluster:
type: object
required:
- access_token
- url
properties:
access_token:
type: string
description: access token of remote cluster
url:
type: string
description: URL of remote cluster
title: RemoteClusterCreateReq_RemoteCluster
example:
access_token: access_token
url: url
RemoteCluster:
type: object
properties:
access_token:
type: string
block_snapshot_num:
type: integer
format: int64
block_volume_num:
type: integer
format: int64
connected:
type: boolean
create:
type: string
format: date-time
dp_site_num:
type: integer
format: int64
fs_id:
type: string
id:
type: integer
format: int64
name:
type: string
os_zone_num:
type: integer
format: int64
status:
type: string
update:
type: string
format: date-time
url:
type: string
version:
type: string
title: RemoteCluster
description: RemoteCluster remote clusters communicated via public API
example:
dp_site_num: 1
block_volume_num: 6
update: '2000-01-23T04:56:07.000+00:00'
version: version
os_zone_num: 5
url: url
access_token: access_token
block_snapshot_num: 0
connected: true
name: name
create: '2000-01-23T04:56:07.000+00:00'
id: 5
fs_id: fs_id
status: status
securitySchemes:
tokenInHeader:
description: auth by token
type: apiKey
name: Xms-Auth-Token
in: header
tokenInQuery:
description: auth by token
type: apiKey
name: token
in: query