# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
"""Client and server classes corresponding to protobuf-defined services."""
import grpc
import warnings
from arista.endpointlocation.v1.services import gen_pb2 as arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2
GRPC_GENERATED_VERSION = '1.67.1'
GRPC_VERSION = grpc.__version__
_version_not_supported = False
try:
    from grpc._utilities import first_version_is_lower
    _version_not_supported = first_version_is_lower(GRPC_VERSION, GRPC_GENERATED_VERSION)
except ImportError:
    _version_not_supported = True
if _version_not_supported:
    raise RuntimeError(
        f'The grpc package installed is at version {GRPC_VERSION},'
        + f' but the generated code in arista/endpointlocation.v1/services.gen_pb2_grpc.py depends on'
        + f' grpcio>={GRPC_GENERATED_VERSION}.'
        + f' Please upgrade your grpc module to grpcio>={GRPC_GENERATED_VERSION}'
        + f' or downgrade your generated code using grpcio-tools<={GRPC_VERSION}.'
    )
[docs]
class EndpointLocationServiceStub(object):
    """Missing associated documentation comment in .proto file."""
    def __init__(self, channel):
        """Constructor.
        Args:
            channel: A grpc.Channel.
        """
        self.GetOne = channel.unary_unary(
                '/arista.endpointlocation.v1.EndpointLocationService/GetOne',
                request_serializer=arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.EndpointLocationRequest.SerializeToString,
                response_deserializer=arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.EndpointLocationResponse.FromString,
                _registered_method=True)
        self.GetSome = channel.unary_stream(
                '/arista.endpointlocation.v1.EndpointLocationService/GetSome',
                request_serializer=arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.EndpointLocationSomeRequest.SerializeToString,
                response_deserializer=arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.EndpointLocationSomeResponse.FromString,
                _registered_method=True)
        self.GetAll = channel.unary_stream(
                '/arista.endpointlocation.v1.EndpointLocationService/GetAll',
                request_serializer=arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.EndpointLocationStreamRequest.SerializeToString,
                response_deserializer=arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.EndpointLocationStreamResponse.FromString,
                _registered_method=True)
        self.Subscribe = channel.unary_stream(
                '/arista.endpointlocation.v1.EndpointLocationService/Subscribe',
                request_serializer=arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.EndpointLocationStreamRequest.SerializeToString,
                response_deserializer=arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.EndpointLocationStreamResponse.FromString,
                _registered_method=True)
        self.GetMeta = channel.unary_unary(
                '/arista.endpointlocation.v1.EndpointLocationService/GetMeta',
                request_serializer=arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.EndpointLocationStreamRequest.SerializeToString,
                response_deserializer=arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString,
                _registered_method=True)
        self.SubscribeMeta = channel.unary_stream(
                '/arista.endpointlocation.v1.EndpointLocationService/SubscribeMeta',
                request_serializer=arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.EndpointLocationStreamRequest.SerializeToString,
                response_deserializer=arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString,
                _registered_method=True)
        self.GetAllBatched = channel.unary_stream(
                '/arista.endpointlocation.v1.EndpointLocationService/GetAllBatched',
                request_serializer=arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.EndpointLocationBatchedStreamRequest.SerializeToString,
                response_deserializer=arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.EndpointLocationBatchedStreamResponse.FromString,
                _registered_method=True)
        self.SubscribeBatched = channel.unary_stream(
                '/arista.endpointlocation.v1.EndpointLocationService/SubscribeBatched',
                request_serializer=arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.EndpointLocationBatchedStreamRequest.SerializeToString,
                response_deserializer=arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.EndpointLocationBatchedStreamResponse.FromString,
                _registered_method=True) 
[docs]
class EndpointLocationServiceServicer(object):
    """Missing associated documentation comment in .proto file."""
