Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstance.py
More file actions
Latest commit
178 lines (125 loc) · 5.51 KB
/
Copy pathinstance.py
File metadata and controls
178 lines (125 loc) · 5.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
fromtypingimportDict, List, Optional
fromdatetimeimportdatetime
fromtyping_extensionsimportLiteral
from .._modelsimportBaseModel
from .health_checkimportHealthCheck
from .volume_mountimportVolumeMount
from .restart_policyimportRestartPolicy
from .restart_statusimportRestartStatus
from .snapshot_policyimportSnapshotPolicy
from .auto_standby_policyimportAutoStandbyPolicy
from .instance_health_statusimportInstanceHealthStatus
__all__= ["Instance", "GPU", "Network"]
classGPU(BaseModel):
"""GPU information attached to the instance"""
mdev_uuid: Optional[str] =None
"""mdev device UUID"""
profile: Optional[str] =None
"""vGPU profile name"""
classNetwork(BaseModel):
"""Network configuration of the instance"""
bandwidth_download: Optional[str] =None
"""Download bandwidth limit (human-readable, e.g., "1Gbps", "125MB/s")"""
bandwidth_upload: Optional[str] =None
"""Upload bandwidth limit (human-readable, e.g., "1Gbps", "125MB/s")"""
enabled: Optional[bool] =None
"""Whether instance is attached to the default network"""
ip: Optional[str] =None
"""Assigned IP address (null if no network)"""
mac: Optional[str] =None
"""Assigned MAC address (null if no network)"""
name: Optional[str] =None
"""Network name (always "default" when enabled)"""
classInstance(BaseModel):
id: str
"""Auto-generated unique identifier (CUID2 format)"""
created_at: datetime
"""Creation timestamp (RFC3339)"""
expires_at: Optional[datetime] =None
"""Absolute expiration time, or null when automatic expiration is disabled.
Instance TTL is cleared on fork.
"""
image: str
"""OCI image reference"""
name: str
"""Human-readable name"""
state: Literal["Created", "Initializing", "Running", "Paused", "Shutdown", "Stopped", "Standby", "Unknown"]
"""Instance state:
- Created: VMM created but not started (Cloud Hypervisor native)
- Initializing: VM is running while guest init is still in progress
- Running: Guest program has started and instance is ready
- Paused: VM is paused (Cloud Hypervisor native)
- Shutdown: VM shut down but VMM exists (Cloud Hypervisor native)
- Stopped: No VMM running, no snapshot exists
- Standby: No VMM running, snapshot exists (can be restored)
- Unknown: Failed to determine state (see state_error for details)
"""
auto_standby: Optional[AutoStandbyPolicy] =None
"""
Linux-only automatic standby policy based on active inbound TCP connections
observed from the host conntrack table.
"""
current_phase: Optional[str] =None
"""The lifecycle phase the instance is currently in."""
current_phase_since: Optional[datetime] =None
"""When the instance entered current_phase."""
disk_io_bps: Optional[str] =None
"""Disk I/O rate limit (human-readable, e.g., "100MB/s")"""
env: Optional[Dict[str, str]] =None
"""Environment variables"""
exit_code: Optional[int] =None
"""App exit code (null if VM hasn't exited)"""
exit_message: Optional[str] =None
"""
Human-readable description of exit (e.g., "command not found", "killed by signal
9 (SIGKILL) - OOM")
"""
gpu: Optional[GPU] =None
"""GPU information attached to the instance"""
has_snapshot: Optional[bool] =None
"""Whether a snapshot exists for this instance"""
health_check: Optional[HealthCheck] =None
"""Workload health check policy.
Health is reported separately from instance lifecycle state.
"""
health_status: Optional[InstanceHealthStatus] =None
hotplug_size: Optional[str] =None
"""Hotplug memory size (human-readable)"""
hypervisor: Optional[Literal["cloud-hypervisor", "firecracker", "qemu", "qemu-microvm", "vz"]] =None
"""Hypervisor backend running this instance"""
network: Optional[Network] =None
"""Network configuration of the instance"""
overlay_size: Optional[str] =None
"""Writable overlay disk size (human-readable)"""
phase_durations_ms: Optional[Dict[str, int]] =None
"""
Cumulative milliseconds the instance has spent in each lifecycle phase,
including time accrued in the current phase up to the response time. Keys mirror
instance states lowercased (running, standby, paused, stopped, created,
initializing, shutdown). Consumers (e.g. billing) sum the phases they consider
billable.
"""
platform: Optional[str] =None
"""Resolved image platform as os/arch[/variant] (e.g.
"linux/amd64"). amd64 images on an arm64 host run under Rosetta emulation.
"""
restart_policy: Optional[RestartPolicy] =None
"""Whole-instance restart supervision policy."""
restart_status: Optional[RestartStatus] =None
"""Runtime status for restart policy decisions."""
size: Optional[str] =None
"""Base memory size (human-readable)"""
snapshot_policy: Optional[SnapshotPolicy] =None
started_at: Optional[datetime] =None
"""Start timestamp (RFC3339)"""
state_error: Optional[str] =None
"""Error message if state couldn't be determined (only set when state is Unknown)"""
stopped_at: Optional[datetime] =None
"""Stop timestamp (RFC3339)"""
tags: Optional[Dict[str, str]] =None
"""User-defined key-value tags."""
vcpus: Optional[int] =None
"""Number of virtual CPUs"""
volumes: Optional[List[VolumeMount]] =None
"""Volumes attached to the instance"""