daytona_api_client_async 0.26.0rc1__py3-none-any.whl → 0.27.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/api_keys_api.py +282 -0
- daytona_api_client_async/api/default_api.py +1884 -0
- 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/toolbox_api.py +6 -6
- daytona_api_client_async/api/webhooks_api.py +1704 -0
- daytona_api_client_async/models/__init__.py +10 -1
- daytona_api_client_async/models/api_key_list.py +4 -2
- daytona_api_client_async/models/create_audit_log.py +2 -2
- daytona_api_client_async/models/health_controller_check200_response.py +154 -0
- daytona_api_client_async/models/health_controller_check200_response_info_value.py +101 -0
- 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_created_post_request.py +110 -0
- daytona_api_client_async/models/sandbox_created_post_request_data.py +152 -0
- 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/send_webhook_dto.py +105 -0
- daytona_api_client_async/models/session_command_logs_response.py +103 -0
- daytona_api_client_async/models/session_execute_response.py +1 -1
- daytona_api_client_async/models/snapshot_created_post_request.py +110 -0
- daytona_api_client_async/models/snapshot_created_post_request_data.py +136 -0
- daytona_api_client_async/models/snapshot_removed_post_request.py +106 -0
- 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/volume_created_post_request.py +110 -0
- daytona_api_client_async/models/volume_created_post_request_data.py +126 -0
- daytona_api_client_async/models/volume_state_updated_post_request.py +110 -0
- daytona_api_client_async/models/volume_state_updated_post_request_data.py +129 -0
- daytona_api_client_async/models/volume_state_updated_post_request_data_volume.py +115 -0
- daytona_api_client_async/models/webhook_app_portal_access.py +101 -0
- daytona_api_client_async/models/webhook_controller_get_app_portal_access200_response.py +101 -0
- 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-0.26.0rc1.dist-info → daytona_api_client_async-0.27.0.dist-info}/METADATA +1 -1
- {daytona_api_client_async-0.26.0rc1.dist-info → daytona_api_client_async-0.27.0.dist-info}/RECORD +47 -17
- {daytona_api_client_async-0.26.0rc1.dist-info → daytona_api_client_async-0.27.0.dist-info}/WHEEL +0 -0
- {daytona_api_client_async-0.26.0rc1.dist-info → daytona_api_client_async-0.27.0.dist-info}/licenses/LICENSE +0 -0
- {daytona_api_client_async-0.26.0rc1.dist-info → daytona_api_client_async-0.27.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
|
+
|
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
|
+
|
{daytona_api_client_async-0.26.0rc1.dist-info → daytona_api_client_async-0.27.0.dist-info}/RECORD
RENAMED
|
@@ -1,27 +1,30 @@
|
|
|
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=
|
|
9
|
-
daytona_api_client_async/api/api_keys_api.py,sha256=
|
|
8
|
+
daytona_api_client_async/api/__init__.py,sha256=AZfvHY1kjcNcQyCeE16d2KZQcN1jCh-vVyEifO-9l3I,1049
|
|
9
|
+
daytona_api_client_async/api/api_keys_api.py,sha256=heGX1DXmDSACSAOsgUAWaIohoCUG8QrNE-ImXCdLq2k,65902
|
|
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
|
|
13
|
+
daytona_api_client_async/api/health_api.py,sha256=9VKj52XnQ20iu0rbuLlSBiUVIK_Odu5gsAH_juVXC8I,10605
|
|
12
14
|
daytona_api_client_async/api/object_storage_api.py,sha256=gPhd3kPth8L26BV6C9QL3-VXax9W0S20_lZgEpoz02U,11677
|
|
13
|
-
daytona_api_client_async/api/organizations_api.py,sha256=
|
|
15
|
+
daytona_api_client_async/api/organizations_api.py,sha256=a7lgjZwlfoxCnGkpaE6tRZmTtJfJ6w65Ebua31jpSBM,278010
|
|
14
16
|
daytona_api_client_async/api/preview_api.py,sha256=tflnMN3QXSTx-tI1GZf70VY714MQTx1DX2edNFbemb8,31216
|
|
15
17
|
daytona_api_client_async/api/runners_api.py,sha256=DjL55SHmiIG1CkNrhiNGiiW9tBMrkLo1DiqAmNhpDoI,49294
|
|
16
|
-
daytona_api_client_async/api/sandbox_api.py,sha256=
|
|
18
|
+
daytona_api_client_async/api/sandbox_api.py,sha256=H3as1sU9Jn_O-0srRO03MGpx8YuG7x5zRDdaf_YBl6U,211728
|
|
17
19
|
daytona_api_client_async/api/snapshots_api.py,sha256=8e6q5AKAhheGbJoMriLG_7-LmAuJoA_xafZtWh2nKPQ,103648
|
|
18
|
-
daytona_api_client_async/api/toolbox_api.py,sha256=
|
|
20
|
+
daytona_api_client_async/api/toolbox_api.py,sha256=yP_lQRsO6ErtSzNr3yq3V5bfrk5NdlJWuMsFwq1iHwQ,723571
|
|
19
21
|
daytona_api_client_async/api/users_api.py,sha256=5vpJFiutNo-ygzejbkOz3iPMT4mLjNyvBZdNWTaQSFw,86876
|
|
20
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
|
|
21
24
|
daytona_api_client_async/api/workspace_api.py,sha256=krpDz2ro-e1QuQ8Bi4cnckymIEIlPJePBM6ieksguq8,170042
|
|
22
|
-
daytona_api_client_async/models/__init__.py,sha256=
|
|
25
|
+
daytona_api_client_async/models/__init__.py,sha256=eMQnnZ-2I0v2uDUv0vBGZ0Kq_XjogyJeO7mGYUqpbIY,10419
|
|
23
26
|
daytona_api_client_async/models/account_provider.py,sha256=yKJ_dMGnxGalNYuVTmo4CoFHpj1PIssSE1rnUaQeOKY,3154
|
|
24
|
-
daytona_api_client_async/models/api_key_list.py,sha256=
|
|
27
|
+
daytona_api_client_async/models/api_key_list.py,sha256=Q0NYG_KlqZgscz7WpkhTns6z1hYUaZH8yut8X40mQ1A,5166
|
|
25
28
|
daytona_api_client_async/models/api_key_response.py,sha256=XWqJdKTMp1w8uoUpmeKn0tKeXeImTJElnTvLunZGX5Y,4611
|
|
26
29
|
daytona_api_client_async/models/audit_log.py,sha256=sEOzYMbo8D525RhvlbizaiDjcC9fKo0-v2LbkXyxC6A,4689
|
|
27
30
|
daytona_api_client_async/models/build_info.py,sha256=5mPYDwHA3pQ4fPbNuE3kC9DYUmebIncqc4Fj2BQR1ZQ,3735
|
|
@@ -34,7 +37,7 @@ daytona_api_client_async/models/computer_use_start_response.py,sha256=9VYe5UMBU-
|
|
|
34
37
|
daytona_api_client_async/models/computer_use_status_response.py,sha256=P2dNSx1Ot-szu4y5gk1GCEJixCxsXrVnMNetxeYMh54,3489
|
|
35
38
|
daytona_api_client_async/models/computer_use_stop_response.py,sha256=FUpPYsIMPXqCGKYqdvVozjHHthg5j0o8NOMCYXjp5lY,3332
|
|
36
39
|
daytona_api_client_async/models/create_api_key.py,sha256=GFv3d-rA2Mbr9UhP-0O0DKm-gvln_JSGFJjMyoSAc8A,4351
|
|
37
|
-
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
|
|
38
41
|
daytona_api_client_async/models/create_build_info.py,sha256=hepmmgcZn199sgLksLm3ksJNSv-XLSgqL2BPdFnNAdg,3402
|
|
39
42
|
daytona_api_client_async/models/create_docker_registry.py,sha256=dyWgwtTu6RcbGgXyosFbwtvPJ55FjuK0duof-jK9o7Q,4337
|
|
40
43
|
daytona_api_client_async/models/create_linked_account.py,sha256=ar_cK_7Ep9iQ6zKeYDEMhQ5m3jc5EuomXj9SpdtWtSE,3289
|
|
@@ -66,6 +69,9 @@ daytona_api_client_async/models/git_commit_response.py,sha256=tnB4qIbD49vNfE2u7a
|
|
|
66
69
|
daytona_api_client_async/models/git_delete_branch_request.py,sha256=HVsnHjofhwZOQKI0YGcVzzU_vMQJfDjF3-CEExFrxOg,3117
|
|
67
70
|
daytona_api_client_async/models/git_repo_request.py,sha256=xD6xbFjoNsRF6Y2oZI-T3YE039pTzUVrzIQQKU9AzU8,3226
|
|
68
71
|
daytona_api_client_async/models/git_status.py,sha256=wiJuRX5Y1hb0V9t8jvonT3c-vDyFgqZMIQhEDRGFCOM,4146
|
|
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
|
|
69
75
|
daytona_api_client_async/models/keyboard_hotkey_request.py,sha256=2TUiw1xzR-pnkejwBZ2CMBDukx1oZQXZFqD-gsrLWJU,3153
|
|
70
76
|
daytona_api_client_async/models/keyboard_hotkey_response.py,sha256=p2fUBgp1UV86eZRYOu8bvvUK59E3kTgcqEqeOuDh_I4,3150
|
|
71
77
|
daytona_api_client_async/models/keyboard_press_request.py,sha256=hjU2CJYDc0PBW0SWEgYiY_6aQW810dQTu7T6u1VprxE,3351
|
|
@@ -92,6 +98,7 @@ daytona_api_client_async/models/organization.py,sha256=C9r47QH32-YeOmoE3EgtnXpiU
|
|
|
92
98
|
daytona_api_client_async/models/organization_invitation.py,sha256=vnnZ5zx05weSLymc4IQMtaJEnnxFLrQcG74AmqOMW6Q,5728
|
|
93
99
|
daytona_api_client_async/models/organization_role.py,sha256=RXGyGoi6XQI94zMzYU0h7UzI6Dm245t4hwNkKV9TCiE,4571
|
|
94
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
|
|
95
102
|
daytona_api_client_async/models/organization_user.py,sha256=Dsk4ziJPNVk4_Nkm-RTePYTeS8sw3RBfHJ-ulY9-A2w,4895
|
|
96
103
|
daytona_api_client_async/models/paginated_audit_logs.py,sha256=x9kQCrPbgECBptkquJzd-OtULdxgTYa5jSDoHBOBA04,3841
|
|
97
104
|
daytona_api_client_async/models/paginated_snapshots_dto.py,sha256=hg5tAos3X3gg0fF5TWqElq3iw7crm5Yb7KqlST_sXi0,3865
|
|
@@ -113,36 +120,59 @@ daytona_api_client_async/models/runner_snapshot_dto.py,sha256=ZBv1j3_4huI-z4GWbC
|
|
|
113
120
|
daytona_api_client_async/models/runner_state.py,sha256=_cGjUiDdFZtUQjPc76YKgawOdxV1BDq0ehyKqWFMjD4,819
|
|
114
121
|
daytona_api_client_async/models/sandbox.py,sha256=xTOSMqimyPDvUSvd0C7NJ2Sev7p5t6hrPdzD645IeGY,9939
|
|
115
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
|
|
116
125
|
daytona_api_client_async/models/sandbox_desired_state.py,sha256=BHvsm7h8ydWf5e48D7eFGRL9tD8vt7eMBMguZ1GChbc,818
|
|
117
126
|
daytona_api_client_async/models/sandbox_info.py,sha256=u8wFXAS36AyRIwEfcPphUEBxjOLmtZTvYAq4aoeCJsU,3493
|
|
118
127
|
daytona_api_client_async/models/sandbox_labels.py,sha256=szanqeO42NwBygvKOq8EZtp6-ExERvumB42II24maUY,3091
|
|
119
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
|
|
120
132
|
daytona_api_client_async/models/sandbox_volume.py,sha256=R-cNh7LCK6IWjEcAXA6bS_JVkmd54X6tCcAEtJtijKE,3260
|
|
121
133
|
daytona_api_client_async/models/screenshot_response.py,sha256=n-K-Zpk92a3tFY665fcNDJQxDF80YOhLHVzDRbAl_aE,3621
|
|
122
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
|
|
123
136
|
daytona_api_client_async/models/session.py,sha256=Y1paKlj2B_yt6mDI_g0aNGLu5mLXmEmuSa6CxBba4rc,3950
|
|
137
|
+
daytona_api_client_async/models/session_command_logs_response.py,sha256=4-nfnZUkCRHn2n5_DDDMyyoH2ieBzRcVjU7ka7kuVE8,3254
|
|
124
138
|
daytona_api_client_async/models/session_execute_request.py,sha256=_okMRsfmRsIeUe9tUSg06doA9t_FtzPJmh0_IV3Yw4c,3545
|
|
125
|
-
daytona_api_client_async/models/session_execute_response.py,sha256=
|
|
139
|
+
daytona_api_client_async/models/session_execute_response.py,sha256=JdYw8ql1ieE2IUpFHinerVK1aQ0iwjerHML2geJEHq0,3597
|
|
126
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
|
|
127
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
|
|
128
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
|
|
129
151
|
daytona_api_client_async/models/storage_access_dto.py,sha256=aivW_3ewAA5jcevSPyvsTaqqY5nUeaW8_2OPUeih614,3879
|
|
130
|
-
daytona_api_client_async/models/toggle_state.py,sha256=6EGZ3_exKZ45Awog-I-9SiEE1wzxVk-dSSfl9IyMf1E,3087
|
|
131
152
|
daytona_api_client_async/models/update_assigned_organization_roles.py,sha256=G8-T_36mlvj5o0QGO5rhXcMed86NaWyEc8kvhRm4Uho,3172
|
|
132
153
|
daytona_api_client_async/models/update_docker_registry.py,sha256=ya9FuZ3xvkUr0Dt69umaIJZjnH3Fy882qs82pt2iytw,3604
|
|
133
154
|
daytona_api_client_async/models/update_organization_invitation.py,sha256=_98DviKjGYq1h_zKngy0WphVyvi19d6kO8yiMgviX5A,3809
|
|
134
155
|
daytona_api_client_async/models/update_organization_member_role.py,sha256=-B8wsTJgQSkQTiYqD0nuc8yUXRRzIX5U0z5z94CTc5Q,3401
|
|
135
156
|
daytona_api_client_async/models/update_organization_quota.py,sha256=qfwgYkEKBJHhksdhbC0_LZUt5fBBFehQdtfq5seFSGc,6830
|
|
136
157
|
daytona_api_client_async/models/update_organization_role.py,sha256=-Z8oRpO3ebQRtlzMaeYKyfyNiFARD76kGvY_9-mF4os,4069
|
|
137
|
-
daytona_api_client_async/models/usage_overview.py,sha256=OvQ7AS-BvkGeVDtlV2eo9sBAZt1jRmJqPUHJCT4F6bU,4126
|
|
138
158
|
daytona_api_client_async/models/user.py,sha256=XK35zeb1pG--PfkkN4z0rmmt9mqdGQhbHcON5NoM9w8,4066
|
|
139
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
|
|
140
162
|
daytona_api_client_async/models/volume_dto.py,sha256=yqEdmaSVOLfHdF5nMXJUzbVChRh2K2lmpjfUi5vbJnA,4600
|
|
141
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
|
|
142
172
|
daytona_api_client_async/models/windows_response.py,sha256=1fW2GYVSjFbipfQupU2MjfhUlcEyawzwtnWnwGngsFs,3295
|
|
143
173
|
daytona_api_client_async/models/workspace.py,sha256=OaLAKPDmeJ0mRoisZg62smbc4GBBTYUZkLqQbIaCHZY,11518
|
|
144
|
-
daytona_api_client_async-0.
|
|
145
|
-
daytona_api_client_async-0.
|
|
146
|
-
daytona_api_client_async-0.
|
|
147
|
-
daytona_api_client_async-0.
|
|
148
|
-
daytona_api_client_async-0.
|
|
174
|
+
daytona_api_client_async-0.27.0.dist-info/licenses/LICENSE,sha256=Qrw_9vreBpJ9mUMcB5B7ALDecZHgRciuOqS0BPfpihc,10752
|
|
175
|
+
daytona_api_client_async-0.27.0.dist-info/METADATA,sha256=Ulth_ynVMs4tTl01DUqSsKvs-mxXEIJR-Jhq61zMBrQ,690
|
|
176
|
+
daytona_api_client_async-0.27.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
177
|
+
daytona_api_client_async-0.27.0.dist-info/top_level.txt,sha256=PdOUDLVBJmZNDB8ak8FMMwmlyfRqUhQQ9SUDgNnbdZo,25
|
|
178
|
+
daytona_api_client_async-0.27.0.dist-info/RECORD,,
|
{daytona_api_client_async-0.26.0rc1.dist-info → daytona_api_client_async-0.27.0.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|