pub struct CodingAgentSandboxEntry {
pub id: Option<String>,
pub creator_id: Option<String>,
pub sandbox_url: Option<String>,
pub sandbox_logs_url: Option<String>,
pub worker_conversation_id: Option<String>,
pub repository: Option<String>,
pub branch_name: Option<String>,
pub base_ref: Option<String>,
pub created_at: Option<DateTime<Utc>>,
pub started_at: Option<DateTime<Utc>>,
pub ended_at: Option<DateTime<Utc>>,
}Expand description
Internal Detailed information about the coding agent sandbox environment associated with an agent session, including cloud infrastructure URLs for debugging and monitoring.
Fields§
§id: Option<String>The sandbox identifier.
creator_id: Option<String>The user who initiated the session.
sandbox_url: Option<String>The URL of the running sandbox environment. Null when the sandbox is hibernated or destroyed.
sandbox_logs_url: Option<String>URL to the sandbox execution logs in Modal. Null if the sandbox has no URL or is not running on Modal.
worker_conversation_id: Option<String>The Claude Agent SDK session ID used for resuming multi-turn conversations with the sandbox worker.
repository: Option<String>GitHub repository in owner/repo format.
branch_name: Option<String>The Git branch name created for this sandbox session. Null if a branch has not yet been assigned.
base_ref: Option<String>The Git ref (branch, tag, or commit) that was checked out as the base for this sandbox. Defaults to the repository’s default branch.
created_at: Option<DateTime<Utc>>The time at which the sandbox was created.
started_at: Option<DateTime<Utc>>The time at which the sandbox first became active. Null if not yet started.
ended_at: Option<DateTime<Utc>>The time at which the session reached a terminal state. Null if still active.
Trait Implementations§
Source§impl Clone for CodingAgentSandboxEntry
impl Clone for CodingAgentSandboxEntry
Source§fn clone(&self) -> CodingAgentSandboxEntry
fn clone(&self) -> CodingAgentSandboxEntry
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more