hatchet-sdk 0.42.4__py3-none-any.whl → 0.43.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 hatchet-sdk might be problematic. Click here for more details.
- hatchet_sdk/clients/rest/api/default_api.py +260 -0
- hatchet_sdk/clients/rest/models/workflow_list.py +4 -4
- hatchet_sdk/clients/rest/models/workflow_run.py +10 -10
- hatchet_sdk/contracts/dispatcher_pb2.py +15 -5
- hatchet_sdk/contracts/dispatcher_pb2_grpc.py +203 -52
- hatchet_sdk/contracts/events_pb2.py +13 -3
- hatchet_sdk/contracts/events_pb2_grpc.py +91 -20
- hatchet_sdk/contracts/workflows_pb2.py +22 -12
- hatchet_sdk/contracts/workflows_pb2.pyi +2 -0
- hatchet_sdk/contracts/workflows_pb2_grpc.py +91 -20
- hatchet_sdk/loader.py +23 -0
- hatchet_sdk/worker/worker.py +44 -1
- {hatchet_sdk-0.42.4.dist-info → hatchet_sdk-0.43.0.dist-info}/METADATA +5 -4
- {hatchet_sdk-0.42.4.dist-info → hatchet_sdk-0.43.0.dist-info}/RECORD +16 -16
- {hatchet_sdk-0.42.4.dist-info → hatchet_sdk-0.43.0.dist-info}/WHEEL +0 -0
- {hatchet_sdk-0.42.4.dist-info → hatchet_sdk-0.43.0.dist-info}/entry_points.txt +0 -0
|
@@ -48,6 +48,266 @@ class DefaultApi:
|
|
|
48
48
|
api_client = ApiClient.get_default()
|
|
49
49
|
self.api_client = api_client
|
|
50
50
|
|
|
51
|
+
@validate_call
|
|
52
|
+
async def monitoring_post_run_probe(
|
|
53
|
+
self,
|
|
54
|
+
tenant: Annotated[
|
|
55
|
+
str,
|
|
56
|
+
Field(
|
|
57
|
+
min_length=36, strict=True, max_length=36, description="The tenant id"
|
|
58
|
+
),
|
|
59
|
+
],
|
|
60
|
+
_request_timeout: Union[
|
|
61
|
+
None,
|
|
62
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
63
|
+
Tuple[
|
|
64
|
+
Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]
|
|
65
|
+
],
|
|
66
|
+
] = None,
|
|
67
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
68
|
+
_content_type: Optional[StrictStr] = None,
|
|
69
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
70
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
71
|
+
) -> None:
|
|
72
|
+
"""Detailed Health Probe For the Instance
|
|
73
|
+
|
|
74
|
+
Triggers a workflow to check the status of the instance
|
|
75
|
+
|
|
76
|
+
:param tenant: The tenant id (required)
|
|
77
|
+
:type tenant: str
|
|
78
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
79
|
+
number provided, it will be total request
|
|
80
|
+
timeout. It can also be a pair (tuple) of
|
|
81
|
+
(connection, read) timeouts.
|
|
82
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
83
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
84
|
+
request; this effectively ignores the
|
|
85
|
+
authentication in the spec for a single request.
|
|
86
|
+
:type _request_auth: dict, optional
|
|
87
|
+
:param _content_type: force content-type for the request.
|
|
88
|
+
:type _content_type: str, Optional
|
|
89
|
+
:param _headers: set to override the headers for a single
|
|
90
|
+
request; this effectively ignores the headers
|
|
91
|
+
in the spec for a single request.
|
|
92
|
+
:type _headers: dict, optional
|
|
93
|
+
:param _host_index: set to override the host_index for a single
|
|
94
|
+
request; this effectively ignores the host_index
|
|
95
|
+
in the spec for a single request.
|
|
96
|
+
:type _host_index: int, optional
|
|
97
|
+
:return: Returns the result object.
|
|
98
|
+
""" # noqa: E501
|
|
99
|
+
|
|
100
|
+
_param = self._monitoring_post_run_probe_serialize(
|
|
101
|
+
tenant=tenant,
|
|
102
|
+
_request_auth=_request_auth,
|
|
103
|
+
_content_type=_content_type,
|
|
104
|
+
_headers=_headers,
|
|
105
|
+
_host_index=_host_index,
|
|
106
|
+
)
|
|
107
|
+
|
|
108
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
109
|
+
"200": None,
|
|
110
|
+
"403": "APIErrors",
|
|
111
|
+
}
|
|
112
|
+
response_data = await self.api_client.call_api(
|
|
113
|
+
*_param, _request_timeout=_request_timeout
|
|
114
|
+
)
|
|
115
|
+
await response_data.read()
|
|
116
|
+
return self.api_client.response_deserialize(
|
|
117
|
+
response_data=response_data,
|
|
118
|
+
response_types_map=_response_types_map,
|
|
119
|
+
).data
|
|
120
|
+
|
|
121
|
+
@validate_call
|
|
122
|
+
async def monitoring_post_run_probe_with_http_info(
|
|
123
|
+
self,
|
|
124
|
+
tenant: Annotated[
|
|
125
|
+
str,
|
|
126
|
+
Field(
|
|
127
|
+
min_length=36, strict=True, max_length=36, description="The tenant id"
|
|
128
|
+
),
|
|
129
|
+
],
|
|
130
|
+
_request_timeout: Union[
|
|
131
|
+
None,
|
|
132
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
133
|
+
Tuple[
|
|
134
|
+
Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]
|
|
135
|
+
],
|
|
136
|
+
] = None,
|
|
137
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
138
|
+
_content_type: Optional[StrictStr] = None,
|
|
139
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
140
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
141
|
+
) -> ApiResponse[None]:
|
|
142
|
+
"""Detailed Health Probe For the Instance
|
|
143
|
+
|
|
144
|
+
Triggers a workflow to check the status of the instance
|
|
145
|
+
|
|
146
|
+
:param tenant: The tenant id (required)
|
|
147
|
+
:type tenant: str
|
|
148
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
149
|
+
number provided, it will be total request
|
|
150
|
+
timeout. It can also be a pair (tuple) of
|
|
151
|
+
(connection, read) timeouts.
|
|
152
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
153
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
154
|
+
request; this effectively ignores the
|
|
155
|
+
authentication in the spec for a single request.
|
|
156
|
+
:type _request_auth: dict, optional
|
|
157
|
+
:param _content_type: force content-type for the request.
|
|
158
|
+
:type _content_type: str, Optional
|
|
159
|
+
:param _headers: set to override the headers for a single
|
|
160
|
+
request; this effectively ignores the headers
|
|
161
|
+
in the spec for a single request.
|
|
162
|
+
:type _headers: dict, optional
|
|
163
|
+
:param _host_index: set to override the host_index for a single
|
|
164
|
+
request; this effectively ignores the host_index
|
|
165
|
+
in the spec for a single request.
|
|
166
|
+
:type _host_index: int, optional
|
|
167
|
+
:return: Returns the result object.
|
|
168
|
+
""" # noqa: E501
|
|
169
|
+
|
|
170
|
+
_param = self._monitoring_post_run_probe_serialize(
|
|
171
|
+
tenant=tenant,
|
|
172
|
+
_request_auth=_request_auth,
|
|
173
|
+
_content_type=_content_type,
|
|
174
|
+
_headers=_headers,
|
|
175
|
+
_host_index=_host_index,
|
|
176
|
+
)
|
|
177
|
+
|
|
178
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
179
|
+
"200": None,
|
|
180
|
+
"403": "APIErrors",
|
|
181
|
+
}
|
|
182
|
+
response_data = await self.api_client.call_api(
|
|
183
|
+
*_param, _request_timeout=_request_timeout
|
|
184
|
+
)
|
|
185
|
+
await response_data.read()
|
|
186
|
+
return self.api_client.response_deserialize(
|
|
187
|
+
response_data=response_data,
|
|
188
|
+
response_types_map=_response_types_map,
|
|
189
|
+
)
|
|
190
|
+
|
|
191
|
+
@validate_call
|
|
192
|
+
async def monitoring_post_run_probe_without_preload_content(
|
|
193
|
+
self,
|
|
194
|
+
tenant: Annotated[
|
|
195
|
+
str,
|
|
196
|
+
Field(
|
|
197
|
+
min_length=36, strict=True, max_length=36, description="The tenant id"
|
|
198
|
+
),
|
|
199
|
+
],
|
|
200
|
+
_request_timeout: Union[
|
|
201
|
+
None,
|
|
202
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
203
|
+
Tuple[
|
|
204
|
+
Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]
|
|
205
|
+
],
|
|
206
|
+
] = None,
|
|
207
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
208
|
+
_content_type: Optional[StrictStr] = None,
|
|
209
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
210
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
211
|
+
) -> RESTResponseType:
|
|
212
|
+
"""Detailed Health Probe For the Instance
|
|
213
|
+
|
|
214
|
+
Triggers a workflow to check the status of the instance
|
|
215
|
+
|
|
216
|
+
:param tenant: The tenant id (required)
|
|
217
|
+
:type tenant: str
|
|
218
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
219
|
+
number provided, it will be total request
|
|
220
|
+
timeout. It can also be a pair (tuple) of
|
|
221
|
+
(connection, read) timeouts.
|
|
222
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
223
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
224
|
+
request; this effectively ignores the
|
|
225
|
+
authentication in the spec for a single request.
|
|
226
|
+
:type _request_auth: dict, optional
|
|
227
|
+
:param _content_type: force content-type for the request.
|
|
228
|
+
:type _content_type: str, Optional
|
|
229
|
+
:param _headers: set to override the headers for a single
|
|
230
|
+
request; this effectively ignores the headers
|
|
231
|
+
in the spec for a single request.
|
|
232
|
+
:type _headers: dict, optional
|
|
233
|
+
:param _host_index: set to override the host_index for a single
|
|
234
|
+
request; this effectively ignores the host_index
|
|
235
|
+
in the spec for a single request.
|
|
236
|
+
:type _host_index: int, optional
|
|
237
|
+
:return: Returns the result object.
|
|
238
|
+
""" # noqa: E501
|
|
239
|
+
|
|
240
|
+
_param = self._monitoring_post_run_probe_serialize(
|
|
241
|
+
tenant=tenant,
|
|
242
|
+
_request_auth=_request_auth,
|
|
243
|
+
_content_type=_content_type,
|
|
244
|
+
_headers=_headers,
|
|
245
|
+
_host_index=_host_index,
|
|
246
|
+
)
|
|
247
|
+
|
|
248
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
249
|
+
"200": None,
|
|
250
|
+
"403": "APIErrors",
|
|
251
|
+
}
|
|
252
|
+
response_data = await self.api_client.call_api(
|
|
253
|
+
*_param, _request_timeout=_request_timeout
|
|
254
|
+
)
|
|
255
|
+
return response_data.response
|
|
256
|
+
|
|
257
|
+
def _monitoring_post_run_probe_serialize(
|
|
258
|
+
self,
|
|
259
|
+
tenant,
|
|
260
|
+
_request_auth,
|
|
261
|
+
_content_type,
|
|
262
|
+
_headers,
|
|
263
|
+
_host_index,
|
|
264
|
+
) -> RequestSerialized:
|
|
265
|
+
|
|
266
|
+
_host = None
|
|
267
|
+
|
|
268
|
+
_collection_formats: Dict[str, str] = {}
|
|
269
|
+
|
|
270
|
+
_path_params: Dict[str, str] = {}
|
|
271
|
+
_query_params: List[Tuple[str, str]] = []
|
|
272
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
273
|
+
_form_params: List[Tuple[str, str]] = []
|
|
274
|
+
_files: Dict[
|
|
275
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
276
|
+
] = {}
|
|
277
|
+
_body_params: Optional[bytes] = None
|
|
278
|
+
|
|
279
|
+
# process the path parameters
|
|
280
|
+
if tenant is not None:
|
|
281
|
+
_path_params["tenant"] = tenant
|
|
282
|
+
# process the query parameters
|
|
283
|
+
# process the header parameters
|
|
284
|
+
# process the form parameters
|
|
285
|
+
# process the body parameter
|
|
286
|
+
|
|
287
|
+
# set the HTTP header `Accept`
|
|
288
|
+
if "Accept" not in _header_params:
|
|
289
|
+
_header_params["Accept"] = self.api_client.select_header_accept(
|
|
290
|
+
["application/json"]
|
|
291
|
+
)
|
|
292
|
+
|
|
293
|
+
# authentication setting
|
|
294
|
+
_auth_settings: List[str] = ["cookieAuth", "bearerAuth"]
|
|
295
|
+
|
|
296
|
+
return self.api_client.param_serialize(
|
|
297
|
+
method="POST",
|
|
298
|
+
resource_path="/api/v1/monitoring/{tenant}/probe",
|
|
299
|
+
path_params=_path_params,
|
|
300
|
+
query_params=_query_params,
|
|
301
|
+
header_params=_header_params,
|
|
302
|
+
body=_body_params,
|
|
303
|
+
post_params=_form_params,
|
|
304
|
+
files=_files,
|
|
305
|
+
auth_settings=_auth_settings,
|
|
306
|
+
collection_formats=_collection_formats,
|
|
307
|
+
_host=_host,
|
|
308
|
+
_request_auth=_request_auth,
|
|
309
|
+
)
|
|
310
|
+
|
|
51
311
|
@validate_call
|
|
52
312
|
async def tenant_invite_delete(
|
|
53
313
|
self,
|
|
@@ -32,10 +32,10 @@ class WorkflowList(BaseModel):
|
|
|
32
32
|
WorkflowList
|
|
33
33
|
""" # noqa: E501
|
|
34
34
|
|
|
35
|
-
metadata: APIResourceMeta
|
|
36
|
-
rows:
|
|
37
|
-
pagination: PaginationResponse
|
|
38
|
-
__properties: ClassVar[
|
|
35
|
+
metadata: Optional[APIResourceMeta] = None
|
|
36
|
+
rows: Optional[List[Workflow]] = None
|
|
37
|
+
pagination: Optional[PaginationResponse] = None
|
|
38
|
+
__properties: ClassVar[List[str]] = ["metadata", "rows", "pagination"]
|
|
39
39
|
|
|
40
40
|
model_config = ConfigDict(
|
|
41
41
|
populate_by_name=True,
|
|
@@ -39,28 +39,28 @@ class WorkflowRun(BaseModel):
|
|
|
39
39
|
metadata: APIResourceMeta
|
|
40
40
|
tenant_id: StrictStr = Field(alias="tenantId")
|
|
41
41
|
workflow_version_id: StrictStr = Field(alias="workflowVersionId")
|
|
42
|
-
workflow_version: WorkflowVersion
|
|
42
|
+
workflow_version: Optional[WorkflowVersion] = Field(
|
|
43
43
|
default=None, alias="workflowVersion"
|
|
44
44
|
)
|
|
45
45
|
status: WorkflowRunStatus
|
|
46
|
-
display_name: StrictStr
|
|
47
|
-
job_runs:
|
|
46
|
+
display_name: Optional[StrictStr] = Field(default=None, alias="displayName")
|
|
47
|
+
job_runs: Optional[List[JobRun]] = Field(default=None, alias="jobRuns")
|
|
48
48
|
triggered_by: WorkflowRunTriggeredBy = Field(alias="triggeredBy")
|
|
49
|
-
input:
|
|
50
|
-
error: StrictStr
|
|
51
|
-
started_at: datetime
|
|
52
|
-
finished_at: datetime
|
|
53
|
-
duration: StrictInt
|
|
49
|
+
input: Optional[Dict[str, Any]] = None
|
|
50
|
+
error: Optional[StrictStr] = None
|
|
51
|
+
started_at: Optional[datetime] = Field(default=None, alias="startedAt")
|
|
52
|
+
finished_at: Optional[datetime] = Field(default=None, alias="finishedAt")
|
|
53
|
+
duration: Optional[StrictInt] = None
|
|
54
54
|
parent_id: Optional[
|
|
55
55
|
Annotated[str, Field(min_length=36, strict=True, max_length=36)]
|
|
56
56
|
] = Field(default=None, alias="parentId")
|
|
57
57
|
parent_step_run_id: Optional[
|
|
58
58
|
Annotated[str, Field(min_length=36, strict=True, max_length=36)]
|
|
59
59
|
] = Field(default=None, alias="parentStepRunId")
|
|
60
|
-
additional_metadata:
|
|
60
|
+
additional_metadata: Optional[Dict[str, Any]] = Field(
|
|
61
61
|
default=None, alias="additionalMetadata"
|
|
62
62
|
)
|
|
63
|
-
__properties: ClassVar[
|
|
63
|
+
__properties: ClassVar[List[str]] = [
|
|
64
64
|
"metadata",
|
|
65
65
|
"tenantId",
|
|
66
66
|
"workflowVersionId",
|
|
@@ -1,12 +1,22 @@
|
|
|
1
1
|
# -*- coding: utf-8 -*-
|
|
2
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
3
4
|
# source: dispatcher.proto
|
|
4
|
-
# Protobuf Python Version:
|
|
5
|
+
# Protobuf Python Version: 5.28.1
|
|
5
6
|
"""Generated protocol buffer code."""
|
|
6
7
|
from google.protobuf import descriptor as _descriptor
|
|
7
8
|
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
8
10
|
from google.protobuf import symbol_database as _symbol_database
|
|
9
11
|
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
5,
|
|
15
|
+
28,
|
|
16
|
+
1,
|
|
17
|
+
'',
|
|
18
|
+
'dispatcher.proto'
|
|
19
|
+
)
|
|
10
20
|
# @@protoc_insertion_point(imports)
|
|
11
21
|
|
|
12
22
|
_sym_db = _symbol_database.Default()
|
|
@@ -20,12 +30,12 @@ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x10\x64ispatcher.
|
|
|
20
30
|
_globals = globals()
|
|
21
31
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
22
32
|
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dispatcher_pb2', _globals)
|
|
23
|
-
if _descriptor._USE_C_DESCRIPTORS
|
|
24
|
-
_globals['DESCRIPTOR'].
|
|
33
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
34
|
+
_globals['DESCRIPTOR']._loaded_options = None
|
|
25
35
|
_globals['DESCRIPTOR']._serialized_options = b'ZEgithub.com/hatchet-dev/hatchet/internal/services/dispatcher/contracts'
|
|
26
|
-
_globals['_WORKERREGISTERREQUEST_LABELSENTRY'].
|
|
36
|
+
_globals['_WORKERREGISTERREQUEST_LABELSENTRY']._loaded_options = None
|
|
27
37
|
_globals['_WORKERREGISTERREQUEST_LABELSENTRY']._serialized_options = b'8\001'
|
|
28
|
-
_globals['_UPSERTWORKERLABELSREQUEST_LABELSENTRY'].
|
|
38
|
+
_globals['_UPSERTWORKERLABELSREQUEST_LABELSENTRY']._loaded_options = None
|
|
29
39
|
_globals['_UPSERTWORKERLABELSREQUEST_LABELSENTRY']._serialized_options = b'8\001'
|
|
30
40
|
_globals['_SDKS']._serialized_start=3484
|
|
31
41
|
_globals['_SDKS']._serialized_end=3539
|