Interface TimeSeriesDataOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
TimeSeriesData
,TimeSeriesData.Builder
public interface TimeSeriesDataOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getTensorboardTimeSeriesId()
Required.com.google.protobuf.ByteString
getTensorboardTimeSeriesIdBytes()
Required.TimeSeriesDataPoint
getValues(int index)
Required.int
getValuesCount()
Required.List<TimeSeriesDataPoint>
getValuesList()
Required.TimeSeriesDataPointOrBuilder
getValuesOrBuilder(int index)
Required.List<? extends TimeSeriesDataPointOrBuilder>
getValuesOrBuilderList()
Required.TensorboardTimeSeries.ValueType
getValueType()
Required.int
getValueTypeValue()
Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTensorboardTimeSeriesId
String getTensorboardTimeSeriesId()
Required. The ID of the TensorboardTimeSeries, which will become the final component of the TensorboardTimeSeries' resource name
string tensorboard_time_series_id = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The tensorboardTimeSeriesId.
-
getTensorboardTimeSeriesIdBytes
com.google.protobuf.ByteString getTensorboardTimeSeriesIdBytes()
Required. The ID of the TensorboardTimeSeries, which will become the final component of the TensorboardTimeSeries' resource name
string tensorboard_time_series_id = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The bytes for tensorboardTimeSeriesId.
-
getValueTypeValue
int getValueTypeValue()
Required. Immutable. The value type of this time series. All the values in this time series data must match this value type.
.google.cloud.aiplatform.v1beta1.TensorboardTimeSeries.ValueType value_type = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.field_behavior) = IMMUTABLE];
- Returns:
- The enum numeric value on the wire for valueType.
-
getValueType
TensorboardTimeSeries.ValueType getValueType()
Required. Immutable. The value type of this time series. All the values in this time series data must match this value type.
.google.cloud.aiplatform.v1beta1.TensorboardTimeSeries.ValueType value_type = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.field_behavior) = IMMUTABLE];
- Returns:
- The valueType.
-
getValuesList
List<TimeSeriesDataPoint> getValuesList()
Required. Data points in this time series.
repeated .google.cloud.aiplatform.v1beta1.TimeSeriesDataPoint values = 3 [(.google.api.field_behavior) = REQUIRED];
-
getValues
TimeSeriesDataPoint getValues(int index)
Required. Data points in this time series.
repeated .google.cloud.aiplatform.v1beta1.TimeSeriesDataPoint values = 3 [(.google.api.field_behavior) = REQUIRED];
-
getValuesCount
int getValuesCount()
Required. Data points in this time series.
repeated .google.cloud.aiplatform.v1beta1.TimeSeriesDataPoint values = 3 [(.google.api.field_behavior) = REQUIRED];
-
getValuesOrBuilderList
List<? extends TimeSeriesDataPointOrBuilder> getValuesOrBuilderList()
Required. Data points in this time series.
repeated .google.cloud.aiplatform.v1beta1.TimeSeriesDataPoint values = 3 [(.google.api.field_behavior) = REQUIRED];
-
getValuesOrBuilder
TimeSeriesDataPointOrBuilder getValuesOrBuilder(int index)
Required. Data points in this time series.
repeated .google.cloud.aiplatform.v1beta1.TimeSeriesDataPoint values = 3 [(.google.api.field_behavior) = REQUIRED];
-
-