Skip to content

Commit

Permalink
Documentation for name search
Browse files Browse the repository at this point in the history
  • Loading branch information
johnerikhalse committed Feb 28, 2018
1 parent 3e540d8 commit 9f54222
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions protobuf/controller.proto
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,14 @@ message GetRequest {

// Specification of wich entities to get.
message ListRequest {
// Select objects by name
// The name qury is a case insensitive regular expresion search on name.
// <pre>
// Examples:
// "foo" - matches all names containing the phrase foo
// "^foo$" - matches the exact name foo
// "foo.*bar$" - matches names containing foo followed by zero or more tokens and ends with bar
// </pre>
string name = 1;
// Select objects by label
// A string representing a label query. The query matches if at least one label matches the query.
Expand Down

0 comments on commit 9f54222

Please sign in to comment.