Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
import com.google.genai.types.Content;
import java.util.Optional;

/** */
/** None */
@AutoValue
@JsonDeserialize(builder = GenerateMemoriesRequestDirectContentsSourceEvent.Builder.class)
public abstract class GenerateMemoriesRequestDirectContentsSourceEvent extends JsonSerializable {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
import com.google.genai.types.HttpOptions;
import java.util.Optional;

/** */
/** None */
@AutoValue
@JsonDeserialize(builder = GetAgentEngineOperationConfig.Builder.class)
public abstract class GetAgentEngineOperationConfig extends JsonSerializable {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@ public abstract class SandboxEnvironment extends JsonSerializable {

/**
* Optional. The name of the SandboxEnvironmentTemplate specified in the parent Agent Engine
* resource that this SandboxEnvironment is created from.
* resource that this SandboxEnvironment is created from. Only one of
* `sandbox_environment_template` and `spec` should be set.
*/
@JsonProperty("sandboxEnvironmentTemplate")
public abstract Optional<String> sandboxEnvironmentTemplate();
Expand Down Expand Up @@ -385,7 +386,8 @@ public Builder clearSandboxEnvironmentSnapshot() {
* Setter for sandboxEnvironmentTemplate.
*
* <p>sandboxEnvironmentTemplate: Optional. The name of the SandboxEnvironmentTemplate specified
* in the parent Agent Engine resource that this SandboxEnvironment is created from.
* in the parent Agent Engine resource that this SandboxEnvironment is created from. Only one of
* `sandbox_environment_template` and `spec` should be set.
*/
@JsonProperty("sandboxEnvironmentTemplate")
public abstract Builder sandboxEnvironmentTemplate(String sandboxEnvironmentTemplate);
Expand Down
Loading