Class TestEvaluateResponse.Builder
-
- All Implemented Interfaces:
public final class TestEvaluateResponse.BuilderA builder for TestEvaluateResponse.
-
-
Method Summary
-
-
Method Detail
-
message
final TestEvaluateResponse.Builder message(String message)
-
message
final TestEvaluateResponse.Builder message(JsonField<String> message)
Sets Builder.message to an arbitrary JSON value.
You should usually call Builder.message with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
pipelineCount
final TestEvaluateResponse.Builder pipelineCount(Long pipelineCount)
Number of inference pipelines the test was queued for evaluation on
-
pipelineCount
final TestEvaluateResponse.Builder pipelineCount(JsonField<Long> pipelineCount)
Sets Builder.pipelineCount to an arbitrary JSON value.
You should usually call Builder.pipelineCount with a well-typed Long value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
requestedEndTimestamp
final TestEvaluateResponse.Builder requestedEndTimestamp(Long requestedEndTimestamp)
The end timestamp you requested (in seconds)
-
requestedEndTimestamp
final TestEvaluateResponse.Builder requestedEndTimestamp(JsonField<Long> requestedEndTimestamp)
Sets Builder.requestedEndTimestamp to an arbitrary JSON value.
You should usually call Builder.requestedEndTimestamp with a well-typed Long value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
requestedStartTimestamp
final TestEvaluateResponse.Builder requestedStartTimestamp(Long requestedStartTimestamp)
The start timestamp you requested (in seconds)
-
requestedStartTimestamp
final TestEvaluateResponse.Builder requestedStartTimestamp(JsonField<Long> requestedStartTimestamp)
Sets Builder.requestedStartTimestamp to an arbitrary JSON value.
You should usually call Builder.requestedStartTimestamp with a well-typed Long value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
tasks
final TestEvaluateResponse.Builder tasks(List<TestEvaluateResponse.Task> tasks)
Array of background task information for each pipeline evaluation
-
tasks
final TestEvaluateResponse.Builder tasks(JsonField<List<TestEvaluateResponse.Task>> tasks)
Sets Builder.tasks to an arbitrary JSON value.
You should usually call Builder.tasks with a well-typed
List<Task>value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
addTask
final TestEvaluateResponse.Builder addTask(TestEvaluateResponse.Task task)
-
additionalProperties
final TestEvaluateResponse.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final TestEvaluateResponse.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final TestEvaluateResponse.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final TestEvaluateResponse.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final TestEvaluateResponse.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final TestEvaluateResponse build()
Returns an immutable instance of TestEvaluateResponse.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.message() .pipelineCount() .requestedEndTimestamp() .requestedStartTimestamp() .tasks()
-
-
-
-