blob: d82f86e214e050ccc64c51abd1b88b1ddb63a761 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
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 Version {
// ID of the version.
string id = 1;
// Name of the version.
string name = 2;
// Whether version is deprecated.
bool deprecated = 3;
// List of versions that can be updated from current.
repeated string updatable_to = 4;
}
|