Added format=json to query parameters because of bug where policies do not wortk (#3513)
* Added format=json to query parameters because of bug where policies do not work * Fixed warnings --------- Co-authored-by: Nuno André Ramos De Lemos <nuno@connecting-software.com>
This commit is contained in:
Родитель
1cd96629f7
Коммит
9f17809da7
|
@ -102,6 +102,17 @@
|
|||
"description": "This action creates a new connection so that it can be used to execute future queries.",
|
||||
"operationId": "CreateConnection",
|
||||
"parameters": [
|
||||
{
|
||||
"name": "format",
|
||||
"in": "query",
|
||||
"required": true,
|
||||
"type": "string",
|
||||
"default": "json",
|
||||
"x-ms-visibility": "internal",
|
||||
"enum": [
|
||||
"json"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "body",
|
||||
"in": "body",
|
||||
|
@ -238,6 +249,17 @@
|
|||
"summary": "Execute SQL query",
|
||||
"description": "This action executes a SQL query after a connection being created",
|
||||
"parameters": [
|
||||
{
|
||||
"name": "format",
|
||||
"in": "query",
|
||||
"required": true,
|
||||
"type": "string",
|
||||
"default": "json",
|
||||
"x-ms-visibility": "internal",
|
||||
"enum": [
|
||||
"json"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "body",
|
||||
"in": "body",
|
||||
|
@ -297,6 +319,17 @@
|
|||
"description": "This action closes a connection. All connections must be closed",
|
||||
"operationId": "CloseConnection",
|
||||
"parameters": [
|
||||
{
|
||||
"name": "format",
|
||||
"in": "query",
|
||||
"required": true,
|
||||
"type": "string",
|
||||
"default": "json",
|
||||
"x-ms-visibility": "internal",
|
||||
"enum": [
|
||||
"json"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "body",
|
||||
"in": "body",
|
||||
|
@ -358,6 +391,17 @@
|
|||
"summary": "Get next result",
|
||||
"description": "This action gets the next result when running multiple queries at once",
|
||||
"parameters": [
|
||||
{
|
||||
"name": "format",
|
||||
"in": "query",
|
||||
"required": true,
|
||||
"type": "string",
|
||||
"default": "json",
|
||||
"x-ms-visibility": "internal",
|
||||
"enum": [
|
||||
"json"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "body",
|
||||
"in": "body",
|
||||
|
|
Загрузка…
Ссылка в новой задаче