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