# 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.dashboard.v1.services import gen_pb2 as arista_dot_dashboard_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/dashboard.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 DashboardServiceStub(object):
"""Missing associated documentation comment in .proto file."""
def __init__(self, channel):
"""Constructor.
Args:
channel: A grpc.Channel.
"""
self.GetOne = channel.unary_unary(
'/arista.dashboard.v1.DashboardService/GetOne',
request_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardRequest.SerializeToString,
response_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardResponse.FromString,
_registered_method=True)
self.GetSome = channel.unary_stream(
'/arista.dashboard.v1.DashboardService/GetSome',
request_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardSomeRequest.SerializeToString,
response_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardSomeResponse.FromString,
_registered_method=True)
self.GetAll = channel.unary_stream(
'/arista.dashboard.v1.DashboardService/GetAll',
request_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardStreamRequest.SerializeToString,
response_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardStreamResponse.FromString,
_registered_method=True)
self.Subscribe = channel.unary_stream(
'/arista.dashboard.v1.DashboardService/Subscribe',
request_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardStreamRequest.SerializeToString,
response_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardStreamResponse.FromString,
_registered_method=True)
self.GetMeta = channel.unary_unary(
'/arista.dashboard.v1.DashboardService/GetMeta',
request_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardStreamRequest.SerializeToString,
response_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString,
_registered_method=True)
self.SubscribeMeta = channel.unary_stream(
'/arista.dashboard.v1.DashboardService/SubscribeMeta',
request_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardStreamRequest.SerializeToString,
response_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString,
_registered_method=True)
self.GetAllBatched = channel.unary_stream(
'/arista.dashboard.v1.DashboardService/GetAllBatched',
request_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardBatchedStreamRequest.SerializeToString,
response_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardBatchedStreamResponse.FromString,
_registered_method=True)
self.SubscribeBatched = channel.unary_stream(
'/arista.dashboard.v1.DashboardService/SubscribeBatched',
request_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardBatchedStreamRequest.SerializeToString,
response_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardBatchedStreamResponse.FromString,
_registered_method=True)
[docs]
class DashboardServiceServicer(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_DashboardServiceServicer_to_server(servicer, server):
rpc_method_handlers = {
'GetOne': grpc.unary_unary_rpc_method_handler(
servicer.GetOne,
request_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardRequest.FromString,
response_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardResponse.SerializeToString,
),
'GetSome': grpc.unary_stream_rpc_method_handler(
servicer.GetSome,
request_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardSomeRequest.FromString,
response_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardSomeResponse.SerializeToString,
),
'GetAll': grpc.unary_stream_rpc_method_handler(
servicer.GetAll,
request_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardStreamRequest.FromString,
response_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardStreamResponse.SerializeToString,
),
'Subscribe': grpc.unary_stream_rpc_method_handler(
servicer.Subscribe,
request_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardStreamRequest.FromString,
response_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardStreamResponse.SerializeToString,
),
'GetMeta': grpc.unary_unary_rpc_method_handler(
servicer.GetMeta,
request_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardStreamRequest.FromString,
response_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString,
),
'SubscribeMeta': grpc.unary_stream_rpc_method_handler(
servicer.SubscribeMeta,
request_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardStreamRequest.FromString,
response_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString,
),
'GetAllBatched': grpc.unary_stream_rpc_method_handler(
servicer.GetAllBatched,
request_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardBatchedStreamRequest.FromString,
response_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardBatchedStreamResponse.SerializeToString,
),
'SubscribeBatched': grpc.unary_stream_rpc_method_handler(
servicer.SubscribeBatched,
request_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardBatchedStreamRequest.FromString,
response_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardBatchedStreamResponse.SerializeToString,
),
}
generic_handler = grpc.method_handlers_generic_handler(
'arista.dashboard.v1.DashboardService', rpc_method_handlers)
server.add_generic_rpc_handlers((generic_handler,))
server.add_registered_method_handlers('arista.dashboard.v1.DashboardService', rpc_method_handlers)
# This class is part of an EXPERIMENTAL API.
[docs]
class DashboardService(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.dashboard.v1.DashboardService/GetOne',
arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardRequest.SerializeToString,
arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardResponse.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.dashboard.v1.DashboardService/GetSome',
arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardSomeRequest.SerializeToString,
arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardSomeResponse.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.dashboard.v1.DashboardService/GetAll',
arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardStreamRequest.SerializeToString,
arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardStreamResponse.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.dashboard.v1.DashboardService/Subscribe',
arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardStreamRequest.SerializeToString,
arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardStreamResponse.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.dashboard.v1.DashboardService/GetAllBatched',
arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardBatchedStreamRequest.SerializeToString,
arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardBatchedStreamResponse.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.dashboard.v1.DashboardService/SubscribeBatched',
arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardBatchedStreamRequest.SerializeToString,
arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardBatchedStreamResponse.FromString,
options,
channel_credentials,
insecure,
call_credentials,
compression,
wait_for_ready,
timeout,
metadata,
_registered_method=True)
[docs]
class DashboardConfigServiceStub(object):
"""Missing associated documentation comment in .proto file."""
def __init__(self, channel):
"""Constructor.
Args:
channel: A grpc.Channel.
"""
self.GetOne = channel.unary_unary(
'/arista.dashboard.v1.DashboardConfigService/GetOne',
request_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigRequest.SerializeToString,
response_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigResponse.FromString,
_registered_method=True)
self.GetSome = channel.unary_stream(
'/arista.dashboard.v1.DashboardConfigService/GetSome',
request_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigSomeRequest.SerializeToString,
response_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigSomeResponse.FromString,
_registered_method=True)
self.GetAll = channel.unary_stream(
'/arista.dashboard.v1.DashboardConfigService/GetAll',
request_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigStreamRequest.SerializeToString,
response_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigStreamResponse.FromString,
_registered_method=True)
self.Subscribe = channel.unary_stream(
'/arista.dashboard.v1.DashboardConfigService/Subscribe',
request_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigStreamRequest.SerializeToString,
response_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigStreamResponse.FromString,
_registered_method=True)
self.GetMeta = channel.unary_unary(
'/arista.dashboard.v1.DashboardConfigService/GetMeta',
request_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigStreamRequest.SerializeToString,
response_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString,
_registered_method=True)
self.SubscribeMeta = channel.unary_stream(
'/arista.dashboard.v1.DashboardConfigService/SubscribeMeta',
request_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigStreamRequest.SerializeToString,
response_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString,
_registered_method=True)
self.Set = channel.unary_unary(
'/arista.dashboard.v1.DashboardConfigService/Set',
request_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigSetRequest.SerializeToString,
response_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigSetResponse.FromString,
_registered_method=True)
self.SetSome = channel.unary_stream(
'/arista.dashboard.v1.DashboardConfigService/SetSome',
request_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigSetSomeRequest.SerializeToString,
response_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigSetSomeResponse.FromString,
_registered_method=True)
self.Delete = channel.unary_unary(
'/arista.dashboard.v1.DashboardConfigService/Delete',
request_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigDeleteRequest.SerializeToString,
response_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigDeleteResponse.FromString,
_registered_method=True)
self.DeleteSome = channel.unary_stream(
'/arista.dashboard.v1.DashboardConfigService/DeleteSome',
request_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigDeleteSomeRequest.SerializeToString,
response_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigDeleteSomeResponse.FromString,
_registered_method=True)
self.DeleteAll = channel.unary_stream(
'/arista.dashboard.v1.DashboardConfigService/DeleteAll',
request_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigDeleteAllRequest.SerializeToString,
response_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigDeleteAllResponse.FromString,
_registered_method=True)
self.GetAllBatched = channel.unary_stream(
'/arista.dashboard.v1.DashboardConfigService/GetAllBatched',
request_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigBatchedStreamRequest.SerializeToString,
response_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigBatchedStreamResponse.FromString,
_registered_method=True)
self.SubscribeBatched = channel.unary_stream(
'/arista.dashboard.v1.DashboardConfigService/SubscribeBatched',
request_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigBatchedStreamRequest.SerializeToString,
response_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigBatchedStreamResponse.FromString,
_registered_method=True)
[docs]
class DashboardConfigServiceServicer(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 Set(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 SetSome(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 Delete(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 DeleteSome(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 DeleteAll(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_DashboardConfigServiceServicer_to_server(servicer, server):
rpc_method_handlers = {
'GetOne': grpc.unary_unary_rpc_method_handler(
servicer.GetOne,
request_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigRequest.FromString,
response_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigResponse.SerializeToString,
),
'GetSome': grpc.unary_stream_rpc_method_handler(
servicer.GetSome,
request_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigSomeRequest.FromString,
response_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigSomeResponse.SerializeToString,
),
'GetAll': grpc.unary_stream_rpc_method_handler(
servicer.GetAll,
request_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigStreamRequest.FromString,
response_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigStreamResponse.SerializeToString,
),
'Subscribe': grpc.unary_stream_rpc_method_handler(
servicer.Subscribe,
request_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigStreamRequest.FromString,
response_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigStreamResponse.SerializeToString,
),
'GetMeta': grpc.unary_unary_rpc_method_handler(
servicer.GetMeta,
request_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigStreamRequest.FromString,
response_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString,
),
'SubscribeMeta': grpc.unary_stream_rpc_method_handler(
servicer.SubscribeMeta,
request_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigStreamRequest.FromString,
response_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString,
),
'Set': grpc.unary_unary_rpc_method_handler(
servicer.Set,
request_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigSetRequest.FromString,
response_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigSetResponse.SerializeToString,
),
'SetSome': grpc.unary_stream_rpc_method_handler(
servicer.SetSome,
request_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigSetSomeRequest.FromString,
response_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigSetSomeResponse.SerializeToString,
),
'Delete': grpc.unary_unary_rpc_method_handler(
servicer.Delete,
request_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigDeleteRequest.FromString,
response_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigDeleteResponse.SerializeToString,
),
'DeleteSome': grpc.unary_stream_rpc_method_handler(
servicer.DeleteSome,
request_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigDeleteSomeRequest.FromString,
response_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigDeleteSomeResponse.SerializeToString,
),
'DeleteAll': grpc.unary_stream_rpc_method_handler(
servicer.DeleteAll,
request_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigDeleteAllRequest.FromString,
response_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigDeleteAllResponse.SerializeToString,
),
'GetAllBatched': grpc.unary_stream_rpc_method_handler(
servicer.GetAllBatched,
request_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigBatchedStreamRequest.FromString,
response_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigBatchedStreamResponse.SerializeToString,
),
'SubscribeBatched': grpc.unary_stream_rpc_method_handler(
servicer.SubscribeBatched,
request_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigBatchedStreamRequest.FromString,
response_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigBatchedStreamResponse.SerializeToString,
),
}
generic_handler = grpc.method_handlers_generic_handler(
'arista.dashboard.v1.DashboardConfigService', rpc_method_handlers)
server.add_generic_rpc_handlers((generic_handler,))
server.add_registered_method_handlers('arista.dashboard.v1.DashboardConfigService', rpc_method_handlers)
# This class is part of an EXPERIMENTAL API.
[docs]
class DashboardConfigService(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.dashboard.v1.DashboardConfigService/GetOne',
arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigRequest.SerializeToString,
arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigResponse.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.dashboard.v1.DashboardConfigService/GetSome',
arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigSomeRequest.SerializeToString,
arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigSomeResponse.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.dashboard.v1.DashboardConfigService/GetAll',
arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigStreamRequest.SerializeToString,
arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigStreamResponse.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.dashboard.v1.DashboardConfigService/Subscribe',
arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigStreamRequest.SerializeToString,
arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigStreamResponse.FromString,
options,
channel_credentials,
insecure,
call_credentials,
compression,
wait_for_ready,
timeout,
metadata,
_registered_method=True)
[docs]
@staticmethod
def Set(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.dashboard.v1.DashboardConfigService/Set',
arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigSetRequest.SerializeToString,
arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigSetResponse.FromString,
options,
channel_credentials,
insecure,
call_credentials,
compression,
wait_for_ready,
timeout,
metadata,
_registered_method=True)
[docs]
@staticmethod
def SetSome(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.dashboard.v1.DashboardConfigService/SetSome',
arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigSetSomeRequest.SerializeToString,
arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigSetSomeResponse.FromString,
options,
channel_credentials,
insecure,
call_credentials,
compression,
wait_for_ready,
timeout,
metadata,
_registered_method=True)
[docs]
@staticmethod
def Delete(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.dashboard.v1.DashboardConfigService/Delete',
arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigDeleteRequest.SerializeToString,
arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigDeleteResponse.FromString,
options,
channel_credentials,
insecure,
call_credentials,
compression,
wait_for_ready,
timeout,
metadata,
_registered_method=True)
[docs]
@staticmethod
def DeleteSome(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.dashboard.v1.DashboardConfigService/DeleteSome',
arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigDeleteSomeRequest.SerializeToString,
arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigDeleteSomeResponse.FromString,
options,
channel_credentials,
insecure,
call_credentials,
compression,
wait_for_ready,
timeout,
metadata,
_registered_method=True)
[docs]
@staticmethod
def DeleteAll(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.dashboard.v1.DashboardConfigService/DeleteAll',
arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigDeleteAllRequest.SerializeToString,
arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigDeleteAllResponse.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.dashboard.v1.DashboardConfigService/GetAllBatched',
arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigBatchedStreamRequest.SerializeToString,
arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigBatchedStreamResponse.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.dashboard.v1.DashboardConfigService/SubscribeBatched',
arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigBatchedStreamRequest.SerializeToString,
arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigBatchedStreamResponse.FromString,
options,
channel_credentials,
insecure,
call_credentials,
compression,
wait_for_ready,
timeout,
metadata,
_registered_method=True)
[docs]
class GlobalDashboardConfigServiceStub(object):
"""Missing associated documentation comment in .proto file."""
def __init__(self, channel):
"""Constructor.
Args:
channel: A grpc.Channel.
"""
self.GetOne = channel.unary_unary(
'/arista.dashboard.v1.GlobalDashboardConfigService/GetOne',
request_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.GlobalDashboardConfigRequest.SerializeToString,
response_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.GlobalDashboardConfigResponse.FromString,
_registered_method=True)
self.GetAll = channel.unary_stream(
'/arista.dashboard.v1.GlobalDashboardConfigService/GetAll',
request_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.GlobalDashboardConfigStreamRequest.SerializeToString,
response_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.GlobalDashboardConfigStreamResponse.FromString,
_registered_method=True)
self.Subscribe = channel.unary_stream(
'/arista.dashboard.v1.GlobalDashboardConfigService/Subscribe',
request_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.GlobalDashboardConfigStreamRequest.SerializeToString,
response_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.GlobalDashboardConfigStreamResponse.FromString,
_registered_method=True)
self.SubscribeMeta = channel.unary_stream(
'/arista.dashboard.v1.GlobalDashboardConfigService/SubscribeMeta',
request_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.GlobalDashboardConfigStreamRequest.SerializeToString,
response_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString,
_registered_method=True)
self.Set = channel.unary_unary(
'/arista.dashboard.v1.GlobalDashboardConfigService/Set',
request_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.GlobalDashboardConfigSetRequest.SerializeToString,
response_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.GlobalDashboardConfigSetResponse.FromString,
_registered_method=True)
[docs]
class GlobalDashboardConfigServiceServicer(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 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 Set(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_GlobalDashboardConfigServiceServicer_to_server(servicer, server):
rpc_method_handlers = {
'GetOne': grpc.unary_unary_rpc_method_handler(
servicer.GetOne,
request_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.GlobalDashboardConfigRequest.FromString,
response_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.GlobalDashboardConfigResponse.SerializeToString,
),
'GetAll': grpc.unary_stream_rpc_method_handler(
servicer.GetAll,
request_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.GlobalDashboardConfigStreamRequest.FromString,
response_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.GlobalDashboardConfigStreamResponse.SerializeToString,
),
'Subscribe': grpc.unary_stream_rpc_method_handler(
servicer.Subscribe,
request_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.GlobalDashboardConfigStreamRequest.FromString,
response_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.GlobalDashboardConfigStreamResponse.SerializeToString,
),
'SubscribeMeta': grpc.unary_stream_rpc_method_handler(
servicer.SubscribeMeta,
request_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.GlobalDashboardConfigStreamRequest.FromString,
response_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString,
),
'Set': grpc.unary_unary_rpc_method_handler(
servicer.Set,
request_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.GlobalDashboardConfigSetRequest.FromString,
response_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.GlobalDashboardConfigSetResponse.SerializeToString,
),
}
generic_handler = grpc.method_handlers_generic_handler(
'arista.dashboard.v1.GlobalDashboardConfigService', rpc_method_handlers)
server.add_generic_rpc_handlers((generic_handler,))
server.add_registered_method_handlers('arista.dashboard.v1.GlobalDashboardConfigService', rpc_method_handlers)
# This class is part of an EXPERIMENTAL API.
[docs]
class GlobalDashboardConfigService(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.dashboard.v1.GlobalDashboardConfigService/GetOne',
arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.GlobalDashboardConfigRequest.SerializeToString,
arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.GlobalDashboardConfigResponse.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.dashboard.v1.GlobalDashboardConfigService/GetAll',
arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.GlobalDashboardConfigStreamRequest.SerializeToString,
arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.GlobalDashboardConfigStreamResponse.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.dashboard.v1.GlobalDashboardConfigService/Subscribe',
arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.GlobalDashboardConfigStreamRequest.SerializeToString,
arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.GlobalDashboardConfigStreamResponse.FromString,
options,
channel_credentials,
insecure,
call_credentials,
compression,
wait_for_ready,
timeout,
metadata,
_registered_method=True)
[docs]
@staticmethod
def Set(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.dashboard.v1.GlobalDashboardConfigService/Set',
arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.GlobalDashboardConfigSetRequest.SerializeToString,
arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.GlobalDashboardConfigSetResponse.FromString,
options,
channel_credentials,
insecure,
call_credentials,
compression,
wait_for_ready,
timeout,
metadata,
_registered_method=True)