You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: dataset/src/main/openapi/dataset.yaml
+10-8Lines changed: 10 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,9 @@ paths:
24
24
operationId: createDataset
25
25
tags:
26
26
- dataset
27
-
description: "Create a new dataset in the workspace. Required fields: name. The dataset is initialized with empty data and can be populated through dataset parts. Creator becomes admin."
27
+
description: Create a new dataset in the workspace.
28
+
The dataset is initialized with specified parts (can be empty).
29
+
The dataset can also be populated through dataset parts.
28
30
summary: Create a Dataset
29
31
requestBody:
30
32
content:
@@ -166,7 +168,7 @@ paths:
166
168
operationId: getDataset
167
169
tags:
168
170
- dataset
169
-
description: "Retrieve complete information about a specific dataset including metadata, source configuration, security settings, and associated dataset parts summary."
171
+
description: Retrieve complete information about a specific dataset including dataset parts.
170
172
summary: Retrieve a Dataset
171
173
responses:
172
174
"200":
@@ -192,7 +194,7 @@ paths:
192
194
operationId: updateDataset
193
195
tags:
194
196
- dataset
195
-
description: "Update dataset metadata (name, description, tags). Note: Some fields cannot be modified after creation. Returns the updated dataset."
197
+
description: Update dataset information and return the updated dataset.
196
198
summary: Update a Dataset
197
199
requestBody:
198
200
content:
@@ -235,7 +237,7 @@ paths:
235
237
operationId: deleteDataset
236
238
tags:
237
239
- dataset
238
-
description: "Permanently delete a dataset and all its data parts. This operation cannot be undone. Returns 204 on success, 404 if not found, 409 if dataset is in use by runners."
240
+
description: "Permanently delete a dataset and all its data parts. This operation cannot be undone."
239
241
summary: Delete a Dataset
240
242
responses:
241
243
"204":
@@ -461,7 +463,7 @@ paths:
461
463
operationId: createDatasetPart
462
464
tags:
463
465
- dataset
464
-
description: "Create a new data part within a dataset. Specify type as 'FILE' for file uploads or 'DB' for database queries. Returns the created part with generated ID."
466
+
description: "Create a new data part within a dataset. Specify type as 'File' for file storage or 'DB' for database storage. Returns the created part."
465
467
summary: Create a data part of a Dataset
466
468
requestBody:
467
469
content:
@@ -508,7 +510,7 @@ paths:
508
510
- $ref: '#/components/parameters/size'
509
511
tags:
510
512
- dataset
511
-
description: "Retrieve all data parts associated with a dataset. Parts can be of type FILE (uploaded files) or DB (database connections). Returns part metadata, type, and status."
513
+
description: "Retrieve all data parts associated with a dataset."
512
514
summary: Retrieve all dataset parts of a Dataset
513
515
responses:
514
516
"200":
@@ -761,7 +763,7 @@ paths:
761
763
operationId: queryData
762
764
tags:
763
765
- dataset
764
-
description: "Execute a SQL or DSL query against a database-type dataset part. The query parameter is required. Results are returned as JSON. Only available for parts with type=DB."
766
+
description: "Execute a query against a dataset part. Results are returned as plain-text CSV. Only available for parts with type=DB."
765
767
summary: |
766
768
Query data of a Dataset part.
767
769
This endpoint is only available for dataset parts that support queries (type == DB).
@@ -792,7 +794,7 @@ paths:
792
794
operationId: downloadDatasetPart
793
795
tags:
794
796
- dataset
795
-
description: "Download the file content from a FILE-type dataset part. Returns the file as a binary stream with appropriate Content-Type. Not available for DB-type parts."
797
+
description: "Download the file content from a dataset part. Returns the file as an application/octet-stream."
Copy file name to clipboardExpand all lines: doc/Apis/DatasetApi.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ All URIs are relative to *http://localhost:8080*
33
33
34
34
Create a Dataset
35
35
36
-
Create a new dataset in the workspace. Required fields: name. The dataset is initialized with empty data and can be populated through dataset parts. Creator becomes admin.
36
+
Create a new dataset in the workspace. The dataset is initialized with specified parts (can be empty). The dataset can also be populated through dataset parts.
37
37
38
38
### Parameters
39
39
@@ -91,7 +91,7 @@ Add a control access to the Dataset
91
91
92
92
Create a data part of a Dataset
93
93
94
-
Create a new data part within a dataset. Specify type as 'FILE' for file uploads or 'DB' for database queries. Returns the created part with generated ID.
94
+
Create a new data part within a dataset. Specify type as 'File' for file storage or 'DB' for database storage. Returns the created part.
95
95
96
96
### Parameters
97
97
@@ -122,7 +122,7 @@ Create a data part of a Dataset
122
122
123
123
Delete a Dataset
124
124
125
-
Permanently delete a dataset and all its data parts. This operation cannot be undone. Returns 204 on success, 404 if not found, 409 if dataset is in use by runners.
125
+
Permanently delete a dataset and all its data parts. This operation cannot be undone.
126
126
127
127
### Parameters
128
128
@@ -211,7 +211,7 @@ null (empty response body)
211
211
212
212
Download data from a dataset part
213
213
214
-
Download the file content from a FILE-type dataset part. Returns the file as a binary stream with appropriate Content-Type. Not available for DB-type parts.
214
+
Download the file content from a dataset part. Returns the file as an application/octet-stream.
215
215
216
216
### Parameters
217
217
@@ -241,7 +241,7 @@ Download data from a dataset part
241
241
242
242
Retrieve a Dataset
243
243
244
-
Retrieve complete information about a specific dataset including metadata, source configuration, security settings, and associated dataset parts summary.
244
+
Retrieve complete information about a specific dataset including dataset parts.
245
245
246
246
### Parameters
247
247
@@ -326,7 +326,7 @@ Retrieve a data part of a Dataset
326
326
327
327
Retrieve all dataset parts of a Dataset
328
328
329
-
Retrieve all data parts associated with a dataset. Parts can be of type FILE (uploaded files) or DB (database connections). Returns part metadata, type, and status.
329
+
Retrieve all data parts associated with a dataset.
330
330
331
331
### Parameters
332
332
@@ -414,7 +414,7 @@ Retrieve a list of defined Dataset
414
414
415
415
Query data of a Dataset part. This endpoint is only available for dataset parts that support queries (type == DB).
416
416
417
-
Execute a SQL or DSL query against a database-type dataset part. The query parameter is required. Results are returned as JSON. Only available for parts with type=DB.
417
+
Execute a query against a dataset part. Results are returned as plain-text CSV. Only available for parts with type=DB.
418
418
419
419
### Parameters
420
420
@@ -543,7 +543,7 @@ Search Datasets by tags
543
543
544
544
Update a Dataset
545
545
546
-
Update dataset metadata (name, description, tags). Note: Some fields cannot be modified after creation. Returns the updated dataset.
546
+
Update dataset information and return the updated dataset.
Copy file name to clipboardExpand all lines: doc/Apis/RunApi.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,7 @@ null (empty response body)
45
45
46
46
Get the details of a run
47
47
48
-
Retrieve detailed information about a specific run including state, parameters used, dataset list, execution timestamps, and container configuration.
48
+
Retrieve detailed information about a specific run.
49
49
50
50
### Parameters
51
51
@@ -105,7 +105,7 @@ get the logs for the Run
105
105
106
106
get the status for the Run
107
107
108
-
Retrieve detailed execution status of a run including workflow phase, progress, individual node states, and estimated completion time.
108
+
Retrieve detailed execution status of a run.
109
109
110
110
### Parameters
111
111
@@ -135,7 +135,7 @@ get the status for the Run
135
135
136
136
get the list of Runs for the Runner
137
137
138
-
Retrieve a paginated list of all runs for a specific runner, ordered by creation time (newest first). Includes run state, timestamps, and basic metadata.
138
+
Retrieve a paginated list of all runs for a specific runner.
Copy file name to clipboardExpand all lines: doc/Apis/RunnerApi.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ All URIs are relative to *http://localhost:8080*
27
27
28
28
Create a new Runner
29
29
30
-
Create a new runner for executing simulations. Required: name, solutionId, runTemplateId. Use parentId to create a child runner that inherits configuration from a parent.
30
+
Create a new runner for executing simulations. Use parentId to create a child runner that inherits configuration from a parent.
31
31
32
32
### Parameters
33
33
@@ -143,7 +143,7 @@ null (empty response body)
143
143
144
144
Get the details of a runner
145
145
146
-
Retrieve detailed information about a runner including configuration, parameter values, dataset associations, last run status, and validation state.
146
+
Retrieve detailed information about a runner.
147
147
148
148
### Parameters
149
149
@@ -282,7 +282,7 @@ Get the Runner security users list
282
282
283
283
List all Runners
284
284
285
-
Retrieve a paginated list of all runners in a workspace. Includes master runners and child runners with their current status and configuration.
285
+
Retrieve a paginated list of all runners in a workspace.
286
286
287
287
### Parameters
288
288
@@ -312,7 +312,7 @@ List all Runners
312
312
313
313
Start a run with runner parameters
314
314
315
-
Start a new simulation run using the runner's current configuration. Returns immediately with a run ID. The run executes asynchronously - use the run status endpoint to monitor progress.
315
+
Start a new simulation run using the runner's current configuration. Returns the run Id. The run executes asynchronously - use the run status endpoint to monitor progress
316
316
317
317
### Parameters
318
318
@@ -341,7 +341,7 @@ Start a run with runner parameters
341
341
342
342
Stop the last run
343
343
344
-
Stop the currently executing run for this runner. Only affects the most recent run. The stop operation is asynchronous - the run may continue briefly before stopping.
344
+
Stop the currently executing run for this runner. The stop operation is asynchronous - the run may continue briefly before stopping.
Copy file name to clipboardExpand all lines: doc/Apis/SolutionApi.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,7 @@ All URIs are relative to *http://localhost:8080*
39
39
40
40
Create a new solution
41
41
42
-
Create a new solution with optional run templates and parameter definitions. Required: key (unique identifier), name. The solution key must be unique within the organization.
42
+
Create a new solution with optional run templates and parameter definitions.
43
43
44
44
### Parameters
45
45
@@ -67,7 +67,7 @@ Create a new solution
67
67
68
68
Create solution access control
69
69
70
-
Grant access to a dataset for a user or group. Required: identity id and role. Valid roles: viewer, editor, admin. Returns 400 if user already has access.
70
+
Grant access to a solution for a user or group.
71
71
72
72
### Parameters
73
73
@@ -338,7 +338,7 @@ Retrieve a solution run templates
338
338
339
339
Get the details of a solution
340
340
341
-
Retrieve detailed information about a solution including run templates, parameters, parameter groups, and security configuration.
Copy file name to clipboardExpand all lines: doc/Apis/WorkspaceApi.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ All URIs are relative to *http://localhost:8080*
30
30
31
31
Create a new workspace
32
32
33
-
Create a new workspace linked to a solution. Required: key (unique identifier), name, and solution configuration. The workspace key must be unique within the organization.
33
+
Create a new workspace.
34
34
35
35
### Parameters
36
36
@@ -58,7 +58,7 @@ Create a new workspace
58
58
59
59
Add a control access to the Workspace
60
60
61
-
Grant access to a workspace for a user or group. Valid roles: viewer, editor, admin. Returns 400 if user already has access.
61
+
Grant access to a workspace for a user or group.
62
62
63
63
### Parameters
64
64
@@ -87,7 +87,7 @@ Add a control access to the Workspace
87
87
88
88
Upload a file for the Workspace
89
89
90
-
Upload a file to workspace storage. Use 'destination' to specify path, 'overwrite' to replace existing files. Returns 400 if file exists and overwrite is false.
90
+
Upload a file to workspace storage. Use 'destination' to specify path, 'overwrite' to replace existing files.
91
91
92
92
### Parameters
93
93
@@ -118,7 +118,7 @@ Upload a file for the Workspace
118
118
119
119
Delete a workspace
120
120
121
-
Permanently delete a workspace. All datasets and runners within the workspace must be deleted first. This operation cannot be undone.
121
+
Permanently delete a workspace.
122
122
123
123
### Parameters
124
124
@@ -228,7 +228,7 @@ null (empty response body)
228
228
229
229
Get the details of a workspace
230
230
231
-
Retrieve detailed information about a workspace including its solution link, security settings, file storage info, and configuration.
231
+
Retrieve detailed information about a workspace.
232
232
233
233
### Parameters
234
234
@@ -283,7 +283,7 @@ Get a control access for the Workspace
283
283
284
284
Download the Workspace File specified
285
285
286
-
Download a specific file from workspace storage. Requires 'file_name' query parameter. Returns file as binary stream. Returns error if file doesn't exist.
286
+
Download a specific file from workspace storage. Returns file as binary stream.
Copy file name to clipboardExpand all lines: organization/src/main/openapi/organization.yaml
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ paths:
18
18
operationId: createOrganization
19
19
tags:
20
20
- organization
21
-
description: "Create a new organization. Required: name. Optional: security configuration. The creating user automatically becomes an administrator."
21
+
description: "Create a new organization."
22
22
summary: Create a new organization
23
23
requestBody:
24
24
required: true
@@ -90,7 +90,7 @@ paths:
90
90
operationId: getOrganization
91
91
tags:
92
92
- organization
93
-
description: "Retrieve detailed information about an organization including name, creation info, update history, and security configuration."
93
+
description: "Retrieve detailed information about an organization."
94
94
summary: Get the details of an Organization
95
95
responses:
96
96
"200":
@@ -155,7 +155,7 @@ paths:
155
155
operationId: deleteOrganization
156
156
tags:
157
157
- organization
158
-
description: "Permanently delete an organization. Requires all workspaces within the organization to be deleted first. This operation cannot be undone."
158
+
description: "Permanently delete an organization. This operation cannot be undone."
159
159
summary: Delete an organization
160
160
responses:
161
161
"204":
@@ -302,7 +302,7 @@ paths:
302
302
operationId: createOrganizationAccessControl
303
303
tags:
304
304
- organization
305
-
description: "Grant access to an organization for a user or group. Valid roles: viewer, editor, admin."
305
+
description: "Grant access to an organization for a user or group."
306
306
summary: Add a control access to the Organization
307
307
requestBody:
308
308
description: The new Organization security access to add.
0 commit comments