Still testing

This commit is contained in:
Josh Mock
2024-11-20 11:39:21 -06:00
parent be8fc5ae83
commit 15a43f3747
115 changed files with 609 additions and 818 deletions

View File

@ -50,8 +50,8 @@ Get model snapshots info.
interface MlGetModelSnapshotsRequest extends <<RequestBase>> {
job_id: <<Id>>
snapshot_id?: <<Id>>
from?: number
size?: number
from?: <<_integer, integer>>
size?: <<_integer, integer>>
desc?: boolean
end?: <<DateTime>>
page?: MlPage
@ -71,7 +71,7 @@ interface MlGetModelSnapshotsRequest extends <<RequestBase>> {
<pre>
++++
interface MlGetModelSnapshotsResponse {
count: number
count: <<_long, long>>
model_snapshots: MlModelSnapshot[]
}