XSKY fs-arbitration-pools API
FSArbitrationPoolController File Storage Arbitration Pool Management
FSArbitrationPoolController File Storage Arbitration Pool Management
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-fs-arbitration-pools-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 Fs Arbitration Pools API
contact: {}
license:
name: Commercial
servers:
- url: /v1
tags:
- name: fs-arbitration-pools
description: 'FSArbitrationPoolController File Storage Arbitration Pool Management
'
paths:
/fs-arbitration-pools/:
get:
tags:
- fs-arbitration-pools
description: List file storage arbitration pools
operationId: ListFSArbitrationPools
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
responses:
200:
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/FSArbitrationPoolsResp'
500:
description: InternalServerError
security:
- tokenInQuery: []
- tokenInHeader: []
post:
tags:
- fs-arbitration-pools
description: create file storage arbitration pool
operationId: CreateFSArbitrationPool
responses:
201:
description: Created
content:
application/json:
schema:
$ref: '#/components/schemas/FSArbitrationPoolResp'
400:
description: BadRequest
409:
description: Conflict
500:
description: InternalServerError
security:
- tokenInQuery: []
- tokenInHeader: []
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/FSArbitrationPoolCreateReq'
description: file system arbitration pool info
required: true
/fs-arbitration-pools/{fs_arbitration_pool_id}:
get:
tags:
- fs-arbitration-pools
description: Get file storage arbitration pool
operationId: GetFSArbitrationPool
parameters:
- name: fs_arbitration_pool_id
in: path
description: file storage arbitration pool id
required: true
x-exportParamName: FsArbitrationPoolId
schema:
type: integer
format: int64
responses:
200:
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/FSArbitrationPoolResp'
404:
description: NotFound
500:
description: InternalServerError
security:
- tokenInQuery: []
- tokenInHeader: []
delete:
tags:
- fs-arbitration-pools
description: Delete file storage arbitration pool
operationId: DeleteFSArbitrationPool
parameters:
- name: fs_arbitration_pool_id
in: path
description: file storage arbitration pool id
required: true
x-exportParamName: FsArbitrationPoolId
schema:
type: integer
format: int64
responses:
204:
description: Not Content
409:
description: Conflict
500:
description: InternalServerError
security:
- tokenInQuery: []
- tokenInHeader: []
patch:
tags:
- fs-arbitration-pools
description: Update file system arbitration pool
operationId: UpdateFSArbitrationPool
parameters:
- name: fs_arbitration_pool_id
in: path
description: file system arbitration pool id
required: true
x-exportParamName: FsArbitrationPoolId
schema:
type: integer
format: int64
responses:
202:
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/FSArbitrationPoolResp'
400:
description: BadRequest
409:
description: Conflict
500:
description: InternalServerError
security:
- tokenInQuery: []
- tokenInHeader: []
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/FSArbitrationPoolUpdateReq'
description: file system arbitration pool info
required: true
components:
schemas:
FSArbitrationPoolResp:
type: object
required:
- fs_arbitration_pool
properties:
fs_arbitration_pool:
description: file storage arbitration pool
$ref: '#/components/schemas/FSArbitrationPool'
title: FSArbitrationPoolResp
example:
fs_arbitration_pool:
pool:
name: name
id: 5
create: '2000-01-23T04:56:07.000+00:00'
update: '2000-01-23T04:56:07.000+00:00'
id: 0
FSArbitrationPoolUpdateReq:
type: object
required:
- fs_arbitration_pool
properties:
fs_arbitration_pool:
$ref: '#/components/schemas/FSArbitrationPoolUpdateReq_Info'
title: FSArbitrationPoolUpdateReq
FSArbitrationPoolCreateReq:
type: object
required:
- fs_arbitration_pool
properties:
fs_arbitration_pool:
$ref: '#/components/schemas/FSArbitrationPoolCreateReq_Info'
title: FSArbitrationPoolCreateReq
FSArbitrationPoolUpdateReq_Info:
type: object
required:
- pool_id
properties:
pool_id:
type: integer
format: int64
description: pool used for file system arbitration
title: FSArbitrationPoolUpdateReq_Info
Pool_Nestview:
type: object
properties:
id:
type: integer
format: int64
name:
type: string
title: Pool_Nestview
example:
name: name
id: 5
FSArbitrationPoolsResp:
type: object
required:
- fs_arbitration_pools
properties:
fs_arbitration_pools:
type: array
description: file storage arbitration pools
items:
$ref: '#/components/schemas/FSArbitrationPool'
title: FSArbitrationPoolsResp
example:
fs_arbitration_pools:
- pool:
name: name
id: 5
create: '2000-01-23T04:56:07.000+00:00'
update: '2000-01-23T04:56:07.000+00:00'
id: 0
- pool:
name: name
id: 5
create: '2000-01-23T04:56:07.000+00:00'
update: '2000-01-23T04:56:07.000+00:00'
id: 0
FSArbitrationPool:
type: object
properties:
create:
type: string
format: date-time
id:
type: integer
format: int64
pool:
$ref: '#/components/schemas/Pool_Nestview'
update:
type: string
format: date-time
title: FSArbitrationPool
description: FSArbitrationPool defines file system arbitration pool
example:
pool:
name: name
id: 5
create: '2000-01-23T04:56:07.000+00:00'
update: '2000-01-23T04:56:07.000+00:00'
id: 0
FSArbitrationPoolCreateReq_Info:
type: object
required:
- pool_id
properties:
pool_id:
type: integer
format: int64
description: pool used for file system arbitration
title: FSArbitrationPoolCreateReq_Info
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