blob: 8143737f5fe562100ab90ee99e7497a7f83e8450 (
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.dataproc.v1;
option go_package = "github.com/yandex-cloud/go-genproto/yandex/cloud/dataproc/v1;dataproc";
option java_package = "yandex.cloud.api.dataproc.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 Data Proc host created with the preset.
int64 cores = 3;
// RAM volume for a Data Proc host created with the preset, in bytes.
int64 memory = 4;
}
|