Skip to main content

Methods

Creates or updates an MLRepo entity based on the provided manifest.

Parameters

MlRepoManifest
required
🔗 MlRepoManifestMLRepo manifest
typing.Optional[bool]
Validate the manifest and collaborators without persisting changes or updating artifact location in the database

Returns

GetMlRepoResponse
🔗 GetMlRepoResponseReturns the created or updated MLRepo entity based on the provided manifest.

Usage

Get an ML Repo by its ID.

Parameters

str
required

Returns

GetMlRepoResponse
🔗 GetMlRepoResponseThe ML Repo data

Usage

Delete an ML Repo by its ID.

Parameters

str
required

Returns

EmptyResponse
🔗 EmptyResponseEmpty response indicating successful deletion

Usage

List ML Repos with optional filtering by name.

Parameters

typing.Optional[str]
Name of the ML Repo to filter by
typing.Optional[int]
Maximum number of ML Repos to return
typing.Optional[int]
Number of ML Repos to skip for pagination

Returns

SyncPager[MlRepo, ListMlReposResponse]
🔗 ListMlReposResponseList of ML Repos matching the query with pagination information

Usage