aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/yandex-cloud-api-protos/yandex/cloud/mdb/clickhouse/v1/ml_model.proto
blob: 42360f335b589454f6713f0ec2877c672238aed9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
syntax = "proto3";

package yandex.cloud.mdb.clickhouse.v1;

option go_package = "github.com/yandex-cloud/go-genproto/yandex/cloud/mdb/clickhouse/v1;clickhouse";
option java_package = "yandex.cloud.api.mdb.clickhouse.v1";

message MlModel {
  // Name of the the model.
  string name = 1;

  // ID of the ClickHouse cluster that the model belongs to.
  string cluster_id = 2;

  // Type of the model.
  MlModelType type = 3;

  // Model file URL. You can only use models stored in Object Storage.
  string uri = 4;
}

enum MlModelType {
  ML_MODEL_TYPE_UNSPECIFIED = 0;

  // CatBoost model.
  ML_MODEL_TYPE_CATBOOST = 1;
}