daytona_api_client_async 0.103.0rc3__py3-none-any.whl → 0.104.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_async might be problematic. Click here for more details.

@@ -0,0 +1,148 @@
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 daytona_api_client_async.models.announcement import Announcement
24
+ from daytona_api_client_async.models.oidc_config import OidcConfig
25
+ from daytona_api_client_async.models.posthog_config import PosthogConfig
26
+ from typing import Optional, Set
27
+ from typing_extensions import Self
28
+
29
+ class DaytonaConfiguration(BaseModel):
30
+ """
31
+ DaytonaConfiguration
32
+ """ # noqa: E501
33
+ version: StrictStr = Field(description="Daytona version")
34
+ posthog: Optional[PosthogConfig] = Field(default=None, description="PostHog configuration")
35
+ oidc: OidcConfig = Field(description="OIDC configuration")
36
+ linked_accounts_enabled: StrictBool = Field(description="Whether linked accounts are enabled", alias="linkedAccountsEnabled")
37
+ announcements: Dict[str, Announcement] = Field(description="System announcements")
38
+ pylon_app_id: Optional[StrictStr] = Field(default=None, description="Pylon application ID", alias="pylonAppId")
39
+ proxy_template_url: StrictStr = Field(description="Proxy template URL", alias="proxyTemplateUrl")
40
+ default_snapshot: StrictStr = Field(description="Default snapshot for sandboxes", alias="defaultSnapshot")
41
+ dashboard_url: StrictStr = Field(description="Dashboard URL", alias="dashboardUrl")
42
+ max_auto_archive_interval: Union[StrictFloat, StrictInt] = Field(description="Maximum auto-archive interval in minutes", alias="maxAutoArchiveInterval")
43
+ maintanance_mode: StrictBool = Field(description="Whether maintenance mode is enabled", alias="maintananceMode")
44
+ environment: StrictStr = Field(description="Current environment")
45
+ billing_api_url: Optional[StrictStr] = Field(default=None, description="Billing API URL", alias="billingApiUrl")
46
+ ssh_gateway_command: Optional[StrictStr] = Field(default=None, description="SSH Gateway command", alias="sshGatewayCommand")
47
+ additional_properties: Dict[str, Any] = {}
48
+ __properties: ClassVar[List[str]] = ["version", "posthog", "oidc", "linkedAccountsEnabled", "announcements", "pylonAppId", "proxyTemplateUrl", "defaultSnapshot", "dashboardUrl", "maxAutoArchiveInterval", "maintananceMode", "environment", "billingApiUrl", "sshGatewayCommand"]
49
+
50
+ model_config = ConfigDict(
51
+ populate_by_name=True,
52
+ validate_assignment=True,
53
+ protected_namespaces=(),
54
+ )
55
+
56
+
57
+ def to_str(self) -> str:
58
+ """Returns the string representation of the model using alias"""
59
+ return pprint.pformat(self.model_dump(by_alias=True))
60
+
61
+ def to_json(self) -> str:
62
+ """Returns the JSON representation of the model using alias"""
63
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
64
+ return json.dumps(self.to_dict())
65
+
66
+ @classmethod
67
+ def from_json(cls, json_str: str) -> Optional[Self]:
68
+ """Create an instance of DaytonaConfiguration from a JSON string"""
69
+ return cls.from_dict(json.loads(json_str))
70
+
71
+ def to_dict(self) -> Dict[str, Any]:
72
+ """Return the dictionary representation of the model using alias.
73
+
74
+ This has the following differences from calling pydantic's
75
+ `self.model_dump(by_alias=True)`:
76
+
77
+ * `None` is only added to the output dict for nullable fields that
78
+ were set at model initialization. Other fields with value `None`
79
+ are ignored.
80
+ * Fields in `self.additional_properties` are added to the output dict.
81
+ """
82
+ excluded_fields: Set[str] = set([
83
+ "additional_properties",
84
+ ])
85
+
86
+ _dict = self.model_dump(
87
+ by_alias=True,
88
+ exclude=excluded_fields,
89
+ exclude_none=True,
90
+ )
91
+ # override the default output from pydantic by calling `to_dict()` of posthog
92
+ if self.posthog:
93
+ _dict['posthog'] = self.posthog.to_dict()
94
+ # override the default output from pydantic by calling `to_dict()` of oidc
95
+ if self.oidc:
96
+ _dict['oidc'] = self.oidc.to_dict()
97
+ # override the default output from pydantic by calling `to_dict()` of each value in announcements (dict)
98
+ _field_dict = {}
99
+ if self.announcements:
100
+ for _key_announcements in self.announcements:
101
+ if self.announcements[_key_announcements]:
102
+ _field_dict[_key_announcements] = self.announcements[_key_announcements].to_dict()
103
+ _dict['announcements'] = _field_dict
104
+ # puts key-value pairs in additional_properties in the top level
105
+ if self.additional_properties is not None:
106
+ for _key, _value in self.additional_properties.items():
107
+ _dict[_key] = _value
108
+
109
+ return _dict
110
+
111
+ @classmethod
112
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
113
+ """Create an instance of DaytonaConfiguration from a dict"""
114
+ if obj is None:
115
+ return None
116
+
117
+ if not isinstance(obj, dict):
118
+ return cls.model_validate(obj)
119
+
120
+ _obj = cls.model_validate({
121
+ "version": obj.get("version"),
122
+ "posthog": PosthogConfig.from_dict(obj["posthog"]) if obj.get("posthog") is not None else None,
123
+ "oidc": OidcConfig.from_dict(obj["oidc"]) if obj.get("oidc") is not None else None,
124
+ "linkedAccountsEnabled": obj.get("linkedAccountsEnabled"),
125
+ "announcements": dict(
126
+ (_k, Announcement.from_dict(_v))
127
+ for _k, _v in obj["announcements"].items()
128
+ )
129
+ if obj.get("announcements") is not None
130
+ else None,
131
+ "pylonAppId": obj.get("pylonAppId"),
132
+ "proxyTemplateUrl": obj.get("proxyTemplateUrl"),
133
+ "defaultSnapshot": obj.get("defaultSnapshot"),
134
+ "dashboardUrl": obj.get("dashboardUrl"),
135
+ "maxAutoArchiveInterval": obj.get("maxAutoArchiveInterval"),
136
+ "maintananceMode": obj.get("maintananceMode"),
137
+ "environment": obj.get("environment"),
138
+ "billingApiUrl": obj.get("billingApiUrl"),
139
+ "sshGatewayCommand": obj.get("sshGatewayCommand")
140
+ })
141
+ # store additional fields in additional_properties
142
+ for _key in obj.keys():
143
+ if _key not in cls.__properties:
144
+ _obj.additional_properties[_key] = obj.get(_key)
145
+
146
+ return _obj
147
+
148
+
@@ -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
23
+ from typing import Optional, Set
24
+ from typing_extensions import Self
25
+
26
+ class DownloadFiles(BaseModel):
27
+ """
28
+ DownloadFiles
29
+ """ # noqa: E501
30
+ paths: List[StrictStr] = Field(description="List of remote file paths to download")
31
+ additional_properties: Dict[str, Any] = {}
32
+ __properties: ClassVar[List[str]] = ["paths"]
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 DownloadFiles 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 DownloadFiles 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
+ "paths": obj.get("paths")
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,105 @@
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
23
+ from typing import Optional, Set
24
+ from typing_extensions import Self
25
+
26
+ class OidcConfig(BaseModel):
27
+ """
28
+ OidcConfig
29
+ """ # noqa: E501
30
+ issuer: StrictStr = Field(description="OIDC issuer")
31
+ client_id: StrictStr = Field(description="OIDC client ID", alias="clientId")
32
+ audience: StrictStr = Field(description="OIDC audience")
33
+ additional_properties: Dict[str, Any] = {}
34
+ __properties: ClassVar[List[str]] = ["issuer", "clientId", "audience"]
35
+
36
+ model_config = ConfigDict(
37
+ populate_by_name=True,
38
+ validate_assignment=True,
39
+ protected_namespaces=(),
40
+ )
41
+
42
+
43
+ def to_str(self) -> str:
44
+ """Returns the string representation of the model using alias"""
45
+ return pprint.pformat(self.model_dump(by_alias=True))
46
+
47
+ def to_json(self) -> str:
48
+ """Returns the JSON representation of the model using alias"""
49
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
50
+ return json.dumps(self.to_dict())
51
+
52
+ @classmethod
53
+ def from_json(cls, json_str: str) -> Optional[Self]:
54
+ """Create an instance of OidcConfig from a JSON string"""
55
+ return cls.from_dict(json.loads(json_str))
56
+
57
+ def to_dict(self) -> Dict[str, Any]:
58
+ """Return the dictionary representation of the model using alias.
59
+
60
+ This has the following differences from calling pydantic's
61
+ `self.model_dump(by_alias=True)`:
62
+
63
+ * `None` is only added to the output dict for nullable fields that
64
+ were set at model initialization. Other fields with value `None`
65
+ are ignored.
66
+ * Fields in `self.additional_properties` are added to the output dict.
67
+ """
68
+ excluded_fields: Set[str] = set([
69
+ "additional_properties",
70
+ ])
71
+
72
+ _dict = self.model_dump(
73
+ by_alias=True,
74
+ exclude=excluded_fields,
75
+ exclude_none=True,
76
+ )
77
+ # puts key-value pairs in additional_properties in the top level
78
+ if self.additional_properties is not None:
79
+ for _key, _value in self.additional_properties.items():
80
+ _dict[_key] = _value
81
+
82
+ return _dict
83
+
84
+ @classmethod
85
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
86
+ """Create an instance of OidcConfig from a dict"""
87
+ if obj is None:
88
+ return None
89
+
90
+ if not isinstance(obj, dict):
91
+ return cls.model_validate(obj)
92
+
93
+ _obj = cls.model_validate({
94
+ "issuer": obj.get("issuer"),
95
+ "clientId": obj.get("clientId"),
96
+ "audience": obj.get("audience")
97
+ })
98
+ # store additional fields in additional_properties
99
+ for _key in obj.keys():
100
+ if _key not in cls.__properties:
101
+ _obj.additional_properties[_key] = obj.get(_key)
102
+
103
+ return _obj
104
+
105
+
@@ -0,0 +1,103 @@
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
23
+ from typing import Optional, Set
24
+ from typing_extensions import Self
25
+
26
+ class PosthogConfig(BaseModel):
27
+ """
28
+ PosthogConfig
29
+ """ # noqa: E501
30
+ api_key: StrictStr = Field(description="PostHog API key", alias="apiKey")
31
+ host: StrictStr = Field(description="PostHog host URL")
32
+ additional_properties: Dict[str, Any] = {}
33
+ __properties: ClassVar[List[str]] = ["apiKey", "host"]
34
+
35
+ model_config = ConfigDict(
36
+ populate_by_name=True,
37
+ validate_assignment=True,
38
+ protected_namespaces=(),
39
+ )
40
+
41
+
42
+ def to_str(self) -> str:
43
+ """Returns the string representation of the model using alias"""
44
+ return pprint.pformat(self.model_dump(by_alias=True))
45
+
46
+ def to_json(self) -> str:
47
+ """Returns the JSON representation of the model using alias"""
48
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
49
+ return json.dumps(self.to_dict())
50
+
51
+ @classmethod
52
+ def from_json(cls, json_str: str) -> Optional[Self]:
53
+ """Create an instance of PosthogConfig from a JSON string"""
54
+ return cls.from_dict(json.loads(json_str))
55
+
56
+ def to_dict(self) -> Dict[str, Any]:
57
+ """Return the dictionary representation of the model using alias.
58
+
59
+ This has the following differences from calling pydantic's
60
+ `self.model_dump(by_alias=True)`:
61
+
62
+ * `None` is only added to the output dict for nullable fields that
63
+ were set at model initialization. Other fields with value `None`
64
+ are ignored.
65
+ * Fields in `self.additional_properties` are added to the output dict.
66
+ """
67
+ excluded_fields: Set[str] = set([
68
+ "additional_properties",
69
+ ])
70
+
71
+ _dict = self.model_dump(
72
+ by_alias=True,
73
+ exclude=excluded_fields,
74
+ exclude_none=True,
75
+ )
76
+ # puts key-value pairs in additional_properties in the top level
77
+ if self.additional_properties is not None:
78
+ for _key, _value in self.additional_properties.items():
79
+ _dict[_key] = _value
80
+
81
+ return _dict
82
+
83
+ @classmethod
84
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
85
+ """Create an instance of PosthogConfig from a dict"""
86
+ if obj is None:
87
+ return None
88
+
89
+ if not isinstance(obj, dict):
90
+ return cls.model_validate(obj)
91
+
92
+ _obj = cls.model_validate({
93
+ "apiKey": obj.get("apiKey"),
94
+ "host": obj.get("host")
95
+ })
96
+ # store additional fields in additional_properties
97
+ for _key in obj.keys():
98
+ if _key not in cls.__properties:
99
+ _obj.additional_properties[_key] = obj.get(_key)
100
+
101
+ return _obj
102
+
103
+
@@ -0,0 +1,108 @@
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, field_validator
22
+ from typing import Any, ClassVar, Dict, List
23
+ from typing import Optional, Set
24
+ from typing_extensions import Self
25
+
26
+ class UpdateSandboxStateDto(BaseModel):
27
+ """
28
+ UpdateSandboxStateDto
29
+ """ # noqa: E501
30
+ state: StrictStr = Field(description="The new state for the sandbox")
31
+ additional_properties: Dict[str, Any] = {}
32
+ __properties: ClassVar[List[str]] = ["state"]
33
+
34
+ @field_validator('state')
35
+ def state_validate_enum(cls, value):
36
+ """Validates the enum"""
37
+ if value not in set(['creating', 'restoring', 'destroyed', 'destroying', 'started', 'stopped', 'starting', 'stopping', 'error', 'build_failed', 'pending_build', 'building_snapshot', 'unknown', 'pulling_snapshot', 'archived', 'archiving']):
38
+ raise ValueError("must be one of enum values ('creating', 'restoring', 'destroyed', 'destroying', 'started', 'stopped', 'starting', 'stopping', 'error', 'build_failed', 'pending_build', 'building_snapshot', 'unknown', 'pulling_snapshot', 'archived', 'archiving')")
39
+ return value
40
+
41
+ model_config = ConfigDict(
42
+ populate_by_name=True,
43
+ validate_assignment=True,
44
+ protected_namespaces=(),
45
+ )
46
+
47
+
48
+ def to_str(self) -> str:
49
+ """Returns the string representation of the model using alias"""
50
+ return pprint.pformat(self.model_dump(by_alias=True))
51
+
52
+ def to_json(self) -> str:
53
+ """Returns the JSON representation of the model using alias"""
54
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
55
+ return json.dumps(self.to_dict())
56
+
57
+ @classmethod
58
+ def from_json(cls, json_str: str) -> Optional[Self]:
59
+ """Create an instance of UpdateSandboxStateDto from a JSON string"""
60
+ return cls.from_dict(json.loads(json_str))
61
+
62
+ def to_dict(self) -> Dict[str, Any]:
63
+ """Return the dictionary representation of the model using alias.
64
+
65
+ This has the following differences from calling pydantic's
66
+ `self.model_dump(by_alias=True)`:
67
+
68
+ * `None` is only added to the output dict for nullable fields that
69
+ were set at model initialization. Other fields with value `None`
70
+ are ignored.
71
+ * Fields in `self.additional_properties` are added to the output dict.
72
+ """
73
+ excluded_fields: Set[str] = set([
74
+ "additional_properties",
75
+ ])
76
+
77
+ _dict = self.model_dump(
78
+ by_alias=True,
79
+ exclude=excluded_fields,
80
+ exclude_none=True,
81
+ )
82
+ # puts key-value pairs in additional_properties in the top level
83
+ if self.additional_properties is not None:
84
+ for _key, _value in self.additional_properties.items():
85
+ _dict[_key] = _value
86
+
87
+ return _dict
88
+
89
+ @classmethod
90
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
91
+ """Create an instance of UpdateSandboxStateDto from a dict"""
92
+ if obj is None:
93
+ return None
94
+
95
+ if not isinstance(obj, dict):
96
+ return cls.model_validate(obj)
97
+
98
+ _obj = cls.model_validate({
99
+ "state": obj.get("state")
100
+ })
101
+ # store additional fields in additional_properties
102
+ for _key in obj.keys():
103
+ if _key not in cls.__properties:
104
+ _obj.additional_properties[_key] = obj.get(_key)
105
+
106
+ return _obj
107
+
108
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: daytona_api_client_async
3
- Version: 0.103.0rc3
3
+ Version: 0.104.0rc2
4
4
  Summary: Daytona
