XSKY os-gateways API

ObjectStorageGatewayController provides API for s3 gateway

Operations 6

GET /os-gateways/ #
POST /os-gateways/ #
GET /os-gateways/{gateway_id} #
PUT /os-gateways/{gateway_id} #
DELETE /os-gateways/{gateway_id} #
GET /os-gateways/{gateway_id}/samples #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • 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.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/xsky-os-gateways-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

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 Specification

xsky-os-gateways-api-openapi.yml Raw ↑
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 Os Gateways API
  contact: {}
  license:
    name: Commercial
servers:
- url: /v1
tags:
- name: os-gateways
  description: 'ObjectStorageGatewayController provides API for s3 gateway

    '
paths:
  /os-gateways/:
    get:
      tags:
      - os-gateways
      description: List s3 gateways
      operationId: ListGateways
      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
      responses:
        200:
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ObjectStorageGatewaysResp'
        500:
          description: InternalServerError
      security:
      - tokenInQuery: []
      - tokenInHeader: []
    post:
      tags:
      - os-gateways
      description: Create s3 gateway
      operationId: CreateGateway
      responses:
        202:
          description: Accepted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ObjectStorageGatewayResp'
        400:
          description: BadRequest
        409:
          description: Conflict
        500:
          description: InternalServerError
      security:
      - tokenInQuery: []
      - tokenInHeader: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ObjectStorageGatewayCreateReq'
        description: gateway info
        required: true
  /os-gateways/{gateway_id}:
    get:
      tags:
      - os-gateways
      description: Get s3 gateway
      operationId: GetGateway
      parameters:
      - name: gateway_id
        in: path
        description: gateway id
        required: true
        x-exportParamName: GatewayId
        schema:
          type: integer
          format: int64
      responses:
        200:
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ObjectStorageGatewayResp'
        404:
          description: NotFound
        500:
          description: InternalServerError
      security:
      - tokenInQuery: []
      - tokenInHeader: []
    put:
      tags:
      - os-gateways
      description: Update s3 gateway
      operationId: UpdateGateway
      parameters:
      - name: gateway_id
        in: path
        description: gateway id
        required: true
        x-exportParamName: GatewayId
        schema:
          type: integer
          format: int64
      responses:
        200:
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ObjectStorageGatewayResp'
        202:
          description: Accepted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ObjectStorageGatewayResp'
        400:
          description: BadRequest
        404:
          description: NotFound
        409:
          description: Conflict
        500:
          description: InternalServerError
      security:
      - tokenInQuery: []
      - tokenInHeader: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ObjectStorageGatewayUpdateReq'
        description: gateway info
        required: true
    delete:
      tags:
      - os-gateways
      description: Delete s3 gateway
      operationId: DeleteGateway
      parameters:
      - name: gateway_id
        in: path
        description: gateway id
        required: true
        x-exportParamName: GatewayId
        schema:
          type: integer
          format: int64
      responses:
        202:
          description: Accepted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ObjectStorageGatewayResp'
        400:
          description: BadRequest
        409:
          description: Conflict
        500:
          description: InternalServerError
      security:
      - tokenInQuery: []
      - tokenInHeader: []
  /os-gateways/{gateway_id}/samples:
    get:
      tags:
      - os-gateways
      description: Get s3 gateway's samples
      operationId: GetGatewaySamples
      parameters:
      - name: gateway_id
        in: path
        description: gateway id
        required: true
        x-exportParamName: GatewayId
        schema:
          type: integer
          format: int64
      - name: duration_begin
        in: query
        description: duration begin timestamp
        required: false
        x-exportParamName: DurationBegin
        schema:
          type: string
      - name: duration_end
        in: query
        description: duration end timestamp
        required: false
        x-exportParamName: DurationEnd
        schema:
          type: string
      - name: period
        in: query
        description: samples period
        required: false
        x-exportParamName: Period
        schema:
          type: string
      responses:
        200:
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ObjectStorageGatewaySamplesResp'
        404:
          description: NotFound
        500:
          description: InternalServerError
      security:
      - tokenInQuery: []
      - tokenInHeader: []
