Package com.google.cloud.aiplatform.v1
Interface WriteTensorboardRunDataRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
WriteTensorboardRunDataRequest
,WriteTensorboardRunDataRequest.Builder
public interface WriteTensorboardRunDataRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getTensorboardRun()
Required.com.google.protobuf.ByteString
getTensorboardRunBytes()
Required.TimeSeriesData
getTimeSeriesData(int index)
Required.int
getTimeSeriesDataCount()
Required.List<TimeSeriesData>
getTimeSeriesDataList()
Required.TimeSeriesDataOrBuilder
getTimeSeriesDataOrBuilder(int index)
Required.List<? extends TimeSeriesDataOrBuilder>
getTimeSeriesDataOrBuilderList()
Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTensorboardRun
String getTensorboardRun()
Required. The resource name of the TensorboardRun to write data to. Format: `projects/{project}/locations/{location}/tensorboards/{tensorboard}/experiments/{experiment}/runs/{run}`
string tensorboard_run = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The tensorboardRun.
-
getTensorboardRunBytes
com.google.protobuf.ByteString getTensorboardRunBytes()
Required. The resource name of the TensorboardRun to write data to. Format: `projects/{project}/locations/{location}/tensorboards/{tensorboard}/experiments/{experiment}/runs/{run}`
string tensorboard_run = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The bytes for tensorboardRun.
-
getTimeSeriesDataList
List<TimeSeriesData> getTimeSeriesDataList()
Required. The TensorboardTimeSeries data to write. Values with in a time series are indexed by their step value. Repeated writes to the same step will overwrite the existing value for that step. The upper limit of data points per write request is 5000.
repeated .google.cloud.aiplatform.v1.TimeSeriesData time_series_data = 2 [(.google.api.field_behavior) = REQUIRED];
-
getTimeSeriesData
TimeSeriesData getTimeSeriesData(int index)
Required. The TensorboardTimeSeries data to write. Values with in a time series are indexed by their step value. Repeated writes to the same step will overwrite the existing value for that step. The upper limit of data points per write request is 5000.
repeated .google.cloud.aiplatform.v1.TimeSeriesData time_series_data = 2 [(.google.api.field_behavior) = REQUIRED];
-
getTimeSeriesDataCount
int getTimeSeriesDataCount()
Required. The TensorboardTimeSeries data to write. Values with in a time series are indexed by their step value. Repeated writes to the same step will overwrite the existing value for that step. The upper limit of data points per write request is 5000.
repeated .google.cloud.aiplatform.v1.TimeSeriesData time_series_data = 2 [(.google.api.field_behavior) = REQUIRED];
-
getTimeSeriesDataOrBuilderList
List<? extends TimeSeriesDataOrBuilder> getTimeSeriesDataOrBuilderList()
Required. The TensorboardTimeSeries data to write. Values with in a time series are indexed by their step value. Repeated writes to the same step will overwrite the existing value for that step. The upper limit of data points per write request is 5000.
repeated .google.cloud.aiplatform.v1.TimeSeriesData time_series_data = 2 [(.google.api.field_behavior) = REQUIRED];
-
getTimeSeriesDataOrBuilder
TimeSeriesDataOrBuilder getTimeSeriesDataOrBuilder(int index)
Required. The TensorboardTimeSeries data to write. Values with in a time series are indexed by their step value. Repeated writes to the same step will overwrite the existing value for that step. The upper limit of data points per write request is 5000.
repeated .google.cloud.aiplatform.v1.TimeSeriesData time_series_data = 2 [(.google.api.field_behavior) = REQUIRED];
-
-