windmill-api 1.463.6__py3-none-any.whl → 1.465.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/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_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_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.463.6.dist-info → windmill_api-1.465.0.dist-info}/METADATA +1 -1
- {windmill_api-1.463.6.dist-info → windmill_api-1.465.0.dist-info}/RECORD +57 -35
- {windmill_api-1.463.6.dist-info → windmill_api-1.465.0.dist-info}/LICENSE +0 -0
- {windmill_api-1.463.6.dist-info → windmill_api-1.465.0.dist-info}/WHEEL +0 -0
|
@@ -18,18 +18,18 @@ T = TypeVar("T", bound="ListNatsTriggersResponse200Item")
|
|
|
18
18
|
class ListNatsTriggersResponse200Item:
|
|
19
19
|
"""
|
|
20
20
|
Attributes:
|
|
21
|
-
path (str):
|
|
22
|
-
edited_by (str):
|
|
23
|
-
edited_at (datetime.datetime):
|
|
24
|
-
script_path (str):
|
|
25
21
|
nats_resource_path (str):
|
|
26
22
|
use_jetstream (bool):
|
|
27
23
|
subjects (List[str]):
|
|
28
|
-
|
|
29
|
-
|
|
24
|
+
enabled (bool):
|
|
25
|
+
path (str):
|
|
26
|
+
script_path (str):
|
|
30
27
|
email (str):
|
|
28
|
+
extra_perms (ListNatsTriggersResponse200ItemExtraPerms):
|
|
31
29
|
workspace_id (str):
|
|
32
|
-
|
|
30
|
+
edited_by (str):
|
|
31
|
+
edited_at (datetime.datetime):
|
|
32
|
+
is_flow (bool):
|
|
33
33
|
stream_name (Union[Unset, str]):
|
|
34
34
|
consumer_name (Union[Unset, str]):
|
|
35
35
|
server_id (Union[Unset, str]):
|
|
@@ -37,18 +37,18 @@ class ListNatsTriggersResponse200Item:
|
|
|
37
37
|
error (Union[Unset, str]):
|
|
38
38
|
"""
|
|
39
39
|
|
|
40
|
-
path: str
|
|
41
|
-
edited_by: str
|
|
42
|
-
edited_at: datetime.datetime
|
|
43
|
-
script_path: str
|
|
44
40
|
nats_resource_path: str
|
|
45
41
|
use_jetstream: bool
|
|
46
42
|
subjects: List[str]
|
|
47
|
-
|
|
48
|
-
|
|
43
|
+
enabled: bool
|
|
44
|
+
path: str
|
|
45
|
+
script_path: str
|
|
49
46
|
email: str
|
|
47
|
+
extra_perms: "ListNatsTriggersResponse200ItemExtraPerms"
|
|
50
48
|
workspace_id: str
|
|
51
|
-
|
|
49
|
+
edited_by: str
|
|
50
|
+
edited_at: datetime.datetime
|
|
51
|
+
is_flow: bool
|
|
52
52
|
stream_name: Union[Unset, str] = UNSET
|
|
53
53
|
consumer_name: Union[Unset, str] = UNSET
|
|
54
54
|
server_id: Union[Unset, str] = UNSET
|
|
@@ -57,21 +57,21 @@ class ListNatsTriggersResponse200Item:
|
|
|
57
57
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
58
58
|
|
|
59
59
|
def to_dict(self) -> Dict[str, Any]:
|
|
60
|
-
path = self.path
|
|
61
|
-
edited_by = self.edited_by
|
|
62
|
-
edited_at = self.edited_at.isoformat()
|
|
63
|
-
|
|
64
|
-
script_path = self.script_path
|
|
65
60
|
nats_resource_path = self.nats_resource_path
|
|
66
61
|
use_jetstream = self.use_jetstream
|
|
67
62
|
subjects = self.subjects
|
|
68
63
|
|
|
69
|
-
|
|
64
|
+
enabled = self.enabled
|
|
65
|
+
path = self.path
|
|
66
|
+
script_path = self.script_path
|
|
67
|
+
email = self.email
|
|
70
68
|
extra_perms = self.extra_perms.to_dict()
|
|
71
69
|
|
|
72
|
-
email = self.email
|
|
73
70
|
workspace_id = self.workspace_id
|
|
74
|
-
|
|
71
|
+
edited_by = self.edited_by
|
|
72
|
+
edited_at = self.edited_at.isoformat()
|
|
73
|
+
|
|
74
|
+
is_flow = self.is_flow
|
|
75
75
|
stream_name = self.stream_name
|
|
76
76
|
consumer_name = self.consumer_name
|
|
77
77
|
server_id = self.server_id
|
|
@@ -85,18 +85,18 @@ class ListNatsTriggersResponse200Item:
|
|
|
85
85
|
field_dict.update(self.additional_properties)
|
|
86
86
|
field_dict.update(
|
|
87
87
|
{
|
|
88
|
-
"path": path,
|
|
89
|
-
"edited_by": edited_by,
|
|
90
|
-
"edited_at": edited_at,
|
|
91
|
-
"script_path": script_path,
|
|
92
88
|
"nats_resource_path": nats_resource_path,
|
|
93
89
|
"use_jetstream": use_jetstream,
|
|
94
90
|
"subjects": subjects,
|
|
95
|
-
"
|
|
96
|
-
"
|
|
91
|
+
"enabled": enabled,
|
|
92
|
+
"path": path,
|
|
93
|
+
"script_path": script_path,
|
|
97
94
|
"email": email,
|
|
95
|
+
"extra_perms": extra_perms,
|
|
98
96
|
"workspace_id": workspace_id,
|
|
99
|
-
"
|
|
97
|
+
"edited_by": edited_by,
|
|
98
|
+
"edited_at": edited_at,
|
|
99
|
+
"is_flow": is_flow,
|
|
100
100
|
}
|
|
101
101
|
)
|
|
102
102
|
if stream_name is not UNSET:
|
|
@@ -117,29 +117,29 @@ class ListNatsTriggersResponse200Item:
|
|
|
117
117
|
from ..models.list_nats_triggers_response_200_item_extra_perms import ListNatsTriggersResponse200ItemExtraPerms
|
|
118
118
|
|
|
119
119
|
d = src_dict.copy()
|
|
120
|
-
path = d.pop("path")
|
|
121
|
-
|
|
122
|
-
edited_by = d.pop("edited_by")
|
|
123
|
-
|
|
124
|
-
edited_at = isoparse(d.pop("edited_at"))
|
|
125
|
-
|
|
126
|
-
script_path = d.pop("script_path")
|
|
127
|
-
|
|
128
120
|
nats_resource_path = d.pop("nats_resource_path")
|
|
129
121
|
|
|
130
122
|
use_jetstream = d.pop("use_jetstream")
|
|
131
123
|
|
|
132
124
|
subjects = cast(List[str], d.pop("subjects"))
|
|
133
125
|
|
|
134
|
-
|
|
126
|
+
enabled = d.pop("enabled")
|
|
135
127
|
|
|
136
|
-
|
|
128
|
+
path = d.pop("path")
|
|
129
|
+
|
|
130
|
+
script_path = d.pop("script_path")
|
|
137
131
|
|
|
138
132
|
email = d.pop("email")
|
|
139
133
|
|
|
134
|
+
extra_perms = ListNatsTriggersResponse200ItemExtraPerms.from_dict(d.pop("extra_perms"))
|
|
135
|
+
|
|
140
136
|
workspace_id = d.pop("workspace_id")
|
|
141
137
|
|
|
142
|
-
|
|
138
|
+
edited_by = d.pop("edited_by")
|
|
139
|
+
|
|
140
|
+
edited_at = isoparse(d.pop("edited_at"))
|
|
141
|
+
|
|
142
|
+
is_flow = d.pop("is_flow")
|
|
143
143
|
|
|
144
144
|
stream_name = d.pop("stream_name", UNSET)
|
|
145
145
|
|
|
@@ -157,18 +157,18 @@ class ListNatsTriggersResponse200Item:
|
|
|
157
157
|
error = d.pop("error", UNSET)
|
|
158
158
|
|
|
159
159
|
list_nats_triggers_response_200_item = cls(
|
|
160
|
-
path=path,
|
|
161
|
-
edited_by=edited_by,
|
|
162
|
-
edited_at=edited_at,
|
|
163
|
-
script_path=script_path,
|
|
164
160
|
nats_resource_path=nats_resource_path,
|
|
165
161
|
use_jetstream=use_jetstream,
|
|
166
162
|
subjects=subjects,
|
|
167
|
-
|
|
168
|
-
|
|
163
|
+
enabled=enabled,
|
|
164
|
+
path=path,
|
|
165
|
+
script_path=script_path,
|
|
169
166
|
email=email,
|
|
167
|
+
extra_perms=extra_perms,
|
|
170
168
|
workspace_id=workspace_id,
|
|
171
|
-
|
|
169
|
+
edited_by=edited_by,
|
|
170
|
+
edited_at=edited_at,
|
|
171
|
+
is_flow=is_flow,
|
|
172
172
|
stream_name=stream_name,
|
|
173
173
|
consumer_name=consumer_name,
|
|
174
174
|
server_id=server_id,
|
|
@@ -20,48 +20,47 @@ T = TypeVar("T", bound="ListPostgresTriggersResponse200Item")
|
|
|
20
20
|
class ListPostgresTriggersResponse200Item:
|
|
21
21
|
"""
|
|
22
22
|
Attributes:
|
|
23
|
-
path (str):
|
|
24
|
-
script_path (str):
|
|
25
|
-
is_flow (bool):
|
|
26
23
|
enabled (bool):
|
|
27
24
|
postgres_resource_path (str):
|
|
28
25
|
publication_name (str):
|
|
29
26
|
replication_slot_name (str):
|
|
27
|
+
path (str):
|
|
28
|
+
script_path (str):
|
|
30
29
|
email (str):
|
|
31
30
|
extra_perms (ListPostgresTriggersResponse200ItemExtraPerms):
|
|
32
31
|
workspace_id (str):
|
|
33
32
|
edited_by (str):
|
|
34
33
|
edited_at (datetime.datetime):
|
|
34
|
+
is_flow (bool):
|
|
35
35
|
server_id (Union[Unset, str]):
|
|
36
36
|
error (Union[Unset, str]):
|
|
37
37
|
last_server_ping (Union[Unset, datetime.datetime]):
|
|
38
38
|
"""
|
|
39
39
|
|
|
40
|
-
path: str
|
|
41
|
-
script_path: str
|
|
42
|
-
is_flow: bool
|
|
43
40
|
enabled: bool
|
|
44
41
|
postgres_resource_path: str
|
|
45
42
|
publication_name: str
|
|
46
43
|
replication_slot_name: str
|
|
44
|
+
path: str
|
|
45
|
+
script_path: str
|
|
47
46
|
email: str
|
|
48
47
|
extra_perms: "ListPostgresTriggersResponse200ItemExtraPerms"
|
|
49
48
|
workspace_id: str
|
|
50
49
|
edited_by: str
|
|
51
50
|
edited_at: datetime.datetime
|
|
51
|
+
is_flow: bool
|
|
52
52
|
server_id: Union[Unset, str] = UNSET
|
|
53
53
|
error: Union[Unset, str] = UNSET
|
|
54
54
|
last_server_ping: Union[Unset, datetime.datetime] = UNSET
|
|
55
55
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
56
56
|
|
|
57
57
|
def to_dict(self) -> Dict[str, Any]:
|
|
58
|
-
path = self.path
|
|
59
|
-
script_path = self.script_path
|
|
60
|
-
is_flow = self.is_flow
|
|
61
58
|
enabled = self.enabled
|
|
62
59
|
postgres_resource_path = self.postgres_resource_path
|
|
63
60
|
publication_name = self.publication_name
|
|
64
61
|
replication_slot_name = self.replication_slot_name
|
|
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 ListPostgresTriggersResponse200Item:
|
|
|
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
|
server_id = self.server_id
|
|
73
73
|
error = self.error
|
|
74
74
|
last_server_ping: Union[Unset, str] = UNSET
|
|
@@ -79,18 +79,18 @@ class ListPostgresTriggersResponse200Item:
|
|
|
79
79
|
field_dict.update(self.additional_properties)
|
|
80
80
|
field_dict.update(
|
|
81
81
|
{
|
|
82
|
-
"path": path,
|
|
83
|
-
"script_path": script_path,
|
|
84
|
-
"is_flow": is_flow,
|
|
85
82
|
"enabled": enabled,
|
|
86
83
|
"postgres_resource_path": postgres_resource_path,
|
|
87
84
|
"publication_name": publication_name,
|
|
88
85
|
"replication_slot_name": replication_slot_name,
|
|
86
|
+
"path": path,
|
|
87
|
+
"script_path": script_path,
|
|
89
88
|
"email": email,
|
|
90
89
|
"extra_perms": extra_perms,
|
|
91
90
|
"workspace_id": workspace_id,
|
|
92
91
|
"edited_by": edited_by,
|
|
93
92
|
"edited_at": edited_at,
|
|
93
|
+
"is_flow": is_flow,
|
|
94
94
|
}
|
|
95
95
|
)
|
|
96
96
|
if server_id is not UNSET:
|
|
@@ -109,12 +109,6 @@ class ListPostgresTriggersResponse200Item:
|
|
|
109
109
|
)
|
|
110
110
|
|
|
111
111
|
d = src_dict.copy()
|
|
112
|
-
path = d.pop("path")
|
|
113
|
-
|
|
114
|
-
script_path = d.pop("script_path")
|
|
115
|
-
|
|
116
|
-
is_flow = d.pop("is_flow")
|
|
117
|
-
|
|
118
112
|
enabled = d.pop("enabled")
|
|
119
113
|
|
|
120
114
|
postgres_resource_path = d.pop("postgres_resource_path")
|
|
@@ -123,6 +117,10 @@ class ListPostgresTriggersResponse200Item:
|
|
|
123
117
|
|
|
124
118
|
replication_slot_name = d.pop("replication_slot_name")
|
|
125
119
|
|
|
120
|
+
path = d.pop("path")
|
|
121
|
+
|
|
122
|
+
script_path = d.pop("script_path")
|
|
123
|
+
|
|
126
124
|
email = d.pop("email")
|
|
127
125
|
|
|
128
126
|
extra_perms = ListPostgresTriggersResponse200ItemExtraPerms.from_dict(d.pop("extra_perms"))
|
|
@@ -133,6 +131,8 @@ class ListPostgresTriggersResponse200Item:
|
|
|
133
131
|
|
|
134
132
|
edited_at = isoparse(d.pop("edited_at"))
|
|
135
133
|
|
|
134
|
+
is_flow = d.pop("is_flow")
|
|
135
|
+
|
|
136
136
|
server_id = d.pop("server_id", UNSET)
|
|
137
137
|
|
|
138
138
|
error = d.pop("error", UNSET)
|
|
@@ -145,18 +145,18 @@ class ListPostgresTriggersResponse200Item:
|
|
|
145
145
|
last_server_ping = isoparse(_last_server_ping)
|
|
146
146
|
|
|
147
147
|
list_postgres_triggers_response_200_item = cls(
|
|
148
|
-
path=path,
|
|
149
|
-
script_path=script_path,
|
|
150
|
-
is_flow=is_flow,
|
|
151
148
|
enabled=enabled,
|
|
152
149
|
postgres_resource_path=postgres_resource_path,
|
|
153
150
|
publication_name=publication_name,
|
|
154
151
|
replication_slot_name=replication_slot_name,
|
|
152
|
+
path=path,
|
|
153
|
+
script_path=script_path,
|
|
155
154
|
email=email,
|
|
156
155
|
extra_perms=extra_perms,
|
|
157
156
|
workspace_id=workspace_id,
|
|
158
157
|
edited_by=edited_by,
|
|
159
158
|
edited_at=edited_at,
|
|
159
|
+
is_flow=is_flow,
|
|
160
160
|
server_id=server_id,
|
|
161
161
|
error=error,
|
|
162
162
|
last_server_ping=last_server_ping,
|
|
@@ -0,0 +1,183 @@
|
|
|
1
|
+
import datetime
|
|
2
|
+
from typing import TYPE_CHECKING, Any, Dict, List, Type, TypeVar, Union, cast
|
|
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
|
+
if TYPE_CHECKING:
|
|
11
|
+
from ..models.list_sqs_triggers_response_200_item_extra_perms import ListSqsTriggersResponse200ItemExtraPerms
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
T = TypeVar("T", bound="ListSqsTriggersResponse200Item")
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
@_attrs_define
|
|
18
|
+
class ListSqsTriggersResponse200Item:
|
|
19
|
+
"""
|
|
20
|
+
Attributes:
|
|
21
|
+
queue_url (str):
|
|
22
|
+
aws_resource_path (str):
|
|
23
|
+
enabled (bool):
|
|
24
|
+
path (str):
|
|
25
|
+
script_path (str):
|
|
26
|
+
email (str):
|
|
27
|
+
extra_perms (ListSqsTriggersResponse200ItemExtraPerms):
|
|
28
|
+
workspace_id (str):
|
|
29
|
+
edited_by (str):
|
|
30
|
+
edited_at (datetime.datetime):
|
|
31
|
+
is_flow (bool):
|
|
32
|
+
message_attributes (Union[Unset, List[str]]):
|
|
33
|
+
server_id (Union[Unset, str]):
|
|
34
|
+
last_server_ping (Union[Unset, datetime.datetime]):
|
|
35
|
+
error (Union[Unset, str]):
|
|
36
|
+
"""
|
|
37
|
+
|
|
38
|
+
queue_url: str
|
|
39
|
+
aws_resource_path: str
|
|
40
|
+
enabled: bool
|
|
41
|
+
path: str
|
|
42
|
+
script_path: str
|
|
43
|
+
email: str
|
|
44
|
+
extra_perms: "ListSqsTriggersResponse200ItemExtraPerms"
|
|
45
|
+
workspace_id: str
|
|
46
|
+
edited_by: str
|
|
47
|
+
edited_at: datetime.datetime
|
|
48
|
+
is_flow: bool
|
|
49
|
+
message_attributes: Union[Unset, List[str]] = UNSET
|
|
50
|
+
server_id: Union[Unset, str] = UNSET
|
|
51
|
+
last_server_ping: Union[Unset, datetime.datetime] = UNSET
|
|
52
|
+
error: Union[Unset, str] = UNSET
|
|
53
|
+
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
54
|
+
|
|
55
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
56
|
+
queue_url = self.queue_url
|
|
57
|
+
aws_resource_path = self.aws_resource_path
|
|
58
|
+
enabled = self.enabled
|
|
59
|
+
path = self.path
|
|
60
|
+
script_path = self.script_path
|
|
61
|
+
email = self.email
|
|
62
|
+
extra_perms = self.extra_perms.to_dict()
|
|
63
|
+
|
|
64
|
+
workspace_id = self.workspace_id
|
|
65
|
+
edited_by = self.edited_by
|
|
66
|
+
edited_at = self.edited_at.isoformat()
|
|
67
|
+
|
|
68
|
+
is_flow = self.is_flow
|
|
69
|
+
message_attributes: Union[Unset, List[str]] = UNSET
|
|
70
|
+
if not isinstance(self.message_attributes, Unset):
|
|
71
|
+
message_attributes = self.message_attributes
|
|
72
|
+
|
|
73
|
+
server_id = self.server_id
|
|
74
|
+
last_server_ping: Union[Unset, str] = UNSET
|
|
75
|
+
if not isinstance(self.last_server_ping, Unset):
|
|
76
|
+
last_server_ping = self.last_server_ping.isoformat()
|
|
77
|
+
|
|
78
|
+
error = self.error
|
|
79
|
+
|
|
80
|
+
field_dict: Dict[str, Any] = {}
|
|
81
|
+
field_dict.update(self.additional_properties)
|
|
82
|
+
field_dict.update(
|
|
83
|
+
{
|
|
84
|
+
"queue_url": queue_url,
|
|
85
|
+
"aws_resource_path": aws_resource_path,
|
|
86
|
+
"enabled": enabled,
|
|
87
|
+
"path": path,
|
|
88
|
+
"script_path": script_path,
|
|
89
|
+
"email": email,
|
|
90
|
+
"extra_perms": extra_perms,
|
|
91
|
+
"workspace_id": workspace_id,
|
|
92
|
+
"edited_by": edited_by,
|
|
93
|
+
"edited_at": edited_at,
|
|
94
|
+
"is_flow": is_flow,
|
|
95
|
+
}
|
|
96
|
+
)
|
|
97
|
+
if message_attributes is not UNSET:
|
|
98
|
+
field_dict["message_attributes"] = message_attributes
|
|
99
|
+
if server_id is not UNSET:
|
|
100
|
+
field_dict["server_id"] = server_id
|
|
101
|
+
if last_server_ping is not UNSET:
|
|
102
|
+
field_dict["last_server_ping"] = last_server_ping
|
|
103
|
+
if error is not UNSET:
|
|
104
|
+
field_dict["error"] = error
|
|
105
|
+
|
|
106
|
+
return field_dict
|
|
107
|
+
|
|
108
|
+
@classmethod
|
|
109
|
+
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
110
|
+
from ..models.list_sqs_triggers_response_200_item_extra_perms import ListSqsTriggersResponse200ItemExtraPerms
|
|
111
|
+
|
|
112
|
+
d = src_dict.copy()
|
|
113
|
+
queue_url = d.pop("queue_url")
|
|
114
|
+
|
|
115
|
+
aws_resource_path = d.pop("aws_resource_path")
|
|
116
|
+
|
|
117
|
+
enabled = d.pop("enabled")
|
|
118
|
+
|
|
119
|
+
path = d.pop("path")
|
|
120
|
+
|
|
121
|
+
script_path = d.pop("script_path")
|
|
122
|
+
|
|
123
|
+
email = d.pop("email")
|
|
124
|
+
|
|
125
|
+
extra_perms = ListSqsTriggersResponse200ItemExtraPerms.from_dict(d.pop("extra_perms"))
|
|
126
|
+
|
|
127
|
+
workspace_id = d.pop("workspace_id")
|
|
128
|
+
|
|
129
|
+
edited_by = d.pop("edited_by")
|
|
130
|
+
|
|
131
|
+
edited_at = isoparse(d.pop("edited_at"))
|
|
132
|
+
|
|
133
|
+
is_flow = d.pop("is_flow")
|
|
134
|
+
|
|
135
|
+
message_attributes = cast(List[str], d.pop("message_attributes", UNSET))
|
|
136
|
+
|
|
137
|
+
server_id = d.pop("server_id", UNSET)
|
|
138
|
+
|
|
139
|
+
_last_server_ping = d.pop("last_server_ping", UNSET)
|
|
140
|
+
last_server_ping: Union[Unset, datetime.datetime]
|
|
141
|
+
if isinstance(_last_server_ping, Unset):
|
|
142
|
+
last_server_ping = UNSET
|
|
143
|
+
else:
|
|
144
|
+
last_server_ping = isoparse(_last_server_ping)
|
|
145
|
+
|
|
146
|
+
error = d.pop("error", UNSET)
|
|
147
|
+
|
|
148
|
+
list_sqs_triggers_response_200_item = cls(
|
|
149
|
+
queue_url=queue_url,
|
|
150
|
+
aws_resource_path=aws_resource_path,
|
|
151
|
+
enabled=enabled,
|
|
152
|
+
path=path,
|
|
153
|
+
script_path=script_path,
|
|
154
|
+
email=email,
|
|
155
|
+
extra_perms=extra_perms,
|
|
156
|
+
workspace_id=workspace_id,
|
|
157
|
+
edited_by=edited_by,
|
|
158
|
+
edited_at=edited_at,
|
|
159
|
+
is_flow=is_flow,
|
|
160
|
+
message_attributes=message_attributes,
|
|
161
|
+
server_id=server_id,
|
|
162
|
+
last_server_ping=last_server_ping,
|
|
163
|
+
error=error,
|
|
164
|
+
)
|
|
165
|
+
|
|
166
|
+
list_sqs_triggers_response_200_item.additional_properties = d
|
|
167
|
+
return list_sqs_triggers_response_200_item
|
|
168
|
+
|
|
169
|
+
@property
|
|
170
|
+
def additional_keys(self) -> List[str]:
|
|
171
|
+
return list(self.additional_properties.keys())
|
|
172
|
+
|
|
173
|
+
def __getitem__(self, key: str) -> Any:
|
|
174
|
+
return self.additional_properties[key]
|
|
175
|
+
|
|
176
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
177
|
+
self.additional_properties[key] = value
|
|
178
|
+
|
|
179
|
+
def __delitem__(self, key: str) -> None:
|
|
180
|
+
del self.additional_properties[key]
|
|
181
|
+
|
|
182
|
+
def __contains__(self, key: str) -> bool:
|
|
183
|
+
return key in self.additional_properties
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
from typing import Any, Dict, List, Type, TypeVar
|
|
2
|
+
|
|
3
|
+
from attrs import define as _attrs_define
|
|
4
|
+
from attrs import field as _attrs_field
|
|
5
|
+
|
|
6
|
+
T = TypeVar("T", bound="ListSqsTriggersResponse200ItemExtraPerms")
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
@_attrs_define
|
|
10
|
+
class ListSqsTriggersResponse200ItemExtraPerms:
|
|
11
|
+
""" """
|
|
12
|
+
|
|
13
|
+
additional_properties: Dict[str, bool] = _attrs_field(init=False, factory=dict)
|
|
14
|
+
|
|
15
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
16
|
+
field_dict: Dict[str, Any] = {}
|
|
17
|
+
field_dict.update(self.additional_properties)
|
|
18
|
+
field_dict.update({})
|
|
19
|
+
|
|
20
|
+
return field_dict
|
|
21
|
+
|
|
22
|
+
@classmethod
|
|
23
|
+
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
24
|
+
d = src_dict.copy()
|
|
25
|
+
list_sqs_triggers_response_200_item_extra_perms = cls()
|
|
26
|
+
|
|
27
|
+
list_sqs_triggers_response_200_item_extra_perms.additional_properties = d
|
|
28
|
+
return list_sqs_triggers_response_200_item_extra_perms
|
|
29
|
+
|
|
30
|
+
@property
|
|
31
|
+
def additional_keys(self) -> List[str]:
|
|
32
|
+
return list(self.additional_properties.keys())
|
|
33
|
+
|
|
34
|
+
def __getitem__(self, key: str) -> bool:
|
|
35
|
+
return self.additional_properties[key]
|
|
36
|
+
|
|
37
|
+
def __setitem__(self, key: str, value: bool) -> None:
|
|
38
|
+
self.additional_properties[key] = value
|
|
39
|
+
|
|
40
|
+
def __delitem__(self, key: str) -> None:
|
|
41
|
+
del self.additional_properties[key]
|
|
42
|
+
|
|
43
|
+
def __contains__(self, key: str) -> bool:
|
|
44
|
+
return key in self.additional_properties
|
|
@@ -32,18 +32,18 @@ T = TypeVar("T", bound="ListWebsocketTriggersResponse200Item")
|
|
|
32
32
|
class ListWebsocketTriggersResponse200Item:
|
|
33
33
|
"""
|
|
34
34
|
Attributes:
|
|
35
|
-
path (str):
|
|
36
|
-
script_path (str):
|
|
37
35
|
url (str):
|
|
38
|
-
is_flow (bool):
|
|
39
36
|
enabled (bool):
|
|
40
37
|
filters (List['ListWebsocketTriggersResponse200ItemFiltersItem']):
|
|
41
38
|
can_return_message (bool):
|
|
39
|
+
path (str):
|
|
40
|
+
script_path (str):
|
|
42
41
|
email (str):
|
|
43
42
|
extra_perms (ListWebsocketTriggersResponse200ItemExtraPerms):
|
|
44
43
|
workspace_id (str):
|
|
45
44
|
edited_by (str):
|
|
46
45
|
edited_at (datetime.datetime):
|
|
46
|
+
is_flow (bool):
|
|
47
47
|
server_id (Union[Unset, str]):
|
|
48
48
|
last_server_ping (Union[Unset, datetime.datetime]):
|
|
49
49
|
error (Union[Unset, str]):
|
|
@@ -52,18 +52,18 @@ class ListWebsocketTriggersResponse200Item:
|
|
|
52
52
|
url_runnable_args (Union[Unset, ListWebsocketTriggersResponse200ItemUrlRunnableArgs]):
|
|
53
53
|
"""
|
|
54
54
|
|
|
55
|
-
path: str
|
|
56
|
-
script_path: str
|
|
57
55
|
url: str
|
|
58
|
-
is_flow: bool
|
|
59
56
|
enabled: bool
|
|
60
57
|
filters: List["ListWebsocketTriggersResponse200ItemFiltersItem"]
|
|
61
58
|
can_return_message: bool
|
|
59
|
+
path: str
|
|
60
|
+
script_path: str
|
|
62
61
|
email: str
|
|
63
62
|
extra_perms: "ListWebsocketTriggersResponse200ItemExtraPerms"
|
|
64
63
|
workspace_id: str
|
|
65
64
|
edited_by: str
|
|
66
65
|
edited_at: datetime.datetime
|
|
66
|
+
is_flow: bool
|
|
67
67
|
server_id: Union[Unset, str] = UNSET
|
|
68
68
|
last_server_ping: Union[Unset, datetime.datetime] = UNSET
|
|
69
69
|
error: Union[Unset, str] = UNSET
|
|
@@ -84,10 +84,7 @@ class ListWebsocketTriggersResponse200Item:
|
|
|
84
84
|
ListWebsocketTriggersResponse200ItemInitialMessagesItemType0,
|
|
85
85
|
)
|
|
86
86
|
|
|
87
|
-
path = self.path
|
|
88
|
-
script_path = self.script_path
|
|
89
87
|
url = self.url
|
|
90
|
-
is_flow = self.is_flow
|
|
91
88
|
enabled = self.enabled
|
|
92
89
|
filters = []
|
|
93
90
|
for filters_item_data in self.filters:
|
|
@@ -96,6 +93,8 @@ class ListWebsocketTriggersResponse200Item:
|
|
|
96
93
|
filters.append(filters_item)
|
|
97
94
|
|
|
98
95
|
can_return_message = self.can_return_message
|
|
96
|
+
path = self.path
|
|
97
|
+
script_path = self.script_path
|
|
99
98
|
email = self.email
|
|
100
99
|
extra_perms = self.extra_perms.to_dict()
|
|
101
100
|
|
|
@@ -103,6 +102,7 @@ class ListWebsocketTriggersResponse200Item:
|
|
|
103
102
|
edited_by = self.edited_by
|
|
104
103
|
edited_at = self.edited_at.isoformat()
|
|
105
104
|
|
|
105
|
+
is_flow = self.is_flow
|
|
106
106
|
server_id = self.server_id
|
|
107
107
|
last_server_ping: Union[Unset, str] = UNSET
|
|
108
108
|
if not isinstance(self.last_server_ping, Unset):
|
|
@@ -131,18 +131,18 @@ class ListWebsocketTriggersResponse200Item:
|
|
|
131
131
|
field_dict.update(self.additional_properties)
|
|
132
132
|
field_dict.update(
|
|
133
133
|
{
|
|
134
|
-
"path": path,
|
|
135
|
-
"script_path": script_path,
|
|
136
134
|
"url": url,
|
|
137
|
-
"is_flow": is_flow,
|
|
138
135
|
"enabled": enabled,
|
|
139
136
|
"filters": filters,
|
|
140
137
|
"can_return_message": can_return_message,
|
|
138
|
+
"path": path,
|
|
139
|
+
"script_path": script_path,
|
|
141
140
|
"email": email,
|
|
142
141
|
"extra_perms": extra_perms,
|
|
143
142
|
"workspace_id": workspace_id,
|
|
144
143
|
"edited_by": edited_by,
|
|
145
144
|
"edited_at": edited_at,
|
|
145
|
+
"is_flow": is_flow,
|
|
146
146
|
}
|
|
147
147
|
)
|
|
148
148
|
if server_id is not UNSET:
|
|
@@ -177,14 +177,8 @@ class ListWebsocketTriggersResponse200Item:
|
|
|
177
177
|
)
|
|
178
178
|
|
|
179
179
|
d = src_dict.copy()
|
|
180
|
-
path = d.pop("path")
|
|
181
|
-
|
|
182
|
-
script_path = d.pop("script_path")
|
|
183
|
-
|
|
184
180
|
url = d.pop("url")
|
|
185
181
|
|
|
186
|
-
is_flow = d.pop("is_flow")
|
|
187
|
-
|
|
188
182
|
enabled = d.pop("enabled")
|
|
189
183
|
|
|
190
184
|
filters = []
|
|
@@ -196,6 +190,10 @@ class ListWebsocketTriggersResponse200Item:
|
|
|
196
190
|
|
|
197
191
|
can_return_message = d.pop("can_return_message")
|
|
198
192
|
|
|
193
|
+
path = d.pop("path")
|
|
194
|
+
|
|
195
|
+
script_path = d.pop("script_path")
|
|
196
|
+
|
|
199
197
|
email = d.pop("email")
|
|
200
198
|
|
|
201
199
|
extra_perms = ListWebsocketTriggersResponse200ItemExtraPerms.from_dict(d.pop("extra_perms"))
|
|
@@ -206,6 +204,8 @@ class ListWebsocketTriggersResponse200Item:
|
|
|
206
204
|
|
|
207
205
|
edited_at = isoparse(d.pop("edited_at"))
|
|
208
206
|
|
|
207
|
+
is_flow = d.pop("is_flow")
|
|
208
|
+
|
|
209
209
|
server_id = d.pop("server_id", UNSET)
|
|
210
210
|
|
|
211
211
|
_last_server_ping = d.pop("last_server_ping", UNSET)
|
|
@@ -257,18 +257,18 @@ class ListWebsocketTriggersResponse200Item:
|
|
|
257
257
|
url_runnable_args = ListWebsocketTriggersResponse200ItemUrlRunnableArgs.from_dict(_url_runnable_args)
|
|
258
258
|
|
|
259
259
|
list_websocket_triggers_response_200_item = cls(
|
|
260
|
-
path=path,
|
|
261
|
-
script_path=script_path,
|
|
262
260
|
url=url,
|
|
263
|
-
is_flow=is_flow,
|
|
264
261
|
enabled=enabled,
|
|
265
262
|
filters=filters,
|
|
266
263
|
can_return_message=can_return_message,
|
|
264
|
+
path=path,
|
|
265
|
+
script_path=script_path,
|
|
267
266
|
email=email,
|
|
268
267
|
extra_perms=extra_perms,
|
|
269
268
|
workspace_id=workspace_id,
|
|
270
269
|
edited_by=edited_by,
|
|
271
270
|
edited_at=edited_at,
|
|
271
|
+
is_flow=is_flow,
|
|
272
272
|
server_id=server_id,
|
|
273
273
|
last_server_ping=last_server_ping,
|
|
274
274
|
error=error,
|