XSKY os-external-storage-classes API

OSExternalStorageClassController API /os-extertal-storage-classes.

Operations 5

GET /os-external-storage-classes/ #
POST /os-external-storage-classes/ #
GET /os-external-storage-classes/{external_storage_class_id} #
DELETE /os-external-storage-classes/{external_storage_class_id} #
PATCH /os-external-storage-classes/{external_storage_class_id} #

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-external-storage-classes-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-external-storage-classes-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 External Storage Classes API
  contact: {}
  license:
    name: Commercial
servers:
- url: /v1
tags:
- name: os-external-storage-classes
  description: 'OSExternalStorageClassController API /os-extertal-storage-classes.

    '
paths:
  /os-external-storage-classes/:
    get:
      tags:
      - os-external-storage-classes
      description: List os external storage classes
      operationId: ListOSExternalStorageClasses
      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: os_policy_id
        in: query
        description: os policy id
        required: false
        x-exportParamName: OsPolicyId
        schema:
          type: integer
          format: int64
      - name: general_status
        in: query
        description: query records with active or error status
        required: false
        x-exportParamName: GeneralStatus
        schema:
          type: boolean
      responses:
        200:
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OSExternalStorageClassesResp'
        500:
          description: InternalServerError
      security:
      - tokenInQuery: []
      - tokenInHeader: []
    post:
      tags:
      - os-external-storage-classes
      description: Create os external storage class
      operationId: CreateExternalStorageClass
      responses:
        202:
          description: Accepted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OSExternalStorageClassResp'
        400:
          description: BadRequest
        409:
          description: Conflict
        500:
          description: InternalServerError
      security:
      - tokenInQuery: []
      - tokenInHeader: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OSExternalStorageClassCreateReq'
        description: external storage class info
        required: true
  /os-external-storage-classes/{external_storage_class_id}:
    get:
      tags:
      - os-external-storage-classes
      description: Get a os external storage class
      operationId: GetOSExternalStorageClass
      parameters:
      - name: external_storage_class_id
        in: path
        description: external storage class id
        required: true
        x-exportParamName: ExternalStorageClassId
        schema:
          type: integer
          format: int64
      responses:
        200:
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OSExternalStorageClassResp'
        404:
          description: NotFound
        500:
          description: InternalServerError
      security:
      - tokenInQuery: []
      - tokenInHeader: []
    delete:
      tags:
      - os-external-storage-classes
      description: Delete an os external storage class
      operationId: DeleteOSExternalStorageClass
      parameters:
      - name: external_storage_class_id
        in: path
        description: external storage class id
        required: true
        x-exportParamName: ExternalStorageClassId
        schema:
          type: integer
          format: int64
      responses:
        202:
          description: Accepted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OSExternalStorageClassResp'
        404:
          description: NotFound
        409:
          description: Conflict
        500:
          description: InternalServerError
      security:
      - tokenInQuery: []
      - tokenInHeader: []
    patch:
      tags:
      - os-external-storage-classes
      description: update os external storage class
      operationId: UpdateOSExternalStorageClass
      parameters:
      - name: external_storage_class_id
        in: path
        description: external storage class id
        required: true
        x-exportParamName: ExternalStorageClassId
        schema:
          type: integer
          format: int64
      responses:
        200:
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OSExternalStorageClassResp'
        202:
          description: Accepted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OSExternalStorageClassResp'
        400:
          description: BadRequest
        404:
          description: NotFound
        409:
          description: Conflict
        500:
          description: InternalServerError
      security:
      - tokenInQuery: []
      - tokenInHeader: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OSExternalStorageClassUpdateReq'
        description: external storage class info
        required: true
