Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 22 additions & 22 deletions docs/static/rest-catalog-open-api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ paths:
type: string
- name: databaseNamePattern
description: A sql LIKE pattern (%) for database names. All databases will be returned if not set or empty. Currently, only prefix matching is supported.
in: path
in: query
schema:
type: string
- name: tableNamePattern
Expand Down Expand Up @@ -659,7 +659,7 @@ paths:
content:
application/json:
schema:
$ref: '#/components/responses/ResourceNotExistErrorResponse'
$ref: '#/components/schemas/ErrorResponse'
examples:
TableNotExist:
$ref: '#/components/examples/TableNotExistError'
Expand Down Expand Up @@ -785,7 +785,7 @@ paths:
content:
application/json:
schema:
$ref: '#/components/responses/ResourceNotExistErrorResponse'
$ref: '#/components/schemas/ErrorResponse'
examples:
TableNotExist:
$ref: '#/components/examples/TableNotExistError'
Expand Down Expand Up @@ -830,7 +830,7 @@ paths:
content:
application/json:
schema:
$ref: '#/components/responses/ResourceNotExistErrorResponse'
$ref: '#/components/schemas/ErrorResponse'
examples:
TableNotExist:
$ref: '#/components/examples/TableNotExistError'
Expand Down Expand Up @@ -882,7 +882,7 @@ paths:
content:
application/json:
schema:
$ref: '#/components/responses/ResourceNotExistErrorResponse'
$ref: '#/components/schemas/ErrorResponse'
examples:
TableNotExist:
$ref: '#/components/examples/TableNotExistError'
Expand Down Expand Up @@ -1137,7 +1137,7 @@ paths:
content:
application/json:
schema:
$ref: '#/components/responses/ResourceNotExistErrorResponse'
$ref: '#/components/schemas/ErrorResponse'
examples:
TableNotExist:
$ref: '#/components/examples/TableNotExistError'
Expand Down Expand Up @@ -1357,7 +1357,7 @@ paths:
content:
application/json:
schema:
$ref: '#/components/responses/ResourceNotExistErrorResponse'
$ref: '#/components/schemas/ErrorResponse'
examples:
TableNotExist:
$ref: '#/components/examples/TableNotExistError'
Expand Down Expand Up @@ -1659,7 +1659,7 @@ paths:
type: string
- name: databaseNamePattern
description: A sql LIKE pattern (%) for database names. All databases will be returned if not set or empty. Currently, only prefix matching is supported.
in: path
in: query
schema:
type: string
- name: viewNamePattern
Expand Down Expand Up @@ -1957,7 +1957,7 @@ paths:
type: string
- name: databaseNamePattern
description: A sql LIKE pattern (%) for database names. All databases will be returned if not set or empty. Currently, only prefix matching is supported.
in: path
in: query
schema:
type: string
- name: functionNamePattern
Expand Down Expand Up @@ -2146,7 +2146,7 @@ components:
content:
application/json:
schema:
$ref: '#/components/responses/ResourceNotExistErrorResponse'
$ref: '#/components/schemas/ErrorResponse'
example:
{
"message": "The given database does not exist",
Expand All @@ -2160,7 +2160,7 @@ components:
content:
application/json:
schema:
$ref: '#/components/responses/ResourceNotExistErrorResponse'
$ref: '#/components/schemas/ErrorResponse'
example:
{
"message": "The given table does not exist",
Expand All @@ -2174,7 +2174,7 @@ components:
content:
application/json:
schema:
$ref: '#/components/responses/ResourceNotExistErrorResponse'
$ref: '#/components/schemas/ErrorResponse'
example:
{
"message": "The given snapshot does not exist",
Expand All @@ -2188,7 +2188,7 @@ components:
content:
application/json:
schema:
$ref: '#/components/responses/ResourceNotExistErrorResponse'
$ref: '#/components/schemas/ErrorResponse'
example:
{
"message": "The given branch does not exist",
Expand All @@ -2202,7 +2202,7 @@ components:
content:
application/json:
schema:
$ref: '#/components/responses/ResourceNotExistErrorResponse'
$ref: '#/components/schemas/ErrorResponse'
example:
{
"message": "The given tag does not exist",
Expand All @@ -2216,7 +2216,7 @@ components:
content:
application/json:
schema:
$ref: '#/components/responses/ResourceNotExistErrorResponse'
$ref: '#/components/schemas/ErrorResponse'
example:
{
"message": "The given view does not exist",
Expand All @@ -2230,7 +2230,7 @@ components:
content:
application/json:
schema:
$ref: '#/components/responses/ResourceNotExistErrorResponse'
$ref: '#/components/schemas/ErrorResponse'
example:
{
"message": "The given function does not exist",
Expand All @@ -2256,7 +2256,7 @@ components:
content:
application/json:
schema:
$ref: '#/components/responses/ResourceAlreadyExistErrorResponse'
$ref: '#/components/schemas/ErrorResponse'
example:
{
"message": "The given database already exists",
Expand All @@ -2269,7 +2269,7 @@ components:
content:
application/json:
schema:
$ref: '#/components/responses/ResourceAlreadyExistErrorResponse'
$ref: '#/components/schemas/ErrorResponse'
example:
{
"message": "The given table already exists",
Expand All @@ -2282,7 +2282,7 @@ components:
content:
application/json:
schema:
$ref: '#/components/responses/ResourceAlreadyExistErrorResponse'
$ref: '#/components/schemas/ErrorResponse'
example:
{
"message": "The given branch already exists",
Expand All @@ -2295,7 +2295,7 @@ components:
content:
application/json:
schema:
$ref: '#/components/responses/ResourceAlreadyExistErrorResponse'
$ref: '#/components/schemas/ErrorResponse'
example:
{
"message": "The given tag already exists",
Expand All @@ -2308,7 +2308,7 @@ components:
content:
application/json:
schema:
$ref: '#/components/responses/ResourceAlreadyExistErrorResponse'
$ref: '#/components/schemas/ErrorResponse'
example:
{
"message": "The given view already exists",
Expand All @@ -2321,7 +2321,7 @@ components:
content:
application/json:
schema:
$ref: '#/components/responses/ResourceAlreadyExistErrorResponse'
$ref: '#/components/schemas/ErrorResponse'
example:
{
"message": "The given function already exists",
Expand Down
Loading