Current schema:
message GetAllConfigsRequest {
// required - name of the resource associated with the config
string resource_name = 1;
// required - namespace with which the config resource is associated
string resource_namespace = 2;
}
This should be enhanced to something like the below:
message GetAllConfigsRequest {
repeated ResourceIdentity = 1;
}
message ResourceIdentity {
// required - name of the resource associated with the config
string resource_name = 1;
// required - namespace with which the config resource is associated
string resource_namespace = 2;
}