windmill-api 1.525.0__py3-none-any.whl → 1.526.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/group/list_instance_groups_with_workspaces.py +133 -0
- windmill_api/api/workspace/edit_instance_groups.py +105 -0
- windmill_api/models/edit_instance_groups_json_body.py +82 -0
- windmill_api/models/edit_instance_groups_json_body_roles.py +44 -0
- windmill_api/models/get_settings_response_200.py +36 -1
- windmill_api/models/get_settings_response_200_auto_add_instance_groups_roles.py +44 -0
- windmill_api/models/get_user_response_200.py +25 -1
- windmill_api/models/get_user_response_200_added_via.py +78 -0
- windmill_api/models/get_user_response_200_added_via_source.py +10 -0
- windmill_api/models/instance_group_with_workspaces.py +104 -0
- windmill_api/models/instance_group_with_workspaces_workspaces_item.py +74 -0
- windmill_api/models/list_instance_groups_with_workspaces_response_200_item.py +110 -0
- windmill_api/models/list_instance_groups_with_workspaces_response_200_item_workspaces_item.py +74 -0
- windmill_api/models/list_users_response_200_item.py +25 -1
- windmill_api/models/list_users_response_200_item_added_via.py +78 -0
- windmill_api/models/list_users_response_200_item_added_via_source.py +10 -0
- windmill_api/models/user.py +25 -1
- windmill_api/models/user_added_via.py +78 -0
- windmill_api/models/user_added_via_source.py +10 -0
- windmill_api/models/user_source.py +78 -0
- windmill_api/models/user_source_source.py +10 -0
- windmill_api/models/whoami_response_200.py +25 -1
- windmill_api/models/whoami_response_200_added_via.py +78 -0
- windmill_api/models/whoami_response_200_added_via_source.py +10 -0
- windmill_api/models/whois_response_200.py +25 -1
- windmill_api/models/whois_response_200_added_via.py +78 -0
- windmill_api/models/whois_response_200_added_via_source.py +10 -0
- windmill_api/models/workspace_info.py +74 -0
- {windmill_api-1.525.0.dist-info → windmill_api-1.526.0.dist-info}/METADATA +1 -1
- {windmill_api-1.525.0.dist-info → windmill_api-1.526.0.dist-info}/RECORD +32 -10
- {windmill_api-1.525.0.dist-info → windmill_api-1.526.0.dist-info}/LICENSE +0 -0
- {windmill_api-1.525.0.dist-info → windmill_api-1.526.0.dist-info}/WHEEL +0 -0
|
@@ -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.user_source_source import UserSourceSource
|
|
7
|
+
from ..types import UNSET, Unset
|
|
8
|
+
|
|
9
|
+
T = TypeVar("T", bound="UserSource")
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
@_attrs_define
|
|
13
|
+
class UserSource:
|
|
14
|
+
"""
|
|
15
|
+
Attributes:
|
|
16
|
+
source (UserSourceSource): How the user was added to the workspace
|
|
17
|
+
domain (Union[Unset, str]): The domain used for auto-invite (when source is 'domain')
|
|
18
|
+
group (Union[Unset, str]): The instance group name (when source is 'instance_group')
|
|
19
|
+
"""
|
|
20
|
+
|
|
21
|
+
source: UserSourceSource
|
|
22
|
+
domain: Union[Unset, str] = UNSET
|
|
23
|
+
group: 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
|
+
source = self.source.value
|
|
28
|
+
|
|
29
|
+
domain = self.domain
|
|
30
|
+
group = self.group
|
|
31
|
+
|
|
32
|
+
field_dict: Dict[str, Any] = {}
|
|
33
|
+
field_dict.update(self.additional_properties)
|
|
34
|
+
field_dict.update(
|
|
35
|
+
{
|
|
36
|
+
"source": source,
|
|
37
|
+
}
|
|
38
|
+
)
|
|
39
|
+
if domain is not UNSET:
|
|
40
|
+
field_dict["domain"] = domain
|
|
41
|
+
if group is not UNSET:
|
|
42
|
+
field_dict["group"] = group
|
|
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
|
+
source = UserSourceSource(d.pop("source"))
|
|
50
|
+
|
|
51
|
+
domain = d.pop("domain", UNSET)
|
|
52
|
+
|
|
53
|
+
group = d.pop("group", UNSET)
|
|
54
|
+
|
|
55
|
+
user_source = cls(
|
|
56
|
+
source=source,
|
|
57
|
+
domain=domain,
|
|
58
|
+
group=group,
|
|
59
|
+
)
|
|
60
|
+
|
|
61
|
+
user_source.additional_properties = d
|
|
62
|
+
return user_source
|
|
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
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import datetime
|
|
2
|
-
from typing import Any, Dict, List, Type, TypeVar, Union, cast
|
|
2
|
+
from typing import TYPE_CHECKING, Any, Dict, List, Type, TypeVar, Union, cast
|
|
3
3
|
|
|
4
4
|
from attrs import define as _attrs_define
|
|
5
5
|
from attrs import field as _attrs_field
|
|
@@ -7,6 +7,10 @@ from dateutil.parser import isoparse
|
|
|
7
7
|
|
|
8
8
|
from ..types import UNSET, Unset
|
|
9
9
|
|
|
10
|
+
if TYPE_CHECKING:
|
|
11
|
+
from ..models.whoami_response_200_added_via import WhoamiResponse200AddedVia
|
|
12
|
+
|
|
13
|
+
|
|
10
14
|
T = TypeVar("T", bound="WhoamiResponse200")
|
|
11
15
|
|
|
12
16
|
|
|
@@ -25,6 +29,7 @@ class WhoamiResponse200:
|
|
|
25
29
|
folders_owners (List[str]):
|
|
26
30
|
name (Union[Unset, str]):
|
|
27
31
|
groups (Union[Unset, List[str]]):
|
|
32
|
+
added_via (Union[Unset, None, WhoamiResponse200AddedVia]):
|
|
28
33
|
"""
|
|
29
34
|
|
|
30
35
|
email: str
|
|
@@ -38,6 +43,7 @@ class WhoamiResponse200:
|
|
|
38
43
|
folders_owners: List[str]
|
|
39
44
|
name: Union[Unset, str] = UNSET
|
|
40
45
|
groups: Union[Unset, List[str]] = UNSET
|
|
46
|
+
added_via: Union[Unset, None, "WhoamiResponse200AddedVia"] = UNSET
|
|
41
47
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
42
48
|
|
|
43
49
|
def to_dict(self) -> Dict[str, Any]:
|
|
@@ -58,6 +64,10 @@ class WhoamiResponse200:
|
|
|
58
64
|
if not isinstance(self.groups, Unset):
|
|
59
65
|
groups = self.groups
|
|
60
66
|
|
|
67
|
+
added_via: Union[Unset, None, Dict[str, Any]] = UNSET
|
|
68
|
+
if not isinstance(self.added_via, Unset):
|
|
69
|
+
added_via = self.added_via.to_dict() if self.added_via else None
|
|
70
|
+
|
|
61
71
|
field_dict: Dict[str, Any] = {}
|
|
62
72
|
field_dict.update(self.additional_properties)
|
|
63
73
|
field_dict.update(
|
|
@@ -77,11 +87,15 @@ class WhoamiResponse200:
|
|
|
77
87
|
field_dict["name"] = name
|
|
78
88
|
if groups is not UNSET:
|
|
79
89
|
field_dict["groups"] = groups
|
|
90
|
+
if added_via is not UNSET:
|
|
91
|
+
field_dict["added_via"] = added_via
|
|
80
92
|
|
|
81
93
|
return field_dict
|
|
82
94
|
|
|
83
95
|
@classmethod
|
|
84
96
|
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
97
|
+
from ..models.whoami_response_200_added_via import WhoamiResponse200AddedVia
|
|
98
|
+
|
|
85
99
|
d = src_dict.copy()
|
|
86
100
|
email = d.pop("email")
|
|
87
101
|
|
|
@@ -105,6 +119,15 @@ class WhoamiResponse200:
|
|
|
105
119
|
|
|
106
120
|
groups = cast(List[str], d.pop("groups", UNSET))
|
|
107
121
|
|
|
122
|
+
_added_via = d.pop("added_via", UNSET)
|
|
123
|
+
added_via: Union[Unset, None, WhoamiResponse200AddedVia]
|
|
124
|
+
if _added_via is None:
|
|
125
|
+
added_via = None
|
|
126
|
+
elif isinstance(_added_via, Unset):
|
|
127
|
+
added_via = UNSET
|
|
128
|
+
else:
|
|
129
|
+
added_via = WhoamiResponse200AddedVia.from_dict(_added_via)
|
|
130
|
+
|
|
108
131
|
whoami_response_200 = cls(
|
|
109
132
|
email=email,
|
|
110
133
|
username=username,
|
|
@@ -117,6 +140,7 @@ class WhoamiResponse200:
|
|
|
117
140
|
folders_owners=folders_owners,
|
|
118
141
|
name=name,
|
|
119
142
|
groups=groups,
|
|
143
|
+
added_via=added_via,
|
|
120
144
|
)
|
|
121
145
|
|
|
122
146
|
whoami_response_200.additional_properties = d
|
|
@@ -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.whoami_response_200_added_via_source import WhoamiResponse200AddedViaSource
|
|
7
|
+
from ..types import UNSET, Unset
|
|
8
|
+
|
|
9
|
+
T = TypeVar("T", bound="WhoamiResponse200AddedVia")
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
@_attrs_define
|
|
13
|
+
class WhoamiResponse200AddedVia:
|
|
14
|
+
"""
|
|
15
|
+
Attributes:
|
|
16
|
+
source (WhoamiResponse200AddedViaSource): How the user was added to the workspace
|
|
17
|
+
domain (Union[Unset, str]): The domain used for auto-invite (when source is 'domain')
|
|
18
|
+
group (Union[Unset, str]): The instance group name (when source is 'instance_group')
|
|
19
|
+
"""
|
|
20
|
+
|
|
21
|
+
source: WhoamiResponse200AddedViaSource
|
|
22
|
+
domain: Union[Unset, str] = UNSET
|
|
23
|
+
group: 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
|
+
source = self.source.value
|
|
28
|
+
|
|
29
|
+
domain = self.domain
|
|
30
|
+
group = self.group
|
|
31
|
+
|
|
32
|
+
field_dict: Dict[str, Any] = {}
|
|
33
|
+
field_dict.update(self.additional_properties)
|
|
34
|
+
field_dict.update(
|
|
35
|
+
{
|
|
36
|
+
"source": source,
|
|
37
|
+
}
|
|
38
|
+
)
|
|
39
|
+
if domain is not UNSET:
|
|
40
|
+
field_dict["domain"] = domain
|
|
41
|
+
if group is not UNSET:
|
|
42
|
+
field_dict["group"] = group
|
|
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
|
+
source = WhoamiResponse200AddedViaSource(d.pop("source"))
|
|
50
|
+
|
|
51
|
+
domain = d.pop("domain", UNSET)
|
|
52
|
+
|
|
53
|
+
group = d.pop("group", UNSET)
|
|
54
|
+
|
|
55
|
+
whoami_response_200_added_via = cls(
|
|
56
|
+
source=source,
|
|
57
|
+
domain=domain,
|
|
58
|
+
group=group,
|
|
59
|
+
)
|
|
60
|
+
|
|
61
|
+
whoami_response_200_added_via.additional_properties = d
|
|
62
|
+
return whoami_response_200_added_via
|
|
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
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import datetime
|
|
2
|
-
from typing import Any, Dict, List, Type, TypeVar, Union, cast
|
|
2
|
+
from typing import TYPE_CHECKING, Any, Dict, List, Type, TypeVar, Union, cast
|
|
3
3
|
|
|
4
4
|
from attrs import define as _attrs_define
|
|
5
5
|
from attrs import field as _attrs_field
|
|
@@ -7,6 +7,10 @@ from dateutil.parser import isoparse
|
|
|
7
7
|
|
|
8
8
|
from ..types import UNSET, Unset
|
|
9
9
|
|
|
10
|
+
if TYPE_CHECKING:
|
|
11
|
+
from ..models.whois_response_200_added_via import WhoisResponse200AddedVia
|
|
12
|
+
|
|
13
|
+
|
|
10
14
|
T = TypeVar("T", bound="WhoisResponse200")
|
|
11
15
|
|
|
12
16
|
|
|
@@ -25,6 +29,7 @@ class WhoisResponse200:
|
|
|
25
29
|
folders_owners (List[str]):
|
|
26
30
|
name (Union[Unset, str]):
|
|
27
31
|
groups (Union[Unset, List[str]]):
|
|
32
|
+
added_via (Union[Unset, None, WhoisResponse200AddedVia]):
|
|
28
33
|
"""
|
|
29
34
|
|
|
30
35
|
email: str
|
|
@@ -38,6 +43,7 @@ class WhoisResponse200:
|
|
|
38
43
|
folders_owners: List[str]
|
|
39
44
|
name: Union[Unset, str] = UNSET
|
|
40
45
|
groups: Union[Unset, List[str]] = UNSET
|
|
46
|
+
added_via: Union[Unset, None, "WhoisResponse200AddedVia"] = UNSET
|
|
41
47
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
42
48
|
|
|
43
49
|
def to_dict(self) -> Dict[str, Any]:
|
|
@@ -58,6 +64,10 @@ class WhoisResponse200:
|
|
|
58
64
|
if not isinstance(self.groups, Unset):
|
|
59
65
|
groups = self.groups
|
|
60
66
|
|
|
67
|
+
added_via: Union[Unset, None, Dict[str, Any]] = UNSET
|
|
68
|
+
if not isinstance(self.added_via, Unset):
|
|
69
|
+
added_via = self.added_via.to_dict() if self.added_via else None
|
|
70
|
+
|
|
61
71
|
field_dict: Dict[str, Any] = {}
|
|
62
72
|
field_dict.update(self.additional_properties)
|
|
63
73
|
field_dict.update(
|
|
@@ -77,11 +87,15 @@ class WhoisResponse200:
|
|
|
77
87
|
field_dict["name"] = name
|
|
78
88
|
if groups is not UNSET:
|
|
79
89
|
field_dict["groups"] = groups
|
|
90
|
+
if added_via is not UNSET:
|
|
91
|
+
field_dict["added_via"] = added_via
|
|
80
92
|
|
|
81
93
|
return field_dict
|
|
82
94
|
|
|
83
95
|
@classmethod
|
|
84
96
|
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
97
|
+
from ..models.whois_response_200_added_via import WhoisResponse200AddedVia
|
|
98
|
+
|
|
85
99
|
d = src_dict.copy()
|
|
86
100
|
email = d.pop("email")
|
|
87
101
|
|
|
@@ -105,6 +119,15 @@ class WhoisResponse200:
|
|
|
105
119
|
|
|
106
120
|
groups = cast(List[str], d.pop("groups", UNSET))
|
|
107
121
|
|
|
122
|
+
_added_via = d.pop("added_via", UNSET)
|
|
123
|
+
added_via: Union[Unset, None, WhoisResponse200AddedVia]
|
|
124
|
+
if _added_via is None:
|
|
125
|
+
added_via = None
|
|
126
|
+
elif isinstance(_added_via, Unset):
|
|
127
|
+
added_via = UNSET
|
|
128
|
+
else:
|
|
129
|
+
added_via = WhoisResponse200AddedVia.from_dict(_added_via)
|
|
130
|
+
|
|
108
131
|
whois_response_200 = cls(
|
|
109
132
|
email=email,
|
|
110
133
|
username=username,
|
|
@@ -117,6 +140,7 @@ class WhoisResponse200:
|
|
|
117
140
|
folders_owners=folders_owners,
|
|
118
141
|
name=name,
|
|
119
142
|
groups=groups,
|
|
143
|
+
added_via=added_via,
|
|
120
144
|
)
|
|
121
145
|
|
|
122
146
|
whois_response_200.additional_properties = d
|
|
@@ -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.whois_response_200_added_via_source import WhoisResponse200AddedViaSource
|
|
7
|
+
from ..types import UNSET, Unset
|
|
8
|
+
|
|
9
|
+
T = TypeVar("T", bound="WhoisResponse200AddedVia")
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
@_attrs_define
|
|
13
|
+
class WhoisResponse200AddedVia:
|
|
14
|
+
"""
|
|
15
|
+
Attributes:
|
|
16
|
+
source (WhoisResponse200AddedViaSource): How the user was added to the workspace
|
|
17
|
+
domain (Union[Unset, str]): The domain used for auto-invite (when source is 'domain')
|
|
18
|
+
group (Union[Unset, str]): The instance group name (when source is 'instance_group')
|
|
19
|
+
"""
|
|
20
|
+
|
|
21
|
+
source: WhoisResponse200AddedViaSource
|
|
22
|
+
domain: Union[Unset, str] = UNSET
|
|
23
|
+
group: 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
|
+
source = self.source.value
|
|
28
|
+
|
|
29
|
+
domain = self.domain
|
|
30
|
+
group = self.group
|
|
31
|
+
|
|
32
|
+
field_dict: Dict[str, Any] = {}
|
|
33
|
+
field_dict.update(self.additional_properties)
|
|
34
|
+
field_dict.update(
|
|
35
|
+
{
|
|
36
|
+
"source": source,
|
|
37
|
+
}
|
|
38
|
+
)
|
|
39
|
+
if domain is not UNSET:
|
|
40
|
+
field_dict["domain"] = domain
|
|
41
|
+
if group is not UNSET:
|
|
42
|
+
field_dict["group"] = group
|
|
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
|
+
source = WhoisResponse200AddedViaSource(d.pop("source"))
|
|
50
|
+
|
|
51
|
+
domain = d.pop("domain", UNSET)
|
|
52
|
+
|
|
53
|
+
group = d.pop("group", UNSET)
|
|
54
|
+
|
|
55
|
+
whois_response_200_added_via = cls(
|
|
56
|
+
source=source,
|
|
57
|
+
domain=domain,
|
|
58
|
+
group=group,
|
|
59
|
+
)
|
|
60
|
+
|
|
61
|
+
whois_response_200_added_via.additional_properties = d
|
|
62
|
+
return whois_response_200_added_via
|
|
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
|
|
@@ -0,0 +1,74 @@
|
|
|
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 ..types import UNSET, Unset
|
|
7
|
+
|
|
8
|
+
T = TypeVar("T", bound="WorkspaceInfo")
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
@_attrs_define
|
|
12
|
+
class WorkspaceInfo:
|
|
13
|
+
"""
|
|
14
|
+
Attributes:
|
|
15
|
+
workspace_id (Union[Unset, str]):
|
|
16
|
+
workspace_name (Union[Unset, str]):
|
|
17
|
+
role (Union[Unset, str]):
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
workspace_id: Union[Unset, str] = UNSET
|
|
21
|
+
workspace_name: Union[Unset, str] = UNSET
|
|
22
|
+
role: 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
|
+
workspace_id = self.workspace_id
|
|
27
|
+
workspace_name = self.workspace_name
|
|
28
|
+
role = self.role
|
|
29
|
+
|
|
30
|
+
field_dict: Dict[str, Any] = {}
|
|
31
|
+
field_dict.update(self.additional_properties)
|
|
32
|
+
field_dict.update({})
|
|
33
|
+
if workspace_id is not UNSET:
|
|
34
|
+
field_dict["workspace_id"] = workspace_id
|
|
35
|
+
if workspace_name is not UNSET:
|
|
36
|
+
field_dict["workspace_name"] = workspace_name
|
|
37
|
+
if role is not UNSET:
|
|
38
|
+
field_dict["role"] = role
|
|
39
|
+
|
|
40
|
+
return field_dict
|
|
41
|
+
|
|
42
|
+
@classmethod
|
|
43
|
+
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
44
|
+
d = src_dict.copy()
|
|
45
|
+
workspace_id = d.pop("workspace_id", UNSET)
|
|
46
|
+
|
|
47
|
+
workspace_name = d.pop("workspace_name", UNSET)
|
|
48
|
+
|
|
49
|
+
role = d.pop("role", UNSET)
|
|
50
|
+
|
|
51
|
+
workspace_info = cls(
|
|
52
|
+
workspace_id=workspace_id,
|
|
53
|
+
workspace_name=workspace_name,
|
|
54
|
+
role=role,
|
|
55
|
+
)
|
|
56
|
+
|
|
57
|
+
workspace_info.additional_properties = d
|
|
58
|
+
return workspace_info
|
|
59
|
+
|
|
60
|
+
@property
|
|
61
|
+
def additional_keys(self) -> List[str]:
|
|
62
|
+
return list(self.additional_properties.keys())
|
|
63
|
+
|
|
64
|
+
def __getitem__(self, key: str) -> Any:
|
|
65
|
+
return self.additional_properties[key]
|
|
66
|
+
|
|
67
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
68
|
+
self.additional_properties[key] = value
|
|
69
|
+
|
|
70
|
+
def __delitem__(self, key: str) -> None:
|
|
71
|
+
del self.additional_properties[key]
|
|
72
|
+
|
|
73
|
+
def __contains__(self, key: str) -> bool:
|
|
74
|
+
return key in self.additional_properties
|
|
@@ -134,6 +134,7 @@ windmill_api/api/group/get_instance_group.py,sha256=AnZiMttzRVPITifg86gJHwX0gtud
|
|
|
134
134
|
windmill_api/api/group/list_group_names.py,sha256=TqxDm5cIgF5f4d107lqI6nhbmHnjD8OcmiRHgUaX56U,4417
|
|
135
135
|
windmill_api/api/group/list_groups.py,sha256=F-t8rWTUOLtI_8uOiKWJE8HkE5B2KaWCtz5uUvDuOgo,5282
|
|
136
136
|
windmill_api/api/group/list_instance_groups.py,sha256=XrDJEbqB3Nme8Ssd_QuUP6F5fInXZ5W_Y3HyGB-voA0,3780
|
|
137
|
+
windmill_api/api/group/list_instance_groups_with_workspaces.py,sha256=gg1Rv3F42pzE00v3zf16BQgjQyyHVdjNVH3mc3BBprs,4097
|
|
137
138
|
windmill_api/api/group/overwrite_instance_groups.py,sha256=plRilnz163Gs84CzmVTxha9_NTUW59nSQm2jNOk6x0E,2757
|
|
138
139
|
windmill_api/api/group/remove_user_from_instance_group.py,sha256=OaOnP-TUy6ZylRb9lN1gqinnHpMTyzX1_Yji2WMIj8A,2769
|
|
139
140
|
windmill_api/api/group/remove_user_to_group.py,sha256=cXmWkLNp6J5BX-itxvP5S5LTVOIexcM9NMPve0-ukUc,2891
|
|
@@ -507,6 +508,7 @@ windmill_api/api/workspace/edit_deploy_to.py,sha256=BtRZYKI7gd_rWe1f6cTBlB-3cJbk
|
|
|
507
508
|
windmill_api/api/workspace/edit_ducklake_config.py,sha256=nFY2QazFXIV4fgJs-jOC60tgUbYCJntOeEvTyOacvXk,2828
|
|
508
509
|
windmill_api/api/workspace/edit_error_handler.py,sha256=irrmoodCXuXAXunXk40FNwCa3FujsXhEIjSI72d5EKI,2738
|
|
509
510
|
windmill_api/api/workspace/edit_git_sync_repository.py,sha256=oqHJO66ABplxfisCAkZVXuShV3qIJtG1AkjaGSxqF4M,2898
|
|
511
|
+
windmill_api/api/workspace/edit_instance_groups.py,sha256=Ec6rJDCkRFCjmBGPxVEH7CjEey-dsDH9xuqjDTOSSz0,2758
|
|
510
512
|
windmill_api/api/workspace/edit_large_file_storage_config.py,sha256=UA-R7P2K9b063Usw3yUJUDiMGOSAi2LvtPqeR8JOrXk,2916
|
|
511
513
|
windmill_api/api/workspace/edit_slack_command.py,sha256=cNttCBUoCbpx4UgFhETJxGgR84iLu5OUuyzp2aJM0_o,2738
|
|
512
514
|
windmill_api/api/workspace/edit_teams_command.py,sha256=17Ca1x5U8mlV0pebARt0wa8tZ-f4CWh4ax1Pc37L1_o,2738
|
|
@@ -1093,6 +1095,8 @@ windmill_api/models/edit_http_trigger_retry.py,sha256=g2ADMrRu2cf2ovWcxlpMcIfBNU
|
|
|
1093
1095
|
windmill_api/models/edit_http_trigger_retry_constant.py,sha256=9OqKQmrIueCJKNnciDjZLa7kJ8_AF5w8V5PzfwOb3jM,1898
|
|
1094
1096
|
windmill_api/models/edit_http_trigger_retry_exponential.py,sha256=ZDzNOVRski6sqMnC1wgNCb2XLc4rzO43zHyC72fJ874,2524
|
|
1095
1097
|
windmill_api/models/edit_http_trigger_static_asset_config.py,sha256=ug13LgqJdVbpl2T-8nURo5vYpuIK9pL2AxlyVQD315U,2078
|
|
1098
|
+
windmill_api/models/edit_instance_groups_json_body.py,sha256=JwAiEGaerEZpjr0tVuljNh3gm-jKzCUv-xmdhR1lsZE,2587
|
|
1099
|
+
windmill_api/models/edit_instance_groups_json_body_roles.py,sha256=cVKA3IgvLbHM5-tYMjOn4zGFhIf-fEZ62BINgRJsS_w,1322
|
|
1096
1100
|
windmill_api/models/edit_kafka_trigger.py,sha256=OCU3uI58KREHHOw6jTbfFa-7gFIlW2-FlAQakVILujU,4772
|
|
1097
1101
|
windmill_api/models/edit_kafka_trigger_error_handler_args.py,sha256=ihOu3NSUG-7EeAzko8jKBULg6YoXLYURvVWJBHVzKmA,1369
|
|
1098
1102
|
windmill_api/models/edit_kafka_trigger_retry.py,sha256=3Re63v9NlZ5caJiAvwwp_jsPWILo0qdkK-4Tvy2qMQU,3136
|
|
@@ -2431,7 +2435,7 @@ windmill_api/models/get_script_by_path_with_draft_response_200_schema.py,sha256=
|
|
|
2431
2435
|
windmill_api/models/get_script_deployment_status_response_200.py,sha256=xmVrdonWouCGM_3MdoVNSuaAWN8Qt7erpLpfhfauU5c,1985
|
|
2432
2436
|
windmill_api/models/get_script_history_by_path_response_200_item.py,sha256=vc0iaH2j8BKXxXtjtEg7-lollyA5OxPLYoJsjSUiqc8,2009
|
|
2433
2437
|
windmill_api/models/get_script_latest_version_response_200.py,sha256=tQENYMrpuFKHrllSdlpHe-P_EnWq74-07mDWIfDEres,1983
|
|
2434
|
-
windmill_api/models/get_settings_response_200.py,sha256=
|
|
2438
|
+
windmill_api/models/get_settings_response_200.py,sha256=fnY7o7JFA66iqc-Iq_qDxb5VqUHetPbOxHmF_Tfmses,17749
|
|
2435
2439
|
windmill_api/models/get_settings_response_200_ai_config.py,sha256=P_VrH39kaoP6rFYRF1sgXQ1SQJq-242rligDMBZCaWw,4723
|
|
2436
2440
|
windmill_api/models/get_settings_response_200_ai_config_code_completion_model.py,sha256=gIlLC7OwaC5oRgDHFDVa8n0V9ZTiLd7-EjlThJ2UQPY,2149
|
|
2437
2441
|
windmill_api/models/get_settings_response_200_ai_config_code_completion_model_provider.py,sha256=VnxuHQRCiavp1ClBK73i8CBWKy-tISmd9L6kOa7rErw,426
|
|
@@ -2439,6 +2443,7 @@ windmill_api/models/get_settings_response_200_ai_config_default_model.py,sha256=
|
|
|
2439
2443
|
windmill_api/models/get_settings_response_200_ai_config_default_model_provider.py,sha256=1ylh9pZoeXtOtonloEA6jNqvKwzEEb_3yGFxnOP7t58,419
|
|
2440
2444
|
windmill_api/models/get_settings_response_200_ai_config_providers.py,sha256=oyho6YbVKk55VtmfgZ6BAodW5yV2eONSrNWm01wi5z0,2290
|
|
2441
2445
|
windmill_api/models/get_settings_response_200_ai_config_providers_additional_property.py,sha256=4JnzjzLs4SqNcMA9MUgPrFrddA5ZuxSRVEQgpPaARnY,1955
|
|
2446
|
+
windmill_api/models/get_settings_response_200_auto_add_instance_groups_roles.py,sha256=CuT4zWJEFerFswVck5DmvgVUyI7V7R8AJ_TdwNIiTtg,1416
|
|
2442
2447
|
windmill_api/models/get_settings_response_200_default_scripts.py,sha256=Jj7LAapGLNObPcReGeCxbFSgHJ-0V8FJc8hPKVyrhME,2580
|
|
2443
2448
|
windmill_api/models/get_settings_response_200_deploy_ui.py,sha256=ObNS_KBx9zQipqeKubJiNlzjBsVmNvpC0TZflBUkO2w,2892
|
|
2444
2449
|
windmill_api/models/get_settings_response_200_deploy_ui_include_type_item.py,sha256=KkE8MVr73WktoMFjipPBv_lhe8sFZBWgAhhuHgmebFk,466
|
|
@@ -2653,7 +2658,9 @@ windmill_api/models/get_triggers_count_of_script_response_200.py,sha256=PNAAR_FI
|
|
|
2653
2658
|
windmill_api/models/get_triggers_count_of_script_response_200_primary_schedule.py,sha256=pf1m2mjKwEN7_8ugaE4cE-jVXFyXngryOctpXY9qX9w,1764
|
|
2654
2659
|
windmill_api/models/get_tutorial_progress_response_200.py,sha256=b4BtXIK5s1-7alHtT8j67cPqg39qh_u9mkK0LXE2YhA,1652
|
|
2655
2660
|
windmill_api/models/get_used_triggers_response_200.py,sha256=lMYaO4E-c97MrYy9kLmiTj0VyIDnJklEvri_lZI_h8w,3061
|
|
2656
|
-
windmill_api/models/get_user_response_200.py,sha256=
|
|
2661
|
+
windmill_api/models/get_user_response_200.py,sha256=OQba0uk5Q6pFgw7nbXbcBDorI4HHI9uvubCTPiWqgbI,4858
|
|
2662
|
+
windmill_api/models/get_user_response_200_added_via.py,sha256=w-lzed2N9ooOauAk95bO2uL6VCV7K7iVNYjc_OgDIlw,2392
|
|
2663
|
+
windmill_api/models/get_user_response_200_added_via_source.py,sha256=cANgL0u8oFPMV7y3Sb1k6lHlf7FkV73TW4YZUdK_XP0,219
|
|
2657
2664
|
windmill_api/models/get_variable_response_200.py,sha256=3WK2IMm6-Jr7tvy-jfOFrt1eMIUXVQyLzTcogJZQZlw,5430
|
|
2658
2665
|
windmill_api/models/get_variable_response_200_extra_perms.py,sha256=NkIQGAWfX954BcR6UBrYbATENEmbWT7-8639NOeTtdE,1330
|
|
2659
2666
|
windmill_api/models/get_websocket_trigger_response_200.py,sha256=Lzh40MQhQ-uqdPzlElheWFp3WxMwHpkuTrHs6cdlVp0,13132
|
|
@@ -2712,6 +2719,8 @@ windmill_api/models/input_transform_type_1.py,sha256=jBitmEKLXfAK-lQ4JOvtCwdhaZs
|
|
|
2712
2719
|
windmill_api/models/input_transform_type_1_type.py,sha256=cBCRTHhFkGCusm6U6JKSjEYuZDMPLQ9AQ_qsyZrBOmw,158
|
|
2713
2720
|
windmill_api/models/install_from_workspace_json_body.py,sha256=rl2Kk859SCLt2biCzuFG4bBKFC0gPMDDZKMIJvIr9uE,2019
|
|
2714
2721
|
windmill_api/models/instance_group.py,sha256=-dgUB-gIx7v399uf-FPz_pFkmp3p3ffOsnWR5s7nQDQ,2103
|
|
2722
|
+
windmill_api/models/instance_group_with_workspaces.py,sha256=aZxrnXe6JWzOSNO2tus3JgAgEVgTYF_VyFyq8SFt8lU,3340
|
|
2723
|
+
windmill_api/models/instance_group_with_workspaces_workspaces_item.py,sha256=ZMR-V7mvb-DrbB6VvlaoyxWRC0XNCmDYqvhN5h7u7IQ,2310
|
|
2715
2724
|
windmill_api/models/invite_user_json_body.py,sha256=avXgzPxDar39HGBVoYg-rkEXIf9YTqJ5GnB9rFVUIPM,1836
|
|
2716
2725
|
windmill_api/models/javascript_transform.py,sha256=idgRvtsmj06JSAOF5pRl5YXSbFqy894nPIpImzcAAAE,1742
|
|
2717
2726
|
windmill_api/models/javascript_transform_type.py,sha256=8z88GrNRsTDWMMy0SPruxenaJ3d2LFcAu-f-r4N3qys,158
|
|
@@ -3198,6 +3207,8 @@ windmill_api/models/list_hub_integrations_response_200_item.py,sha256=dxxuRc8u1c
|
|
|
3198
3207
|
windmill_api/models/list_inputs_response_200_item.py,sha256=hUKug_eYRZylMkidYmOmsxjfyrJj3dZoam7Cjju7qj4,2619
|
|
3199
3208
|
windmill_api/models/list_inputs_runnable_type.py,sha256=RTfe5eGBgPlnk7vgyuH1IANskPrrCg-U-oxLt1UDEqg,213
|
|
3200
3209
|
windmill_api/models/list_instance_groups_response_200_item.py,sha256=7jdabz6lWOdm8o4lHBAsnLLz6Mi_BbWM2cPD1Hz9des,2215
|
|
3210
|
+
windmill_api/models/list_instance_groups_with_workspaces_response_200_item.py,sha256=tadMtuEqw2tub8PZ0hz-eN1OEzQ6nIEmQGY9m-9dEZY,3672
|
|
3211
|
+
windmill_api/models/list_instance_groups_with_workspaces_response_200_item_workspaces_item.py,sha256=Stto_NDccXdJxRFoUj99Cr_u4SMksIGN12n2Mds2ns4,2422
|
|
3201
3212
|
windmill_api/models/list_jobs_response_200_item_type_0.py,sha256=wu6VLHA4th2_Ztu87H7QhhmdwDmG1HO9PtlYSFBFCJQ,15595
|
|
3202
3213
|
windmill_api/models/list_jobs_response_200_item_type_0_args.py,sha256=cnINEtwUasLz79mm1wp0L78GDmeGh3p0Vt9pUdvAWos,1375
|
|
3203
3214
|
windmill_api/models/list_jobs_response_200_item_type_0_flow_status.py,sha256=QtdlRlr8ztUg4eU5YXSA5xJqJSbv54rJzprzp6x85aA,5925
|
|
@@ -3547,7 +3558,9 @@ windmill_api/models/list_user_workspaces_response_200_workspaces_item.py,sha256=
|
|
|
3547
3558
|
windmill_api/models/list_user_workspaces_response_200_workspaces_item_operator_settings.py,sha256=U1OLjDz2oJTTFonNDWxaAWHFOPgL4mWBfQoOtDZtGdg,3696
|
|
3548
3559
|
windmill_api/models/list_users_as_super_admin_response_200_item.py,sha256=4u3fB3qr3kMpGeCOhLNq0VwkEkMFZu-yMaenZCNRXWU,3797
|
|
3549
3560
|
windmill_api/models/list_users_as_super_admin_response_200_item_login_type.py,sha256=GqFojYh0I3SpWAhKpt5iup-ck8kMDmSapmBLjZ0XX8U,198
|
|
3550
|
-
windmill_api/models/list_users_response_200_item.py,sha256=
|
|
3561
|
+
windmill_api/models/list_users_response_200_item.py,sha256=z79X14Ef4sg4tgH9DP8uYrQu_Zy3603D7d0oC476uJY,4941
|
|
3562
|
+
windmill_api/models/list_users_response_200_item_added_via.py,sha256=tB1DN8KHuS4MYvrmWX_RnnPerww7NCLnTFMZ_6P4Qhc,2456
|
|
3563
|
+
windmill_api/models/list_users_response_200_item_added_via_source.py,sha256=mlUgOdCR6XrQCx6rtgI4Xns42YtIqxHwJkTy_EtgxHw,225
|
|
3551
3564
|
windmill_api/models/list_users_usage_response_200_item.py,sha256=0ZKMktaSC_LTPolx1JXEEwINvWmf03Tl4OKSakKf6JU,1910
|
|
3552
3565
|
windmill_api/models/list_variable_response_200_item.py,sha256=nrPTcHabE71NPFFws-4Zl-7I8u1JOZacAabbiVdLjfk,5495
|
|
3553
3566
|
windmill_api/models/list_variable_response_200_item_extra_perms.py,sha256=Tx5hXdRHxg4SBN__jLzKf5cT09WbuLSmuOgDDkaKBlU,1358
|
|
@@ -4329,7 +4342,11 @@ windmill_api/models/update_websocket_trigger_json_body_retry_exponential.py,sha2
|
|
|
4329
4342
|
windmill_api/models/update_websocket_trigger_json_body_url_runnable_args.py,sha256=7F9di290C-r3Y0uJRMKMaz-1MkVvUZKL_LtBoVXQHug,1440
|
|
4330
4343
|
windmill_api/models/upload_file_part.py,sha256=WcPclcP3eFnArJDLZo5hXuOQ8f2nEWJHpeOtaWNH2P0,1637
|
|
4331
4344
|
windmill_api/models/upload_s3_file_from_app_response_200.py,sha256=Zple_7BiP2f1RmE9-nxNeD2JHGVhfjiWre4GJaHZkoI,1789
|
|
4332
|
-
windmill_api/models/user.py,sha256=
|
|
4345
|
+
windmill_api/models/user.py,sha256=YBVYiTuRN-oC_JGDddshnVdT0o_mRGUDVm3K8NHn6Ns,4661
|
|
4346
|
+
windmill_api/models/user_added_via.py,sha256=ccb9IU1p0L5df70zrdBDLzgEh3Ljo3ZKlJSsezaz3-U,2240
|
|
4347
|
+
windmill_api/models/user_added_via_source.py,sha256=R39yO8pUEN0Ud8LW7JZGLWWa9CJc0zid47nQwR8hr6Q,205
|
|
4348
|
+
windmill_api/models/user_source.py,sha256=GDXk4JGTqx4pYOYM8C17owox7nBQgQ2_HOJ7T_qcQB0,2216
|
|
4349
|
+
windmill_api/models/user_source_source.py,sha256=yNYUtOgRXPzBQu0zbF8E5rbqkjrkTCHD2OWAg2KTVrA,203
|
|
4333
4350
|
windmill_api/models/user_usage.py,sha256=3ePY0rntlxIaDIe7iKA7U-taV3OIsR90QWH71zOW6FY,1798
|
|
4334
4351
|
windmill_api/models/user_workspace_list.py,sha256=5xDEkP2JoQEzVmY444NGT-wIeColo4aespbGBFZYGnQ,2325
|
|
4335
4352
|
windmill_api/models/user_workspace_list_workspaces_item.py,sha256=Y-Aq1H1xtQFBNq0z8bNg-xVkYptAmlYkWToTRG_OhpQ,3391
|
|
@@ -4372,8 +4389,12 @@ windmill_api/models/whileloop_flow_modules_item_suspend_user_groups_required_typ
|
|
|
4372
4389
|
windmill_api/models/whileloop_flow_modules_item_suspend_user_groups_required_type_1.py,sha256=0-5z26aT7cb08WINFgsMG7k0aCDmZ2g9RDepwe5vHj4,2133
|
|
4373
4390
|
windmill_api/models/whileloop_flow_modules_item_suspend_user_groups_required_type_1_type.py,sha256=CXoTPgyza9vFeEdl48x6_l58d7-vQ8iCWLA6xUH-WJQ,193
|
|
4374
4391
|
windmill_api/models/whileloop_flow_type.py,sha256=G2E-YDdmu7Q3KiQGFv9FNa9apVIdqAFAex2Q4UDNsOY,158
|
|
4375
|
-
windmill_api/models/whoami_response_200.py,sha256=
|
|
4376
|
-
windmill_api/models/
|
|
4392
|
+
windmill_api/models/whoami_response_200.py,sha256=a380VH9INFqAU4yOxeruAnUlmotP3_uGb4yUiJtZprA,4840
|
|
4393
|
+
windmill_api/models/whoami_response_200_added_via.py,sha256=3AWUi6A-qXJ_gyNqLM1zNuupd6qYPBHi-8X9rJWf6ZU,2378
|
|
4394
|
+
windmill_api/models/whoami_response_200_added_via_source.py,sha256=GN2wt0h-cn0FOq_h70-whcoRaIQKr5cv_rkvuvXWeac,218
|
|
4395
|
+
windmill_api/models/whois_response_200.py,sha256=kfCtyl8ghS7I9kI1w9_cUubBCQWv1p4J55SDDDXTO-c,4827
|
|
4396
|
+
windmill_api/models/whois_response_200_added_via.py,sha256=njsvIs0L5v1X6RUCKPbtzyDaC3oaOiessxrID8zPcnw,2368
|
|
4397
|
+
windmill_api/models/whois_response_200_added_via_source.py,sha256=2xoXwGjdQta1DEC7fZapnA34ysexsNA-7ofRcqjapXs,217
|
|
4377
4398
|
windmill_api/models/windmill_file_metadata.py,sha256=HVl3TD56e7IFrmrAvSgO0Xz9JHFNsOijULLt1-hB9U4,3509
|
|
4378
4399
|
windmill_api/models/windmill_file_preview.py,sha256=SD0Ii7DxWzVo5Kn7LMl_rf8BF9FFlcJSC0gdCg1TuaQ,2229
|
|
4379
4400
|
windmill_api/models/windmill_file_preview_content_type.py,sha256=6RSZIG646TFP6hNFzZ0bsFSCYLQKy-v9F3FBdYbAaZM,223
|
|
@@ -4396,11 +4417,12 @@ windmill_api/models/workspace_git_sync_settings_repositories_item_exclude_types_
|
|
|
4396
4417
|
windmill_api/models/workspace_git_sync_settings_repositories_item_settings.py,sha256=wOsoHCklrMDX3koMbMFHHleN1PaTO1eUrqbw4mcArQY,4067
|
|
4397
4418
|
windmill_api/models/workspace_git_sync_settings_repositories_item_settings_include_type_item.py,sha256=lubjjNkSHXEP28MEkyM8LYf2TEz4bhdsO7Kya3v8Etc,484
|
|
4398
4419
|
windmill_api/models/workspace_github_installation.py,sha256=Vqwewx9pTGHUp_NzRIKQw9zhOiTWojR8qG9LHGycG90,1816
|
|
4420
|
+
windmill_api/models/workspace_info.py,sha256=aX9gE8MpkcGRyFk0dPI8oT_PtBs_Q34S2fv8cb2xxYc,2158
|
|
4399
4421
|
windmill_api/models/workspace_invite.py,sha256=HnAJWGv5LwxWkz1T3fhgHKIccO7RFC1lixwUUXG6CXs,2037
|
|
4400
4422
|
windmill_api/models/workspace_mute_critical_alerts_ui_json_body.py,sha256=y8ZwkWEZgavVc-FgLuZZ4z8YPCLxjPcMfdGdKjGM6VQ,1883
|
|
4401
4423
|
windmill_api/py.typed,sha256=8ZJUsxZiuOy1oJeVhsTWQhTG_6pTVHVXk5hJL79ebTk,25
|
|
4402
4424
|
windmill_api/types.py,sha256=GoYub3t4hQP2Yn5tsvShsBfIY3vHUmblU0MXszDx_V0,968
|
|
4403
|
-
windmill_api-1.
|
|
4404
|
-
windmill_api-1.
|
|
4405
|
-
windmill_api-1.
|
|
4406
|
-
windmill_api-1.
|
|
4425
|
+
windmill_api-1.526.0.dist-info/LICENSE,sha256=qJVFNTaOevCeSY6NoXeUG1SPOwQ1K-PxVQ2iEWJzX-A,11348
|
|
4426
|
+
windmill_api-1.526.0.dist-info/METADATA,sha256=mZsc5RpWvBfsmJYoe9t5_0-NiGh_Ka69kx9w1Lv-yds,5023
|
|
4427
|
+
windmill_api-1.526.0.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
|
|
4428
|
+
windmill_api-1.526.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|