Package com.google.logging.v2
Interface ListBucketsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListBucketsResponse
,ListBucketsResponse.Builder
public interface ListBucketsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LogBucket
getBuckets(int index)
A list of buckets.int
getBucketsCount()
A list of buckets.List<LogBucket>
getBucketsList()
A list of buckets.LogBucketOrBuilder
getBucketsOrBuilder(int index)
A list of buckets.List<? extends LogBucketOrBuilder>
getBucketsOrBuilderList()
A list of buckets.String
getNextPageToken()
If there might be more results than appear in this response, then `nextPageToken` is included.com.google.protobuf.ByteString
getNextPageTokenBytes()
If there might be more results than appear in this response, then `nextPageToken` is included.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getBucketsList
List<LogBucket> getBucketsList()
A list of buckets.
repeated .google.logging.v2.LogBucket buckets = 1;
-
getBuckets
LogBucket getBuckets(int index)
A list of buckets.
repeated .google.logging.v2.LogBucket buckets = 1;
-
getBucketsCount
int getBucketsCount()
A list of buckets.
repeated .google.logging.v2.LogBucket buckets = 1;
-
getBucketsOrBuilderList
List<? extends LogBucketOrBuilder> getBucketsOrBuilderList()
A list of buckets.
repeated .google.logging.v2.LogBucket buckets = 1;
-
getBucketsOrBuilder
LogBucketOrBuilder getBucketsOrBuilder(int index)
A list of buckets.
repeated .google.logging.v2.LogBucket buckets = 1;
-
getNextPageToken
String getNextPageToken()
If there might be more results than appear in this response, then `nextPageToken` is included. To get the next set of results, call the same method again using the value of `nextPageToken` as `pageToken`.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
If there might be more results than appear in this response, then `nextPageToken` is included. To get the next set of results, call the same method again using the value of `nextPageToken` as `pageToken`.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-