@itentialopensource/adapter-snowflake_sql
Version:
This adapter integrates with system described as: snowflakeSqlApi.
180 lines • 4.33 kB
JSON
{
"openapi": "3.1.0",
"info": {
"title": "",
"version": "1.0.0"
},
"paths": {
"/statements": {
"post": {
"tags": [
"Statements"
],
"operationId": "submitStatement",
"description": "The parameters and request body are for method: submitStatement. Same endpoint also used in methods:",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "requestId",
"in": "query",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "async",
"in": "query",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "nullable",
"in": "query",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"description": "indeterminate body object",
"content": {
"application/json": {
"schema": {
"type": "object"
}
}
}
}
}
},
"/statements/{statementHandle}": {
"get": {
"tags": [
"Statements"
],
"operationId": "getStatementStatus",
"description": "The parameters and request body are for method: getStatementStatus. Same endpoint also used in methods:",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "statementHandle",
"in": "path",
"required": true,
"schema": {
"title": "statementHandle",
"type": "string"
}
},
{
"name": "requestId",
"in": "query",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "partition",
"in": "query",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object"
},
"example": {}
}
}
}
}
},
"/statements/{statementHandle}/cancel": {
"post": {
"tags": [
"Statements"
],
"operationId": "cancelStatement",
"description": "The parameters and request body are for method: cancelStatement. Same endpoint also used in methods:",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "statementHandle",
"in": "path",
"required": true,
"schema": {
"title": "statementHandle",
"type": "string"
}
},
{
"name": "requestId",
"in": "query",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object"
},
"example": {}
}
}
}
}
}
},
"components": {
"schemas": {}
}
}