windmill-api 1.489.0__py3-none-any.whl → 1.490.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/models/capture.py +14 -17
- windmill_api/models/get_capture_response_200.py +14 -17
- windmill_api/models/list_captures_response_200_item.py +14 -17
- {windmill_api-1.489.0.dist-info → windmill_api-1.490.0.dist-info}/METADATA +1 -1
- {windmill_api-1.489.0.dist-info → windmill_api-1.490.0.dist-info}/RECORD +7 -7
- {windmill_api-1.489.0.dist-info → windmill_api-1.490.0.dist-info}/LICENSE +0 -0
- {windmill_api-1.489.0.dist-info → windmill_api-1.490.0.dist-info}/WHEEL +0 -0
windmill_api/models/capture.py
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import datetime
|
|
2
|
-
from typing import Any, Dict, List, Type, TypeVar
|
|
2
|
+
from typing import Any, Dict, List, Type, TypeVar
|
|
3
3
|
|
|
4
4
|
from attrs import define as _attrs_define
|
|
5
5
|
from attrs import field as _attrs_field
|
|
6
6
|
from dateutil.parser import isoparse
|
|
7
7
|
|
|
8
8
|
from ..models.capture_trigger_kind import CaptureTriggerKind
|
|
9
|
-
from ..types import UNSET, Unset
|
|
10
9
|
|
|
11
10
|
T = TypeVar("T", bound="Capture")
|
|
12
11
|
|
|
@@ -16,40 +15,38 @@ class Capture:
|
|
|
16
15
|
"""
|
|
17
16
|
Attributes:
|
|
18
17
|
trigger_kind (CaptureTriggerKind):
|
|
19
|
-
|
|
18
|
+
main_args (Any):
|
|
19
|
+
preprocessor_args (Any):
|
|
20
20
|
id (int):
|
|
21
21
|
created_at (datetime.datetime):
|
|
22
|
-
trigger_extra (Union[Unset, Any]):
|
|
23
22
|
"""
|
|
24
23
|
|
|
25
24
|
trigger_kind: CaptureTriggerKind
|
|
26
|
-
|
|
25
|
+
main_args: Any
|
|
26
|
+
preprocessor_args: Any
|
|
27
27
|
id: int
|
|
28
28
|
created_at: datetime.datetime
|
|
29
|
-
trigger_extra: Union[Unset, Any] = UNSET
|
|
30
29
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
31
30
|
|
|
32
31
|
def to_dict(self) -> Dict[str, Any]:
|
|
33
32
|
trigger_kind = self.trigger_kind.value
|
|
34
33
|
|
|
35
|
-
|
|
34
|
+
main_args = self.main_args
|
|
35
|
+
preprocessor_args = self.preprocessor_args
|
|
36
36
|
id = self.id
|
|
37
37
|
created_at = self.created_at.isoformat()
|
|
38
38
|
|
|
39
|
-
trigger_extra = self.trigger_extra
|
|
40
|
-
|
|
41
39
|
field_dict: Dict[str, Any] = {}
|
|
42
40
|
field_dict.update(self.additional_properties)
|
|
43
41
|
field_dict.update(
|
|
44
42
|
{
|
|
45
43
|
"trigger_kind": trigger_kind,
|
|
46
|
-
"
|
|
44
|
+
"main_args": main_args,
|
|
45
|
+
"preprocessor_args": preprocessor_args,
|
|
47
46
|
"id": id,
|
|
48
47
|
"created_at": created_at,
|
|
49
48
|
}
|
|
50
49
|
)
|
|
51
|
-
if trigger_extra is not UNSET:
|
|
52
|
-
field_dict["trigger_extra"] = trigger_extra
|
|
53
50
|
|
|
54
51
|
return field_dict
|
|
55
52
|
|
|
@@ -58,20 +55,20 @@ class Capture:
|
|
|
58
55
|
d = src_dict.copy()
|
|
59
56
|
trigger_kind = CaptureTriggerKind(d.pop("trigger_kind"))
|
|
60
57
|
|
|
61
|
-
|
|
58
|
+
main_args = d.pop("main_args")
|
|
59
|
+
|
|
60
|
+
preprocessor_args = d.pop("preprocessor_args")
|
|
62
61
|
|
|
63
62
|
id = d.pop("id")
|
|
64
63
|
|
|
65
64
|
created_at = isoparse(d.pop("created_at"))
|
|
66
65
|
|
|
67
|
-
trigger_extra = d.pop("trigger_extra", UNSET)
|
|
68
|
-
|
|
69
66
|
capture = cls(
|
|
70
67
|
trigger_kind=trigger_kind,
|
|
71
|
-
|
|
68
|
+
main_args=main_args,
|
|
69
|
+
preprocessor_args=preprocessor_args,
|
|
72
70
|
id=id,
|
|
73
71
|
created_at=created_at,
|
|
74
|
-
trigger_extra=trigger_extra,
|
|
75
72
|
)
|
|
76
73
|
|
|
77
74
|
capture.additional_properties = d
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import datetime
|
|
2
|
-
from typing import Any, Dict, List, Type, TypeVar
|
|
2
|
+
from typing import Any, Dict, List, Type, TypeVar
|
|
3
3
|
|
|
4
4
|
from attrs import define as _attrs_define
|
|
5
5
|
from attrs import field as _attrs_field
|
|
6
6
|
from dateutil.parser import isoparse
|
|
7
7
|
|
|
8
8
|
from ..models.get_capture_response_200_trigger_kind import GetCaptureResponse200TriggerKind
|
|
9
|
-
from ..types import UNSET, Unset
|
|
10
9
|
|
|
11
10
|
T = TypeVar("T", bound="GetCaptureResponse200")
|
|
12
11
|
|
|
@@ -16,40 +15,38 @@ class GetCaptureResponse200:
|
|
|
16
15
|
"""
|
|
17
16
|
Attributes:
|
|
18
17
|
trigger_kind (GetCaptureResponse200TriggerKind):
|
|
19
|
-
|
|
18
|
+
main_args (Any):
|
|
19
|
+
preprocessor_args (Any):
|
|
20
20
|
id (int):
|
|
21
21
|
created_at (datetime.datetime):
|
|
22
|
-
trigger_extra (Union[Unset, Any]):
|
|
23
22
|
"""
|
|
24
23
|
|
|
25
24
|
trigger_kind: GetCaptureResponse200TriggerKind
|
|
26
|
-
|
|
25
|
+
main_args: Any
|
|
26
|
+
preprocessor_args: Any
|
|
27
27
|
id: int
|
|
28
28
|
created_at: datetime.datetime
|
|
29
|
-
trigger_extra: Union[Unset, Any] = UNSET
|
|
30
29
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
31
30
|
|
|
32
31
|
def to_dict(self) -> Dict[str, Any]:
|
|
33
32
|
trigger_kind = self.trigger_kind.value
|
|
34
33
|
|
|
35
|
-
|
|
34
|
+
main_args = self.main_args
|
|
35
|
+
preprocessor_args = self.preprocessor_args
|
|
36
36
|
id = self.id
|
|
37
37
|
created_at = self.created_at.isoformat()
|
|
38
38
|
|
|
39
|
-
trigger_extra = self.trigger_extra
|
|
40
|
-
|
|
41
39
|
field_dict: Dict[str, Any] = {}
|
|
42
40
|
field_dict.update(self.additional_properties)
|
|
43
41
|
field_dict.update(
|
|
44
42
|
{
|
|
45
43
|
"trigger_kind": trigger_kind,
|
|
46
|
-
"
|
|
44
|
+
"main_args": main_args,
|
|
45
|
+
"preprocessor_args": preprocessor_args,
|
|
47
46
|
"id": id,
|
|
48
47
|
"created_at": created_at,
|
|
49
48
|
}
|
|
50
49
|
)
|
|
51
|
-
if trigger_extra is not UNSET:
|
|
52
|
-
field_dict["trigger_extra"] = trigger_extra
|
|
53
50
|
|
|
54
51
|
return field_dict
|
|
55
52
|
|
|
@@ -58,20 +55,20 @@ class GetCaptureResponse200:
|
|
|
58
55
|
d = src_dict.copy()
|
|
59
56
|
trigger_kind = GetCaptureResponse200TriggerKind(d.pop("trigger_kind"))
|
|
60
57
|
|
|
61
|
-
|
|
58
|
+
main_args = d.pop("main_args")
|
|
59
|
+
|
|
60
|
+
preprocessor_args = d.pop("preprocessor_args")
|
|
62
61
|
|
|
63
62
|
id = d.pop("id")
|
|
64
63
|
|
|
65
64
|
created_at = isoparse(d.pop("created_at"))
|
|
66
65
|
|
|
67
|
-
trigger_extra = d.pop("trigger_extra", UNSET)
|
|
68
|
-
|
|
69
66
|
get_capture_response_200 = cls(
|
|
70
67
|
trigger_kind=trigger_kind,
|
|
71
|
-
|
|
68
|
+
main_args=main_args,
|
|
69
|
+
preprocessor_args=preprocessor_args,
|
|
72
70
|
id=id,
|
|
73
71
|
created_at=created_at,
|
|
74
|
-
trigger_extra=trigger_extra,
|
|
75
72
|
)
|
|
76
73
|
|
|
77
74
|
get_capture_response_200.additional_properties = d
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import datetime
|
|
2
|
-
from typing import Any, Dict, List, Type, TypeVar
|
|
2
|
+
from typing import Any, Dict, List, Type, TypeVar
|
|
3
3
|
|
|
4
4
|
from attrs import define as _attrs_define
|
|
5
5
|
from attrs import field as _attrs_field
|
|
6
6
|
from dateutil.parser import isoparse
|
|
7
7
|
|
|
8
8
|
from ..models.list_captures_response_200_item_trigger_kind import ListCapturesResponse200ItemTriggerKind
|
|
9
|
-
from ..types import UNSET, Unset
|
|
10
9
|
|
|
11
10
|
T = TypeVar("T", bound="ListCapturesResponse200Item")
|
|
12
11
|
|
|
@@ -16,40 +15,38 @@ class ListCapturesResponse200Item:
|
|
|
16
15
|
"""
|
|
17
16
|
Attributes:
|
|
18
17
|
trigger_kind (ListCapturesResponse200ItemTriggerKind):
|
|
19
|
-
|
|
18
|
+
main_args (Any):
|
|
19
|
+
preprocessor_args (Any):
|
|
20
20
|
id (int):
|
|
21
21
|
created_at (datetime.datetime):
|
|
22
|
-
trigger_extra (Union[Unset, Any]):
|
|
23
22
|
"""
|
|
24
23
|
|
|
25
24
|
trigger_kind: ListCapturesResponse200ItemTriggerKind
|
|
26
|
-
|
|
25
|
+
main_args: Any
|
|
26
|
+
preprocessor_args: Any
|
|
27
27
|
id: int
|
|
28
28
|
created_at: datetime.datetime
|
|
29
|
-
trigger_extra: Union[Unset, Any] = UNSET
|
|
30
29
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
31
30
|
|
|
32
31
|
def to_dict(self) -> Dict[str, Any]:
|
|
33
32
|
trigger_kind = self.trigger_kind.value
|
|
34
33
|
|
|
35
|
-
|
|
34
|
+
main_args = self.main_args
|
|
35
|
+
preprocessor_args = self.preprocessor_args
|
|
36
36
|
id = self.id
|
|
37
37
|
created_at = self.created_at.isoformat()
|
|
38
38
|
|
|
39
|
-
trigger_extra = self.trigger_extra
|
|
40
|
-
|
|
41
39
|
field_dict: Dict[str, Any] = {}
|
|
42
40
|
field_dict.update(self.additional_properties)
|
|
43
41
|
field_dict.update(
|
|
44
42
|
{
|
|
45
43
|
"trigger_kind": trigger_kind,
|
|
46
|
-
"
|
|
44
|
+
"main_args": main_args,
|
|
45
|
+
"preprocessor_args": preprocessor_args,
|
|
47
46
|
"id": id,
|
|
48
47
|
"created_at": created_at,
|
|
49
48
|
}
|
|
50
49
|
)
|
|
51
|
-
if trigger_extra is not UNSET:
|
|
52
|
-
field_dict["trigger_extra"] = trigger_extra
|
|
53
50
|
|
|
54
51
|
return field_dict
|
|
55
52
|
|
|
@@ -58,20 +55,20 @@ class ListCapturesResponse200Item:
|
|
|
58
55
|
d = src_dict.copy()
|
|
59
56
|
trigger_kind = ListCapturesResponse200ItemTriggerKind(d.pop("trigger_kind"))
|
|
60
57
|
|
|
61
|
-
|
|
58
|
+
main_args = d.pop("main_args")
|
|
59
|
+
|
|
60
|
+
preprocessor_args = d.pop("preprocessor_args")
|
|
62
61
|
|
|
63
62
|
id = d.pop("id")
|
|
64
63
|
|
|
65
64
|
created_at = isoparse(d.pop("created_at"))
|
|
66
65
|
|
|
67
|
-
trigger_extra = d.pop("trigger_extra", UNSET)
|
|
68
|
-
|
|
69
66
|
list_captures_response_200_item = cls(
|
|
70
67
|
trigger_kind=trigger_kind,
|
|
71
|
-
|
|
68
|
+
main_args=main_args,
|
|
69
|
+
preprocessor_args=preprocessor_args,
|
|
72
70
|
id=id,
|
|
73
71
|
created_at=created_at,
|
|
74
|
-
trigger_extra=trigger_extra,
|
|
75
72
|
)
|
|
76
73
|
|
|
77
74
|
list_captures_response_200_item.additional_properties = d
|
|
@@ -660,7 +660,7 @@ windmill_api/models/branch_one_type.py,sha256=HJpBGZqSqDVoeKBVepXMg4g97Guo7EwWEP
|
|
|
660
660
|
windmill_api/models/cancel_persistent_queued_jobs_json_body.py,sha256=hmmaGPBsJcbSJgtJ0zeo7NUS1sCXuuBe43NTQ9VBL2g,1653
|
|
661
661
|
windmill_api/models/cancel_queued_job_json_body.py,sha256=bEDGehOWMK5OxJ1FXH3KHMxhEESjJlIqR2p3AbE2zkU,1595
|
|
662
662
|
windmill_api/models/cancel_suspended_job_post_json_body.py,sha256=IdId9-s4n5FrTr8KkeGLU_9NYzQynom1fp2mjRrbpTg,1317
|
|
663
|
-
windmill_api/models/capture.py,sha256=
|
|
663
|
+
windmill_api/models/capture.py,sha256=kJ3-4jZtn9Yo6vfFTkHHts4m8vquQ7XXGtcyzwnc7ZE,2484
|
|
664
664
|
windmill_api/models/capture_config.py,sha256=lHEBzVKhgmpQWMJhGMVS1-0V8iE5Fco3cWznbXPo1pQ,3043
|
|
665
665
|
windmill_api/models/capture_config_trigger_kind.py,sha256=iO5FSZVlIIjVa5nxSAdk2C8O3pK5BDnWpqGEzlLTJUQ,333
|
|
666
666
|
windmill_api/models/capture_trigger_kind.py,sha256=GZCjyw5Ncimm-vcIz4lYlLU-I8j_0lx4vEIekiSx-wI,327
|
|
@@ -1550,7 +1550,7 @@ windmill_api/models/get_audit_log_response_200_parameters.py,sha256=0DpzZiiQe-WP
|
|
|
1550
1550
|
windmill_api/models/get_capture_configs_response_200_item.py,sha256=Ru4nl77ejFHiheMVY_lQjTCieQeCiUEf0UHjjkSuMI4,3249
|
|
1551
1551
|
windmill_api/models/get_capture_configs_response_200_item_trigger_kind.py,sha256=JotLRpEhP_bLsTfFLnAJXOvc6T2mX9bVTpCDFLFJWsc,352
|
|
1552
1552
|
windmill_api/models/get_capture_configs_runnable_kind.py,sha256=VWQCYIDQqajAHhcs3aZHMfZUA_SdkF_7aXvvDlhO4hc,174
|
|
1553
|
-
windmill_api/models/get_capture_response_200.py,sha256=
|
|
1553
|
+
windmill_api/models/get_capture_response_200.py,sha256=Kh602CAGhQdLjV1TjkPF2pS3Kb_nruaAUXbgCETh3Xk,2636
|
|
1554
1554
|
windmill_api/models/get_capture_response_200_trigger_kind.py,sha256=SQKmfjlGeu5mUGhmAaipeksM9x9u8g9HIQj7K0bFuIc,341
|
|
1555
1555
|
windmill_api/models/get_completed_count_response_200.py,sha256=cudwRJHt5jvqGetkTemW-1aOSR5ni5znOGrkvpSR9jE,1621
|
|
1556
1556
|
windmill_api/models/get_completed_job_response_200.py,sha256=UTpSl7RxWkRtvzroZzEizda25dXT8hvaRWh72MV72yk,13433
|
|
@@ -2609,7 +2609,7 @@ windmill_api/models/list_audit_logs_response_200_item_parameters.py,sha256=q4xUQ
|
|
|
2609
2609
|
windmill_api/models/list_autoscaling_events_response_200_item.py,sha256=cpgO8peKyXAJ7TVYMTKk7pJyw3RaUQBAIhMcP95edsw,3479
|
|
2610
2610
|
windmill_api/models/list_available_teams_channels_response_200_item.py,sha256=-rwWVXatn4x9nWbHEovLc_M-IPLOzOuhIuHhixJrbE0,2624
|
|
2611
2611
|
windmill_api/models/list_available_teams_ids_response_200_item.py,sha256=m_dVBX0c9zUoQsOFwKR1SGGSMxZItGF3RyYxsX-P0kM,1955
|
|
2612
|
-
windmill_api/models/list_captures_response_200_item.py,sha256=
|
|
2612
|
+
windmill_api/models/list_captures_response_200_item.py,sha256=KRviYFOxsyWQ9CV2k_EgnFMKcVfIPNX-fnk_f3mLfj8,2700
|
|
2613
2613
|
windmill_api/models/list_captures_response_200_item_trigger_kind.py,sha256=DjPx9pSxFNK_jZdu3FX4czqPW41PNHSI_zfolpBPl_0,347
|
|
2614
2614
|
windmill_api/models/list_captures_runnable_kind.py,sha256=aX97pn4XHRbUoGVoEcMmhoLiGGjnEZU0eryz4Tl4AWQ,169
|
|
2615
2615
|
windmill_api/models/list_captures_trigger_kind.py,sha256=nVI5HL_VHcvyaoaGjuR-GFhjqjTKrcZS9ktUHDZPAFU,332
|
|
@@ -3960,7 +3960,7 @@ windmill_api/models/workspace_invite.py,sha256=HnAJWGv5LwxWkz1T3fhgHKIccO7RFC1li
|
|
|
3960
3960
|
windmill_api/models/workspace_mute_critical_alerts_ui_json_body.py,sha256=y8ZwkWEZgavVc-FgLuZZ4z8YPCLxjPcMfdGdKjGM6VQ,1883
|
|
3961
3961
|
windmill_api/py.typed,sha256=8ZJUsxZiuOy1oJeVhsTWQhTG_6pTVHVXk5hJL79ebTk,25
|
|
3962
3962
|
windmill_api/types.py,sha256=GoYub3t4hQP2Yn5tsvShsBfIY3vHUmblU0MXszDx_V0,968
|
|
3963
|
-
windmill_api-1.
|
|
3964
|
-
windmill_api-1.
|
|
3965
|
-
windmill_api-1.
|
|
3966
|
-
windmill_api-1.
|
|
3963
|
+
windmill_api-1.490.0.dist-info/LICENSE,sha256=qJVFNTaOevCeSY6NoXeUG1SPOwQ1K-PxVQ2iEWJzX-A,11348
|
|
3964
|
+
windmill_api-1.490.0.dist-info/METADATA,sha256=boSJ0F4AyPZapSdCgiOH7v-Wa1kXixRwUVSi184uvd4,5023
|
|
3965
|
+
windmill_api-1.490.0.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
|
|
3966
|
+
windmill_api-1.490.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|