Class CreateBatchJobConfig

java.lang.Object
com.google.genai.JsonSerializable
com.google.genai.types.CreateBatchJobConfig

public abstract class CreateBatchJobConfig extends JsonSerializable
Config for optional parameters.
  • Constructor Details

    • CreateBatchJobConfig

      public CreateBatchJobConfig()
  • Method Details

    • httpOptions

      public abstract Optional<HttpOptions> httpOptions()
      Used to override HTTP request options.
    • displayName

      public abstract Optional<String> displayName()
      The user-defined name of this BatchJob.
    • dest

      public abstract Optional<BatchJobDestination> dest()
      GCS or BigQuery URI prefix for the output predictions. Example: "gs://path/to/output/data" or "bq://projectId.bqDatasetId.bqTableId".
    • builder

      public static CreateBatchJobConfig.Builder builder()
      Instantiates a builder for CreateBatchJobConfig.
    • toBuilder

      public abstract CreateBatchJobConfig.Builder toBuilder()
      Creates a builder with the same values as this instance.
    • fromJson

      public static CreateBatchJobConfig fromJson(String jsonString)
      Deserializes a JSON string to a CreateBatchJobConfig object.