Documentation
¶
Index ¶
- type ModelRegistryService
- func (b *ModelRegistryService) GetArtifactById(id string) (*openapi.Artifact, error)
- func (b *ModelRegistryService) GetArtifactByParams(artifactName *string, parentResourceId *string, externalId *string) (*openapi.Artifact, error)
- func (b *ModelRegistryService) GetArtifacts(artifactType openapi.ArtifactTypeQueryParam, listOptions api.ListOptions, ...) (*openapi.ArtifactList, error)
- func (b *ModelRegistryService) GetExperimentById(id string) (*openapi.Experiment, error)
- func (b *ModelRegistryService) GetExperimentByParams(name *string, externalId *string) (*openapi.Experiment, error)
- func (b *ModelRegistryService) GetExperimentRunArtifacts(artifactType openapi.ArtifactTypeQueryParam, listOptions api.ListOptions, ...) (*openapi.ArtifactList, error)
- func (b *ModelRegistryService) GetExperimentRunById(id string) (*openapi.ExperimentRun, error)
- func (b *ModelRegistryService) GetExperimentRunByParams(name *string, experimentId *string, externalId *string) (*openapi.ExperimentRun, error)
- func (b *ModelRegistryService) GetExperimentRunMetricHistory(name *string, stepIds *string, listOptions api.ListOptions, ...) (*openapi.MetricList, error)
- func (b *ModelRegistryService) GetExperimentRuns(listOptions api.ListOptions, experimentId *string) (*openapi.ExperimentRunList, error)
- func (b *ModelRegistryService) GetExperiments(listOptions api.ListOptions) (*openapi.ExperimentList, error)
- func (b *ModelRegistryService) GetInferenceServiceById(id string) (*openapi.InferenceService, error)
- func (b *ModelRegistryService) GetInferenceServiceByParams(name *string, parentResourceId *string, externalId *string) (*openapi.InferenceService, error)
- func (b *ModelRegistryService) GetInferenceServices(listOptions api.ListOptions, servingEnvironmentId *string, runtime *string) (*openapi.InferenceServiceList, error)
- func (b *ModelRegistryService) GetModelArtifactById(id string) (*openapi.ModelArtifact, error)
- func (b *ModelRegistryService) GetModelArtifactByInferenceService(inferenceServiceId string) (*openapi.ModelArtifact, error)
- func (b *ModelRegistryService) GetModelArtifactByParams(artifactName *string, parentResourceId *string, externalId *string) (*openapi.ModelArtifact, error)
- func (b *ModelRegistryService) GetModelArtifacts(listOptions api.ListOptions, parentResourceId *string) (*openapi.ModelArtifactList, error)
- func (b *ModelRegistryService) GetModelVersionById(id string) (*openapi.ModelVersion, error)
- func (b *ModelRegistryService) GetModelVersionByInferenceService(inferenceServiceId string) (*openapi.ModelVersion, error)
- func (b *ModelRegistryService) GetModelVersionByParams(versionName *string, registeredModelId *string, externalId *string) (*openapi.ModelVersion, error)
- func (b *ModelRegistryService) GetModelVersions(listOptions api.ListOptions, registeredModelId *string) (*openapi.ModelVersionList, error)
- func (b *ModelRegistryService) GetRegisteredModelById(id string) (*openapi.RegisteredModel, error)
- func (b *ModelRegistryService) GetRegisteredModelByInferenceService(inferenceServiceId string) (*openapi.RegisteredModel, error)
- func (b *ModelRegistryService) GetRegisteredModelByParams(name *string, externalId *string) (*openapi.RegisteredModel, error)
- func (b *ModelRegistryService) GetRegisteredModels(listOptions api.ListOptions) (*openapi.RegisteredModelList, error)
- func (b *ModelRegistryService) GetServeModelById(id string) (*openapi.ServeModel, error)
- func (b *ModelRegistryService) GetServeModels(listOptions api.ListOptions, inferenceServiceId *string) (*openapi.ServeModelList, error)
- func (b *ModelRegistryService) GetServingEnvironmentById(id string) (*openapi.ServingEnvironment, error)
- func (b *ModelRegistryService) GetServingEnvironmentByParams(name *string, externalId *string) (*openapi.ServingEnvironment, error)
- func (b *ModelRegistryService) GetServingEnvironments(listOptions api.ListOptions) (*openapi.ServingEnvironmentList, error)
- func (b *ModelRegistryService) InsertMetricHistory(metric *openapi.Metric, experimentRunId string) error
- func (b *ModelRegistryService) UpsertArtifact(artifact *openapi.Artifact) (*openapi.Artifact, error)
- func (b *ModelRegistryService) UpsertExperiment(experiment *openapi.Experiment) (*openapi.Experiment, error)
- func (b *ModelRegistryService) UpsertExperimentRun(experimentRun *openapi.ExperimentRun, experimentId *string) (*openapi.ExperimentRun, error)
- func (b *ModelRegistryService) UpsertExperimentRunArtifact(artifact *openapi.Artifact, experimentRunId string) (*openapi.Artifact, error)
- func (b *ModelRegistryService) UpsertInferenceService(inferenceService *openapi.InferenceService) (*openapi.InferenceService, error)
- func (b *ModelRegistryService) UpsertModelArtifact(modelArtifact *openapi.ModelArtifact) (*openapi.ModelArtifact, error)
- func (b *ModelRegistryService) UpsertModelVersion(modelVersion *openapi.ModelVersion, registeredModelId *string) (*openapi.ModelVersion, error)
- func (b *ModelRegistryService) UpsertModelVersionArtifact(artifact *openapi.Artifact, parentResourceId string) (*openapi.Artifact, error)
- func (b *ModelRegistryService) UpsertRegisteredModel(registeredModel *openapi.RegisteredModel) (*openapi.RegisteredModel, error)
- func (b *ModelRegistryService) UpsertServeModel(serveModel *openapi.ServeModel, inferenceServiceId *string) (*openapi.ServeModel, error)
- func (b *ModelRegistryService) UpsertServingEnvironment(servingEnvironment *openapi.ServingEnvironment) (*openapi.ServingEnvironment, error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ModelRegistryService ¶
type ModelRegistryService struct {
// contains filtered or unexported fields
}
func NewModelRegistryService ¶
func NewModelRegistryService( artifactRepository models.ArtifactRepository, modelArtifactRepository models.ModelArtifactRepository, docArtifactRepository models.DocArtifactRepository, registeredModelRepository models.RegisteredModelRepository, modelVersionRepository models.ModelVersionRepository, servingEnvironmentRepository models.ServingEnvironmentRepository, inferenceServiceRepository models.InferenceServiceRepository, serveModelRepository models.ServeModelRepository, experimentRepository models.ExperimentRepository, experimentRunRepository models.ExperimentRunRepository, dataSetRepository models.DataSetRepository, metricRepository models.MetricRepository, parameterRepository models.ParameterRepository, metricHistoryRepository models.MetricHistoryRepository, typesMap map[string]int32) *ModelRegistryService
func (*ModelRegistryService) GetArtifactById ¶
func (b *ModelRegistryService) GetArtifactById(id string) (*openapi.Artifact, error)
func (*ModelRegistryService) GetArtifactByParams ¶
func (*ModelRegistryService) GetArtifacts ¶
func (b *ModelRegistryService) GetArtifacts(artifactType openapi.ArtifactTypeQueryParam, listOptions api.ListOptions, parentResourceId *string) (*openapi.ArtifactList, error)
func (*ModelRegistryService) GetExperimentById ¶ added in v0.3.0
func (b *ModelRegistryService) GetExperimentById(id string) (*openapi.Experiment, error)
func (*ModelRegistryService) GetExperimentByParams ¶ added in v0.3.0
func (b *ModelRegistryService) GetExperimentByParams(name *string, externalId *string) (*openapi.Experiment, error)
func (*ModelRegistryService) GetExperimentRunArtifacts ¶ added in v0.3.0
func (b *ModelRegistryService) GetExperimentRunArtifacts(artifactType openapi.ArtifactTypeQueryParam, listOptions api.ListOptions, experimentRunId *string) (*openapi.ArtifactList, error)
func (*ModelRegistryService) GetExperimentRunById ¶ added in v0.3.0
func (b *ModelRegistryService) GetExperimentRunById(id string) (*openapi.ExperimentRun, error)
func (*ModelRegistryService) GetExperimentRunByParams ¶ added in v0.3.0
func (b *ModelRegistryService) GetExperimentRunByParams(name *string, experimentId *string, externalId *string) (*openapi.ExperimentRun, error)
func (*ModelRegistryService) GetExperimentRunMetricHistory ¶ added in v0.3.0
func (b *ModelRegistryService) GetExperimentRunMetricHistory(name *string, stepIds *string, listOptions api.ListOptions, experimentRunId *string) (*openapi.MetricList, error)
func (*ModelRegistryService) GetExperimentRuns ¶ added in v0.3.0
func (b *ModelRegistryService) GetExperimentRuns(listOptions api.ListOptions, experimentId *string) (*openapi.ExperimentRunList, error)
func (*ModelRegistryService) GetExperiments ¶ added in v0.3.0
func (b *ModelRegistryService) GetExperiments(listOptions api.ListOptions) (*openapi.ExperimentList, error)
func (*ModelRegistryService) GetInferenceServiceById ¶
func (b *ModelRegistryService) GetInferenceServiceById(id string) (*openapi.InferenceService, error)
func (*ModelRegistryService) GetInferenceServiceByParams ¶
func (b *ModelRegistryService) GetInferenceServiceByParams(name *string, parentResourceId *string, externalId *string) (*openapi.InferenceService, error)
func (*ModelRegistryService) GetInferenceServices ¶
func (b *ModelRegistryService) GetInferenceServices(listOptions api.ListOptions, servingEnvironmentId *string, runtime *string) (*openapi.InferenceServiceList, error)
func (*ModelRegistryService) GetModelArtifactById ¶
func (b *ModelRegistryService) GetModelArtifactById(id string) (*openapi.ModelArtifact, error)
func (*ModelRegistryService) GetModelArtifactByInferenceService ¶
func (b *ModelRegistryService) GetModelArtifactByInferenceService(inferenceServiceId string) (*openapi.ModelArtifact, error)
func (*ModelRegistryService) GetModelArtifactByParams ¶
func (b *ModelRegistryService) GetModelArtifactByParams(artifactName *string, parentResourceId *string, externalId *string) (*openapi.ModelArtifact, error)
func (*ModelRegistryService) GetModelArtifacts ¶
func (b *ModelRegistryService) GetModelArtifacts(listOptions api.ListOptions, parentResourceId *string) (*openapi.ModelArtifactList, error)
func (*ModelRegistryService) GetModelVersionById ¶
func (b *ModelRegistryService) GetModelVersionById(id string) (*openapi.ModelVersion, error)
func (*ModelRegistryService) GetModelVersionByInferenceService ¶
func (b *ModelRegistryService) GetModelVersionByInferenceService(inferenceServiceId string) (*openapi.ModelVersion, error)
func (*ModelRegistryService) GetModelVersionByParams ¶
func (b *ModelRegistryService) GetModelVersionByParams(versionName *string, registeredModelId *string, externalId *string) (*openapi.ModelVersion, error)
func (*ModelRegistryService) GetModelVersions ¶
func (b *ModelRegistryService) GetModelVersions(listOptions api.ListOptions, registeredModelId *string) (*openapi.ModelVersionList, error)
func (*ModelRegistryService) GetRegisteredModelById ¶
func (b *ModelRegistryService) GetRegisteredModelById(id string) (*openapi.RegisteredModel, error)
func (*ModelRegistryService) GetRegisteredModelByInferenceService ¶
func (b *ModelRegistryService) GetRegisteredModelByInferenceService(inferenceServiceId string) (*openapi.RegisteredModel, error)
func (*ModelRegistryService) GetRegisteredModelByParams ¶
func (b *ModelRegistryService) GetRegisteredModelByParams(name *string, externalId *string) (*openapi.RegisteredModel, error)
func (*ModelRegistryService) GetRegisteredModels ¶
func (b *ModelRegistryService) GetRegisteredModels(listOptions api.ListOptions) (*openapi.RegisteredModelList, error)
func (*ModelRegistryService) GetServeModelById ¶
func (b *ModelRegistryService) GetServeModelById(id string) (*openapi.ServeModel, error)
func (*ModelRegistryService) GetServeModels ¶
func (b *ModelRegistryService) GetServeModels(listOptions api.ListOptions, inferenceServiceId *string) (*openapi.ServeModelList, error)
func (*ModelRegistryService) GetServingEnvironmentById ¶
func (b *ModelRegistryService) GetServingEnvironmentById(id string) (*openapi.ServingEnvironment, error)
func (*ModelRegistryService) GetServingEnvironmentByParams ¶
func (b *ModelRegistryService) GetServingEnvironmentByParams(name *string, externalId *string) (*openapi.ServingEnvironment, error)
func (*ModelRegistryService) GetServingEnvironments ¶
func (b *ModelRegistryService) GetServingEnvironments(listOptions api.ListOptions) (*openapi.ServingEnvironmentList, error)
func (*ModelRegistryService) InsertMetricHistory ¶ added in v0.3.0
func (b *ModelRegistryService) InsertMetricHistory(metric *openapi.Metric, experimentRunId string) error
InsertMetricHistory inserts a metric history record for an experiment run
func (*ModelRegistryService) UpsertArtifact ¶
func (*ModelRegistryService) UpsertExperiment ¶ added in v0.3.0
func (b *ModelRegistryService) UpsertExperiment(experiment *openapi.Experiment) (*openapi.Experiment, error)
func (*ModelRegistryService) UpsertExperimentRun ¶ added in v0.3.0
func (b *ModelRegistryService) UpsertExperimentRun(experimentRun *openapi.ExperimentRun, experimentId *string) (*openapi.ExperimentRun, error)
func (*ModelRegistryService) UpsertExperimentRunArtifact ¶ added in v0.3.0
func (*ModelRegistryService) UpsertInferenceService ¶
func (b *ModelRegistryService) UpsertInferenceService(inferenceService *openapi.InferenceService) (*openapi.InferenceService, error)
func (*ModelRegistryService) UpsertModelArtifact ¶
func (b *ModelRegistryService) UpsertModelArtifact(modelArtifact *openapi.ModelArtifact) (*openapi.ModelArtifact, error)
func (*ModelRegistryService) UpsertModelVersion ¶
func (b *ModelRegistryService) UpsertModelVersion(modelVersion *openapi.ModelVersion, registeredModelId *string) (*openapi.ModelVersion, error)
func (*ModelRegistryService) UpsertModelVersionArtifact ¶
func (*ModelRegistryService) UpsertRegisteredModel ¶
func (b *ModelRegistryService) UpsertRegisteredModel(registeredModel *openapi.RegisteredModel) (*openapi.RegisteredModel, error)
func (*ModelRegistryService) UpsertServeModel ¶
func (b *ModelRegistryService) UpsertServeModel(serveModel *openapi.ServeModel, inferenceServiceId *string) (*openapi.ServeModel, error)
func (*ModelRegistryService) UpsertServingEnvironment ¶
func (b *ModelRegistryService) UpsertServingEnvironment(servingEnvironment *openapi.ServingEnvironment) (*openapi.ServingEnvironment, error)
Click to show internal directories.
Click to hide internal directories.