blob: 0db9bc3d75964bded2fafb962f56d121d3f70500 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
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";
// A ResourcePreset resource for describing hardware configuration presets.
message ResourcePreset {
// ID of the ResourcePreset resource.
string id = 1;
// IDs of availability zones where the resource preset is available.
repeated string zone_ids = 2;
// Number of CPU cores for a ClickHouse host created with the preset.
int64 cores = 3;
// RAM volume for a ClickHouse host created with the preset, in bytes.
int64 memory = 4;
}
|