blob: ca1aa12bba402875e82b8145fcc2d011a8223cfb (
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.redis.v1;
option go_package = "github.com/yandex-cloud/go-genproto/yandex/cloud/mdb/redis/v1;redis";
option java_package = "yandex.cloud.api.mdb.redis.v1";
// A resource preset that describes hardware configuration for a host.
message ResourcePreset {
// ID of the resource preset.
string id = 1;
// IDs of availability zones where the resource preset is available.
repeated string zone_ids = 2;
// RAM volume for a Redis host created with the preset, in bytes.
int64 memory = 3;
// Number of CPU cores for a Redis host created with the preset.
int64 cores = 4;
}
|