• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright 2020 Google LLC
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     https://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 // Generated by the protocol buffer compiler.  DO NOT EDIT!
17 // source: google/cloud/kms/v1/service.proto
18 
19 package com.google.cloud.kms.v1;
20 
21 public interface ListImportJobsRequestOrBuilder
22     extends
23     // @@protoc_insertion_point(interface_extends:google.cloud.kms.v1.ListImportJobsRequest)
24     com.google.protobuf.MessageOrBuilder {
25 
26   /**
27    *
28    *
29    * <pre>
30    * Required. The resource name of the [KeyRing][google.cloud.kms.v1.KeyRing]
31    * to list, in the format `projects/&#42;&#47;locations/&#42;&#47;keyRings/&#42;`.
32    * </pre>
33    *
34    * <code>
35    * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
36    * </code>
37    *
38    * @return The parent.
39    */
getParent()40   java.lang.String getParent();
41   /**
42    *
43    *
44    * <pre>
45    * Required. The resource name of the [KeyRing][google.cloud.kms.v1.KeyRing]
46    * to list, in the format `projects/&#42;&#47;locations/&#42;&#47;keyRings/&#42;`.
47    * </pre>
48    *
49    * <code>
50    * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
51    * </code>
52    *
53    * @return The bytes for parent.
54    */
getParentBytes()55   com.google.protobuf.ByteString getParentBytes();
56 
57   /**
58    *
59    *
60    * <pre>
61    * Optional. Optional limit on the number of
62    * [ImportJobs][google.cloud.kms.v1.ImportJob] to include in the response.
63    * Further [ImportJobs][google.cloud.kms.v1.ImportJob] can subsequently be
64    * obtained by including the
65    * [ListImportJobsResponse.next_page_token][google.cloud.kms.v1.ListImportJobsResponse.next_page_token]
66    * in a subsequent request. If unspecified, the server will pick an
67    * appropriate default.
68    * </pre>
69    *
70    * <code>int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL];</code>
71    *
72    * @return The pageSize.
73    */
getPageSize()74   int getPageSize();
75 
76   /**
77    *
78    *
79    * <pre>
80    * Optional. Optional pagination token, returned earlier via
81    * [ListImportJobsResponse.next_page_token][google.cloud.kms.v1.ListImportJobsResponse.next_page_token].
82    * </pre>
83    *
84    * <code>string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];</code>
85    *
86    * @return The pageToken.
87    */
getPageToken()88   java.lang.String getPageToken();
89   /**
90    *
91    *
92    * <pre>
93    * Optional. Optional pagination token, returned earlier via
94    * [ListImportJobsResponse.next_page_token][google.cloud.kms.v1.ListImportJobsResponse.next_page_token].
95    * </pre>
96    *
97    * <code>string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];</code>
98    *
99    * @return The bytes for pageToken.
100    */
getPageTokenBytes()101   com.google.protobuf.ByteString getPageTokenBytes();
102 
103   /**
104    *
105    *
106    * <pre>
107    * Optional. Only include resources that match the filter in the response. For
108    * more information, see
109    * [Sorting and filtering list
110    * results](https://cloud.google.com/kms/docs/sorting-and-filtering).
111    * </pre>
112    *
113    * <code>string filter = 4 [(.google.api.field_behavior) = OPTIONAL];</code>
114    *
115    * @return The filter.
116    */
getFilter()117   java.lang.String getFilter();
118   /**
119    *
120    *
121    * <pre>
122    * Optional. Only include resources that match the filter in the response. For
123    * more information, see
124    * [Sorting and filtering list
125    * results](https://cloud.google.com/kms/docs/sorting-and-filtering).
126    * </pre>
127    *
128    * <code>string filter = 4 [(.google.api.field_behavior) = OPTIONAL];</code>
129    *
130    * @return The bytes for filter.
131    */
getFilterBytes()132   com.google.protobuf.ByteString getFilterBytes();
133 
134   /**
135    *
136    *
137    * <pre>
138    * Optional. Specify how the results should be sorted. If not specified, the
139    * results will be sorted in the default order. For more information, see
140    * [Sorting and filtering list
141    * results](https://cloud.google.com/kms/docs/sorting-and-filtering).
142    * </pre>
143    *
144    * <code>string order_by = 5 [(.google.api.field_behavior) = OPTIONAL];</code>
145    *
146    * @return The orderBy.
147    */
getOrderBy()148   java.lang.String getOrderBy();
149   /**
150    *
151    *
152    * <pre>
153    * Optional. Specify how the results should be sorted. If not specified, the
154    * results will be sorted in the default order. For more information, see
155    * [Sorting and filtering list
156    * results](https://cloud.google.com/kms/docs/sorting-and-filtering).
157    * </pre>
158    *
159    * <code>string order_by = 5 [(.google.api.field_behavior) = OPTIONAL];</code>
160    *
161    * @return The bytes for orderBy.
162    */
getOrderByBytes()163   com.google.protobuf.ByteString getOrderByBytes();
164 }
165