daytona_api_client_async 0.107.0rc2__py3-none-any.whl → 0.107.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of daytona_api_client_async might be problematic. Click here for more details.
- daytona_api_client_async/models/create_runner.py +1 -3
- daytona_api_client_async/models/runner.py +1 -5
- {daytona_api_client_async-0.107.0rc2.dist-info → daytona_api_client_async-0.107.1.dist-info}/METADATA +1 -1
- {daytona_api_client_async-0.107.0rc2.dist-info → daytona_api_client_async-0.107.1.dist-info}/RECORD +7 -7
- {daytona_api_client_async-0.107.0rc2.dist-info → daytona_api_client_async-0.107.1.dist-info}/WHEEL +0 -0
- {daytona_api_client_async-0.107.0rc2.dist-info → daytona_api_client_async-0.107.1.dist-info}/licenses/LICENSE +0 -0
- {daytona_api_client_async-0.107.0rc2.dist-info → daytona_api_client_async-0.107.1.dist-info}/top_level.txt +0 -0
|
@@ -37,11 +37,10 @@ class CreateRunner(BaseModel):
|
|
|
37
37
|
gpu: Union[StrictFloat, StrictInt]
|
|
38
38
|
gpu_type: StrictStr = Field(alias="gpuType")
|
|
39
39
|
var_class: StrictStr = Field(alias="class")
|
|
40
|
-
capacity: Union[StrictFloat, StrictInt]
|
|
41
40
|
region: StrictStr
|
|
42
41
|
version: StrictStr
|
|
43
42
|
additional_properties: Dict[str, Any] = {}
|
|
44
|
-
__properties: ClassVar[List[str]] = ["domain", "apiUrl", "proxyUrl", "apiKey", "cpu", "memoryGiB", "diskGiB", "gpu", "gpuType", "class", "
|
|
43
|
+
__properties: ClassVar[List[str]] = ["domain", "apiUrl", "proxyUrl", "apiKey", "cpu", "memoryGiB", "diskGiB", "gpu", "gpuType", "class", "region", "version"]
|
|
45
44
|
|
|
46
45
|
@field_validator('var_class')
|
|
47
46
|
def var_class_validate_enum(cls, value):
|
|
@@ -118,7 +117,6 @@ class CreateRunner(BaseModel):
|
|
|
118
117
|
"gpu": obj.get("gpu"),
|
|
119
118
|
"gpuType": obj.get("gpuType"),
|
|
120
119
|
"class": obj.get("class"),
|
|
121
|
-
"capacity": obj.get("capacity"),
|
|
122
120
|
"region": obj.get("region"),
|
|
123
121
|
"version": obj.get("version")
|
|
124
122
|
})
|
|
@@ -40,8 +40,6 @@ class Runner(BaseModel):
|
|
|
40
40
|
gpu: Union[StrictFloat, StrictInt] = Field(description="The GPU capacity of the runner")
|
|
41
41
|
gpu_type: StrictStr = Field(description="The type of GPU", alias="gpuType")
|
|
42
42
|
var_class: SandboxClass = Field(description="The class of the runner", alias="class")
|
|
43
|
-
used: Union[StrictFloat, StrictInt] = Field(description="The current usage of the runner")
|
|
44
|
-
capacity: Union[StrictFloat, StrictInt] = Field(description="The capacity of the runner")
|
|
45
43
|
current_cpu_usage_percentage: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Current CPU usage percentage", alias="currentCpuUsagePercentage")
|
|
46
44
|
current_memory_usage_percentage: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Current RAM usage percentage", alias="currentMemoryUsagePercentage")
|
|
47
45
|
current_disk_usage_percentage: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Current disk usage percentage", alias="currentDiskUsagePercentage")
|
|
@@ -58,7 +56,7 @@ class Runner(BaseModel):
|
|
|
58
56
|
updated_at: StrictStr = Field(description="The last update timestamp of the runner", alias="updatedAt")
|
|
59
57
|
version: StrictStr = Field(description="The version of the runner")
|
|
60
58
|
additional_properties: Dict[str, Any] = {}
|
|
61
|
-
__properties: ClassVar[List[str]] = ["id", "domain", "apiUrl", "proxyUrl", "apiKey", "cpu", "memory", "disk", "gpu", "gpuType", "class", "
|
|
59
|
+
__properties: ClassVar[List[str]] = ["id", "domain", "apiUrl", "proxyUrl", "apiKey", "cpu", "memory", "disk", "gpu", "gpuType", "class", "currentCpuUsagePercentage", "currentMemoryUsagePercentage", "currentDiskUsagePercentage", "currentAllocatedCpu", "currentAllocatedMemoryGiB", "currentAllocatedDiskGiB", "currentSnapshotCount", "availabilityScore", "region", "state", "lastChecked", "unschedulable", "createdAt", "updatedAt", "version"]
|
|
62
60
|
|
|
63
61
|
model_config = ConfigDict(
|
|
64
62
|
populate_by_name=True,
|
|
@@ -129,8 +127,6 @@ class Runner(BaseModel):
|
|
|
129
127
|
"gpu": obj.get("gpu"),
|
|
130
128
|
"gpuType": obj.get("gpuType"),
|
|
131
129
|
"class": obj.get("class"),
|
|
132
|
-
"used": obj.get("used"),
|
|
133
|
-
"capacity": obj.get("capacity"),
|
|
134
130
|
"currentCpuUsagePercentage": obj.get("currentCpuUsagePercentage"),
|
|
135
131
|
"currentMemoryUsagePercentage": obj.get("currentMemoryUsagePercentage"),
|
|
136
132
|
"currentDiskUsagePercentage": obj.get("currentDiskUsagePercentage"),
|
{daytona_api_client_async-0.107.0rc2.dist-info → daytona_api_client_async-0.107.1.dist-info}/RECORD
RENAMED
|
@@ -48,7 +48,7 @@ daytona_api_client_async/models/create_organization.py,sha256=0sDPZBYWzMT5pc0edR
|
|
|
48
48
|
daytona_api_client_async/models/create_organization_invitation.py,sha256=U5uLVrI3b5kfVqffuwzuqaAsZ-Ml-1xGM5RndmIz-Gk,4016
|
|
49
49
|
daytona_api_client_async/models/create_organization_quota.py,sha256=HERVvV6pRerMtV05dPTwEec82HcSJ_tKFpEcYfLlLrQ,4716
|
|
50
50
|
daytona_api_client_async/models/create_organization_role.py,sha256=vQai9U9x82hVCfRCotP1UKtaDz3yehtHxOqVEIhG_Ds,4069
|
|
51
|
-
daytona_api_client_async/models/create_runner.py,sha256=
|
|
51
|
+
daytona_api_client_async/models/create_runner.py,sha256=1dGs6EB7BhoGrMwMQPFMfZMwbGyHj08hTINLJlhb1ok,4429
|
|
52
52
|
daytona_api_client_async/models/create_sandbox.py,sha256=bZnN9zmtlR9XpQyn2jtvpojvsoL-aBmjoGKnlFCZ2O4,7583
|
|
53
53
|
daytona_api_client_async/models/create_session_request.py,sha256=8Zv23ZXzrW6v2GmygwTUz5bTugAikCT-T8eHwwYRLxc,3136
|
|
54
54
|
daytona_api_client_async/models/create_snapshot.py,sha256=wBhM3BVLDM_zUIcnln0tU0MDARjzHp3fSfRmeAtgVXc,4774
|
|
@@ -132,7 +132,7 @@ daytona_api_client_async/models/region_screenshot_response.py,sha256=SCWHyJSAwC2
|
|
|
132
132
|
daytona_api_client_async/models/registry_push_access_dto.py,sha256=gTWfFynNH4DTuenBBp6C6CZDABa7lAVtUrP9qYHe4Rs,3862
|
|
133
133
|
daytona_api_client_async/models/replace_request.py,sha256=6y6osWGrtr3flOYYW5LK0PCw6dV2QthRlKlwFWoCTWs,3222
|
|
134
134
|
daytona_api_client_async/models/replace_result.py,sha256=yqqFWHo2NgsOqTPR-xcOxBPEIVkkSh8Rjzs1rtdoEek,3236
|
|
135
|
-
daytona_api_client_async/models/runner.py,sha256=
|
|
135
|
+
daytona_api_client_async/models/runner.py,sha256=kZehQBmOj7uc3f5zdjjmTfC3N9VYbM81uzIKI6z_2WA,7845
|
|
136
136
|
daytona_api_client_async/models/runner_region.py,sha256=Lkxx3kYTx8m4w3ntEiaOafMrUknhtNMfk00oD92kXZE,716
|
|
137
137
|
daytona_api_client_async/models/runner_snapshot_dto.py,sha256=ZBv1j3_4huI-z4GWbCqxOOT85OSyNYX3FHVAHQU6rbo,3447
|
|
138
138
|
daytona_api_client_async/models/runner_state.py,sha256=_cGjUiDdFZtUQjPc76YKgawOdxV1BDq0ehyKqWFMjD4,819
|
|
@@ -194,8 +194,8 @@ daytona_api_client_async/models/windows_response.py,sha256=1fW2GYVSjFbipfQupU2Mj
|
|
|
194
194
|
daytona_api_client_async/models/work_dir_response.py,sha256=1dndjWYnDSMDeLiY8pxQDX1viESoAGF_fegSiMx3i40,3047
|
|
195
195
|
daytona_api_client_async/models/workdir_response.py,sha256=geBhfQDR7LK0uPlmJF6Ple1eQMCzhSb4qK-9UfhqV7k,3047
|
|
196
196
|
daytona_api_client_async/models/workspace.py,sha256=OaLAKPDmeJ0mRoisZg62smbc4GBBTYUZkLqQbIaCHZY,11518
|
|
197
|
-
daytona_api_client_async-0.107.
|
|
198
|
-
daytona_api_client_async-0.107.
|
|
199
|
-
daytona_api_client_async-0.107.
|
|
200
|
-
daytona_api_client_async-0.107.
|
|
201
|
-
daytona_api_client_async-0.107.
|
|
197
|
+
daytona_api_client_async-0.107.1.dist-info/licenses/LICENSE,sha256=Qrw_9vreBpJ9mUMcB5B7ALDecZHgRciuOqS0BPfpihc,10752
|
|
198
|
+
daytona_api_client_async-0.107.1.dist-info/METADATA,sha256=shfLEqW4InG14CXIR1qQgn3AaRIh0unqjZa0xP3r2Zg,691
|
|
199
|
+
daytona_api_client_async-0.107.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
200
|
+
daytona_api_client_async-0.107.1.dist-info/top_level.txt,sha256=PdOUDLVBJmZNDB8ak8FMMwmlyfRqUhQQ9SUDgNnbdZo,25
|
|
201
|
+
daytona_api_client_async-0.107.1.dist-info/RECORD,,
|
{daytona_api_client_async-0.107.0rc2.dist-info → daytona_api_client_async-0.107.1.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|