public static interface EvaluationRun.ProgressOrBuilder extends MessageOrBuilderImplements
MessageOrBuilderMethods
getCompletedCount()
public abstract int getCompletedCount()Output only. Number of evaluation results that finished successfully. (EvaluationResult.execution_state is COMPLETED).
int32 completed_count = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
| Returns | |
|---|---|
| Type | Description |
int |
The completedCount. |
getErrorCount()
public abstract int getErrorCount()Output only. Number of evaluation results that failed to execute. (EvaluationResult.execution_state is ERROR).
int32 error_count = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
| Returns | |
|---|---|
| Type | Description |
int |
The errorCount. |
getFailedCount()
public abstract int getFailedCount()Output only. Number of completed evaluation results with an outcome of FAIL. (EvaluationResult.execution_state is COMPLETED and EvaluationResult.evaluation_status is FAIL).
int32 failed_count = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
| Returns | |
|---|---|
| Type | Description |
int |
The failedCount. |
getPassedCount()
public abstract int getPassedCount()Output only. Number of completed evaluation results with an outcome of PASS. (EvaluationResult.execution_state is COMPLETED and EvaluationResult.evaluation_status is PASS).
int32 passed_count = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
| Returns | |
|---|---|
| Type | Description |
int |
The passedCount. |
getTotalCount()
public abstract int getTotalCount()Output only. Total number of evaluation results in this run.
int32 total_count = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
| Returns | |
|---|---|
| Type | Description |
int |
The totalCount. |