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/devtools/cloudbuild/v1/cloudbuild.proto 18 19 package com.google.cloudbuild.v1; 20 21 public interface ListBuildsResponseOrBuilder 22 extends 23 // @@protoc_insertion_point(interface_extends:google.devtools.cloudbuild.v1.ListBuildsResponse) 24 com.google.protobuf.MessageOrBuilder { 25 26 /** 27 * 28 * 29 * <pre> 30 * Builds will be sorted by `create_time`, descending. 31 * </pre> 32 * 33 * <code>repeated .google.devtools.cloudbuild.v1.Build builds = 1;</code> 34 */ getBuildsList()35 java.util.List<com.google.cloudbuild.v1.Build> getBuildsList(); 36 /** 37 * 38 * 39 * <pre> 40 * Builds will be sorted by `create_time`, descending. 41 * </pre> 42 * 43 * <code>repeated .google.devtools.cloudbuild.v1.Build builds = 1;</code> 44 */ getBuilds(int index)45 com.google.cloudbuild.v1.Build getBuilds(int index); 46 /** 47 * 48 * 49 * <pre> 50 * Builds will be sorted by `create_time`, descending. 51 * </pre> 52 * 53 * <code>repeated .google.devtools.cloudbuild.v1.Build builds = 1;</code> 54 */ getBuildsCount()55 int getBuildsCount(); 56 /** 57 * 58 * 59 * <pre> 60 * Builds will be sorted by `create_time`, descending. 61 * </pre> 62 * 63 * <code>repeated .google.devtools.cloudbuild.v1.Build builds = 1;</code> 64 */ getBuildsOrBuilderList()65 java.util.List<? extends com.google.cloudbuild.v1.BuildOrBuilder> getBuildsOrBuilderList(); 66 /** 67 * 68 * 69 * <pre> 70 * Builds will be sorted by `create_time`, descending. 71 * </pre> 72 * 73 * <code>repeated .google.devtools.cloudbuild.v1.Build builds = 1;</code> 74 */ getBuildsOrBuilder(int index)75 com.google.cloudbuild.v1.BuildOrBuilder getBuildsOrBuilder(int index); 76 77 /** 78 * 79 * 80 * <pre> 81 * Token to receive the next page of results. 82 * This will be absent if the end of the response list has been reached. 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 * Token to receive the next page of results. 95 * This will be absent if the end of the response list has been reached. 96 * </pre> 97 * 98 * <code>string next_page_token = 2;</code> 99 * 100 * @return The bytes for nextPageToken. 101 */ getNextPageTokenBytes()102 com.google.protobuf.ByteString getNextPageTokenBytes(); 103 } 104