| // Copyright 2016 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style |
| // license that can be found in the LICENSE file. |
| // This file defines protobufs needed for handling Monorail secrets. |
| package monorail.secrets; |
| message ListRequestContents { |
| // The parent resource of the requested resources. |
| // The requested page size for listing the resources. |
| // The requested sort order of the list of resources. |
| // The query that may be used to filter which resources to show. |
| // The resource names of projects to query within. |
| repeated string projects = 5; |
| // The string that may be used to filter which resources to show. |
| message PageTokenContents { |
| // The index of where the requested resource list should start. |
| // An encrypted ListRequestContents message. |
| bytes encrypted_list_request_contents = 2; |