• 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/beyondcorp/clientgateways/v1/client_gateways_service.proto
18 
19 package com.google.cloud.beyondcorp.clientgateways.v1;
20 
21 public interface ListClientGatewaysResponseOrBuilder
22     extends
23     // @@protoc_insertion_point(interface_extends:google.cloud.beyondcorp.clientgateways.v1.ListClientGatewaysResponse)
24     com.google.protobuf.MessageOrBuilder {
25 
26   /**
27    *
28    *
29    * <pre>
30    * The list of ClientGateway.
31    * </pre>
32    *
33    * <code>repeated .google.cloud.beyondcorp.clientgateways.v1.ClientGateway client_gateways = 1;
34    * </code>
35    */
36   java.util.List<com.google.cloud.beyondcorp.clientgateways.v1.ClientGateway>
getClientGatewaysList()37       getClientGatewaysList();
38   /**
39    *
40    *
41    * <pre>
42    * The list of ClientGateway.
43    * </pre>
44    *
45    * <code>repeated .google.cloud.beyondcorp.clientgateways.v1.ClientGateway client_gateways = 1;
46    * </code>
47    */
getClientGateways(int index)48   com.google.cloud.beyondcorp.clientgateways.v1.ClientGateway getClientGateways(int index);
49   /**
50    *
51    *
52    * <pre>
53    * The list of ClientGateway.
54    * </pre>
55    *
56    * <code>repeated .google.cloud.beyondcorp.clientgateways.v1.ClientGateway client_gateways = 1;
57    * </code>
58    */
getClientGatewaysCount()59   int getClientGatewaysCount();
60   /**
61    *
62    *
63    * <pre>
64    * The list of ClientGateway.
65    * </pre>
66    *
67    * <code>repeated .google.cloud.beyondcorp.clientgateways.v1.ClientGateway client_gateways = 1;
68    * </code>
69    */
70   java.util.List<? extends com.google.cloud.beyondcorp.clientgateways.v1.ClientGatewayOrBuilder>
getClientGatewaysOrBuilderList()71       getClientGatewaysOrBuilderList();
72   /**
73    *
74    *
75    * <pre>
76    * The list of ClientGateway.
77    * </pre>
78    *
79    * <code>repeated .google.cloud.beyondcorp.clientgateways.v1.ClientGateway client_gateways = 1;
80    * </code>
81    */
getClientGatewaysOrBuilder( int index)82   com.google.cloud.beyondcorp.clientgateways.v1.ClientGatewayOrBuilder getClientGatewaysOrBuilder(
83       int index);
84 
85   /**
86    *
87    *
88    * <pre>
89    * A token identifying a page of results the server should return.
90    * </pre>
91    *
92    * <code>string next_page_token = 2;</code>
93    *
94    * @return The nextPageToken.
95    */
getNextPageToken()96   java.lang.String getNextPageToken();
97   /**
98    *
99    *
100    * <pre>
101    * A token identifying a page of results the server should return.
102    * </pre>
103    *
104    * <code>string next_page_token = 2;</code>
105    *
106    * @return The bytes for nextPageToken.
107    */
getNextPageTokenBytes()108   com.google.protobuf.ByteString getNextPageTokenBytes();
109 
110   /**
111    *
112    *
113    * <pre>
114    * Locations that could not be reached.
115    * </pre>
116    *
117    * <code>repeated string unreachable = 3;</code>
118    *
119    * @return A list containing the unreachable.
120    */
getUnreachableList()121   java.util.List<java.lang.String> getUnreachableList();
122   /**
123    *
124    *
125    * <pre>
126    * Locations that could not be reached.
127    * </pre>
128    *
129    * <code>repeated string unreachable = 3;</code>
130    *
131    * @return The count of unreachable.
132    */
getUnreachableCount()133   int getUnreachableCount();
134   /**
135    *
136    *
137    * <pre>
138    * Locations that could not be reached.
139    * </pre>
140    *
141    * <code>repeated string unreachable = 3;</code>
142    *
143    * @param index The index of the element to return.
144    * @return The unreachable at the given index.
145    */
getUnreachable(int index)146   java.lang.String getUnreachable(int index);
147   /**
148    *
149    *
150    * <pre>
151    * Locations that could not be reached.
152    * </pre>
153    *
154    * <code>repeated string unreachable = 3;</code>
155    *
156    * @param index The index of the value to return.
157    * @return The bytes of the unreachable at the given index.
158    */
getUnreachableBytes(int index)159   com.google.protobuf.ByteString getUnreachableBytes(int index);
160 }
161