Interface ImportDataOperationResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ImportDataOperationResponse
,ImportDataOperationResponse.Builder
public interface ImportDataOperationResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDataset()
Ouptut only.com.google.protobuf.ByteString
getDatasetBytes()
Ouptut only.int
getImportCount()
Output only.int
getTotalCount()
Output only.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDataset
String getDataset()
Ouptut only. The name of imported dataset.
string dataset = 1;
- Returns:
- The dataset.
-
getDatasetBytes
com.google.protobuf.ByteString getDatasetBytes()
Ouptut only. The name of imported dataset.
string dataset = 1;
- Returns:
- The bytes for dataset.
-
getTotalCount
int getTotalCount()
Output only. Total number of examples requested to import
int32 total_count = 2;
- Returns:
- The totalCount.
-
getImportCount
int getImportCount()
Output only. Number of examples imported successfully.
int32 import_count = 3;
- Returns:
- The importCount.
-
-