Class JobCreateParams.Integration
-
- All Implemented Interfaces:
public final class JobCreateParams.Integration
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
JobCreateParams.Integration.Builder
A builder for Integration.
public final class
JobCreateParams.Integration.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.
-
Method Summary
Modifier and Type Method Description final JsonValue
_type()
The type of integration to enable. final JobCreateParams.Integration.Wandb
wandb()
The settings for your integration with Weights and Biases. final JsonField<JobCreateParams.Integration.Wandb>
_wandb()
Returns the raw JSON value of wandb. final Map<String, JsonValue>
_additionalProperties()
final JobCreateParams.Integration.Builder
toBuilder()
final JobCreateParams.Integration
validate()
final Boolean
isValid()
Boolean
equals(Object other)
Integer
hashCode()
String
toString()
final static JobCreateParams.Integration.Builder
builder()
Returns a mutable builder for constructing an instance of Integration. -
-
Method Detail
-
_type
final JsonValue _type()
The type of integration to enable. Currently, only "wandb" (Weights and Biases) is supported.
Expected to always return the following:
JsonValue.from("wandb")
However, this method can be useful for debugging and logging (e.g. if the server responded with an unexpected value).
-
wandb
final 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 JsonField<JobCreateParams.Integration.Wandb> _wandb()
Returns the raw JSON value of wandb.
Unlike wandb, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final JobCreateParams.Integration.Builder toBuilder()
-
validate
final JobCreateParams.Integration validate()
-
builder
final static JobCreateParams.Integration.Builder builder()
Returns a mutable builder for constructing an instance of Integration.
The following fields are required:
.wandb()
-
-
-
-