com.google.pubsub.v1.ListSubscriptionsRequestOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grpc-google-cloud-pubsub-v1 Show documentation
Show all versions of grpc-google-cloud-pubsub-v1 Show documentation
GRPC library for grpc-google-cloud-pubsub-v1
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/pubsub/v1/pubsub.proto
package com.google.pubsub.v1;
public interface ListSubscriptionsRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.pubsub.v1.ListSubscriptionsRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* The name of the cloud project that subscriptions belong to.
*
*
* optional string project = 1;
*/
java.lang.String getProject();
/**
*
* The name of the cloud project that subscriptions belong to.
*
*
* optional string project = 1;
*/
com.google.protobuf.ByteString
getProjectBytes();
/**
*
* Maximum number of subscriptions to return.
*
*
* optional int32 page_size = 2;
*/
int getPageSize();
/**
*
* The value returned by the last `ListSubscriptionsResponse`; indicates that
* this is a continuation of a prior `ListSubscriptions` call, and that the
* system should return the next page of data.
*
*
* optional string page_token = 3;
*/
java.lang.String getPageToken();
/**
*
* The value returned by the last `ListSubscriptionsResponse`; indicates that
* this is a continuation of a prior `ListSubscriptions` call, and that the
* system should return the next page of data.
*
*
* optional string page_token = 3;
*/
com.google.protobuf.ByteString
getPageTokenBytes();
}