daytona_api_client 0.25.5__py3-none-any.whl → 0.26.0__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 might be problematic. Click here for more details.
- daytona_api_client/__init__.py +12 -1
- daytona_api_client/api/__init__.py +2 -0
- daytona_api_client/api/default_api.py +1884 -0
- daytona_api_client/api/health_api.py +282 -0
- daytona_api_client/api/organizations_api.py +6 -6
- daytona_api_client/api/sandbox_api.py +855 -2
- daytona_api_client/api/webhooks_api.py +1704 -0
- daytona_api_client/models/__init__.py +10 -1
- daytona_api_client/models/create_audit_log.py +2 -2
- daytona_api_client/models/create_sandbox.py +5 -1
- daytona_api_client/models/health_controller_check200_response.py +154 -0
- daytona_api_client/models/{account_provider_dto.py → health_controller_check200_response_info_value.py} +23 -23
- daytona_api_client/models/health_controller_check503_response.py +154 -0
- daytona_api_client/models/{usage_overview.py → organization_usage_overview.py} +14 -8
- daytona_api_client/models/sandbox.py +5 -1
- daytona_api_client/models/sandbox_created_post_request.py +110 -0
- daytona_api_client/models/sandbox_created_post_request_data.py +152 -0
- daytona_api_client/models/sandbox_state.py +1 -1
- daytona_api_client/models/sandbox_state_updated_post_request.py +110 -0
- daytona_api_client/models/sandbox_state_updated_post_request_data.py +129 -0
- daytona_api_client/models/sandbox_state_updated_post_request_data_sandbox.py +115 -0
- daytona_api_client/models/send_webhook_dto.py +105 -0
- daytona_api_client/models/snapshot_created_post_request.py +110 -0
- daytona_api_client/models/snapshot_created_post_request_data.py +136 -0
- daytona_api_client/models/{get_build_logs400_response.py → snapshot_removed_post_request.py} +31 -26
- daytona_api_client/models/snapshot_state_updated_post_request.py +110 -0
- daytona_api_client/models/snapshot_state_updated_post_request_data.py +129 -0
- daytona_api_client/models/snapshot_state_updated_post_request_data_snapshot.py +115 -0
- daytona_api_client/models/ssh_access_dto.py +112 -0
- daytona_api_client/models/ssh_access_validation_dto.py +107 -0
- daytona_api_client/models/volume_created_post_request.py +110 -0
- daytona_api_client/models/{volume.py → volume_created_post_request_data.py} +48 -55
- daytona_api_client/models/volume_state_updated_post_request.py +110 -0
- daytona_api_client/models/volume_state_updated_post_request_data.py +129 -0
- daytona_api_client/models/volume_state_updated_post_request_data_volume.py +115 -0
- daytona_api_client/models/{download_files.py → webhook_app_portal_access.py} +7 -7
- daytona_api_client/models/{upload_file.py → webhook_controller_get_app_portal_access200_response.py} +26 -26
- daytona_api_client/models/webhook_controller_get_initialization_status200_response.py +118 -0
- daytona_api_client/models/{toggle_state.py → webhook_controller_get_status200_response.py} +7 -7
- daytona_api_client/models/webhook_initialization_status.py +121 -0
- daytona_api_client/models/workspace.py +5 -1
- {daytona_api_client-0.25.5.dist-info → daytona_api_client-0.26.0.dist-info}/METADATA +1 -1
- {daytona_api_client-0.25.5.dist-info → daytona_api_client-0.26.0.dist-info}/RECORD +46 -26
- daytona_api_client/models/build_snapshot.py +0 -118
- daytona_api_client/models/upload_file_dto.py +0 -101
- daytona_api_client/models/upload_file_request_file.py +0 -159
- daytona_api_client/models/upload_files_multi_request_files_inner.py +0 -101
- {daytona_api_client-0.25.5.dist-info → daytona_api_client-0.26.0.dist-info}/WHEEL +0 -0
- {daytona_api_client-0.25.5.dist-info → daytona_api_client-0.26.0.dist-info}/licenses/LICENSE +0 -0
- {daytona_api_client-0.25.5.dist-info → daytona_api_client-0.26.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Daytona
|
|
5
|
+
|
|
6
|
+
Daytona AI platform API Docs
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.0
|
|
9
|
+
Contact: support@daytona.com
|
|
10
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
|
+
|
|
12
|
+
Do not edit the class manually.
|
|
13
|
+
""" # noqa: E501
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
from __future__ import annotations
|
|
17
|
+
import pprint
|
|
18
|
+
import re # noqa: F401
|
|
19
|
+
import json
|
|
20
|
+
|
|
21
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictFloat, StrictInt, StrictStr
|
|
22
|
+
from typing import Any, ClassVar, Dict, List, Optional, Union
|
|
23
|
+
from typing import Optional, Set
|
|
24
|
+
from typing_extensions import Self
|
|
25
|
+
|
|
26
|
+
class WebhookControllerGetInitializationStatus200Response(BaseModel):
|
|
27
|
+
"""
|
|
28
|
+
WebhookControllerGetInitializationStatus200Response
|
|
29
|
+
""" # noqa: E501
|
|
30
|
+
organization_id: Optional[StrictStr] = Field(default=None, alias="organizationId")
|
|
31
|
+
endpoints_created: Optional[StrictBool] = Field(default=None, alias="endpointsCreated")
|
|
32
|
+
svix_application_created: Optional[StrictBool] = Field(default=None, alias="svixApplicationCreated")
|
|
33
|
+
last_error: Optional[StrictStr] = Field(default=None, alias="lastError")
|
|
34
|
+
retry_count: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, alias="retryCount")
|
|
35
|
+
created_at: Optional[StrictStr] = Field(default=None, alias="createdAt")
|
|
36
|
+
updated_at: Optional[StrictStr] = Field(default=None, alias="updatedAt")
|
|
37
|
+
additional_properties: Dict[str, Any] = {}
|
|
38
|
+
__properties: ClassVar[List[str]] = ["organizationId", "endpointsCreated", "svixApplicationCreated", "lastError", "retryCount", "createdAt", "updatedAt"]
|
|
39
|
+
|
|
40
|
+
model_config = ConfigDict(
|
|
41
|
+
populate_by_name=True,
|
|
42
|
+
validate_assignment=True,
|
|
43
|
+
protected_namespaces=(),
|
|
44
|
+
)
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
def to_str(self) -> str:
|
|
48
|
+
"""Returns the string representation of the model using alias"""
|
|
49
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
|
50
|
+
|
|
51
|
+
def to_json(self) -> str:
|
|
52
|
+
"""Returns the JSON representation of the model using alias"""
|
|
53
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
|
54
|
+
return json.dumps(self.to_dict())
|
|
55
|
+
|
|
56
|
+
@classmethod
|
|
57
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
58
|
+
"""Create an instance of WebhookControllerGetInitializationStatus200Response from a JSON string"""
|
|
59
|
+
return cls.from_dict(json.loads(json_str))
|
|
60
|
+
|
|
61
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
62
|
+
"""Return the dictionary representation of the model using alias.
|
|
63
|
+
|
|
64
|
+
This has the following differences from calling pydantic's
|
|
65
|
+
`self.model_dump(by_alias=True)`:
|
|
66
|
+
|
|
67
|
+
* `None` is only added to the output dict for nullable fields that
|
|
68
|
+
were set at model initialization. Other fields with value `None`
|
|
69
|
+
are ignored.
|
|
70
|
+
* Fields in `self.additional_properties` are added to the output dict.
|
|
71
|
+
"""
|
|
72
|
+
excluded_fields: Set[str] = set([
|
|
73
|
+
"additional_properties",
|
|
74
|
+
])
|
|
75
|
+
|
|
76
|
+
_dict = self.model_dump(
|
|
77
|
+
by_alias=True,
|
|
78
|
+
exclude=excluded_fields,
|
|
79
|
+
exclude_none=True,
|
|
80
|
+
)
|
|
81
|
+
# puts key-value pairs in additional_properties in the top level
|
|
82
|
+
if self.additional_properties is not None:
|
|
83
|
+
for _key, _value in self.additional_properties.items():
|
|
84
|
+
_dict[_key] = _value
|
|
85
|
+
|
|
86
|
+
# set to None if last_error (nullable) is None
|
|
87
|
+
# and model_fields_set contains the field
|
|
88
|
+
if self.last_error is None and "last_error" in self.model_fields_set:
|
|
89
|
+
_dict['lastError'] = None
|
|
90
|
+
|
|
91
|
+
return _dict
|
|
92
|
+
|
|
93
|
+
@classmethod
|
|
94
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
95
|
+
"""Create an instance of WebhookControllerGetInitializationStatus200Response from a dict"""
|
|
96
|
+
if obj is None:
|
|
97
|
+
return None
|
|
98
|
+
|
|
99
|
+
if not isinstance(obj, dict):
|
|
100
|
+
return cls.model_validate(obj)
|
|
101
|
+
|
|
102
|
+
_obj = cls.model_validate({
|
|
103
|
+
"organizationId": obj.get("organizationId"),
|
|
104
|
+
"endpointsCreated": obj.get("endpointsCreated"),
|
|
105
|
+
"svixApplicationCreated": obj.get("svixApplicationCreated"),
|
|
106
|
+
"lastError": obj.get("lastError"),
|
|
107
|
+
"retryCount": obj.get("retryCount"),
|
|
108
|
+
"createdAt": obj.get("createdAt"),
|
|
109
|
+
"updatedAt": obj.get("updatedAt")
|
|
110
|
+
})
|
|
111
|
+
# store additional fields in additional_properties
|
|
112
|
+
for _key in obj.keys():
|
|
113
|
+
if _key not in cls.__properties:
|
|
114
|
+
_obj.additional_properties[_key] = obj.get(_key)
|
|
115
|
+
|
|
116
|
+
return _obj
|
|
117
|
+
|
|
118
|
+
|
|
@@ -18,16 +18,16 @@ import pprint
|
|
|
18
18
|
import re # noqa: F401
|
|
19
19
|
import json
|
|
20
20
|
|
|
21
|
-
from pydantic import BaseModel, ConfigDict,
|
|
22
|
-
from typing import Any, ClassVar, Dict, List
|
|
21
|
+
from pydantic import BaseModel, ConfigDict, StrictBool
|
|
22
|
+
from typing import Any, ClassVar, Dict, List, Optional
|
|
23
23
|
from typing import Optional, Set
|
|
24
24
|
from typing_extensions import Self
|
|
25
25
|
|
|
26
|
-
class
|
|
26
|
+
class WebhookControllerGetStatus200Response(BaseModel):
|
|
27
27
|
"""
|
|
28
|
-
|
|
28
|
+
WebhookControllerGetStatus200Response
|
|
29
29
|
""" # noqa: E501
|
|
30
|
-
enabled: StrictBool =
|
|
30
|
+
enabled: Optional[StrictBool] = None
|
|
31
31
|
additional_properties: Dict[str, Any] = {}
|
|
32
32
|
__properties: ClassVar[List[str]] = ["enabled"]
|
|
33
33
|
|
|
@@ -49,7 +49,7 @@ class ToggleState(BaseModel):
|
|
|
49
49
|
|
|
50
50
|
@classmethod
|
|
51
51
|
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
52
|
-
"""Create an instance of
|
|
52
|
+
"""Create an instance of WebhookControllerGetStatus200Response from a JSON string"""
|
|
53
53
|
return cls.from_dict(json.loads(json_str))
|
|
54
54
|
|
|
55
55
|
def to_dict(self) -> Dict[str, Any]:
|
|
@@ -81,7 +81,7 @@ class ToggleState(BaseModel):
|
|
|
81
81
|
|
|
82
82
|
@classmethod
|
|
83
83
|
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
84
|
-
"""Create an instance of
|
|
84
|
+
"""Create an instance of WebhookControllerGetStatus200Response from a dict"""
|
|
85
85
|
if obj is None:
|
|
86
86
|
return None
|
|
87
87
|
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Daytona
|
|
5
|
+
|
|
6
|
+
Daytona AI platform API Docs
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.0
|
|
9
|
+
Contact: support@daytona.com
|
|
10
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
|
+
|
|
12
|
+
Do not edit the class manually.
|
|
13
|
+
""" # noqa: E501
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
from __future__ import annotations
|
|
17
|
+
import pprint
|
|
18
|
+
import re # noqa: F401
|
|
19
|
+
import json
|
|
20
|
+
|
|
21
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt, StrictStr
|
|
22
|
+
from typing import Any, ClassVar, Dict, List, Optional, Union
|
|
23
|
+
from typing import Optional, Set
|
|
24
|
+
from typing_extensions import Self
|
|
25
|
+
|
|
26
|
+
class WebhookInitializationStatus(BaseModel):
|
|
27
|
+
"""
|
|
28
|
+
WebhookInitializationStatus
|
|
29
|
+
""" # noqa: E501
|
|
30
|
+
organization_id: StrictStr = Field(description="Organization ID", alias="organizationId")
|
|
31
|
+
svix_application_id: Optional[StrictStr] = Field(description="The ID of the Svix application", alias="svixApplicationId")
|
|
32
|
+
last_error: Optional[StrictStr] = Field(description="The error reason for the last initialization attempt", alias="lastError")
|
|
33
|
+
retry_count: Union[StrictFloat, StrictInt] = Field(description="The number of times the initialization has been attempted", alias="retryCount")
|
|
34
|
+
created_at: StrictStr = Field(description="When the webhook initialization was created", alias="createdAt")
|
|
35
|
+
updated_at: StrictStr = Field(description="When the webhook initialization was last updated", alias="updatedAt")
|
|
36
|
+
additional_properties: Dict[str, Any] = {}
|
|
37
|
+
__properties: ClassVar[List[str]] = ["organizationId", "svixApplicationId", "lastError", "retryCount", "createdAt", "updatedAt"]
|
|
38
|
+
|
|
39
|
+
model_config = ConfigDict(
|
|
40
|
+
populate_by_name=True,
|
|
41
|
+
validate_assignment=True,
|
|
42
|
+
protected_namespaces=(),
|
|
43
|
+
)
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
def to_str(self) -> str:
|
|
47
|
+
"""Returns the string representation of the model using alias"""
|
|
48
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
|
49
|
+
|
|
50
|
+
def to_json(self) -> str:
|
|
51
|
+
"""Returns the JSON representation of the model using alias"""
|
|
52
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
|
53
|
+
return json.dumps(self.to_dict())
|
|
54
|
+
|
|
55
|
+
@classmethod
|
|
56
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
57
|
+
"""Create an instance of WebhookInitializationStatus from a JSON string"""
|
|
58
|
+
return cls.from_dict(json.loads(json_str))
|
|
59
|
+
|
|
60
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
61
|
+
"""Return the dictionary representation of the model using alias.
|
|
62
|
+
|
|
63
|
+
This has the following differences from calling pydantic's
|
|
64
|
+
`self.model_dump(by_alias=True)`:
|
|
65
|
+
|
|
66
|
+
* `None` is only added to the output dict for nullable fields that
|
|
67
|
+
were set at model initialization. Other fields with value `None`
|
|
68
|
+
are ignored.
|
|
69
|
+
* Fields in `self.additional_properties` are added to the output dict.
|
|
70
|
+
"""
|
|
71
|
+
excluded_fields: Set[str] = set([
|
|
72
|
+
"additional_properties",
|
|
73
|
+
])
|
|
74
|
+
|
|
75
|
+
_dict = self.model_dump(
|
|
76
|
+
by_alias=True,
|
|
77
|
+
exclude=excluded_fields,
|
|
78
|
+
exclude_none=True,
|
|
79
|
+
)
|
|
80
|
+
# puts key-value pairs in additional_properties in the top level
|
|
81
|
+
if self.additional_properties is not None:
|
|
82
|
+
for _key, _value in self.additional_properties.items():
|
|
83
|
+
_dict[_key] = _value
|
|
84
|
+
|
|
85
|
+
# set to None if svix_application_id (nullable) is None
|
|
86
|
+
# and model_fields_set contains the field
|
|
87
|
+
if self.svix_application_id is None and "svix_application_id" in self.model_fields_set:
|
|
88
|
+
_dict['svixApplicationId'] = None
|
|
89
|
+
|
|
90
|
+
# set to None if last_error (nullable) is None
|
|
91
|
+
# and model_fields_set contains the field
|
|
92
|
+
if self.last_error is None and "last_error" in self.model_fields_set:
|
|
93
|
+
_dict['lastError'] = None
|
|
94
|
+
|
|
95
|
+
return _dict
|
|
96
|
+
|
|
97
|
+
@classmethod
|
|
98
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
99
|
+
"""Create an instance of WebhookInitializationStatus from a dict"""
|
|
100
|
+
if obj is None:
|
|
101
|
+
return None
|
|
102
|
+
|
|
103
|
+
if not isinstance(obj, dict):
|
|
104
|
+
return cls.model_validate(obj)
|
|
105
|
+
|
|
106
|
+
_obj = cls.model_validate({
|
|
107
|
+
"organizationId": obj.get("organizationId"),
|
|
108
|
+
"svixApplicationId": obj.get("svixApplicationId"),
|
|
109
|
+
"lastError": obj.get("lastError"),
|
|
110
|
+
"retryCount": obj.get("retryCount"),
|
|
111
|
+
"createdAt": obj.get("createdAt"),
|
|
112
|
+
"updatedAt": obj.get("updatedAt")
|
|
113
|
+
})
|
|
114
|
+
# store additional fields in additional_properties
|
|
115
|
+
for _key in obj.keys():
|
|
116
|
+
if _key not in cls.__properties:
|
|
117
|
+
_obj.additional_properties[_key] = obj.get(_key)
|
|
118
|
+
|
|
119
|
+
return _obj
|
|
120
|
+
|
|
121
|
+
|
|
@@ -39,6 +39,8 @@ class Workspace(BaseModel):
|
|
|
39
39
|
env: Dict[str, StrictStr] = Field(description="Environment variables for the sandbox")
|
|
40
40
|
labels: Dict[str, StrictStr] = Field(description="Labels for the sandbox")
|
|
41
41
|
public: StrictBool = Field(description="Whether the sandbox http preview is public")
|
|
42
|
+
network_block_all: StrictBool = Field(description="Whether to block all network access for the sandbox", alias="networkBlockAll")
|
|
43
|
+
network_allow_list: Optional[StrictStr] = Field(default=None, description="Comma-separated list of allowed CIDR network addresses for the sandbox", alias="networkAllowList")
|
|
42
44
|
target: StrictStr = Field(description="The target environment for the sandbox")
|
|
43
45
|
cpu: Union[StrictFloat, StrictInt] = Field(description="The CPU quota for the sandbox")
|
|
44
46
|
gpu: Union[StrictFloat, StrictInt] = Field(description="The GPU quota for the sandbox")
|
|
@@ -65,7 +67,7 @@ class Workspace(BaseModel):
|
|
|
65
67
|
snapshot_created_at: Optional[StrictStr] = Field(default=None, description="The creation timestamp of the last snapshot", alias="snapshotCreatedAt")
|
|
66
68
|
info: Optional[SandboxInfo] = Field(default=None, description="Additional information about the sandbox")
|
|
67
69
|
additional_properties: Dict[str, Any] = {}
|
|
68
|
-
__properties: ClassVar[List[str]] = ["id", "organizationId", "snapshot", "user", "env", "labels", "public", "target", "cpu", "gpu", "memory", "disk", "state", "desiredState", "errorReason", "backupState", "backupCreatedAt", "autoStopInterval", "autoArchiveInterval", "autoDeleteInterval", "runnerDomain", "volumes", "buildInfo", "createdAt", "updatedAt", "class", "daemonVersion", "name", "image", "snapshotState", "snapshotCreatedAt", "info"]
|
|
70
|
+
__properties: ClassVar[List[str]] = ["id", "organizationId", "snapshot", "user", "env", "labels", "public", "networkBlockAll", "networkAllowList", "target", "cpu", "gpu", "memory", "disk", "state", "desiredState", "errorReason", "backupState", "backupCreatedAt", "autoStopInterval", "autoArchiveInterval", "autoDeleteInterval", "runnerDomain", "volumes", "buildInfo", "createdAt", "updatedAt", "class", "daemonVersion", "name", "image", "snapshotState", "snapshotCreatedAt", "info"]
|
|
69
71
|
|
|
70
72
|
@field_validator('backup_state')
|
|
71
73
|
def backup_state_validate_enum(cls, value):
|
|
@@ -175,6 +177,8 @@ class Workspace(BaseModel):
|
|
|
175
177
|
"env": obj.get("env"),
|
|
176
178
|
"labels": obj.get("labels"),
|
|
177
179
|
"public": obj.get("public"),
|
|
180
|
+
"networkBlockAll": obj.get("networkBlockAll"),
|
|
181
|
+
"networkAllowList": obj.get("networkAllowList"),
|
|
178
182
|
"target": obj.get("target"),
|
|
179
183
|
"cpu": obj.get("cpu"),
|
|
180
184
|
"gpu": obj.get("gpu"),
|
|
@@ -1,32 +1,33 @@
|
|
|
1
|
-
daytona_api_client/__init__.py,sha256=
|
|
1
|
+
daytona_api_client/__init__.py,sha256=Z_CzxV9a4oC0lKb4_Wzb3aEvceGXAPl4Zh6tulSqHTk,11170
|
|
2
2
|
daytona_api_client/api_client.py,sha256=9EKcRsveS2okE5kTbp212LVTY6LJATDZEqA8Rj77vXY,27455
|
|
3
3
|
daytona_api_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
4
4
|
daytona_api_client/configuration.py,sha256=Dz7AXjEZ4BCCCUoGQZLfXUTtuH1PUuo3KrlwLO5Dlsk,18241
|
|
5
5
|
daytona_api_client/exceptions.py,sha256=3gaH4PrTgR6rYIRmHOcYlIDJ-mqS-M_Ut5wcEcVbtdU,6424
|
|
6
6
|
daytona_api_client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
7
|
daytona_api_client/rest.py,sha256=H40AJj0ztQ4zkYCrH7-rJXFZ59kQUFm79CHO7UA5bgQ,9425
|
|
8
|
-
daytona_api_client/api/__init__.py,sha256=
|
|
8
|
+
daytona_api_client/api/__init__.py,sha256=Dq_s99POdbxoPGia-93Cl19QTg6jSeK331LuqiMpcYA,959
|
|
9
9
|
daytona_api_client/api/api_keys_api.py,sha256=bK0q7sbCBc0eAqRXQxx4F6UyjJ7A7qUCWp5r8TFywT8,54601
|
|
10
10
|
daytona_api_client/api/audit_api.py,sha256=5vx-1YZfKZmOmOhRHBtz4JGtRbiNDAKq4wpjHIe3iNw,34208
|
|
11
|
+
daytona_api_client/api/default_api.py,sha256=4-VA8V8k3HRRMrs94ANAwkyDKVAZWmNlm2g1X87WOrA,74162
|
|
11
12
|
daytona_api_client/api/docker_registry_api.py,sha256=ids7YUbqX4s2uwv7ROhqFqNzHzdYa7nK9wOPQ5rgB8U,78838
|
|
13
|
+
daytona_api_client/api/health_api.py,sha256=alnAhh9vQkpx2OmVre6dHmHTlcFldBfqsogNoUPzFsc,10533
|
|
12
14
|
daytona_api_client/api/object_storage_api.py,sha256=wvOdTUjvlChxzwwzA-49iwjl46F0uFt06Axfcb_BX4Q,11605
|
|
13
|
-
daytona_api_client/api/organizations_api.py,sha256=
|
|
15
|
+
daytona_api_client/api/organizations_api.py,sha256=ImQo7nBxtzgIiRXMBdyVxrjC-u8dPLKDa3BLqirGn0Y,276660
|
|
14
16
|
daytona_api_client/api/preview_api.py,sha256=_cYR0xaBKtYBFUKIRezvR0d6swN7yKkmVkJ5yBLk_ro,31054
|
|
15
17
|
daytona_api_client/api/runners_api.py,sha256=kl74Mg19G71Kcj9dNK9xeJCaZ2upk4z-DS7Ul70n-Ww,49018
|
|
16
|
-
daytona_api_client/api/sandbox_api.py,sha256=
|
|
18
|
+
daytona_api_client/api/sandbox_api.py,sha256=yr4s9iuEYpu2mspxJC4WfkVJMpAlEAa1NEI38IwW6R4,210810
|
|
17
19
|
daytona_api_client/api/snapshots_api.py,sha256=rt0h_XOyGay-JEaqw69-JqiJEq0GbG1U-MKJtg3Ez0c,103174
|
|
18
20
|
daytona_api_client/api/toolbox_api.py,sha256=izj9K1CqTATLepFrFqrgJ0rAZ3TlBXYlcuXkZij1EPQ,720094
|
|
19
21
|
daytona_api_client/api/users_api.py,sha256=KR4cw2mfRp06QV2b0UXXQ1Jcx59TyuS0c7yGRr2Sodk,86402
|
|
20
22
|
daytona_api_client/api/volumes_api.py,sha256=N9kxZzhfaZxC_YQ-Vi1QksoTIzqp_dFADywgQup1oSk,56613
|
|
23
|
+
daytona_api_client/api/webhooks_api.py,sha256=epxKIYqZfebDapzSvqUVlJct1KfVr_T3ZnAc9YyiZX8,69516
|
|
21
24
|
daytona_api_client/api/workspace_api.py,sha256=mjn4jlTtMbKfuqxcr9goo-01RJX-hFjVLT1rF8K5uKI,169328
|
|
22
|
-
daytona_api_client/models/__init__.py,sha256=
|
|
25
|
+
daytona_api_client/models/__init__.py,sha256=aZVCM5puP19O7aIUbnNFBYyTVFyLPurQNt5m-V76_Vk,9675
|
|
23
26
|
daytona_api_client/models/account_provider.py,sha256=yKJ_dMGnxGalNYuVTmo4CoFHpj1PIssSE1rnUaQeOKY,3154
|
|
24
|
-
daytona_api_client/models/account_provider_dto.py,sha256=__7634O02yfv49jLLzvadJlF1YodOeZmWzjZKUmtd2Y,3154
|
|
25
27
|
daytona_api_client/models/api_key_list.py,sha256=LwEm8q2SjDOGa04S0kkk4GRbZPvrpVJ-4Ju1dgcp0b8,5005
|
|
26
28
|
daytona_api_client/models/api_key_response.py,sha256=XWqJdKTMp1w8uoUpmeKn0tKeXeImTJElnTvLunZGX5Y,4611
|
|
27
29
|
daytona_api_client/models/audit_log.py,sha256=sEOzYMbo8D525RhvlbizaiDjcC9fKo0-v2LbkXyxC6A,4689
|
|
28
30
|
daytona_api_client/models/build_info.py,sha256=5mPYDwHA3pQ4fPbNuE3kC9DYUmebIncqc4Fj2BQR1ZQ,3735
|
|
29
|
-
daytona_api_client/models/build_snapshot.py,sha256=Sz3O8H7xwIMHwrlbeQhxHNDHidbk_-2b7NtHYedoSGU,4272
|
|
30
31
|
daytona_api_client/models/command.py,sha256=BSsm6JDZ3gX7EfhFMzhsgv_r1q4ycJmN4ba0d2qFoBg,3403
|
|
31
32
|
daytona_api_client/models/completion_context.py,sha256=ulDPkPYnVGiBMzcTDdyGrq9sPwb4ZYECJ8XvC9-rrvc,3330
|
|
32
33
|
daytona_api_client/models/completion_item.py,sha256=fnIhRNLvf0jaB_RXpS28QQyB1DvUMvFl7YLh49r88pk,3803
|
|
@@ -36,7 +37,7 @@ daytona_api_client/models/computer_use_start_response.py,sha256=9VYe5UMBU-0EpGaw
|
|
|
36
37
|
daytona_api_client/models/computer_use_status_response.py,sha256=P2dNSx1Ot-szu4y5gk1GCEJixCxsXrVnMNetxeYMh54,3489
|
|
37
38
|
daytona_api_client/models/computer_use_stop_response.py,sha256=FUpPYsIMPXqCGKYqdvVozjHHthg5j0o8NOMCYXjp5lY,3332
|
|
38
39
|
daytona_api_client/models/create_api_key.py,sha256=GFv3d-rA2Mbr9UhP-0O0DKm-gvln_JSGFJjMyoSAc8A,4351
|
|
39
|
-
daytona_api_client/models/create_audit_log.py,sha256=
|
|
40
|
+
daytona_api_client/models/create_audit_log.py,sha256=r2x9_bFGSlBs7_kA6KGSUGlA5zzUTqw6UVe-gMDBtrU,7077
|
|
40
41
|
daytona_api_client/models/create_build_info.py,sha256=hepmmgcZn199sgLksLm3ksJNSv-XLSgqL2BPdFnNAdg,3402
|
|
41
42
|
daytona_api_client/models/create_docker_registry.py,sha256=dyWgwtTu6RcbGgXyosFbwtvPJ55FjuK0duof-jK9o7Q,4337
|
|
42
43
|
daytona_api_client/models/create_linked_account.py,sha256=ar_cK_7Ep9iQ6zKeYDEMhQ5m3jc5EuomXj9SpdtWtSE,3289
|
|
@@ -45,7 +46,7 @@ daytona_api_client/models/create_organization_invitation.py,sha256=U5uLVrI3b5kfV
|
|
|
45
46
|
daytona_api_client/models/create_organization_quota.py,sha256=HERVvV6pRerMtV05dPTwEec82HcSJ_tKFpEcYfLlLrQ,4716
|
|
46
47
|
daytona_api_client/models/create_organization_role.py,sha256=vQai9U9x82hVCfRCotP1UKtaDz3yehtHxOqVEIhG_Ds,4069
|
|
47
48
|
daytona_api_client/models/create_runner.py,sha256=vbNmuFuefPIdhatTu6qALi8GUT0AyP6quf-ZhL1jzdc,4530
|
|
48
|
-
daytona_api_client/models/create_sandbox.py,sha256=
|
|
49
|
+
daytona_api_client/models/create_sandbox.py,sha256=Fpw-r_W4Navki333EBbSjqK2YRrjvWgiwnzV-WhyUzo,7571
|
|
49
50
|
daytona_api_client/models/create_session_request.py,sha256=8Zv23ZXzrW6v2GmygwTUz5bTugAikCT-T8eHwwYRLxc,3136
|
|
50
51
|
daytona_api_client/models/create_snapshot.py,sha256=WGea9750qOcwwAjSjFRYFhlA3H0m5SUotrGgJm3z6Is,4768
|
|
51
52
|
daytona_api_client/models/create_user.py,sha256=__5zKvbJCtB44mALgvZBPlYghxlcdPUjLCDiIITKJiM,4390
|
|
@@ -53,13 +54,11 @@ daytona_api_client/models/create_volume.py,sha256=ClRnZzdkEWMIGlGbOix4pbhki7IcKP
|
|
|
53
54
|
daytona_api_client/models/create_workspace.py,sha256=Gu60Pe7tkpiObaZbABenpRPpPduI47RwbcgFJrvCCr0,7082
|
|
54
55
|
daytona_api_client/models/display_info_response.py,sha256=ScbtgcWdnqxoVf1UtqolCsDR908Be4VFTyEBaXT_bvc,3142
|
|
55
56
|
daytona_api_client/models/docker_registry.py,sha256=ZvO8zbXkgoQBrIogjBkGWlHnnRwd7CCq_DbdG92o6N4,4326
|
|
56
|
-
daytona_api_client/models/download_files.py,sha256=kOoubSJieTxqPoRECwDGtMpYZyDdXoMNybJWZ6Rek7Q,3094
|
|
57
57
|
daytona_api_client/models/empty_response.py,sha256=pzQ97N0yWuJfgQ-iLXAaI8wTsLUBFyAbBQtCveYNnho,3097
|
|
58
58
|
daytona_api_client/models/execute_request.py,sha256=pqLiipYbNty2zaiQNfhc9B1zZwQPeqaBtwwlAIEdakU,3401
|
|
59
59
|
daytona_api_client/models/execute_response.py,sha256=fj3cyel-sUbHO61VebQM5j4RHT17k2GEHgNDThicvj8,3261
|
|
60
60
|
daytona_api_client/models/file_info.py,sha256=XjAMg_C64Or2UqYeABmkupuL91x_lQ_lwEVrt6I8oQY,3624
|
|
61
61
|
daytona_api_client/models/file_status.py,sha256=FlYS6S_BXaGg-svQ5KXee_iEC-QlBsYLjghvSSXXZao,3231
|
|
62
|
-
daytona_api_client/models/get_build_logs400_response.py,sha256=nMU-8fitLwNYQqQFu7SXqbKBeGYtKl3CnY48IYlsDO0,3240
|
|
63
62
|
daytona_api_client/models/git_add_request.py,sha256=goBcduXYh5TVK-IzXagQdsRm6j1O_Iu67RcGDdo2NDU,3156
|
|
64
63
|
daytona_api_client/models/git_branch_request.py,sha256=5xA1566ZIeeQoLItu9PXH0lQbxFjyWstTELlvuMbapU,3093
|
|
65
64
|
daytona_api_client/models/git_checkout_request.py,sha256=cNy-DCFoICt3B1RSbhxCTYELKO1pRrC0kGcCXedH0s8,3109
|
|
@@ -70,6 +69,9 @@ daytona_api_client/models/git_commit_response.py,sha256=tnB4qIbD49vNfE2u7axt6nQR
|
|
|
70
69
|
daytona_api_client/models/git_delete_branch_request.py,sha256=HVsnHjofhwZOQKI0YGcVzzU_vMQJfDjF3-CEExFrxOg,3117
|
|
71
70
|
daytona_api_client/models/git_repo_request.py,sha256=xD6xbFjoNsRF6Y2oZI-T3YE039pTzUVrzIQQKU9AzU8,3226
|
|
72
71
|
daytona_api_client/models/git_status.py,sha256=-ubQZHin6YprTKXO8eWzjLix3vQuutQ33e3yEca-v-A,4140
|
|
72
|
+
daytona_api_client/models/health_controller_check200_response.py,sha256=IzZTeMWRKEwsvLykCxsakt99BaxKCCdDn-H3GS5RUMA,5726
|
|
73
|
+
daytona_api_client/models/health_controller_check200_response_info_value.py,sha256=R1GEl8QQr1qyOHAN5XJMGIpy1TfiBg42BwhkzgHsbZk,3136
|
|
74
|
+
daytona_api_client/models/health_controller_check503_response.py,sha256=Fbi67v_8IttsYsI42IVOeA0EJZaJ9yoD93uGI5IFFKE,5726
|
|
73
75
|
daytona_api_client/models/keyboard_hotkey_request.py,sha256=2TUiw1xzR-pnkejwBZ2CMBDukx1oZQXZFqD-gsrLWJU,3153
|
|
74
76
|
daytona_api_client/models/keyboard_hotkey_response.py,sha256=p2fUBgp1UV86eZRYOu8bvvUK59E3kTgcqEqeOuDh_I4,3150
|
|
75
77
|
daytona_api_client/models/keyboard_press_request.py,sha256=hjU2CJYDc0PBW0SWEgYiY_6aQW810dQTu7T6u1VprxE,3351
|
|
@@ -96,6 +98,7 @@ daytona_api_client/models/organization.py,sha256=C9r47QH32-YeOmoE3EgtnXpiUIloq6z
|
|
|
96
98
|
daytona_api_client/models/organization_invitation.py,sha256=LXPDanRJHU6bfXD-wanIY2Ise7VakZoRLgqhYrOu_Vk,5722
|
|
97
99
|
daytona_api_client/models/organization_role.py,sha256=RXGyGoi6XQI94zMzYU0h7UzI6Dm245t4hwNkKV9TCiE,4571
|
|
98
100
|
daytona_api_client/models/organization_suspension.py,sha256=Pd6oBCKzlvI7xAfjDamyte2eHJKOZBFgG3GXMUVOe2A,3586
|
|
101
|
+
daytona_api_client/models/organization_usage_overview.py,sha256=49A5lhlQf30c2i5YdEZ17VCnFp_35zhVHBC76Eju_R0,4736
|
|
99
102
|
daytona_api_client/models/organization_user.py,sha256=t4rkA-cpCRLgLqDMplg1yv2JYUu7jrRBLPL1xkcjaJI,4889
|
|
100
103
|
daytona_api_client/models/paginated_audit_logs.py,sha256=CThN80Prqq93G6w6GqFxAA6zlWfcZREPG4T0r8obhgw,3835
|
|
101
104
|
daytona_api_client/models/paginated_snapshots_dto.py,sha256=v0b9U3XZUjQ2AVJE0Vv-2Do9rCuy2aN4ZwU8s_L8fUw,3859
|
|
@@ -115,44 +118,61 @@ daytona_api_client/models/runner.py,sha256=1IfxPT2n-jmHW3yrtO1gHYmofyX9Lktvn6uP0
|
|
|
115
118
|
daytona_api_client/models/runner_region.py,sha256=Lkxx3kYTx8m4w3ntEiaOafMrUknhtNMfk00oD92kXZE,716
|
|
116
119
|
daytona_api_client/models/runner_snapshot_dto.py,sha256=ZBv1j3_4huI-z4GWbCqxOOT85OSyNYX3FHVAHQU6rbo,3447
|
|
117
120
|
daytona_api_client/models/runner_state.py,sha256=_cGjUiDdFZtUQjPc76YKgawOdxV1BDq0ehyKqWFMjD4,819
|
|
118
|
-
daytona_api_client/models/sandbox.py,sha256=
|
|
121
|
+
daytona_api_client/models/sandbox.py,sha256=gJu6wT5iPE2Pl5lVrTFUxxCqL-49UpbXdAS-Li13uvQ,9915
|
|
119
122
|
daytona_api_client/models/sandbox_class.py,sha256=Suwn9F4jLgtEdLtCWV86PpCtcfZ653h4bMYrmzrwBBc,731
|
|
123
|
+
daytona_api_client/models/sandbox_created_post_request.py,sha256=V1WO2DYyN96kvSum-MbokTw70QpwR3bM_03xGmsVb0g,3661
|
|
124
|
+
daytona_api_client/models/sandbox_created_post_request_data.py,sha256=Z0YpC0MPxUIhghxqY3dXSG-HSCXStiY4QK3l29SXts0,5931
|
|
120
125
|
daytona_api_client/models/sandbox_desired_state.py,sha256=BHvsm7h8ydWf5e48D7eFGRL9tD8vt7eMBMguZ1GChbc,818
|
|
121
126
|
daytona_api_client/models/sandbox_info.py,sha256=u8wFXAS36AyRIwEfcPphUEBxjOLmtZTvYAq4aoeCJsU,3493
|
|
122
127
|
daytona_api_client/models/sandbox_labels.py,sha256=szanqeO42NwBygvKOq8EZtp6-ExERvumB42II24maUY,3091
|
|
123
|
-
daytona_api_client/models/sandbox_state.py,sha256=
|
|
128
|
+
daytona_api_client/models/sandbox_state.py,sha256=a3niQChUHt9p-l4Jd2Qio6t6iP6Ic5iBk1G8_ttpGIU,1136
|
|
129
|
+
daytona_api_client/models/sandbox_state_updated_post_request.py,sha256=47lOv1os1cg9v-xuZsPbQAcKbhgp95GFZ0OAHKqRLJI,3702
|
|
130
|
+
daytona_api_client/models/sandbox_state_updated_post_request_data.py,sha256=eCoSFGvQVPbBPv7U0Y-2DrthmZXY-Mp4xacla7joM4I,5267
|
|
131
|
+
daytona_api_client/models/sandbox_state_updated_post_request_data_sandbox.py,sha256=nqmEJJOiPtLoFUuC_R8la2ummVGukmVEbMkLOBeIl7U,4122
|
|
124
132
|
daytona_api_client/models/sandbox_volume.py,sha256=R-cNh7LCK6IWjEcAXA6bS_JVkmd54X6tCcAEtJtijKE,3260
|
|
125
133
|
daytona_api_client/models/screenshot_response.py,sha256=n-K-Zpk92a3tFY665fcNDJQxDF80YOhLHVzDRbAl_aE,3621
|
|
126
134
|
daytona_api_client/models/search_files_response.py,sha256=3m7itQRgoeqJ8I6PyW-BbRthN5oLEP4pMr4HZsB8uqU,3050
|
|
135
|
+
daytona_api_client/models/send_webhook_dto.py,sha256=BGt7iS6gXvBpFDjToh9V7SMTv89hjU6Fapt6euxGSvc,3435
|
|
127
136
|
daytona_api_client/models/session.py,sha256=dg-bsVQRCgL7bIMUYXCufpJfF_QYfLLc88cwDfZKfcE,3944
|
|
128
137
|
daytona_api_client/models/session_command_logs_response.py,sha256=4-nfnZUkCRHn2n5_DDDMyyoH2ieBzRcVjU7ka7kuVE8,3254
|
|
129
138
|
daytona_api_client/models/session_execute_request.py,sha256=_okMRsfmRsIeUe9tUSg06doA9t_FtzPJmh0_IV3Yw4c,3545
|
|
130
139
|
daytona_api_client/models/session_execute_response.py,sha256=_TYkpP7y3HKGYRKUPS1PxXlWQKl2iHOqeYP6jwNR48Q,3558
|
|
131
140
|
daytona_api_client/models/set_snapshot_general_status_dto.py,sha256=d1qZ9B51JmiJAYpCvUgiYgB40Ckj_0ubx9Jse9QMkmQ,3148
|
|
141
|
+
daytona_api_client/models/snapshot_created_post_request.py,sha256=POmSHyKNResEzivVhGgyzfGIZw-oWMtDhwQAwPxdeE0,3669
|
|
142
|
+
daytona_api_client/models/snapshot_created_post_request_data.py,sha256=Ya0R0nnDp1zYH6-h6gKk9eLMOaEWjNPUi8x_wTlzmR4,5093
|
|
132
143
|
daytona_api_client/models/snapshot_dto.py,sha256=eTX3vGw5K0RhjFkNKSo_VcNl28ehB0ZjlEh9TSu_RYY,6051
|
|
144
|
+
daytona_api_client/models/snapshot_removed_post_request.py,sha256=HdnT0xhpZVlQ-F-EIyDU_U5zdR4WaFXp-cFi_9wWIeM,3380
|
|
133
145
|
daytona_api_client/models/snapshot_state.py,sha256=hVEXEtoHEfE0jd5cF-979GTSKGYZnY6tiIQBU1Ww-9o,975
|
|
146
|
+
daytona_api_client/models/snapshot_state_updated_post_request.py,sha256=JyIRjsipL7na61UZ2vSv3S06Mo7Z4DwkdXJpJuuG0F0,3710
|
|
147
|
+
daytona_api_client/models/snapshot_state_updated_post_request_data.py,sha256=8fGICg10-_oTNDGxqqeZBAUzn0kaVtT_ZALJQiS5fy8,5004
|
|
148
|
+
daytona_api_client/models/snapshot_state_updated_post_request_data_snapshot.py,sha256=0V1cjyZoVDhAoxaD0mhCpXWw6obOqkpeK6S0FY4dUmE,3988
|
|
149
|
+
daytona_api_client/models/ssh_access_dto.py,sha256=SlKSwrMITp1Gs84p4g9Jo8jOp7pyXgZM-DSj1ywTnUc,3857
|
|
150
|
+
daytona_api_client/models/ssh_access_validation_dto.py,sha256=pZPI4xS3fV-FqdH6KbPSAWToTjR4Gmv8KnXbOIXZ7-w,3708
|
|
134
151
|
daytona_api_client/models/storage_access_dto.py,sha256=aivW_3ewAA5jcevSPyvsTaqqY5nUeaW8_2OPUeih614,3879
|
|
135
|
-
daytona_api_client/models/toggle_state.py,sha256=6EGZ3_exKZ45Awog-I-9SiEE1wzxVk-dSSfl9IyMf1E,3087
|
|
136
152
|
daytona_api_client/models/update_assigned_organization_roles.py,sha256=G8-T_36mlvj5o0QGO5rhXcMed86NaWyEc8kvhRm4Uho,3172
|
|
137
153
|
daytona_api_client/models/update_docker_registry.py,sha256=ya9FuZ3xvkUr0Dt69umaIJZjnH3Fy882qs82pt2iytw,3604
|
|
138
154
|
daytona_api_client/models/update_organization_invitation.py,sha256=_98DviKjGYq1h_zKngy0WphVyvi19d6kO8yiMgviX5A,3809
|
|
139
155
|
daytona_api_client/models/update_organization_member_role.py,sha256=-B8wsTJgQSkQTiYqD0nuc8yUXRRzIX5U0z5z94CTc5Q,3401
|
|
140
156
|
daytona_api_client/models/update_organization_quota.py,sha256=qfwgYkEKBJHhksdhbC0_LZUt5fBBFehQdtfq5seFSGc,6830
|
|
141
157
|
daytona_api_client/models/update_organization_role.py,sha256=-Z8oRpO3ebQRtlzMaeYKyfyNiFARD76kGvY_9-mF4os,4069
|
|
142
|
-
daytona_api_client/models/upload_file.py,sha256=N2HcKVDWE127cAHXa-D1asMaMBhCOYD7eAXnFxmrnx0,3102
|
|
143
|
-
daytona_api_client/models/upload_file_dto.py,sha256=l9Fl0Pw-58mwz0vWUkC7JJ9X1YX4IX2wRHX29ttjs78,3114
|
|
144
|
-
daytona_api_client/models/upload_file_request_file.py,sha256=Ge_t-zpwCKTv6CCR5DQK3J5FDTYD6OHqZ9A-5pziEY0,5810
|
|
145
|
-
daytona_api_client/models/upload_files_multi_request_files_inner.py,sha256=2YePDzX-ewGOj8UHlplb7q85e6f4nrDcQUttzjbPxxM,3228
|
|
146
|
-
daytona_api_client/models/usage_overview.py,sha256=OvQ7AS-BvkGeVDtlV2eo9sBAZt1jRmJqPUHJCT4F6bU,4126
|
|
147
158
|
daytona_api_client/models/user.py,sha256=sXLeH2Rivv_Jls4rGcv3ihfX9B7-4pCZqk_JrSGBGmI,4060
|
|
148
159
|
daytona_api_client/models/user_public_key.py,sha256=Y0_O7Sq8NP3XzCdKJJj7iTavEY8ytcBAf0Q3qOnJhbQ,3150
|
|
149
|
-
daytona_api_client/models/
|
|
160
|
+
daytona_api_client/models/volume_created_post_request.py,sha256=chleMJEqyLN_mdwd7UpmLLr1bRMQnZnb-UkYtyyDqDk,3653
|
|
161
|
+
daytona_api_client/models/volume_created_post_request_data.py,sha256=MEqGnebIYVqY4-CqWCZ6LUx7OdPQZprAeqMwY9-nCmE,4487
|
|
150
162
|
daytona_api_client/models/volume_dto.py,sha256=NL6A6xpc9liR_zlVZKGCoHLlz6r4LAHrMW2uL0TClnI,4594
|
|
151
163
|
daytona_api_client/models/volume_state.py,sha256=AaOsyPygY58fquvIkrwFndsXMrG0dCYcGKd8HRZhulg,848
|
|
164
|
+
daytona_api_client/models/volume_state_updated_post_request.py,sha256=GHVELNRVfG7jQOPMNWT5xF0GVXoqQUQMsx11_1hFLi8,3694
|
|
165
|
+
daytona_api_client/models/volume_state_updated_post_request_data.py,sha256=P9c_0A2okvM-rS8KReaxpNLyLAmZmSQ7ykRt8iDQvvo,4734
|
|
166
|
+
daytona_api_client/models/volume_state_updated_post_request_data_volume.py,sha256=TIyzZQ_xwJ1-EK-RFuk5l2HIWzMvIbvcl2vIfwRaG8o,3858
|
|
167
|
+
daytona_api_client/models/webhook_app_portal_access.py,sha256=799jqtP3hC_tXVxEXOXOgxvwl-HedhvA5_lA065LPvY,3112
|
|
168
|
+
daytona_api_client/models/webhook_controller_get_app_portal_access200_response.py,sha256=QYeIu9ApCuX8sN53hCyjDHbHEmA4I4LSlSV1zA0qIeA,3230
|
|
169
|
+
daytona_api_client/models/webhook_controller_get_initialization_status200_response.py,sha256=xRw0jmNEYLphUdFxstgEk3EgP9xuavfQn-P-hZXI5w4,4497
|
|
170
|
+
daytona_api_client/models/webhook_controller_get_status200_response.py,sha256=aRWG6gX4340N2Xhv6F3_5xr29zcNxLE8k-I7E7PSqVE,3153
|
|
171
|
+
daytona_api_client/models/webhook_initialization_status.py,sha256=zmw2g68mZfYXNDGwvJmd5QewHJtJ5JsUUgwBrbMQ8Bw,4664
|
|
152
172
|
daytona_api_client/models/windows_response.py,sha256=1fW2GYVSjFbipfQupU2MjfhUlcEyawzwtnWnwGngsFs,3295
|
|
153
|
-
daytona_api_client/models/workspace.py,sha256=
|
|
154
|
-
daytona_api_client-0.
|
|
155
|
-
daytona_api_client-0.
|
|
156
|
-
daytona_api_client-0.
|
|
157
|
-
daytona_api_client-0.
|
|
158
|
-
daytona_api_client-0.
|
|
173
|
+
daytona_api_client/models/workspace.py,sha256=uwAStXOLrVJzbxdTfPZokrcMr4Dp4ghgH8V5fy5r0gY,11488
|
|
174
|
+
daytona_api_client-0.26.0.dist-info/licenses/LICENSE,sha256=Qrw_9vreBpJ9mUMcB5B7ALDecZHgRciuOqS0BPfpihc,10752
|
|
175
|
+
daytona_api_client-0.26.0.dist-info/METADATA,sha256=FempeK0anwetRxMY_jX8wKcu7jsbXoyO6yXoVMYvuCs,618
|
|
176
|
+
daytona_api_client-0.26.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
177
|
+
daytona_api_client-0.26.0.dist-info/top_level.txt,sha256=sDZKAfxKnAQYvOLS9vAOx88EYH3wV5Wx897pODDupuE,19
|
|
178
|
+
daytona_api_client-0.26.0.dist-info/RECORD,,
|
|
@@ -1,118 +0,0 @@
|
|
|
1
|
-
# coding: utf-8
|
|
2
|
-
|
|
3
|
-
"""
|
|
4
|
-
Daytona
|
|
5
|
-
|
|
6
|
-
Daytona AI platform API Docs
|
|
7
|
-
|
|
8
|
-
The version of the OpenAPI document: 1.0
|
|
9
|
-
Contact: support@daytona.com
|
|
10
|
-
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
|
-
|
|
12
|
-
Do not edit the class manually.
|
|
13
|
-
""" # noqa: E501
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
from __future__ import annotations
|
|
17
|
-
import pprint
|
|
18
|
-
import re # noqa: F401
|
|
19
|
-
import json
|
|
20
|
-
|
|
21
|
-
from pydantic import BaseModel, ConfigDict, Field, StrictInt, StrictStr
|
|
22
|
-
from typing import Any, ClassVar, Dict, List, Optional
|
|
23
|
-
from daytona_api_client.models.create_build_info import CreateBuildInfo
|
|
24
|
-
from typing import Optional, Set
|
|
25
|
-
from typing_extensions import Self
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
class BuildSnapshot(BaseModel):
|
|
29
|
-
"""
|
|
30
|
-
BuildSnapshot
|
|
31
|
-
""" # noqa: E501
|
|
32
|
-
|
|
33
|
-
name: StrictStr = Field(description="The name of the snapshot to build")
|
|
34
|
-
cpu: Optional[StrictInt] = Field(default=None, description="CPU cores allocated to the resulting sandbox")
|
|
35
|
-
gpu: Optional[StrictInt] = Field(default=None, description="GPU units allocated to the resulting sandbox")
|
|
36
|
-
memory: Optional[StrictInt] = Field(default=None, description="Memory allocated to the resulting sandbox in GB")
|
|
37
|
-
disk: Optional[StrictInt] = Field(default=None, description="Disk space allocated to the sandbox in GB")
|
|
38
|
-
build_info: CreateBuildInfo = Field(description="Build information for the snapshot", alias="buildInfo")
|
|
39
|
-
additional_properties: Dict[str, Any] = {}
|
|
40
|
-
__properties: ClassVar[List[str]] = ["name", "cpu", "gpu", "memory", "disk", "buildInfo"]
|
|
41
|
-
|
|
42
|
-
model_config = ConfigDict(
|
|
43
|
-
populate_by_name=True,
|
|
44
|
-
validate_assignment=True,
|
|
45
|
-
protected_namespaces=(),
|
|
46
|
-
)
|
|
47
|
-
|
|
48
|
-
def to_str(self) -> str:
|
|
49
|
-
"""Returns the string representation of the model using alias"""
|
|
50
|
-
return pprint.pformat(self.model_dump(by_alias=True))
|
|
51
|
-
|
|
52
|
-
def to_json(self) -> str:
|
|
53
|
-
"""Returns the JSON representation of the model using alias"""
|
|
54
|
-
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
|
55
|
-
return json.dumps(self.to_dict())
|
|
56
|
-
|
|
57
|
-
@classmethod
|
|
58
|
-
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
59
|
-
"""Create an instance of BuildSnapshot from a JSON string"""
|
|
60
|
-
return cls.from_dict(json.loads(json_str))
|
|
61
|
-
|
|
62
|
-
def to_dict(self) -> Dict[str, Any]:
|
|
63
|
-
"""Return the dictionary representation of the model using alias.
|
|
64
|
-
|
|
65
|
-
This has the following differences from calling pydantic's
|
|
66
|
-
`self.model_dump(by_alias=True)`:
|
|
67
|
-
|
|
68
|
-
* `None` is only added to the output dict for nullable fields that
|
|
69
|
-
were set at model initialization. Other fields with value `None`
|
|
70
|
-
are ignored.
|
|
71
|
-
* Fields in `self.additional_properties` are added to the output dict.
|
|
72
|
-
"""
|
|
73
|
-
excluded_fields: Set[str] = set(
|
|
74
|
-
[
|
|
75
|
-
"additional_properties",
|
|
76
|
-
]
|
|
77
|
-
)
|
|
78
|
-
|
|
79
|
-
_dict = self.model_dump(
|
|
80
|
-
by_alias=True,
|
|
81
|
-
exclude=excluded_fields,
|
|
82
|
-
exclude_none=True,
|
|
83
|
-
)
|
|
84
|
-
# override the default output from pydantic by calling `to_dict()` of build_info
|
|
85
|
-
if self.build_info:
|
|
86
|
-
_dict["buildInfo"] = self.build_info.to_dict()
|
|
87
|
-
# puts key-value pairs in additional_properties in the top level
|
|
88
|
-
if self.additional_properties is not None:
|
|
89
|
-
for _key, _value in self.additional_properties.items():
|
|
90
|
-
_dict[_key] = _value
|
|
91
|
-
|
|
92
|
-
return _dict
|
|
93
|
-
|
|
94
|
-
@classmethod
|
|
95
|
-
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
96
|
-
"""Create an instance of BuildSnapshot from a dict"""
|
|
97
|
-
if obj is None:
|
|
98
|
-
return None
|
|
99
|
-
|
|
100
|
-
if not isinstance(obj, dict):
|
|
101
|
-
return cls.model_validate(obj)
|
|
102
|
-
|
|
103
|
-
_obj = cls.model_validate(
|
|
104
|
-
{
|
|
105
|
-
"name": obj.get("name"),
|
|
106
|
-
"cpu": obj.get("cpu"),
|
|
107
|
-
"gpu": obj.get("gpu"),
|
|
108
|
-
"memory": obj.get("memory"),
|
|
109
|
-
"disk": obj.get("disk"),
|
|
110
|
-
"buildInfo": CreateBuildInfo.from_dict(obj["buildInfo"]) if obj.get("buildInfo") is not None else None,
|
|
111
|
-
}
|
|
112
|
-
)
|
|
113
|
-
# store additional fields in additional_properties
|
|
114
|
-
for _key in obj.keys():
|
|
115
|
-
if _key not in cls.__properties:
|
|
116
|
-
_obj.additional_properties[_key] = obj.get(_key)
|
|
117
|
-
|
|
118
|
-
return _obj
|