windmill-api 1.464.0__py3-none-any.whl → 1.466.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/sqs_trigger/__init__.py +0 -0
- windmill_api/api/sqs_trigger/create_sqs_trigger.py +105 -0
- windmill_api/api/sqs_trigger/delete_sqs_trigger.py +101 -0
- windmill_api/api/sqs_trigger/exists_sqs_trigger.py +160 -0
- windmill_api/api/sqs_trigger/get_sqs_trigger.py +166 -0
- windmill_api/api/sqs_trigger/list_sqs_triggers.py +237 -0
- windmill_api/api/sqs_trigger/set_sqs_trigger_enabled.py +113 -0
- windmill_api/api/sqs_trigger/test_sqs_connection.py +105 -0
- windmill_api/api/sqs_trigger/update_sqs_trigger.py +113 -0
- windmill_api/models/add_granular_acls_kind.py +1 -0
- windmill_api/models/ai_provider.py +1 -0
- windmill_api/models/ai_resource_provider.py +1 -0
- windmill_api/models/capture_config_trigger_kind.py +1 -0
- windmill_api/models/capture_trigger_kind.py +1 -0
- windmill_api/models/create_sqs_trigger_json_body.py +107 -0
- windmill_api/models/edit_copilot_config_json_body_ai_resource_provider.py +1 -0
- windmill_api/models/edit_sqs_trigger.py +105 -0
- windmill_api/models/get_capture_configs_response_200_item_trigger_kind.py +1 -0
- windmill_api/models/get_capture_response_200_trigger_kind.py +1 -0
- windmill_api/models/get_granular_acls_kind.py +1 -0
- windmill_api/models/get_http_trigger_response_200.py +21 -21
- windmill_api/models/get_kafka_trigger_response_200.py +47 -47
- windmill_api/models/get_nats_trigger_response_200.py +47 -47
- windmill_api/models/get_postgres_trigger_response_200.py +21 -21
- windmill_api/models/get_settings_response_200_ai_resource_provider.py +1 -0
- windmill_api/models/get_sqs_trigger_response_200.py +183 -0
- windmill_api/models/get_sqs_trigger_response_200_extra_perms.py +44 -0
- windmill_api/models/get_triggers_count_of_flow_response_200.py +8 -0
- windmill_api/models/get_triggers_count_of_script_response_200.py +8 -0
- windmill_api/models/get_used_triggers_response_200.py +7 -0
- windmill_api/models/get_websocket_trigger_response_200.py +21 -21
- windmill_api/models/http_trigger.py +21 -21
- windmill_api/models/kafka_trigger.py +47 -47
- windmill_api/models/list_captures_response_200_item_trigger_kind.py +1 -0
- windmill_api/models/list_captures_trigger_kind.py +1 -0
- windmill_api/models/list_http_triggers_response_200_item.py +21 -21
- windmill_api/models/list_kafka_triggers_response_200_item.py +47 -47
- windmill_api/models/list_nats_triggers_response_200_item.py +47 -47
- windmill_api/models/list_postgres_triggers_response_200_item.py +21 -21
- windmill_api/models/list_sqs_triggers_response_200_item.py +183 -0
- windmill_api/models/list_sqs_triggers_response_200_item_extra_perms.py +44 -0
- windmill_api/models/list_websocket_triggers_response_200_item.py +21 -21
- windmill_api/models/nats_trigger.py +47 -47
- windmill_api/models/new_sqs_trigger.py +107 -0
- windmill_api/models/ping_capture_config_trigger_kind.py +1 -0
- windmill_api/models/postgres_trigger.py +21 -21
- windmill_api/models/remove_granular_acls_kind.py +1 -0
- windmill_api/models/set_capture_config_json_body_trigger_kind.py +1 -0
- windmill_api/models/set_sqs_trigger_enabled_json_body.py +58 -0
- windmill_api/models/sqs_trigger.py +183 -0
- windmill_api/models/sqs_trigger_extra_perms.py +44 -0
- windmill_api/models/test_sqs_connection_json_body.py +64 -0
- windmill_api/models/test_sqs_connection_json_body_connection.py +44 -0
- windmill_api/models/trigger_extra_property.py +22 -0
- windmill_api/models/triggers_count.py +8 -0
- windmill_api/models/update_sqs_trigger_json_body.py +105 -0
- windmill_api/models/websocket_trigger.py +21 -21
- {windmill_api-1.464.0.dist-info → windmill_api-1.466.0.dist-info}/METADATA +1 -1
- {windmill_api-1.464.0.dist-info → windmill_api-1.466.0.dist-info}/RECORD +61 -39
- {windmill_api-1.464.0.dist-info → windmill_api-1.466.0.dist-info}/LICENSE +0 -0
- {windmill_api-1.464.0.dist-info → windmill_api-1.466.0.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,107 @@
|
|
|
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 ..types import UNSET, Unset
|
|
7
|
+
|
|
8
|
+
T = TypeVar("T", bound="CreateSqsTriggerJsonBody")
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
@_attrs_define
|
|
12
|
+
class CreateSqsTriggerJsonBody:
|
|
13
|
+
"""
|
|
14
|
+
Attributes:
|
|
15
|
+
queue_url (str):
|
|
16
|
+
aws_resource_path (str):
|
|
17
|
+
path (str):
|
|
18
|
+
script_path (str):
|
|
19
|
+
is_flow (bool):
|
|
20
|
+
message_attributes (Union[Unset, List[str]]):
|
|
21
|
+
enabled (Union[Unset, bool]):
|
|
22
|
+
"""
|
|
23
|
+
|
|
24
|
+
queue_url: str
|
|
25
|
+
aws_resource_path: str
|
|
26
|
+
path: str
|
|
27
|
+
script_path: str
|
|
28
|
+
is_flow: bool
|
|
29
|
+
message_attributes: Union[Unset, List[str]] = UNSET
|
|
30
|
+
enabled: Union[Unset, bool] = UNSET
|
|
31
|
+
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
32
|
+
|
|
33
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
34
|
+
queue_url = self.queue_url
|
|
35
|
+
aws_resource_path = self.aws_resource_path
|
|
36
|
+
path = self.path
|
|
37
|
+
script_path = self.script_path
|
|
38
|
+
is_flow = self.is_flow
|
|
39
|
+
message_attributes: Union[Unset, List[str]] = UNSET
|
|
40
|
+
if not isinstance(self.message_attributes, Unset):
|
|
41
|
+
message_attributes = self.message_attributes
|
|
42
|
+
|
|
43
|
+
enabled = self.enabled
|
|
44
|
+
|
|
45
|
+
field_dict: Dict[str, Any] = {}
|
|
46
|
+
field_dict.update(self.additional_properties)
|
|
47
|
+
field_dict.update(
|
|
48
|
+
{
|
|
49
|
+
"queue_url": queue_url,
|
|
50
|
+
"aws_resource_path": aws_resource_path,
|
|
51
|
+
"path": path,
|
|
52
|
+
"script_path": script_path,
|
|
53
|
+
"is_flow": is_flow,
|
|
54
|
+
}
|
|
55
|
+
)
|
|
56
|
+
if message_attributes is not UNSET:
|
|
57
|
+
field_dict["message_attributes"] = message_attributes
|
|
58
|
+
if enabled is not UNSET:
|
|
59
|
+
field_dict["enabled"] = enabled
|
|
60
|
+
|
|
61
|
+
return field_dict
|
|
62
|
+
|
|
63
|
+
@classmethod
|
|
64
|
+
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
65
|
+
d = src_dict.copy()
|
|
66
|
+
queue_url = d.pop("queue_url")
|
|
67
|
+
|
|
68
|
+
aws_resource_path = d.pop("aws_resource_path")
|
|
69
|
+
|
|
70
|
+
path = d.pop("path")
|
|
71
|
+
|
|
72
|
+
script_path = d.pop("script_path")
|
|
73
|
+
|
|
74
|
+
is_flow = d.pop("is_flow")
|
|
75
|
+
|
|
76
|
+
message_attributes = cast(List[str], d.pop("message_attributes", UNSET))
|
|
77
|
+
|
|
78
|
+
enabled = d.pop("enabled", UNSET)
|
|
79
|
+
|
|
80
|
+
create_sqs_trigger_json_body = cls(
|
|
81
|
+
queue_url=queue_url,
|
|
82
|
+
aws_resource_path=aws_resource_path,
|
|
83
|
+
path=path,
|
|
84
|
+
script_path=script_path,
|
|
85
|
+
is_flow=is_flow,
|
|
86
|
+
message_attributes=message_attributes,
|
|
87
|
+
enabled=enabled,
|
|
88
|
+
)
|
|
89
|
+
|
|
90
|
+
create_sqs_trigger_json_body.additional_properties = d
|
|
91
|
+
return create_sqs_trigger_json_body
|
|
92
|
+
|
|
93
|
+
@property
|
|
94
|
+
def additional_keys(self) -> List[str]:
|
|
95
|
+
return list(self.additional_properties.keys())
|
|
96
|
+
|
|
97
|
+
def __getitem__(self, key: str) -> Any:
|
|
98
|
+
return self.additional_properties[key]
|
|
99
|
+
|
|
100
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
101
|
+
self.additional_properties[key] = value
|
|
102
|
+
|
|
103
|
+
def __delitem__(self, key: str) -> None:
|
|
104
|
+
del self.additional_properties[key]
|
|
105
|
+
|
|
106
|
+
def __contains__(self, key: str) -> bool:
|
|
107
|
+
return key in self.additional_properties
|
|
@@ -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 ..types import UNSET, Unset
|
|
7
|
+
|
|
8
|
+
T = TypeVar("T", bound="EditSqsTrigger")
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
@_attrs_define
|
|
12
|
+
class EditSqsTrigger:
|
|
13
|
+
"""
|
|
14
|
+
Attributes:
|
|
15
|
+
queue_url (str):
|
|
16
|
+
aws_resource_path (str):
|
|
17
|
+
path (str):
|
|
18
|
+
script_path (str):
|
|
19
|
+
is_flow (bool):
|
|
20
|
+
enabled (bool):
|
|
21
|
+
message_attributes (Union[Unset, List[str]]):
|
|
22
|
+
"""
|
|
23
|
+
|
|
24
|
+
queue_url: str
|
|
25
|
+
aws_resource_path: str
|
|
26
|
+
path: str
|
|
27
|
+
script_path: str
|
|
28
|
+
is_flow: bool
|
|
29
|
+
enabled: bool
|
|
30
|
+
message_attributes: Union[Unset, List[str]] = UNSET
|
|
31
|
+
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
32
|
+
|
|
33
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
34
|
+
queue_url = self.queue_url
|
|
35
|
+
aws_resource_path = self.aws_resource_path
|
|
36
|
+
path = self.path
|
|
37
|
+
script_path = self.script_path
|
|
38
|
+
is_flow = self.is_flow
|
|
39
|
+
enabled = self.enabled
|
|
40
|
+
message_attributes: Union[Unset, List[str]] = UNSET
|
|
41
|
+
if not isinstance(self.message_attributes, Unset):
|
|
42
|
+
message_attributes = self.message_attributes
|
|
43
|
+
|
|
44
|
+
field_dict: Dict[str, Any] = {}
|
|
45
|
+
field_dict.update(self.additional_properties)
|
|
46
|
+
field_dict.update(
|
|
47
|
+
{
|
|
48
|
+
"queue_url": queue_url,
|
|
49
|
+
"aws_resource_path": aws_resource_path,
|
|
50
|
+
"path": path,
|
|
51
|
+
"script_path": script_path,
|
|
52
|
+
"is_flow": is_flow,
|
|
53
|
+
"enabled": enabled,
|
|
54
|
+
}
|
|
55
|
+
)
|
|
56
|
+
if message_attributes is not UNSET:
|
|
57
|
+
field_dict["message_attributes"] = message_attributes
|
|
58
|
+
|
|
59
|
+
return field_dict
|
|
60
|
+
|
|
61
|
+
@classmethod
|
|
62
|
+
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
63
|
+
d = src_dict.copy()
|
|
64
|
+
queue_url = d.pop("queue_url")
|
|
65
|
+
|
|
66
|
+
aws_resource_path = d.pop("aws_resource_path")
|
|
67
|
+
|
|
68
|
+
path = d.pop("path")
|
|
69
|
+
|
|
70
|
+
script_path = d.pop("script_path")
|
|
71
|
+
|
|
72
|
+
is_flow = d.pop("is_flow")
|
|
73
|
+
|
|
74
|
+
enabled = d.pop("enabled")
|
|
75
|
+
|
|
76
|
+
message_attributes = cast(List[str], d.pop("message_attributes", UNSET))
|
|
77
|
+
|
|
78
|
+
edit_sqs_trigger = cls(
|
|
79
|
+
queue_url=queue_url,
|
|
80
|
+
aws_resource_path=aws_resource_path,
|
|
81
|
+
path=path,
|
|
82
|
+
script_path=script_path,
|
|
83
|
+
is_flow=is_flow,
|
|
84
|
+
enabled=enabled,
|
|
85
|
+
message_attributes=message_attributes,
|
|
86
|
+
)
|
|
87
|
+
|
|
88
|
+
edit_sqs_trigger.additional_properties = d
|
|
89
|
+
return edit_sqs_trigger
|
|
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
|
|
@@ -20,48 +20,47 @@ T = TypeVar("T", bound="GetHttpTriggerResponse200")
|
|
|
20
20
|
class GetHttpTriggerResponse200:
|
|
21
21
|
"""
|
|
22
22
|
Attributes:
|
|
23
|
-
path (str):
|
|
24
|
-
script_path (str):
|
|
25
23
|
route_path (str):
|
|
26
|
-
is_flow (bool):
|
|
27
24
|
http_method (GetHttpTriggerResponse200HttpMethod):
|
|
28
25
|
is_async (bool):
|
|
29
26
|
requires_auth (bool):
|
|
30
27
|
is_static_website (bool):
|
|
28
|
+
path (str):
|
|
29
|
+
script_path (str):
|
|
31
30
|
email (str):
|
|
32
31
|
extra_perms (GetHttpTriggerResponse200ExtraPerms):
|
|
33
32
|
workspace_id (str):
|
|
34
33
|
edited_by (str):
|
|
35
34
|
edited_at (datetime.datetime):
|
|
35
|
+
is_flow (bool):
|
|
36
36
|
static_asset_config (Union[Unset, GetHttpTriggerResponse200StaticAssetConfig]):
|
|
37
37
|
"""
|
|
38
38
|
|
|
39
|
-
path: str
|
|
40
|
-
script_path: str
|
|
41
39
|
route_path: str
|
|
42
|
-
is_flow: bool
|
|
43
40
|
http_method: GetHttpTriggerResponse200HttpMethod
|
|
44
41
|
is_async: bool
|
|
45
42
|
requires_auth: bool
|
|
46
43
|
is_static_website: bool
|
|
44
|
+
path: str
|
|
45
|
+
script_path: str
|
|
47
46
|
email: str
|
|
48
47
|
extra_perms: "GetHttpTriggerResponse200ExtraPerms"
|
|
49
48
|
workspace_id: str
|
|
50
49
|
edited_by: str
|
|
51
50
|
edited_at: datetime.datetime
|
|
51
|
+
is_flow: bool
|
|
52
52
|
static_asset_config: Union[Unset, "GetHttpTriggerResponse200StaticAssetConfig"] = UNSET
|
|
53
53
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
54
54
|
|
|
55
55
|
def to_dict(self) -> Dict[str, Any]:
|
|
56
|
-
path = self.path
|
|
57
|
-
script_path = self.script_path
|
|
58
56
|
route_path = self.route_path
|
|
59
|
-
is_flow = self.is_flow
|
|
60
57
|
http_method = self.http_method.value
|
|
61
58
|
|
|
62
59
|
is_async = self.is_async
|
|
63
60
|
requires_auth = self.requires_auth
|
|
64
61
|
is_static_website = self.is_static_website
|
|
62
|
+
path = self.path
|
|
63
|
+
script_path = self.script_path
|
|
65
64
|
email = self.email
|
|
66
65
|
extra_perms = self.extra_perms.to_dict()
|
|
67
66
|
|
|
@@ -69,6 +68,7 @@ class GetHttpTriggerResponse200:
|
|
|
69
68
|
edited_by = self.edited_by
|
|
70
69
|
edited_at = self.edited_at.isoformat()
|
|
71
70
|
|
|
71
|
+
is_flow = self.is_flow
|
|
72
72
|
static_asset_config: Union[Unset, Dict[str, Any]] = UNSET
|
|
73
73
|
if not isinstance(self.static_asset_config, Unset):
|
|
74
74
|
static_asset_config = self.static_asset_config.to_dict()
|
|
@@ -77,19 +77,19 @@ class GetHttpTriggerResponse200:
|
|
|
77
77
|
field_dict.update(self.additional_properties)
|
|
78
78
|
field_dict.update(
|
|
79
79
|
{
|
|
80
|
-
"path": path,
|
|
81
|
-
"script_path": script_path,
|
|
82
80
|
"route_path": route_path,
|
|
83
|
-
"is_flow": is_flow,
|
|
84
81
|
"http_method": http_method,
|
|
85
82
|
"is_async": is_async,
|
|
86
83
|
"requires_auth": requires_auth,
|
|
87
84
|
"is_static_website": is_static_website,
|
|
85
|
+
"path": path,
|
|
86
|
+
"script_path": script_path,
|
|
88
87
|
"email": email,
|
|
89
88
|
"extra_perms": extra_perms,
|
|
90
89
|
"workspace_id": workspace_id,
|
|
91
90
|
"edited_by": edited_by,
|
|
92
91
|
"edited_at": edited_at,
|
|
92
|
+
"is_flow": is_flow,
|
|
93
93
|
}
|
|
94
94
|
)
|
|
95
95
|
if static_asset_config is not UNSET:
|
|
@@ -105,14 +105,8 @@ class GetHttpTriggerResponse200:
|
|
|
105
105
|
)
|
|
106
106
|
|
|
107
107
|
d = src_dict.copy()
|
|
108
|
-
path = d.pop("path")
|
|
109
|
-
|
|
110
|
-
script_path = d.pop("script_path")
|
|
111
|
-
|
|
112
108
|
route_path = d.pop("route_path")
|
|
113
109
|
|
|
114
|
-
is_flow = d.pop("is_flow")
|
|
115
|
-
|
|
116
110
|
http_method = GetHttpTriggerResponse200HttpMethod(d.pop("http_method"))
|
|
117
111
|
|
|
118
112
|
is_async = d.pop("is_async")
|
|
@@ -121,6 +115,10 @@ class GetHttpTriggerResponse200:
|
|
|
121
115
|
|
|
122
116
|
is_static_website = d.pop("is_static_website")
|
|
123
117
|
|
|
118
|
+
path = d.pop("path")
|
|
119
|
+
|
|
120
|
+
script_path = d.pop("script_path")
|
|
121
|
+
|
|
124
122
|
email = d.pop("email")
|
|
125
123
|
|
|
126
124
|
extra_perms = GetHttpTriggerResponse200ExtraPerms.from_dict(d.pop("extra_perms"))
|
|
@@ -131,6 +129,8 @@ class GetHttpTriggerResponse200:
|
|
|
131
129
|
|
|
132
130
|
edited_at = isoparse(d.pop("edited_at"))
|
|
133
131
|
|
|
132
|
+
is_flow = d.pop("is_flow")
|
|
133
|
+
|
|
134
134
|
_static_asset_config = d.pop("static_asset_config", UNSET)
|
|
135
135
|
static_asset_config: Union[Unset, GetHttpTriggerResponse200StaticAssetConfig]
|
|
136
136
|
if isinstance(_static_asset_config, Unset):
|
|
@@ -139,19 +139,19 @@ class GetHttpTriggerResponse200:
|
|
|
139
139
|
static_asset_config = GetHttpTriggerResponse200StaticAssetConfig.from_dict(_static_asset_config)
|
|
140
140
|
|
|
141
141
|
get_http_trigger_response_200 = cls(
|
|
142
|
-
path=path,
|
|
143
|
-
script_path=script_path,
|
|
144
142
|
route_path=route_path,
|
|
145
|
-
is_flow=is_flow,
|
|
146
143
|
http_method=http_method,
|
|
147
144
|
is_async=is_async,
|
|
148
145
|
requires_auth=requires_auth,
|
|
149
146
|
is_static_website=is_static_website,
|
|
147
|
+
path=path,
|
|
148
|
+
script_path=script_path,
|
|
150
149
|
email=email,
|
|
151
150
|
extra_perms=extra_perms,
|
|
152
151
|
workspace_id=workspace_id,
|
|
153
152
|
edited_by=edited_by,
|
|
154
153
|
edited_at=edited_at,
|
|
154
|
+
is_flow=is_flow,
|
|
155
155
|
static_asset_config=static_asset_config,
|
|
156
156
|
)
|
|
157
157
|
|
|
@@ -18,56 +18,56 @@ T = TypeVar("T", bound="GetKafkaTriggerResponse200")
|
|
|
18
18
|
class GetKafkaTriggerResponse200:
|
|
19
19
|
"""
|
|
20
20
|
Attributes:
|
|
21
|
-
path (str):
|
|
22
|
-
edited_by (str):
|
|
23
|
-
edited_at (datetime.datetime):
|
|
24
|
-
script_path (str):
|
|
25
21
|
kafka_resource_path (str):
|
|
26
22
|
group_id (str):
|
|
27
23
|
topics (List[str]):
|
|
28
|
-
|
|
29
|
-
|
|
24
|
+
enabled (bool):
|
|
25
|
+
path (str):
|
|
26
|
+
script_path (str):
|
|
30
27
|
email (str):
|
|
28
|
+
extra_perms (GetKafkaTriggerResponse200ExtraPerms):
|
|
31
29
|
workspace_id (str):
|
|
32
|
-
|
|
30
|
+
edited_by (str):
|
|
31
|
+
edited_at (datetime.datetime):
|
|
32
|
+
is_flow (bool):
|
|
33
33
|
server_id (Union[Unset, str]):
|
|
34
34
|
last_server_ping (Union[Unset, datetime.datetime]):
|
|
35
35
|
error (Union[Unset, str]):
|
|
36
36
|
"""
|
|
37
37
|
|
|
38
|
-
path: str
|
|
39
|
-
edited_by: str
|
|
40
|
-
edited_at: datetime.datetime
|
|
41
|
-
script_path: str
|
|
42
38
|
kafka_resource_path: str
|
|
43
39
|
group_id: str
|
|
44
40
|
topics: List[str]
|
|
45
|
-
|
|
46
|
-
|
|
41
|
+
enabled: bool
|
|
42
|
+
path: str
|
|
43
|
+
script_path: str
|
|
47
44
|
email: str
|
|
45
|
+
extra_perms: "GetKafkaTriggerResponse200ExtraPerms"
|
|
48
46
|
workspace_id: str
|
|
49
|
-
|
|
47
|
+
edited_by: str
|
|
48
|
+
edited_at: datetime.datetime
|
|
49
|
+
is_flow: bool
|
|
50
50
|
server_id: Union[Unset, str] = UNSET
|
|
51
51
|
last_server_ping: Union[Unset, datetime.datetime] = UNSET
|
|
52
52
|
error: Union[Unset, str] = UNSET
|
|
53
53
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
54
54
|
|
|
55
55
|
def to_dict(self) -> Dict[str, Any]:
|
|
56
|
-
path = self.path
|
|
57
|
-
edited_by = self.edited_by
|
|
58
|
-
edited_at = self.edited_at.isoformat()
|
|
59
|
-
|
|
60
|
-
script_path = self.script_path
|
|
61
56
|
kafka_resource_path = self.kafka_resource_path
|
|
62
57
|
group_id = self.group_id
|
|
63
58
|
topics = self.topics
|
|
64
59
|
|
|
65
|
-
|
|
60
|
+
enabled = self.enabled
|
|
61
|
+
path = self.path
|
|
62
|
+
script_path = self.script_path
|
|
63
|
+
email = self.email
|
|
66
64
|
extra_perms = self.extra_perms.to_dict()
|
|
67
65
|
|
|
68
|
-
email = self.email
|
|
69
66
|
workspace_id = self.workspace_id
|
|
70
|
-
|
|
67
|
+
edited_by = self.edited_by
|
|
68
|
+
edited_at = self.edited_at.isoformat()
|
|
69
|
+
|
|
70
|
+
is_flow = self.is_flow
|
|
71
71
|
server_id = self.server_id
|
|
72
72
|
last_server_ping: Union[Unset, str] = UNSET
|
|
73
73
|
if not isinstance(self.last_server_ping, Unset):
|
|
@@ -79,18 +79,18 @@ class GetKafkaTriggerResponse200:
|
|
|
79
79
|
field_dict.update(self.additional_properties)
|
|
80
80
|
field_dict.update(
|
|
81
81
|
{
|
|
82
|
-
"path": path,
|
|
83
|
-
"edited_by": edited_by,
|
|
84
|
-
"edited_at": edited_at,
|
|
85
|
-
"script_path": script_path,
|
|
86
82
|
"kafka_resource_path": kafka_resource_path,
|
|
87
83
|
"group_id": group_id,
|
|
88
84
|
"topics": topics,
|
|
89
|
-
"
|
|
90
|
-
"
|
|
85
|
+
"enabled": enabled,
|
|
86
|
+
"path": path,
|
|
87
|
+
"script_path": script_path,
|
|
91
88
|
"email": email,
|
|
89
|
+
"extra_perms": extra_perms,
|
|
92
90
|
"workspace_id": workspace_id,
|
|
93
|
-
"
|
|
91
|
+
"edited_by": edited_by,
|
|
92
|
+
"edited_at": edited_at,
|
|
93
|
+
"is_flow": is_flow,
|
|
94
94
|
}
|
|
95
95
|
)
|
|
96
96
|
if server_id is not UNSET:
|
|
@@ -107,29 +107,29 @@ class GetKafkaTriggerResponse200:
|
|
|
107
107
|
from ..models.get_kafka_trigger_response_200_extra_perms import GetKafkaTriggerResponse200ExtraPerms
|
|
108
108
|
|
|
109
109
|
d = src_dict.copy()
|
|
110
|
-
path = d.pop("path")
|
|
111
|
-
|
|
112
|
-
edited_by = d.pop("edited_by")
|
|
113
|
-
|
|
114
|
-
edited_at = isoparse(d.pop("edited_at"))
|
|
115
|
-
|
|
116
|
-
script_path = d.pop("script_path")
|
|
117
|
-
|
|
118
110
|
kafka_resource_path = d.pop("kafka_resource_path")
|
|
119
111
|
|
|
120
112
|
group_id = d.pop("group_id")
|
|
121
113
|
|
|
122
114
|
topics = cast(List[str], d.pop("topics"))
|
|
123
115
|
|
|
124
|
-
|
|
116
|
+
enabled = d.pop("enabled")
|
|
125
117
|
|
|
126
|
-
|
|
118
|
+
path = d.pop("path")
|
|
119
|
+
|
|
120
|
+
script_path = d.pop("script_path")
|
|
127
121
|
|
|
128
122
|
email = d.pop("email")
|
|
129
123
|
|
|
124
|
+
extra_perms = GetKafkaTriggerResponse200ExtraPerms.from_dict(d.pop("extra_perms"))
|
|
125
|
+
|
|
130
126
|
workspace_id = d.pop("workspace_id")
|
|
131
127
|
|
|
132
|
-
|
|
128
|
+
edited_by = d.pop("edited_by")
|
|
129
|
+
|
|
130
|
+
edited_at = isoparse(d.pop("edited_at"))
|
|
131
|
+
|
|
132
|
+
is_flow = d.pop("is_flow")
|
|
133
133
|
|
|
134
134
|
server_id = d.pop("server_id", UNSET)
|
|
135
135
|
|
|
@@ -143,18 +143,18 @@ class GetKafkaTriggerResponse200:
|
|
|
143
143
|
error = d.pop("error", UNSET)
|
|
144
144
|
|
|
145
145
|
get_kafka_trigger_response_200 = cls(
|
|
146
|
-
path=path,
|
|
147
|
-
edited_by=edited_by,
|
|
148
|
-
edited_at=edited_at,
|
|
149
|
-
script_path=script_path,
|
|
150
146
|
kafka_resource_path=kafka_resource_path,
|
|
151
147
|
group_id=group_id,
|
|
152
148
|
topics=topics,
|
|
153
|
-
|
|
154
|
-
|
|
149
|
+
enabled=enabled,
|
|
150
|
+
path=path,
|
|
151
|
+
script_path=script_path,
|
|
155
152
|
email=email,
|
|
153
|
+
extra_perms=extra_perms,
|
|
156
154
|
workspace_id=workspace_id,
|
|
157
|
-
|
|
155
|
+
edited_by=edited_by,
|
|
156
|
+
edited_at=edited_at,
|
|
157
|
+
is_flow=is_flow,
|
|
158
158
|
server_id=server_id,
|
|
159
159
|
last_server_ping=last_server_ping,
|
|
160
160
|
error=error,
|