Files
hatchet/python-sdk/hatchet_sdk/workflows_pb2_grpc.py
T
Gabe Ruttner 5ccc5614a9 feat(py-sdk): event streaming and manual triggering (#152)
* hotfix: add repository for npm publish

* chore: generate protos

* feat: trigger workflow

* fix: remove tenant id from schedule workflow

* fix: logging

* feat: run returns workflow_run_id

* feat: listen for run events

* feat: listener calls handler

* chore: address review comment
2024-02-05 12:32:04 -05:00

268 lines
12 KiB
Python

# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
"""Client and server classes corresponding to protobuf-defined services."""
import grpc
from . import workflows_pb2 as workflows__pb2
class WorkflowServiceStub(object):
"""WorkflowService represents a set of RPCs for managing workflows.
"""
def __init__(self, channel):
"""Constructor.
Args:
channel: A grpc.Channel.
"""
self.ListWorkflows = channel.unary_unary(
'/WorkflowService/ListWorkflows',
request_serializer=workflows__pb2.ListWorkflowsRequest.SerializeToString,
response_deserializer=workflows__pb2.ListWorkflowsResponse.FromString,
)
self.PutWorkflow = channel.unary_unary(
'/WorkflowService/PutWorkflow',
request_serializer=workflows__pb2.PutWorkflowRequest.SerializeToString,
response_deserializer=workflows__pb2.WorkflowVersion.FromString,
)
self.ScheduleWorkflow = channel.unary_unary(
'/WorkflowService/ScheduleWorkflow',
request_serializer=workflows__pb2.ScheduleWorkflowRequest.SerializeToString,
response_deserializer=workflows__pb2.WorkflowVersion.FromString,
)
self.TriggerWorkflow = channel.unary_unary(
'/WorkflowService/TriggerWorkflow',
request_serializer=workflows__pb2.TriggerWorkflowRequest.SerializeToString,
response_deserializer=workflows__pb2.TriggerWorkflowResponse.FromString,
)
self.GetWorkflowByName = channel.unary_unary(
'/WorkflowService/GetWorkflowByName',
request_serializer=workflows__pb2.GetWorkflowByNameRequest.SerializeToString,
response_deserializer=workflows__pb2.Workflow.FromString,
)
self.ListWorkflowsForEvent = channel.unary_unary(
'/WorkflowService/ListWorkflowsForEvent',
request_serializer=workflows__pb2.ListWorkflowsForEventRequest.SerializeToString,
response_deserializer=workflows__pb2.ListWorkflowsResponse.FromString,
)
self.DeleteWorkflow = channel.unary_unary(
'/WorkflowService/DeleteWorkflow',
request_serializer=workflows__pb2.DeleteWorkflowRequest.SerializeToString,
response_deserializer=workflows__pb2.Workflow.FromString,
)
class WorkflowServiceServicer(object):
"""WorkflowService represents a set of RPCs for managing workflows.
"""
def ListWorkflows(self, request, context):
"""Missing associated documentation comment in .proto file."""
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
context.set_details('Method not implemented!')
raise NotImplementedError('Method not implemented!')
def PutWorkflow(self, request, context):
"""Missing associated documentation comment in .proto file."""
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
context.set_details('Method not implemented!')
raise NotImplementedError('Method not implemented!')
def ScheduleWorkflow(self, request, context):
"""Missing associated documentation comment in .proto file."""
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
context.set_details('Method not implemented!')
raise NotImplementedError('Method not implemented!')
def TriggerWorkflow(self, request, context):
"""Missing associated documentation comment in .proto file."""
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
context.set_details('Method not implemented!')
raise NotImplementedError('Method not implemented!')
def GetWorkflowByName(self, request, context):
"""Missing associated documentation comment in .proto file."""
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
context.set_details('Method not implemented!')
raise NotImplementedError('Method not implemented!')
def ListWorkflowsForEvent(self, request, context):
"""Missing associated documentation comment in .proto file."""
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
context.set_details('Method not implemented!')
raise NotImplementedError('Method not implemented!')
def DeleteWorkflow(self, request, context):
"""Missing associated documentation comment in .proto file."""
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
context.set_details('Method not implemented!')
raise NotImplementedError('Method not implemented!')
def add_WorkflowServiceServicer_to_server(servicer, server):
rpc_method_handlers = {
'ListWorkflows': grpc.unary_unary_rpc_method_handler(
servicer.ListWorkflows,
request_deserializer=workflows__pb2.ListWorkflowsRequest.FromString,
response_serializer=workflows__pb2.ListWorkflowsResponse.SerializeToString,
),
'PutWorkflow': grpc.unary_unary_rpc_method_handler(
servicer.PutWorkflow,
request_deserializer=workflows__pb2.PutWorkflowRequest.FromString,
response_serializer=workflows__pb2.WorkflowVersion.SerializeToString,
),
'ScheduleWorkflow': grpc.unary_unary_rpc_method_handler(
servicer.ScheduleWorkflow,
request_deserializer=workflows__pb2.ScheduleWorkflowRequest.FromString,
response_serializer=workflows__pb2.WorkflowVersion.SerializeToString,
),
'TriggerWorkflow': grpc.unary_unary_rpc_method_handler(
servicer.TriggerWorkflow,
request_deserializer=workflows__pb2.TriggerWorkflowRequest.FromString,
response_serializer=workflows__pb2.TriggerWorkflowResponse.SerializeToString,
),
'GetWorkflowByName': grpc.unary_unary_rpc_method_handler(
servicer.GetWorkflowByName,
request_deserializer=workflows__pb2.GetWorkflowByNameRequest.FromString,
response_serializer=workflows__pb2.Workflow.SerializeToString,
),
'ListWorkflowsForEvent': grpc.unary_unary_rpc_method_handler(
servicer.ListWorkflowsForEvent,
request_deserializer=workflows__pb2.ListWorkflowsForEventRequest.FromString,
response_serializer=workflows__pb2.ListWorkflowsResponse.SerializeToString,
),
'DeleteWorkflow': grpc.unary_unary_rpc_method_handler(
servicer.DeleteWorkflow,
request_deserializer=workflows__pb2.DeleteWorkflowRequest.FromString,
response_serializer=workflows__pb2.Workflow.SerializeToString,
),
}
generic_handler = grpc.method_handlers_generic_handler(
'WorkflowService', rpc_method_handlers)
server.add_generic_rpc_handlers((generic_handler,))
# This class is part of an EXPERIMENTAL API.
class WorkflowService(object):
"""WorkflowService represents a set of RPCs for managing workflows.
"""
@staticmethod
def ListWorkflows(request,
target,
options=(),
channel_credentials=None,
call_credentials=None,
insecure=False,
compression=None,
wait_for_ready=None,
timeout=None,
metadata=None):
return grpc.experimental.unary_unary(request, target, '/WorkflowService/ListWorkflows',
workflows__pb2.ListWorkflowsRequest.SerializeToString,
workflows__pb2.ListWorkflowsResponse.FromString,
options, channel_credentials,
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
@staticmethod
def PutWorkflow(request,
target,
options=(),
channel_credentials=None,
call_credentials=None,
insecure=False,
compression=None,
wait_for_ready=None,
timeout=None,
metadata=None):
return grpc.experimental.unary_unary(request, target, '/WorkflowService/PutWorkflow',
workflows__pb2.PutWorkflowRequest.SerializeToString,
workflows__pb2.WorkflowVersion.FromString,
options, channel_credentials,
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
@staticmethod
def ScheduleWorkflow(request,
target,
options=(),
channel_credentials=None,
call_credentials=None,
insecure=False,
compression=None,
wait_for_ready=None,
timeout=None,
metadata=None):
return grpc.experimental.unary_unary(request, target, '/WorkflowService/ScheduleWorkflow',
workflows__pb2.ScheduleWorkflowRequest.SerializeToString,
workflows__pb2.WorkflowVersion.FromString,
options, channel_credentials,
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
@staticmethod
def TriggerWorkflow(request,
target,
options=(),
channel_credentials=None,
call_credentials=None,
insecure=False,
compression=None,
wait_for_ready=None,
timeout=None,
metadata=None):
return grpc.experimental.unary_unary(request, target, '/WorkflowService/TriggerWorkflow',
workflows__pb2.TriggerWorkflowRequest.SerializeToString,
workflows__pb2.TriggerWorkflowResponse.FromString,
options, channel_credentials,
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
@staticmethod
def GetWorkflowByName(request,
target,
options=(),
channel_credentials=None,
call_credentials=None,
insecure=False,
compression=None,
wait_for_ready=None,
timeout=None,
metadata=None):
return grpc.experimental.unary_unary(request, target, '/WorkflowService/GetWorkflowByName',
workflows__pb2.GetWorkflowByNameRequest.SerializeToString,
workflows__pb2.Workflow.FromString,
options, channel_credentials,
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
@staticmethod
def ListWorkflowsForEvent(request,
target,
options=(),
channel_credentials=None,
call_credentials=None,
insecure=False,
compression=None,
wait_for_ready=None,
timeout=None,
metadata=None):
return grpc.experimental.unary_unary(request, target, '/WorkflowService/ListWorkflowsForEvent',
workflows__pb2.ListWorkflowsForEventRequest.SerializeToString,
workflows__pb2.ListWorkflowsResponse.FromString,
options, channel_credentials,
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
@staticmethod
def DeleteWorkflow(request,
target,
options=(),
channel_credentials=None,
call_credentials=None,
insecure=False,
compression=None,
wait_for_ready=None,
timeout=None,
metadata=None):
return grpc.experimental.unary_unary(request, target, '/WorkflowService/DeleteWorkflow',
workflows__pb2.DeleteWorkflowRequest.SerializeToString,
workflows__pb2.Workflow.FromString,
options, channel_credentials,
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)