daytona_api_client 0.26.0rc1__py3-none-any.whl → 0.26.0rc2__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 +9 -1
- daytona_api_client/api/__init__.py +1 -0
- daytona_api_client/api/default_api.py +1884 -0
- daytona_api_client/api/organizations_api.py +6 -6
- daytona_api_client/api/sandbox_api.py +855 -2
- daytona_api_client/api/toolbox_api.py +13 -12
- daytona_api_client/api/webhooks_api.py +1704 -0
- daytona_api_client/models/__init__.py +8 -1
- daytona_api_client/models/create_audit_log.py +2 -2
- daytona_api_client/models/{usage_overview.py → organization_usage_overview.py} +14 -8
- 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_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/session_command_logs_response.py +103 -0
- daytona_api_client/models/session_execute_response.py +5 -3
- 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/snapshot_removed_post_request.py +106 -0
- 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_created_post_request_data.py +126 -0
- 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/webhook_app_portal_access.py +101 -0
- daytona_api_client/models/webhook_controller_get_app_portal_access200_response.py +101 -0
- 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-0.26.0rc1.dist-info → daytona_api_client-0.26.0rc2.dist-info}/METADATA +1 -1
- {daytona_api_client-0.26.0rc1.dist-info → daytona_api_client-0.26.0rc2.dist-info}/RECORD +41 -15
- {daytona_api_client-0.26.0rc1.dist-info → daytona_api_client-0.26.0rc2.dist-info}/WHEEL +0 -0
- {daytona_api_client-0.26.0rc1.dist-info → daytona_api_client-0.26.0rc2.dist-info}/licenses/LICENSE +0 -0
- {daytona_api_client-0.26.0rc1.dist-info → daytona_api_client-0.26.0rc2.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,101 @@
|
|
|
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, StrictStr
|
|
22
|
+
from typing import Any, ClassVar, Dict, List, Optional
|
|
23
|
+
from typing import Optional, Set
|
|
24
|
+
from typing_extensions import Self
|
|
25
|
+
|
|
26
|
+
class WebhookControllerGetAppPortalAccess200Response(BaseModel):
|
|
27
|
+
"""
|
|
28
|
+
WebhookControllerGetAppPortalAccess200Response
|
|
29
|
+
""" # noqa: E501
|
|
30
|
+
url: Optional[StrictStr] = Field(default=None, description="App Portal access URL")
|
|
31
|
+
additional_properties: Dict[str, Any] = {}
|
|
32
|
+
__properties: ClassVar[List[str]] = ["url"]
|
|
33
|
+
|
|
34
|
+
model_config = ConfigDict(
|
|
35
|
+
populate_by_name=True,
|
|
36
|
+
validate_assignment=True,
|
|
37
|
+
protected_namespaces=(),
|
|
38
|
+
)
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
def to_str(self) -> str:
|
|
42
|
+
"""Returns the string representation of the model using alias"""
|
|
43
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
|
44
|
+
|
|
45
|
+
def to_json(self) -> str:
|
|
46
|
+
"""Returns the JSON representation of the model using alias"""
|
|
47
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
|
48
|
+
return json.dumps(self.to_dict())
|
|
49
|
+
|
|
50
|
+
@classmethod
|
|
51
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
52
|
+
"""Create an instance of WebhookControllerGetAppPortalAccess200Response from a JSON string"""
|
|
53
|
+
return cls.from_dict(json.loads(json_str))
|
|
54
|
+
|
|
55
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
56
|
+
"""Return the dictionary representation of the model using alias.
|
|
57
|
+
|
|
58
|
+
This has the following differences from calling pydantic's
|
|
59
|
+
`self.model_dump(by_alias=True)`:
|
|
60
|
+
|
|
61
|
+
* `None` is only added to the output dict for nullable fields that
|
|
62
|
+
were set at model initialization. Other fields with value `None`
|
|
63
|
+
are ignored.
|
|
64
|
+
* Fields in `self.additional_properties` are added to the output dict.
|
|
65
|
+
"""
|
|
66
|
+
excluded_fields: Set[str] = set([
|
|
67
|
+
"additional_properties",
|
|
68
|
+
])
|
|
69
|
+
|
|
70
|
+
_dict = self.model_dump(
|
|
71
|
+
by_alias=True,
|
|
72
|
+
exclude=excluded_fields,
|
|
73
|
+
exclude_none=True,
|
|
74
|
+
)
|
|
75
|
+
# puts key-value pairs in additional_properties in the top level
|
|
76
|
+
if self.additional_properties is not None:
|
|
77
|
+
for _key, _value in self.additional_properties.items():
|
|
78
|
+
_dict[_key] = _value
|
|
79
|
+
|
|
80
|
+
return _dict
|
|
81
|
+
|
|
82
|
+
@classmethod
|
|
83
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
84
|
+
"""Create an instance of WebhookControllerGetAppPortalAccess200Response from a dict"""
|
|
85
|
+
if obj is None:
|
|
86
|
+
return None
|
|
87
|
+
|
|
88
|
+
if not isinstance(obj, dict):
|
|
89
|
+
return cls.model_validate(obj)
|
|
90
|
+
|
|
91
|
+
_obj = cls.model_validate({
|
|
92
|
+
"url": obj.get("url")
|
|
93
|
+
})
|
|
94
|
+
# store additional fields in additional_properties
|
|
95
|
+
for _key in obj.keys():
|
|
96
|
+
if _key not in cls.__properties:
|
|
97
|
+
_obj.additional_properties[_key] = obj.get(_key)
|
|
98
|
+
|
|
99
|
+
return _obj
|
|
100
|
+
|
|
101
|
+
|
|
@@ -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
|
+
|
|
@@ -1,25 +1,27 @@
|
|
|
1
|
-
daytona_api_client/__init__.py,sha256=
|
|
1
|
+
daytona_api_client/__init__.py,sha256=KHnPAWUNiNyEWQB_1osLst1-Jhk9vsibm40NF8eI7bg,10868
|
|
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=pkjxKV2TBXBd9jcd5HbzWGYEPNZkewb_QDm2BbUbi8o,903
|
|
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
|
|
12
13
|
daytona_api_client/api/object_storage_api.py,sha256=wvOdTUjvlChxzwwzA-49iwjl46F0uFt06Axfcb_BX4Q,11605
|
|
13
|
-
daytona_api_client/api/organizations_api.py,sha256=
|
|
14
|
+
daytona_api_client/api/organizations_api.py,sha256=ImQo7nBxtzgIiRXMBdyVxrjC-u8dPLKDa3BLqirGn0Y,276660
|
|
14
15
|
daytona_api_client/api/preview_api.py,sha256=_cYR0xaBKtYBFUKIRezvR0d6swN7yKkmVkJ5yBLk_ro,31054
|
|
15
16
|
daytona_api_client/api/runners_api.py,sha256=kl74Mg19G71Kcj9dNK9xeJCaZ2upk4z-DS7Ul70n-Ww,49018
|
|
16
|
-
daytona_api_client/api/sandbox_api.py,sha256=
|
|
17
|
+
daytona_api_client/api/sandbox_api.py,sha256=yr4s9iuEYpu2mspxJC4WfkVJMpAlEAa1NEI38IwW6R4,210810
|
|
17
18
|
daytona_api_client/api/snapshots_api.py,sha256=rt0h_XOyGay-JEaqw69-JqiJEq0GbG1U-MKJtg3Ez0c,103174
|
|
18
|
-
daytona_api_client/api/toolbox_api.py,sha256=
|
|
19
|
+
daytona_api_client/api/toolbox_api.py,sha256=x_R0OcCpLdUYRS6ejGLFM5wOd6OrmE6mr8znRdBKrtc,720571
|
|
19
20
|
daytona_api_client/api/users_api.py,sha256=KR4cw2mfRp06QV2b0UXXQ1Jcx59TyuS0c7yGRr2Sodk,86402
|
|
20
21
|
daytona_api_client/api/volumes_api.py,sha256=N9kxZzhfaZxC_YQ-Vi1QksoTIzqp_dFADywgQup1oSk,56613
|
|
22
|
+
daytona_api_client/api/webhooks_api.py,sha256=epxKIYqZfebDapzSvqUVlJct1KfVr_T3ZnAc9YyiZX8,69516
|
|
21
23
|
daytona_api_client/api/workspace_api.py,sha256=mjn4jlTtMbKfuqxcr9goo-01RJX-hFjVLT1rF8K5uKI,169328
|
|
22
|
-
daytona_api_client/models/__init__.py,sha256=
|
|
24
|
+
daytona_api_client/models/__init__.py,sha256=jrNUqTQgcpwrzodu4pX-B7jMEVT2QO07_nQ5YXYC4PM,9429
|
|
23
25
|
daytona_api_client/models/account_provider.py,sha256=yKJ_dMGnxGalNYuVTmo4CoFHpj1PIssSE1rnUaQeOKY,3154
|
|
24
26
|
daytona_api_client/models/api_key_list.py,sha256=LwEm8q2SjDOGa04S0kkk4GRbZPvrpVJ-4Ju1dgcp0b8,5005
|
|
25
27
|
daytona_api_client/models/api_key_response.py,sha256=XWqJdKTMp1w8uoUpmeKn0tKeXeImTJElnTvLunZGX5Y,4611
|
|
@@ -34,7 +36,7 @@ daytona_api_client/models/computer_use_start_response.py,sha256=9VYe5UMBU-0EpGaw
|
|
|
34
36
|
daytona_api_client/models/computer_use_status_response.py,sha256=P2dNSx1Ot-szu4y5gk1GCEJixCxsXrVnMNetxeYMh54,3489
|
|
35
37
|
daytona_api_client/models/computer_use_stop_response.py,sha256=FUpPYsIMPXqCGKYqdvVozjHHthg5j0o8NOMCYXjp5lY,3332
|
|
36
38
|
daytona_api_client/models/create_api_key.py,sha256=GFv3d-rA2Mbr9UhP-0O0DKm-gvln_JSGFJjMyoSAc8A,4351
|
|
37
|
-
daytona_api_client/models/create_audit_log.py,sha256=
|
|
39
|
+
daytona_api_client/models/create_audit_log.py,sha256=r2x9_bFGSlBs7_kA6KGSUGlA5zzUTqw6UVe-gMDBtrU,7077
|
|
38
40
|
daytona_api_client/models/create_build_info.py,sha256=hepmmgcZn199sgLksLm3ksJNSv-XLSgqL2BPdFnNAdg,3402
|
|
39
41
|
daytona_api_client/models/create_docker_registry.py,sha256=dyWgwtTu6RcbGgXyosFbwtvPJ55FjuK0duof-jK9o7Q,4337
|
|
40
42
|
daytona_api_client/models/create_linked_account.py,sha256=ar_cK_7Ep9iQ6zKeYDEMhQ5m3jc5EuomXj9SpdtWtSE,3289
|
|
@@ -92,6 +94,7 @@ daytona_api_client/models/organization.py,sha256=C9r47QH32-YeOmoE3EgtnXpiUIloq6z
|
|
|
92
94
|
daytona_api_client/models/organization_invitation.py,sha256=LXPDanRJHU6bfXD-wanIY2Ise7VakZoRLgqhYrOu_Vk,5722
|
|
93
95
|
daytona_api_client/models/organization_role.py,sha256=RXGyGoi6XQI94zMzYU0h7UzI6Dm245t4hwNkKV9TCiE,4571
|
|
94
96
|
daytona_api_client/models/organization_suspension.py,sha256=Pd6oBCKzlvI7xAfjDamyte2eHJKOZBFgG3GXMUVOe2A,3586
|
|
97
|
+
daytona_api_client/models/organization_usage_overview.py,sha256=49A5lhlQf30c2i5YdEZ17VCnFp_35zhVHBC76Eju_R0,4736
|
|
95
98
|
daytona_api_client/models/organization_user.py,sha256=t4rkA-cpCRLgLqDMplg1yv2JYUu7jrRBLPL1xkcjaJI,4889
|
|
96
99
|
daytona_api_client/models/paginated_audit_logs.py,sha256=CThN80Prqq93G6w6GqFxAA6zlWfcZREPG4T0r8obhgw,3835
|
|
97
100
|
daytona_api_client/models/paginated_snapshots_dto.py,sha256=v0b9U3XZUjQ2AVJE0Vv-2Do9rCuy2aN4ZwU8s_L8fUw,3859
|
|
@@ -113,36 +116,59 @@ daytona_api_client/models/runner_snapshot_dto.py,sha256=ZBv1j3_4huI-z4GWbCqxOOT8
|
|
|
113
116
|
daytona_api_client/models/runner_state.py,sha256=_cGjUiDdFZtUQjPc76YKgawOdxV1BDq0ehyKqWFMjD4,819
|
|
114
117
|
daytona_api_client/models/sandbox.py,sha256=gJu6wT5iPE2Pl5lVrTFUxxCqL-49UpbXdAS-Li13uvQ,9915
|
|
115
118
|
daytona_api_client/models/sandbox_class.py,sha256=Suwn9F4jLgtEdLtCWV86PpCtcfZ653h4bMYrmzrwBBc,731
|
|
119
|
+
daytona_api_client/models/sandbox_created_post_request.py,sha256=V1WO2DYyN96kvSum-MbokTw70QpwR3bM_03xGmsVb0g,3661
|
|
120
|
+
daytona_api_client/models/sandbox_created_post_request_data.py,sha256=Z0YpC0MPxUIhghxqY3dXSG-HSCXStiY4QK3l29SXts0,5931
|
|
116
121
|
daytona_api_client/models/sandbox_desired_state.py,sha256=BHvsm7h8ydWf5e48D7eFGRL9tD8vt7eMBMguZ1GChbc,818
|
|
117
122
|
daytona_api_client/models/sandbox_info.py,sha256=u8wFXAS36AyRIwEfcPphUEBxjOLmtZTvYAq4aoeCJsU,3493
|
|
118
123
|
daytona_api_client/models/sandbox_labels.py,sha256=szanqeO42NwBygvKOq8EZtp6-ExERvumB42II24maUY,3091
|
|
119
124
|
daytona_api_client/models/sandbox_state.py,sha256=a3niQChUHt9p-l4Jd2Qio6t6iP6Ic5iBk1G8_ttpGIU,1136
|
|
125
|
+
daytona_api_client/models/sandbox_state_updated_post_request.py,sha256=47lOv1os1cg9v-xuZsPbQAcKbhgp95GFZ0OAHKqRLJI,3702
|
|
126
|
+
daytona_api_client/models/sandbox_state_updated_post_request_data.py,sha256=eCoSFGvQVPbBPv7U0Y-2DrthmZXY-Mp4xacla7joM4I,5267
|
|
127
|
+
daytona_api_client/models/sandbox_state_updated_post_request_data_sandbox.py,sha256=nqmEJJOiPtLoFUuC_R8la2ummVGukmVEbMkLOBeIl7U,4122
|
|
120
128
|
daytona_api_client/models/sandbox_volume.py,sha256=R-cNh7LCK6IWjEcAXA6bS_JVkmd54X6tCcAEtJtijKE,3260
|
|
121
129
|
daytona_api_client/models/screenshot_response.py,sha256=n-K-Zpk92a3tFY665fcNDJQxDF80YOhLHVzDRbAl_aE,3621
|
|
122
130
|
daytona_api_client/models/search_files_response.py,sha256=3m7itQRgoeqJ8I6PyW-BbRthN5oLEP4pMr4HZsB8uqU,3050
|
|
131
|
+
daytona_api_client/models/send_webhook_dto.py,sha256=BGt7iS6gXvBpFDjToh9V7SMTv89hjU6Fapt6euxGSvc,3435
|
|
123
132
|
daytona_api_client/models/session.py,sha256=dg-bsVQRCgL7bIMUYXCufpJfF_QYfLLc88cwDfZKfcE,3944
|
|
133
|
+
daytona_api_client/models/session_command_logs_response.py,sha256=4-nfnZUkCRHn2n5_DDDMyyoH2ieBzRcVjU7ka7kuVE8,3254
|
|
124
134
|
daytona_api_client/models/session_execute_request.py,sha256=_okMRsfmRsIeUe9tUSg06doA9t_FtzPJmh0_IV3Yw4c,3545
|
|
125
|
-
daytona_api_client/models/session_execute_response.py,sha256=
|
|
135
|
+
daytona_api_client/models/session_execute_response.py,sha256=IDOtQigdtudUv38VJVl0tVXP6L-0y38UCmY3Z2Uc3R8,3713
|
|
126
136
|
daytona_api_client/models/set_snapshot_general_status_dto.py,sha256=d1qZ9B51JmiJAYpCvUgiYgB40Ckj_0ubx9Jse9QMkmQ,3148
|
|
137
|
+
daytona_api_client/models/snapshot_created_post_request.py,sha256=POmSHyKNResEzivVhGgyzfGIZw-oWMtDhwQAwPxdeE0,3669
|
|
138
|
+
daytona_api_client/models/snapshot_created_post_request_data.py,sha256=Ya0R0nnDp1zYH6-h6gKk9eLMOaEWjNPUi8x_wTlzmR4,5093
|
|
127
139
|
daytona_api_client/models/snapshot_dto.py,sha256=eTX3vGw5K0RhjFkNKSo_VcNl28ehB0ZjlEh9TSu_RYY,6051
|
|
140
|
+
daytona_api_client/models/snapshot_removed_post_request.py,sha256=HdnT0xhpZVlQ-F-EIyDU_U5zdR4WaFXp-cFi_9wWIeM,3380
|
|
128
141
|
daytona_api_client/models/snapshot_state.py,sha256=hVEXEtoHEfE0jd5cF-979GTSKGYZnY6tiIQBU1Ww-9o,975
|
|
142
|
+
daytona_api_client/models/snapshot_state_updated_post_request.py,sha256=JyIRjsipL7na61UZ2vSv3S06Mo7Z4DwkdXJpJuuG0F0,3710
|
|
143
|
+
daytona_api_client/models/snapshot_state_updated_post_request_data.py,sha256=8fGICg10-_oTNDGxqqeZBAUzn0kaVtT_ZALJQiS5fy8,5004
|
|
144
|
+
daytona_api_client/models/snapshot_state_updated_post_request_data_snapshot.py,sha256=0V1cjyZoVDhAoxaD0mhCpXWw6obOqkpeK6S0FY4dUmE,3988
|
|
145
|
+
daytona_api_client/models/ssh_access_dto.py,sha256=SlKSwrMITp1Gs84p4g9Jo8jOp7pyXgZM-DSj1ywTnUc,3857
|
|
146
|
+
daytona_api_client/models/ssh_access_validation_dto.py,sha256=pZPI4xS3fV-FqdH6KbPSAWToTjR4Gmv8KnXbOIXZ7-w,3708
|
|
129
147
|
daytona_api_client/models/storage_access_dto.py,sha256=aivW_3ewAA5jcevSPyvsTaqqY5nUeaW8_2OPUeih614,3879
|
|
130
|
-
daytona_api_client/models/toggle_state.py,sha256=6EGZ3_exKZ45Awog-I-9SiEE1wzxVk-dSSfl9IyMf1E,3087
|
|
131
148
|
daytona_api_client/models/update_assigned_organization_roles.py,sha256=G8-T_36mlvj5o0QGO5rhXcMed86NaWyEc8kvhRm4Uho,3172
|
|
132
149
|
daytona_api_client/models/update_docker_registry.py,sha256=ya9FuZ3xvkUr0Dt69umaIJZjnH3Fy882qs82pt2iytw,3604
|
|
133
150
|
daytona_api_client/models/update_organization_invitation.py,sha256=_98DviKjGYq1h_zKngy0WphVyvi19d6kO8yiMgviX5A,3809
|
|
134
151
|
daytona_api_client/models/update_organization_member_role.py,sha256=-B8wsTJgQSkQTiYqD0nuc8yUXRRzIX5U0z5z94CTc5Q,3401
|
|
135
152
|
daytona_api_client/models/update_organization_quota.py,sha256=qfwgYkEKBJHhksdhbC0_LZUt5fBBFehQdtfq5seFSGc,6830
|
|
136
153
|
daytona_api_client/models/update_organization_role.py,sha256=-Z8oRpO3ebQRtlzMaeYKyfyNiFARD76kGvY_9-mF4os,4069
|
|
137
|
-
daytona_api_client/models/usage_overview.py,sha256=OvQ7AS-BvkGeVDtlV2eo9sBAZt1jRmJqPUHJCT4F6bU,4126
|
|
138
154
|
daytona_api_client/models/user.py,sha256=sXLeH2Rivv_Jls4rGcv3ihfX9B7-4pCZqk_JrSGBGmI,4060
|
|
139
155
|
daytona_api_client/models/user_public_key.py,sha256=Y0_O7Sq8NP3XzCdKJJj7iTavEY8ytcBAf0Q3qOnJhbQ,3150
|
|
156
|
+
daytona_api_client/models/volume_created_post_request.py,sha256=chleMJEqyLN_mdwd7UpmLLr1bRMQnZnb-UkYtyyDqDk,3653
|
|
157
|
+
daytona_api_client/models/volume_created_post_request_data.py,sha256=MEqGnebIYVqY4-CqWCZ6LUx7OdPQZprAeqMwY9-nCmE,4487
|
|
140
158
|
daytona_api_client/models/volume_dto.py,sha256=NL6A6xpc9liR_zlVZKGCoHLlz6r4LAHrMW2uL0TClnI,4594
|
|
141
159
|
daytona_api_client/models/volume_state.py,sha256=AaOsyPygY58fquvIkrwFndsXMrG0dCYcGKd8HRZhulg,848
|
|
160
|
+
daytona_api_client/models/volume_state_updated_post_request.py,sha256=GHVELNRVfG7jQOPMNWT5xF0GVXoqQUQMsx11_1hFLi8,3694
|
|
161
|
+
daytona_api_client/models/volume_state_updated_post_request_data.py,sha256=P9c_0A2okvM-rS8KReaxpNLyLAmZmSQ7ykRt8iDQvvo,4734
|
|
162
|
+
daytona_api_client/models/volume_state_updated_post_request_data_volume.py,sha256=TIyzZQ_xwJ1-EK-RFuk5l2HIWzMvIbvcl2vIfwRaG8o,3858
|
|
163
|
+
daytona_api_client/models/webhook_app_portal_access.py,sha256=799jqtP3hC_tXVxEXOXOgxvwl-HedhvA5_lA065LPvY,3112
|
|
164
|
+
daytona_api_client/models/webhook_controller_get_app_portal_access200_response.py,sha256=QYeIu9ApCuX8sN53hCyjDHbHEmA4I4LSlSV1zA0qIeA,3230
|
|
165
|
+
daytona_api_client/models/webhook_controller_get_initialization_status200_response.py,sha256=xRw0jmNEYLphUdFxstgEk3EgP9xuavfQn-P-hZXI5w4,4497
|
|
166
|
+
daytona_api_client/models/webhook_controller_get_status200_response.py,sha256=aRWG6gX4340N2Xhv6F3_5xr29zcNxLE8k-I7E7PSqVE,3153
|
|
167
|
+
daytona_api_client/models/webhook_initialization_status.py,sha256=zmw2g68mZfYXNDGwvJmd5QewHJtJ5JsUUgwBrbMQ8Bw,4664
|
|
142
168
|
daytona_api_client/models/windows_response.py,sha256=1fW2GYVSjFbipfQupU2MjfhUlcEyawzwtnWnwGngsFs,3295
|
|
143
169
|
daytona_api_client/models/workspace.py,sha256=uwAStXOLrVJzbxdTfPZokrcMr4Dp4ghgH8V5fy5r0gY,11488
|
|
144
|
-
daytona_api_client-0.26.
|
|
145
|
-
daytona_api_client-0.26.
|
|
146
|
-
daytona_api_client-0.26.
|
|
147
|
-
daytona_api_client-0.26.
|
|
148
|
-
daytona_api_client-0.26.
|
|
170
|
+
daytona_api_client-0.26.0rc2.dist-info/licenses/LICENSE,sha256=Qrw_9vreBpJ9mUMcB5B7ALDecZHgRciuOqS0BPfpihc,10752
|
|
171
|
+
daytona_api_client-0.26.0rc2.dist-info/METADATA,sha256=KKs8PhiRo3HyxOZWuMgdh12naelGt_PIHlVTDH24l78,621
|
|
172
|
+
daytona_api_client-0.26.0rc2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
173
|
+
daytona_api_client-0.26.0rc2.dist-info/top_level.txt,sha256=sDZKAfxKnAQYvOLS9vAOx88EYH3wV5Wx897pODDupuE,19
|
|
174
|
+
daytona_api_client-0.26.0rc2.dist-info/RECORD,,
|
|
File without changes
|
{daytona_api_client-0.26.0rc1.dist-info → daytona_api_client-0.26.0rc2.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
{daytona_api_client-0.26.0rc1.dist-info → daytona_api_client-0.26.0rc2.dist-info}/top_level.txt
RENAMED
|
File without changes
|