Class JobCreateParams.Integration.Builder
-
- All Implemented Interfaces:
public final class JobCreateParams.Integration.Builder
A builder for Integration.
-
-
Method Summary
-
-
Method Detail
-
type
final JobCreateParams.Integration.Builder type(JsonValue type)
Sets the field to an arbitrary JSON value.
It is usually unnecessary to call this method because the field defaults to the following:
JsonValue.from("wandb")
This method is primarily for setting the field to an undocumented or not yet supported value.
-
wandb
final JobCreateParams.Integration.Builder wandb(JobCreateParams.Integration.Wandb wandb)
The settings for your integration with Weights and Biases. This payload specifies the project that metrics will be sent to. Optionally, you can set an explicit display name for your run, add tags to your run, and set a default entity (team, username, etc) to be associated with your run.
-
wandb
final JobCreateParams.Integration.Builder wandb(JsonField<JobCreateParams.Integration.Wandb> wandb)
Sets Builder.wandb to an arbitrary JSON value.
You should usually call Builder.wandb with a well-typed Wandb value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final JobCreateParams.Integration.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final JobCreateParams.Integration.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final JobCreateParams.Integration.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final JobCreateParams.Integration.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final JobCreateParams.Integration.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final JobCreateParams.Integration build()
Returns an immutable instance of Integration.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.wandb()
-
-
-
-