components:
  schemas:
    ObjectStorageGatewayStat:
      type: object
      properties:
        cpu_util:
          type: number
          format: double
        create:
          type: string
          format: date-time
        down_bandwidth_kbyte:
          type: number
          format: double
        down_ops:
          type: number
          format: double
        mem_usage_percent:
          type: number
          format: double
        merge_speed:
          type: integer
          format: int64
        requests:
          type: integer
          format: int64
        sync_down_bandwidth_kbyte:
          type: number
          format: double
        sync_down_ops:
          type: number
          format: double
        up_bandwidth_kbyte:
          type: number
          format: double
        up_ops:
          type: number
          format: double
      title: ObjectStorageGatewayStat
      description: ObjectStorageGatewayStat is the model of object_storage_gateway_stat
      example:
        up_bandwidth_kbyte: 3.616076749251911
        up_ops: 2.027123023002322
        down_bandwidth_kbyte: 6.027456183070403
        down_ops: 1.4658129805029452
        sync_down_ops: 9.301444243932576
        merge_speed: 5
        mem_usage_percent: 5.962133916683182
        create: '2000-01-23T04:56:07.000+00:00'
        requests: 2
        sync_down_bandwidth_kbyte: 7.061401241503109
        cpu_util: 0.8008281904610115
    ObjectStorageGatewayCreateReq_Gateway:
      type: object
      required:
      - host_id
      - name
      - port
      properties:
        description:
          type: string
        gateway_ip:
          type: string
        host_id:
          type: integer
          format: int64
        name:
          type: string
        port:
          type: integer
          format: int64
        role:
          type: string
      title: ObjectStorageGatewayCreateReq_Gateway
      example:
        role: role
        port: 6
        name: name
        description: description
        gateway_ip: gateway_ip
        host_id: 0
    ObjectStorageGatewayUpdateReq:
      type: object
      properties:
        os_gateway:
          $ref: '#/components/schemas/ObjectStorageGatewayUpdateReq_Gateway'
      title: ObjectStorageGatewayUpdateReq
      example:
        os_gateway:
          action: action
    ObjectStorageGatewaysResp:
      type: object
      required:
      - os_gateways
      properties:
        os_gateways:
          type: array
          description: object storage gateways
          items:
            $ref: '#/components/schemas/ObjectStorageGatewayRecord'
      title: ObjectStorageGatewaysResp
      example:
        os_gateways:
        - ''
        - ''
    ObjectStorageZone_Nestview:
      type: object
      properties:
        id:
          type: integer
          format: int64
        uuid:
          type: string
      title: ObjectStorageZone_Nestview
      example:
        id: 7
        uuid: uuid
    ObjectStorageGateway:
      type: object
      properties:
        create:
          type: string
          format: date-time
        description:
          type: string
        gateway_ip:
          type: string
        gateway_name:
          type: string
        host:
          $ref: '#/components/schemas/Host_Nestview'
        id:
          type: integer
          format: int64
        name:
          type: string
        os_zone:
          $ref: '#/components/schemas/ObjectStorageZone_Nestview'
        port:
          type: integer
          format: int64
        role:
          type: string
        status:
          type: string
        update:
          type: string
          format: date-time
      title: ObjectStorageGateway
      description: ObjectStorageGateway is the model of object_storage_gateway @grpc-models-proto
    ObjectStorageGatewayRecord:
      title: ObjectStorageGatewayRecord
      allOf:
      - $ref: '#/components/schemas/ObjectStorageGateway'
      - properties:
          samples:
            type: array
            items:
              $ref: '#/components/schemas/ObjectStorageGatewayStat'
      description: 'ObjectStorageGatewayRecord combine ObjectStorageGateway and

        ObjectStorageGatewayStat as API response'
    ObjectStorageGatewaySamplesResp:
      type: object
      required:
      - os_gateway_samples
      properties:
        os_gateway_samples:
          type: array
          description: object storage gateway samples
          items:
            $ref: '#/components/schemas/ObjectStorageGatewayStat'
      title: ObjectStorageGatewaySamplesResp
      example:
        os_gateway_samples:
        - up_bandwidth_kbyte: 3.616076749251911
          up_ops: 2.027123023002322
          down_bandwidth_kbyte: 6.027456183070403
          down_ops: 1.4658129805029452
          sync_down_ops: 9.301444243932576
          merge_speed: 5
          mem_usage_percent: 5.962133916683182
          create: '2000-01-23T04:56:07.000+00:00'
          requests: 2
          sync_down_bandwidth_kbyte: 7.061401241503109
          cpu_util: 0.8008281904610115
        - up_bandwidth_kbyte: 3.616076749251911
          up_ops: 2.027123023002322
          down_bandwidth_kbyte: 6.027456183070403
          down_ops: 1.4658129805029452
          sync_down_ops: 9.301444243932576
          merge_speed: 5
          mem_usage_percent: 5.962133916683182
          create: '2000-01-23T04:56:07.000+00:00'
          requests: 2
          sync_down_bandwidth_kbyte: 7.061401241503109
          cpu_util: 0.8008281904610115
    Host_Nestview:
      type: object
      required:
      - admin_ip
      properties:
        admin_ip:
          type: string
        id:
          type: integer
          format: int64
        name:
          type: string
      title: Host_Nestview
      example:
        name: name
        admin_ip: admin_ip
        id: 0
    ObjectStorageGatewayCreateReq:
      type: object
      properties:
        os_gateway:
          $ref: '#/components/schemas/ObjectStorageGatewayCreateReq_Gateway'
      title: ObjectStorageGatewayCreateReq
      example:
        os_gateway:
          role: role
          port: 6
          name: name
          description: description
          gateway_ip: gateway_ip
          host_id: 0
    ObjectStorageGatewayUpdateReq_Gateway:
      type: object
      properties:
        action:
          type: string
      title: ObjectStorageGatewayUpdateReq_Gateway
      example:
        action: action
    ObjectStorageGatewayResp:
      type: object
      required:
      - os_gateway
      properties:
        os_gateway:
          description: object storage gateway
          $ref: '#/components/schemas/ObjectStorageGatewayRecord'
      title: ObjectStorageGatewayResp
      example:
        os_gateway: ''
  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