windmill-api 1.559.0__py3-none-any.whl → 1.561.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 windmill-api might be problematic. Click here for more details.
- windmill_api/api/helpers/check_s3_folder_exists.py +172 -0
- windmill_api/api/helpers/git_repo_viewer_file_upload.py +262 -0
- windmill_api/api/helpers/list_git_repo_files.py +221 -0
- windmill_api/api/helpers/load_git_repo_file_metadata.py +187 -0
- windmill_api/api/helpers/load_git_repo_file_preview.py +277 -0
- windmill_api/api/resource/get_git_commit_hash.py +166 -0
- windmill_api/models/check_s3_folder_exists_response_200.py +65 -0
- windmill_api/models/get_git_commit_hash_response_200.py +58 -0
- windmill_api/models/git_repo_viewer_file_upload_response_200.py +58 -0
- windmill_api/models/list_git_repo_files_response_200.py +98 -0
- windmill_api/models/list_git_repo_files_response_200_windmill_large_files_item.py +58 -0
- windmill_api/models/load_git_repo_file_metadata_response_200.py +108 -0
- windmill_api/models/load_git_repo_file_preview_response_200.py +78 -0
- windmill_api/models/load_git_repo_file_preview_response_200_content_type.py +11 -0
- {windmill_api-1.559.0.dist-info → windmill_api-1.561.0.dist-info}/METADATA +1 -1
- {windmill_api-1.559.0.dist-info → windmill_api-1.561.0.dist-info}/RECORD +18 -4
- {windmill_api-1.559.0.dist-info → windmill_api-1.561.0.dist-info}/LICENSE +0 -0
- {windmill_api-1.559.0.dist-info → windmill_api-1.561.0.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
from typing import Any, Dict, List, Type, TypeVar
|
|
2
|
+
|
|
3
|
+
from attrs import define as _attrs_define
|
|
4
|
+
from attrs import field as _attrs_field
|
|
5
|
+
|
|
6
|
+
T = TypeVar("T", bound="GetGitCommitHashResponse200")
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
@_attrs_define
|
|
10
|
+
class GetGitCommitHashResponse200:
|
|
11
|
+
"""
|
|
12
|
+
Attributes:
|
|
13
|
+
commit_hash (str): Latest commit hash from git ls-remote
|
|
14
|
+
"""
|
|
15
|
+
|
|
16
|
+
commit_hash: str
|
|
17
|
+
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
18
|
+
|
|
19
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
20
|
+
commit_hash = self.commit_hash
|
|
21
|
+
|
|
22
|
+
field_dict: Dict[str, Any] = {}
|
|
23
|
+
field_dict.update(self.additional_properties)
|
|
24
|
+
field_dict.update(
|
|
25
|
+
{
|
|
26
|
+
"commit_hash": commit_hash,
|
|
27
|
+
}
|
|
28
|
+
)
|
|
29
|
+
|
|
30
|
+
return field_dict
|
|
31
|
+
|
|
32
|
+
@classmethod
|
|
33
|
+
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
34
|
+
d = src_dict.copy()
|
|
35
|
+
commit_hash = d.pop("commit_hash")
|
|
36
|
+
|
|
37
|
+
get_git_commit_hash_response_200 = cls(
|
|
38
|
+
commit_hash=commit_hash,
|
|
39
|
+
)
|
|
40
|
+
|
|
41
|
+
get_git_commit_hash_response_200.additional_properties = d
|
|
42
|
+
return get_git_commit_hash_response_200
|
|
43
|
+
|
|
44
|
+
@property
|
|
45
|
+
def additional_keys(self) -> List[str]:
|
|
46
|
+
return list(self.additional_properties.keys())
|
|
47
|
+
|
|
48
|
+
def __getitem__(self, key: str) -> Any:
|
|
49
|
+
return self.additional_properties[key]
|
|
50
|
+
|
|
51
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
52
|
+
self.additional_properties[key] = value
|
|
53
|
+
|
|
54
|
+
def __delitem__(self, key: str) -> None:
|
|
55
|
+
del self.additional_properties[key]
|
|
56
|
+
|
|
57
|
+
def __contains__(self, key: str) -> bool:
|
|
58
|
+
return key in self.additional_properties
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
from typing import Any, Dict, List, Type, TypeVar
|
|
2
|
+
|
|
3
|
+
from attrs import define as _attrs_define
|
|
4
|
+
from attrs import field as _attrs_field
|
|
5
|
+
|
|
6
|
+
T = TypeVar("T", bound="GitRepoViewerFileUploadResponse200")
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
@_attrs_define
|
|
10
|
+
class GitRepoViewerFileUploadResponse200:
|
|
11
|
+
"""
|
|
12
|
+
Attributes:
|
|
13
|
+
file_key (str):
|
|
14
|
+
"""
|
|
15
|
+
|
|
16
|
+
file_key: str
|
|
17
|
+
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
18
|
+
|
|
19
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
20
|
+
file_key = self.file_key
|
|
21
|
+
|
|
22
|
+
field_dict: Dict[str, Any] = {}
|
|
23
|
+
field_dict.update(self.additional_properties)
|
|
24
|
+
field_dict.update(
|
|
25
|
+
{
|
|
26
|
+
"file_key": file_key,
|
|
27
|
+
}
|
|
28
|
+
)
|
|
29
|
+
|
|
30
|
+
return field_dict
|
|
31
|
+
|
|
32
|
+
@classmethod
|
|
33
|
+
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
34
|
+
d = src_dict.copy()
|
|
35
|
+
file_key = d.pop("file_key")
|
|
36
|
+
|
|
37
|
+
git_repo_viewer_file_upload_response_200 = cls(
|
|
38
|
+
file_key=file_key,
|
|
39
|
+
)
|
|
40
|
+
|
|
41
|
+
git_repo_viewer_file_upload_response_200.additional_properties = d
|
|
42
|
+
return git_repo_viewer_file_upload_response_200
|
|
43
|
+
|
|
44
|
+
@property
|
|
45
|
+
def additional_keys(self) -> List[str]:
|
|
46
|
+
return list(self.additional_properties.keys())
|
|
47
|
+
|
|
48
|
+
def __getitem__(self, key: str) -> Any:
|
|
49
|
+
return self.additional_properties[key]
|
|
50
|
+
|
|
51
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
52
|
+
self.additional_properties[key] = value
|
|
53
|
+
|
|
54
|
+
def __delitem__(self, key: str) -> None:
|
|
55
|
+
del self.additional_properties[key]
|
|
56
|
+
|
|
57
|
+
def __contains__(self, key: str) -> bool:
|
|
58
|
+
return key in self.additional_properties
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
from typing import TYPE_CHECKING, Any, Dict, List, Type, 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.list_git_repo_files_response_200_windmill_large_files_item import (
|
|
10
|
+
ListGitRepoFilesResponse200WindmillLargeFilesItem,
|
|
11
|
+
)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
T = TypeVar("T", bound="ListGitRepoFilesResponse200")
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
@_attrs_define
|
|
18
|
+
class ListGitRepoFilesResponse200:
|
|
19
|
+
"""
|
|
20
|
+
Attributes:
|
|
21
|
+
windmill_large_files (List['ListGitRepoFilesResponse200WindmillLargeFilesItem']):
|
|
22
|
+
next_marker (Union[Unset, str]):
|
|
23
|
+
restricted_access (Union[Unset, bool]):
|
|
24
|
+
"""
|
|
25
|
+
|
|
26
|
+
windmill_large_files: List["ListGitRepoFilesResponse200WindmillLargeFilesItem"]
|
|
27
|
+
next_marker: Union[Unset, str] = UNSET
|
|
28
|
+
restricted_access: Union[Unset, bool] = UNSET
|
|
29
|
+
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
30
|
+
|
|
31
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
32
|
+
windmill_large_files = []
|
|
33
|
+
for windmill_large_files_item_data in self.windmill_large_files:
|
|
34
|
+
windmill_large_files_item = windmill_large_files_item_data.to_dict()
|
|
35
|
+
|
|
36
|
+
windmill_large_files.append(windmill_large_files_item)
|
|
37
|
+
|
|
38
|
+
next_marker = self.next_marker
|
|
39
|
+
restricted_access = self.restricted_access
|
|
40
|
+
|
|
41
|
+
field_dict: Dict[str, Any] = {}
|
|
42
|
+
field_dict.update(self.additional_properties)
|
|
43
|
+
field_dict.update(
|
|
44
|
+
{
|
|
45
|
+
"windmill_large_files": windmill_large_files,
|
|
46
|
+
}
|
|
47
|
+
)
|
|
48
|
+
if next_marker is not UNSET:
|
|
49
|
+
field_dict["next_marker"] = next_marker
|
|
50
|
+
if restricted_access is not UNSET:
|
|
51
|
+
field_dict["restricted_access"] = restricted_access
|
|
52
|
+
|
|
53
|
+
return field_dict
|
|
54
|
+
|
|
55
|
+
@classmethod
|
|
56
|
+
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
57
|
+
from ..models.list_git_repo_files_response_200_windmill_large_files_item import (
|
|
58
|
+
ListGitRepoFilesResponse200WindmillLargeFilesItem,
|
|
59
|
+
)
|
|
60
|
+
|
|
61
|
+
d = src_dict.copy()
|
|
62
|
+
windmill_large_files = []
|
|
63
|
+
_windmill_large_files = d.pop("windmill_large_files")
|
|
64
|
+
for windmill_large_files_item_data in _windmill_large_files:
|
|
65
|
+
windmill_large_files_item = ListGitRepoFilesResponse200WindmillLargeFilesItem.from_dict(
|
|
66
|
+
windmill_large_files_item_data
|
|
67
|
+
)
|
|
68
|
+
|
|
69
|
+
windmill_large_files.append(windmill_large_files_item)
|
|
70
|
+
|
|
71
|
+
next_marker = d.pop("next_marker", UNSET)
|
|
72
|
+
|
|
73
|
+
restricted_access = d.pop("restricted_access", UNSET)
|
|
74
|
+
|
|
75
|
+
list_git_repo_files_response_200 = cls(
|
|
76
|
+
windmill_large_files=windmill_large_files,
|
|
77
|
+
next_marker=next_marker,
|
|
78
|
+
restricted_access=restricted_access,
|
|
79
|
+
)
|
|
80
|
+
|
|
81
|
+
list_git_repo_files_response_200.additional_properties = d
|
|
82
|
+
return list_git_repo_files_response_200
|
|
83
|
+
|
|
84
|
+
@property
|
|
85
|
+
def additional_keys(self) -> List[str]:
|
|
86
|
+
return list(self.additional_properties.keys())
|
|
87
|
+
|
|
88
|
+
def __getitem__(self, key: str) -> Any:
|
|
89
|
+
return self.additional_properties[key]
|
|
90
|
+
|
|
91
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
92
|
+
self.additional_properties[key] = value
|
|
93
|
+
|
|
94
|
+
def __delitem__(self, key: str) -> None:
|
|
95
|
+
del self.additional_properties[key]
|
|
96
|
+
|
|
97
|
+
def __contains__(self, key: str) -> bool:
|
|
98
|
+
return key in self.additional_properties
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
from typing import Any, Dict, List, Type, TypeVar
|
|
2
|
+
|
|
3
|
+
from attrs import define as _attrs_define
|
|
4
|
+
from attrs import field as _attrs_field
|
|
5
|
+
|
|
6
|
+
T = TypeVar("T", bound="ListGitRepoFilesResponse200WindmillLargeFilesItem")
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
@_attrs_define
|
|
10
|
+
class ListGitRepoFilesResponse200WindmillLargeFilesItem:
|
|
11
|
+
"""
|
|
12
|
+
Attributes:
|
|
13
|
+
s3 (str):
|
|
14
|
+
"""
|
|
15
|
+
|
|
16
|
+
s3: str
|
|
17
|
+
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
18
|
+
|
|
19
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
20
|
+
s3 = self.s3
|
|
21
|
+
|
|
22
|
+
field_dict: Dict[str, Any] = {}
|
|
23
|
+
field_dict.update(self.additional_properties)
|
|
24
|
+
field_dict.update(
|
|
25
|
+
{
|
|
26
|
+
"s3": s3,
|
|
27
|
+
}
|
|
28
|
+
)
|
|
29
|
+
|
|
30
|
+
return field_dict
|
|
31
|
+
|
|
32
|
+
@classmethod
|
|
33
|
+
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
34
|
+
d = src_dict.copy()
|
|
35
|
+
s3 = d.pop("s3")
|
|
36
|
+
|
|
37
|
+
list_git_repo_files_response_200_windmill_large_files_item = cls(
|
|
38
|
+
s3=s3,
|
|
39
|
+
)
|
|
40
|
+
|
|
41
|
+
list_git_repo_files_response_200_windmill_large_files_item.additional_properties = d
|
|
42
|
+
return list_git_repo_files_response_200_windmill_large_files_item
|
|
43
|
+
|
|
44
|
+
@property
|
|
45
|
+
def additional_keys(self) -> List[str]:
|
|
46
|
+
return list(self.additional_properties.keys())
|
|
47
|
+
|
|
48
|
+
def __getitem__(self, key: str) -> Any:
|
|
49
|
+
return self.additional_properties[key]
|
|
50
|
+
|
|
51
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
52
|
+
self.additional_properties[key] = value
|
|
53
|
+
|
|
54
|
+
def __delitem__(self, key: str) -> None:
|
|
55
|
+
del self.additional_properties[key]
|
|
56
|
+
|
|
57
|
+
def __contains__(self, key: str) -> bool:
|
|
58
|
+
return key in self.additional_properties
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
import datetime
|
|
2
|
+
from typing import Any, Dict, List, Type, TypeVar, Union
|
|
3
|
+
|
|
4
|
+
from attrs import define as _attrs_define
|
|
5
|
+
from attrs import field as _attrs_field
|
|
6
|
+
from dateutil.parser import isoparse
|
|
7
|
+
|
|
8
|
+
from ..types import UNSET, Unset
|
|
9
|
+
|
|
10
|
+
T = TypeVar("T", bound="LoadGitRepoFileMetadataResponse200")
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
@_attrs_define
|
|
14
|
+
class LoadGitRepoFileMetadataResponse200:
|
|
15
|
+
"""
|
|
16
|
+
Attributes:
|
|
17
|
+
mime_type (Union[Unset, str]):
|
|
18
|
+
size_in_bytes (Union[Unset, int]):
|
|
19
|
+
last_modified (Union[Unset, datetime.datetime]):
|
|
20
|
+
expires (Union[Unset, datetime.datetime]):
|
|
21
|
+
version_id (Union[Unset, str]):
|
|
22
|
+
"""
|
|
23
|
+
|
|
24
|
+
mime_type: Union[Unset, str] = UNSET
|
|
25
|
+
size_in_bytes: Union[Unset, int] = UNSET
|
|
26
|
+
last_modified: Union[Unset, datetime.datetime] = UNSET
|
|
27
|
+
expires: Union[Unset, datetime.datetime] = UNSET
|
|
28
|
+
version_id: Union[Unset, str] = UNSET
|
|
29
|
+
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
30
|
+
|
|
31
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
32
|
+
mime_type = self.mime_type
|
|
33
|
+
size_in_bytes = self.size_in_bytes
|
|
34
|
+
last_modified: Union[Unset, str] = UNSET
|
|
35
|
+
if not isinstance(self.last_modified, Unset):
|
|
36
|
+
last_modified = self.last_modified.isoformat()
|
|
37
|
+
|
|
38
|
+
expires: Union[Unset, str] = UNSET
|
|
39
|
+
if not isinstance(self.expires, Unset):
|
|
40
|
+
expires = self.expires.isoformat()
|
|
41
|
+
|
|
42
|
+
version_id = self.version_id
|
|
43
|
+
|
|
44
|
+
field_dict: Dict[str, Any] = {}
|
|
45
|
+
field_dict.update(self.additional_properties)
|
|
46
|
+
field_dict.update({})
|
|
47
|
+
if mime_type is not UNSET:
|
|
48
|
+
field_dict["mime_type"] = mime_type
|
|
49
|
+
if size_in_bytes is not UNSET:
|
|
50
|
+
field_dict["size_in_bytes"] = size_in_bytes
|
|
51
|
+
if last_modified is not UNSET:
|
|
52
|
+
field_dict["last_modified"] = last_modified
|
|
53
|
+
if expires is not UNSET:
|
|
54
|
+
field_dict["expires"] = expires
|
|
55
|
+
if version_id is not UNSET:
|
|
56
|
+
field_dict["version_id"] = version_id
|
|
57
|
+
|
|
58
|
+
return field_dict
|
|
59
|
+
|
|
60
|
+
@classmethod
|
|
61
|
+
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
62
|
+
d = src_dict.copy()
|
|
63
|
+
mime_type = d.pop("mime_type", UNSET)
|
|
64
|
+
|
|
65
|
+
size_in_bytes = d.pop("size_in_bytes", UNSET)
|
|
66
|
+
|
|
67
|
+
_last_modified = d.pop("last_modified", UNSET)
|
|
68
|
+
last_modified: Union[Unset, datetime.datetime]
|
|
69
|
+
if isinstance(_last_modified, Unset):
|
|
70
|
+
last_modified = UNSET
|
|
71
|
+
else:
|
|
72
|
+
last_modified = isoparse(_last_modified)
|
|
73
|
+
|
|
74
|
+
_expires = d.pop("expires", UNSET)
|
|
75
|
+
expires: Union[Unset, datetime.datetime]
|
|
76
|
+
if isinstance(_expires, Unset):
|
|
77
|
+
expires = UNSET
|
|
78
|
+
else:
|
|
79
|
+
expires = isoparse(_expires)
|
|
80
|
+
|
|
81
|
+
version_id = d.pop("version_id", UNSET)
|
|
82
|
+
|
|
83
|
+
load_git_repo_file_metadata_response_200 = cls(
|
|
84
|
+
mime_type=mime_type,
|
|
85
|
+
size_in_bytes=size_in_bytes,
|
|
86
|
+
last_modified=last_modified,
|
|
87
|
+
expires=expires,
|
|
88
|
+
version_id=version_id,
|
|
89
|
+
)
|
|
90
|
+
|
|
91
|
+
load_git_repo_file_metadata_response_200.additional_properties = d
|
|
92
|
+
return load_git_repo_file_metadata_response_200
|
|
93
|
+
|
|
94
|
+
@property
|
|
95
|
+
def additional_keys(self) -> List[str]:
|
|
96
|
+
return list(self.additional_properties.keys())
|
|
97
|
+
|
|
98
|
+
def __getitem__(self, key: str) -> Any:
|
|
99
|
+
return self.additional_properties[key]
|
|
100
|
+
|
|
101
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
102
|
+
self.additional_properties[key] = value
|
|
103
|
+
|
|
104
|
+
def __delitem__(self, key: str) -> None:
|
|
105
|
+
del self.additional_properties[key]
|
|
106
|
+
|
|
107
|
+
def __contains__(self, key: str) -> bool:
|
|
108
|
+
return key in self.additional_properties
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
from typing import Any, Dict, List, Type, TypeVar, Union
|
|
2
|
+
|
|
3
|
+
from attrs import define as _attrs_define
|
|
4
|
+
from attrs import field as _attrs_field
|
|
5
|
+
|
|
6
|
+
from ..models.load_git_repo_file_preview_response_200_content_type import LoadGitRepoFilePreviewResponse200ContentType
|
|
7
|
+
from ..types import UNSET, Unset
|
|
8
|
+
|
|
9
|
+
T = TypeVar("T", bound="LoadGitRepoFilePreviewResponse200")
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
@_attrs_define
|
|
13
|
+
class LoadGitRepoFilePreviewResponse200:
|
|
14
|
+
"""
|
|
15
|
+
Attributes:
|
|
16
|
+
content_type (LoadGitRepoFilePreviewResponse200ContentType):
|
|
17
|
+
msg (Union[Unset, str]):
|
|
18
|
+
content (Union[Unset, str]):
|
|
19
|
+
"""
|
|
20
|
+
|
|
21
|
+
content_type: LoadGitRepoFilePreviewResponse200ContentType
|
|
22
|
+
msg: Union[Unset, str] = UNSET
|
|
23
|
+
content: Union[Unset, str] = UNSET
|
|
24
|
+
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
25
|
+
|
|
26
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
27
|
+
content_type = self.content_type.value
|
|
28
|
+
|
|
29
|
+
msg = self.msg
|
|
30
|
+
content = self.content
|
|
31
|
+
|
|
32
|
+
field_dict: Dict[str, Any] = {}
|
|
33
|
+
field_dict.update(self.additional_properties)
|
|
34
|
+
field_dict.update(
|
|
35
|
+
{
|
|
36
|
+
"content_type": content_type,
|
|
37
|
+
}
|
|
38
|
+
)
|
|
39
|
+
if msg is not UNSET:
|
|
40
|
+
field_dict["msg"] = msg
|
|
41
|
+
if content is not UNSET:
|
|
42
|
+
field_dict["content"] = content
|
|
43
|
+
|
|
44
|
+
return field_dict
|
|
45
|
+
|
|
46
|
+
@classmethod
|
|
47
|
+
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
48
|
+
d = src_dict.copy()
|
|
49
|
+
content_type = LoadGitRepoFilePreviewResponse200ContentType(d.pop("content_type"))
|
|
50
|
+
|
|
51
|
+
msg = d.pop("msg", UNSET)
|
|
52
|
+
|
|
53
|
+
content = d.pop("content", UNSET)
|
|
54
|
+
|
|
55
|
+
load_git_repo_file_preview_response_200 = cls(
|
|
56
|
+
content_type=content_type,
|
|
57
|
+
msg=msg,
|
|
58
|
+
content=content,
|
|
59
|
+
)
|
|
60
|
+
|
|
61
|
+
load_git_repo_file_preview_response_200.additional_properties = d
|
|
62
|
+
return load_git_repo_file_preview_response_200
|
|
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
|
|
@@ -155,6 +155,7 @@ windmill_api/api/group/remove_user_to_group.py,sha256=cXmWkLNp6J5BX-itxvP5S5LTVO
|
|
|
155
155
|
windmill_api/api/group/update_group.py,sha256=5IqWue5R_Tofb0tftOEJmKfOmnQZyKf01CeMmd7y_0M,2827
|
|
156
156
|
windmill_api/api/group/update_instance_group.py,sha256=drSte3jL8gH2Nu3yJGb6Bri-8m7TaUIMsXVNZthAXNA,2687
|
|
157
157
|
windmill_api/api/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
158
|
+
windmill_api/api/helpers/check_s3_folder_exists.py,sha256=7ROJKH0fl1iefwWRAeN7OedFCXoNTPGDpxX9VRL20l4,4501
|
|
158
159
|
windmill_api/api/helpers/dataset_storage_test_connection.py,sha256=8_J8QA2VKE9HgtNO88esSQJ4u8o1yQDOOjO2gW05foY,2899
|
|
159
160
|
windmill_api/api/helpers/delete_s3_file.py,sha256=nmJnJBz7LxoTlHHEh9_Bh3EPk5wYpIXU7AHiVt0Wc6E,3063
|
|
160
161
|
windmill_api/api/helpers/duckdb_connection_settings.py,sha256=502H6k9P5LU36zs2CEz-G_qflSNbYcfaQeiplBPFQQc,5050
|
|
@@ -162,10 +163,14 @@ windmill_api/api/helpers/duckdb_connection_settings_v2.py,sha256=178v1AbCL5x2xW9
|
|
|
162
163
|
windmill_api/api/helpers/file_download.py,sha256=rNdj92RbTeN7Ou-yYDOjE5rO8x17uZUjReYj_TV96Ew,6010
|
|
163
164
|
windmill_api/api/helpers/file_download_parquet_as_csv.py,sha256=nzlg6kGagPlIiobKKsvZtM3fkB4JBWfcD3NOWXPoBBI,3473
|
|
164
165
|
windmill_api/api/helpers/file_upload.py,sha256=ycKgK3Oy46MtyGCtULIeaBRNUqh908ICWOt8FdBtLck,8517
|
|
166
|
+
windmill_api/api/helpers/git_repo_viewer_file_upload.py,sha256=gb5MWRresL2CtC-f2df2lozmJzJZ3QkClpHSWQr7gs4,8883
|
|
167
|
+
windmill_api/api/helpers/list_git_repo_files.py,sha256=g_UWracVH7MykEWqNz5L240n0kSTgHpxlNuscEHHErI,6549
|
|
165
168
|
windmill_api/api/helpers/list_stored_files.py,sha256=OEkZFqi_GS6VfhMxet0fncyeHOxMGt0goImHHgU9918,6105
|
|
166
169
|
windmill_api/api/helpers/load_csv_preview.py,sha256=oqt5nXtxRwS9ncQFFjrFVvcMOdlpzOw1z2ft3O1og14,5332
|
|
167
170
|
windmill_api/api/helpers/load_file_metadata.py,sha256=ILWX7sXLi43pFUHGque5ysWATB4BOQtDq6psGYj4cCQ,4947
|
|
168
171
|
windmill_api/api/helpers/load_file_preview.py,sha256=2mHo3Ju1YktxM7edRbKdDb9foSq66wr9rH_h043bajk,9111
|
|
172
|
+
windmill_api/api/helpers/load_git_repo_file_metadata.py,sha256=0Rl4pphCh6t9oUoD5bl6D3cfcCcuoiBfuXYU-9BRVQA,5501
|
|
173
|
+
windmill_api/api/helpers/load_git_repo_file_preview.py,sha256=zX6QCmbm3MF8tdixS5qYpFpY1GNO7OUQPO-csUMRVXE,9685
|
|
169
174
|
windmill_api/api/helpers/load_parquet_preview.py,sha256=TzmAtVEG36SZ_Oxywit-0xlbfN6tGpq-Rxu0dmd7QtM,4971
|
|
170
175
|
windmill_api/api/helpers/load_table_row_count.py,sha256=Yn9otykCvRBJ6EGuyhDpNqpLPNVYww1ckml_0tKZl0A,6093
|
|
171
176
|
windmill_api/api/helpers/move_s3_file.py,sha256=XaSdHiqeqgWb2RX4JSetO_odu27eJD2Qwx_-D-dcZhw,3417
|
|
@@ -349,6 +354,7 @@ windmill_api/api/resource/delete_resources_bulk.py,sha256=fNhTCKbB2cm7S8Jdx8tkaN
|
|
|
349
354
|
windmill_api/api/resource/exists_resource.py,sha256=U_ZQIBZcse84y5K-hB02xu2o4YTybmzz8gNDmHzKzYA,3792
|
|
350
355
|
windmill_api/api/resource/exists_resource_type.py,sha256=gl1pJKWih3_Kir8bVqoU7UhYp1cYslLUNhOPfbz6Zyw,3817
|
|
351
356
|
windmill_api/api/resource/file_resource_type_to_file_ext_map.py,sha256=89UxOgYrbklyOAKYF7vu2YbljsdkygGdq1Bi551JtXw,2444
|
|
357
|
+
windmill_api/api/resource/get_git_commit_hash.py,sha256=7CAlXdjPRkhYSuPTatTOb1doYPtTCb9BEmUWUglOByE,4216
|
|
352
358
|
windmill_api/api/resource/get_resource.py,sha256=LKzjwsVtKAohJcIJW3SAWln-3Z9kWvzJL4VeCf2m2gQ,4037
|
|
353
359
|
windmill_api/api/resource/get_resource_type.py,sha256=rNGMAJOEelZDL9TgMDXFyQDVNGzuCgOU4ufH5NKWg9w,4115
|
|
354
360
|
windmill_api/api/resource/get_resource_value.py,sha256=dhiCGEDQSkdq6c07KIM_Kk14p7e_CTF58hoNL1e8To0,2516
|
|
@@ -782,6 +788,7 @@ windmill_api/models/change_workspace_color_json_body.py,sha256=odjfU1ihXfsPh86JZ
|
|
|
782
788
|
windmill_api/models/change_workspace_id_json_body.py,sha256=1OmKBEAA_R2o75VlpWTjgxDXdP2SE6OJ1FDbGD_f_b8,1872
|
|
783
789
|
windmill_api/models/change_workspace_name_json_body.py,sha256=ByJQqO7uQfddlxSbuKE-C540auKYuWFbvapdIltcdBg,1637
|
|
784
790
|
windmill_api/models/channel_info.py,sha256=6mJzi8w-fUM26qviIFps7QdfoU94W1NOTe4z4N68qrk,2441
|
|
791
|
+
windmill_api/models/check_s3_folder_exists_response_200.py,sha256=WQB8nbg-s7hUFDqLROYGoJEwhiY7un4dBEZkQGcshbI,1816
|
|
785
792
|
windmill_api/models/clear_index_idx_name.py,sha256=zZ1Yiqd-K2Gz80K5q0aKiWDAe1bILZDCgGxC7ezWJNw,188
|
|
786
793
|
windmill_api/models/completed_job.py,sha256=DHYWsVqHykKSgngZYRpe_vR2gdnRR4wDQNUKgiL8A3g,14023
|
|
787
794
|
windmill_api/models/completed_job_args.py,sha256=l-nluO-gwKll2VZvlFXG6XlGxgr9OmgUJWXiFKuwN3Q,1280
|
|
@@ -2515,6 +2522,7 @@ windmill_api/models/get_gcp_trigger_response_200_retry_constant.py,sha256=khYHbq
|
|
|
2515
2522
|
windmill_api/models/get_gcp_trigger_response_200_retry_exponential.py,sha256=NUCOkRAg7gLzS9hPclZwBpKaTXg_YO_oL4fn51jmHjA,2575
|
|
2516
2523
|
windmill_api/models/get_gcp_trigger_response_200_retry_retry_if.py,sha256=-6LP35Ak87mg-HZbMKHK5tbDB87WHWCNsSa-mSwEjS4,1560
|
|
2517
2524
|
windmill_api/models/get_gcp_trigger_response_200_subscription_mode.py,sha256=fj21tM0NHIBCobDfFzyVCf4PAzWNYmzCt1-q7pCl3B4,207
|
|
2525
|
+
windmill_api/models/get_git_commit_hash_response_200.py,sha256=sYfKzfvZyBqJJnHCfK7dFGRskDNhBDaZYL2_g7I9chE,1617
|
|
2518
2526
|
windmill_api/models/get_github_app_token_json_body.py,sha256=CnE22hyCp3RfOgoBzEjyq1WUpcV_Q4JHxQTPrSbVrEQ,1549
|
|
2519
2527
|
windmill_api/models/get_github_app_token_response_200.py,sha256=Eoo5xAitZIy5N4lfso0MSJC3r_jo1z7qiAvDyAacye0,1524
|
|
2520
2528
|
windmill_api/models/get_global_connected_repositories_response_200_item.py,sha256=MTx9cZWOoG5uUQAK15AilUDjYnRU6X3Gra6dB0KWT6Q,3470
|
|
@@ -3320,6 +3328,7 @@ windmill_api/models/get_websocket_trigger_response_200_retry_retry_if.py,sha256=
|
|
|
3320
3328
|
windmill_api/models/get_websocket_trigger_response_200_url_runnable_args.py,sha256=TGU8QjyhBsLgCWiDQxfdqgcD0tUrJALQ2KSPGzMge2Q,1440
|
|
3321
3329
|
windmill_api/models/get_workspace_default_app_response_200.py,sha256=FKINlHD6u4qyUDJgJjDuDIyIsWAuvRdPKYQA9s_Y00g,1758
|
|
3322
3330
|
windmill_api/models/get_workspace_encryption_key_response_200.py,sha256=Fvs0c2FiaRvYp_qRzJ4xj-gQ-2mF58Ae5dOol6Onuow,1544
|
|
3331
|
+
windmill_api/models/git_repo_viewer_file_upload_response_200.py,sha256=W5MbTsIkg_gUIEFv7vqEADdek_WCJ7wHxj3VKq9uAIc,1587
|
|
3323
3332
|
windmill_api/models/git_repository_settings.py,sha256=UMuFUfq9jZIv7tMNkHl7mrkNHJ1fIByMfIIXI_mow38,5142
|
|
3324
3333
|
windmill_api/models/git_repository_settings_exclude_types_override_item.py,sha256=UgHD6OCUPd7AZ4J9DEH14ZZZg010hizcPzlHb8g0d6A,466
|
|
3325
3334
|
windmill_api/models/git_repository_settings_settings.py,sha256=J5A0J2GUmiXWAPS-jt8JWZcdgxRht_XBJz8PP8DxcCE,3856
|
|
@@ -3993,6 +4002,8 @@ windmill_api/models/list_gcp_triggers_response_200_item_retry_constant.py,sha256
|
|
|
3993
4002
|
windmill_api/models/list_gcp_triggers_response_200_item_retry_exponential.py,sha256=KLWnc6pasqQNIoVQFayaQrzsBBX2L--XG2z-YKs7OIo,2608
|
|
3994
4003
|
windmill_api/models/list_gcp_triggers_response_200_item_retry_retry_if.py,sha256=TaXYEbrbhTyKHL04wVhMzU2nJSZ3kpYsZMz6T6U2hWk,1593
|
|
3995
4004
|
windmill_api/models/list_gcp_triggers_response_200_item_subscription_mode.py,sha256=ZINSBRaqiGhwZTJaUKS3M2EzLH8skxF1DCwc2aNAUWA,213
|
|
4005
|
+
windmill_api/models/list_git_repo_files_response_200.py,sha256=qbHsptFfdFk_iCbtKA_2eXn3ESv2NicZVGbRYiQMZCw,3370
|
|
4006
|
+
windmill_api/models/list_git_repo_files_response_200_windmill_large_files_item.py,sha256=nmUOve2gw_qAGKc46YhfSvzWbesd56iimlMyygQk7Gg,1611
|
|
3996
4007
|
windmill_api/models/list_global_settings_response_200_item.py,sha256=U8fLOxv7Tr1V6V2GgBiN0uAd8LAN87vFEpv0hJIp_Jc,2081
|
|
3997
4008
|
windmill_api/models/list_global_settings_response_200_item_value.py,sha256=BwZxPwY1kY_fl9sB6cg8dWtMPGLgKYUpx3ya1qDLcHc,1360
|
|
3998
4009
|
windmill_api/models/list_groups_response_200_item.py,sha256=xtTEjbZ6Y6EDyMOfSJ0C-xnsZFFHpeDxt85OC-Dl5sw,3170
|
|
@@ -4499,6 +4510,9 @@ windmill_api/models/listable_variable_extra_perms.py,sha256=viMFDewwc-Q5iYf-nywe
|
|
|
4499
4510
|
windmill_api/models/load_file_metadata_response_200.py,sha256=NggKsh-6uMj07SWnhiR6Qk57PCvOOy6T3CM7zkLfh4w,3550
|
|
4500
4511
|
windmill_api/models/load_file_preview_response_200.py,sha256=cvqfLlkgTWLHCexILwu3DA-0QcfYTCyW8NMjlHtx8Gs,2307
|
|
4501
4512
|
windmill_api/models/load_file_preview_response_200_content_type.py,sha256=AIp0F_XNVgiUqF3ZMXvcEIShsIhzEFEs3Ia5CZ1YVjw,230
|
|
4513
|
+
windmill_api/models/load_git_repo_file_metadata_response_200.py,sha256=eSw80sRYBRm5jNE2rxArNxEwYet9valhKqLrhlES0hs,3591
|
|
4514
|
+
windmill_api/models/load_git_repo_file_preview_response_200.py,sha256=0BJZvkouMwQrzTyvC1s_EBKf6kz-shisHqRuBhXg3bg,2385
|
|
4515
|
+
windmill_api/models/load_git_repo_file_preview_response_200_content_type.py,sha256=vdi7EKXxKVyGyJsIk-LFiQOHH9VspWGaerbO5b4CxZ0,237
|
|
4502
4516
|
windmill_api/models/load_table_row_count_response_200.py,sha256=lMJcjpJTzOkQQUVlSMElhSG-LaablH6NMhb56HqSHw8,1616
|
|
4503
4517
|
windmill_api/models/log_search_hit.py,sha256=ehb-h8RKysCLwVfvnB2e9Q4bRWRuSofJT67w6imSX50,1534
|
|
4504
4518
|
windmill_api/models/logged_wizard_status.py,sha256=8ae1JTIsOwhx4CwFhMHZQr6mt1Kn2vfFH9zbQ9b_H6g,173
|
|
@@ -5546,7 +5560,7 @@ windmill_api/models/workspace_invite.py,sha256=wp-J-VJLkXsfQzw1PdNPGQhETsFCFXh1e
|
|
|
5546
5560
|
windmill_api/models/workspace_mute_critical_alerts_ui_json_body.py,sha256=y8ZwkWEZgavVc-FgLuZZ4z8YPCLxjPcMfdGdKjGM6VQ,1883
|
|
5547
5561
|
windmill_api/py.typed,sha256=8ZJUsxZiuOy1oJeVhsTWQhTG_6pTVHVXk5hJL79ebTk,25
|
|
5548
5562
|
windmill_api/types.py,sha256=GoYub3t4hQP2Yn5tsvShsBfIY3vHUmblU0MXszDx_V0,968
|
|
5549
|
-
windmill_api-1.
|
|
5550
|
-
windmill_api-1.
|
|
5551
|
-
windmill_api-1.
|
|
5552
|
-
windmill_api-1.
|
|
5563
|
+
windmill_api-1.561.0.dist-info/LICENSE,sha256=qJVFNTaOevCeSY6NoXeUG1SPOwQ1K-PxVQ2iEWJzX-A,11348
|
|
5564
|
+
windmill_api-1.561.0.dist-info/METADATA,sha256=3iSOysXUU8KmdM_TcGWueWw5p_Bp9uEJCgiV3eNAd7g,5023
|
|
5565
|
+
windmill_api-1.561.0.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
|
|
5566
|
+
windmill_api-1.561.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|