Interface ReadTensorboardBlobDataRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ReadTensorboardBlobDataRequest,ReadTensorboardBlobDataRequest.Builder
public interface ReadTensorboardBlobDataRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetBlobIds(int index)IDs of the blobs to read.com.google.protobuf.ByteStringgetBlobIdsBytes(int index)IDs of the blobs to read.intgetBlobIdsCount()IDs of the blobs to read.List<String>getBlobIdsList()IDs of the blobs to read.StringgetTimeSeries()Required.com.google.protobuf.ByteStringgetTimeSeriesBytes()Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTimeSeries
String getTimeSeries()
Required. The resource name of the TensorboardTimeSeries to list Blobs. Format: `projects/{project}/locations/{location}/tensorboards/{tensorboard}/experiments/{experiment}/runs/{run}/timeSeries/{time_series}`string time_series = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }- Returns:
- The timeSeries.
-
getTimeSeriesBytes
com.google.protobuf.ByteString getTimeSeriesBytes()
Required. The resource name of the TensorboardTimeSeries to list Blobs. Format: `projects/{project}/locations/{location}/tensorboards/{tensorboard}/experiments/{experiment}/runs/{run}/timeSeries/{time_series}`string time_series = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }- Returns:
- The bytes for timeSeries.
-
getBlobIdsList
List<String> getBlobIdsList()
IDs of the blobs to read.
repeated string blob_ids = 2;- Returns:
- A list containing the blobIds.
-
getBlobIdsCount
int getBlobIdsCount()
IDs of the blobs to read.
repeated string blob_ids = 2;- Returns:
- The count of blobIds.
-
getBlobIds
String getBlobIds(int index)
IDs of the blobs to read.
repeated string blob_ids = 2;- Parameters:
index- The index of the element to return.- Returns:
- The blobIds at the given index.
-
getBlobIdsBytes
com.google.protobuf.ByteString getBlobIdsBytes(int index)
IDs of the blobs to read.
repeated string blob_ids = 2;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the blobIds at the given index.
-
-