5
5
  Home-page:
6
6
  Author: Daytona Platforms Inc.
@@ -1,13 +1,14 @@
1
- daytona_api_client_async/__init__.py,sha256=OkkCg4aqN5l8xbWKj1-kx-pcN2j7UxeRf6aLfsYQOfM,12259
1
+ daytona_api_client_async/__init__.py,sha256=zOxggekFvnM26a0EaAjX5N5xoVhSaOEGve4LBVWyvQA,12782
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=AZfvHY1kjcNcQyCeE16d2KZQcN1jCh-vVyEifO-9l3I,1049
8
+ daytona_api_client_async/api/__init__.py,sha256=NlsGN-RyaavGmraSACiaOH2X8DX3cm0EtAPBPnKbocI,1111
9
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/config_api.py,sha256=ava4ZsQfy3dMl6Oa7y-ualS5uIiRXNTfDCb8hgxrlf8,10350
11
12
  daytona_api_client_async/api/default_api.py,sha256=YpjsubeCZFBTknw8d94xZ4Otfy7FeE_Uj7SG9V2WdSw,74558
12
13
  daytona_api_client_async/api/docker_registry_api.py,sha256=AOX05uUPF7PNilvYJrhxse45JO3i1QXvXow3yXIYZGo,79216
13
14
  daytona_api_client_async/api/health_api.py,sha256=9VKj52XnQ20iu0rbuLlSBiUVIK_Odu5gsAH_juVXC8I,10605
