windmill-api 1.447.3__py3-none-any.whl → 1.447.5__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/worker/get_custom_tags.py +50 -4
- windmill_api/api/workspace/get_threshold_alert.py +152 -0
- windmill_api/api/workspace/set_threshold_alert.py +105 -0
- windmill_api/models/archive_script_by_hash_response_200_kind.py +1 -0
- windmill_api/models/create_script_json_body_kind.py +1 -0
- windmill_api/models/delete_script_by_hash_response_200_kind.py +1 -0
- windmill_api/models/get_premium_info_response_200.py +7 -0
- windmill_api/models/get_script_by_hash_response_200_kind.py +1 -0
- windmill_api/models/get_script_by_path_response_200_kind.py +1 -0
- windmill_api/models/get_script_by_path_with_draft_response_200_draft_kind.py +1 -0
- windmill_api/models/get_script_by_path_with_draft_response_200_kind.py +1 -0
- windmill_api/models/get_threshold_alert_response_200.py +75 -0
- windmill_api/models/list_scripts_response_200_item_kind.py +1 -0
- windmill_api/models/new_script_kind.py +1 -0
- windmill_api/models/new_script_with_draft_draft_kind.py +1 -0
- windmill_api/models/new_script_with_draft_kind.py +1 -0
- windmill_api/models/script_kind.py +1 -0
- windmill_api/models/set_threshold_alert_json_body.py +58 -0
- {windmill_api-1.447.3.dist-info → windmill_api-1.447.5.dist-info}/METADATA +1 -1
- {windmill_api-1.447.3.dist-info → windmill_api-1.447.5.dist-info}/RECORD +22 -18
- {windmill_api-1.447.3.dist-info → windmill_api-1.447.5.dist-info}/LICENSE +0 -0
- {windmill_api-1.447.3.dist-info → windmill_api-1.447.5.dist-info}/WHEEL +0 -0
|
@@ -5,15 +5,27 @@ import httpx
|
|
|
5
5
|
|
|
6
6
|
from ... import errors
|
|
7
7
|
from ...client import AuthenticatedClient, Client
|
|
8
|
-
from ...types import Response
|
|
8
|
+
from ...types import UNSET, Response, Unset
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
def _get_kwargs(
|
|
11
|
+
def _get_kwargs(
|
|
12
|
+
*,
|
|
13
|
+
workspace: Union[Unset, None, str] = UNSET,
|
|
14
|
+
show_workspace_restriction: Union[Unset, None, bool] = UNSET,
|
|
15
|
+
) -> Dict[str, Any]:
|
|
12
16
|
pass
|
|
13
17
|
|
|
18
|
+
params: Dict[str, Any] = {}
|
|
19
|
+
params["workspace"] = workspace
|
|
20
|
+
|
|
21
|
+
params["show_workspace_restriction"] = show_workspace_restriction
|
|
22
|
+
|
|
23
|
+
params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
|
|
24
|
+
|
|
14
25
|
return {
|
|
15
26
|
"method": "get",
|
|
16
27
|
"url": "/workers/custom_tags",
|
|
28
|
+
"params": params,
|
|
17
29
|
}
|
|
18
30
|
|
|
19
31
|
|
|
@@ -40,9 +52,15 @@ def _build_response(*, client: Union[AuthenticatedClient, Client], response: htt
|
|
|
40
52
|
def sync_detailed(
|
|
41
53
|
*,
|
|
42
54
|
client: Union[AuthenticatedClient, Client],
|
|
55
|
+
workspace: Union[Unset, None, str] = UNSET,
|
|
56
|
+
show_workspace_restriction: Union[Unset, None, bool] = UNSET,
|
|
43
57
|
) -> Response[List[str]]:
|
|
44
58
|
"""get all instance custom tags (tags are used to dispatch jobs to different worker groups)
|
|
45
59
|
|
|
60
|
+
Args:
|
|
61
|
+
workspace (Union[Unset, None, str]):
|
|
62
|
+
show_workspace_restriction (Union[Unset, None, bool]):
|
|
63
|
+
|
|
46
64
|
Raises:
|
|
47
65
|
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
48
66
|
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
@@ -51,7 +69,10 @@ def sync_detailed(
|
|
|
51
69
|
Response[List[str]]
|
|
52
70
|
"""
|
|
53
71
|
|
|
54
|
-
kwargs = _get_kwargs(
|
|
72
|
+
kwargs = _get_kwargs(
|
|
73
|
+
workspace=workspace,
|
|
74
|
+
show_workspace_restriction=show_workspace_restriction,
|
|
75
|
+
)
|
|
55
76
|
|
|
56
77
|
response = client.get_httpx_client().request(
|
|
57
78
|
**kwargs,
|
|
@@ -63,9 +84,15 @@ def sync_detailed(
|
|
|
63
84
|
def sync(
|
|
64
85
|
*,
|
|
65
86
|
client: Union[AuthenticatedClient, Client],
|
|
87
|
+
workspace: Union[Unset, None, str] = UNSET,
|
|
88
|
+
show_workspace_restriction: Union[Unset, None, bool] = UNSET,
|
|
66
89
|
) -> Optional[List[str]]:
|
|
67
90
|
"""get all instance custom tags (tags are used to dispatch jobs to different worker groups)
|
|
68
91
|
|
|
92
|
+
Args:
|
|
93
|
+
workspace (Union[Unset, None, str]):
|
|
94
|
+
show_workspace_restriction (Union[Unset, None, bool]):
|
|
95
|
+
|
|
69
96
|
Raises:
|
|
70
97
|
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
71
98
|
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
@@ -76,15 +103,23 @@ def sync(
|
|
|
76
103
|
|
|
77
104
|
return sync_detailed(
|
|
78
105
|
client=client,
|
|
106
|
+
workspace=workspace,
|
|
107
|
+
show_workspace_restriction=show_workspace_restriction,
|
|
79
108
|
).parsed
|
|
80
109
|
|
|
81
110
|
|
|
82
111
|
async def asyncio_detailed(
|
|
83
112
|
*,
|
|
84
113
|
client: Union[AuthenticatedClient, Client],
|
|
114
|
+
workspace: Union[Unset, None, str] = UNSET,
|
|
115
|
+
show_workspace_restriction: Union[Unset, None, bool] = UNSET,
|
|
85
116
|
) -> Response[List[str]]:
|
|
86
117
|
"""get all instance custom tags (tags are used to dispatch jobs to different worker groups)
|
|
87
118
|
|
|
119
|
+
Args:
|
|
120
|
+
workspace (Union[Unset, None, str]):
|
|
121
|
+
show_workspace_restriction (Union[Unset, None, bool]):
|
|
122
|
+
|
|
88
123
|
Raises:
|
|
89
124
|
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
90
125
|
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
@@ -93,7 +128,10 @@ async def asyncio_detailed(
|
|
|
93
128
|
Response[List[str]]
|
|
94
129
|
"""
|
|
95
130
|
|
|
96
|
-
kwargs = _get_kwargs(
|
|
131
|
+
kwargs = _get_kwargs(
|
|
132
|
+
workspace=workspace,
|
|
133
|
+
show_workspace_restriction=show_workspace_restriction,
|
|
134
|
+
)
|
|
97
135
|
|
|
98
136
|
response = await client.get_async_httpx_client().request(**kwargs)
|
|
99
137
|
|
|
@@ -103,9 +141,15 @@ async def asyncio_detailed(
|
|
|
103
141
|
async def asyncio(
|
|
104
142
|
*,
|
|
105
143
|
client: Union[AuthenticatedClient, Client],
|
|
144
|
+
workspace: Union[Unset, None, str] = UNSET,
|
|
145
|
+
show_workspace_restriction: Union[Unset, None, bool] = UNSET,
|
|
106
146
|
) -> Optional[List[str]]:
|
|
107
147
|
"""get all instance custom tags (tags are used to dispatch jobs to different worker groups)
|
|
108
148
|
|
|
149
|
+
Args:
|
|
150
|
+
workspace (Union[Unset, None, str]):
|
|
151
|
+
show_workspace_restriction (Union[Unset, None, bool]):
|
|
152
|
+
|
|
109
153
|
Raises:
|
|
110
154
|
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
111
155
|
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
@@ -117,5 +161,7 @@ async def asyncio(
|
|
|
117
161
|
return (
|
|
118
162
|
await asyncio_detailed(
|
|
119
163
|
client=client,
|
|
164
|
+
workspace=workspace,
|
|
165
|
+
show_workspace_restriction=show_workspace_restriction,
|
|
120
166
|
)
|
|
121
167
|
).parsed
|
|
@@ -0,0 +1,152 @@
|
|
|
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.get_threshold_alert_response_200 import GetThresholdAlertResponse200
|
|
9
|
+
from ...types import Response
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
def _get_kwargs(
|
|
13
|
+
workspace: str,
|
|
14
|
+
) -> Dict[str, Any]:
|
|
15
|
+
pass
|
|
16
|
+
|
|
17
|
+
return {
|
|
18
|
+
"method": "get",
|
|
19
|
+
"url": "/w/{workspace}/workspaces/threshold_alert".format(
|
|
20
|
+
workspace=workspace,
|
|
21
|
+
),
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
def _parse_response(
|
|
26
|
+
*, client: Union[AuthenticatedClient, Client], response: httpx.Response
|
|
27
|
+
) -> Optional[GetThresholdAlertResponse200]:
|
|
28
|
+
if response.status_code == HTTPStatus.OK:
|
|
29
|
+
response_200 = GetThresholdAlertResponse200.from_dict(response.json())
|
|
30
|
+
|
|
31
|
+
return response_200
|
|
32
|
+
if client.raise_on_unexpected_status:
|
|
33
|
+
raise errors.UnexpectedStatus(response.status_code, response.content)
|
|
34
|
+
else:
|
|
35
|
+
return None
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
def _build_response(
|
|
39
|
+
*, client: Union[AuthenticatedClient, Client], response: httpx.Response
|
|
40
|
+
) -> Response[GetThresholdAlertResponse200]:
|
|
41
|
+
return Response(
|
|
42
|
+
status_code=HTTPStatus(response.status_code),
|
|
43
|
+
content=response.content,
|
|
44
|
+
headers=response.headers,
|
|
45
|
+
parsed=_parse_response(client=client, response=response),
|
|
46
|
+
)
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
def sync_detailed(
|
|
50
|
+
workspace: str,
|
|
51
|
+
*,
|
|
52
|
+
client: Union[AuthenticatedClient, Client],
|
|
53
|
+
) -> Response[GetThresholdAlertResponse200]:
|
|
54
|
+
"""get threshold alert info
|
|
55
|
+
|
|
56
|
+
Args:
|
|
57
|
+
workspace (str):
|
|
58
|
+
|
|
59
|
+
Raises:
|
|
60
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
61
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
62
|
+
|
|
63
|
+
Returns:
|
|
64
|
+
Response[GetThresholdAlertResponse200]
|
|
65
|
+
"""
|
|
66
|
+
|
|
67
|
+
kwargs = _get_kwargs(
|
|
68
|
+
workspace=workspace,
|
|
69
|
+
)
|
|
70
|
+
|
|
71
|
+
response = client.get_httpx_client().request(
|
|
72
|
+
**kwargs,
|
|
73
|
+
)
|
|
74
|
+
|
|
75
|
+
return _build_response(client=client, response=response)
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
def sync(
|
|
79
|
+
workspace: str,
|
|
80
|
+
*,
|
|
81
|
+
client: Union[AuthenticatedClient, Client],
|
|
82
|
+
) -> Optional[GetThresholdAlertResponse200]:
|
|
83
|
+
"""get threshold alert info
|
|
84
|
+
|
|
85
|
+
Args:
|
|
86
|
+
workspace (str):
|
|
87
|
+
|
|
88
|
+
Raises:
|
|
89
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
90
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
91
|
+
|
|
92
|
+
Returns:
|
|
93
|
+
GetThresholdAlertResponse200
|
|
94
|
+
"""
|
|
95
|
+
|
|
96
|
+
return sync_detailed(
|
|
97
|
+
workspace=workspace,
|
|
98
|
+
client=client,
|
|
99
|
+
).parsed
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
async def asyncio_detailed(
|
|
103
|
+
workspace: str,
|
|
104
|
+
*,
|
|
105
|
+
client: Union[AuthenticatedClient, Client],
|
|
106
|
+
) -> Response[GetThresholdAlertResponse200]:
|
|
107
|
+
"""get threshold alert info
|
|
108
|
+
|
|
109
|
+
Args:
|
|
110
|
+
workspace (str):
|
|
111
|
+
|
|
112
|
+
Raises:
|
|
113
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
114
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
115
|
+
|
|
116
|
+
Returns:
|
|
117
|
+
Response[GetThresholdAlertResponse200]
|
|
118
|
+
"""
|
|
119
|
+
|
|
120
|
+
kwargs = _get_kwargs(
|
|
121
|
+
workspace=workspace,
|
|
122
|
+
)
|
|
123
|
+
|
|
124
|
+
response = await client.get_async_httpx_client().request(**kwargs)
|
|
125
|
+
|
|
126
|
+
return _build_response(client=client, response=response)
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
async def asyncio(
|
|
130
|
+
workspace: str,
|
|
131
|
+
*,
|
|
132
|
+
client: Union[AuthenticatedClient, Client],
|
|
133
|
+
) -> Optional[GetThresholdAlertResponse200]:
|
|
134
|
+
"""get threshold alert info
|
|
135
|
+
|
|
136
|
+
Args:
|
|
137
|
+
workspace (str):
|
|
138
|
+
|
|
139
|
+
Raises:
|
|
140
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
141
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
142
|
+
|
|
143
|
+
Returns:
|
|
144
|
+
GetThresholdAlertResponse200
|
|
145
|
+
"""
|
|
146
|
+
|
|
147
|
+
return (
|
|
148
|
+
await asyncio_detailed(
|
|
149
|
+
workspace=workspace,
|
|
150
|
+
client=client,
|
|
151
|
+
)
|
|
152
|
+
).parsed
|
|
@@ -0,0 +1,105 @@
|
|
|
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.set_threshold_alert_json_body import SetThresholdAlertJsonBody
|
|
9
|
+
from ...types import Response
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
def _get_kwargs(
|
|
13
|
+
workspace: str,
|
|
14
|
+
*,
|
|
15
|
+
json_body: SetThresholdAlertJsonBody,
|
|
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/threshold_alert".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 client.raise_on_unexpected_status:
|
|
32
|
+
raise errors.UnexpectedStatus(response.status_code, response.content)
|
|
33
|
+
else:
|
|
34
|
+
return None
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
def _build_response(*, client: Union[AuthenticatedClient, Client], response: httpx.Response) -> Response[Any]:
|
|
38
|
+
return Response(
|
|
39
|
+
status_code=HTTPStatus(response.status_code),
|
|
40
|
+
content=response.content,
|
|
41
|
+
headers=response.headers,
|
|
42
|
+
parsed=_parse_response(client=client, response=response),
|
|
43
|
+
)
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
def sync_detailed(
|
|
47
|
+
workspace: str,
|
|
48
|
+
*,
|
|
49
|
+
client: Union[AuthenticatedClient, Client],
|
|
50
|
+
json_body: SetThresholdAlertJsonBody,
|
|
51
|
+
) -> Response[Any]:
|
|
52
|
+
"""set threshold alert info
|
|
53
|
+
|
|
54
|
+
Args:
|
|
55
|
+
workspace (str):
|
|
56
|
+
json_body (SetThresholdAlertJsonBody):
|
|
57
|
+
|
|
58
|
+
Raises:
|
|
59
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
60
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
61
|
+
|
|
62
|
+
Returns:
|
|
63
|
+
Response[Any]
|
|
64
|
+
"""
|
|
65
|
+
|
|
66
|
+
kwargs = _get_kwargs(
|
|
67
|
+
workspace=workspace,
|
|
68
|
+
json_body=json_body,
|
|
69
|
+
)
|
|
70
|
+
|
|
71
|
+
response = client.get_httpx_client().request(
|
|
72
|
+
**kwargs,
|
|
73
|
+
)
|
|
74
|
+
|
|
75
|
+
return _build_response(client=client, response=response)
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
async def asyncio_detailed(
|
|
79
|
+
workspace: str,
|
|
80
|
+
*,
|
|
81
|
+
client: Union[AuthenticatedClient, Client],
|
|
82
|
+
json_body: SetThresholdAlertJsonBody,
|
|
83
|
+
) -> Response[Any]:
|
|
84
|
+
"""set threshold alert info
|
|
85
|
+
|
|
86
|
+
Args:
|
|
87
|
+
workspace (str):
|
|
88
|
+
json_body (SetThresholdAlertJsonBody):
|
|
89
|
+
|
|
90
|
+
Raises:
|
|
91
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
92
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
93
|
+
|
|
94
|
+
Returns:
|
|
95
|
+
Response[Any]
|
|
96
|
+
"""
|
|
97
|
+
|
|
98
|
+
kwargs = _get_kwargs(
|
|
99
|
+
workspace=workspace,
|
|
100
|
+
json_body=json_body,
|
|
101
|
+
)
|
|
102
|
+
|
|
103
|
+
response = await client.get_async_httpx_client().request(**kwargs)
|
|
104
|
+
|
|
105
|
+
return _build_response(client=client, response=response)
|
|
@@ -14,12 +14,14 @@ class GetPremiumInfoResponse200:
|
|
|
14
14
|
Attributes:
|
|
15
15
|
premium (bool):
|
|
16
16
|
automatic_billing (bool):
|
|
17
|
+
owner (str):
|
|
17
18
|
usage (Union[Unset, float]):
|
|
18
19
|
seats (Union[Unset, float]):
|
|
19
20
|
"""
|
|
20
21
|
|
|
21
22
|
premium: bool
|
|
22
23
|
automatic_billing: bool
|
|
24
|
+
owner: str
|
|
23
25
|
usage: Union[Unset, float] = UNSET
|
|
24
26
|
seats: Union[Unset, float] = UNSET
|
|
25
27
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
@@ -27,6 +29,7 @@ class GetPremiumInfoResponse200:
|
|
|
27
29
|
def to_dict(self) -> Dict[str, Any]:
|
|
28
30
|
premium = self.premium
|
|
29
31
|
automatic_billing = self.automatic_billing
|
|
32
|
+
owner = self.owner
|
|
30
33
|
usage = self.usage
|
|
31
34
|
seats = self.seats
|
|
32
35
|
|
|
@@ -36,6 +39,7 @@ class GetPremiumInfoResponse200:
|
|
|
36
39
|
{
|
|
37
40
|
"premium": premium,
|
|
38
41
|
"automatic_billing": automatic_billing,
|
|
42
|
+
"owner": owner,
|
|
39
43
|
}
|
|
40
44
|
)
|
|
41
45
|
if usage is not UNSET:
|
|
@@ -52,6 +56,8 @@ class GetPremiumInfoResponse200:
|
|
|
52
56
|
|
|
53
57
|
automatic_billing = d.pop("automatic_billing")
|
|
54
58
|
|
|
59
|
+
owner = d.pop("owner")
|
|
60
|
+
|
|
55
61
|
usage = d.pop("usage", UNSET)
|
|
56
62
|
|
|
57
63
|
seats = d.pop("seats", UNSET)
|
|
@@ -59,6 +65,7 @@ class GetPremiumInfoResponse200:
|
|
|
59
65
|
get_premium_info_response_200 = cls(
|
|
60
66
|
premium=premium,
|
|
61
67
|
automatic_billing=automatic_billing,
|
|
68
|
+
owner=owner,
|
|
62
69
|
usage=usage,
|
|
63
70
|
seats=seats,
|
|
64
71
|
)
|
|
@@ -0,0 +1,75 @@
|
|
|
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="GetThresholdAlertResponse200")
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
@_attrs_define
|
|
14
|
+
class GetThresholdAlertResponse200:
|
|
15
|
+
"""
|
|
16
|
+
Attributes:
|
|
17
|
+
threshold_alert_amount (Union[Unset, float]):
|
|
18
|
+
last_alert_sent (Union[Unset, datetime.datetime]):
|
|
19
|
+
"""
|
|
20
|
+
|
|
21
|
+
threshold_alert_amount: Union[Unset, float] = UNSET
|
|
22
|
+
last_alert_sent: Union[Unset, datetime.datetime] = UNSET
|
|
23
|
+
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
24
|
+
|
|
25
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
26
|
+
threshold_alert_amount = self.threshold_alert_amount
|
|
27
|
+
last_alert_sent: Union[Unset, str] = UNSET
|
|
28
|
+
if not isinstance(self.last_alert_sent, Unset):
|
|
29
|
+
last_alert_sent = self.last_alert_sent.isoformat()
|
|
30
|
+
|
|
31
|
+
field_dict: Dict[str, Any] = {}
|
|
32
|
+
field_dict.update(self.additional_properties)
|
|
33
|
+
field_dict.update({})
|
|
34
|
+
if threshold_alert_amount is not UNSET:
|
|
35
|
+
field_dict["threshold_alert_amount"] = threshold_alert_amount
|
|
36
|
+
if last_alert_sent is not UNSET:
|
|
37
|
+
field_dict["last_alert_sent"] = last_alert_sent
|
|
38
|
+
|
|
39
|
+
return field_dict
|
|
40
|
+
|
|
41
|
+
@classmethod
|
|
42
|
+
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
43
|
+
d = src_dict.copy()
|
|
44
|
+
threshold_alert_amount = d.pop("threshold_alert_amount", UNSET)
|
|
45
|
+
|
|
46
|
+
_last_alert_sent = d.pop("last_alert_sent", UNSET)
|
|
47
|
+
last_alert_sent: Union[Unset, datetime.datetime]
|
|
48
|
+
if isinstance(_last_alert_sent, Unset):
|
|
49
|
+
last_alert_sent = UNSET
|
|
50
|
+
else:
|
|
51
|
+
last_alert_sent = isoparse(_last_alert_sent)
|
|
52
|
+
|
|
53
|
+
get_threshold_alert_response_200 = cls(
|
|
54
|
+
threshold_alert_amount=threshold_alert_amount,
|
|
55
|
+
last_alert_sent=last_alert_sent,
|
|
56
|
+
)
|
|
57
|
+
|
|
58
|
+
get_threshold_alert_response_200.additional_properties = d
|
|
59
|
+
return get_threshold_alert_response_200
|
|
60
|
+
|
|
61
|
+
@property
|
|
62
|
+
def additional_keys(self) -> List[str]:
|
|
63
|
+
return list(self.additional_properties.keys())
|
|
64
|
+
|
|
65
|
+
def __getitem__(self, key: str) -> Any:
|
|
66
|
+
return self.additional_properties[key]
|
|
67
|
+
|
|
68
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
69
|
+
self.additional_properties[key] = value
|
|
70
|
+
|
|
71
|
+
def __delitem__(self, key: str) -> None:
|
|
72
|
+
del self.additional_properties[key]
|
|
73
|
+
|
|
74
|
+
def __contains__(self, key: str) -> bool:
|
|
75
|
+
return key in self.additional_properties
|
|
@@ -0,0 +1,58 @@
|
|
|
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="SetThresholdAlertJsonBody")
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
@_attrs_define
|
|
12
|
+
class SetThresholdAlertJsonBody:
|
|
13
|
+
"""
|
|
14
|
+
Attributes:
|
|
15
|
+
threshold_alert_amount (Union[Unset, float]):
|
|
16
|
+
"""
|
|
17
|
+
|
|
18
|
+
threshold_alert_amount: Union[Unset, float] = UNSET
|
|
19
|
+
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
20
|
+
|
|
21
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
22
|
+
threshold_alert_amount = self.threshold_alert_amount
|
|
23
|
+
|
|
24
|
+
field_dict: Dict[str, Any] = {}
|
|
25
|
+
field_dict.update(self.additional_properties)
|
|
26
|
+
field_dict.update({})
|
|
27
|
+
if threshold_alert_amount is not UNSET:
|
|
28
|
+
field_dict["threshold_alert_amount"] = threshold_alert_amount
|
|
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
|
+
threshold_alert_amount = d.pop("threshold_alert_amount", UNSET)
|
|
36
|
+
|
|
37
|
+
set_threshold_alert_json_body = cls(
|
|
38
|
+
threshold_alert_amount=threshold_alert_amount,
|
|
39
|
+
)
|
|
40
|
+
|
|
41
|
+
set_threshold_alert_json_body.additional_properties = d
|
|
42
|
+
return set_threshold_alert_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
|
|
@@ -382,7 +382,7 @@ windmill_api/api/worker/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
|
|
|
382
382
|
windmill_api/api/worker/exists_worker_with_tag.py,sha256=sh0LvJMp8V_dYG5b4Ok26j-_yl2MlAiHOQH1YkLhqfs,3563
|
|
383
383
|
windmill_api/api/worker/ge_default_tags.py,sha256=vzfZnDN3NWs2-FzpgMnIkuVVL5jzaS4V90g37mKR4wM,3193
|
|
384
384
|
windmill_api/api/worker/get_counts_of_jobs_waiting_per_tag.py,sha256=Ny3bXeZFWzY7HE9AAyP3ehMbugPAXgEYnNOfCpSFLaU,3717
|
|
385
|
-
windmill_api/api/worker/get_custom_tags.py,sha256=
|
|
385
|
+
windmill_api/api/worker/get_custom_tags.py,sha256=wWnvv5tzC3wiWjUokVbMgu4ChBI6bJ-JMnBrQNmcPqc,5128
|
|
386
386
|
windmill_api/api/worker/get_queue_metrics.py,sha256=pTH_dMhgOsTMnPw8brDlgtoT353jtR4SWY-liHrXfvs,3739
|
|
387
387
|
windmill_api/api/worker/is_default_tags_per_workspace.py,sha256=WtwYW4uGzb7UefVWb5ZmKyRVCFzZ61yoNMiYOtYQg_0,3144
|
|
388
388
|
windmill_api/api/worker/list_workers.py,sha256=oMWGI3SjAyS3ChnIFPEGfoAZe8WdAzAyLyqX4bRr1bg,5511
|
|
@@ -415,6 +415,7 @@ windmill_api/api/workspace/get_is_premium.py,sha256=G1Dp-UbeRhoQUr-DXvEQvkJfXgPe
|
|
|
415
415
|
windmill_api/api/workspace/get_large_file_storage_config.py,sha256=oPTAsbPjWJ9GpkflLzVex1S5dDtWAoNAANxyjPEAycs,4052
|
|
416
416
|
windmill_api/api/workspace/get_premium_info.py,sha256=L4ITPG2Iuqjm-1wb390UZ2FYZVYp5X7C2fibXaxQ_MM,3838
|
|
417
417
|
windmill_api/api/workspace/get_settings.py,sha256=X6qRdutwo5RSYsu2bHgf8XWLJ-I7TOPpniP02ty_rFE,3782
|
|
418
|
+
windmill_api/api/workspace/get_threshold_alert.py,sha256=533-kj2rmIFuAL6gh31KeQPPRgeQV9SI1GSWcrk7qW0,3912
|
|
418
419
|
windmill_api/api/workspace/get_used_triggers.py,sha256=YnShrlix42jOJUEgKyZULaFUHI8FqiwODOUe87aNzbM,3856
|
|
419
420
|
windmill_api/api/workspace/get_workspace_default_app.py,sha256=kl5g22l3PaEfULkf9Bvjd77x4_mSxa2TTUE4fhrDvyQ,3994
|
|
420
421
|
windmill_api/api/workspace/get_workspace_encryption_key.py,sha256=UesuBMeiPvCjfBzBYIEEL7JlOUbqukFEM2AvTz1hk4Y,4108
|
|
@@ -430,6 +431,7 @@ windmill_api/api/workspace/list_workspaces_as_super_admin.py,sha256=10uKmgQmDcq6
|
|
|
430
431
|
windmill_api/api/workspace/run_slack_message_test_job.py,sha256=2lpe8ae9bLYxBZTEbJHhH0OZKMzxAO8tiq1edon-WcI,2832
|
|
431
432
|
windmill_api/api/workspace/set_automatic_billing.py,sha256=-EM9keaXF4oTloD0H7B_i64WDUOoFHq2ozw2I-ldVG0,2768
|
|
432
433
|
windmill_api/api/workspace/set_environment_variable.py,sha256=EGDoktKua4YqffjpLAvudoOxRIhDPkcTlJ7JwxFeiPM,2798
|
|
434
|
+
windmill_api/api/workspace/set_threshold_alert.py,sha256=faSqhLhlISONjrJWW0Yh983TVa8n51kjkAl0g97y15w,2754
|
|
433
435
|
windmill_api/api/workspace/set_workspace_encryption_key.py,sha256=YVnjNSKUH8rUUHYcPTpSIEji9FAT6eEfWpU7SWCHgEE,2850
|
|
434
436
|
windmill_api/api/workspace/unarchive_workspace.py,sha256=mS7jRZ5n64qYRrE5eoatDtchtHiu7ga1HzAtc96DhFQ,2299
|
|
435
437
|
windmill_api/client.py,sha256=r4usc_1YIQRI4Sr33G9Z3H25-bKCZ5w2I9qZ_eCUP3M,12131
|
|
@@ -469,7 +471,7 @@ windmill_api/models/app_with_last_version_w_draft_value.py,sha256=vojZEXP8_lwvWK
|
|
|
469
471
|
windmill_api/models/archive_flow_by_path_json_body.py,sha256=pU7NsDstXdEvA4KXkXl_FA4LM1GwJtLE671j6Alwxtg,1632
|
|
470
472
|
windmill_api/models/archive_script_by_hash_response_200.py,sha256=3DiwlhJhUpAMGWGhi_YxU_9xW7_kiJC3em9YfjtVCWs,13443
|
|
471
473
|
windmill_api/models/archive_script_by_hash_response_200_extra_perms.py,sha256=sIEzFnTG7C7cBp5Q_5PhuvEMonBc4efet2KgafRyFrA,1376
|
|
472
|
-
windmill_api/models/archive_script_by_hash_response_200_kind.py,sha256=
|
|
474
|
+
windmill_api/models/archive_script_by_hash_response_200_kind.py,sha256=QxcY4eSLArs3LmAqDTa71QMkWJF_sAjg0LeC0uQ7yyE,293
|
|
473
475
|
windmill_api/models/archive_script_by_hash_response_200_language.py,sha256=Yo3VojD3xzt-0YhNRBb99d_V923HCw56-4POnShEW3A,543
|
|
474
476
|
windmill_api/models/archive_script_by_hash_response_200_schema.py,sha256=FbLGIuF9u_TlsUjZE6t5o4EC98CHK61RYVwCfcw7ucM,1350
|
|
475
477
|
windmill_api/models/audit_log.py,sha256=ITxGdJ2nBJoXj7LvgNb_5dF-Y5fW_UPZ6hucDMP1SKs,3626
|
|
@@ -685,7 +687,7 @@ windmill_api/models/create_schedule_json_body_retry.py,sha256=UkWrIw2_y8vVeJE2hH
|
|
|
685
687
|
windmill_api/models/create_schedule_json_body_retry_constant.py,sha256=9W42Sm1Co0N51-SOiQOmWH7HCOhT3W9O9EQvu0JmqjM,1936
|
|
686
688
|
windmill_api/models/create_schedule_json_body_retry_exponential.py,sha256=K8jFaUku0aFrgLBBZxHOBWyHqqMQ0gDNP2nus2Og234,2562
|
|
687
689
|
windmill_api/models/create_script_json_body.py,sha256=VMnojdxvBrNC4ZQNAv1k0d94oK_TXlFkD2O_7-AxQEE,11189
|
|
688
|
-
windmill_api/models/create_script_json_body_kind.py,sha256=
|
|
690
|
+
windmill_api/models/create_script_json_body_kind.py,sha256=Noy3362frzTvVhA8awS4-lKNTHnbec_fXwsO7JQ6t7k,283
|
|
689
691
|
windmill_api/models/create_script_json_body_language.py,sha256=xYmEKb_gGf9Y4fjn1Z7cqNpTZWAQRVBfQ29eyzgPGgY,533
|
|
690
692
|
windmill_api/models/create_script_json_body_schema.py,sha256=fLtVF02xA72yAHEsO-wg-cCQzUdqBEEca01ATHulYt4,1294
|
|
691
693
|
windmill_api/models/create_token_impersonate_json_body.py,sha256=xXOofFUNlHSmxyLI0rHx8wB4lYZ-02Vfkmgf_U47_20,2909
|
|
@@ -794,7 +796,7 @@ windmill_api/models/delete_draft_kind.py,sha256=FkablilvEAPsxwvc-c6y6ojnVbkSADam
|
|
|
794
796
|
windmill_api/models/delete_invite_json_body.py,sha256=9Rws1BK_ai-18GzqcNQPNzg7me0lsC2qjOjqwVX7zV0,1846
|
|
795
797
|
windmill_api/models/delete_script_by_hash_response_200.py,sha256=3poVJjosE5o57_liUCrMvq6UQheXqd4j7w0ElfO6g2Q,13413
|
|
796
798
|
windmill_api/models/delete_script_by_hash_response_200_extra_perms.py,sha256=u-2IpQfSK7gc8ayrA7wN9OS8ZT_sh-ZTOgJWq2fcDys,1371
|
|
797
|
-
windmill_api/models/delete_script_by_hash_response_200_kind.py,sha256=
|
|
799
|
+
windmill_api/models/delete_script_by_hash_response_200_kind.py,sha256=FxRCYJtKyOyo13JOCGGjWvGc5J-rktHP0IZ0iW2xBuw,292
|
|
798
800
|
windmill_api/models/delete_script_by_hash_response_200_language.py,sha256=O9kZMGCbdV77dv_IbQk3Z3JHW_RVQ59ghZbMIHPu3O8,542
|
|
799
801
|
windmill_api/models/delete_script_by_hash_response_200_schema.py,sha256=1Y38poP8WtFfdoMgQ9ICdrcm5g2bIVPCMmZUrMKgGjc,1345
|
|
800
802
|
windmill_api/models/duckdb_connection_settings_json_body.py,sha256=VKhOpCQrjN1b9YVZrbXFvs3Q-KPCJ0Bmq8uPVlsqxvU,2435
|
|
@@ -1905,7 +1907,7 @@ windmill_api/models/get_nats_trigger_response_200.py,sha256=VUgR39Iku2MltiRsCtiB
|
|
|
1905
1907
|
windmill_api/models/get_nats_trigger_response_200_extra_perms.py,sha256=TArRnWj8uA4trS2eAtLX-HWS_jpJz71bmxd1XPRM8yU,1348
|
|
1906
1908
|
windmill_api/models/get_o_auth_connect_response_200.py,sha256=kPor_CV02chDvyq0u2FA3rOywIsFlZe4mCcVnyElZEg,2768
|
|
1907
1909
|
windmill_api/models/get_o_auth_connect_response_200_extra_params.py,sha256=yFFbR2vUCdjsGVPA8bRoiSw0EDebOuBB6yTrCd1wJe8,1358
|
|
1908
|
-
windmill_api/models/get_premium_info_response_200.py,sha256=
|
|
1910
|
+
windmill_api/models/get_premium_info_response_200.py,sha256=3TU84b4TzsbUqWuafAohJS9OsGkbKWP9OczTkULVtIE,2471
|
|
1909
1911
|
windmill_api/models/get_public_app_by_custom_path_response_200.py,sha256=Heheaag6JOeiKvwPDPZ0s9heq9G2yRVaWnwXXJjIOQA,5431
|
|
1910
1912
|
windmill_api/models/get_public_app_by_custom_path_response_200_execution_mode.py,sha256=8AHFEIQwy7IFT40PlEtKijJWDHWPl9rpgSBY92mHtq0,231
|
|
1911
1913
|
windmill_api/models/get_public_app_by_custom_path_response_200_extra_perms.py,sha256=mjuwiaaSPsKsj35V3hMz4UC9EPmt5o0vbtwCxtmWr2w,1407
|
|
@@ -1947,20 +1949,20 @@ windmill_api/models/get_schedule_response_200_retry_constant.py,sha256=YADDtMRN2
|
|
|
1947
1949
|
windmill_api/models/get_schedule_response_200_retry_exponential.py,sha256=D0g7jWm3Q6_LLLIbiTks-HnD2-Re4AoWgrFd2guzKtY,2562
|
|
1948
1950
|
windmill_api/models/get_script_by_hash_response_200.py,sha256=1PY38z_bkNs1ivkqMUKAei02yDQ0btyyAJTojrojIb4,13323
|
|
1949
1951
|
windmill_api/models/get_script_by_hash_response_200_extra_perms.py,sha256=dIA5M3p_44-Ari72k0dRHPJVYnKz8FewUAFWp22maHw,1356
|
|
1950
|
-
windmill_api/models/get_script_by_hash_response_200_kind.py,sha256=
|
|
1952
|
+
windmill_api/models/get_script_by_hash_response_200_kind.py,sha256=LVZ9vnBww7shAhepE95CBjE9Q632g_C1gbOl05RZvGc,289
|
|
1951
1953
|
windmill_api/models/get_script_by_hash_response_200_language.py,sha256=tW8vfLo13BZK6HqKxmkCoOD6FC3bm0LXYhOaEPKZV9A,539
|
|
1952
1954
|
windmill_api/models/get_script_by_hash_response_200_schema.py,sha256=7SjP19dqLKXIi3KuNA3Ydk8FDhqrpgEstNOxBk6tPBM,1330
|
|
1953
1955
|
windmill_api/models/get_script_by_path_response_200.py,sha256=qjLxbVWel1M6M8cYH2IWvzqZuG7tapCEIwvfiMBE1W4,13323
|
|
1954
1956
|
windmill_api/models/get_script_by_path_response_200_extra_perms.py,sha256=pb_MLL5dY8lvm8NgDzsBEEAlcCUJFyELxMKnTthAyH8,1356
|
|
1955
|
-
windmill_api/models/get_script_by_path_response_200_kind.py,sha256=
|
|
1957
|
+
windmill_api/models/get_script_by_path_response_200_kind.py,sha256=zKImQ28z5joOtx5nzzau0NPONpUpIjhBshXY1xFeMn4,289
|
|
1956
1958
|
windmill_api/models/get_script_by_path_response_200_language.py,sha256=U-_umgiIn0GAKByihlBvqLOVSftizzbd_6mSvh3N4do,539
|
|
1957
1959
|
windmill_api/models/get_script_by_path_response_200_schema.py,sha256=XO9ZddA3Mz2IlxsJvl9NW7Hih_8X-j_-X1tXZsipx4I,1330
|
|
1958
1960
|
windmill_api/models/get_script_by_path_with_draft_response_200.py,sha256=JkwcmXt3HQjynMRIRfo1pMo7yO2gRevZtiMUo1k4ORs,12611
|
|
1959
1961
|
windmill_api/models/get_script_by_path_with_draft_response_200_draft.py,sha256=7AydnEfYpCPvp1U1zchUZy2XHlMc-JYSuxa9K24tnvQ,11755
|
|
1960
|
-
windmill_api/models/get_script_by_path_with_draft_response_200_draft_kind.py,sha256=
|
|
1962
|
+
windmill_api/models/get_script_by_path_with_draft_response_200_draft_kind.py,sha256=iUnvqId5i9_aoPZycVEXB2b6yW-fhk2m5L8Y9dNUgek,303
|
|
1961
1963
|
windmill_api/models/get_script_by_path_with_draft_response_200_draft_language.py,sha256=cEwIYvLkhdkTH5yDOpHEjEHB7N-lumdrVzZg9cH0ASI,553
|
|
1962
1964
|
windmill_api/models/get_script_by_path_with_draft_response_200_draft_schema.py,sha256=YH81kdAkHXO3hftKDs3Wr61Fi3abfjQiDtgn5ZgYu3I,1409
|
|
1963
|
-
windmill_api/models/get_script_by_path_with_draft_response_200_kind.py,sha256=
|
|
1965
|
+
windmill_api/models/get_script_by_path_with_draft_response_200_kind.py,sha256=fifQ9zKqFb0BrTSKfYPwXv6Zq2hhg0bzLaMyFNGcico,298
|
|
1964
1966
|
windmill_api/models/get_script_by_path_with_draft_response_200_language.py,sha256=5oGx4JsDd-63TiYn7S1vWgvptAdVo_zhK95mmLlAPw8,548
|
|
1965
1967
|
windmill_api/models/get_script_by_path_with_draft_response_200_schema.py,sha256=WyuCSJZxSQg2K_O8XSxV-F7B1Sij6uY3TCgYHUsH7TA,1381
|
|
1966
1968
|
windmill_api/models/get_script_deployment_status_response_200.py,sha256=xmVrdonWouCGM_3MdoVNSuaAWN8Qt7erpLpfhfauU5c,1985
|
|
@@ -2155,6 +2157,7 @@ windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_prep
|
|
|
2155
2157
|
windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py,sha256=1CDuN_e2QbrQ4pDG51MZ0_6J2C4LtK--jAopHR2V74g,2605
|
|
2156
2158
|
windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py,sha256=fVbKAisE923-0ifYK3hCijaTiom-suep2d2txvzwNoo,232
|
|
2157
2159
|
windmill_api/models/get_suspended_job_flow_response_200_job_type_1_type.py,sha256=C8N3eSO8W-2BkIfS2BPT-KgWPhOie5-C_7RGwlGYn3I,175
|
|
2160
|
+
windmill_api/models/get_threshold_alert_response_200.py,sha256=VPuvmfI_3YJMUxW6XqLGyYMNnMy5GtzNKWf0z91haJs,2561
|
|
2158
2161
|
windmill_api/models/get_top_hub_scripts_response_200.py,sha256=kqbTv8x-kJH3_FmTkZagVOcc16q4BUGqIlmG3WWFWRI,2345
|
|
2159
2162
|
windmill_api/models/get_top_hub_scripts_response_200_asks_item.py,sha256=o9hlAPS045SoJ_iObndt-2SqYhZpiJ5bbhe3nViCF2E,2669
|
|
2160
2163
|
windmill_api/models/get_triggers_count_of_flow_response_200.py,sha256=n_9euNrwWFEEGIA9yr7f4gFi2yhrJVJOaY3pKT7n1tk,4913
|
|
@@ -2938,7 +2941,7 @@ windmill_api/models/list_schedules_with_jobs_response_200_item_retry_constant.py
|
|
|
2938
2941
|
windmill_api/models/list_schedules_with_jobs_response_200_item_retry_exponential.py,sha256=aQHCSk20hDQCUtsILv8pz1NgxOfjXTPHtbk7enZ4NPs,2641
|
|
2939
2942
|
windmill_api/models/list_scripts_response_200_item.py,sha256=uk9ERJh6L40GOf2AhDtzGzK42p-wt_oX3DKOwlKuQJM,13314
|
|
2940
2943
|
windmill_api/models/list_scripts_response_200_item_extra_perms.py,sha256=UEuQQZOU_6_fwE5lDsPe41ViX_y-VVvk62t--srufDM,1353
|
|
2941
|
-
windmill_api/models/list_scripts_response_200_item_kind.py,sha256=
|
|
2944
|
+
windmill_api/models/list_scripts_response_200_item_kind.py,sha256=Dp7qhzK3tDlY2xSt1pxyfAkQneavaU7x1Tig5VIYkkU,289
|
|
2942
2945
|
windmill_api/models/list_scripts_response_200_item_language.py,sha256=x4CmVUxdQqrIlrulw5WeZ5MKSzSDSiYYKxMzyrLNtko,539
|
|
2943
2946
|
windmill_api/models/list_scripts_response_200_item_schema.py,sha256=_kp2BPTE9G0BzWxAkIU9NyPUXxNLMnLUuBrOXoO0qmY,1327
|
|
2944
2947
|
windmill_api/models/list_search_app_response_200_item.py,sha256=pl2uIN1YwzgjVVUqhv-e4TPJiwg0ANrMH-7pVfNAoGI,1666
|
|
@@ -3019,15 +3022,15 @@ windmill_api/models/new_schedule_retry.py,sha256=9dTH-Z2xin57pOT8mP8phwqjBkSi5zq
|
|
|
3019
3022
|
windmill_api/models/new_schedule_retry_constant.py,sha256=0puZzPKCsTYBrYtXRFmEqhLC4CZ6ty-kFfRb92e8xyk,1875
|
|
3020
3023
|
windmill_api/models/new_schedule_retry_exponential.py,sha256=TxzoHERUFTkCKbMu8SpMyXCVHAOCxltcqXrWnsMBcd4,2501
|
|
3021
3024
|
windmill_api/models/new_script.py,sha256=JPUEIE_v1ulJBUraG39oEiyvZ2F9RUYPvMmwrKHx-nI,10911
|
|
3022
|
-
windmill_api/models/new_script_kind.py,sha256=
|
|
3025
|
+
windmill_api/models/new_script_kind.py,sha256=fe8_6xKkZ8anjL9NoA_Qwbd9XtaMjb6UaJWfCJi3JcA,272
|
|
3023
3026
|
windmill_api/models/new_script_language.py,sha256=lZ2VWqGup0L3OOUk8v67MBIB-91C6au6x3Hhv6-olJY,522
|
|
3024
3027
|
windmill_api/models/new_script_schema.py,sha256=yrVX5UiAMSJoTBgvQ2fOWGBatIcD8pTWk8OfGhxpSB0,1233
|
|
3025
3028
|
windmill_api/models/new_script_with_draft.py,sha256=zExQGAVQpmloS16RvEChs8LU2twfkfEbKld4MWVaTLc,12031
|
|
3026
3029
|
windmill_api/models/new_script_with_draft_draft.py,sha256=oTO3CqxYBDYh-xL9iFa0AiMHEAhldy1ORJXjveczZbE,11268
|
|
3027
|
-
windmill_api/models/new_script_with_draft_draft_kind.py,sha256=
|
|
3030
|
+
windmill_api/models/new_script_with_draft_draft_kind.py,sha256=9IsOSPjok2o3CfWhs5tI7wvT6W3U6-GKfSitI_NfG0U,286
|
|
3028
3031
|
windmill_api/models/new_script_with_draft_draft_language.py,sha256=1lXqJBDb34IJltyiERrcT5KpsIwTyC5ZLrX-06_3HSM,536
|
|
3029
3032
|
windmill_api/models/new_script_with_draft_draft_schema.py,sha256=V4-wxz79ALa37CRfZv54JzmB5ARJRzY9oSG8F4Cpv4M,1312
|
|
3030
|
-
windmill_api/models/new_script_with_draft_kind.py,sha256=
|
|
3033
|
+
windmill_api/models/new_script_with_draft_kind.py,sha256=bNjU9ygiWUtzKDRJlMtVcID9kq-WE7WHrczJ5WcFY8U,281
|
|
3031
3034
|
windmill_api/models/new_script_with_draft_language.py,sha256=NKBrpym1RNr6v57oL7-31jcP9valWDX-TtCx_2fKixw,531
|
|
3032
3035
|
windmill_api/models/new_script_with_draft_schema.py,sha256=jDYRyPisWlZtHbRMtO6Gt7D4xx9Qcg_UCHSCbn9vbYs,1284
|
|
3033
3036
|
windmill_api/models/new_token.py,sha256=nVlHs1c4g88Kfu3qvlkYtw9YLulJiyARia_aDlVu36Q,2863
|
|
@@ -3419,7 +3422,7 @@ windmill_api/models/script.py,sha256=d-IlsrgUoZVYgF4hndHDCEnxAPgaf1O2mYmSDFwG84Q
|
|
|
3419
3422
|
windmill_api/models/script_args.py,sha256=J7dTrezvJ5rdANBWRcCxvNhKpW3MRKbrM8DAkqUIw_s,1205
|
|
3420
3423
|
windmill_api/models/script_extra_perms.py,sha256=AnAU7gjdEpP1-O3Jbvf1UFWCX1r0Pg9sJ2UwZfgB4pw,1241
|
|
3421
3424
|
windmill_api/models/script_history.py,sha256=k9dRgluGUKR4DSFRS-ozSFD7DsfTQfy4p8juf_ZSbyc,1871
|
|
3422
|
-
windmill_api/models/script_kind.py,sha256=
|
|
3425
|
+
windmill_api/models/script_kind.py,sha256=EfuvQDR3IhQ9etWW99oMvmgdawuj__rx5tQRsKTAHAY,269
|
|
3423
3426
|
windmill_api/models/script_language.py,sha256=zgFHt7rD2lbCRJJLNZBR4l6H0o0Q4RhpSGL8tmnjUDk,519
|
|
3424
3427
|
windmill_api/models/script_schema.py,sha256=GXPOBoQ3f0rw_DVnfAOJLfXc1R7Fkmxzzjd02R-FEt4,1215
|
|
3425
3428
|
windmill_api/models/search_jobs_index_response_200.py,sha256=G5l9sg4Q57_rei_DIl-gU6T1CuB0QAj-yGUeWva1uK0,3873
|
|
@@ -3443,6 +3446,7 @@ windmill_api/models/set_nats_trigger_enabled_json_body.py,sha256=pytw5JNnO98R278
|
|
|
3443
3446
|
windmill_api/models/set_password_for_user_json_body.py,sha256=5NIXryeSJWSBl2Q61_UwZrSHpJkTxX1IiLJ2qMK7R1k,1544
|
|
3444
3447
|
windmill_api/models/set_password_json_body.py,sha256=sw5-4v9a29sshOdlEDM-yIYk0oRS-lw8jC_CqanfznI,1503
|
|
3445
3448
|
windmill_api/models/set_schedule_enabled_json_body.py,sha256=g8JijrjCKNVOddrX70Dp3LvworWzDBkNTzNXHU80HvE,1533
|
|
3449
|
+
windmill_api/models/set_threshold_alert_json_body.py,sha256=i7qaWObe13Pdq8SouPwfR-7n1C0QF-aYZA6u8zn0OPA,1785
|
|
3446
3450
|
windmill_api/models/set_websocket_trigger_enabled_json_body.py,sha256=7vo3qLPYnFxmZWMlZdJhxyVtG6Qf9Edi6hTGXuKCxgo,1576
|
|
3447
3451
|
windmill_api/models/set_workspace_encryption_key_json_body.py,sha256=ouffHakm84NN5H-6AH5TCC6-bewjjnyyQHI1SzSCWwg,1945
|
|
3448
3452
|
windmill_api/models/slack_token.py,sha256=KeiVUUlrMc4uDIgaX9cQuP6TcAg9q9ltaQdgWTFvoSg,2195
|
|
@@ -3572,7 +3576,7 @@ windmill_api/models/workspace_invite.py,sha256=HnAJWGv5LwxWkz1T3fhgHKIccO7RFC1li
|
|
|
3572
3576
|
windmill_api/models/workspace_mute_critical_alerts_ui_json_body.py,sha256=y8ZwkWEZgavVc-FgLuZZ4z8YPCLxjPcMfdGdKjGM6VQ,1883
|
|
3573
3577
|
windmill_api/py.typed,sha256=8ZJUsxZiuOy1oJeVhsTWQhTG_6pTVHVXk5hJL79ebTk,25
|
|
3574
3578
|
windmill_api/types.py,sha256=GoYub3t4hQP2Yn5tsvShsBfIY3vHUmblU0MXszDx_V0,968
|
|
3575
|
-
windmill_api-1.447.
|
|
3576
|
-
windmill_api-1.447.
|
|
3577
|
-
windmill_api-1.447.
|
|
3578
|
-
windmill_api-1.447.
|
|
3579
|
+
windmill_api-1.447.5.dist-info/LICENSE,sha256=qJVFNTaOevCeSY6NoXeUG1SPOwQ1K-PxVQ2iEWJzX-A,11348
|
|
3580
|
+
windmill_api-1.447.5.dist-info/METADATA,sha256=EOyP6RCe7dwsGw97rP7kSssf3yTZ-sP484v6qc3qAdM,5023
|
|
3581
|
+
windmill_api-1.447.5.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
|
|
3582
|
+
windmill_api-1.447.5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|