Skip to content
Open
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
7 changes: 7 additions & 0 deletions agentplatform/_genai/types/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -16711,6 +16711,10 @@ class SandboxEnvironmentConnectionInfo(_common.BaseModel):
default=None,
description="""Output only. The routing token for the SandboxEnvironment.""",
)
service_attachment: Optional[str] = Field(
default=None,
description="""Output only. The name of the PSC-E service attachment created for private ingress to this SandboxEnvironment. Only populated when the template enables private ingress (see SandboxEnvironmentTemplate.ingress_control_config). VPC-SC customers use this to create a PSC endpoint in their VPC.""",
)


class SandboxEnvironmentConnectionInfoDict(TypedDict, total=False):
Expand All @@ -16728,6 +16732,9 @@ class SandboxEnvironmentConnectionInfoDict(TypedDict, total=False):
routing_token: Optional[str]
"""Output only. The routing token for the SandboxEnvironment."""

service_attachment: Optional[str]
"""Output only. The name of the PSC-E service attachment created for private ingress to this SandboxEnvironment. Only populated when the template enables private ingress (see SandboxEnvironmentTemplate.ingress_control_config). VPC-SC customers use this to create a PSC endpoint in their VPC."""


SandboxEnvironmentConnectionInfoOrDict = Union[
SandboxEnvironmentConnectionInfo, SandboxEnvironmentConnectionInfoDict
Expand Down
Loading