@@ -15,15 +16,16 @@ daytona_api_client_async/api/object_storage_api.py,sha256=gPhd3kPth8L26BV6C9QL3-
15
16
  daytona_api_client_async/api/organizations_api.py,sha256=y3BoFTUBFzrEKZNT7XGveCwPD4S9CI6Y9zZlx7fJyGQ,277689
16
17
  daytona_api_client_async/api/preview_api.py,sha256=tflnMN3QXSTx-tI1GZf70VY714MQTx1DX2edNFbemb8,31216
17
18
  daytona_api_client_async/api/runners_api.py,sha256=DjL55SHmiIG1CkNrhiNGiiW9tBMrkLo1DiqAmNhpDoI,49294
18
- daytona_api_client_async/api/sandbox_api.py,sha256=H3as1sU9Jn_O-0srRO03MGpx8YuG7x5zRDdaf_YBl6U,211728
19
+ daytona_api_client_async/api/sandbox_api.py,sha256=_kcSSJifCq0ZBeT2h9Usj7Hro1goh1TRswePigvaI2Q,234982
19
20
  daytona_api_client_async/api/snapshots_api.py,sha256=8e6q5AKAhheGbJoMriLG_7-LmAuJoA_xafZtWh2nKPQ,103648
20
- daytona_api_client_async/api/toolbox_api.py,sha256=SXC3YJf8v5GZDHBpcKJU9xBrh2N2mAhxnB1s-MnpuHQ,746552
21
+ daytona_api_client_async/api/toolbox_api.py,sha256=loctwPiQLusH81QzoEBLdKlzeffheEG7-Y9j843r6B0,759222
21
22
  daytona_api_client_async/api/users_api.py,sha256=5vpJFiutNo-ygzejbkOz3iPMT4mLjNyvBZdNWTaQSFw,86876
