Skip to content

Commit 532ae0c

Browse files
committed
(#63) Implement me.org v3.0.0 API endpoints
1 parent 1a200ee commit 532ae0c

8 files changed

Lines changed: 1250 additions & 194 deletions

File tree

docs/cli.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,44 @@ This command will print the `id` and `name` of the modeloutput. If developer mod
126126
}
127127
```
128128

129+
### model output update
130+
131+
Update specific fields for an existing model output ID
132+
133+
```shell
134+
meorg output update [OPTIONS] $MODEL_OUTPUT_ID
135+
```
136+
137+
Some of the available options as flags are:
138+
139+
```shell
140+
--name
141+
--model-profile-id
142+
--state-selection
143+
--parameter-selection
144+
--comments
145+
--is-bundle
146+
--benchmarks
147+
```
148+
149+
150+
This command will print the `id` for the updated copy of modeloutput. If developer mode is enabled, print the JSON representation for the data section of the response. An example model output data response would be:
151+
152+
```json
153+
{
154+
"id": "MnCj3tMzGx3NsuzwS",
155+
"created": false,
156+
}
157+
```
158+
159+
### model output delete
160+
161+
Remove a model output entity
162+
163+
```shell
164+
meorg output delete $MODEL_OUTPUT_ID
165+
```
166+
129167
### analysis status
130168

131169
To query the status of an analysis, execute the following command:

0 commit comments

Comments
 (0)