Machine Learning Extension - Model details (#9377)

* Machine Learning Services Extension - adding model details
This commit is contained in:
Leila Lali
2020-03-02 12:47:09 -08:00
committed by GitHub
parent c1f6a67829
commit b5b65117a7
30 changed files with 852 additions and 224 deletions

View File

@@ -49,8 +49,12 @@ export type WorkspacesModelsResponse = ListWorkspaceModelsResult & {
* An interface representing registered model
*/
export interface RegisteredModel {
id: number,
name: string
id?: number,
artifactName?: string,
title?: string,
created?: string,
version?: string
description?: string
}
/**