[docs]
    def GetOne(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!') 
[docs]
    def GetSome(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!') 
[docs]
    def GetAll(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!') 
[docs]
    def Subscribe(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!') 
[docs]
    def GetAllBatched(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!') 
[docs]
    def SubscribeBatched(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!') 
 
[docs]
def add_EndpointLocationServiceServicer_to_server(servicer, server):
    rpc_method_handlers = {
            'GetOne': grpc.unary_unary_rpc_method_handler(
                    servicer.GetOne,
                    request_deserializer=arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.EndpointLocationRequest.FromString,
                    response_serializer=arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.EndpointLocationResponse.SerializeToString,
            ),
            'GetSome': grpc.unary_stream_rpc_method_handler(
                    servicer.GetSome,
                    request_deserializer=arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.EndpointLocationSomeRequest.FromString,
                    response_serializer=arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.EndpointLocationSomeResponse.SerializeToString,
            ),
            'GetAll': grpc.unary_stream_rpc_method_handler(
                    servicer.GetAll,
                    request_deserializer=arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.EndpointLocationStreamRequest.FromString,
                    response_serializer=arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.EndpointLocationStreamResponse.SerializeToString,
            ),
            'Subscribe': grpc.unary_stream_rpc_method_handler(
                    servicer.Subscribe,
                    request_deserializer=arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.EndpointLocationStreamRequest.FromString,
                    response_serializer=arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.EndpointLocationStreamResponse.SerializeToString,
            ),
            'GetMeta': grpc.unary_unary_rpc_method_handler(
                    servicer.GetMeta,
                    request_deserializer=arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.EndpointLocationStreamRequest.FromString,
                    response_serializer=arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString,
            ),
            'SubscribeMeta': grpc.unary_stream_rpc_method_handler(
                    servicer.SubscribeMeta,
                    request_deserializer=arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.EndpointLocationStreamRequest.FromString,
                    response_serializer=arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString,
            ),
            'GetAllBatched': grpc.unary_stream_rpc_method_handler(
                    servicer.GetAllBatched,
                    request_deserializer=arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.EndpointLocationBatchedStreamRequest.FromString,
                    response_serializer=arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.EndpointLocationBatchedStreamResponse.SerializeToString,
            ),
            'SubscribeBatched': grpc.unary_stream_rpc_method_handler(
                    servicer.SubscribeBatched,
                    request_deserializer=arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.EndpointLocationBatchedStreamRequest.FromString,
                    response_serializer=arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.EndpointLocationBatchedStreamResponse.SerializeToString,
            ),
    }
    generic_handler = grpc.method_handlers_generic_handler(
            'arista.endpointlocation.v1.EndpointLocationService', rpc_method_handlers)
    server.add_generic_rpc_handlers((generic_handler,))
    server.add_registered_method_handlers('arista.endpointlocation.v1.EndpointLocationService', rpc_method_handlers) 
 # This class is part of an EXPERIMENTAL API.
[docs]
class EndpointLocationService(object):
    """Missing associated documentation comment in .proto file."""
[docs]
    @staticmethod
    def GetOne(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,
            '/arista.endpointlocation.v1.EndpointLocationService/GetOne',
            arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.EndpointLocationRequest.SerializeToString,
            arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.EndpointLocationResponse.FromString,
            options,
            channel_credentials,
            insecure,
            call_credentials,
            compression,
            wait_for_ready,
            timeout,
            metadata,
            _registered_method=True) 
[docs]
    @staticmethod
    def GetSome(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_stream(
            request,
            target,
            '/arista.endpointlocation.v1.EndpointLocationService/GetSome',
            arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.EndpointLocationSomeRequest.SerializeToString,
            arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.EndpointLocationSomeResponse.FromString,
            options,
            channel_credentials,
            insecure,
            call_credentials,
            compression,
            wait_for_ready,
            timeout,
            metadata,
            _registered_method=True) 
[docs]
    @staticmethod
    def GetAll(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_stream(
            request,
            target,
            '/arista.endpointlocation.v1.EndpointLocationService/GetAll',
            arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.EndpointLocationStreamRequest.SerializeToString,
            arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.EndpointLocationStreamResponse.FromString,
            options,
            channel_credentials,
            insecure,
            call_credentials,
            compression,
            wait_for_ready,
            timeout,
            metadata,
            _registered_method=True) 
[docs]
    @staticmethod
    def Subscribe(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_stream(
            request,
            target,
            '/arista.endpointlocation.v1.EndpointLocationService/Subscribe',
            arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.EndpointLocationStreamRequest.SerializeToString,
            arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.EndpointLocationStreamResponse.FromString,
            options,
            channel_credentials,
            insecure,
            call_credentials,
            compression,
            wait_for_ready,
            timeout,
            metadata,
            _registered_method=True) 
[docs]
    @staticmethod
    def GetAllBatched(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_stream(
            request,
            target,
            '/arista.endpointlocation.v1.EndpointLocationService/GetAllBatched',
            arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.EndpointLocationBatchedStreamRequest.SerializeToString,
            arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.EndpointLocationBatchedStreamResponse.FromString,
            options,
            channel_credentials,
            insecure,
            call_credentials,
            compression,
            wait_for_ready,
            timeout,
            metadata,
            _registered_method=True) 
[docs]
    @staticmethod
    def SubscribeBatched(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_stream(
            request,
            target,
            '/arista.endpointlocation.v1.EndpointLocationService/SubscribeBatched',
            arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.EndpointLocationBatchedStreamRequest.SerializeToString,
            arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.EndpointLocationBatchedStreamResponse.FromString,
            options,
            channel_credentials,
            insecure,
            call_credentials,
            compression,
            wait_for_ready,
            timeout,
            metadata,
            _registered_method=True)