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