Interface ExportTensorboardTimeSeriesDataResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ExportTensorboardTimeSeriesDataResponse,ExportTensorboardTimeSeriesDataResponse.Builder
public interface ExportTensorboardTimeSeriesDataResponseOrBuilder 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 [page_token][google.cloud.aiplatform.v1beta1.ExportTensorboardTimeSeriesDataRequest.page_token] to retrieve the next page.com.google.protobuf.ByteStringgetNextPageTokenBytes()A token, which can be sent as [page_token][google.cloud.aiplatform.v1beta1.ExportTensorboardTimeSeriesDataRequest.page_token] to retrieve the next page.TimeSeriesDataPointgetTimeSeriesDataPoints(int index)The returned time series data points.intgetTimeSeriesDataPointsCount()The returned time series data points.List<TimeSeriesDataPoint>getTimeSeriesDataPointsList()The returned time series data points.TimeSeriesDataPointOrBuildergetTimeSeriesDataPointsOrBuilder(int index)The returned time series data points.List<? extends TimeSeriesDataPointOrBuilder>getTimeSeriesDataPointsOrBuilderList()The returned time series data points.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTimeSeriesDataPointsList
List<TimeSeriesDataPoint> getTimeSeriesDataPointsList()
The returned time series data points.
repeated .google.cloud.aiplatform.v1beta1.TimeSeriesDataPoint time_series_data_points = 1;
-
getTimeSeriesDataPoints
TimeSeriesDataPoint getTimeSeriesDataPoints(int index)
The returned time series data points.
repeated .google.cloud.aiplatform.v1beta1.TimeSeriesDataPoint time_series_data_points = 1;
-
getTimeSeriesDataPointsCount
int getTimeSeriesDataPointsCount()
The returned time series data points.
repeated .google.cloud.aiplatform.v1beta1.TimeSeriesDataPoint time_series_data_points = 1;
-
getTimeSeriesDataPointsOrBuilderList
List<? extends TimeSeriesDataPointOrBuilder> getTimeSeriesDataPointsOrBuilderList()
The returned time series data points.
repeated .google.cloud.aiplatform.v1beta1.TimeSeriesDataPoint time_series_data_points = 1;
-
getTimeSeriesDataPointsOrBuilder
TimeSeriesDataPointOrBuilder getTimeSeriesDataPointsOrBuilder(int index)
The returned time series data points.
repeated .google.cloud.aiplatform.v1beta1.TimeSeriesDataPoint time_series_data_points = 1;
-
getNextPageToken
String getNextPageToken()
A token, which can be sent as [page_token][google.cloud.aiplatform.v1beta1.ExportTensorboardTimeSeriesDataRequest.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 [page_token][google.cloud.aiplatform.v1beta1.ExportTensorboardTimeSeriesDataRequest.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.
-
-