Package com.google.cloud.aiplatform.v1
Interface ListTensorboardsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListTensorboardsResponse,ListTensorboardsResponse.Builder
public interface ListTensorboardsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetNextPageToken()A token, which can be sent as [ListTensorboardsRequest.page_token][google.cloud.aiplatform.v1.ListTensorboardsRequest.page_token] to retrieve the next page.com.google.protobuf.ByteStringgetNextPageTokenBytes()A token, which can be sent as [ListTensorboardsRequest.page_token][google.cloud.aiplatform.v1.ListTensorboardsRequest.page_token] to retrieve the next page.TensorboardgetTensorboards(int index)The Tensorboards mathching the request.intgetTensorboardsCount()The Tensorboards mathching the request.List<Tensorboard>getTensorboardsList()The Tensorboards mathching the request.TensorboardOrBuildergetTensorboardsOrBuilder(int index)The Tensorboards mathching the request.List<? extends TensorboardOrBuilder>getTensorboardsOrBuilderList()The Tensorboards mathching the request.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTensorboardsList
List<Tensorboard> getTensorboardsList()
The Tensorboards mathching the request.
repeated .google.cloud.aiplatform.v1.Tensorboard tensorboards = 1;
-
getTensorboards
Tensorboard getTensorboards(int index)
The Tensorboards mathching the request.
repeated .google.cloud.aiplatform.v1.Tensorboard tensorboards = 1;
-
getTensorboardsCount
int getTensorboardsCount()
The Tensorboards mathching the request.
repeated .google.cloud.aiplatform.v1.Tensorboard tensorboards = 1;
-
getTensorboardsOrBuilderList
List<? extends TensorboardOrBuilder> getTensorboardsOrBuilderList()
The Tensorboards mathching the request.
repeated .google.cloud.aiplatform.v1.Tensorboard tensorboards = 1;
-
getTensorboardsOrBuilder
TensorboardOrBuilder getTensorboardsOrBuilder(int index)
The Tensorboards mathching the request.
repeated .google.cloud.aiplatform.v1.Tensorboard tensorboards = 1;
-
getNextPageToken
String getNextPageToken()
A token, which can be sent as [ListTensorboardsRequest.page_token][google.cloud.aiplatform.v1.ListTensorboardsRequest.page_token] to retrieve the next page. If this field is omitted, there are no subsequent pages.
string next_page_token = 2;- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
A token, which can be sent as [ListTensorboardsRequest.page_token][google.cloud.aiplatform.v1.ListTensorboardsRequest.page_token] to retrieve the next page. If this field is omitted, there are no subsequent pages.
string next_page_token = 2;- Returns:
- The bytes for nextPageToken.
-
-