22
23
  daytona_api_client_async/api/volumes_api.py,sha256=Hhmny-51SBZhvm3Vztaud1ImEY3p14c3VdjeZN8SP7M,56883
23
24
  daytona_api_client_async/api/webhooks_api.py,sha256=JTMBBtbcPLpy1OsUX9aELWu67iA8HR-UsLRGSPCKav4,69846
24
25
  daytona_api_client_async/api/workspace_api.py,sha256=krpDz2ro-e1QuQ8Bi4cnckymIEIlPJePBM6ieksguq8,170042
25
- daytona_api_client_async/models/__init__.py,sha256=pWt6S6A3jSggSLZqEE017BBxbov_4nhIwaC3Slv6trE,10620
26
+ daytona_api_client_async/models/__init__.py,sha256=VxNbrGlaxL0Z1lFUyME26cGmLRkDJJz1msh1-ieT0Uo,11081
26
27
  daytona_api_client_async/models/account_provider.py,sha256=yKJ_dMGnxGalNYuVTmo4CoFHpj1PIssSE1rnUaQeOKY,3154
28
+ daytona_api_client_async/models/announcement.py,sha256=zO3Wa5yUYP2BDJ_3Weemiob_eMNXUZ1B_np-lQSLSgM,3283
27
29
  daytona_api_client_async/models/api_key_list.py,sha256=Q0NYG_KlqZgscz7WpkhTns6z1hYUaZH8yut8X40mQ1A,5166
