Package com.google.cloud.aiplatform.v1
Interface CompletionStatsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CompletionStats
,CompletionStats.Builder
public interface CompletionStatsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getFailedCount()
Output only.long
getIncompleteCount()
Output only.long
getSuccessfulCount()
Output only.long
getSuccessfulForecastPointCount()
Output only.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getSuccessfulCount
long getSuccessfulCount()
Output only. The number of entities that had been processed successfully.
int64 successful_count = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The successfulCount.
-
getFailedCount
long getFailedCount()
Output only. The number of entities for which any error was encountered.
int64 failed_count = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The failedCount.
-
getIncompleteCount
long getIncompleteCount()
Output only. In cases when enough errors are encountered a job, pipeline, or operation may be failed as a whole. Below is the number of entities for which the processing had not been finished (either in successful or failed state). Set to -1 if the number is unknown (for example, the operation failed before the total entity number could be collected).
int64 incomplete_count = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The incompleteCount.
-
getSuccessfulForecastPointCount
long getSuccessfulForecastPointCount()
Output only. The number of the successful forecast points that are generated by the forecasting model. This is ONLY used by the forecasting batch prediction.
int64 successful_forecast_point_count = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The successfulForecastPointCount.
-
-