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/channel/v1/service.proto 18 19 package com.google.cloud.channel.v1; 20 21 public interface ListSubscribersRequestOrBuilder 22 extends 23 // @@protoc_insertion_point(interface_extends:google.cloud.channel.v1.ListSubscribersRequest) 24 com.google.protobuf.MessageOrBuilder { 25 26 /** 27 * 28 * 29 * <pre> 30 * Required. Resource name of the account. 31 * </pre> 32 * 33 * <code>string account = 1 [(.google.api.field_behavior) = REQUIRED];</code> 34 * 35 * @return The account. 36 */ getAccount()37 java.lang.String getAccount(); 38 /** 39 * 40 * 41 * <pre> 42 * Required. Resource name of the account. 43 * </pre> 44 * 45 * <code>string account = 1 [(.google.api.field_behavior) = REQUIRED];</code> 46 * 47 * @return The bytes for account. 48 */ getAccountBytes()49 com.google.protobuf.ByteString getAccountBytes(); 50 51 /** 52 * 53 * 54 * <pre> 55 * Optional. The maximum number of service accounts to return. The service may 56 * return fewer than this value. If unspecified, returns at most 100 service 57 * accounts. The maximum value is 1000; the server will coerce values above 58 * 1000. 59 * </pre> 60 * 61 * <code>int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL];</code> 62 * 63 * @return The pageSize. 64 */ getPageSize()65 int getPageSize(); 66 67 /** 68 * 69 * 70 * <pre> 71 * Optional. A page token, received from a previous `ListSubscribers` call. 72 * Provide this to retrieve the subsequent page. 73 * When paginating, all other parameters provided to `ListSubscribers` must 74 * match the call that provided the page token. 75 * </pre> 76 * 77 * <code>string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];</code> 78 * 79 * @return The pageToken. 80 */ getPageToken()81 java.lang.String getPageToken(); 82 /** 83 * 84 * 85 * <pre> 86 * Optional. A page token, received from a previous `ListSubscribers` call. 87 * Provide this to retrieve the subsequent page. 88 * When paginating, all other parameters provided to `ListSubscribers` must 89 * match the call that provided the page token. 90 * </pre> 91 * 92 * <code>string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];</code> 93 * 94 * @return The bytes for pageToken. 95 */ getPageTokenBytes()96 com.google.protobuf.ByteString getPageTokenBytes(); 97 } 98