Package com.google.cloud.aiplatform.v1
Interface ReadTensorboardTimeSeriesDataRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ReadTensorboardTimeSeriesDataRequest,ReadTensorboardTimeSeriesDataRequest.Builder
public interface ReadTensorboardTimeSeriesDataRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetFilter()Reads the TensorboardTimeSeries' data that match the filter expression.com.google.protobuf.ByteStringgetFilterBytes()Reads the TensorboardTimeSeries' data that match the filter expression.intgetMaxDataPoints()The maximum number of TensorboardTimeSeries' data to return.StringgetTensorboardTimeSeries()Required.com.google.protobuf.ByteStringgetTensorboardTimeSeriesBytes()Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTensorboardTimeSeries
String getTensorboardTimeSeries()
Required. The resource name of the TensorboardTimeSeries to read data from. Format: `projects/{project}/locations/{location}/tensorboards/{tensorboard}/experiments/{experiment}/runs/{run}/timeSeries/{time_series}`string tensorboard_time_series = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }- Returns:
- The tensorboardTimeSeries.
-
getTensorboardTimeSeriesBytes
com.google.protobuf.ByteString getTensorboardTimeSeriesBytes()
Required. The resource name of the TensorboardTimeSeries to read data from. Format: `projects/{project}/locations/{location}/tensorboards/{tensorboard}/experiments/{experiment}/runs/{run}/timeSeries/{time_series}`string tensorboard_time_series = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }- Returns:
- The bytes for tensorboardTimeSeries.
-
getMaxDataPoints
int getMaxDataPoints()
The maximum number of TensorboardTimeSeries' data to return. This value should be a positive integer. This value can be set to -1 to return all data.
int32 max_data_points = 2;- Returns:
- The maxDataPoints.
-
getFilter
String getFilter()
Reads the TensorboardTimeSeries' data that match the filter expression.
string filter = 3;- Returns:
- The filter.
-
getFilterBytes
com.google.protobuf.ByteString getFilterBytes()
Reads the TensorboardTimeSeries' data that match the filter expression.
string filter = 3;- Returns:
- The bytes for filter.
-
-