Dremio | Intelligent Lakehouse Platform Reflections API

The Reflections API from Dremio | Intelligent Lakehouse Platform — 2 operation(s) for reflections.

OpenAPI Specification

dremio-intelligent-lakehouse-platform-reflections-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Dremio Intelligent Lakehouse REST Authentication Reflections API
  version: 3.0.0
  description: Best-effort OpenAPI for Dremio's v3 REST API covering the catalog, jobs, reflections, sources, scripts, personal access tokens, and roles. Auth uses a bearer access token (OAuth or Personal Access Token).
  contact:
    name: API Evangelist
    email: kin@apievangelist.com
    url: https://docs.dremio.com/
servers:
- url: https://{hostname}/api/v3
  description: A Dremio server (self-hosted; substitute your hostname)
  variables:
    hostname:
      default: dremio.example.com
security:
- bearerAuth: []
tags:
- name: Reflections
paths:
  /reflection:
    get:
      tags:
      - Reflections
      summary: List reflections
      operationId: listReflections
      responses:
        '200':
          description: Reflections
    post:
      tags:
      - Reflections
      summary: Create a reflection
      operationId: createReflection
      responses:
        '201':
          description: Reflection created
  /reflection/{id}:
    parameters:
    - name: id
      in: path
      required: true
      schema:
        type: string
    get:
      tags:
      - Reflections
      summary: Get a reflection
      operationId: getReflection
      responses:
        '200':
          description: Reflection
    put:
      tags:
      - Reflections
      summary: Update a reflection
      operationId: updateReflection
      responses:
        '200':
          description: Updated
    delete:
      tags:
      - Reflections
      summary: Delete a reflection
      operationId: deleteReflection
      responses:
        '204':
          description: Deleted
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: OAuth access token or Personal Access Token