windmill-api 1.515.0__py3-none-any.whl → 1.516.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/workspace/delete_git_sync_repository.py +107 -0
- windmill_api/api/workspace/edit_git_sync_repository.py +107 -0
- windmill_api/models/delete_git_sync_repository_json_body.py +58 -0
- windmill_api/models/edit_git_sync_repository_json_body.py +71 -0
- windmill_api/models/edit_git_sync_repository_json_body_repository.py +141 -0
- windmill_api/models/edit_git_sync_repository_json_body_repository_exclude_types_override_item.py +21 -0
- windmill_api/models/edit_git_sync_repository_json_body_repository_settings.py +105 -0
- windmill_api/models/edit_git_sync_repository_json_body_repository_settings_include_type_item.py +21 -0
- windmill_api/models/edit_workspace_deploy_ui_settings_json_body_deploy_ui_settings_include_type_item.py +7 -0
- windmill_api/models/get_settings_response_200_deploy_ui_include_type_item.py +7 -0
- windmill_api/models/git_sync_object_type.py +21 -0
- windmill_api/models/workspace_deploy_ui_settings_include_type_item.py +7 -0
- {windmill_api-1.515.0.dist-info → windmill_api-1.516.0.dist-info}/METADATA +1 -1
- {windmill_api-1.515.0.dist-info → windmill_api-1.516.0.dist-info}/RECORD +16 -7
- {windmill_api-1.515.0.dist-info → windmill_api-1.516.0.dist-info}/LICENSE +0 -0
- {windmill_api-1.515.0.dist-info → windmill_api-1.516.0.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
from http import HTTPStatus
|
|
2
|
+
from typing import Any, Dict, Optional, Union
|
|
3
|
+
|
|
4
|
+
import httpx
|
|
5
|
+
|
|
6
|
+
from ... import errors
|
|
7
|
+
from ...client import AuthenticatedClient, Client
|
|
8
|
+
from ...models.delete_git_sync_repository_json_body import DeleteGitSyncRepositoryJsonBody
|
|
9
|
+
from ...types import Response
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
def _get_kwargs(
|
|
13
|
+
workspace: str,
|
|
14
|
+
*,
|
|
15
|
+
json_body: DeleteGitSyncRepositoryJsonBody,
|
|
16
|
+
) -> Dict[str, Any]:
|
|
17
|
+
pass
|
|
18
|
+
|
|
19
|
+
json_json_body = json_body.to_dict()
|
|
20
|
+
|
|
21
|
+
return {
|
|
22
|
+
"method": "delete",
|
|
23
|
+
"url": "/w/{workspace}/workspaces/delete_git_sync_repository".format(
|
|
24
|
+
workspace=workspace,
|
|
25
|
+
),
|
|
26
|
+
"json": json_json_body,
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
def _parse_response(*, client: Union[AuthenticatedClient, Client], response: httpx.Response) -> Optional[Any]:
|
|
31
|
+
if response.status_code == HTTPStatus.OK:
|
|
32
|
+
return None
|
|
33
|
+
if client.raise_on_unexpected_status:
|
|
34
|
+
raise errors.UnexpectedStatus(response.status_code, response.content)
|
|
35
|
+
else:
|
|
36
|
+
return None
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
def _build_response(*, client: Union[AuthenticatedClient, Client], response: httpx.Response) -> Response[Any]:
|
|
40
|
+
return Response(
|
|
41
|
+
status_code=HTTPStatus(response.status_code),
|
|
42
|
+
content=response.content,
|
|
43
|
+
headers=response.headers,
|
|
44
|
+
parsed=_parse_response(client=client, response=response),
|
|
45
|
+
)
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
def sync_detailed(
|
|
49
|
+
workspace: str,
|
|
50
|
+
*,
|
|
51
|
+
client: Union[AuthenticatedClient, Client],
|
|
52
|
+
json_body: DeleteGitSyncRepositoryJsonBody,
|
|
53
|
+
) -> Response[Any]:
|
|
54
|
+
"""delete individual git sync repository
|
|
55
|
+
|
|
56
|
+
Args:
|
|
57
|
+
workspace (str):
|
|
58
|
+
json_body (DeleteGitSyncRepositoryJsonBody):
|
|
59
|
+
|
|
60
|
+
Raises:
|
|
61
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
62
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
63
|
+
|
|
64
|
+
Returns:
|
|
65
|
+
Response[Any]
|
|
66
|
+
"""
|
|
67
|
+
|
|
68
|
+
kwargs = _get_kwargs(
|
|
69
|
+
workspace=workspace,
|
|
70
|
+
json_body=json_body,
|
|
71
|
+
)
|
|
72
|
+
|
|
73
|
+
response = client.get_httpx_client().request(
|
|
74
|
+
**kwargs,
|
|
75
|
+
)
|
|
76
|
+
|
|
77
|
+
return _build_response(client=client, response=response)
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
async def asyncio_detailed(
|
|
81
|
+
workspace: str,
|
|
82
|
+
*,
|
|
83
|
+
client: Union[AuthenticatedClient, Client],
|
|
84
|
+
json_body: DeleteGitSyncRepositoryJsonBody,
|
|
85
|
+
) -> Response[Any]:
|
|
86
|
+
"""delete individual git sync repository
|
|
87
|
+
|
|
88
|
+
Args:
|
|
89
|
+
workspace (str):
|
|
90
|
+
json_body (DeleteGitSyncRepositoryJsonBody):
|
|
91
|
+
|
|
92
|
+
Raises:
|
|
93
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
94
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
95
|
+
|
|
96
|
+
Returns:
|
|
97
|
+
Response[Any]
|
|
98
|
+
"""
|
|
99
|
+
|
|
100
|
+
kwargs = _get_kwargs(
|
|
101
|
+
workspace=workspace,
|
|
102
|
+
json_body=json_body,
|
|
103
|
+
)
|
|
104
|
+
|
|
105
|
+
response = await client.get_async_httpx_client().request(**kwargs)
|
|
106
|
+
|
|
107
|
+
return _build_response(client=client, response=response)
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
from http import HTTPStatus
|
|
2
|
+
from typing import Any, Dict, Optional, Union
|
|
3
|
+
|
|
4
|
+
import httpx
|
|
5
|
+
|
|
6
|
+
from ... import errors
|
|
7
|
+
from ...client import AuthenticatedClient, Client
|
|
8
|
+
from ...models.edit_git_sync_repository_json_body import EditGitSyncRepositoryJsonBody
|
|
9
|
+
from ...types import Response
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
def _get_kwargs(
|
|
13
|
+
workspace: str,
|
|
14
|
+
*,
|
|
15
|
+
json_body: EditGitSyncRepositoryJsonBody,
|
|
16
|
+
) -> Dict[str, Any]:
|
|
17
|
+
pass
|
|
18
|
+
|
|
19
|
+
json_json_body = json_body.to_dict()
|
|
20
|
+
|
|
21
|
+
return {
|
|
22
|
+
"method": "post",
|
|
23
|
+
"url": "/w/{workspace}/workspaces/edit_git_sync_repository".format(
|
|
24
|
+
workspace=workspace,
|
|
25
|
+
),
|
|
26
|
+
"json": json_json_body,
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
def _parse_response(*, client: Union[AuthenticatedClient, Client], response: httpx.Response) -> Optional[Any]:
|
|
31
|
+
if response.status_code == HTTPStatus.OK:
|
|
32
|
+
return None
|
|
33
|
+
if client.raise_on_unexpected_status:
|
|
34
|
+
raise errors.UnexpectedStatus(response.status_code, response.content)
|
|
35
|
+
else:
|
|
36
|
+
return None
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
def _build_response(*, client: Union[AuthenticatedClient, Client], response: httpx.Response) -> Response[Any]:
|
|
40
|
+
return Response(
|
|
41
|
+
status_code=HTTPStatus(response.status_code),
|
|
42
|
+
content=response.content,
|
|
43
|
+
headers=response.headers,
|
|
44
|
+
parsed=_parse_response(client=client, response=response),
|
|
45
|
+
)
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
def sync_detailed(
|
|
49
|
+
workspace: str,
|
|
50
|
+
*,
|
|
51
|
+
client: Union[AuthenticatedClient, Client],
|
|
52
|
+
json_body: EditGitSyncRepositoryJsonBody,
|
|
53
|
+
) -> Response[Any]:
|
|
54
|
+
"""add or update individual git sync repository
|
|
55
|
+
|
|
56
|
+
Args:
|
|
57
|
+
workspace (str):
|
|
58
|
+
json_body (EditGitSyncRepositoryJsonBody):
|
|
59
|
+
|
|
60
|
+
Raises:
|
|
61
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
62
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
63
|
+
|
|
64
|
+
Returns:
|
|
65
|
+
Response[Any]
|
|
66
|
+
"""
|
|
67
|
+
|
|
68
|
+
kwargs = _get_kwargs(
|
|
69
|
+
workspace=workspace,
|
|
70
|
+
json_body=json_body,
|
|
71
|
+
)
|
|
72
|
+
|
|
73
|
+
response = client.get_httpx_client().request(
|
|
74
|
+
**kwargs,
|
|
75
|
+
)
|
|
76
|
+
|
|
77
|
+
return _build_response(client=client, response=response)
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
async def asyncio_detailed(
|
|
81
|
+
workspace: str,
|
|
82
|
+
*,
|
|
83
|
+
client: Union[AuthenticatedClient, Client],
|
|
84
|
+
json_body: EditGitSyncRepositoryJsonBody,
|
|
85
|
+
) -> Response[Any]:
|
|
86
|
+
"""add or update individual git sync repository
|
|
87
|
+
|
|
88
|
+
Args:
|
|
89
|
+
workspace (str):
|
|
90
|
+
json_body (EditGitSyncRepositoryJsonBody):
|
|
91
|
+
|
|
92
|
+
Raises:
|
|
93
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
94
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
95
|
+
|
|
96
|
+
Returns:
|
|
97
|
+
Response[Any]
|
|
98
|
+
"""
|
|
99
|
+
|
|
100
|
+
kwargs = _get_kwargs(
|
|
101
|
+
workspace=workspace,
|
|
102
|
+
json_body=json_body,
|
|
103
|
+
)
|
|
104
|
+
|
|
105
|
+
response = await client.get_async_httpx_client().request(**kwargs)
|
|
106
|
+
|
|
107
|
+
return _build_response(client=client, response=response)
|
|
@@ -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="DeleteGitSyncRepositoryJsonBody")
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
@_attrs_define
|
|
10
|
+
class DeleteGitSyncRepositoryJsonBody:
|
|
11
|
+
"""
|
|
12
|
+
Attributes:
|
|
13
|
+
git_repo_resource_path (str): The resource path of the git repository to delete
|
|
14
|
+
"""
|
|
15
|
+
|
|
16
|
+
git_repo_resource_path: str
|
|
17
|
+
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
18
|
+
|
|
19
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
20
|
+
git_repo_resource_path = self.git_repo_resource_path
|
|
21
|
+
|
|
22
|
+
field_dict: Dict[str, Any] = {}
|
|
23
|
+
field_dict.update(self.additional_properties)
|
|
24
|
+
field_dict.update(
|
|
25
|
+
{
|
|
26
|
+
"git_repo_resource_path": git_repo_resource_path,
|
|
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
|
+
git_repo_resource_path = d.pop("git_repo_resource_path")
|
|
36
|
+
|
|
37
|
+
delete_git_sync_repository_json_body = cls(
|
|
38
|
+
git_repo_resource_path=git_repo_resource_path,
|
|
39
|
+
)
|
|
40
|
+
|
|
41
|
+
delete_git_sync_repository_json_body.additional_properties = d
|
|
42
|
+
return delete_git_sync_repository_json_body
|
|
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,71 @@
|
|
|
1
|
+
from typing import TYPE_CHECKING, Any, Dict, List, Type, TypeVar
|
|
2
|
+
|
|
3
|
+
from attrs import define as _attrs_define
|
|
4
|
+
from attrs import field as _attrs_field
|
|
5
|
+
|
|
6
|
+
if TYPE_CHECKING:
|
|
7
|
+
from ..models.edit_git_sync_repository_json_body_repository import EditGitSyncRepositoryJsonBodyRepository
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
T = TypeVar("T", bound="EditGitSyncRepositoryJsonBody")
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
@_attrs_define
|
|
14
|
+
class EditGitSyncRepositoryJsonBody:
|
|
15
|
+
"""
|
|
16
|
+
Attributes:
|
|
17
|
+
git_repo_resource_path (str): The resource path of the git repository to update
|
|
18
|
+
repository (EditGitSyncRepositoryJsonBodyRepository):
|
|
19
|
+
"""
|
|
20
|
+
|
|
21
|
+
git_repo_resource_path: str
|
|
22
|
+
repository: "EditGitSyncRepositoryJsonBodyRepository"
|
|
23
|
+
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
24
|
+
|
|
25
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
26
|
+
git_repo_resource_path = self.git_repo_resource_path
|
|
27
|
+
repository = self.repository.to_dict()
|
|
28
|
+
|
|
29
|
+
field_dict: Dict[str, Any] = {}
|
|
30
|
+
field_dict.update(self.additional_properties)
|
|
31
|
+
field_dict.update(
|
|
32
|
+
{
|
|
33
|
+
"git_repo_resource_path": git_repo_resource_path,
|
|
34
|
+
"repository": repository,
|
|
35
|
+
}
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
return field_dict
|
|
39
|
+
|
|
40
|
+
@classmethod
|
|
41
|
+
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
42
|
+
from ..models.edit_git_sync_repository_json_body_repository import EditGitSyncRepositoryJsonBodyRepository
|
|
43
|
+
|
|
44
|
+
d = src_dict.copy()
|
|
45
|
+
git_repo_resource_path = d.pop("git_repo_resource_path")
|
|
46
|
+
|
|
47
|
+
repository = EditGitSyncRepositoryJsonBodyRepository.from_dict(d.pop("repository"))
|
|
48
|
+
|
|
49
|
+
edit_git_sync_repository_json_body = cls(
|
|
50
|
+
git_repo_resource_path=git_repo_resource_path,
|
|
51
|
+
repository=repository,
|
|
52
|
+
)
|
|
53
|
+
|
|
54
|
+
edit_git_sync_repository_json_body.additional_properties = d
|
|
55
|
+
return edit_git_sync_repository_json_body
|
|
56
|
+
|
|
57
|
+
@property
|
|
58
|
+
def additional_keys(self) -> List[str]:
|
|
59
|
+
return list(self.additional_properties.keys())
|
|
60
|
+
|
|
61
|
+
def __getitem__(self, key: str) -> Any:
|
|
62
|
+
return self.additional_properties[key]
|
|
63
|
+
|
|
64
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
65
|
+
self.additional_properties[key] = value
|
|
66
|
+
|
|
67
|
+
def __delitem__(self, key: str) -> None:
|
|
68
|
+
del self.additional_properties[key]
|
|
69
|
+
|
|
70
|
+
def __contains__(self, key: str) -> bool:
|
|
71
|
+
return key in self.additional_properties
|
|
@@ -0,0 +1,141 @@
|
|
|
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 ..models.edit_git_sync_repository_json_body_repository_exclude_types_override_item import (
|
|
7
|
+
EditGitSyncRepositoryJsonBodyRepositoryExcludeTypesOverrideItem,
|
|
8
|
+
)
|
|
9
|
+
from ..types import UNSET, Unset
|
|
10
|
+
|
|
11
|
+
if TYPE_CHECKING:
|
|
12
|
+
from ..models.edit_git_sync_repository_json_body_repository_settings import (
|
|
13
|
+
EditGitSyncRepositoryJsonBodyRepositorySettings,
|
|
14
|
+
)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
T = TypeVar("T", bound="EditGitSyncRepositoryJsonBodyRepository")
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
@_attrs_define
|
|
21
|
+
class EditGitSyncRepositoryJsonBodyRepository:
|
|
22
|
+
"""
|
|
23
|
+
Attributes:
|
|
24
|
+
script_path (str):
|
|
25
|
+
git_repo_resource_path (str):
|
|
26
|
+
use_individual_branch (Union[Unset, bool]):
|
|
27
|
+
group_by_folder (Union[Unset, bool]):
|
|
28
|
+
collapsed (Union[Unset, bool]):
|
|
29
|
+
settings (Union[Unset, EditGitSyncRepositoryJsonBodyRepositorySettings]):
|
|
30
|
+
exclude_types_override (Union[Unset, List[EditGitSyncRepositoryJsonBodyRepositoryExcludeTypesOverrideItem]]):
|
|
31
|
+
"""
|
|
32
|
+
|
|
33
|
+
script_path: str
|
|
34
|
+
git_repo_resource_path: str
|
|
35
|
+
use_individual_branch: Union[Unset, bool] = UNSET
|
|
36
|
+
group_by_folder: Union[Unset, bool] = UNSET
|
|
37
|
+
collapsed: Union[Unset, bool] = UNSET
|
|
38
|
+
settings: Union[Unset, "EditGitSyncRepositoryJsonBodyRepositorySettings"] = UNSET
|
|
39
|
+
exclude_types_override: Union[Unset, List[EditGitSyncRepositoryJsonBodyRepositoryExcludeTypesOverrideItem]] = UNSET
|
|
40
|
+
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
41
|
+
|
|
42
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
43
|
+
script_path = self.script_path
|
|
44
|
+
git_repo_resource_path = self.git_repo_resource_path
|
|
45
|
+
use_individual_branch = self.use_individual_branch
|
|
46
|
+
group_by_folder = self.group_by_folder
|
|
47
|
+
collapsed = self.collapsed
|
|
48
|
+
settings: Union[Unset, Dict[str, Any]] = UNSET
|
|
49
|
+
if not isinstance(self.settings, Unset):
|
|
50
|
+
settings = self.settings.to_dict()
|
|
51
|
+
|
|
52
|
+
exclude_types_override: Union[Unset, List[str]] = UNSET
|
|
53
|
+
if not isinstance(self.exclude_types_override, Unset):
|
|
54
|
+
exclude_types_override = []
|
|
55
|
+
for exclude_types_override_item_data in self.exclude_types_override:
|
|
56
|
+
exclude_types_override_item = exclude_types_override_item_data.value
|
|
57
|
+
|
|
58
|
+
exclude_types_override.append(exclude_types_override_item)
|
|
59
|
+
|
|
60
|
+
field_dict: Dict[str, Any] = {}
|
|
61
|
+
field_dict.update(self.additional_properties)
|
|
62
|
+
field_dict.update(
|
|
63
|
+
{
|
|
64
|
+
"script_path": script_path,
|
|
65
|
+
"git_repo_resource_path": git_repo_resource_path,
|
|
66
|
+
}
|
|
67
|
+
)
|
|
68
|
+
if use_individual_branch is not UNSET:
|
|
69
|
+
field_dict["use_individual_branch"] = use_individual_branch
|
|
70
|
+
if group_by_folder is not UNSET:
|
|
71
|
+
field_dict["group_by_folder"] = group_by_folder
|
|
72
|
+
if collapsed is not UNSET:
|
|
73
|
+
field_dict["collapsed"] = collapsed
|
|
74
|
+
if settings is not UNSET:
|
|
75
|
+
field_dict["settings"] = settings
|
|
76
|
+
if exclude_types_override is not UNSET:
|
|
77
|
+
field_dict["exclude_types_override"] = exclude_types_override
|
|
78
|
+
|
|
79
|
+
return field_dict
|
|
80
|
+
|
|
81
|
+
@classmethod
|
|
82
|
+
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
83
|
+
from ..models.edit_git_sync_repository_json_body_repository_settings import (
|
|
84
|
+
EditGitSyncRepositoryJsonBodyRepositorySettings,
|
|
85
|
+
)
|
|
86
|
+
|
|
87
|
+
d = src_dict.copy()
|
|
88
|
+
script_path = d.pop("script_path")
|
|
89
|
+
|
|
90
|
+
git_repo_resource_path = d.pop("git_repo_resource_path")
|
|
91
|
+
|
|
92
|
+
use_individual_branch = d.pop("use_individual_branch", UNSET)
|
|
93
|
+
|
|
94
|
+
group_by_folder = d.pop("group_by_folder", UNSET)
|
|
95
|
+
|
|
96
|
+
collapsed = d.pop("collapsed", UNSET)
|
|
97
|
+
|
|
98
|
+
_settings = d.pop("settings", UNSET)
|
|
99
|
+
settings: Union[Unset, EditGitSyncRepositoryJsonBodyRepositorySettings]
|
|
100
|
+
if isinstance(_settings, Unset):
|
|
101
|
+
settings = UNSET
|
|
102
|
+
else:
|
|
103
|
+
settings = EditGitSyncRepositoryJsonBodyRepositorySettings.from_dict(_settings)
|
|
104
|
+
|
|
105
|
+
exclude_types_override = []
|
|
106
|
+
_exclude_types_override = d.pop("exclude_types_override", UNSET)
|
|
107
|
+
for exclude_types_override_item_data in _exclude_types_override or []:
|
|
108
|
+
exclude_types_override_item = EditGitSyncRepositoryJsonBodyRepositoryExcludeTypesOverrideItem(
|
|
109
|
+
exclude_types_override_item_data
|
|
110
|
+
)
|
|
111
|
+
|
|
112
|
+
exclude_types_override.append(exclude_types_override_item)
|
|
113
|
+
|
|
114
|
+
edit_git_sync_repository_json_body_repository = cls(
|
|
115
|
+
script_path=script_path,
|
|
116
|
+
git_repo_resource_path=git_repo_resource_path,
|
|
117
|
+
use_individual_branch=use_individual_branch,
|
|
118
|
+
group_by_folder=group_by_folder,
|
|
119
|
+
collapsed=collapsed,
|
|
120
|
+
settings=settings,
|
|
121
|
+
exclude_types_override=exclude_types_override,
|
|
122
|
+
)
|
|
123
|
+
|
|
124
|
+
edit_git_sync_repository_json_body_repository.additional_properties = d
|
|
125
|
+
return edit_git_sync_repository_json_body_repository
|
|
126
|
+
|
|
127
|
+
@property
|
|
128
|
+
def additional_keys(self) -> List[str]:
|
|
129
|
+
return list(self.additional_properties.keys())
|
|
130
|
+
|
|
131
|
+
def __getitem__(self, key: str) -> Any:
|
|
132
|
+
return self.additional_properties[key]
|
|
133
|
+
|
|
134
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
135
|
+
self.additional_properties[key] = value
|
|
136
|
+
|
|
137
|
+
def __delitem__(self, key: str) -> None:
|
|
138
|
+
del self.additional_properties[key]
|
|
139
|
+
|
|
140
|
+
def __contains__(self, key: str) -> bool:
|
|
141
|
+
return key in self.additional_properties
|
windmill_api/models/edit_git_sync_repository_json_body_repository_exclude_types_override_item.py
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
from enum import Enum
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
class EditGitSyncRepositoryJsonBodyRepositoryExcludeTypesOverrideItem(str, Enum):
|
|
5
|
+
APP = "app"
|
|
6
|
+
FLOW = "flow"
|
|
7
|
+
FOLDER = "folder"
|
|
8
|
+
GROUP = "group"
|
|
9
|
+
KEY = "key"
|
|
10
|
+
RESOURCE = "resource"
|
|
11
|
+
RESOURCETYPE = "resourcetype"
|
|
12
|
+
SCHEDULE = "schedule"
|
|
13
|
+
SCRIPT = "script"
|
|
14
|
+
SECRET = "secret"
|
|
15
|
+
SETTINGS = "settings"
|
|
16
|
+
TRIGGER = "trigger"
|
|
17
|
+
USER = "user"
|
|
18
|
+
VARIABLE = "variable"
|
|
19
|
+
|
|
20
|
+
def __str__(self) -> str:
|
|
21
|
+
return str(self.value)
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
from typing import Any, Dict, List, Type, TypeVar, Union, cast
|
|
2
|
+
|
|
3
|
+
from attrs import define as _attrs_define
|
|
4
|
+
from attrs import field as _attrs_field
|
|
5
|
+
|
|
6
|
+
from ..models.edit_git_sync_repository_json_body_repository_settings_include_type_item import (
|
|
7
|
+
EditGitSyncRepositoryJsonBodyRepositorySettingsIncludeTypeItem,
|
|
8
|
+
)
|
|
9
|
+
from ..types import UNSET, Unset
|
|
10
|
+
|
|
11
|
+
T = TypeVar("T", bound="EditGitSyncRepositoryJsonBodyRepositorySettings")
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
@_attrs_define
|
|
15
|
+
class EditGitSyncRepositoryJsonBodyRepositorySettings:
|
|
16
|
+
"""
|
|
17
|
+
Attributes:
|
|
18
|
+
include_path (Union[Unset, List[str]]):
|
|
19
|
+
include_type (Union[Unset, List[EditGitSyncRepositoryJsonBodyRepositorySettingsIncludeTypeItem]]):
|
|
20
|
+
exclude_path (Union[Unset, List[str]]):
|
|
21
|
+
extra_include_path (Union[Unset, List[str]]):
|
|
22
|
+
"""
|
|
23
|
+
|
|
24
|
+
include_path: Union[Unset, List[str]] = UNSET
|
|
25
|
+
include_type: Union[Unset, List[EditGitSyncRepositoryJsonBodyRepositorySettingsIncludeTypeItem]] = UNSET
|
|
26
|
+
exclude_path: Union[Unset, List[str]] = UNSET
|
|
27
|
+
extra_include_path: Union[Unset, List[str]] = UNSET
|
|
28
|
+
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
29
|
+
|
|
30
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
31
|
+
include_path: Union[Unset, List[str]] = UNSET
|
|
32
|
+
if not isinstance(self.include_path, Unset):
|
|
33
|
+
include_path = self.include_path
|
|
34
|
+
|
|
35
|
+
include_type: Union[Unset, List[str]] = UNSET
|
|
36
|
+
if not isinstance(self.include_type, Unset):
|
|
37
|
+
include_type = []
|
|
38
|
+
for include_type_item_data in self.include_type:
|
|
39
|
+
include_type_item = include_type_item_data.value
|
|
40
|
+
|
|
41
|
+
include_type.append(include_type_item)
|
|
42
|
+
|
|
43
|
+
exclude_path: Union[Unset, List[str]] = UNSET
|
|
44
|
+
if not isinstance(self.exclude_path, Unset):
|
|
45
|
+
exclude_path = self.exclude_path
|
|
46
|
+
|
|
47
|
+
extra_include_path: Union[Unset, List[str]] = UNSET
|
|
48
|
+
if not isinstance(self.extra_include_path, Unset):
|
|
49
|
+
extra_include_path = self.extra_include_path
|
|
50
|
+
|
|
51
|
+
field_dict: Dict[str, Any] = {}
|
|
52
|
+
field_dict.update(self.additional_properties)
|
|
53
|
+
field_dict.update({})
|
|
54
|
+
if include_path is not UNSET:
|
|
55
|
+
field_dict["include_path"] = include_path
|
|
56
|
+
if include_type is not UNSET:
|
|
57
|
+
field_dict["include_type"] = include_type
|
|
58
|
+
if exclude_path is not UNSET:
|
|
59
|
+
field_dict["exclude_path"] = exclude_path
|
|
60
|
+
if extra_include_path is not UNSET:
|
|
61
|
+
field_dict["extra_include_path"] = extra_include_path
|
|
62
|
+
|
|
63
|
+
return field_dict
|
|
64
|
+
|
|
65
|
+
@classmethod
|
|
66
|
+
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
67
|
+
d = src_dict.copy()
|
|
68
|
+
include_path = cast(List[str], d.pop("include_path", UNSET))
|
|
69
|
+
|
|
70
|
+
include_type = []
|
|
71
|
+
_include_type = d.pop("include_type", UNSET)
|
|
72
|
+
for include_type_item_data in _include_type or []:
|
|
73
|
+
include_type_item = EditGitSyncRepositoryJsonBodyRepositorySettingsIncludeTypeItem(include_type_item_data)
|
|
74
|
+
|
|
75
|
+
include_type.append(include_type_item)
|
|
76
|
+
|
|
77
|
+
exclude_path = cast(List[str], d.pop("exclude_path", UNSET))
|
|
78
|
+
|
|
79
|
+
extra_include_path = cast(List[str], d.pop("extra_include_path", UNSET))
|
|
80
|
+
|
|
81
|
+
edit_git_sync_repository_json_body_repository_settings = cls(
|
|
82
|
+
include_path=include_path,
|
|
83
|
+
include_type=include_type,
|
|
84
|
+
exclude_path=exclude_path,
|
|
85
|
+
extra_include_path=extra_include_path,
|
|
86
|
+
)
|
|
87
|
+
|
|
88
|
+
edit_git_sync_repository_json_body_repository_settings.additional_properties = d
|
|
89
|
+
return edit_git_sync_repository_json_body_repository_settings
|
|
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
|
windmill_api/models/edit_git_sync_repository_json_body_repository_settings_include_type_item.py
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
from enum import Enum
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
class EditGitSyncRepositoryJsonBodyRepositorySettingsIncludeTypeItem(str, Enum):
|
|
5
|
+
APP = "app"
|
|
6
|
+
FLOW = "flow"
|
|
7
|
+
FOLDER = "folder"
|
|
8
|
+
GROUP = "group"
|
|
9
|
+
KEY = "key"
|
|
10
|
+
RESOURCE = "resource"
|
|
11
|
+
RESOURCETYPE = "resourcetype"
|
|
12
|
+
SCHEDULE = "schedule"
|
|
13
|
+
SCRIPT = "script"
|
|
14
|
+
SECRET = "secret"
|
|
15
|
+
SETTINGS = "settings"
|
|
16
|
+
TRIGGER = "trigger"
|
|
17
|
+
USER = "user"
|
|
18
|
+
VARIABLE = "variable"
|
|
19
|
+
|
|
20
|
+
def __str__(self) -> str:
|
|
21
|
+
return str(self.value)
|
|
@@ -4,10 +4,17 @@ from enum import Enum
|
|
|
4
4
|
class EditWorkspaceDeployUISettingsJsonBodyDeployUiSettingsIncludeTypeItem(str, Enum):
|
|
5
5
|
APP = "app"
|
|
6
6
|
FLOW = "flow"
|
|
7
|
+
FOLDER = "folder"
|
|
8
|
+
GROUP = "group"
|
|
9
|
+
KEY = "key"
|
|
7
10
|
RESOURCE = "resource"
|
|
11
|
+
RESOURCETYPE = "resourcetype"
|
|
12
|
+
SCHEDULE = "schedule"
|
|
8
13
|
SCRIPT = "script"
|
|
9
14
|
SECRET = "secret"
|
|
15
|
+
SETTINGS = "settings"
|
|
10
16
|
TRIGGER = "trigger"
|
|
17
|
+
USER = "user"
|
|
11
18
|
VARIABLE = "variable"
|
|
12
19
|
|
|
13
20
|
def __str__(self) -> str:
|
|
@@ -4,10 +4,17 @@ from enum import Enum
|
|
|
4
4
|
class GetSettingsResponse200DeployUiIncludeTypeItem(str, Enum):
|
|
5
5
|
APP = "app"
|
|
6
6
|
FLOW = "flow"
|
|
7
|
+
FOLDER = "folder"
|
|
8
|
+
GROUP = "group"
|
|
9
|
+
KEY = "key"
|
|
7
10
|
RESOURCE = "resource"
|
|
11
|
+
RESOURCETYPE = "resourcetype"
|
|
12
|
+
SCHEDULE = "schedule"
|
|
8
13
|
SCRIPT = "script"
|
|
9
14
|
SECRET = "secret"
|
|
15
|
+
SETTINGS = "settings"
|
|
10
16
|
TRIGGER = "trigger"
|
|
17
|
+
USER = "user"
|
|
11
18
|
VARIABLE = "variable"
|
|
12
19
|
|
|
13
20
|
def __str__(self) -> str:
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
from enum import Enum
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
class GitSyncObjectType(str, Enum):
|
|
5
|
+
APP = "app"
|
|
6
|
+
FLOW = "flow"
|
|
7
|
+
FOLDER = "folder"
|
|
8
|
+
GROUP = "group"
|
|
9
|
+
KEY = "key"
|
|
10
|
+
RESOURCE = "resource"
|
|
11
|
+
RESOURCETYPE = "resourcetype"
|
|
12
|
+
SCHEDULE = "schedule"
|
|
13
|
+
SCRIPT = "script"
|
|
14
|
+
SECRET = "secret"
|
|
15
|
+
SETTINGS = "settings"
|
|
16
|
+
TRIGGER = "trigger"
|
|
17
|
+
USER = "user"
|
|
18
|
+
VARIABLE = "variable"
|
|
19
|
+
|
|
20
|
+
def __str__(self) -> str:
|
|
21
|
+
return str(self.value)
|
|
@@ -4,10 +4,17 @@ from enum import Enum
|
|
|
4
4
|
class WorkspaceDeployUISettingsIncludeTypeItem(str, Enum):
|
|
5
5
|
APP = "app"
|
|
6
6
|
FLOW = "flow"
|
|
7
|
+
FOLDER = "folder"
|
|
8
|
+
GROUP = "group"
|
|
9
|
+
KEY = "key"
|
|
7
10
|
RESOURCE = "resource"
|
|
11
|
+
RESOURCETYPE = "resourcetype"
|
|
12
|
+
SCHEDULE = "schedule"
|
|
8
13
|
SCRIPT = "script"
|
|
9
14
|
SECRET = "secret"
|
|
15
|
+
SETTINGS = "settings"
|
|
10
16
|
TRIGGER = "trigger"
|
|
17
|
+
USER = "user"
|
|
11
18
|
VARIABLE = "variable"
|
|
12
19
|
|
|
13
20
|
def __str__(self) -> str:
|
|
@@ -492,6 +492,7 @@ windmill_api/api/workspace/change_workspace_id.py,sha256=WfQ8Xg7XlFYrfylFL2yOZoF
|
|
|
492
492
|
windmill_api/api/workspace/change_workspace_name.py,sha256=Hn6tLyBBENBWwAaiel6ZQwcxoFUyqk4KzNCEDhuGWWk,2768
|
|
493
493
|
windmill_api/api/workspace/connect_teams.py,sha256=UyR9wjEspS0SrSsqLKyAEKQv3i3qDxxfG059yNmUoyE,2694
|
|
494
494
|
windmill_api/api/workspace/create_workspace.py,sha256=Ykhaqdsp0a5C6pkyNUYW8Js9LtCKgdi156KQf6tzElo,2481
|
|
495
|
+
windmill_api/api/workspace/delete_git_sync_repository.py,sha256=vTT0_IH4qHzLmqVcEsIrwSMKj_SAyPP1NtqVVdcCWD0,2902
|
|
495
496
|
windmill_api/api/workspace/delete_invite.py,sha256=PfwTA5svQKFrbl_aiDc4NkL4POvd9uDxHQFApD7OYRg,2704
|
|
496
497
|
windmill_api/api/workspace/delete_workspace.py,sha256=Ih8AA7J_MWllJwJ5vhM-At8rJsdk50lJxeqvjlv6HNQ,2336
|
|
497
498
|
windmill_api/api/workspace/edit_auto_invite.py,sha256=u-EY_aZyqp9vkXKWffDoNxCVheMLR9hDx0RCVYO0Muk,2718
|
|
@@ -499,6 +500,7 @@ windmill_api/api/workspace/edit_copilot_config.py,sha256=U1gPohEbsQwruoBnol6s5EQ
|
|
|
499
500
|
windmill_api/api/workspace/edit_default_scripts.py,sha256=Zi7xXuSAf7fiYJu6nerr5pX4Ah84VTAjhl8ZJvdxjek,2781
|
|
500
501
|
windmill_api/api/workspace/edit_deploy_to.py,sha256=BtRZYKI7gd_rWe1f6cTBlB-3cJbkx8-gpwQc25ITy8c,2698
|
|
501
502
|
windmill_api/api/workspace/edit_error_handler.py,sha256=irrmoodCXuXAXunXk40FNwCa3FujsXhEIjSI72d5EKI,2738
|
|
503
|
+
windmill_api/api/workspace/edit_git_sync_repository.py,sha256=oqHJO66ABplxfisCAkZVXuShV3qIJtG1AkjaGSxqF4M,2898
|
|
502
504
|
windmill_api/api/workspace/edit_large_file_storage_config.py,sha256=UA-R7P2K9b063Usw3yUJUDiMGOSAi2LvtPqeR8JOrXk,2916
|
|
503
505
|
windmill_api/api/workspace/edit_slack_command.py,sha256=cNttCBUoCbpx4UgFhETJxGgR84iLu5OUuyzp2aJM0_o,2738
|
|
504
506
|
windmill_api/api/workspace/edit_teams_command.py,sha256=17Ca1x5U8mlV0pebARt0wa8tZ-f4CWh4ax1Pc37L1_o,2738
|
|
@@ -1023,6 +1025,7 @@ windmill_api/models/delete_concurrency_group_response_200.py,sha256=u5nv5moNTDvM
|
|
|
1023
1025
|
windmill_api/models/delete_draft_kind.py,sha256=FkablilvEAPsxwvc-c6y6ojnVbkSADamhjOnhoiYoIw,176
|
|
1024
1026
|
windmill_api/models/delete_gcp_subscription.py,sha256=Ptl0B87KKlLJmDsd27g0-ed9ynbn1xvZeAXwxh1uKRs,1580
|
|
1025
1027
|
windmill_api/models/delete_gcp_subscription_json_body.py,sha256=niQeL_RYYeo_y2H6IouhWgBMeNcGCCH-XEySUTvHstA,1626
|
|
1028
|
+
windmill_api/models/delete_git_sync_repository_json_body.py,sha256=BaFjShy3ZMy47ktZHeVQpuuYry8vZBxz3Y4i-MKYwOw,1759
|
|
1026
1029
|
windmill_api/models/delete_invite_json_body.py,sha256=9Rws1BK_ai-18GzqcNQPNzg7me0lsC2qjOjqwVX7zV0,1846
|
|
1027
1030
|
windmill_api/models/delete_postgres_replication_slot_json_body.py,sha256=EYbc9ZhYbEGyqz3S4EWhuPtI5Dq5ZOqzWkrBYmU6II0,1646
|
|
1028
1031
|
windmill_api/models/delete_script_by_hash_response_200.py,sha256=3poVJjosE5o57_liUCrMvq6UQheXqd4j7w0ElfO6g2Q,13413
|
|
@@ -1057,6 +1060,11 @@ windmill_api/models/edit_default_scripts_json_body.py,sha256=ZStD18RpNC3spa5hcVc
|
|
|
1057
1060
|
windmill_api/models/edit_deploy_to_json_body.py,sha256=sLAkpLZdvhIu671Sz-AycSlpKfo1rSh4UM2JiZ_q9mA,1613
|
|
1058
1061
|
windmill_api/models/edit_error_handler_json_body.py,sha256=01ZCafsbWj458_zacBteZJBuiAt3bio2G5FEYvF--jA,3552
|
|
1059
1062
|
windmill_api/models/edit_error_handler_json_body_error_handler_extra_args.py,sha256=B7ouUC3nLUEshF7duEgrT3Yank6PfolQqqzmZ2G50Qk,1401
|
|
1063
|
+
windmill_api/models/edit_git_sync_repository_json_body.py,sha256=tsf-pCH6MebwWIFruFyUHjEGO7v7qChb3rfoSay-NHg,2348
|
|
1064
|
+
windmill_api/models/edit_git_sync_repository_json_body_repository.py,sha256=xIZPlChjjCsICdQSCsxA8No2_zOndWmAOVWTOvwc_HQ,5541
|
|
1065
|
+
windmill_api/models/edit_git_sync_repository_json_body_repository_exclude_types_override_item.py,sha256=QaUyv4RBkzp_fHVYWe6GPqwBqOw8v4NMRhOIOl8xb1Q,484
|
|
1066
|
+
windmill_api/models/edit_git_sync_repository_json_body_repository_settings.py,sha256=671MhID6kQtUZb2WD0nVe0PpC0kdF62eI3viEP1qKOw,4061
|
|
1067
|
+
windmill_api/models/edit_git_sync_repository_json_body_repository_settings_include_type_item.py,sha256=mgSzsaSLeBFG_lVUwGIxARoP-VM_m5iMnzDxJOap_sc,483
|
|
1060
1068
|
windmill_api/models/edit_http_trigger.py,sha256=79R-eImSt2ynbTAM43BgqZR4S1r7ouRt-kd4YK8rhis,8704
|
|
1061
1069
|
windmill_api/models/edit_http_trigger_authentication_method.py,sha256=b_x86fwhQ-QEXNYQ5DX0nWPIcv_x7I9GrsxVSN8svVo,302
|
|
1062
1070
|
windmill_api/models/edit_http_trigger_error_handler_args.py,sha256=59upn5Wd0EZhoeNO7N4ssi82USFnXrjQPbR-NFLCJ0s,1322
|
|
@@ -1133,7 +1141,7 @@ windmill_api/models/edit_websocket_trigger_url_runnable_args.py,sha256=GivVgB46S
|
|
|
1133
1141
|
windmill_api/models/edit_workspace_default_app_json_body.py,sha256=hs3168lbSVyFtxrgTvTFhPTT2W0dOwA7kOosgDUFhXI,1748
|
|
1134
1142
|
windmill_api/models/edit_workspace_deploy_ui_settings_json_body.py,sha256=2RMLswPTR7JJRJi7cTzy96k-Tp_tmxQJdlgGxgOqMn4,2728
|
|
1135
1143
|
windmill_api/models/edit_workspace_deploy_ui_settings_json_body_deploy_ui_settings.py,sha256=yLSmZ1940K1JBfoTQr16Sc1go-y3pGDg236hZmnvGeY,3177
|
|
1136
|
-
windmill_api/models/edit_workspace_deploy_ui_settings_json_body_deploy_ui_settings_include_type_item.py,sha256=
|
|
1144
|
+
windmill_api/models/edit_workspace_deploy_ui_settings_json_body_deploy_ui_settings_include_type_item.py,sha256=r8s9Bv1UjL0XF8tOOIQsJoCxtYFJiy0ogC4JsGxXKbQ,489
|
|
1137
1145
|
windmill_api/models/edit_workspace_git_sync_config_json_body.py,sha256=F2NtYaGpgWMw8mH6fZFMikW7Y1A2V2jSQN1RaKb_y3U,2663
|
|
1138
1146
|
windmill_api/models/edit_workspace_git_sync_config_json_body_git_sync_settings.py,sha256=tRgcb_urChFCIoOF_S7cikJqeq6hLIpUT3bhQEle6yg,2957
|
|
1139
1147
|
windmill_api/models/edit_workspace_git_sync_config_json_body_git_sync_settings_repositories_item.py,sha256=LJTJEOb8fXz7V87WrkfmbQjjDiHpSg-ajC5njUNItl0,6105
|
|
@@ -2407,7 +2415,7 @@ windmill_api/models/get_settings_response_200_ai_config_providers.py,sha256=oyho
|
|
|
2407
2415
|
windmill_api/models/get_settings_response_200_ai_config_providers_additional_property.py,sha256=4JnzjzLs4SqNcMA9MUgPrFrddA5ZuxSRVEQgpPaARnY,1955
|
|
2408
2416
|
windmill_api/models/get_settings_response_200_default_scripts.py,sha256=Jj7LAapGLNObPcReGeCxbFSgHJ-0V8FJc8hPKVyrhME,2580
|
|
2409
2417
|
windmill_api/models/get_settings_response_200_deploy_ui.py,sha256=ObNS_KBx9zQipqeKubJiNlzjBsVmNvpC0TZflBUkO2w,2892
|
|
2410
|
-
windmill_api/models/get_settings_response_200_deploy_ui_include_type_item.py,sha256=
|
|
2418
|
+
windmill_api/models/get_settings_response_200_deploy_ui_include_type_item.py,sha256=KkE8MVr73WktoMFjipPBv_lhe8sFZBWgAhhuHgmebFk,466
|
|
2411
2419
|
windmill_api/models/get_settings_response_200_error_handler_extra_args.py,sha256=uUuDIJzSay50l4_UmGDqp2egUY5a7ke2lOSPQXr0MOc,1388
|
|
2412
2420
|
windmill_api/models/get_settings_response_200_git_sync.py,sha256=GtXLBGjf98Mfhb2Fw1jasklJF_xSQEMwcNfwaa6SCH8,2667
|
|
2413
2421
|
windmill_api/models/get_settings_response_200_git_sync_repositories_item.py,sha256=A_S8sZgFMWqCG6aGcgD06r4m_rHQEolYSzP7IiLf3RQ,5681
|
|
@@ -2634,6 +2642,7 @@ windmill_api/models/git_repository_settings.py,sha256=UMuFUfq9jZIv7tMNkHl7mrkNHJ
|
|
|
2634
2642
|
windmill_api/models/git_repository_settings_exclude_types_override_item.py,sha256=UgHD6OCUPd7AZ4J9DEH14ZZZg010hizcPzlHb8g0d6A,466
|
|
2635
2643
|
windmill_api/models/git_repository_settings_settings.py,sha256=J5A0J2GUmiXWAPS-jt8JWZcdgxRht_XBJz8PP8DxcCE,3856
|
|
2636
2644
|
windmill_api/models/git_repository_settings_settings_include_type_item.py,sha256=5I72KGK9v7h3uQX3a-aJarho1a5MlU5Z20h4ze4EBao,465
|
|
2645
|
+
windmill_api/models/git_sync_object_type.py,sha256=m8G9lKLN4bWeWuVIgOWSSw_5OcIev0noO4R36ENbsg4,438
|
|
2637
2646
|
windmill_api/models/github_installations_item.py,sha256=eQZySpUmGB8XibjaE1F7Iu11KtFr_Z7x_2XIM-RPsGU,3114
|
|
2638
2647
|
windmill_api/models/github_installations_item_repositories_item.py,sha256=ui-qQICI5iywFMczl6pDy3Ppaw1KsEkgex1HrNlkoaE,1698
|
|
2639
2648
|
windmill_api/models/global_setting.py,sha256=NZxAwAz5Rh8LMvpHqRAaVZhF0-cXR9897d1lyNrXeTU,1821
|
|
@@ -4342,7 +4351,7 @@ windmill_api/models/workflow_task_args.py,sha256=qD7ND40ouWFGyxhaClyYH7nuxoiLYWH
|
|
|
4342
4351
|
windmill_api/models/workspace.py,sha256=d1PlltBiIZja443tNwf3lXCNVq6oMJfU_FI0Qr_rFuE,2198
|
|
4343
4352
|
windmill_api/models/workspace_default_scripts.py,sha256=TAOqlGzBp4x1g8fOcTThWpqpjxTDcJZ1yE0s-_yOsnc,2506
|
|
4344
4353
|
windmill_api/models/workspace_deploy_ui_settings.py,sha256=TGzzRl609jiVEVW4VwqeB98R8s-IyyEelRXGh7M3io4,2834
|
|
4345
|
-
windmill_api/models/workspace_deploy_ui_settings_include_type_item.py,sha256=
|
|
4354
|
+
windmill_api/models/workspace_deploy_ui_settings_include_type_item.py,sha256=O1mvUwqzld2z9TuFnA13i_ghk_5-lqmAH1IYa5Iezvw,461
|
|
4346
4355
|
windmill_api/models/workspace_get_critical_alerts_response_200.py,sha256=1Io4I9aWkg7GGDJYwQWSBNTW_vFAW4-MhTLKf5pmnmM,3275
|
|
4347
4356
|
windmill_api/models/workspace_get_critical_alerts_response_200_alerts_item.py,sha256=pjAKMe8U_VlNECSoGlYxiNAIevL-B6hjLfZn39v6RNw,3823
|
|
4348
4357
|
windmill_api/models/workspace_git_sync_settings.py,sha256=2f0o0KBsKj3EGS5SHsxxUbY_vzTnv3P6k9nLL7-1jQg,2555
|
|
@@ -4355,7 +4364,7 @@ windmill_api/models/workspace_invite.py,sha256=HnAJWGv5LwxWkz1T3fhgHKIccO7RFC1li
|
|
|
4355
4364
|
windmill_api/models/workspace_mute_critical_alerts_ui_json_body.py,sha256=y8ZwkWEZgavVc-FgLuZZ4z8YPCLxjPcMfdGdKjGM6VQ,1883
|
|
4356
4365
|
windmill_api/py.typed,sha256=8ZJUsxZiuOy1oJeVhsTWQhTG_6pTVHVXk5hJL79ebTk,25
|
|
4357
4366
|
windmill_api/types.py,sha256=GoYub3t4hQP2Yn5tsvShsBfIY3vHUmblU0MXszDx_V0,968
|
|
4358
|
-
windmill_api-1.
|
|
4359
|
-
windmill_api-1.
|
|
4360
|
-
windmill_api-1.
|
|
4361
|
-
windmill_api-1.
|
|
4367
|
+
windmill_api-1.516.0.dist-info/LICENSE,sha256=qJVFNTaOevCeSY6NoXeUG1SPOwQ1K-PxVQ2iEWJzX-A,11348
|
|
4368
|
+
windmill_api-1.516.0.dist-info/METADATA,sha256=SZ8YiilMOLOdTvFBq31qrt7o5kv2-qmD6P5oDLFpHPw,5023
|
|
4369
|
+
windmill_api-1.516.0.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
|
|
4370
|
+
windmill_api-1.516.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|