28
30
  daytona_api_client_async/models/api_key_response.py,sha256=XWqJdKTMp1w8uoUpmeKn0tKeXeImTJElnTvLunZGX5Y,4611
29
31
  daytona_api_client_async/models/audit_log.py,sha256=sEOzYMbo8D525RhvlbizaiDjcC9fKo0-v2LbkXyxC6A,4689
@@ -36,6 +38,7 @@ daytona_api_client_async/models/compressed_screenshot_response.py,sha256=kyXtOVA
36
38
  daytona_api_client_async/models/computer_use_start_response.py,sha256=9VYe5UMBU-0EpGaw1ajHFsVbkO0s3Wile4tsWJSf_8I,3336
37
39
  daytona_api_client_async/models/computer_use_status_response.py,sha256=P2dNSx1Ot-szu4y5gk1GCEJixCxsXrVnMNetxeYMh54,3489
38
40
  daytona_api_client_async/models/computer_use_stop_response.py,sha256=FUpPYsIMPXqCGKYqdvVozjHHthg5j0o8NOMCYXjp5lY,3332
41
+ daytona_api_client_async/models/configuration.py,sha256=bdubxU9IaifU1yOAVA4-Hdp17AKfOOvfzFlb4D1sdFI,6295
39
42
  daytona_api_client_async/models/create_api_key.py,sha256=GFv3d-rA2Mbr9UhP-0O0DKm-gvln_JSGFJjMyoSAc8A,4351
