• 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/vmmigration/v1/vmmigration.proto
18 
19 package com.google.cloud.vmmigration.v1;
20 
21 public interface ListReplicationCyclesResponseOrBuilder
22     extends
23     // @@protoc_insertion_point(interface_extends:google.cloud.vmmigration.v1.ListReplicationCyclesResponse)
24     com.google.protobuf.MessageOrBuilder {
25 
26   /**
27    *
28    *
29    * <pre>
30    * Output only. The list of replication cycles response.
31    * </pre>
32    *
33    * <code>
34    * repeated .google.cloud.vmmigration.v1.ReplicationCycle replication_cycles = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
35    * </code>
36    */
getReplicationCyclesList()37   java.util.List<com.google.cloud.vmmigration.v1.ReplicationCycle> getReplicationCyclesList();
38   /**
39    *
40    *
41    * <pre>
42    * Output only. The list of replication cycles response.
43    * </pre>
44    *
45    * <code>
46    * repeated .google.cloud.vmmigration.v1.ReplicationCycle replication_cycles = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
47    * </code>
48    */
getReplicationCycles(int index)49   com.google.cloud.vmmigration.v1.ReplicationCycle getReplicationCycles(int index);
50   /**
51    *
52    *
53    * <pre>
54    * Output only. The list of replication cycles response.
55    * </pre>
56    *
57    * <code>
58    * repeated .google.cloud.vmmigration.v1.ReplicationCycle replication_cycles = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
59    * </code>
60    */
getReplicationCyclesCount()61   int getReplicationCyclesCount();
62   /**
63    *
64    *
65    * <pre>
66    * Output only. The list of replication cycles response.
67    * </pre>
68    *
69    * <code>
70    * repeated .google.cloud.vmmigration.v1.ReplicationCycle replication_cycles = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
71    * </code>
72    */
73   java.util.List<? extends com.google.cloud.vmmigration.v1.ReplicationCycleOrBuilder>
getReplicationCyclesOrBuilderList()74       getReplicationCyclesOrBuilderList();
75   /**
76    *
77    *
78    * <pre>
79    * Output only. The list of replication cycles response.
80    * </pre>
81    *
82    * <code>
83    * repeated .google.cloud.vmmigration.v1.ReplicationCycle replication_cycles = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
84    * </code>
85    */
getReplicationCyclesOrBuilder( int index)86   com.google.cloud.vmmigration.v1.ReplicationCycleOrBuilder getReplicationCyclesOrBuilder(
87       int index);
88 
89   /**
90    *
91    *
92    * <pre>
93    * Output only. A token, which can be sent as `page_token` to retrieve the
94    * next page. If this field is omitted, there are no subsequent pages.
95    * </pre>
96    *
97    * <code>string next_page_token = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
98    *
99    * @return The nextPageToken.
100    */
getNextPageToken()101   java.lang.String getNextPageToken();
102   /**
103    *
104    *
105    * <pre>
106    * Output only. A token, which can be sent as `page_token` to retrieve the
107    * next page. If this field is omitted, there are no subsequent pages.
108    * </pre>
109    *
110    * <code>string next_page_token = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
111    *
112    * @return The bytes for nextPageToken.
113    */
getNextPageTokenBytes()114   com.google.protobuf.ByteString getNextPageTokenBytes();
115 
116   /**
117    *
118    *
119    * <pre>
120    * Output only. Locations that could not be reached.
121    * </pre>
122    *
123    * <code>repeated string unreachable = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
124    *
125    * @return A list containing the unreachable.
126    */
getUnreachableList()127   java.util.List<java.lang.String> getUnreachableList();
128   /**
129    *
130    *
131    * <pre>
132    * Output only. Locations that could not be reached.
133    * </pre>
134    *
135    * <code>repeated string unreachable = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
136    *
137    * @return The count of unreachable.
138    */
getUnreachableCount()139   int getUnreachableCount();
140   /**
141    *
142    *
143    * <pre>
144    * Output only. Locations that could not be reached.
145    * </pre>
146    *
147    * <code>repeated string unreachable = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
148    *
149    * @param index The index of the element to return.
150    * @return The unreachable at the given index.
151    */
getUnreachable(int index)152   java.lang.String getUnreachable(int index);
153   /**
154    *
155    *
156    * <pre>
157    * Output only. Locations that could not be reached.
158    * </pre>
159    *
160    * <code>repeated string unreachable = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
161    *
162    * @param index The index of the value to return.
163    * @return The bytes of the unreachable at the given index.
164    */
getUnreachableBytes(int index)165   com.google.protobuf.ByteString getUnreachableBytes(int index);
166 }
167