armada
armada copied to clipboard
Add CreateQueues and UpdateQueues rpc calls to our grpc clients
With https://github.com/G-Research/armada/pull/1060 added new endpoints to submit.proto.
rpc CreateQueues (QueueList) returns (BatchQueueCreateResponse) {
option(google.api.http) = {
post: "/v1/batched/create_queues"
body: "*"
};
}
rpc UpdateQueues (QueueList) returns (BatchQueueUpdateResponse) {
option (google.api.http) = {
put: "/v1/batched/update_queues"
body: "*"
};
}
- These RPC calls should be used in the python client.
- Unit tests should be written for these.
- Integration tests.
- Documentation for the method.
I will give doing this in a few weeks.
5