Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type FilePartialResponse ¶
type FilePartialResponse struct {
Path string `json:"path"`
IsDir bool `json:"is_dir"`
FileSize int64 `json:"file_size"`
}
FilePartialResponse is a partial response object for different responses.
type ListArtifactsResponse ¶
type ListArtifactsResponse struct {
Files []FilePartialResponse `json:"files"`
RootURI string `json:"root_uri"`
}
ListArtifactsResponse is a response object for `GET mlflow/artifacts/list` endpoint.
func NewListArtifactsResponse ¶
func NewListArtifactsResponse( rootURI string, artifacts []storage.ArtifactObject, ) *ListArtifactsResponse
NewListArtifactsResponse creates new instance of ListArtifactsResponse.
Click to show internal directories.
Click to hide internal directories.