40
43
  daytona_api_client_async/models/create_audit_log.py,sha256=Hkt8o4LtfbcckOZ6Nico-b_hkOvCMFTKJAZMwC1RP3M,7129
41
44
  daytona_api_client_async/models/create_build_info.py,sha256=hepmmgcZn199sgLksLm3ksJNSv-XLSgqL2BPdFnNAdg,3402
@@ -52,8 +55,10 @@ daytona_api_client_async/models/create_snapshot.py,sha256=wBhM3BVLDM_zUIcnln0tU0
52
55
  daytona_api_client_async/models/create_user.py,sha256=Amtw3BopSp20zD9QlpZnQHunhSO_yCyKaq3bYBGxJvc,4396
53
56
  daytona_api_client_async/models/create_volume.py,sha256=ClRnZzdkEWMIGlGbOix4pbhki7IcKPqF94OiL0Dygj4,3012
54
57
  daytona_api_client_async/models/create_workspace.py,sha256=e7uJNdwV9SRW0Jxew2A4PuB9VVQ0FlP5votvv9cUiRE,7094
58
+ daytona_api_client_async/models/daytona_configuration.py,sha256=aeP9rGiVJqzPhYepbYAs22mThYzzMYRLduiungUjRCE,6762
55
59
  daytona_api_client_async/models/display_info_response.py,sha256=ScbtgcWdnqxoVf1UtqolCsDR908Be4VFTyEBaXT_bvc,3142
56
60
  daytona_api_client_async/models/docker_registry.py,sha256=ZvO8zbXkgoQBrIogjBkGWlHnnRwd7CCq_DbdG92o6N4,4326
61
+ daytona_api_client_async/models/download_files.py,sha256=kOoubSJieTxqPoRECwDGtMpYZyDdXoMNybJWZ6Rek7Q,3094
57
62
  daytona_api_client_async/models/empty_response.py,sha256=pzQ97N0yWuJfgQ-iLXAaI8wTsLUBFyAbBQtCveYNnho,3097
58
63
  daytona_api_client_async/models/execute_request.py,sha256=pqLiipYbNty2zaiQNfhc9B1zZwQPeqaBtwwlAIEdakU,3401
59
64
  daytona_api_client_async/models/execute_response.py,sha256=fj3cyel-sUbHO61VebQM5j4RHT17k2GEHgNDThicvj8,3261
@@ -94,6 +99,7 @@ daytona_api_client_async/models/mouse_move_response.py,sha256=8dNZRVGwou0z5Hnm8q
94
99
  daytona_api_client_async/models/mouse_position.py,sha256=7SihmxntHoebKBqFus3FCThvOAc95zYtnDVsKOY29Cs,3262
95
100
  daytona_api_client_async/models/mouse_scroll_request.py,sha256=k8gy6A4zgfA-s1_pcJ6Ju53E-WpfU68uiT370IoxiK0,3653
96
101
  daytona_api_client_async/models/mouse_scroll_response.py,sha256=8jjnRrSdfynLVoJY5YpG4nKnum0FpV6JoWMsLHuQ5-w,3134
102
+ daytona_api_client_async/models/oidc_config.py,sha256=jK2m4ZS7iz7a0mpuvdSibdc2kSrZx3s_yJjNi6AD2Aw,3310
97
103
  daytona_api_client_async/models/organization.py,sha256=cO54dUvJOMxwhKAiNHBHnDJO0Xuu8YPzTI1uOEcdvf8,6224
98
104
  daytona_api_client_async/models/organization_invitation.py,sha256=vnnZ5zx05weSLymc4IQMtaJEnnxFLrQcG74AmqOMW6Q,5728
99
105
  daytona_api_client_async/models/organization_role.py,sha256=RXGyGoi6XQI94zMzYU0h7UzI6Dm245t4hwNkKV9TCiE,4571
@@ -106,6 +112,7 @@ daytona_api_client_async/models/paginated_audit_logs.py,sha256=x9kQCrPbgECBptkqu
106
112
  daytona_api_client_async/models/paginated_snapshots_dto.py,sha256=hg5tAos3X3gg0fF5TWqElq3iw7crm5Yb7KqlST_sXi0,3865
107
113
  daytona_api_client_async/models/port_preview_url.py,sha256=QnOqJ0-wu7Zy_WiPRG-FeBRTaTZQTUvJrqlSsULQ8rU,3390
108
114
  daytona_api_client_async/models/position.py,sha256=cdJuHMmQrTCxYhKwFbi7NODF7W4fbIxuu4rjw5pJjF0,3141
115
+ daytona_api_client_async/models/posthog_config.py,sha256=G_bxf3xbxeikp1jbtJbfFCsjHl8CI61DyTc-VSjOmP4,3192
109
116
  daytona_api_client_async/models/process_errors_response.py,sha256=VOT39yX9nhISVfqW4v690bxW0u7wYebUu1cWH8S9uwg,3336
