Class: Google::Cloud::Ces::V1beta::EvaluationRun
- Inherits:
-
Object
- Object
- Google::Cloud::Ces::V1beta::EvaluationRun
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/ces/v1beta/evaluation.rb
Overview
An evaluation run represents an all the evaluation results from an evaluation execution.
Defined Under Namespace
Modules: EvaluationRunState, EvaluationType Classes: EvaluationRunSummariesEntry, EvaluationRunSummary, Progress
Instance Attribute Summary collapse
-
#app_version ⇒ ::String
readonly
Output only.
-
#app_version_display_name ⇒ ::String
readonly
Output only.
-
#changelog ⇒ ::String
readonly
Output only.
-
#changelog_create_time ⇒ ::Google::Protobuf::Timestamp
readonly
Output only.
-
#config ⇒ ::Google::Cloud::Ces::V1beta::EvaluationConfig
readonly
Output only.
-
#create_time ⇒ ::Google::Protobuf::Timestamp
readonly
Output only.
-
#display_name ⇒ ::String
Optional.
-
#error ⇒ ::Google::Rpc::Status
readonly
deprecated
Deprecated.
This field is deprecated and may be removed in the next major version update.
-
#error_info ⇒ ::Google::Cloud::Ces::V1beta::EvaluationErrorInfo
readonly
Output only.
-
#evaluation_dataset ⇒ ::String
readonly
Output only.
-
#evaluation_results ⇒ ::Array<::String>
readonly
Output only.
-
#evaluation_run_summaries ⇒ ::Google::Protobuf::Map{::String => ::Google::Cloud::Ces::V1beta::EvaluationRun::EvaluationRunSummary}
readonly
Output only.
-
#evaluation_type ⇒ ::Google::Cloud::Ces::V1beta::EvaluationRun::EvaluationType
readonly
Output only.
-
#evaluations ⇒ ::Array<::String>
readonly
Output only.
-
#golden_run_method ⇒ ::Google::Cloud::Ces::V1beta::GoldenRunMethod
readonly
Output only.
-
#initiated_by ⇒ ::String
readonly
Output only.
-
#latency_report ⇒ ::Google::Cloud::Ces::V1beta::LatencyReport
readonly
Output only.
-
#name ⇒ ::String
Identifier.
-
#operation ⇒ ::String
readonly
Output only.
-
#optimization_config ⇒ ::Google::Cloud::Ces::V1beta::OptimizationConfig
Optional.
-
#persona_run_configs ⇒ ::Array<::Google::Cloud::Ces::V1beta::PersonaRunConfig>
readonly
Output only.
-
#progress ⇒ ::Google::Cloud::Ces::V1beta::EvaluationRun::Progress
readonly
Output only.
-
#run_count ⇒ ::Integer
readonly
Output only.
-
#scheduled_evaluation_run ⇒ ::String
readonly
Output only.
-
#state ⇒ ::Google::Cloud::Ces::V1beta::EvaluationRun::EvaluationRunState
readonly
Output only.
Instance Attribute Details
#app_version ⇒ ::String (readonly)
Returns Output only. The app version to evaluate.
Format:
projects/{project}/locations/{location}/apps/{app}/versions/{version}.
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 |
# File 'proto_docs/google/cloud/ces/v1beta/evaluation.rb', line 1157 class EvaluationRun include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The progress of the evaluation run. # @!attribute [r] total_count # @return [::Integer] # Output only. Total number of evaluation results in this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # FAIL. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is FAIL). # @!attribute [r] error_count # @return [::Integer] # Output only. Number of evaluation results that failed to execute. # (EvaluationResult.execution_state is ERROR). # @!attribute [r] completed_count # @return [::Integer] # Output only. Number of evaluation results that finished successfully. # (EvaluationResult.execution_state is COMPLETED). # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # PASS. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is PASS). # @!attribute [r] cancelled_count # @return [::Integer] # Output only. Number of evaluation results that were cancelled. # (EvaluationResult.execution_state is CANCELLED). class Progress include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Contains the summary of passed and failed result counts for a specific # evaluation in an evaluation run. # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of passed results for the associated Evaluation in # this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of failed results for the associated Evaluation in # this run. # @!attribute [r] error_count # @return [::Integer] # Output only. Number of error results for the associated Evaluation in # this run. class EvaluationRunSummary include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::Google::Cloud::Ces::V1beta::EvaluationRun::EvaluationRunSummary] class EvaluationRunSummariesEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The type of the evaluations in this run. # Additional values may be added in the future. module EvaluationType # Evaluation type is not specified. EVALUATION_TYPE_UNSPECIFIED = 0 # Golden evaluation. GOLDEN = 1 # Scenario evaluation. SCENARIO = 2 # Indicates the run includes a mix of golden and scenario evaluations. MIXED = 3 end # The state of the evaluation run. module EvaluationRunState # Evaluation run state is not specified. EVALUATION_RUN_STATE_UNSPECIFIED = 0 # Indicates the evaluation run is queued. QUEUED = 5 # Evaluation run is running. RUNNING = 1 # Evaluation run has completed. COMPLETED = 2 # The evaluation run has an error. ERROR = 3 # Evaluation run was cancelled. CANCELLED = 4 end end |
#app_version_display_name ⇒ ::String (readonly)
Returns Output only. The display name of the app_version that the evaluation ran
against.
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 |
# File 'proto_docs/google/cloud/ces/v1beta/evaluation.rb', line 1157 class EvaluationRun include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The progress of the evaluation run. # @!attribute [r] total_count # @return [::Integer] # Output only. Total number of evaluation results in this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # FAIL. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is FAIL). # @!attribute [r] error_count # @return [::Integer] # Output only. Number of evaluation results that failed to execute. # (EvaluationResult.execution_state is ERROR). # @!attribute [r] completed_count # @return [::Integer] # Output only. Number of evaluation results that finished successfully. # (EvaluationResult.execution_state is COMPLETED). # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # PASS. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is PASS). # @!attribute [r] cancelled_count # @return [::Integer] # Output only. Number of evaluation results that were cancelled. # (EvaluationResult.execution_state is CANCELLED). class Progress include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Contains the summary of passed and failed result counts for a specific # evaluation in an evaluation run. # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of passed results for the associated Evaluation in # this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of failed results for the associated Evaluation in # this run. # @!attribute [r] error_count # @return [::Integer] # Output only. Number of error results for the associated Evaluation in # this run. class EvaluationRunSummary include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::Google::Cloud::Ces::V1beta::EvaluationRun::EvaluationRunSummary] class EvaluationRunSummariesEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The type of the evaluations in this run. # Additional values may be added in the future. module EvaluationType # Evaluation type is not specified. EVALUATION_TYPE_UNSPECIFIED = 0 # Golden evaluation. GOLDEN = 1 # Scenario evaluation. SCENARIO = 2 # Indicates the run includes a mix of golden and scenario evaluations. MIXED = 3 end # The state of the evaluation run. module EvaluationRunState # Evaluation run state is not specified. EVALUATION_RUN_STATE_UNSPECIFIED = 0 # Indicates the evaluation run is queued. QUEUED = 5 # Evaluation run is running. RUNNING = 1 # Evaluation run has completed. COMPLETED = 2 # The evaluation run has an error. ERROR = 3 # Evaluation run was cancelled. CANCELLED = 4 end end |
#changelog ⇒ ::String (readonly)
Returns Output only. The changelog of the app version that the evaluation ran against. This is populated if user runs evaluation on latest/draft.
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 |
# File 'proto_docs/google/cloud/ces/v1beta/evaluation.rb', line 1157 class EvaluationRun include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The progress of the evaluation run. # @!attribute [r] total_count # @return [::Integer] # Output only. Total number of evaluation results in this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # FAIL. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is FAIL). # @!attribute [r] error_count # @return [::Integer] # Output only. Number of evaluation results that failed to execute. # (EvaluationResult.execution_state is ERROR). # @!attribute [r] completed_count # @return [::Integer] # Output only. Number of evaluation results that finished successfully. # (EvaluationResult.execution_state is COMPLETED). # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # PASS. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is PASS). # @!attribute [r] cancelled_count # @return [::Integer] # Output only. Number of evaluation results that were cancelled. # (EvaluationResult.execution_state is CANCELLED). class Progress include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Contains the summary of passed and failed result counts for a specific # evaluation in an evaluation run. # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of passed results for the associated Evaluation in # this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of failed results for the associated Evaluation in # this run. # @!attribute [r] error_count # @return [::Integer] # Output only. Number of error results for the associated Evaluation in # this run. class EvaluationRunSummary include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::Google::Cloud::Ces::V1beta::EvaluationRun::EvaluationRunSummary] class EvaluationRunSummariesEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The type of the evaluations in this run. # Additional values may be added in the future. module EvaluationType # Evaluation type is not specified. EVALUATION_TYPE_UNSPECIFIED = 0 # Golden evaluation. GOLDEN = 1 # Scenario evaluation. SCENARIO = 2 # Indicates the run includes a mix of golden and scenario evaluations. MIXED = 3 end # The state of the evaluation run. module EvaluationRunState # Evaluation run state is not specified. EVALUATION_RUN_STATE_UNSPECIFIED = 0 # Indicates the evaluation run is queued. QUEUED = 5 # Evaluation run is running. RUNNING = 1 # Evaluation run has completed. COMPLETED = 2 # The evaluation run has an error. ERROR = 3 # Evaluation run was cancelled. CANCELLED = 4 end end |
#changelog_create_time ⇒ ::Google::Protobuf::Timestamp (readonly)
Returns Output only. The create time of the changelog of the app version that the evaluation ran against. This is populated if user runs evaluation on latest/draft.
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 |
# File 'proto_docs/google/cloud/ces/v1beta/evaluation.rb', line 1157 class EvaluationRun include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The progress of the evaluation run. # @!attribute [r] total_count # @return [::Integer] # Output only. Total number of evaluation results in this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # FAIL. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is FAIL). # @!attribute [r] error_count # @return [::Integer] # Output only. Number of evaluation results that failed to execute. # (EvaluationResult.execution_state is ERROR). # @!attribute [r] completed_count # @return [::Integer] # Output only. Number of evaluation results that finished successfully. # (EvaluationResult.execution_state is COMPLETED). # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # PASS. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is PASS). # @!attribute [r] cancelled_count # @return [::Integer] # Output only. Number of evaluation results that were cancelled. # (EvaluationResult.execution_state is CANCELLED). class Progress include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Contains the summary of passed and failed result counts for a specific # evaluation in an evaluation run. # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of passed results for the associated Evaluation in # this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of failed results for the associated Evaluation in # this run. # @!attribute [r] error_count # @return [::Integer] # Output only. Number of error results for the associated Evaluation in # this run. class EvaluationRunSummary include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::Google::Cloud::Ces::V1beta::EvaluationRun::EvaluationRunSummary] class EvaluationRunSummariesEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The type of the evaluations in this run. # Additional values may be added in the future. module EvaluationType # Evaluation type is not specified. EVALUATION_TYPE_UNSPECIFIED = 0 # Golden evaluation. GOLDEN = 1 # Scenario evaluation. SCENARIO = 2 # Indicates the run includes a mix of golden and scenario evaluations. MIXED = 3 end # The state of the evaluation run. module EvaluationRunState # Evaluation run state is not specified. EVALUATION_RUN_STATE_UNSPECIFIED = 0 # Indicates the evaluation run is queued. QUEUED = 5 # Evaluation run is running. RUNNING = 1 # Evaluation run has completed. COMPLETED = 2 # The evaluation run has an error. ERROR = 3 # Evaluation run was cancelled. CANCELLED = 4 end end |
#config ⇒ ::Google::Cloud::Ces::V1beta::EvaluationConfig (readonly)
Returns Output only. The configuration used in the run.
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 |
# File 'proto_docs/google/cloud/ces/v1beta/evaluation.rb', line 1157 class EvaluationRun include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The progress of the evaluation run. # @!attribute [r] total_count # @return [::Integer] # Output only. Total number of evaluation results in this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # FAIL. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is FAIL). # @!attribute [r] error_count # @return [::Integer] # Output only. Number of evaluation results that failed to execute. # (EvaluationResult.execution_state is ERROR). # @!attribute [r] completed_count # @return [::Integer] # Output only. Number of evaluation results that finished successfully. # (EvaluationResult.execution_state is COMPLETED). # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # PASS. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is PASS). # @!attribute [r] cancelled_count # @return [::Integer] # Output only. Number of evaluation results that were cancelled. # (EvaluationResult.execution_state is CANCELLED). class Progress include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Contains the summary of passed and failed result counts for a specific # evaluation in an evaluation run. # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of passed results for the associated Evaluation in # this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of failed results for the associated Evaluation in # this run. # @!attribute [r] error_count # @return [::Integer] # Output only. Number of error results for the associated Evaluation in # this run. class EvaluationRunSummary include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::Google::Cloud::Ces::V1beta::EvaluationRun::EvaluationRunSummary] class EvaluationRunSummariesEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The type of the evaluations in this run. # Additional values may be added in the future. module EvaluationType # Evaluation type is not specified. EVALUATION_TYPE_UNSPECIFIED = 0 # Golden evaluation. GOLDEN = 1 # Scenario evaluation. SCENARIO = 2 # Indicates the run includes a mix of golden and scenario evaluations. MIXED = 3 end # The state of the evaluation run. module EvaluationRunState # Evaluation run state is not specified. EVALUATION_RUN_STATE_UNSPECIFIED = 0 # Indicates the evaluation run is queued. QUEUED = 5 # Evaluation run is running. RUNNING = 1 # Evaluation run has completed. COMPLETED = 2 # The evaluation run has an error. ERROR = 3 # Evaluation run was cancelled. CANCELLED = 4 end end |
#create_time ⇒ ::Google::Protobuf::Timestamp (readonly)
Returns Output only. Timestamp when the evaluation run was created.
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 |
# File 'proto_docs/google/cloud/ces/v1beta/evaluation.rb', line 1157 class EvaluationRun include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The progress of the evaluation run. # @!attribute [r] total_count # @return [::Integer] # Output only. Total number of evaluation results in this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # FAIL. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is FAIL). # @!attribute [r] error_count # @return [::Integer] # Output only. Number of evaluation results that failed to execute. # (EvaluationResult.execution_state is ERROR). # @!attribute [r] completed_count # @return [::Integer] # Output only. Number of evaluation results that finished successfully. # (EvaluationResult.execution_state is COMPLETED). # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # PASS. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is PASS). # @!attribute [r] cancelled_count # @return [::Integer] # Output only. Number of evaluation results that were cancelled. # (EvaluationResult.execution_state is CANCELLED). class Progress include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Contains the summary of passed and failed result counts for a specific # evaluation in an evaluation run. # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of passed results for the associated Evaluation in # this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of failed results for the associated Evaluation in # this run. # @!attribute [r] error_count # @return [::Integer] # Output only. Number of error results for the associated Evaluation in # this run. class EvaluationRunSummary include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::Google::Cloud::Ces::V1beta::EvaluationRun::EvaluationRunSummary] class EvaluationRunSummariesEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The type of the evaluations in this run. # Additional values may be added in the future. module EvaluationType # Evaluation type is not specified. EVALUATION_TYPE_UNSPECIFIED = 0 # Golden evaluation. GOLDEN = 1 # Scenario evaluation. SCENARIO = 2 # Indicates the run includes a mix of golden and scenario evaluations. MIXED = 3 end # The state of the evaluation run. module EvaluationRunState # Evaluation run state is not specified. EVALUATION_RUN_STATE_UNSPECIFIED = 0 # Indicates the evaluation run is queued. QUEUED = 5 # Evaluation run is running. RUNNING = 1 # Evaluation run has completed. COMPLETED = 2 # The evaluation run has an error. ERROR = 3 # Evaluation run was cancelled. CANCELLED = 4 end end |
#display_name ⇒ ::String
Returns Optional. User-defined display name of the evaluation run.
default: "
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 |
# File 'proto_docs/google/cloud/ces/v1beta/evaluation.rb', line 1157 class EvaluationRun include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The progress of the evaluation run. # @!attribute [r] total_count # @return [::Integer] # Output only. Total number of evaluation results in this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # FAIL. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is FAIL). # @!attribute [r] error_count # @return [::Integer] # Output only. Number of evaluation results that failed to execute. # (EvaluationResult.execution_state is ERROR). # @!attribute [r] completed_count # @return [::Integer] # Output only. Number of evaluation results that finished successfully. # (EvaluationResult.execution_state is COMPLETED). # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # PASS. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is PASS). # @!attribute [r] cancelled_count # @return [::Integer] # Output only. Number of evaluation results that were cancelled. # (EvaluationResult.execution_state is CANCELLED). class Progress include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Contains the summary of passed and failed result counts for a specific # evaluation in an evaluation run. # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of passed results for the associated Evaluation in # this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of failed results for the associated Evaluation in # this run. # @!attribute [r] error_count # @return [::Integer] # Output only. Number of error results for the associated Evaluation in # this run. class EvaluationRunSummary include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::Google::Cloud::Ces::V1beta::EvaluationRun::EvaluationRunSummary] class EvaluationRunSummariesEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The type of the evaluations in this run. # Additional values may be added in the future. module EvaluationType # Evaluation type is not specified. EVALUATION_TYPE_UNSPECIFIED = 0 # Golden evaluation. GOLDEN = 1 # Scenario evaluation. SCENARIO = 2 # Indicates the run includes a mix of golden and scenario evaluations. MIXED = 3 end # The state of the evaluation run. module EvaluationRunState # Evaluation run state is not specified. EVALUATION_RUN_STATE_UNSPECIFIED = 0 # Indicates the evaluation run is queued. QUEUED = 5 # Evaluation run is running. RUNNING = 1 # Evaluation run has completed. COMPLETED = 2 # The evaluation run has an error. ERROR = 3 # Evaluation run was cancelled. CANCELLED = 4 end end |
#error ⇒ ::Google::Rpc::Status (readonly)
This field is deprecated and may be removed in the next major version update.
Returns Output only. Deprecated: Use error_info instead. Errors encountered during execution.
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 |
# File 'proto_docs/google/cloud/ces/v1beta/evaluation.rb', line 1157 class EvaluationRun include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The progress of the evaluation run. # @!attribute [r] total_count # @return [::Integer] # Output only. Total number of evaluation results in this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # FAIL. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is FAIL). # @!attribute [r] error_count # @return [::Integer] # Output only. Number of evaluation results that failed to execute. # (EvaluationResult.execution_state is ERROR). # @!attribute [r] completed_count # @return [::Integer] # Output only. Number of evaluation results that finished successfully. # (EvaluationResult.execution_state is COMPLETED). # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # PASS. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is PASS). # @!attribute [r] cancelled_count # @return [::Integer] # Output only. Number of evaluation results that were cancelled. # (EvaluationResult.execution_state is CANCELLED). class Progress include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Contains the summary of passed and failed result counts for a specific # evaluation in an evaluation run. # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of passed results for the associated Evaluation in # this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of failed results for the associated Evaluation in # this run. # @!attribute [r] error_count # @return [::Integer] # Output only. Number of error results for the associated Evaluation in # this run. class EvaluationRunSummary include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::Google::Cloud::Ces::V1beta::EvaluationRun::EvaluationRunSummary] class EvaluationRunSummariesEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The type of the evaluations in this run. # Additional values may be added in the future. module EvaluationType # Evaluation type is not specified. EVALUATION_TYPE_UNSPECIFIED = 0 # Golden evaluation. GOLDEN = 1 # Scenario evaluation. SCENARIO = 2 # Indicates the run includes a mix of golden and scenario evaluations. MIXED = 3 end # The state of the evaluation run. module EvaluationRunState # Evaluation run state is not specified. EVALUATION_RUN_STATE_UNSPECIFIED = 0 # Indicates the evaluation run is queued. QUEUED = 5 # Evaluation run is running. RUNNING = 1 # Evaluation run has completed. COMPLETED = 2 # The evaluation run has an error. ERROR = 3 # Evaluation run was cancelled. CANCELLED = 4 end end |
#error_info ⇒ ::Google::Cloud::Ces::V1beta::EvaluationErrorInfo (readonly)
Returns Output only. Error information for the evaluation run.
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 |
# File 'proto_docs/google/cloud/ces/v1beta/evaluation.rb', line 1157 class EvaluationRun include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The progress of the evaluation run. # @!attribute [r] total_count # @return [::Integer] # Output only. Total number of evaluation results in this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # FAIL. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is FAIL). # @!attribute [r] error_count # @return [::Integer] # Output only. Number of evaluation results that failed to execute. # (EvaluationResult.execution_state is ERROR). # @!attribute [r] completed_count # @return [::Integer] # Output only. Number of evaluation results that finished successfully. # (EvaluationResult.execution_state is COMPLETED). # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # PASS. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is PASS). # @!attribute [r] cancelled_count # @return [::Integer] # Output only. Number of evaluation results that were cancelled. # (EvaluationResult.execution_state is CANCELLED). class Progress include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Contains the summary of passed and failed result counts for a specific # evaluation in an evaluation run. # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of passed results for the associated Evaluation in # this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of failed results for the associated Evaluation in # this run. # @!attribute [r] error_count # @return [::Integer] # Output only. Number of error results for the associated Evaluation in # this run. class EvaluationRunSummary include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::Google::Cloud::Ces::V1beta::EvaluationRun::EvaluationRunSummary] class EvaluationRunSummariesEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The type of the evaluations in this run. # Additional values may be added in the future. module EvaluationType # Evaluation type is not specified. EVALUATION_TYPE_UNSPECIFIED = 0 # Golden evaluation. GOLDEN = 1 # Scenario evaluation. SCENARIO = 2 # Indicates the run includes a mix of golden and scenario evaluations. MIXED = 3 end # The state of the evaluation run. module EvaluationRunState # Evaluation run state is not specified. EVALUATION_RUN_STATE_UNSPECIFIED = 0 # Indicates the evaluation run is queued. QUEUED = 5 # Evaluation run is running. RUNNING = 1 # Evaluation run has completed. COMPLETED = 2 # The evaluation run has an error. ERROR = 3 # Evaluation run was cancelled. CANCELLED = 4 end end |
#evaluation_dataset ⇒ ::String (readonly)
Returns Output only. The evaluation dataset that this run is associated with. This
field is mutually exclusive with evaluations. Format:
projects/{project}/locations/{location}/apps/{app}/evaluationDatasets/{evaluationDataset}.
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 |
# File 'proto_docs/google/cloud/ces/v1beta/evaluation.rb', line 1157 class EvaluationRun include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The progress of the evaluation run. # @!attribute [r] total_count # @return [::Integer] # Output only. Total number of evaluation results in this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # FAIL. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is FAIL). # @!attribute [r] error_count # @return [::Integer] # Output only. Number of evaluation results that failed to execute. # (EvaluationResult.execution_state is ERROR). # @!attribute [r] completed_count # @return [::Integer] # Output only. Number of evaluation results that finished successfully. # (EvaluationResult.execution_state is COMPLETED). # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # PASS. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is PASS). # @!attribute [r] cancelled_count # @return [::Integer] # Output only. Number of evaluation results that were cancelled. # (EvaluationResult.execution_state is CANCELLED). class Progress include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Contains the summary of passed and failed result counts for a specific # evaluation in an evaluation run. # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of passed results for the associated Evaluation in # this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of failed results for the associated Evaluation in # this run. # @!attribute [r] error_count # @return [::Integer] # Output only. Number of error results for the associated Evaluation in # this run. class EvaluationRunSummary include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::Google::Cloud::Ces::V1beta::EvaluationRun::EvaluationRunSummary] class EvaluationRunSummariesEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The type of the evaluations in this run. # Additional values may be added in the future. module EvaluationType # Evaluation type is not specified. EVALUATION_TYPE_UNSPECIFIED = 0 # Golden evaluation. GOLDEN = 1 # Scenario evaluation. SCENARIO = 2 # Indicates the run includes a mix of golden and scenario evaluations. MIXED = 3 end # The state of the evaluation run. module EvaluationRunState # Evaluation run state is not specified. EVALUATION_RUN_STATE_UNSPECIFIED = 0 # Indicates the evaluation run is queued. QUEUED = 5 # Evaluation run is running. RUNNING = 1 # Evaluation run has completed. COMPLETED = 2 # The evaluation run has an error. ERROR = 3 # Evaluation run was cancelled. CANCELLED = 4 end end |
#evaluation_results ⇒ ::Array<::String> (readonly)
Returns Output only. The evaluation results that are part of this run.
Format:
projects/{project}/locations/{location}/apps/{app}/evaluations/{evaluation}/results/{result}.
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 |
# File 'proto_docs/google/cloud/ces/v1beta/evaluation.rb', line 1157 class EvaluationRun include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The progress of the evaluation run. # @!attribute [r] total_count # @return [::Integer] # Output only. Total number of evaluation results in this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # FAIL. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is FAIL). # @!attribute [r] error_count # @return [::Integer] # Output only. Number of evaluation results that failed to execute. # (EvaluationResult.execution_state is ERROR). # @!attribute [r] completed_count # @return [::Integer] # Output only. Number of evaluation results that finished successfully. # (EvaluationResult.execution_state is COMPLETED). # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # PASS. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is PASS). # @!attribute [r] cancelled_count # @return [::Integer] # Output only. Number of evaluation results that were cancelled. # (EvaluationResult.execution_state is CANCELLED). class Progress include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Contains the summary of passed and failed result counts for a specific # evaluation in an evaluation run. # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of passed results for the associated Evaluation in # this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of failed results for the associated Evaluation in # this run. # @!attribute [r] error_count # @return [::Integer] # Output only. Number of error results for the associated Evaluation in # this run. class EvaluationRunSummary include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::Google::Cloud::Ces::V1beta::EvaluationRun::EvaluationRunSummary] class EvaluationRunSummariesEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The type of the evaluations in this run. # Additional values may be added in the future. module EvaluationType # Evaluation type is not specified. EVALUATION_TYPE_UNSPECIFIED = 0 # Golden evaluation. GOLDEN = 1 # Scenario evaluation. SCENARIO = 2 # Indicates the run includes a mix of golden and scenario evaluations. MIXED = 3 end # The state of the evaluation run. module EvaluationRunState # Evaluation run state is not specified. EVALUATION_RUN_STATE_UNSPECIFIED = 0 # Indicates the evaluation run is queued. QUEUED = 5 # Evaluation run is running. RUNNING = 1 # Evaluation run has completed. COMPLETED = 2 # The evaluation run has an error. ERROR = 3 # Evaluation run was cancelled. CANCELLED = 4 end end |
#evaluation_run_summaries ⇒ ::Google::Protobuf::Map{::String => ::Google::Cloud::Ces::V1beta::EvaluationRun::EvaluationRunSummary} (readonly)
Returns Output only. Map of evaluation name to EvaluationRunSummary.
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 |
# File 'proto_docs/google/cloud/ces/v1beta/evaluation.rb', line 1157 class EvaluationRun include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The progress of the evaluation run. # @!attribute [r] total_count # @return [::Integer] # Output only. Total number of evaluation results in this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # FAIL. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is FAIL). # @!attribute [r] error_count # @return [::Integer] # Output only. Number of evaluation results that failed to execute. # (EvaluationResult.execution_state is ERROR). # @!attribute [r] completed_count # @return [::Integer] # Output only. Number of evaluation results that finished successfully. # (EvaluationResult.execution_state is COMPLETED). # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # PASS. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is PASS). # @!attribute [r] cancelled_count # @return [::Integer] # Output only. Number of evaluation results that were cancelled. # (EvaluationResult.execution_state is CANCELLED). class Progress include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Contains the summary of passed and failed result counts for a specific # evaluation in an evaluation run. # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of passed results for the associated Evaluation in # this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of failed results for the associated Evaluation in # this run. # @!attribute [r] error_count # @return [::Integer] # Output only. Number of error results for the associated Evaluation in # this run. class EvaluationRunSummary include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::Google::Cloud::Ces::V1beta::EvaluationRun::EvaluationRunSummary] class EvaluationRunSummariesEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The type of the evaluations in this run. # Additional values may be added in the future. module EvaluationType # Evaluation type is not specified. EVALUATION_TYPE_UNSPECIFIED = 0 # Golden evaluation. GOLDEN = 1 # Scenario evaluation. SCENARIO = 2 # Indicates the run includes a mix of golden and scenario evaluations. MIXED = 3 end # The state of the evaluation run. module EvaluationRunState # Evaluation run state is not specified. EVALUATION_RUN_STATE_UNSPECIFIED = 0 # Indicates the evaluation run is queued. QUEUED = 5 # Evaluation run is running. RUNNING = 1 # Evaluation run has completed. COMPLETED = 2 # The evaluation run has an error. ERROR = 3 # Evaluation run was cancelled. CANCELLED = 4 end end |
#evaluation_type ⇒ ::Google::Cloud::Ces::V1beta::EvaluationRun::EvaluationType (readonly)
Returns Output only. The type of the evaluations in this run.
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 |
# File 'proto_docs/google/cloud/ces/v1beta/evaluation.rb', line 1157 class EvaluationRun include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The progress of the evaluation run. # @!attribute [r] total_count # @return [::Integer] # Output only. Total number of evaluation results in this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # FAIL. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is FAIL). # @!attribute [r] error_count # @return [::Integer] # Output only. Number of evaluation results that failed to execute. # (EvaluationResult.execution_state is ERROR). # @!attribute [r] completed_count # @return [::Integer] # Output only. Number of evaluation results that finished successfully. # (EvaluationResult.execution_state is COMPLETED). # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # PASS. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is PASS). # @!attribute [r] cancelled_count # @return [::Integer] # Output only. Number of evaluation results that were cancelled. # (EvaluationResult.execution_state is CANCELLED). class Progress include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Contains the summary of passed and failed result counts for a specific # evaluation in an evaluation run. # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of passed results for the associated Evaluation in # this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of failed results for the associated Evaluation in # this run. # @!attribute [r] error_count # @return [::Integer] # Output only. Number of error results for the associated Evaluation in # this run. class EvaluationRunSummary include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::Google::Cloud::Ces::V1beta::EvaluationRun::EvaluationRunSummary] class EvaluationRunSummariesEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The type of the evaluations in this run. # Additional values may be added in the future. module EvaluationType # Evaluation type is not specified. EVALUATION_TYPE_UNSPECIFIED = 0 # Golden evaluation. GOLDEN = 1 # Scenario evaluation. SCENARIO = 2 # Indicates the run includes a mix of golden and scenario evaluations. MIXED = 3 end # The state of the evaluation run. module EvaluationRunState # Evaluation run state is not specified. EVALUATION_RUN_STATE_UNSPECIFIED = 0 # Indicates the evaluation run is queued. QUEUED = 5 # Evaluation run is running. RUNNING = 1 # Evaluation run has completed. COMPLETED = 2 # The evaluation run has an error. ERROR = 3 # Evaluation run was cancelled. CANCELLED = 4 end end |
#evaluations ⇒ ::Array<::String> (readonly)
Returns Output only. The evaluations that are part of this run. The list may
contain evaluations of either type. This field is mutually exclusive with
evaluation_dataset.
Format:
projects/{project}/locations/{location}/apps/{app}/evaluations/{evaluation}.
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 |
# File 'proto_docs/google/cloud/ces/v1beta/evaluation.rb', line 1157 class EvaluationRun include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The progress of the evaluation run. # @!attribute [r] total_count # @return [::Integer] # Output only. Total number of evaluation results in this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # FAIL. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is FAIL). # @!attribute [r] error_count # @return [::Integer] # Output only. Number of evaluation results that failed to execute. # (EvaluationResult.execution_state is ERROR). # @!attribute [r] completed_count # @return [::Integer] # Output only. Number of evaluation results that finished successfully. # (EvaluationResult.execution_state is COMPLETED). # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # PASS. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is PASS). # @!attribute [r] cancelled_count # @return [::Integer] # Output only. Number of evaluation results that were cancelled. # (EvaluationResult.execution_state is CANCELLED). class Progress include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Contains the summary of passed and failed result counts for a specific # evaluation in an evaluation run. # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of passed results for the associated Evaluation in # this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of failed results for the associated Evaluation in # this run. # @!attribute [r] error_count # @return [::Integer] # Output only. Number of error results for the associated Evaluation in # this run. class EvaluationRunSummary include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::Google::Cloud::Ces::V1beta::EvaluationRun::EvaluationRunSummary] class EvaluationRunSummariesEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The type of the evaluations in this run. # Additional values may be added in the future. module EvaluationType # Evaluation type is not specified. EVALUATION_TYPE_UNSPECIFIED = 0 # Golden evaluation. GOLDEN = 1 # Scenario evaluation. SCENARIO = 2 # Indicates the run includes a mix of golden and scenario evaluations. MIXED = 3 end # The state of the evaluation run. module EvaluationRunState # Evaluation run state is not specified. EVALUATION_RUN_STATE_UNSPECIFIED = 0 # Indicates the evaluation run is queued. QUEUED = 5 # Evaluation run is running. RUNNING = 1 # Evaluation run has completed. COMPLETED = 2 # The evaluation run has an error. ERROR = 3 # Evaluation run was cancelled. CANCELLED = 4 end end |
#golden_run_method ⇒ ::Google::Cloud::Ces::V1beta::GoldenRunMethod (readonly)
Returns Output only. The method used to run the evaluation.
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 |
# File 'proto_docs/google/cloud/ces/v1beta/evaluation.rb', line 1157 class EvaluationRun include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The progress of the evaluation run. # @!attribute [r] total_count # @return [::Integer] # Output only. Total number of evaluation results in this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # FAIL. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is FAIL). # @!attribute [r] error_count # @return [::Integer] # Output only. Number of evaluation results that failed to execute. # (EvaluationResult.execution_state is ERROR). # @!attribute [r] completed_count # @return [::Integer] # Output only. Number of evaluation results that finished successfully. # (EvaluationResult.execution_state is COMPLETED). # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # PASS. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is PASS). # @!attribute [r] cancelled_count # @return [::Integer] # Output only. Number of evaluation results that were cancelled. # (EvaluationResult.execution_state is CANCELLED). class Progress include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Contains the summary of passed and failed result counts for a specific # evaluation in an evaluation run. # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of passed results for the associated Evaluation in # this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of failed results for the associated Evaluation in # this run. # @!attribute [r] error_count # @return [::Integer] # Output only. Number of error results for the associated Evaluation in # this run. class EvaluationRunSummary include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::Google::Cloud::Ces::V1beta::EvaluationRun::EvaluationRunSummary] class EvaluationRunSummariesEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The type of the evaluations in this run. # Additional values may be added in the future. module EvaluationType # Evaluation type is not specified. EVALUATION_TYPE_UNSPECIFIED = 0 # Golden evaluation. GOLDEN = 1 # Scenario evaluation. SCENARIO = 2 # Indicates the run includes a mix of golden and scenario evaluations. MIXED = 3 end # The state of the evaluation run. module EvaluationRunState # Evaluation run state is not specified. EVALUATION_RUN_STATE_UNSPECIFIED = 0 # Indicates the evaluation run is queued. QUEUED = 5 # Evaluation run is running. RUNNING = 1 # Evaluation run has completed. COMPLETED = 2 # The evaluation run has an error. ERROR = 3 # Evaluation run was cancelled. CANCELLED = 4 end end |
#initiated_by ⇒ ::String (readonly)
Returns Output only. The user who initiated the evaluation run.
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 |
# File 'proto_docs/google/cloud/ces/v1beta/evaluation.rb', line 1157 class EvaluationRun include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The progress of the evaluation run. # @!attribute [r] total_count # @return [::Integer] # Output only. Total number of evaluation results in this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # FAIL. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is FAIL). # @!attribute [r] error_count # @return [::Integer] # Output only. Number of evaluation results that failed to execute. # (EvaluationResult.execution_state is ERROR). # @!attribute [r] completed_count # @return [::Integer] # Output only. Number of evaluation results that finished successfully. # (EvaluationResult.execution_state is COMPLETED). # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # PASS. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is PASS). # @!attribute [r] cancelled_count # @return [::Integer] # Output only. Number of evaluation results that were cancelled. # (EvaluationResult.execution_state is CANCELLED). class Progress include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Contains the summary of passed and failed result counts for a specific # evaluation in an evaluation run. # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of passed results for the associated Evaluation in # this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of failed results for the associated Evaluation in # this run. # @!attribute [r] error_count # @return [::Integer] # Output only. Number of error results for the associated Evaluation in # this run. class EvaluationRunSummary include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::Google::Cloud::Ces::V1beta::EvaluationRun::EvaluationRunSummary] class EvaluationRunSummariesEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The type of the evaluations in this run. # Additional values may be added in the future. module EvaluationType # Evaluation type is not specified. EVALUATION_TYPE_UNSPECIFIED = 0 # Golden evaluation. GOLDEN = 1 # Scenario evaluation. SCENARIO = 2 # Indicates the run includes a mix of golden and scenario evaluations. MIXED = 3 end # The state of the evaluation run. module EvaluationRunState # Evaluation run state is not specified. EVALUATION_RUN_STATE_UNSPECIFIED = 0 # Indicates the evaluation run is queued. QUEUED = 5 # Evaluation run is running. RUNNING = 1 # Evaluation run has completed. COMPLETED = 2 # The evaluation run has an error. ERROR = 3 # Evaluation run was cancelled. CANCELLED = 4 end end |
#latency_report ⇒ ::Google::Cloud::Ces::V1beta::LatencyReport (readonly)
Returns Output only. Latency report for the evaluation run.
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 |
# File 'proto_docs/google/cloud/ces/v1beta/evaluation.rb', line 1157 class EvaluationRun include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The progress of the evaluation run. # @!attribute [r] total_count # @return [::Integer] # Output only. Total number of evaluation results in this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # FAIL. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is FAIL). # @!attribute [r] error_count # @return [::Integer] # Output only. Number of evaluation results that failed to execute. # (EvaluationResult.execution_state is ERROR). # @!attribute [r] completed_count # @return [::Integer] # Output only. Number of evaluation results that finished successfully. # (EvaluationResult.execution_state is COMPLETED). # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # PASS. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is PASS). # @!attribute [r] cancelled_count # @return [::Integer] # Output only. Number of evaluation results that were cancelled. # (EvaluationResult.execution_state is CANCELLED). class Progress include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Contains the summary of passed and failed result counts for a specific # evaluation in an evaluation run. # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of passed results for the associated Evaluation in # this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of failed results for the associated Evaluation in # this run. # @!attribute [r] error_count # @return [::Integer] # Output only. Number of error results for the associated Evaluation in # this run. class EvaluationRunSummary include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::Google::Cloud::Ces::V1beta::EvaluationRun::EvaluationRunSummary] class EvaluationRunSummariesEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The type of the evaluations in this run. # Additional values may be added in the future. module EvaluationType # Evaluation type is not specified. EVALUATION_TYPE_UNSPECIFIED = 0 # Golden evaluation. GOLDEN = 1 # Scenario evaluation. SCENARIO = 2 # Indicates the run includes a mix of golden and scenario evaluations. MIXED = 3 end # The state of the evaluation run. module EvaluationRunState # Evaluation run state is not specified. EVALUATION_RUN_STATE_UNSPECIFIED = 0 # Indicates the evaluation run is queued. QUEUED = 5 # Evaluation run is running. RUNNING = 1 # Evaluation run has completed. COMPLETED = 2 # The evaluation run has an error. ERROR = 3 # Evaluation run was cancelled. CANCELLED = 4 end end |
#name ⇒ ::String
Returns Identifier. The unique identifier of the evaluation run.
Format:
projects/{project}/locations/{location}/apps/{app}/evaluationRuns/{evaluationRun}.
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 |
# File 'proto_docs/google/cloud/ces/v1beta/evaluation.rb', line 1157 class EvaluationRun include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The progress of the evaluation run. # @!attribute [r] total_count # @return [::Integer] # Output only. Total number of evaluation results in this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # FAIL. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is FAIL). # @!attribute [r] error_count # @return [::Integer] # Output only. Number of evaluation results that failed to execute. # (EvaluationResult.execution_state is ERROR). # @!attribute [r] completed_count # @return [::Integer] # Output only. Number of evaluation results that finished successfully. # (EvaluationResult.execution_state is COMPLETED). # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # PASS. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is PASS). # @!attribute [r] cancelled_count # @return [::Integer] # Output only. Number of evaluation results that were cancelled. # (EvaluationResult.execution_state is CANCELLED). class Progress include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Contains the summary of passed and failed result counts for a specific # evaluation in an evaluation run. # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of passed results for the associated Evaluation in # this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of failed results for the associated Evaluation in # this run. # @!attribute [r] error_count # @return [::Integer] # Output only. Number of error results for the associated Evaluation in # this run. class EvaluationRunSummary include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::Google::Cloud::Ces::V1beta::EvaluationRun::EvaluationRunSummary] class EvaluationRunSummariesEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The type of the evaluations in this run. # Additional values may be added in the future. module EvaluationType # Evaluation type is not specified. EVALUATION_TYPE_UNSPECIFIED = 0 # Golden evaluation. GOLDEN = 1 # Scenario evaluation. SCENARIO = 2 # Indicates the run includes a mix of golden and scenario evaluations. MIXED = 3 end # The state of the evaluation run. module EvaluationRunState # Evaluation run state is not specified. EVALUATION_RUN_STATE_UNSPECIFIED = 0 # Indicates the evaluation run is queued. QUEUED = 5 # Evaluation run is running. RUNNING = 1 # Evaluation run has completed. COMPLETED = 2 # The evaluation run has an error. ERROR = 3 # Evaluation run was cancelled. CANCELLED = 4 end end |
#operation ⇒ ::String (readonly)
Returns Output only. The operation that created this evaluation run.
Format:
projects/{project}/locations/{location}/operations/{operation}.
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 |
# File 'proto_docs/google/cloud/ces/v1beta/evaluation.rb', line 1157 class EvaluationRun include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The progress of the evaluation run. # @!attribute [r] total_count # @return [::Integer] # Output only. Total number of evaluation results in this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # FAIL. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is FAIL). # @!attribute [r] error_count # @return [::Integer] # Output only. Number of evaluation results that failed to execute. # (EvaluationResult.execution_state is ERROR). # @!attribute [r] completed_count # @return [::Integer] # Output only. Number of evaluation results that finished successfully. # (EvaluationResult.execution_state is COMPLETED). # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # PASS. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is PASS). # @!attribute [r] cancelled_count # @return [::Integer] # Output only. Number of evaluation results that were cancelled. # (EvaluationResult.execution_state is CANCELLED). class Progress include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Contains the summary of passed and failed result counts for a specific # evaluation in an evaluation run. # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of passed results for the associated Evaluation in # this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of failed results for the associated Evaluation in # this run. # @!attribute [r] error_count # @return [::Integer] # Output only. Number of error results for the associated Evaluation in # this run. class EvaluationRunSummary include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::Google::Cloud::Ces::V1beta::EvaluationRun::EvaluationRunSummary] class EvaluationRunSummariesEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The type of the evaluations in this run. # Additional values may be added in the future. module EvaluationType # Evaluation type is not specified. EVALUATION_TYPE_UNSPECIFIED = 0 # Golden evaluation. GOLDEN = 1 # Scenario evaluation. SCENARIO = 2 # Indicates the run includes a mix of golden and scenario evaluations. MIXED = 3 end # The state of the evaluation run. module EvaluationRunState # Evaluation run state is not specified. EVALUATION_RUN_STATE_UNSPECIFIED = 0 # Indicates the evaluation run is queued. QUEUED = 5 # Evaluation run is running. RUNNING = 1 # Evaluation run has completed. COMPLETED = 2 # The evaluation run has an error. ERROR = 3 # Evaluation run was cancelled. CANCELLED = 4 end end |
#optimization_config ⇒ ::Google::Cloud::Ces::V1beta::OptimizationConfig
Returns Optional. Configuration for running the optimization step after the evaluation run. If not set, the optimization step will not be run.
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 |
# File 'proto_docs/google/cloud/ces/v1beta/evaluation.rb', line 1157 class EvaluationRun include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The progress of the evaluation run. # @!attribute [r] total_count # @return [::Integer] # Output only. Total number of evaluation results in this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # FAIL. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is FAIL). # @!attribute [r] error_count # @return [::Integer] # Output only. Number of evaluation results that failed to execute. # (EvaluationResult.execution_state is ERROR). # @!attribute [r] completed_count # @return [::Integer] # Output only. Number of evaluation results that finished successfully. # (EvaluationResult.execution_state is COMPLETED). # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # PASS. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is PASS). # @!attribute [r] cancelled_count # @return [::Integer] # Output only. Number of evaluation results that were cancelled. # (EvaluationResult.execution_state is CANCELLED). class Progress include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Contains the summary of passed and failed result counts for a specific # evaluation in an evaluation run. # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of passed results for the associated Evaluation in # this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of failed results for the associated Evaluation in # this run. # @!attribute [r] error_count # @return [::Integer] # Output only. Number of error results for the associated Evaluation in # this run. class EvaluationRunSummary include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::Google::Cloud::Ces::V1beta::EvaluationRun::EvaluationRunSummary] class EvaluationRunSummariesEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The type of the evaluations in this run. # Additional values may be added in the future. module EvaluationType # Evaluation type is not specified. EVALUATION_TYPE_UNSPECIFIED = 0 # Golden evaluation. GOLDEN = 1 # Scenario evaluation. SCENARIO = 2 # Indicates the run includes a mix of golden and scenario evaluations. MIXED = 3 end # The state of the evaluation run. module EvaluationRunState # Evaluation run state is not specified. EVALUATION_RUN_STATE_UNSPECIFIED = 0 # Indicates the evaluation run is queued. QUEUED = 5 # Evaluation run is running. RUNNING = 1 # Evaluation run has completed. COMPLETED = 2 # The evaluation run has an error. ERROR = 3 # Evaluation run was cancelled. CANCELLED = 4 end end |
#persona_run_configs ⇒ ::Array<::Google::Cloud::Ces::V1beta::PersonaRunConfig> (readonly)
Returns Output only. The configuration to use for the run per persona.
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 |
# File 'proto_docs/google/cloud/ces/v1beta/evaluation.rb', line 1157 class EvaluationRun include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The progress of the evaluation run. # @!attribute [r] total_count # @return [::Integer] # Output only. Total number of evaluation results in this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # FAIL. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is FAIL). # @!attribute [r] error_count # @return [::Integer] # Output only. Number of evaluation results that failed to execute. # (EvaluationResult.execution_state is ERROR). # @!attribute [r] completed_count # @return [::Integer] # Output only. Number of evaluation results that finished successfully. # (EvaluationResult.execution_state is COMPLETED). # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # PASS. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is PASS). # @!attribute [r] cancelled_count # @return [::Integer] # Output only. Number of evaluation results that were cancelled. # (EvaluationResult.execution_state is CANCELLED). class Progress include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Contains the summary of passed and failed result counts for a specific # evaluation in an evaluation run. # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of passed results for the associated Evaluation in # this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of failed results for the associated Evaluation in # this run. # @!attribute [r] error_count # @return [::Integer] # Output only. Number of error results for the associated Evaluation in # this run. class EvaluationRunSummary include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::Google::Cloud::Ces::V1beta::EvaluationRun::EvaluationRunSummary] class EvaluationRunSummariesEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The type of the evaluations in this run. # Additional values may be added in the future. module EvaluationType # Evaluation type is not specified. EVALUATION_TYPE_UNSPECIFIED = 0 # Golden evaluation. GOLDEN = 1 # Scenario evaluation. SCENARIO = 2 # Indicates the run includes a mix of golden and scenario evaluations. MIXED = 3 end # The state of the evaluation run. module EvaluationRunState # Evaluation run state is not specified. EVALUATION_RUN_STATE_UNSPECIFIED = 0 # Indicates the evaluation run is queued. QUEUED = 5 # Evaluation run is running. RUNNING = 1 # Evaluation run has completed. COMPLETED = 2 # The evaluation run has an error. ERROR = 3 # Evaluation run was cancelled. CANCELLED = 4 end end |
#progress ⇒ ::Google::Cloud::Ces::V1beta::EvaluationRun::Progress (readonly)
Returns Output only. The progress of the evaluation run.
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 |
# File 'proto_docs/google/cloud/ces/v1beta/evaluation.rb', line 1157 class EvaluationRun include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The progress of the evaluation run. # @!attribute [r] total_count # @return [::Integer] # Output only. Total number of evaluation results in this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # FAIL. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is FAIL). # @!attribute [r] error_count # @return [::Integer] # Output only. Number of evaluation results that failed to execute. # (EvaluationResult.execution_state is ERROR). # @!attribute [r] completed_count # @return [::Integer] # Output only. Number of evaluation results that finished successfully. # (EvaluationResult.execution_state is COMPLETED). # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # PASS. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is PASS). # @!attribute [r] cancelled_count # @return [::Integer] # Output only. Number of evaluation results that were cancelled. # (EvaluationResult.execution_state is CANCELLED). class Progress include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Contains the summary of passed and failed result counts for a specific # evaluation in an evaluation run. # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of passed results for the associated Evaluation in # this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of failed results for the associated Evaluation in # this run. # @!attribute [r] error_count # @return [::Integer] # Output only. Number of error results for the associated Evaluation in # this run. class EvaluationRunSummary include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::Google::Cloud::Ces::V1beta::EvaluationRun::EvaluationRunSummary] class EvaluationRunSummariesEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The type of the evaluations in this run. # Additional values may be added in the future. module EvaluationType # Evaluation type is not specified. EVALUATION_TYPE_UNSPECIFIED = 0 # Golden evaluation. GOLDEN = 1 # Scenario evaluation. SCENARIO = 2 # Indicates the run includes a mix of golden and scenario evaluations. MIXED = 3 end # The state of the evaluation run. module EvaluationRunState # Evaluation run state is not specified. EVALUATION_RUN_STATE_UNSPECIFIED = 0 # Indicates the evaluation run is queued. QUEUED = 5 # Evaluation run is running. RUNNING = 1 # Evaluation run has completed. COMPLETED = 2 # The evaluation run has an error. ERROR = 3 # Evaluation run was cancelled. CANCELLED = 4 end end |
#run_count ⇒ ::Integer (readonly)
Returns Output only. The number of times the evaluations inside the run were run.
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 |
# File 'proto_docs/google/cloud/ces/v1beta/evaluation.rb', line 1157 class EvaluationRun include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The progress of the evaluation run. # @!attribute [r] total_count # @return [::Integer] # Output only. Total number of evaluation results in this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # FAIL. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is FAIL). # @!attribute [r] error_count # @return [::Integer] # Output only. Number of evaluation results that failed to execute. # (EvaluationResult.execution_state is ERROR). # @!attribute [r] completed_count # @return [::Integer] # Output only. Number of evaluation results that finished successfully. # (EvaluationResult.execution_state is COMPLETED). # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # PASS. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is PASS). # @!attribute [r] cancelled_count # @return [::Integer] # Output only. Number of evaluation results that were cancelled. # (EvaluationResult.execution_state is CANCELLED). class Progress include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Contains the summary of passed and failed result counts for a specific # evaluation in an evaluation run. # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of passed results for the associated Evaluation in # this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of failed results for the associated Evaluation in # this run. # @!attribute [r] error_count # @return [::Integer] # Output only. Number of error results for the associated Evaluation in # this run. class EvaluationRunSummary include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::Google::Cloud::Ces::V1beta::EvaluationRun::EvaluationRunSummary] class EvaluationRunSummariesEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The type of the evaluations in this run. # Additional values may be added in the future. module EvaluationType # Evaluation type is not specified. EVALUATION_TYPE_UNSPECIFIED = 0 # Golden evaluation. GOLDEN = 1 # Scenario evaluation. SCENARIO = 2 # Indicates the run includes a mix of golden and scenario evaluations. MIXED = 3 end # The state of the evaluation run. module EvaluationRunState # Evaluation run state is not specified. EVALUATION_RUN_STATE_UNSPECIFIED = 0 # Indicates the evaluation run is queued. QUEUED = 5 # Evaluation run is running. RUNNING = 1 # Evaluation run has completed. COMPLETED = 2 # The evaluation run has an error. ERROR = 3 # Evaluation run was cancelled. CANCELLED = 4 end end |
#scheduled_evaluation_run ⇒ ::String (readonly)
Returns Output only. The scheduled evaluation run resource name that created this
evaluation run. This field is only set if the evaluation run was created
by a scheduled evaluation run.
Format:
projects/{project}/locations/{location}/apps/{app}/scheduledEvaluationRuns/{scheduled_evaluation_run}.
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 |
# File 'proto_docs/google/cloud/ces/v1beta/evaluation.rb', line 1157 class EvaluationRun include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The progress of the evaluation run. # @!attribute [r] total_count # @return [::Integer] # Output only. Total number of evaluation results in this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # FAIL. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is FAIL). # @!attribute [r] error_count # @return [::Integer] # Output only. Number of evaluation results that failed to execute. # (EvaluationResult.execution_state is ERROR). # @!attribute [r] completed_count # @return [::Integer] # Output only. Number of evaluation results that finished successfully. # (EvaluationResult.execution_state is COMPLETED). # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # PASS. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is PASS). # @!attribute [r] cancelled_count # @return [::Integer] # Output only. Number of evaluation results that were cancelled. # (EvaluationResult.execution_state is CANCELLED). class Progress include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Contains the summary of passed and failed result counts for a specific # evaluation in an evaluation run. # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of passed results for the associated Evaluation in # this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of failed results for the associated Evaluation in # this run. # @!attribute [r] error_count # @return [::Integer] # Output only. Number of error results for the associated Evaluation in # this run. class EvaluationRunSummary include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::Google::Cloud::Ces::V1beta::EvaluationRun::EvaluationRunSummary] class EvaluationRunSummariesEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The type of the evaluations in this run. # Additional values may be added in the future. module EvaluationType # Evaluation type is not specified. EVALUATION_TYPE_UNSPECIFIED = 0 # Golden evaluation. GOLDEN = 1 # Scenario evaluation. SCENARIO = 2 # Indicates the run includes a mix of golden and scenario evaluations. MIXED = 3 end # The state of the evaluation run. module EvaluationRunState # Evaluation run state is not specified. EVALUATION_RUN_STATE_UNSPECIFIED = 0 # Indicates the evaluation run is queued. QUEUED = 5 # Evaluation run is running. RUNNING = 1 # Evaluation run has completed. COMPLETED = 2 # The evaluation run has an error. ERROR = 3 # Evaluation run was cancelled. CANCELLED = 4 end end |
#state ⇒ ::Google::Cloud::Ces::V1beta::EvaluationRun::EvaluationRunState (readonly)
Returns Output only. The state of the evaluation run.
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 |
# File 'proto_docs/google/cloud/ces/v1beta/evaluation.rb', line 1157 class EvaluationRun include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The progress of the evaluation run. # @!attribute [r] total_count # @return [::Integer] # Output only. Total number of evaluation results in this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # FAIL. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is FAIL). # @!attribute [r] error_count # @return [::Integer] # Output only. Number of evaluation results that failed to execute. # (EvaluationResult.execution_state is ERROR). # @!attribute [r] completed_count # @return [::Integer] # Output only. Number of evaluation results that finished successfully. # (EvaluationResult.execution_state is COMPLETED). # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of completed evaluation results with an outcome of # PASS. (EvaluationResult.execution_state is COMPLETED and # EvaluationResult.evaluation_status is PASS). # @!attribute [r] cancelled_count # @return [::Integer] # Output only. Number of evaluation results that were cancelled. # (EvaluationResult.execution_state is CANCELLED). class Progress include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Contains the summary of passed and failed result counts for a specific # evaluation in an evaluation run. # @!attribute [r] passed_count # @return [::Integer] # Output only. Number of passed results for the associated Evaluation in # this run. # @!attribute [r] failed_count # @return [::Integer] # Output only. Number of failed results for the associated Evaluation in # this run. # @!attribute [r] error_count # @return [::Integer] # Output only. Number of error results for the associated Evaluation in # this run. class EvaluationRunSummary include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::Google::Cloud::Ces::V1beta::EvaluationRun::EvaluationRunSummary] class EvaluationRunSummariesEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The type of the evaluations in this run. # Additional values may be added in the future. module EvaluationType # Evaluation type is not specified. EVALUATION_TYPE_UNSPECIFIED = 0 # Golden evaluation. GOLDEN = 1 # Scenario evaluation. SCENARIO = 2 # Indicates the run includes a mix of golden and scenario evaluations. MIXED = 3 end # The state of the evaluation run. module EvaluationRunState # Evaluation run state is not specified. EVALUATION_RUN_STATE_UNSPECIFIED = 0 # Indicates the evaluation run is queued. QUEUED = 5 # Evaluation run is running. RUNNING = 1 # Evaluation run has completed. COMPLETED = 2 # The evaluation run has an error. ERROR = 3 # Evaluation run was cancelled. CANCELLED = 4 end end |