Class ExperimentUpdateParams.Body.Builder
-
- All Implemented Interfaces:
public final class ExperimentUpdateParams.Body.BuilderA builder for Body.
-
-
Method Summary
-
-
Method Detail
-
baseExpId
final ExperimentUpdateParams.Body.Builder baseExpId(String baseExpId)
Id of default base experiment to compare against when viewing this experiment
-
baseExpId
final ExperimentUpdateParams.Body.Builder baseExpId(Optional<String> baseExpId)
Alias for calling Builder.baseExpId with
baseExpId.orElse(null).
-
baseExpId
final ExperimentUpdateParams.Body.Builder baseExpId(JsonField<String> baseExpId)
Sets Builder.baseExpId to an arbitrary JSON value.
You should usually call Builder.baseExpId with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
datasetId
final ExperimentUpdateParams.Body.Builder datasetId(String datasetId)
Identifier of the linked dataset, or null if the experiment is not linked to a dataset
-
datasetId
final ExperimentUpdateParams.Body.Builder datasetId(Optional<String> datasetId)
Alias for calling Builder.datasetId with
datasetId.orElse(null).
-
datasetId
final ExperimentUpdateParams.Body.Builder datasetId(JsonField<String> datasetId)
Sets Builder.datasetId to an arbitrary JSON value.
You should usually call Builder.datasetId with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
datasetVersion
final ExperimentUpdateParams.Body.Builder datasetVersion(String datasetVersion)
Version number of the linked dataset the experiment was run against. This can be used to reproduce the experiment after the dataset has been modified.
-
datasetVersion
final ExperimentUpdateParams.Body.Builder datasetVersion(Optional<String> datasetVersion)
Alias for calling Builder.datasetVersion with
datasetVersion.orElse(null).
-
datasetVersion
final ExperimentUpdateParams.Body.Builder datasetVersion(JsonField<String> datasetVersion)
Sets Builder.datasetVersion to an arbitrary JSON value.
You should usually call Builder.datasetVersion with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
description
final ExperimentUpdateParams.Body.Builder description(String description)
Textual description of the experiment
-
description
final ExperimentUpdateParams.Body.Builder description(Optional<String> description)
Alias for calling Builder.description with
description.orElse(null).
-
description
final ExperimentUpdateParams.Body.Builder description(JsonField<String> description)
Sets Builder.description to an arbitrary JSON value.
You should usually call Builder.description with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
metadata
final ExperimentUpdateParams.Body.Builder metadata(ExperimentUpdateParams.Metadata metadata)
User-controlled metadata about the experiment
-
metadata
final ExperimentUpdateParams.Body.Builder metadata(Optional<ExperimentUpdateParams.Metadata> metadata)
Alias for calling Builder.metadata with
metadata.orElse(null).
-
metadata
final ExperimentUpdateParams.Body.Builder metadata(JsonField<ExperimentUpdateParams.Metadata> metadata)
Sets Builder.metadata to an arbitrary JSON value.
You should usually call Builder.metadata with a well-typed Metadata value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
name
final ExperimentUpdateParams.Body.Builder name(String name)
Name of the experiment. Within a project, experiment names are unique
-
name
final ExperimentUpdateParams.Body.Builder name(Optional<String> name)
Alias for calling Builder.name with
name.orElse(null).
-
name
final ExperimentUpdateParams.Body.Builder name(JsonField<String> name)
Sets Builder.name to an arbitrary JSON value.
You should usually call Builder.name with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
public_
final ExperimentUpdateParams.Body.Builder public_(Boolean public_)
Whether or not the experiment is public. Public experiments can be viewed by anybody inside or outside the organization
-
public_
final ExperimentUpdateParams.Body.Builder public_(Boolean public_)
Alias for Builder.public_.
This unboxed primitive overload exists for backwards compatibility.
-
public_
final ExperimentUpdateParams.Body.Builder public_(Optional<Boolean> public_)
Alias for calling Builder.public_ with
public_.orElse(null).
-
public_
final ExperimentUpdateParams.Body.Builder public_(JsonField<Boolean> public_)
Sets Builder.public_ to an arbitrary JSON value.
You should usually call Builder.public_ with a well-typed Boolean value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
repoInfo
final ExperimentUpdateParams.Body.Builder repoInfo(RepoInfo repoInfo)
Metadata about the state of the repo when the experiment was created
-
repoInfo
final ExperimentUpdateParams.Body.Builder repoInfo(Optional<RepoInfo> repoInfo)
Alias for calling Builder.repoInfo with
repoInfo.orElse(null).
-
repoInfo
final ExperimentUpdateParams.Body.Builder repoInfo(JsonField<RepoInfo> repoInfo)
Sets Builder.repoInfo to an arbitrary JSON value.
You should usually call Builder.repoInfo with a well-typed RepoInfo value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final ExperimentUpdateParams.Body.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final ExperimentUpdateParams.Body.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final ExperimentUpdateParams.Body.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final ExperimentUpdateParams.Body.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final ExperimentUpdateParams.Body.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final ExperimentUpdateParams.Body build()
Returns an immutable instance of Body.
Further updates to this Builder will not mutate the returned instance.
-
-
-
-