forked from JointCloud/pcm-hpc
26 lines
470 B
Protocol Buffer
26 lines
470 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package slurm;
|
|
option go_package = "/slurm";
|
|
|
|
message account {
|
|
|
|
message Associations {
|
|
string account = 1;
|
|
string cluster = 2;
|
|
string partition = 3;
|
|
string user = 4;
|
|
}
|
|
|
|
message Coordinators {
|
|
string name = 1;
|
|
uint32 direct = 2;
|
|
}
|
|
|
|
repeated Associations associations = 1;
|
|
repeated Coordinators coordinators = 2;
|
|
string description = 3;
|
|
string name = 4;
|
|
string organization = 5;
|
|
repeated string flags = 6;
|
|
} |