Label Studio subpackage_exportStorage.subpackage_exportStorage/redis API

The subpackage_exportStorage.subpackage_exportStorage/redis API from Label Studio — 4 operation(s) for subpackage_exportstorage.subpackage_exportstorage/redis.

OpenAPI Specification

label-studio-subpackage-exportstorage-subpackage-exportstorage-redis-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: API Reference subpackage_actions subpackage_exportStorage.subpackage_exportStorage/redis API
  version: 1.0.0
servers:
- url: http://localhost:8000
tags:
- name: subpackage_exportStorage.subpackage_exportStorage/redis
paths:
  /api/storages/export/redis:
    get:
      operationId: list
      summary: Get all export storage
      description: Get a list of all Redis export storage connections.
      tags:
      - subpackage_exportStorage.subpackage_exportStorage/redis
      parameters:
      - name: ordering
        in: query
        description: Which field to use when ordering the results.
        required: false
        schema:
          type: string
      - name: project
        in: query
        description: Project ID
        required: true
        schema:
          type: integer
      - name: Authorization
        in: header
        description: 'The token (or API key) must be passed as a request header. You can find your user token on the User Account page in Label Studio. Example: <br><pre><code class="language-bash">curl https://label-studio-host/api/projects -H "Authorization: Token [your-token]"</code></pre>'
        required: true
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RedisExportStorage'
    post:
      operationId: create
      summary: Create export storage
      description: Create a new Redis export storage connection to store annotations.
      tags:
      - subpackage_exportStorage.subpackage_exportStorage/redis
      parameters:
      - name: Authorization
        in: header
        description: 'The token (or API key) must be passed as a request header. You can find your user token on the User Account page in Label Studio. Example: <br><pre><code class="language-bash">curl https://label-studio-host/api/projects -H "Authorization: Token [your-token]"</code></pre>'
        required: true
        schema:
          type: string
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RedisExportStorage'
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                can_delete_objects:
                  type: boolean
                  default: false
                  description: Deletion from storage enabled.
                db:
                  type: integer
                  description: Database ID of database to use
                description:
                  type: string
                  description: Storage description
                host:
                  type: string
                  description: Server Host IP (optional)
                password:
                  type: string
                  description: Server Password (optional)
                path:
                  type: string
                  description: Storage prefix (optional)
                port:
                  type: string
                  description: Server Port (optional)
                project:
                  type: integer
                  description: Project ID
                title:
                  type: string
                  description: Storage title
  /api/storages/export/redis/validate:
    post:
      operationId: validate
      summary: Validate export storage
      description: Validate a specific Redis export storage connection.
      tags:
      - subpackage_exportStorage.subpackage_exportStorage/redis
      parameters:
      - name: Authorization
        in: header
        description: 'The token (or API key) must be passed as a request header. You can find your user token on the User Account page in Label Studio. Example: <br><pre><code class="language-bash">curl https://label-studio-host/api/projects -H "Authorization: Token [your-token]"</code></pre>'
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Validation successful
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/export_storage_redis_validate_Response_200'
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                can_delete_objects:
                  type: boolean
                  default: false
                  description: Deletion from storage enabled.
                db:
                  type: integer
                  description: Database ID of database to use
                description:
                  type: string
                  description: Storage description
                host:
                  type: string
                  description: Server Host IP (optional)
                id:
                  type: integer
                  description: Storage ID. If set, storage with specified ID will be updated
                password:
                  type: string
                  description: Server Password (optional)
                path:
                  type: string
                  description: Storage prefix (optional)
                port:
                  type: string
                  description: Server Port (optional)
                project:
                  type: integer
                  description: Project ID
                title:
                  type: string
                  description: Storage title
  /api/storages/export/redis/{id}:
    get:
      operationId: get
      summary: Get export storage
      description: Get a specific Redis export storage connection.
      tags:
      - subpackage_exportStorage.subpackage_exportStorage/redis
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
      - name: Authorization
        in: header
        description: 'The token (or API key) must be passed as a request header. You can find your user token on the User Account page in Label Studio. Example: <br><pre><code class="language-bash">curl https://label-studio-host/api/projects -H "Authorization: Token [your-token]"</code></pre>'
        required: true
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RedisExportStorage'
    delete:
      operationId: delete
      summary: Delete export storage
      description: Delete a specific Redis export storage connection.
      tags:
      - subpackage_exportStorage.subpackage_exportStorage/redis
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
      - name: Authorization
        in: header
        description: 'The token (or API key) must be passed as a request header. You can find your user token on the User Account page in Label Studio. Example: <br><pre><code class="language-bash">curl https://label-studio-host/api/projects -H "Authorization: Token [your-token]"</code></pre>'
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
    patch:
      operationId: update
      summary: Update export storage
      description: Update a specific Redis export storage connection.
      tags:
      - subpackage_exportStorage.subpackage_exportStorage/redis
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
      - name: Authorization
        in: header
        description: 'The token (or API key) must be passed as a request header. You can find your user token on the User Account page in Label Studio. Example: <br><pre><code class="language-bash">curl https://label-studio-host/api/projects -H "Authorization: Token [your-token]"</code></pre>'
        required: true
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RedisExportStorage'
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                can_delete_objects:
                  type: boolean
                  default: false
                  description: Deletion from storage enabled.
                db:
                  type: integer
                  description: Database ID of database to use
                description:
                  type: string
                  description: Storage description
                host:
                  type: string
                  description: Server Host IP (optional)
                password:
                  type: string
                  description: Server Password (optional)
                path:
                  type: string
                  description: Storage prefix (optional)
                port:
                  type: string
                  description: Server Port (optional)
                project:
                  type: integer
                  description: Project ID
                title:
                  type: string
                  description: Storage title
  /api/storages/export/redis/{id}/sync:
    post:
      operationId: sync
      summary: Sync export storage
      description: Sync tasks from a Redis export storage connection.
      tags:
      - subpackage_exportStorage.subpackage_exportStorage/redis
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
      - name: Authorization
        in: header
        description: 'The token (or API key) must be passed as a request header. You can find your user token on the User Account page in Label Studio. Example: <br><pre><code class="language-bash">curl https://label-studio-host/api/projects -H "Authorization: Token [your-token]"</code></pre>'
        required: true
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RedisExportStorage'
components:
  schemas:
    RedisExportStorage:
      type: object
      properties:
        can_delete_objects:
          type:
          - boolean
          - 'null'
          description: Deletion from storage enabled
        created_at:
          type: string
          format: date-time
          description: Creation time
        db:
          type: integer
          description: Server Database
        description:
          type:
          - string
          - 'null'
          description: Cloud storage description
        host:
          type:
          - string
          - 'null'
          description: Server Host IP (optional)
        id:
          type: integer
        last_sync:
          type:
          - string
          - 'null'
          format: date-time
          description: Last sync finished time
        last_sync_count:
          type:
          - integer
          - 'null'
          description: Count of tasks synced last time
        last_sync_job:
          type:
          - string
          - 'null'
          description: Last sync job ID
        meta:
          oneOf:
          - description: Any type
          - type: 'null'
          description: Meta and debug information about storage processes
        password:
          type:
          - string
          - 'null'
          description: Server Password (optional)
        path:
          type:
          - string
          - 'null'
          description: Storage prefix (optional)
        port:
          type:
          - string
          - 'null'
          description: Server Port (optional)
        project:
          type: integer
          description: A unique integer value identifying this project.
        regex_filter:
          type:
          - string
          - 'null'
          description: Cloud storage regex for filtering objects
        status:
          $ref: '#/components/schemas/StatusC5aEnum'
        synchronizable:
          type: boolean
          default: true
        title:
          type:
          - string
          - 'null'
          description: Cloud storage title
        traceback:
          type:
          - string
          - 'null'
          description: Traceback report for the last failed sync
        type:
          type: string
          default: redis
        use_blob_urls:
          type: boolean
          description: Interpret objects as BLOBs and generate URLs
      required:
      - created_at
      - id
      - project
      - type
      title: RedisExportStorage
    export_storage_redis_validate_Response_200:
      type: object
      properties: {}
      description: Empty response body
      title: export_storage_redis_validate_Response_200
    StatusC5aEnum:
      type: string
      enum:
      - initialized
      - queued
      - in_progress
      - failed
      - completed
      - completed_with_errors
      description: '* `initialized` - Initialized

        * `queued` - Queued

        * `in_progress` - In progress

        * `failed` - Failed

        * `completed` - Completed

        * `completed_with_errors` - Completed with errors'
      title: StatusC5aEnum
  securitySchemes:
    Token:
      type: apiKey
      in: header
      name: Authorization
      description: 'The token (or API key) must be passed as a request header. You can find your user token on the User Account page in Label Studio. Example: <br><pre><code class="language-bash">curl https://label-studio-host/api/projects -H "Authorization: Token [your-token]"</code></pre>'