daytona_api_client_async 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_async might be problematic. Click here for more details.
- daytona_api_client_async/__init__.py +12 -1
- daytona_api_client_async/api/__init__.py +2 -0
- daytona_api_client_async/api/{images_api.py → default_api.py} +258 -724
- daytona_api_client_async/api/health_api.py +282 -0
- daytona_api_client_async/api/organizations_api.py +6 -6
- daytona_api_client_async/api/sandbox_api.py +855 -2
- daytona_api_client_async/api/webhooks_api.py +1704 -0
- daytona_api_client_async/models/__init__.py +10 -1
- daytona_api_client_async/models/create_audit_log.py +2 -2
- daytona_api_client_async/models/create_sandbox.py +5 -1
- daytona_api_client_async/models/health_controller_check200_response.py +154 -0
- daytona_api_client_async/models/{set_image_general_status.py → health_controller_check200_response_info_value.py} +8 -8
- daytona_api_client_async/models/health_controller_check503_response.py +154 -0
- daytona_api_client_async/models/{usage_overview.py → organization_usage_overview.py} +14 -8
- daytona_api_client_async/models/sandbox.py +5 -1
- daytona_api_client_async/models/{build_image.py → sandbox_created_post_request.py} +18 -15
- daytona_api_client_async/models/sandbox_created_post_request_data.py +152 -0
- daytona_api_client_async/models/sandbox_state.py +1 -1
- daytona_api_client_async/models/sandbox_state_updated_post_request.py +110 -0
- daytona_api_client_async/models/sandbox_state_updated_post_request_data.py +129 -0
- daytona_api_client_async/models/sandbox_state_updated_post_request_data_sandbox.py +115 -0
- daytona_api_client_async/models/{workspace_info.py → send_webhook_dto.py} +11 -11
- daytona_api_client_async/models/snapshot_created_post_request.py +110 -0
- daytona_api_client_async/models/{image_dto.py → snapshot_created_post_request_data.py} +34 -43
- daytona_api_client_async/models/{workspace_volume.py → snapshot_removed_post_request.py} +13 -10
- daytona_api_client_async/models/snapshot_state_updated_post_request.py +110 -0
- daytona_api_client_async/models/snapshot_state_updated_post_request_data.py +129 -0
- daytona_api_client_async/models/snapshot_state_updated_post_request_data_snapshot.py +115 -0
- daytona_api_client_async/models/ssh_access_dto.py +112 -0
- daytona_api_client_async/models/ssh_access_validation_dto.py +107 -0
- daytona_api_client_async/models/{create_image.py → volume_created_post_request.py} +17 -12
- daytona_api_client_async/models/{build_snapshot.py → volume_created_post_request_data.py} +32 -21
- daytona_api_client_async/models/volume_state_updated_post_request.py +110 -0
- daytona_api_client_async/models/{create_node.py → volume_state_updated_post_request_data.py} +31 -37
- daytona_api_client_async/models/{paginated_images_dto.py → volume_state_updated_post_request_data_volume.py} +23 -23
- daytona_api_client_async/models/{workspace_labels.py → webhook_app_portal_access.py} +7 -7
- daytona_api_client_async/models/{download_files.py → webhook_controller_get_app_portal_access200_response.py} +8 -8
- daytona_api_client_async/models/webhook_controller_get_initialization_status200_response.py +118 -0
- daytona_api_client_async/models/{toggle_state.py → webhook_controller_get_status200_response.py} +7 -7
- daytona_api_client_async/models/webhook_initialization_status.py +121 -0
- daytona_api_client_async/models/workspace.py +5 -1
- {daytona_api_client_async-0.25.5.dist-info → daytona_api_client_async-0.26.0.dist-info}/METADATA +1 -1
- {daytona_api_client_async-0.25.5.dist-info → daytona_api_client_async-0.26.0.dist-info}/RECORD +46 -32
- daytona_api_client_async/api/nodes_api.py +0 -792
- daytona_api_client_async/models/image_state.py +0 -45
- daytona_api_client_async/models/workspace_state.py +0 -51
- {daytona_api_client_async-0.25.5.dist-info → daytona_api_client_async-0.26.0.dist-info}/WHEEL +0 -0
- {daytona_api_client_async-0.25.5.dist-info → daytona_api_client_async-0.26.0.dist-info}/licenses/LICENSE +0 -0
- {daytona_api_client_async-0.25.5.dist-info → daytona_api_client_async-0.26.0.dist-info}/top_level.txt +0 -0
|
@@ -19,17 +19,17 @@ import re # noqa: F401
|
|
|
19
19
|
import json
|
|
20
20
|
|
|
21
21
|
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
|
22
|
-
from typing import Any, ClassVar, Dict, List
|
|
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 WebhookControllerGetAppPortalAccess200Response(BaseModel):
|
|
27
27
|
"""
|
|
28
|
-
|
|
28
|
+
WebhookControllerGetAppPortalAccess200Response
|
|
29
29
|
""" # noqa: E501
|
|
30
|
-
|
|
30
|
+
url: Optional[StrictStr] = Field(default=None, description="App Portal access URL")
|
|
31
31
|
additional_properties: Dict[str, Any] = {}
|
|
32
|
-
__properties: ClassVar[List[str]] = ["
|
|
32
|
+
__properties: ClassVar[List[str]] = ["url"]
|
|
33
33
|
|
|
34
34
|
model_config = ConfigDict(
|
|
35
35
|
populate_by_name=True,
|
|
@@ -49,7 +49,7 @@ class DownloadFiles(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 WebhookControllerGetAppPortalAccess200Response 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 DownloadFiles(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 WebhookControllerGetAppPortalAccess200Response from a dict"""
|
|
85
85
|
if obj is None:
|
|
86
86
|
return None
|
|
87
87
|
|
|
@@ -89,7 +89,7 @@ class DownloadFiles(BaseModel):
|
|
|
89
89
|
return cls.model_validate(obj)
|
|
90
90
|
|
|
91
91
|
_obj = cls.model_validate({
|
|
92
|
-
"
|
|
92
|
+
"url": obj.get("url")
|
|
93
93
|
})
|
|
94
94
|
# store additional fields in additional_properties
|
|
95
95
|
for _key in obj.keys():
|
|
@@ -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
|
+
|
daytona_api_client_async/models/{toggle_state.py → webhook_controller_get_status200_response.py}
RENAMED
|
@@ -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"),
|
{daytona_api_client_async-0.25.5.dist-info → daytona_api_client_async-0.26.0.dist-info}/RECORD
RENAMED
|
@@ -1,34 +1,33 @@
|
|
|
1
|
-
daytona_api_client_async/__init__.py,sha256=
|
|
1
|
+
daytona_api_client_async/__init__.py,sha256=s4Ia5nh_36_OH413ket7DnVnKjfXgu7rF3Ucfmy0nH4,12058
|
|
2
2
|
daytona_api_client_async/api_client.py,sha256=FrpVLztK7lFu1O0ZPkojl5l-tB_jGIKmDAc5k-VOWJg,27598
|
|
3
3
|
daytona_api_client_async/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
4
4
|
daytona_api_client_async/configuration.py,sha256=hWTtQJ-3aR2SzZScWV02gUUaOt1-L99egXbDD6X692Y,17963
|
|
5
5
|
daytona_api_client_async/exceptions.py,sha256=3gaH4PrTgR6rYIRmHOcYlIDJ-mqS-M_Ut5wcEcVbtdU,6424
|
|
6
6
|
daytona_api_client_async/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
7
|
daytona_api_client_async/rest.py,sha256=AqeTEhjdo8wt1a1ngzVVRrzKiDhOkalF6LUM6z6RNqw,7255
|
|
8
|
-
daytona_api_client_async/api/__init__.py,sha256=
|
|
8
|
+
daytona_api_client_async/api/__init__.py,sha256=AZfvHY1kjcNcQyCeE16d2KZQcN1jCh-vVyEifO-9l3I,1049
|
|
9
9
|
daytona_api_client_async/api/api_keys_api.py,sha256=Bw9dqx-luPwOrYGeEZBIH3qSrnCcLdpyHkH1IRxg8Ms,54877
|
|
10
10
|
daytona_api_client_async/api/audit_api.py,sha256=U0tkNK3qcXG6hx_V51UNdTf0xRoZy3Qwn7Kbmg0MEnU,34388
|
|
11
|
+
daytona_api_client_async/api/default_api.py,sha256=YpjsubeCZFBTknw8d94xZ4Otfy7FeE_Uj7SG9V2WdSw,74558
|
|
11
12
|
daytona_api_client_async/api/docker_registry_api.py,sha256=AOX05uUPF7PNilvYJrhxse45JO3i1QXvXow3yXIYZGo,79216
|
|
12
|
-
daytona_api_client_async/api/
|
|
13
|
-
daytona_api_client_async/api/nodes_api.py,sha256=Ecm01Dot8NN5ScqYziMavHmuMkiQ-D190TExSSW8IbU,29201
|
|
13
|
+
daytona_api_client_async/api/health_api.py,sha256=9VKj52XnQ20iu0rbuLlSBiUVIK_Odu5gsAH_juVXC8I,10605
|
|
14
14
|
daytona_api_client_async/api/object_storage_api.py,sha256=gPhd3kPth8L26BV6C9QL3-VXax9W0S20_lZgEpoz02U,11677
|
|
15
|
-
daytona_api_client_async/api/organizations_api.py,sha256=
|
|
15
|
+
daytona_api_client_async/api/organizations_api.py,sha256=a7lgjZwlfoxCnGkpaE6tRZmTtJfJ6w65Ebua31jpSBM,278010
|
|
16
16
|
daytona_api_client_async/api/preview_api.py,sha256=tflnMN3QXSTx-tI1GZf70VY714MQTx1DX2edNFbemb8,31216
|
|
17
17
|
daytona_api_client_async/api/runners_api.py,sha256=DjL55SHmiIG1CkNrhiNGiiW9tBMrkLo1DiqAmNhpDoI,49294
|
|
18
|
-
daytona_api_client_async/api/sandbox_api.py,sha256=
|
|
18
|
+
daytona_api_client_async/api/sandbox_api.py,sha256=H3as1sU9Jn_O-0srRO03MGpx8YuG7x5zRDdaf_YBl6U,211728
|
|
19
19
|
daytona_api_client_async/api/snapshots_api.py,sha256=8e6q5AKAhheGbJoMriLG_7-LmAuJoA_xafZtWh2nKPQ,103648
|
|
20
20
|
daytona_api_client_async/api/toolbox_api.py,sha256=plhAImkMRhqC4qcCvlRUpjiLD3Uli5HwBWNX1FTuAYM,723310
|
|
21
21
|
daytona_api_client_async/api/users_api.py,sha256=5vpJFiutNo-ygzejbkOz3iPMT4mLjNyvBZdNWTaQSFw,86876
|
|
22
22
|
daytona_api_client_async/api/volumes_api.py,sha256=Hhmny-51SBZhvm3Vztaud1ImEY3p14c3VdjeZN8SP7M,56883
|
|
23
|
+
daytona_api_client_async/api/webhooks_api.py,sha256=JTMBBtbcPLpy1OsUX9aELWu67iA8HR-UsLRGSPCKav4,69846
|
|
23
24
|
daytona_api_client_async/api/workspace_api.py,sha256=krpDz2ro-e1QuQ8Bi4cnckymIEIlPJePBM6ieksguq8,170042
|
|
24
|
-
daytona_api_client_async/models/__init__.py,sha256=
|
|
25
|
+
daytona_api_client_async/models/__init__.py,sha256=eMQnnZ-2I0v2uDUv0vBGZ0Kq_XjogyJeO7mGYUqpbIY,10419
|
|
25
26
|
daytona_api_client_async/models/account_provider.py,sha256=yKJ_dMGnxGalNYuVTmo4CoFHpj1PIssSE1rnUaQeOKY,3154
|
|
26
27
|
daytona_api_client_async/models/api_key_list.py,sha256=LwEm8q2SjDOGa04S0kkk4GRbZPvrpVJ-4Ju1dgcp0b8,5005
|
|
27
28
|
daytona_api_client_async/models/api_key_response.py,sha256=XWqJdKTMp1w8uoUpmeKn0tKeXeImTJElnTvLunZGX5Y,4611
|
|
28
29
|
daytona_api_client_async/models/audit_log.py,sha256=sEOzYMbo8D525RhvlbizaiDjcC9fKo0-v2LbkXyxC6A,4689
|
|
29
|
-
daytona_api_client_async/models/build_image.py,sha256=1mfN7J2GFk8P2N5CJ5Enx4TXSLt43_uIpy4Hab-SPWc,3554
|
|
30
30
|
daytona_api_client_async/models/build_info.py,sha256=5mPYDwHA3pQ4fPbNuE3kC9DYUmebIncqc4Fj2BQR1ZQ,3735
|
|
31
|
-
daytona_api_client_async/models/build_snapshot.py,sha256=B-zB0ogD3dA5pIRWcu1r3PZArgNBwV9AxVX8nZ8HkuU,4221
|
|
32
31
|
daytona_api_client_async/models/command.py,sha256=BSsm6JDZ3gX7EfhFMzhsgv_r1q4ycJmN4ba0d2qFoBg,3403
|
|
33
32
|
daytona_api_client_async/models/completion_context.py,sha256=ulDPkPYnVGiBMzcTDdyGrq9sPwb4ZYECJ8XvC9-rrvc,3330
|
|
34
33
|
daytona_api_client_async/models/completion_item.py,sha256=fnIhRNLvf0jaB_RXpS28QQyB1DvUMvFl7YLh49r88pk,3803
|
|
@@ -38,18 +37,16 @@ daytona_api_client_async/models/computer_use_start_response.py,sha256=9VYe5UMBU-
|
|
|
38
37
|
daytona_api_client_async/models/computer_use_status_response.py,sha256=P2dNSx1Ot-szu4y5gk1GCEJixCxsXrVnMNetxeYMh54,3489
|
|
39
38
|
daytona_api_client_async/models/computer_use_stop_response.py,sha256=FUpPYsIMPXqCGKYqdvVozjHHthg5j0o8NOMCYXjp5lY,3332
|
|
40
39
|
daytona_api_client_async/models/create_api_key.py,sha256=GFv3d-rA2Mbr9UhP-0O0DKm-gvln_JSGFJjMyoSAc8A,4351
|
|
41
|
-
daytona_api_client_async/models/create_audit_log.py,sha256=
|
|
40
|
+
daytona_api_client_async/models/create_audit_log.py,sha256=r2x9_bFGSlBs7_kA6KGSUGlA5zzUTqw6UVe-gMDBtrU,7077
|
|
42
41
|
daytona_api_client_async/models/create_build_info.py,sha256=hepmmgcZn199sgLksLm3ksJNSv-XLSgqL2BPdFnNAdg,3402
|
|
43
42
|
daytona_api_client_async/models/create_docker_registry.py,sha256=dyWgwtTu6RcbGgXyosFbwtvPJ55FjuK0duof-jK9o7Q,4337
|
|
44
|
-
daytona_api_client_async/models/create_image.py,sha256=THngVmDF8VoDwRu8rQFcja3JGkSVsfguVmvjPRkJnbU,3415
|
|
45
43
|
daytona_api_client_async/models/create_linked_account.py,sha256=ar_cK_7Ep9iQ6zKeYDEMhQ5m3jc5EuomXj9SpdtWtSE,3289
|
|
46
|
-
daytona_api_client_async/models/create_node.py,sha256=oMRNg2Zt_o4s8FYZF_94kaJ5K53zgT5GtxHrfvFt-xc,4516
|
|
47
44
|
daytona_api_client_async/models/create_organization.py,sha256=0sDPZBYWzMT5pc0edRwPRnDZ9nz4rlOhnNhmwxbtfZg,3091
|
|
48
45
|
daytona_api_client_async/models/create_organization_invitation.py,sha256=U5uLVrI3b5kfVqffuwzuqaAsZ-Ml-1xGM5RndmIz-Gk,4016
|
|
49
46
|
daytona_api_client_async/models/create_organization_quota.py,sha256=HERVvV6pRerMtV05dPTwEec82HcSJ_tKFpEcYfLlLrQ,4716
|
|
50
47
|
daytona_api_client_async/models/create_organization_role.py,sha256=vQai9U9x82hVCfRCotP1UKtaDz3yehtHxOqVEIhG_Ds,4069
|
|
51
48
|
daytona_api_client_async/models/create_runner.py,sha256=vbNmuFuefPIdhatTu6qALi8GUT0AyP6quf-ZhL1jzdc,4530
|
|
52
|
-
daytona_api_client_async/models/create_sandbox.py,sha256=
|
|
49
|
+
daytona_api_client_async/models/create_sandbox.py,sha256=bZnN9zmtlR9XpQyn2jtvpojvsoL-aBmjoGKnlFCZ2O4,7583
|
|
53
50
|
daytona_api_client_async/models/create_session_request.py,sha256=8Zv23ZXzrW6v2GmygwTUz5bTugAikCT-T8eHwwYRLxc,3136
|
|
54
51
|
daytona_api_client_async/models/create_snapshot.py,sha256=wBhM3BVLDM_zUIcnln0tU0MDARjzHp3fSfRmeAtgVXc,4774
|
|
55
52
|
daytona_api_client_async/models/create_user.py,sha256=Amtw3BopSp20zD9QlpZnQHunhSO_yCyKaq3bYBGxJvc,4396
|
|
@@ -57,7 +54,6 @@ daytona_api_client_async/models/create_volume.py,sha256=ClRnZzdkEWMIGlGbOix4pbhk
|
|
|
57
54
|
daytona_api_client_async/models/create_workspace.py,sha256=e7uJNdwV9SRW0Jxew2A4PuB9VVQ0FlP5votvv9cUiRE,7094
|
|
58
55
|
daytona_api_client_async/models/display_info_response.py,sha256=ScbtgcWdnqxoVf1UtqolCsDR908Be4VFTyEBaXT_bvc,3142
|
|
59
56
|
daytona_api_client_async/models/docker_registry.py,sha256=ZvO8zbXkgoQBrIogjBkGWlHnnRwd7CCq_DbdG92o6N4,4326
|
|
60
|
-
daytona_api_client_async/models/download_files.py,sha256=kOoubSJieTxqPoRECwDGtMpYZyDdXoMNybJWZ6Rek7Q,3094
|
|
61
57
|
daytona_api_client_async/models/empty_response.py,sha256=pzQ97N0yWuJfgQ-iLXAaI8wTsLUBFyAbBQtCveYNnho,3097
|
|
62
58
|
daytona_api_client_async/models/execute_request.py,sha256=pqLiipYbNty2zaiQNfhc9B1zZwQPeqaBtwwlAIEdakU,3401
|
|
63
59
|
daytona_api_client_async/models/execute_response.py,sha256=fj3cyel-sUbHO61VebQM5j4RHT17k2GEHgNDThicvj8,3261
|
|
@@ -73,8 +69,9 @@ daytona_api_client_async/models/git_commit_response.py,sha256=tnB4qIbD49vNfE2u7a
|
|
|
73
69
|
daytona_api_client_async/models/git_delete_branch_request.py,sha256=HVsnHjofhwZOQKI0YGcVzzU_vMQJfDjF3-CEExFrxOg,3117
|
|
74
70
|
daytona_api_client_async/models/git_repo_request.py,sha256=xD6xbFjoNsRF6Y2oZI-T3YE039pTzUVrzIQQKU9AzU8,3226
|
|
75
71
|
daytona_api_client_async/models/git_status.py,sha256=wiJuRX5Y1hb0V9t8jvonT3c-vDyFgqZMIQhEDRGFCOM,4146
|
|
76
|
-
daytona_api_client_async/models/
|
|
77
|
-
daytona_api_client_async/models/
|
|
72
|
+
daytona_api_client_async/models/health_controller_check200_response.py,sha256=G_jTEzrAG5Ets3tVBmQ_fsPLzbry3HmT1Xr4tVNvjAQ,5732
|
|
73
|
+
daytona_api_client_async/models/health_controller_check200_response_info_value.py,sha256=R1GEl8QQr1qyOHAN5XJMGIpy1TfiBg42BwhkzgHsbZk,3136
|
|
74
|
+
daytona_api_client_async/models/health_controller_check503_response.py,sha256=6wduhFHV-71FtjGlRgwu9hs4kZMC_GsIXcshWx9NCpo,5732
|
|
78
75
|
daytona_api_client_async/models/keyboard_hotkey_request.py,sha256=2TUiw1xzR-pnkejwBZ2CMBDukx1oZQXZFqD-gsrLWJU,3153
|
|
79
76
|
daytona_api_client_async/models/keyboard_hotkey_response.py,sha256=p2fUBgp1UV86eZRYOu8bvvUK59E3kTgcqEqeOuDh_I4,3150
|
|
80
77
|
daytona_api_client_async/models/keyboard_press_request.py,sha256=hjU2CJYDc0PBW0SWEgYiY_6aQW810dQTu7T6u1VprxE,3351
|
|
@@ -101,9 +98,9 @@ daytona_api_client_async/models/organization.py,sha256=C9r47QH32-YeOmoE3EgtnXpiU
|
|
|
101
98
|
daytona_api_client_async/models/organization_invitation.py,sha256=vnnZ5zx05weSLymc4IQMtaJEnnxFLrQcG74AmqOMW6Q,5728
|
|
102
99
|
daytona_api_client_async/models/organization_role.py,sha256=RXGyGoi6XQI94zMzYU0h7UzI6Dm245t4hwNkKV9TCiE,4571
|
|
103
100
|
daytona_api_client_async/models/organization_suspension.py,sha256=Pd6oBCKzlvI7xAfjDamyte2eHJKOZBFgG3GXMUVOe2A,3586
|
|
101
|
+
daytona_api_client_async/models/organization_usage_overview.py,sha256=49A5lhlQf30c2i5YdEZ17VCnFp_35zhVHBC76Eju_R0,4736
|
|
104
102
|
daytona_api_client_async/models/organization_user.py,sha256=Dsk4ziJPNVk4_Nkm-RTePYTeS8sw3RBfHJ-ulY9-A2w,4895
|
|
105
103
|
daytona_api_client_async/models/paginated_audit_logs.py,sha256=x9kQCrPbgECBptkquJzd-OtULdxgTYa5jSDoHBOBA04,3841
|
|
106
|
-
daytona_api_client_async/models/paginated_images_dto.py,sha256=3I2PVVW6j3dlvBQepNSfkTjcq89l07R81U9b_fTV57s,3841
|
|
107
104
|
daytona_api_client_async/models/paginated_snapshots_dto.py,sha256=hg5tAos3X3gg0fF5TWqElq3iw7crm5Yb7KqlST_sXi0,3865
|
|
108
105
|
daytona_api_client_async/models/port_preview_url.py,sha256=QnOqJ0-wu7Zy_WiPRG-FeBRTaTZQTUvJrqlSsULQ8rU,3390
|
|
109
106
|
daytona_api_client_async/models/position.py,sha256=cdJuHMmQrTCxYhKwFbi7NODF7W4fbIxuu4rjw5pJjF0,3141
|
|
@@ -121,44 +118,61 @@ daytona_api_client_async/models/runner.py,sha256=f06I4M5klVGVtU0kysR6BaZYDRf9DUW
|
|
|
121
118
|
daytona_api_client_async/models/runner_region.py,sha256=Lkxx3kYTx8m4w3ntEiaOafMrUknhtNMfk00oD92kXZE,716
|
|
122
119
|
daytona_api_client_async/models/runner_snapshot_dto.py,sha256=ZBv1j3_4huI-z4GWbCqxOOT85OSyNYX3FHVAHQU6rbo,3447
|
|
123
120
|
daytona_api_client_async/models/runner_state.py,sha256=_cGjUiDdFZtUQjPc76YKgawOdxV1BDq0ehyKqWFMjD4,819
|
|
124
|
-
daytona_api_client_async/models/sandbox.py,sha256=
|
|
121
|
+
daytona_api_client_async/models/sandbox.py,sha256=xTOSMqimyPDvUSvd0C7NJ2Sev7p5t6hrPdzD645IeGY,9939
|
|
125
122
|
daytona_api_client_async/models/sandbox_class.py,sha256=Suwn9F4jLgtEdLtCWV86PpCtcfZ653h4bMYrmzrwBBc,731
|
|
123
|
+
daytona_api_client_async/models/sandbox_created_post_request.py,sha256=JqlrmmLBOvoEfwMdkTwPkxzHtvN75dBdhL4na8B5_dA,3667
|
|
124
|
+
daytona_api_client_async/models/sandbox_created_post_request_data.py,sha256=Z0YpC0MPxUIhghxqY3dXSG-HSCXStiY4QK3l29SXts0,5931
|
|
126
125
|
daytona_api_client_async/models/sandbox_desired_state.py,sha256=BHvsm7h8ydWf5e48D7eFGRL9tD8vt7eMBMguZ1GChbc,818
|
|
127
126
|
daytona_api_client_async/models/sandbox_info.py,sha256=u8wFXAS36AyRIwEfcPphUEBxjOLmtZTvYAq4aoeCJsU,3493
|
|
128
127
|
daytona_api_client_async/models/sandbox_labels.py,sha256=szanqeO42NwBygvKOq8EZtp6-ExERvumB42II24maUY,3091
|
|
129
|
-
daytona_api_client_async/models/sandbox_state.py,sha256=
|
|
128
|
+
daytona_api_client_async/models/sandbox_state.py,sha256=a3niQChUHt9p-l4Jd2Qio6t6iP6Ic5iBk1G8_ttpGIU,1136
|
|
129
|
+
daytona_api_client_async/models/sandbox_state_updated_post_request.py,sha256=ADat2FHwm8XQ5epcbsHTeH3DUYMMCng142upJ-PoDlo,3708
|
|
130
|
+
daytona_api_client_async/models/sandbox_state_updated_post_request_data.py,sha256=RlSh1aZDrnnwT6OlMrzPSavXYAqxJ4rZ-dHQ3KREgG4,5273
|
|
131
|
+
daytona_api_client_async/models/sandbox_state_updated_post_request_data_sandbox.py,sha256=nqmEJJOiPtLoFUuC_R8la2ummVGukmVEbMkLOBeIl7U,4122
|
|
130
132
|
daytona_api_client_async/models/sandbox_volume.py,sha256=R-cNh7LCK6IWjEcAXA6bS_JVkmd54X6tCcAEtJtijKE,3260
|
|
131
133
|
daytona_api_client_async/models/screenshot_response.py,sha256=n-K-Zpk92a3tFY665fcNDJQxDF80YOhLHVzDRbAl_aE,3621
|
|
132
134
|
daytona_api_client_async/models/search_files_response.py,sha256=3m7itQRgoeqJ8I6PyW-BbRthN5oLEP4pMr4HZsB8uqU,3050
|
|
135
|
+
daytona_api_client_async/models/send_webhook_dto.py,sha256=BGt7iS6gXvBpFDjToh9V7SMTv89hjU6Fapt6euxGSvc,3435
|
|
133
136
|
daytona_api_client_async/models/session.py,sha256=Y1paKlj2B_yt6mDI_g0aNGLu5mLXmEmuSa6CxBba4rc,3950
|
|
134
137
|
daytona_api_client_async/models/session_command_logs_response.py,sha256=4-nfnZUkCRHn2n5_DDDMyyoH2ieBzRcVjU7ka7kuVE8,3254
|
|
135
138
|
daytona_api_client_async/models/session_execute_request.py,sha256=_okMRsfmRsIeUe9tUSg06doA9t_FtzPJmh0_IV3Yw4c,3545
|
|
136
139
|
daytona_api_client_async/models/session_execute_response.py,sha256=_TYkpP7y3HKGYRKUPS1PxXlWQKl2iHOqeYP6jwNR48Q,3558
|
|
137
|
-
daytona_api_client_async/models/set_image_general_status.py,sha256=V3B4pw1yrfdbxTuC0sXVhGO-8qCeEgC0vVuvzZPyxf8,3121
|
|
138
140
|
daytona_api_client_async/models/set_snapshot_general_status_dto.py,sha256=d1qZ9B51JmiJAYpCvUgiYgB40Ckj_0ubx9Jse9QMkmQ,3148
|
|
141
|
+
daytona_api_client_async/models/snapshot_created_post_request.py,sha256=C0kc7g4xBwUZdmsguAVC2z52xKXDVncqRb16twRCniY,3675
|
|
142
|
+
daytona_api_client_async/models/snapshot_created_post_request_data.py,sha256=Ya0R0nnDp1zYH6-h6gKk9eLMOaEWjNPUi8x_wTlzmR4,5093
|
|
139
143
|
daytona_api_client_async/models/snapshot_dto.py,sha256=-27y_qwwLdJQw8xe9g9kZBLNRQlme6WgvQl7PWVpmmQ,6063
|
|
144
|
+
daytona_api_client_async/models/snapshot_removed_post_request.py,sha256=HdnT0xhpZVlQ-F-EIyDU_U5zdR4WaFXp-cFi_9wWIeM,3380
|
|
140
145
|
daytona_api_client_async/models/snapshot_state.py,sha256=hVEXEtoHEfE0jd5cF-979GTSKGYZnY6tiIQBU1Ww-9o,975
|
|
146
|
+
daytona_api_client_async/models/snapshot_state_updated_post_request.py,sha256=9GNXK_79Zj1RtCI0xzia-EkwCN9ntYceQ-0uTHUZT1Y,3716
|
|
147
|
+
daytona_api_client_async/models/snapshot_state_updated_post_request_data.py,sha256=5ZbNzXygioazretgVH72SjGlOIuZFaUDuvMoMbuvvO4,5010
|
|
148
|
+
daytona_api_client_async/models/snapshot_state_updated_post_request_data_snapshot.py,sha256=0V1cjyZoVDhAoxaD0mhCpXWw6obOqkpeK6S0FY4dUmE,3988
|
|
149
|
+
daytona_api_client_async/models/ssh_access_dto.py,sha256=SlKSwrMITp1Gs84p4g9Jo8jOp7pyXgZM-DSj1ywTnUc,3857
|
|
150
|
+
daytona_api_client_async/models/ssh_access_validation_dto.py,sha256=pZPI4xS3fV-FqdH6KbPSAWToTjR4Gmv8KnXbOIXZ7-w,3708
|
|
141
151
|
daytona_api_client_async/models/storage_access_dto.py,sha256=aivW_3ewAA5jcevSPyvsTaqqY5nUeaW8_2OPUeih614,3879
|
|
142
|
-
daytona_api_client_async/models/toggle_state.py,sha256=6EGZ3_exKZ45Awog-I-9SiEE1wzxVk-dSSfl9IyMf1E,3087
|
|
143
152
|
daytona_api_client_async/models/update_assigned_organization_roles.py,sha256=G8-T_36mlvj5o0QGO5rhXcMed86NaWyEc8kvhRm4Uho,3172
|
|
144
153
|
daytona_api_client_async/models/update_docker_registry.py,sha256=ya9FuZ3xvkUr0Dt69umaIJZjnH3Fy882qs82pt2iytw,3604
|
|
145
154
|
daytona_api_client_async/models/update_organization_invitation.py,sha256=_98DviKjGYq1h_zKngy0WphVyvi19d6kO8yiMgviX5A,3809
|
|
146
155
|
daytona_api_client_async/models/update_organization_member_role.py,sha256=-B8wsTJgQSkQTiYqD0nuc8yUXRRzIX5U0z5z94CTc5Q,3401
|
|
147
156
|
daytona_api_client_async/models/update_organization_quota.py,sha256=qfwgYkEKBJHhksdhbC0_LZUt5fBBFehQdtfq5seFSGc,6830
|
|
148
157
|
daytona_api_client_async/models/update_organization_role.py,sha256=-Z8oRpO3ebQRtlzMaeYKyfyNiFARD76kGvY_9-mF4os,4069
|
|
149
|
-
daytona_api_client_async/models/usage_overview.py,sha256=OvQ7AS-BvkGeVDtlV2eo9sBAZt1jRmJqPUHJCT4F6bU,4126
|
|
150
158
|
daytona_api_client_async/models/user.py,sha256=XK35zeb1pG--PfkkN4z0rmmt9mqdGQhbHcON5NoM9w8,4066
|
|
151
159
|
daytona_api_client_async/models/user_public_key.py,sha256=Y0_O7Sq8NP3XzCdKJJj7iTavEY8ytcBAf0Q3qOnJhbQ,3150
|
|
160
|
+
daytona_api_client_async/models/volume_created_post_request.py,sha256=fS4INpQHcCd5OA2gj-HYeecEoUcpQt0D7tWNPhvkKLo,3659
|
|
161
|
+
daytona_api_client_async/models/volume_created_post_request_data.py,sha256=MEqGnebIYVqY4-CqWCZ6LUx7OdPQZprAeqMwY9-nCmE,4487
|
|
152
162
|
daytona_api_client_async/models/volume_dto.py,sha256=yqEdmaSVOLfHdF5nMXJUzbVChRh2K2lmpjfUi5vbJnA,4600
|
|
153
163
|
daytona_api_client_async/models/volume_state.py,sha256=AaOsyPygY58fquvIkrwFndsXMrG0dCYcGKd8HRZhulg,848
|
|
164
|
+
daytona_api_client_async/models/volume_state_updated_post_request.py,sha256=gDvb-UZsp3Vvcf2kkZ_qoCrBbgrdUvVwRofY0zZtNrg,3700
|
|
165
|
+
daytona_api_client_async/models/volume_state_updated_post_request_data.py,sha256=TDLCoyZ4P95jsdniTSv4lId_8oxI6JMjwJp5Eey-UOM,4740
|
|
166
|
+
daytona_api_client_async/models/volume_state_updated_post_request_data_volume.py,sha256=TIyzZQ_xwJ1-EK-RFuk5l2HIWzMvIbvcl2vIfwRaG8o,3858
|
|
167
|
+
daytona_api_client_async/models/webhook_app_portal_access.py,sha256=799jqtP3hC_tXVxEXOXOgxvwl-HedhvA5_lA065LPvY,3112
|
|
168
|
+
daytona_api_client_async/models/webhook_controller_get_app_portal_access200_response.py,sha256=QYeIu9ApCuX8sN53hCyjDHbHEmA4I4LSlSV1zA0qIeA,3230
|
|
169
|
+
daytona_api_client_async/models/webhook_controller_get_initialization_status200_response.py,sha256=xRw0jmNEYLphUdFxstgEk3EgP9xuavfQn-P-hZXI5w4,4497
|
|
170
|
+
daytona_api_client_async/models/webhook_controller_get_status200_response.py,sha256=aRWG6gX4340N2Xhv6F3_5xr29zcNxLE8k-I7E7PSqVE,3153
|
|
171
|
+
daytona_api_client_async/models/webhook_initialization_status.py,sha256=zmw2g68mZfYXNDGwvJmd5QewHJtJ5JsUUgwBrbMQ8Bw,4664
|
|
154
172
|
daytona_api_client_async/models/windows_response.py,sha256=1fW2GYVSjFbipfQupU2MjfhUlcEyawzwtnWnwGngsFs,3295
|
|
155
|
-
daytona_api_client_async/models/workspace.py,sha256=
|
|
156
|
-
daytona_api_client_async/
|
|
157
|
-
daytona_api_client_async/
|
|
158
|
-
daytona_api_client_async/
|
|
159
|
-
daytona_api_client_async/
|
|
160
|
-
daytona_api_client_async-0.
|
|
161
|
-
daytona_api_client_async-0.25.5.dist-info/METADATA,sha256=YaC30w6-VtmQjXMoIETmkPWI27oZENmm_BIn43EuBRE,690
|
|
162
|
-
daytona_api_client_async-0.25.5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
163
|
-
daytona_api_client_async-0.25.5.dist-info/top_level.txt,sha256=PdOUDLVBJmZNDB8ak8FMMwmlyfRqUhQQ9SUDgNnbdZo,25
|
|
164
|
-
daytona_api_client_async-0.25.5.dist-info/RECORD,,
|
|
173
|
+
daytona_api_client_async/models/workspace.py,sha256=OaLAKPDmeJ0mRoisZg62smbc4GBBTYUZkLqQbIaCHZY,11518
|
|
174
|
+
daytona_api_client_async-0.26.0.dist-info/licenses/LICENSE,sha256=Qrw_9vreBpJ9mUMcB5B7ALDecZHgRciuOqS0BPfpihc,10752
|
|
175
|
+
daytona_api_client_async-0.26.0.dist-info/METADATA,sha256=Ck2zyS3SkomM9MTIK7Bsi1hJAHhGw-QlfBofdu-gR7U,690
|
|
176
|
+
daytona_api_client_async-0.26.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
177
|
+
daytona_api_client_async-0.26.0.dist-info/top_level.txt,sha256=PdOUDLVBJmZNDB8ak8FMMwmlyfRqUhQQ9SUDgNnbdZo,25
|
|
178
|
+
daytona_api_client_async-0.26.0.dist-info/RECORD,,
|