# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! """Client and server classes corresponding to protobuf-defined services.""" import grpc from . import context_pb2 as context__pb2 class ServiceServiceStub(object): """Missing associated documentation comment in .proto file.""" def __init__(self, channel): """Constructor. Args: channel: A grpc.Channel. """ self.CreateService = channel.unary_unary( '/service.ServiceService/CreateService', request_serializer=context__pb2.Service.SerializeToString, response_deserializer=context__pb2.ServiceId.FromString, ) self.UpdateService = channel.unary_unary( '/service.ServiceService/UpdateService', request_serializer=context__pb2.Service.SerializeToString, response_deserializer=context__pb2.ServiceId.FromString, ) self.DeleteService = channel.unary_unary( '/service.ServiceService/DeleteService', request_serializer=context__pb2.ServiceId.SerializeToString, response_deserializer=context__pb2.Empty.FromString, ) self.GetConnectionList = channel.unary_unary( '/service.ServiceService/GetConnectionList', request_serializer=context__pb2.ServiceId.SerializeToString, response_deserializer=context__pb2.ConnectionList.FromString, ) class ServiceServiceServicer(object): """Missing associated documentation comment in .proto file.""" def CreateService(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 UpdateService(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 DeleteService(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 GetConnectionList(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_ServiceServiceServicer_to_server(servicer, server): rpc_method_handlers = { 'CreateService': grpc.unary_unary_rpc_method_handler( servicer.CreateService, request_deserializer=context__pb2.Service.FromString, response_serializer=context__pb2.ServiceId.SerializeToString, ), 'UpdateService': grpc.unary_unary_rpc_method_handler( servicer.UpdateService, request_deserializer=context__pb2.Service.FromString, response_serializer=context__pb2.ServiceId.SerializeToString, ), 'DeleteService': grpc.unary_unary_rpc_method_handler( servicer.DeleteService, request_deserializer=context__pb2.ServiceId.FromString, response_serializer=context__pb2.Empty.SerializeToString, ), 'GetConnectionList': grpc.unary_unary_rpc_method_handler( servicer.GetConnectionList, request_deserializer=context__pb2.ServiceId.FromString, response_serializer=context__pb2.ConnectionList.SerializeToString, ), } generic_handler = grpc.method_handlers_generic_handler( 'service.ServiceService', rpc_method_handlers) server.add_generic_rpc_handlers((generic_handler,)) # This class is part of an EXPERIMENTAL API. class ServiceService(object): """Missing associated documentation comment in .proto file.""" @staticmethod def CreateService(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, '/service.ServiceService/CreateService', context__pb2.Service.SerializeToString, context__pb2.ServiceId.FromString, options, channel_credentials, insecure, call_credentials, compression, wait_for_ready, timeout, metadata) @staticmethod def UpdateService(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, '/service.ServiceService/UpdateService', context__pb2.Service.SerializeToString, context__pb2.ServiceId.FromString, options, channel_credentials, insecure, call_credentials, compression, wait_for_ready, timeout, metadata) @staticmethod def DeleteService(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, '/service.ServiceService/DeleteService', context__pb2.ServiceId.SerializeToString, context__pb2.Empty.FromString, options, channel_credentials, insecure, call_credentials, compression, wait_for_ready, timeout, metadata) @staticmethod def GetConnectionList(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, '/service.ServiceService/GetConnectionList', context__pb2.ServiceId.SerializeToString, context__pb2.ConnectionList.FromString, options, channel_credentials, insecure, call_credentials, compression, wait_for_ready, timeout, metadata)