components:
  schemas:
    OSExternalStoragePlatform:
      type: object
      properties:
        access_key:
          type: string
        buckets:
          type: array
          items:
            $ref: '#/components/schemas/OSExternalStorageBucketInfo'
        create:
          type: string
          format: date-time
        endpoint:
          type: string
        id:
          type: integer
          format: int64
        name:
          type: string
        secret_key:
          type: string
        status:
          type: string
        uuid:
          type: string
        weight:
          type: integer
          format: int64
      title: OSExternalStoragePlatform
      description: 'OSExternalStoragePlatform is the model of os_external_storage_platform

        +X:model:generate;with_detailed;order_by=ID'
      example:
        secret_key: secret_key
        endpoint: endpoint
        access_key: access_key
        buckets:
        - name: name
          weight: 6
        - name: name
          weight: 6
        name: name
        create: '2000-01-23T04:56:07.000+00:00'
        weight: 5
        id: 1
        uuid: uuid
        status: status
    OSExternalStorageClassUpdateReq_ExternalStorageClass:
      type: object
      properties:
        description:
          type: string
        external_storage_platforms:
          type: array
          items:
            $ref: '#/components/schemas/OSExternalStoragePlatformInfo'
        name:
          type: string
        storage_pattern:
          $ref: '#/components/schemas/SliceStringField'
      title: OSExternalStorageClassUpdateReq_ExternalStorageClass
    OSExternalStorageClassCreateReq:
      type: object
      properties:
        os_external_storage_class:
          $ref: '#/components/schemas/OSExternalStorageClass'
      title: OSExternalStorageClassCreateReq
    OSExternalStorageClassUpdateReq:
      type: object
      properties:
        os_external_storage_class:
          $ref: '#/components/schemas/OSExternalStorageClassUpdateReq_ExternalStorageClass'
      title: OSExternalStorageClassUpdateReq
    OSExternalStorageClass:
      type: object
      required:
      - class
      - external_storage_platforms
      - name
      - os_policy_id
      - platform
      - platform_type
      properties:
        Create:
          type: string
          format: date-time
        class:
          type: integer
          format: int32
        description:
          type: string
        external_storage_platforms:
          type: array
          items:
            $ref: '#/components/schemas/OSExternalStoragePlatform'
        id:
          type: integer
          format: int64
        name:
          type: string
        os_policy_id:
          type: integer
          format: int64
        platform:
          type: string
        platform_type:
          type: string
        status:
          type: string
        storage_pattern:
          type: array
          items:
            type: string
      title: OSExternalStorageClass
      description: 'OSExternalStorageClass is the model of os external storage class

        +X:model:generate;plur=OSExternalStorageClasses;with_detailed'
      example:
        platform_type: platform_type
        storage_pattern:
        - storage_pattern
        - storage_pattern
        external_storage_platforms:
        - secret_key: secret_key
          endpoint: endpoint
          access_key: access_key
          buckets:
          - name: name
            weight: 6
          - name: name
            weight: 6
          name: name
          create: '2000-01-23T04:56:07.000+00:00'
          weight: 5
          id: 1
          uuid: uuid
          status: status
        - secret_key: secret_key
          endpoint: endpoint
          access_key: access_key
          buckets:
          - name: name
            weight: 6
          - name: name
            weight: 6
          name: name
          create: '2000-01-23T04:56:07.000+00:00'
          weight: 5
          id: 1
          uuid: uuid
          status: status
        Create: '2000-01-23T04:56:07.000+00:00'
        name: name
        description: description
        id: 5
        class: 0
        os_policy_id: 2
        platform: platform
        status: status
    OSExternalStorageClassResp:
      type: object
      properties:
        os_external_storage_class:
          $ref: '#/components/schemas/OSExternalStorageClass'
      title: OSExternalStorageClassResp
      example:
        os_external_storage_class:
          platform_type: platform_type
          storage_pattern:
          - storage_pattern
          - storage_pattern
          external_storage_platforms:
          - secret_key: secret_key
            endpoint: endpoint
            access_key: access_key
            buckets:
            - name: name
              weight: 6
            - name: name
              weight: 6
            name: name
            create: '2000-01-23T04:56:07.000+00:00'
            weight: 5
            id: 1
            uuid: uuid
            status: status
          - secret_key: secret_key
            endpoint: endpoint
            access_key: access_key
            buckets:
            - name: name
              weight: 6
            - name: name
              weight: 6
            name: name
            create: '2000-01-23T04:56:07.000+00:00'
            weight: 5
            id: 1
            uuid: uuid
            status: status
          Create: '2000-01-23T04:56:07.000+00:00'
          name: name
          description: description
          id: 5
          class: 0
          os_policy_id: 2
          platform: platform
          status: status
    OSExternalStoragePlatformInfo:
      type: object
      properties:
        access_key:
          type: string
        buckets:
          type: array
          items:
            $ref: '#/components/schemas/OSExternalStorageBucketInfo'
        endpoint:
          type: string
        id:
          type: integer
          format: int64
        name:
          type: string
        secret_key:
          type: string
        weight:
          type: integer
          format: int64
      title: OSExternalStoragePlatformInfo
      description: OSExternalStoragePlatformInfo used for update os external storage class
    SliceStringField:
      type: array
      description: A slice string field.
      items:
        type: string
    OSExternalStorageBucketInfo:
      type: object
      required:
      - name
      - weight
      properties:
        name:
          type: string
        weight:
          type: integer
          format: int64
      title: OSExternalStorageBucketInfo
      description: OSExternalStorageBucketInfo contains bucket info of external storage platform
      example:
        name: name
        weight: 6
    OSExternalStorageClassesResp:
      type: object
      properties:
        os_external_storage_classes:
          type: array
          items:
            $ref: '#/components/schemas/OSExternalStorageClass'
      title: OSExternalStorageClassesResp
      example:
        os_external_storage_classes:
        - platform_type: platform_type
          storage_pattern:
          - storage_pattern
          - storage_pattern
          external_storage_platforms:
          - secret_key: secret_key
            endpoint: endpoint
            access_key: access_key
            buckets:
            - name: name
              weight: 6
            - name: name
              weight: 6
            name: name
            create: '2000-01-23T04:56:07.000+00:00'
            weight: 5
            id: 1
            uuid: uuid
            status: status
          - secret_key: secret_key
            endpoint: endpoint
            access_key: access_key
            buckets:
            - name: name
              weight: 6
            - name: name
              weight: 6
            name: name
            create: '2000-01-23T04:56:07.000+00:00'
            weight: 5
            id: 1
            uuid: uuid
            status: status
          Create: '2000-01-23T04:56:07.000+00:00'
          name: name
          description: description
          id: 5
          class: 0
          os_policy_id: 2
          platform: platform
          status: status
        - platform_type: platform_type
          storage_pattern:
          - storage_pattern
          - storage_pattern
          external_storage_platforms:
          - secret_key: secret_key
            endpoint: endpoint
            access_key: access_key
            buckets:
            - name: name
              weight: 6
            - name: name
              weight: 6
            name: name
            create: '2000-01-23T04:56:07.000+00:00'
            weight: 5
            id: 1
            uuid: uuid
            status: status
          - secret_key: secret_key
            endpoint: endpoint
            access_key: access_key
            buckets:
            - name: name
              weight: 6
            - name: name
              weight: 6
            name: name
            create: '2000-01-23T04:56:07.000+00:00'
            weight: 5
            id: 1
            uuid: uuid
            status: status
          Create: '2000-01-23T04:56:07.000+00:00'
          name: name
          description: description
          id: 5
          class: 0
          os_policy_id: 2
          platform: platform
          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