You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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;
}
The text was updated successfully, but these errors were encountered:
My preference on this feature would be to add filter support. Something like:
messageGetAllConfigsRequest {
stringresource_name=1;
stringresource_namespace=2;
ConfigFilterfilter=3;
}
messageConfigFilter {
repeatedstringcontext=1;
// Can add other filter support as needed
}
The reasoning here:
Backwards compatibility
More extensible
Keeps the same expectations on the query side around how a config is structured - that is a name should represent a type of config. That is, the proposed api can return values of different shapes because I can ask for multiple different resources across multiple namespaces.
Current schema:
This should be enhanced to something like the below:
The text was updated successfully, but these errors were encountered: