blaxel 0.1.9rc36__py3-none-any.whl → 0.1.10__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.
- blaxel/agents/__init__.py +52 -15
- blaxel/authentication/__init__.py +11 -2
- blaxel/client/api/compute/create_sandbox_preview.py +179 -0
- blaxel/client/api/compute/create_sandbox_preview_token.py +192 -0
- blaxel/client/api/compute/delete_sandbox_preview.py +167 -0
- blaxel/client/api/compute/delete_sandbox_preview_token.py +180 -0
- blaxel/client/api/compute/get_sandbox_preview.py +167 -0
- blaxel/client/api/compute/list_sandbox_preview_tokens.py +172 -0
- blaxel/client/api/compute/list_sandbox_previews.py +159 -0
- blaxel/client/api/compute/update_sandbox_preview.py +192 -0
- blaxel/client/api/integrations/get_integration.py +64 -7
- blaxel/client/api/workspaces/check_workspace_availability.py +165 -0
- blaxel/client/models/__init__.py +32 -2
- blaxel/client/models/check_workspace_availability_body.py +60 -0
- blaxel/client/models/delete_sandbox_preview_token_response_200.py +60 -0
- blaxel/client/models/integration.py +197 -0
- blaxel/client/models/integration_additional_infos.py +45 -0
- blaxel/client/models/integration_endpoint.py +143 -0
- blaxel/client/models/integration_endpoint_token.py +79 -0
- blaxel/client/models/integration_endpoints.py +61 -0
- blaxel/client/models/integration_headers.py +45 -0
- blaxel/client/models/integration_organization.py +88 -0
- blaxel/client/models/integration_query_params.py +45 -0
- blaxel/client/models/metrics.py +9 -0
- blaxel/client/models/preview.py +96 -0
- blaxel/client/models/preview_metadata.py +133 -0
- blaxel/client/models/preview_spec.py +79 -0
- blaxel/client/models/preview_token.py +96 -0
- blaxel/client/models/preview_token_metadata.py +97 -0
- blaxel/client/models/preview_token_spec.py +88 -0
- blaxel/common/autoload.py +0 -2
- blaxel/common/internal.py +75 -0
- blaxel/common/settings.py +6 -1
- blaxel/mcp/server.py +2 -1
- blaxel/sandbox/base.py +68 -0
- blaxel/sandbox/client/__init__.py +8 -0
- blaxel/sandbox/client/api/__init__.py +1 -0
- blaxel/sandbox/client/api/filesystem/__init__.py +0 -0
- blaxel/sandbox/client/api/filesystem/delete_filesystem_path.py +184 -0
- blaxel/sandbox/client/api/filesystem/get_filesystem_path.py +184 -0
- blaxel/sandbox/client/api/filesystem/put_filesystem_path.py +189 -0
- blaxel/sandbox/client/api/network/__init__.py +0 -0
- blaxel/sandbox/client/api/network/delete_network_process_pid_monitor.py +169 -0
- blaxel/sandbox/client/api/network/get_network_process_pid_ports.py +169 -0
- blaxel/sandbox/client/api/network/post_network_process_pid_monitor.py +195 -0
- blaxel/sandbox/client/api/process/__init__.py +0 -0
- blaxel/sandbox/client/api/process/delete_process_identifier.py +163 -0
- blaxel/sandbox/client/api/process/delete_process_identifier_kill.py +189 -0
- blaxel/sandbox/client/api/process/get_process.py +135 -0
- blaxel/sandbox/client/api/process/get_process_identifier.py +159 -0
- blaxel/sandbox/client/api/process/get_process_identifier_logs.py +188 -0
- blaxel/sandbox/client/api/process/get_process_identifier_logs_stream.py +190 -0
- blaxel/sandbox/client/api/process/post_process.py +176 -0
- blaxel/sandbox/client/client.py +162 -0
- blaxel/sandbox/client/errors.py +16 -0
- blaxel/sandbox/client/models/__init__.py +41 -0
- blaxel/sandbox/client/models/delete_network_process_pid_monitor_response_200.py +45 -0
- blaxel/sandbox/client/models/directory.py +112 -0
- blaxel/sandbox/client/models/error_response.py +60 -0
- blaxel/sandbox/client/models/file.py +105 -0
- blaxel/sandbox/client/models/file_request.py +78 -0
- blaxel/sandbox/client/models/file_with_content.py +114 -0
- blaxel/sandbox/client/models/get_network_process_pid_ports_response_200.py +45 -0
- blaxel/sandbox/client/models/get_process_identifier_logs_response_200.py +45 -0
- blaxel/sandbox/client/models/get_process_identifier_logs_stream_response_200.py +45 -0
- blaxel/sandbox/client/models/port_monitor_request.py +60 -0
- blaxel/sandbox/client/models/post_network_process_pid_monitor_response_200.py +45 -0
- blaxel/sandbox/client/models/process_kill_request.py +60 -0
- blaxel/sandbox/client/models/process_request.py +118 -0
- blaxel/sandbox/client/models/process_response.py +123 -0
- blaxel/sandbox/client/models/subdirectory.py +60 -0
- blaxel/sandbox/client/models/success_response.py +69 -0
- blaxel/sandbox/client/py.typed +1 -0
- blaxel/sandbox/client/types.py +46 -0
- blaxel/sandbox/filesystem.py +104 -0
- blaxel/sandbox/process.py +57 -0
- blaxel/sandbox/sandbox.py +92 -0
- blaxel/tools/__init__.py +62 -21
- {blaxel-0.1.9rc36.dist-info → blaxel-0.1.10.dist-info}/METADATA +1 -1
- {blaxel-0.1.9rc36.dist-info → blaxel-0.1.10.dist-info}/RECORD +82 -14
- blaxel/client/models/sandboxes.py +0 -129
- {blaxel-0.1.9rc36.dist-info → blaxel-0.1.10.dist-info}/WHEEL +0 -0
- {blaxel-0.1.9rc36.dist-info → blaxel-0.1.10.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,162 @@
|
|
1
|
+
import ssl
|
2
|
+
from typing import Any, Optional, Union
|
3
|
+
|
4
|
+
import httpx
|
5
|
+
from attrs import define, evolve, field
|
6
|
+
|
7
|
+
|
8
|
+
@define
|
9
|
+
class Client:
|
10
|
+
"""A Client which has been authenticated for use on secured endpoints
|
11
|
+
|
12
|
+
The following are accepted as keyword arguments and will be used to construct httpx Clients internally:
|
13
|
+
|
14
|
+
``base_url``: The base URL for the API, all requests are made to a relative path to this URL
|
15
|
+
|
16
|
+
``cookies``: A dictionary of cookies to be sent with every request
|
17
|
+
|
18
|
+
``headers``: A dictionary of headers to be sent with every request
|
19
|
+
|
20
|
+
``auth``: An implementation of httpx.Auth to use for authentication
|
21
|
+
|
22
|
+
``timeout``: The maximum amount of a time a request can take. API functions will raise
|
23
|
+
httpx.TimeoutException if this is exceeded.
|
24
|
+
|
25
|
+
``verify_ssl``: Whether or not to verify the SSL certificate of the API server. This should be True in production,
|
26
|
+
but can be set to False for testing purposes.
|
27
|
+
|
28
|
+
``follow_redirects``: Whether or not to follow redirects. Default value is False.
|
29
|
+
|
30
|
+
``httpx_args``: A dictionary of additional arguments to be passed to the ``httpx.Client`` and ``httpx.AsyncClient`` constructor.
|
31
|
+
|
32
|
+
|
33
|
+
Attributes:
|
34
|
+
raise_on_unexpected_status: Whether or not to raise an errors.UnexpectedStatus if the API returns a
|
35
|
+
status code that was not documented in the source OpenAPI document. Can also be provided as a keyword
|
36
|
+
argument to the constructor.
|
37
|
+
auth: Auth to use for authentication
|
38
|
+
"""
|
39
|
+
|
40
|
+
raise_on_unexpected_status: bool = field(default=True, kw_only=True)
|
41
|
+
_base_url: str = field(alias="base_url", default="")
|
42
|
+
_cookies: dict[str, str] = field(factory=dict, kw_only=True, alias="cookies")
|
43
|
+
_headers: dict[str, str] = field(factory=dict, kw_only=True, alias="headers")
|
44
|
+
_auth: httpx.Auth = field(default=None, alias="auth")
|
45
|
+
_timeout: Optional[httpx.Timeout] = field(default=None, kw_only=True, alias="timeout")
|
46
|
+
_verify_ssl: Union[str, bool, ssl.SSLContext] = field(default=True, kw_only=True, alias="verify_ssl")
|
47
|
+
_follow_redirects: bool = field(default=False, kw_only=True, alias="follow_redirects")
|
48
|
+
_httpx_args: dict[str, Any] = field(factory=dict, kw_only=True, alias="httpx_args")
|
49
|
+
_client: Optional[httpx.Client] = field(default=None, init=False)
|
50
|
+
_async_client: Optional[httpx.AsyncClient] = field(default=None, init=False)
|
51
|
+
|
52
|
+
def with_base_url(self, base_url: str) -> "Client":
|
53
|
+
"""Get a new client matching this one with a new base URL"""
|
54
|
+
self._base_url = base_url
|
55
|
+
if self._client is not None:
|
56
|
+
self._client.base_url = base_url
|
57
|
+
if self._async_client is not None:
|
58
|
+
self._async_client.base_url = base_url
|
59
|
+
return evolve(self, base_url=base_url)
|
60
|
+
|
61
|
+
def with_headers(self, headers: dict[str, str]) -> "Client":
|
62
|
+
"""Get a new client matching this one with additional headers"""
|
63
|
+
self._headers = headers
|
64
|
+
if self._client is not None:
|
65
|
+
self._client.headers.update(headers)
|
66
|
+
if self._async_client is not None:
|
67
|
+
self._async_client.headers.update(headers)
|
68
|
+
return evolve(self, headers={**self._headers, **headers})
|
69
|
+
|
70
|
+
def with_cookies(self, cookies: dict[str, str]) -> "Client":
|
71
|
+
"""Get a new client matching this one with additional cookies"""
|
72
|
+
self._cookies = cookies
|
73
|
+
if self._client is not None:
|
74
|
+
self._client.cookies.update(cookies)
|
75
|
+
if self._async_client is not None:
|
76
|
+
self._async_client.cookies.update(cookies)
|
77
|
+
return evolve(self, cookies={**self._cookies, **cookies})
|
78
|
+
|
79
|
+
def with_timeout(self, timeout: httpx.Timeout) -> "Client":
|
80
|
+
"""Get a new client matching this one with a new timeout (in seconds)"""
|
81
|
+
self._timeout = timeout
|
82
|
+
if self._client is not None:
|
83
|
+
self._client.timeout = timeout
|
84
|
+
if self._async_client is not None:
|
85
|
+
self._async_client.timeout = timeout
|
86
|
+
return evolve(self, timeout=timeout)
|
87
|
+
|
88
|
+
def with_auth(self, auth: httpx.Auth) -> "Client":
|
89
|
+
"""Get a new client matching this one with a new provider"""
|
90
|
+
self._auth = auth
|
91
|
+
if self._client is not None:
|
92
|
+
self._client.auth = auth
|
93
|
+
if self._async_client is not None:
|
94
|
+
self._async_client.auth = auth
|
95
|
+
return evolve(self, auth=auth)
|
96
|
+
|
97
|
+
def set_httpx_client(self, client: httpx.Client) -> "Client":
|
98
|
+
"""Manually set the underlying httpx.Client
|
99
|
+
|
100
|
+
**NOTE**: This will override any other settings on the client, including cookies, headers, and timeout.
|
101
|
+
"""
|
102
|
+
self._client = client
|
103
|
+
return self
|
104
|
+
|
105
|
+
def get_httpx_client(self) -> httpx.Client:
|
106
|
+
"""Get the underlying httpx.Client, constructing a new one if not previously set"""
|
107
|
+
if self._client is None:
|
108
|
+
self._client = httpx.Client(
|
109
|
+
base_url=self._base_url,
|
110
|
+
cookies=self._cookies,
|
111
|
+
headers=self._headers,
|
112
|
+
timeout=self._timeout,
|
113
|
+
verify=self._verify_ssl,
|
114
|
+
follow_redirects=self._follow_redirects,
|
115
|
+
auth=self._auth,
|
116
|
+
**self._httpx_args,
|
117
|
+
)
|
118
|
+
return self._client
|
119
|
+
|
120
|
+
def __enter__(self) -> "Client":
|
121
|
+
"""Enter a context manager for self.client—you cannot enter twice (see httpx docs)"""
|
122
|
+
self.get_httpx_client().__enter__()
|
123
|
+
return self
|
124
|
+
|
125
|
+
def __exit__(self, *args: Any, **kwargs: Any) -> None:
|
126
|
+
"""Exit a context manager for internal httpx.Client (see httpx docs)"""
|
127
|
+
self.get_httpx_client().__exit__(*args, **kwargs)
|
128
|
+
|
129
|
+
def set_async_httpx_client(self, async_client: httpx.AsyncClient) -> "Client":
|
130
|
+
"""Manually the underlying httpx.AsyncClient
|
131
|
+
|
132
|
+
**NOTE**: This will override any other settings on the client, including cookies, headers, and timeout.
|
133
|
+
"""
|
134
|
+
self._async_client = async_client
|
135
|
+
return self
|
136
|
+
|
137
|
+
def get_async_httpx_client(self) -> httpx.AsyncClient:
|
138
|
+
"""Get the underlying httpx.AsyncClient, constructing a new one if not previously set"""
|
139
|
+
if self._async_client is None:
|
140
|
+
self._async_client = httpx.AsyncClient(
|
141
|
+
base_url=self._base_url,
|
142
|
+
cookies=self._cookies,
|
143
|
+
headers=self._headers,
|
144
|
+
timeout=self._timeout,
|
145
|
+
verify=self._verify_ssl,
|
146
|
+
follow_redirects=self._follow_redirects,
|
147
|
+
auth=self._auth,
|
148
|
+
**self._httpx_args,
|
149
|
+
)
|
150
|
+
return self._async_client
|
151
|
+
|
152
|
+
async def __aenter__(self) -> "Client":
|
153
|
+
"""Enter a context manager for underlying httpx.AsyncClient—you cannot enter twice (see httpx docs)"""
|
154
|
+
await self.get_async_httpx_client().__aenter__()
|
155
|
+
return self
|
156
|
+
|
157
|
+
async def __aexit__(self, *args: Any, **kwargs: Any) -> None:
|
158
|
+
"""Exit a context manager for underlying httpx.AsyncClient (see httpx docs)"""
|
159
|
+
await self.get_async_httpx_client().__aexit__(*args, **kwargs)
|
160
|
+
|
161
|
+
|
162
|
+
client = Client()
|
@@ -0,0 +1,16 @@
|
|
1
|
+
"""Contains shared errors types that can be raised from API functions"""
|
2
|
+
|
3
|
+
|
4
|
+
class UnexpectedStatus(Exception):
|
5
|
+
"""Raised by api functions when the response status an undocumented status and Client.raise_on_unexpected_status is True"""
|
6
|
+
|
7
|
+
def __init__(self, status_code: int, content: bytes):
|
8
|
+
self.status_code = status_code
|
9
|
+
self.content = content
|
10
|
+
|
11
|
+
super().__init__(
|
12
|
+
f"Unexpected status code: {status_code}\n\nResponse content:\n{content.decode(errors='ignore')}"
|
13
|
+
)
|
14
|
+
|
15
|
+
|
16
|
+
__all__ = ["UnexpectedStatus"]
|
@@ -0,0 +1,41 @@
|
|
1
|
+
"""Contains all the data models used in inputs/outputs"""
|
2
|
+
|
3
|
+
from .delete_network_process_pid_monitor_response_200 import (
|
4
|
+
DeleteNetworkProcessPidMonitorResponse200,
|
5
|
+
)
|
6
|
+
from .directory import Directory
|
7
|
+
from .error_response import ErrorResponse
|
8
|
+
from .file import File
|
9
|
+
from .file_request import FileRequest
|
10
|
+
from .file_with_content import FileWithContent
|
11
|
+
from .get_network_process_pid_ports_response_200 import GetNetworkProcessPidPortsResponse200
|
12
|
+
from .get_process_identifier_logs_response_200 import GetProcessIdentifierLogsResponse200
|
13
|
+
from .get_process_identifier_logs_stream_response_200 import (
|
14
|
+
GetProcessIdentifierLogsStreamResponse200,
|
15
|
+
)
|
16
|
+
from .port_monitor_request import PortMonitorRequest
|
17
|
+
from .post_network_process_pid_monitor_response_200 import PostNetworkProcessPidMonitorResponse200
|
18
|
+
from .process_kill_request import ProcessKillRequest
|
19
|
+
from .process_request import ProcessRequest
|
20
|
+
from .process_response import ProcessResponse
|
21
|
+
from .subdirectory import Subdirectory
|
22
|
+
from .success_response import SuccessResponse
|
23
|
+
|
24
|
+
__all__ = (
|
25
|
+
"DeleteNetworkProcessPidMonitorResponse200",
|
26
|
+
"Directory",
|
27
|
+
"ErrorResponse",
|
28
|
+
"File",
|
29
|
+
"FileRequest",
|
30
|
+
"FileWithContent",
|
31
|
+
"GetNetworkProcessPidPortsResponse200",
|
32
|
+
"GetProcessIdentifierLogsResponse200",
|
33
|
+
"GetProcessIdentifierLogsStreamResponse200",
|
34
|
+
"PortMonitorRequest",
|
35
|
+
"PostNetworkProcessPidMonitorResponse200",
|
36
|
+
"ProcessKillRequest",
|
37
|
+
"ProcessRequest",
|
38
|
+
"ProcessResponse",
|
39
|
+
"Subdirectory",
|
40
|
+
"SuccessResponse",
|
41
|
+
)
|
@@ -0,0 +1,45 @@
|
|
1
|
+
from typing import Any, TypeVar
|
2
|
+
|
3
|
+
from attrs import define as _attrs_define
|
4
|
+
from attrs import field as _attrs_field
|
5
|
+
|
6
|
+
T = TypeVar("T", bound="DeleteNetworkProcessPidMonitorResponse200")
|
7
|
+
|
8
|
+
|
9
|
+
@_attrs_define
|
10
|
+
class DeleteNetworkProcessPidMonitorResponse200:
|
11
|
+
""" """
|
12
|
+
|
13
|
+
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
14
|
+
|
15
|
+
def to_dict(self) -> dict[str, Any]:
|
16
|
+
field_dict: dict[str, Any] = {}
|
17
|
+
field_dict.update(self.additional_properties)
|
18
|
+
|
19
|
+
return field_dict
|
20
|
+
|
21
|
+
@classmethod
|
22
|
+
def from_dict(cls: type[T], src_dict: dict[str, Any]) -> T:
|
23
|
+
if not src_dict:
|
24
|
+
return None
|
25
|
+
d = src_dict.copy()
|
26
|
+
delete_network_process_pid_monitor_response_200 = cls()
|
27
|
+
|
28
|
+
delete_network_process_pid_monitor_response_200.additional_properties = d
|
29
|
+
return delete_network_process_pid_monitor_response_200
|
30
|
+
|
31
|
+
@property
|
32
|
+
def additional_keys(self) -> list[str]:
|
33
|
+
return list(self.additional_properties.keys())
|
34
|
+
|
35
|
+
def __getitem__(self, key: str) -> Any:
|
36
|
+
return self.additional_properties[key]
|
37
|
+
|
38
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
39
|
+
self.additional_properties[key] = value
|
40
|
+
|
41
|
+
def __delitem__(self, key: str) -> None:
|
42
|
+
del self.additional_properties[key]
|
43
|
+
|
44
|
+
def __contains__(self, key: str) -> bool:
|
45
|
+
return key in self.additional_properties
|
@@ -0,0 +1,112 @@
|
|
1
|
+
from typing import TYPE_CHECKING, Any, TypeVar, Union
|
2
|
+
|
3
|
+
from attrs import define as _attrs_define
|
4
|
+
from attrs import field as _attrs_field
|
5
|
+
|
6
|
+
from ..types import UNSET, Unset
|
7
|
+
|
8
|
+
if TYPE_CHECKING:
|
9
|
+
from ..models.file import File
|
10
|
+
from ..models.subdirectory import Subdirectory
|
11
|
+
|
12
|
+
|
13
|
+
T = TypeVar("T", bound="Directory")
|
14
|
+
|
15
|
+
|
16
|
+
@_attrs_define
|
17
|
+
class Directory:
|
18
|
+
"""
|
19
|
+
Attributes:
|
20
|
+
files (Union[Unset, list['File']]):
|
21
|
+
path (Union[Unset, str]):
|
22
|
+
subdirectories (Union[Unset, list['Subdirectory']]): @name Subdirectories
|
23
|
+
"""
|
24
|
+
|
25
|
+
files: Union[Unset, list["File"]] = UNSET
|
26
|
+
path: Union[Unset, str] = UNSET
|
27
|
+
subdirectories: Union[Unset, list["Subdirectory"]] = UNSET
|
28
|
+
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
29
|
+
|
30
|
+
def to_dict(self) -> dict[str, Any]:
|
31
|
+
files: Union[Unset, list[dict[str, Any]]] = UNSET
|
32
|
+
if not isinstance(self.files, Unset):
|
33
|
+
files = []
|
34
|
+
for files_item_data in self.files:
|
35
|
+
if type(files_item_data) == dict:
|
36
|
+
files_item = files_item_data
|
37
|
+
else:
|
38
|
+
files_item = files_item_data.to_dict()
|
39
|
+
files.append(files_item)
|
40
|
+
|
41
|
+
path = self.path
|
42
|
+
|
43
|
+
subdirectories: Union[Unset, list[dict[str, Any]]] = UNSET
|
44
|
+
if not isinstance(self.subdirectories, Unset):
|
45
|
+
subdirectories = []
|
46
|
+
for subdirectories_item_data in self.subdirectories:
|
47
|
+
if type(subdirectories_item_data) == dict:
|
48
|
+
subdirectories_item = subdirectories_item_data
|
49
|
+
else:
|
50
|
+
subdirectories_item = subdirectories_item_data.to_dict()
|
51
|
+
subdirectories.append(subdirectories_item)
|
52
|
+
|
53
|
+
field_dict: dict[str, Any] = {}
|
54
|
+
field_dict.update(self.additional_properties)
|
55
|
+
field_dict.update({})
|
56
|
+
if files is not UNSET:
|
57
|
+
field_dict["files"] = files
|
58
|
+
if path is not UNSET:
|
59
|
+
field_dict["path"] = path
|
60
|
+
if subdirectories is not UNSET:
|
61
|
+
field_dict["subdirectories"] = subdirectories
|
62
|
+
|
63
|
+
return field_dict
|
64
|
+
|
65
|
+
@classmethod
|
66
|
+
def from_dict(cls: type[T], src_dict: dict[str, Any]) -> T:
|
67
|
+
from ..models.file import File
|
68
|
+
from ..models.subdirectory import Subdirectory
|
69
|
+
|
70
|
+
if not src_dict:
|
71
|
+
return None
|
72
|
+
d = src_dict.copy()
|
73
|
+
files = []
|
74
|
+
_files = d.pop("files", UNSET)
|
75
|
+
for files_item_data in _files or []:
|
76
|
+
files_item = File.from_dict(files_item_data)
|
77
|
+
|
78
|
+
files.append(files_item)
|
79
|
+
|
80
|
+
path = d.pop("path", UNSET)
|
81
|
+
|
82
|
+
subdirectories = []
|
83
|
+
_subdirectories = d.pop("subdirectories", UNSET)
|
84
|
+
for subdirectories_item_data in _subdirectories or []:
|
85
|
+
subdirectories_item = Subdirectory.from_dict(subdirectories_item_data)
|
86
|
+
|
87
|
+
subdirectories.append(subdirectories_item)
|
88
|
+
|
89
|
+
directory = cls(
|
90
|
+
files=files,
|
91
|
+
path=path,
|
92
|
+
subdirectories=subdirectories,
|
93
|
+
)
|
94
|
+
|
95
|
+
directory.additional_properties = d
|
96
|
+
return directory
|
97
|
+
|
98
|
+
@property
|
99
|
+
def additional_keys(self) -> list[str]:
|
100
|
+
return list(self.additional_properties.keys())
|
101
|
+
|
102
|
+
def __getitem__(self, key: str) -> Any:
|
103
|
+
return self.additional_properties[key]
|
104
|
+
|
105
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
106
|
+
self.additional_properties[key] = value
|
107
|
+
|
108
|
+
def __delitem__(self, key: str) -> None:
|
109
|
+
del self.additional_properties[key]
|
110
|
+
|
111
|
+
def __contains__(self, key: str) -> bool:
|
112
|
+
return key in self.additional_properties
|
@@ -0,0 +1,60 @@
|
|
1
|
+
from typing import Any, TypeVar, Union
|
2
|
+
|
3
|
+
from attrs import define as _attrs_define
|
4
|
+
from attrs import field as _attrs_field
|
5
|
+
|
6
|
+
from ..types import UNSET, Unset
|
7
|
+
|
8
|
+
T = TypeVar("T", bound="ErrorResponse")
|
9
|
+
|
10
|
+
|
11
|
+
@_attrs_define
|
12
|
+
class ErrorResponse:
|
13
|
+
"""
|
14
|
+
Attributes:
|
15
|
+
error (Union[Unset, str]): Example: Error message.
|
16
|
+
"""
|
17
|
+
|
18
|
+
error: Union[Unset, str] = UNSET
|
19
|
+
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
20
|
+
|
21
|
+
def to_dict(self) -> dict[str, Any]:
|
22
|
+
error = self.error
|
23
|
+
|
24
|
+
field_dict: dict[str, Any] = {}
|
25
|
+
field_dict.update(self.additional_properties)
|
26
|
+
field_dict.update({})
|
27
|
+
if error is not UNSET:
|
28
|
+
field_dict["error"] = error
|
29
|
+
|
30
|
+
return field_dict
|
31
|
+
|
32
|
+
@classmethod
|
33
|
+
def from_dict(cls: type[T], src_dict: dict[str, Any]) -> T:
|
34
|
+
if not src_dict:
|
35
|
+
return None
|
36
|
+
d = src_dict.copy()
|
37
|
+
error = d.pop("error", UNSET)
|
38
|
+
|
39
|
+
error_response = cls(
|
40
|
+
error=error,
|
41
|
+
)
|
42
|
+
|
43
|
+
error_response.additional_properties = d
|
44
|
+
return error_response
|
45
|
+
|
46
|
+
@property
|
47
|
+
def additional_keys(self) -> list[str]:
|
48
|
+
return list(self.additional_properties.keys())
|
49
|
+
|
50
|
+
def __getitem__(self, key: str) -> Any:
|
51
|
+
return self.additional_properties[key]
|
52
|
+
|
53
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
54
|
+
self.additional_properties[key] = value
|
55
|
+
|
56
|
+
def __delitem__(self, key: str) -> None:
|
57
|
+
del self.additional_properties[key]
|
58
|
+
|
59
|
+
def __contains__(self, key: str) -> bool:
|
60
|
+
return key in self.additional_properties
|
@@ -0,0 +1,105 @@
|
|
1
|
+
from typing import Any, TypeVar, Union
|
2
|
+
|
3
|
+
from attrs import define as _attrs_define
|
4
|
+
from attrs import field as _attrs_field
|
5
|
+
|
6
|
+
from ..types import UNSET, Unset
|
7
|
+
|
8
|
+
T = TypeVar("T", bound="File")
|
9
|
+
|
10
|
+
|
11
|
+
@_attrs_define
|
12
|
+
class File:
|
13
|
+
"""
|
14
|
+
Attributes:
|
15
|
+
group (Union[Unset, str]):
|
16
|
+
last_modified (Union[Unset, str]):
|
17
|
+
owner (Union[Unset, str]):
|
18
|
+
path (Union[Unset, str]):
|
19
|
+
permissions (Union[Unset, str]):
|
20
|
+
size (Union[Unset, int]):
|
21
|
+
"""
|
22
|
+
|
23
|
+
group: Union[Unset, str] = UNSET
|
24
|
+
last_modified: Union[Unset, str] = UNSET
|
25
|
+
owner: Union[Unset, str] = UNSET
|
26
|
+
path: Union[Unset, str] = UNSET
|
27
|
+
permissions: Union[Unset, str] = UNSET
|
28
|
+
size: Union[Unset, int] = UNSET
|
29
|
+
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
30
|
+
|
31
|
+
def to_dict(self) -> dict[str, Any]:
|
32
|
+
group = self.group
|
33
|
+
|
34
|
+
last_modified = self.last_modified
|
35
|
+
|
36
|
+
owner = self.owner
|
37
|
+
|
38
|
+
path = self.path
|
39
|
+
|
40
|
+
permissions = self.permissions
|
41
|
+
|
42
|
+
size = self.size
|
43
|
+
|
44
|
+
field_dict: dict[str, Any] = {}
|
45
|
+
field_dict.update(self.additional_properties)
|
46
|
+
field_dict.update({})
|
47
|
+
if group is not UNSET:
|
48
|
+
field_dict["group"] = group
|
49
|
+
if last_modified is not UNSET:
|
50
|
+
field_dict["lastModified"] = last_modified
|
51
|
+
if owner is not UNSET:
|
52
|
+
field_dict["owner"] = owner
|
53
|
+
if path is not UNSET:
|
54
|
+
field_dict["path"] = path
|
55
|
+
if permissions is not UNSET:
|
56
|
+
field_dict["permissions"] = permissions
|
57
|
+
if size is not UNSET:
|
58
|
+
field_dict["size"] = size
|
59
|
+
|
60
|
+
return field_dict
|
61
|
+
|
62
|
+
@classmethod
|
63
|
+
def from_dict(cls: type[T], src_dict: dict[str, Any]) -> T:
|
64
|
+
if not src_dict:
|
65
|
+
return None
|
66
|
+
d = src_dict.copy()
|
67
|
+
group = d.pop("group", UNSET)
|
68
|
+
|
69
|
+
last_modified = d.pop("lastModified", UNSET)
|
70
|
+
|
71
|
+
owner = d.pop("owner", UNSET)
|
72
|
+
|
73
|
+
path = d.pop("path", UNSET)
|
74
|
+
|
75
|
+
permissions = d.pop("permissions", UNSET)
|
76
|
+
|
77
|
+
size = d.pop("size", UNSET)
|
78
|
+
|
79
|
+
file = cls(
|
80
|
+
group=group,
|
81
|
+
last_modified=last_modified,
|
82
|
+
owner=owner,
|
83
|
+
path=path,
|
84
|
+
permissions=permissions,
|
85
|
+
size=size,
|
86
|
+
)
|
87
|
+
|
88
|
+
file.additional_properties = d
|
89
|
+
return file
|
90
|
+
|
91
|
+
@property
|
92
|
+
def additional_keys(self) -> list[str]:
|
93
|
+
return list(self.additional_properties.keys())
|
94
|
+
|
95
|
+
def __getitem__(self, key: str) -> Any:
|
96
|
+
return self.additional_properties[key]
|
97
|
+
|
98
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
99
|
+
self.additional_properties[key] = value
|
100
|
+
|
101
|
+
def __delitem__(self, key: str) -> None:
|
102
|
+
del self.additional_properties[key]
|
103
|
+
|
104
|
+
def __contains__(self, key: str) -> bool:
|
105
|
+
return key in self.additional_properties
|
@@ -0,0 +1,78 @@
|
|
1
|
+
from typing import Any, TypeVar, Union
|
2
|
+
|
3
|
+
from attrs import define as _attrs_define
|
4
|
+
from attrs import field as _attrs_field
|
5
|
+
|
6
|
+
from ..types import UNSET, Unset
|
7
|
+
|
8
|
+
T = TypeVar("T", bound="FileRequest")
|
9
|
+
|
10
|
+
|
11
|
+
@_attrs_define
|
12
|
+
class FileRequest:
|
13
|
+
"""
|
14
|
+
Attributes:
|
15
|
+
content (Union[Unset, str]): Example: file contents here.
|
16
|
+
is_directory (Union[Unset, bool]):
|
17
|
+
permissions (Union[Unset, str]): Example: 0644.
|
18
|
+
"""
|
19
|
+
|
20
|
+
content: Union[Unset, str] = UNSET
|
21
|
+
is_directory: Union[Unset, bool] = UNSET
|
22
|
+
permissions: Union[Unset, str] = UNSET
|
23
|
+
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
24
|
+
|
25
|
+
def to_dict(self) -> dict[str, Any]:
|
26
|
+
content = self.content
|
27
|
+
|
28
|
+
is_directory = self.is_directory
|
29
|
+
|
30
|
+
permissions = self.permissions
|
31
|
+
|
32
|
+
field_dict: dict[str, Any] = {}
|
33
|
+
field_dict.update(self.additional_properties)
|
34
|
+
field_dict.update({})
|
35
|
+
if content is not UNSET:
|
36
|
+
field_dict["content"] = content
|
37
|
+
if is_directory is not UNSET:
|
38
|
+
field_dict["isDirectory"] = is_directory
|
39
|
+
if permissions is not UNSET:
|
40
|
+
field_dict["permissions"] = permissions
|
41
|
+
|
42
|
+
return field_dict
|
43
|
+
|
44
|
+
@classmethod
|
45
|
+
def from_dict(cls: type[T], src_dict: dict[str, Any]) -> T:
|
46
|
+
if not src_dict:
|
47
|
+
return None
|
48
|
+
d = src_dict.copy()
|
49
|
+
content = d.pop("content", UNSET)
|
50
|
+
|
51
|
+
is_directory = d.pop("isDirectory", UNSET)
|
52
|
+
|
53
|
+
permissions = d.pop("permissions", UNSET)
|
54
|
+
|
55
|
+
file_request = cls(
|
56
|
+
content=content,
|
57
|
+
is_directory=is_directory,
|
58
|
+
permissions=permissions,
|
59
|
+
)
|
60
|
+
|
61
|
+
file_request.additional_properties = d
|
62
|
+
return file_request
|
63
|
+
|
64
|
+
@property
|
65
|
+
def additional_keys(self) -> list[str]:
|
66
|
+
return list(self.additional_properties.keys())
|
67
|
+
|
68
|
+
def __getitem__(self, key: str) -> Any:
|
69
|
+
return self.additional_properties[key]
|
70
|
+
|
71
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
72
|
+
self.additional_properties[key] = value
|
73
|
+
|
74
|
+
def __delitem__(self, key: str) -> None:
|
75
|
+
del self.additional_properties[key]
|
76
|
+
|
77
|
+
def __contains__(self, key: str) -> bool:
|
78
|
+
return key in self.additional_properties
|