You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- syntax = "proto3";
- package slurm;
-
- option go_package = "/slurmpb";
- import "google/protobuf/timestamp.proto";
- import "idl/static.proto";
- import "idl/slurmdb_assoc.proto";
- import "idl/slurmdb_coord.proto";
-
- message AccountInfo{
- repeated AssociationInfo assocList = 1;
- repeated CoordInfo coordinators = 2;
- string description = 3;
- string name = 4;
- string organization = 5;
- }
-
- message ListAccountsReq{
- SlurmVersion slurm_version = 1;
- }
-
- message ListAccountsResp {
- repeated AccountInfo account_infos = 1;
- }
-
- message GetAccountReq{
- SlurmVersion slurm_version = 1;
- string account_name = 2;
- }
-
- message GetAccountResp {
- repeated AccountInfo account_infos = 1;
- }
|