Skip to content

Commit 78affea

Browse files
removed apikeyauth
1 parent 40d8fe4 commit 78affea

File tree

1 file changed

+0
-76
lines changed

1 file changed

+0
-76
lines changed

docs/openapi.yml

Lines changed: 0 additions & 76 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,6 @@ components:
134134
paths:
135135
'/api/databases':
136136
get:
137-
security:
138-
- ApiKeyAuth: []
139137
summary: Returns a list of database names.
140138
description: Gets all databases created by the user.
141139
responses:
@@ -164,8 +162,6 @@ paths:
164162
items:
165163
type: string
166164
post:
167-
security:
168-
- ApiKeyAuth: []
169165
summary: Creates a new database connection.
170166
description: Creates a new database connection. The example parameters below are for connecting to [MySQL](/data-integrations/mysql). See [here](/data-integrations/all-data-integrations) for which parameters to use for your datasource.
171167
requestBody:
@@ -239,8 +235,6 @@ paths:
239235
type: string
240236
'/api/databases/{databaseName}':
241237
get:
242-
security:
243-
- ApiKeyAuth: []
244238
summary: Gets info about existing database.
245239
description: Gets info about an existing database.
246240
parameters:
@@ -282,8 +276,6 @@ paths:
282276
items:
283277
type: string
284278
put:
285-
security:
286-
- ApiKeyAuth: []
287279
summary: Updates an existing database connection.
288280
description: Updates an existing database connection, or creates a new connection if one doesn't exist. The example parameters below are for updating a [MySQL](/data-integrations/mysql) connection. See [here](/data-integrations/all-data-integrations) for which parameters to use for your datasource.
289281
parameters:
@@ -351,8 +343,6 @@ paths:
351343
items:
352344
type: string
353345
delete:
354-
security:
355-
- ApiKeyAuth: []
356346
summary: Deletes an existing database.
357347
description: Deletes an existing database connection by name.
358348
parameters:
@@ -395,8 +385,6 @@ paths:
395385
type: string
396386
'/api/projects':
397387
get:
398-
security:
399-
- ApiKeyAuth: []
400388
summary: Returns a list of projects.
401389
description: Gets all projects created by the user.
402390
responses:
@@ -426,8 +414,6 @@ paths:
426414
type: string
427415
'/api/projects/{projectName}':
428416
get:
429-
security:
430-
- ApiKeyAuth: []
431417
summary: Get a project by name.
432418
description: Gets a project created by the user.
433419
parameters:
@@ -470,8 +456,6 @@ paths:
470456
type: string
471457
'/api/projects/{projectName}/models':
472458
post:
473-
security:
474-
- ApiKeyAuth: []
475459
summary: This endpoint trains a new ML Model.
476460
description: Starts training a new Machine Learning model.
477461
parameters:
@@ -531,8 +515,6 @@ paths:
531515
items:
532516
type: string
533517
get:
534-
security:
535-
- ApiKeyAuth: []
536518
summary: Returns a list of models.
537519
description: Gets info about all models in the project.
538520
parameters:
@@ -577,8 +559,6 @@ paths:
577559
type: string
578560
'/api/projects/{projectName}/models/{modelName}':
579561
get:
580-
security:
581-
- ApiKeyAuth: []
582562
summary: Gets info about specific model.
583563
description: Gets info for a specific model in the project.
584564
parameters:
@@ -626,8 +606,6 @@ paths:
626606
items:
627607
type: string
628608
delete:
629-
security:
630-
- ApiKeyAuth: []
631609
summary: Deletes an existing model.
632610
description: Deletes a model in the project.
633611
parameters:
@@ -676,8 +654,6 @@ paths:
676654
type: string
677655
'/api/projects/{projectName}/models/{modelName}/predict':
678656
post:
679-
security:
680-
- ApiKeyAuth: []
681657
summary: This endpoint fetches predictions from the model.
682658
description: Uses this model to make a prediction for values of new data.
683659
parameters:
@@ -739,8 +715,6 @@ paths:
739715
type: string
740716
'/api/projects/{projectName}/models/{modelName}/describe':
741717
get:
742-
security:
743-
- ApiKeyAuth: []
744718
summary: Describe a model
745719
description: Gets the attributes of a specific model.
746720
parameters:
@@ -801,8 +775,6 @@ paths:
801775
type: string
802776
'/api/projects/{projectName}/views':
803777
post:
804-
security:
805-
- ApiKeyAuth: []
806778
summary: This endpoint creates a view which is a result-set of the SELECT statement.
807779
description: Creates a [view](https://docs.mindsdb.com/sql/create/view) from a SELECT statement.
808780
parameters:
@@ -862,8 +834,6 @@ paths:
862834
items:
863835
type: string
864836
get:
865-
security:
866-
- ApiKeyAuth: []
867837
summary: List all views in a project
868838
description: Gets all views in a project.
869839
parameters:
@@ -908,8 +878,6 @@ paths:
908878
type: string
909879
'/api/projects/{projectName}/views/{viewName}':
910880
get:
911-
security:
912-
- ApiKeyAuth: []
913881
summary: SELECT from VIEW
914882
description: Gets a single view.
915883
parameters:
@@ -957,8 +925,6 @@ paths:
957925
items:
958926
type: string
959927
delete:
960-
security:
961-
- ApiKeyAuth: []
962928
summary: Deletes an existing view.
963929
description: Deletes an existing view in the project.
964930
parameters:
@@ -1008,8 +974,6 @@ paths:
1008974
items:
1009975
type: string
1010976
put:
1011-
security:
1012-
- ApiKeyAuth: []
1013977
summary: Updates an existing view.
1014978
description: Updates an existing view, or creates a new view if one doesn't exist.
1015979
parameters:
@@ -1074,8 +1038,6 @@ paths:
10741038
type: string
10751039
'/api/databases/{databaseName}/tables':
10761040
post:
1077-
security:
1078-
- ApiKeyAuth: []
10791041
summary: This endpoint creates a new table with the predictions result-set.
10801042
description: Creates a new table from a select query. See [CREATE table documentation](https://docs.mindsdb.com/sql/create/table).
10811043
parameters:
@@ -1135,8 +1097,6 @@ paths:
11351097
items:
11361098
type: string
11371099
get:
1138-
security:
1139-
- ApiKeyAuth: []
11401100
summary: Returns a list of tables in a database.
11411101
description: Gets metadata for all tables in a database.
11421102
parameters:
@@ -1181,8 +1141,6 @@ paths:
11811141
type: string
11821142
'/api/databases/{databaseName}/tables/{tableName}':
11831143
get:
1184-
security:
1185-
- ApiKeyAuth: []
11861144
summary: SELECT from Table
11871145
description: Gets metadata for a table in a database.
11881146
parameters:
@@ -1230,8 +1188,6 @@ paths:
12301188
items:
12311189
type: string
12321190
delete:
1233-
security:
1234-
- ApiKeyAuth: []
12351191
summary: Deletes an existing table.
12361192
description: Deletes a table in a database.
12371193
parameters:
@@ -1282,8 +1238,6 @@ paths:
12821238
type: string
12831239
'/api/projects/{projectName}/skills':
12841240
get:
1285-
security:
1286-
- ApiKeyAuth: []
12871241
summary: Returns a list of all created skills.
12881242
description: Gets all skills created by the user.
12891243
parameters:
@@ -1319,8 +1273,6 @@ paths:
13191273
items:
13201274
type: string
13211275
post:
1322-
security:
1323-
- ApiKeyAuth: []
13241276
summary: Creates a new skill.
13251277
description: Creates a new skill.
13261278
parameters:
@@ -1400,8 +1352,6 @@ paths:
14001352
type: string
14011353
'/api/projects/{projectName}/skills/{skillName}':
14021354
get:
1403-
security:
1404-
- ApiKeyAuth: []
14051355
summary: Gets info about existing skills.
14061356
description: Gets info about an existing skill.
14071357
parameters:
@@ -1449,8 +1399,6 @@ paths:
14491399
items:
14501400
type: string
14511401
put:
1452-
security:
1453-
- ApiKeyAuth: []
14541402
summary: Updates an existing skill.
14551403
description: Updates an existing skill, or creates a new skill if one doesn't exist.
14561404
parameters:
@@ -1527,8 +1475,6 @@ paths:
15271475
items:
15281476
type: string
15291477
delete:
1530-
security:
1531-
- ApiKeyAuth: []
15321478
summary: Deletes an existing skill.
15331479
description: Deletes an existing skill by name.
15341480
parameters:
@@ -1577,8 +1523,6 @@ paths:
15771523
type: string
15781524
'/api/projects/{projectName}/agents':
15791525
get:
1580-
security:
1581-
- ApiKeyAuth: []
15821526
summary: Returns a list of all created agents.
15831527
description: Gets all agents created by the user.
15841528
parameters:
@@ -1614,8 +1558,6 @@ paths:
16141558
items:
16151559
type: string
16161560
post:
1617-
security:
1618-
- ApiKeyAuth: []
16191561
summary: Creates a new agent.
16201562
description: Creates a new agent.
16211563
parameters:
@@ -1686,8 +1628,6 @@ paths:
16861628
type: string
16871629
'/api/projects/{projectName}/agents/{agentName}':
16881630
get:
1689-
security:
1690-
- ApiKeyAuth: []
16911631
summary: Gets info about existing agent.
16921632
description: Gets info about an existing agent.
16931633
parameters:
@@ -1735,8 +1675,6 @@ paths:
17351675
items:
17361676
type: string
17371677
put:
1738-
security:
1739-
- ApiKeyAuth: []
17401678
summary: Updates an existing agent.
17411679
description: Updates an existing agent, or creates a new agent if one doesn't exist.
17421680
parameters:
@@ -1804,8 +1742,6 @@ paths:
18041742
items:
18051743
type: string
18061744
delete:
1807-
security:
1808-
- ApiKeyAuth: []
18091745
summary: Deletes an existing agent.
18101746
description: Deletes an existing agent by name.
18111747
parameters:
@@ -1854,8 +1790,6 @@ paths:
18541790
type: string
18551791
'/api/projects/{projectName}/agents/{agentName}/completions':
18561792
post:
1857-
security:
1858-
- ApiKeyAuth: []
18591793
summary: Quesries an agent.
18601794
description: Quesries an agent.
18611795
parameters:
@@ -1933,8 +1867,6 @@ paths:
19331867
type: string
19341868
'/api/projects/{projectName}/chatbots':
19351869
get:
1936-
security:
1937-
- ApiKeyAuth: []
19381870
summary: Returns a list of all created chatbots.
19391871
description: Gets all chatbots created by the user.
19401872
parameters:
@@ -1970,8 +1902,6 @@ paths:
19701902
items:
19711903
type: string
19721904
post:
1973-
security:
1974-
- ApiKeyAuth: []
19751905
summary: Creates a new chatbot.
19761906
description: Creates a new chatbot.
19771907
parameters:
@@ -2040,8 +1970,6 @@ paths:
20401970
type: string
20411971
'/api/projects/{projectName}/chatbots/{chatbotName}':
20421972
get:
2043-
security:
2044-
- ApiKeyAuth: []
20451973
summary: Gets info about existing chatbots.
20461974
description: Gets info about an existing chatbot.
20471975
parameters:
@@ -2089,8 +2017,6 @@ paths:
20892017
items:
20902018
type: string
20912019
put:
2092-
security:
2093-
- ApiKeyAuth: []
20942020
summary: Updates an existing chatbot.
20952021
description: Updates an existing chatbot, or creates a new chatbot if one doesn't exist.
20962022
parameters:
@@ -2156,8 +2082,6 @@ paths:
21562082
items:
21572083
type: string
21582084
delete:
2159-
security:
2160-
- ApiKeyAuth: []
21612085
summary: Deletes an existing chatbot.
21622086
description: Deletes an existing chatbot by name.
21632087
parameters:

0 commit comments

Comments
 (0)