Package com.google.genai.types
Class BatchJobOutputInfo
-
- All Implemented Interfaces:
public abstract class BatchJobOutputInfo extends JsonSerializable
Represents the `output_info` field in batch jobs.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public abstract classBatchJobOutputInfo.BuilderBuilder for BatchJobOutputInfo.
-
Field Summary
Fields Modifier and Type Field Description public final static StringMAX_READ_LENGTH_PROPERTY
-
Constructor Summary
Constructors Constructor Description BatchJobOutputInfo()
-
Method Summary
Modifier and Type Method Description abstract Optional<String>vertexMultimodalDatasetName()This field is experimental and may change in future versions. abstract Optional<String>gcsOutputDirectory()The full path of the Cloud Storage directory created, into which the prediction output is written. abstract Optional<String>bigqueryOutputTable()The name of the BigQuery table created, in `predictions_` format, into which the prediction output is written. static BatchJobOutputInfo.Builderbuilder()Instantiates a builder for BatchJobOutputInfo. abstract BatchJobOutputInfo.BuildertoBuilder()Creates a builder with the same values as this instance. static BatchJobOutputInfofromJson(String jsonString)Deserializes a JSON string to a BatchJobOutputInfo object. -
Methods inherited from class com.google.genai.JsonSerializable
fromJsonNode, fromJsonString, objectMapper, setMaxReadLength, stringToJsonNode, toJson, toJsonNode, toJsonString -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
vertexMultimodalDatasetName
abstract Optional<String> vertexMultimodalDatasetName()
This field is experimental and may change in future versions. The Vertex AI dataset name containing the output data.
-
gcsOutputDirectory
abstract Optional<String> gcsOutputDirectory()
The full path of the Cloud Storage directory created, into which the prediction output is written.
-
bigqueryOutputTable
abstract Optional<String> bigqueryOutputTable()
The name of the BigQuery table created, in `predictions_` format, into which the prediction output is written.
-
builder
static BatchJobOutputInfo.Builder builder()
Instantiates a builder for BatchJobOutputInfo.
-
toBuilder
abstract BatchJobOutputInfo.Builder toBuilder()
Creates a builder with the same values as this instance.
-
fromJson
static BatchJobOutputInfo fromJson(String jsonString)
Deserializes a JSON string to a BatchJobOutputInfo object.
-
-
-
-