110
117
  daytona_api_client_async/models/process_logs_response.py,sha256=dyg9HqPdnjbqxe3n8hMga9lKk3eRCuoU8SdLtaYKQUw,3308
111
118
  daytona_api_client_async/models/process_restart_response.py,sha256=XnuTZl2bu5YTVfZ8Pi2h41MRRKR-6eymHfBcBpT13jk,3337
@@ -158,6 +165,7 @@ daytona_api_client_async/models/update_organization_member_access.py,sha256=I0q6
158
165
  daytona_api_client_async/models/update_organization_member_role.py,sha256=-B8wsTJgQSkQTiYqD0nuc8yUXRRzIX5U0z5z94CTc5Q,3401
159
166
  daytona_api_client_async/models/update_organization_quota.py,sha256=qfwgYkEKBJHhksdhbC0_LZUt5fBBFehQdtfq5seFSGc,6830
160
167
  daytona_api_client_async/models/update_organization_role.py,sha256=-Z8oRpO3ebQRtlzMaeYKyfyNiFARD76kGvY_9-mF4os,4069
168
+ daytona_api_client_async/models/update_sandbox_state_dto.py,sha256=XzzeHDDpWoobgxUe8egnE3r0Po9VJwhCOMGDWqhc1LU,3780
161
169
  daytona_api_client_async/models/user.py,sha256=XK35zeb1pG--PfkkN4z0rmmt9mqdGQhbHcON5NoM9w8,4066
162
170
  daytona_api_client_async/models/user_home_dir_response.py,sha256=Hw3BXi_AdWuJRQ7lzncLSnBKW1iulBMSFD5rP92aoY8,3063
163
171
  daytona_api_client_async/models/user_public_key.py,sha256=Y0_O7Sq8NP3XzCdKJJj7iTavEY8ytcBAf0Q3qOnJhbQ,3150
@@ -177,8 +185,8 @@ daytona_api_client_async/models/windows_response.py,sha256=1fW2GYVSjFbipfQupU2Mj
177
185
  daytona_api_client_async/models/work_dir_response.py,sha256=1dndjWYnDSMDeLiY8pxQDX1viESoAGF_fegSiMx3i40,3047
178
186
  daytona_api_client_async/models/workdir_response.py,sha256=geBhfQDR7LK0uPlmJF6Ple1eQMCzhSb4qK-9UfhqV7k,3047
179
187
  daytona_api_client_async/models/workspace.py,sha256=OaLAKPDmeJ0mRoisZg62smbc4GBBTYUZkLqQbIaCHZY,11518
180
- daytona_api_client_async-0.103.0rc3.dist-info/licenses/LICENSE,sha256=Qrw_9vreBpJ9mUMcB5B7ALDecZHgRciuOqS0BPfpihc,10752
181
- daytona_api_client_async-0.103.0rc3.dist-info/METADATA,sha256=T2ipxZcTHTU3xKr1qjFgAe2iSEbxL8c_T5svzt1NTIk,694
182
- daytona_api_client_async-0.103.0rc3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
183
- daytona_api_client_async-0.103.0rc3.dist-info/top_level.txt,sha256=PdOUDLVBJmZNDB8ak8FMMwmlyfRqUhQQ9SUDgNnbdZo,25
184
- daytona_api_client_async-0.103.0rc3.dist-info/RECORD,,
188
+ daytona_api_client_async-0.104.0rc2.dist-info/licenses/LICENSE,sha256=Qrw_9vreBpJ9mUMcB5B7ALDecZHgRciuOqS0BPfpihc,10752
189
+ daytona_api_client_async-0.104.0rc2.dist-info/METADATA,sha256=azt7GNPnKUNirozh07ghW4aRxtnUzA-ejBz9G9-nSI4,694
190
+ daytona_api_client_async-0.104.0rc2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
191
+ daytona_api_client_async-0.104.0rc2.dist-info/top_level.txt,sha256=PdOUDLVBJmZNDB8ak8FMMwmlyfRqUhQQ9SUDgNnbdZo,25
192
+ daytona_api_client_async-0.104.0rc2.dist-info/RECORD,,