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:
Nuno Lemos 2024-05-31 09:12:52 +01:00 коммит произвёл GitHub
Родитель 1cd96629f7
Коммит 9f17809da7
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 44 добавлений и 0 удалений

Просмотреть файл

@ -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",