diff --git a/.buildinfo b/.buildinfo new file mode 100644 index 00000000..0d5b699d --- /dev/null +++ b/.buildinfo @@ -0,0 +1,4 @@ +# Sphinx build info version 1 +# This file records the configuration used when building these files. When it is not found, a full rebuild will be done. +config: 1bb92a7c388133b18558e1594cd0c2a1 +tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/.nojekyll b/.nojekyll new file mode 100644 index 00000000..e69de29b diff --git a/_modules/arista/alert/v1/services/gen_pb2_grpc.html b/_modules/arista/alert/v1/services/gen_pb2_grpc.html new file mode 100644 index 00000000..a046432a --- /dev/null +++ b/_modules/arista/alert/v1/services/gen_pb2_grpc.html @@ -0,0 +1,1436 @@ + + + + + + + + arista.alert.v1.services.gen_pb2_grpc — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+
    +
  • + + +
  • +
  • +
+
+
+
+
+ +

Source code for arista.alert.v1.services.gen_pb2_grpc

+# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
+"""Client and server classes corresponding to protobuf-defined services."""
+import grpc
+
+from arista.alert.v1.services import gen_pb2 as arista_dot_alert_dot_v1_dot_services_dot_gen__pb2
+
+
+
+[docs] +class AlertServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.alert.v1.AlertService/GetOne', + request_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertRequest.SerializeToString, + response_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.alert.v1.AlertService/GetAll', + request_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertStreamRequest.SerializeToString, + response_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.alert.v1.AlertService/Subscribe', + request_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertStreamRequest.SerializeToString, + response_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertStreamResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.alert.v1.AlertService/SubscribeMeta', + request_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertStreamRequest.SerializeToString, + response_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + )
+ + + +
+[docs] +class AlertServiceServicer(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 SubscribeMeta(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_AlertServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertRequest.FromString, + response_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertStreamRequest.FromString, + response_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertStreamRequest.FromString, + response_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertStreamResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertStreamRequest.FromString, + response_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.alert.v1.AlertService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class AlertService(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.alert.v1.AlertService/GetOne', + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertRequest.SerializeToString, + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.alert.v1.AlertService/GetAll', + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertStreamRequest.SerializeToString, + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.alert.v1.AlertService/Subscribe', + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertStreamRequest.SerializeToString, + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.alert.v1.AlertService/SubscribeMeta', + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertStreamRequest.SerializeToString, + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class AlertConfigServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.alert.v1.AlertConfigService/GetOne', + request_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertConfigRequest.SerializeToString, + response_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertConfigResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.alert.v1.AlertConfigService/GetAll', + request_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertConfigStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.alert.v1.AlertConfigService/Subscribe', + request_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertConfigStreamResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.alert.v1.AlertConfigService/SubscribeMeta', + request_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.Set = channel.unary_unary( + '/arista.alert.v1.AlertConfigService/Set', + request_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertConfigSetRequest.SerializeToString, + response_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertConfigSetResponse.FromString, + )
+ + + +
+[docs] +class AlertConfigServiceServicer(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 SubscribeMeta(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_AlertConfigServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertConfigRequest.FromString, + response_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertConfigResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertConfigStreamRequest.FromString, + response_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertConfigStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertConfigStreamRequest.FromString, + response_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertConfigStreamResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertConfigStreamRequest.FromString, + response_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'Set': grpc.unary_unary_rpc_method_handler( + servicer.Set, + request_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertConfigSetRequest.FromString, + response_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertConfigSetResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.alert.v1.AlertConfigService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class AlertConfigService(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.alert.v1.AlertConfigService/GetOne', + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertConfigRequest.SerializeToString, + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertConfigResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.alert.v1.AlertConfigService/GetAll', + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertConfigStreamRequest.SerializeToString, + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertConfigStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.alert.v1.AlertConfigService/Subscribe', + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertConfigStreamRequest.SerializeToString, + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertConfigStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.alert.v1.AlertConfigService/SubscribeMeta', + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertConfigStreamRequest.SerializeToString, + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.alert.v1.AlertConfigService/Set', + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertConfigSetRequest.SerializeToString, + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.AlertConfigSetResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class DefaultTemplateServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.alert.v1.DefaultTemplateService/GetOne', + request_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.DefaultTemplateRequest.SerializeToString, + response_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.DefaultTemplateResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.alert.v1.DefaultTemplateService/GetSome', + request_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.DefaultTemplateSomeRequest.SerializeToString, + response_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.DefaultTemplateSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.alert.v1.DefaultTemplateService/GetAll', + request_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.DefaultTemplateStreamRequest.SerializeToString, + response_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.DefaultTemplateStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.alert.v1.DefaultTemplateService/Subscribe', + request_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.DefaultTemplateStreamRequest.SerializeToString, + response_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.DefaultTemplateStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.alert.v1.DefaultTemplateService/GetMeta', + request_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.DefaultTemplateStreamRequest.SerializeToString, + response_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.alert.v1.DefaultTemplateService/SubscribeMeta', + request_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.DefaultTemplateStreamRequest.SerializeToString, + response_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.alert.v1.DefaultTemplateService/GetAllBatched', + request_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.DefaultTemplateBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.DefaultTemplateBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.alert.v1.DefaultTemplateService/SubscribeBatched', + request_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.DefaultTemplateBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.DefaultTemplateBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class DefaultTemplateServiceServicer(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 GetMeta(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 SubscribeMeta(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_DefaultTemplateServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.DefaultTemplateRequest.FromString, + response_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.DefaultTemplateResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.DefaultTemplateSomeRequest.FromString, + response_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.DefaultTemplateSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.DefaultTemplateStreamRequest.FromString, + response_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.DefaultTemplateStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.DefaultTemplateStreamRequest.FromString, + response_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.DefaultTemplateStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.DefaultTemplateStreamRequest.FromString, + response_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.DefaultTemplateStreamRequest.FromString, + response_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.DefaultTemplateBatchedStreamRequest.FromString, + response_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.DefaultTemplateBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.DefaultTemplateBatchedStreamRequest.FromString, + response_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.DefaultTemplateBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.alert.v1.DefaultTemplateService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class DefaultTemplateService(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.alert.v1.DefaultTemplateService/GetOne', + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.DefaultTemplateRequest.SerializeToString, + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.DefaultTemplateResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.alert.v1.DefaultTemplateService/GetSome', + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.DefaultTemplateSomeRequest.SerializeToString, + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.DefaultTemplateSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.alert.v1.DefaultTemplateService/GetAll', + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.DefaultTemplateStreamRequest.SerializeToString, + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.DefaultTemplateStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.alert.v1.DefaultTemplateService/Subscribe', + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.DefaultTemplateStreamRequest.SerializeToString, + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.DefaultTemplateStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.alert.v1.DefaultTemplateService/GetMeta', + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.DefaultTemplateStreamRequest.SerializeToString, + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.alert.v1.DefaultTemplateService/SubscribeMeta', + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.DefaultTemplateStreamRequest.SerializeToString, + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.alert.v1.DefaultTemplateService/GetAllBatched', + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.DefaultTemplateBatchedStreamRequest.SerializeToString, + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.DefaultTemplateBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.alert.v1.DefaultTemplateService/SubscribeBatched', + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.DefaultTemplateBatchedStreamRequest.SerializeToString, + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.DefaultTemplateBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class TemplateConfigServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.alert.v1.TemplateConfigService/GetOne', + request_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigRequest.SerializeToString, + response_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.alert.v1.TemplateConfigService/GetSome', + request_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigSomeRequest.SerializeToString, + response_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.alert.v1.TemplateConfigService/GetAll', + request_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.alert.v1.TemplateConfigService/Subscribe', + request_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.alert.v1.TemplateConfigService/GetMeta', + request_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.alert.v1.TemplateConfigService/SubscribeMeta', + request_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.Set = channel.unary_unary( + '/arista.alert.v1.TemplateConfigService/Set', + request_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigSetRequest.SerializeToString, + response_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigSetResponse.FromString, + ) + self.SetSome = channel.unary_stream( + '/arista.alert.v1.TemplateConfigService/SetSome', + request_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigSetSomeRequest.SerializeToString, + response_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigSetSomeResponse.FromString, + ) + self.Delete = channel.unary_unary( + '/arista.alert.v1.TemplateConfigService/Delete', + request_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigDeleteRequest.SerializeToString, + response_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigDeleteResponse.FromString, + ) + self.DeleteSome = channel.unary_stream( + '/arista.alert.v1.TemplateConfigService/DeleteSome', + request_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigDeleteSomeRequest.SerializeToString, + response_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigDeleteSomeResponse.FromString, + ) + self.DeleteAll = channel.unary_stream( + '/arista.alert.v1.TemplateConfigService/DeleteAll', + request_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigDeleteAllRequest.SerializeToString, + response_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigDeleteAllResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.alert.v1.TemplateConfigService/GetAllBatched', + request_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.alert.v1.TemplateConfigService/SubscribeBatched', + request_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class TemplateConfigServiceServicer(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 GetMeta(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 SubscribeMeta(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_TemplateConfigServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigRequest.FromString, + response_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigSomeRequest.FromString, + response_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigStreamRequest.FromString, + response_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigStreamRequest.FromString, + response_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigStreamRequest.FromString, + response_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigStreamRequest.FromString, + response_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'Set': grpc.unary_unary_rpc_method_handler( + servicer.Set, + request_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigSetRequest.FromString, + response_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigSetResponse.SerializeToString, + ), + 'SetSome': grpc.unary_stream_rpc_method_handler( + servicer.SetSome, + request_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigSetSomeRequest.FromString, + response_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigSetSomeResponse.SerializeToString, + ), + 'Delete': grpc.unary_unary_rpc_method_handler( + servicer.Delete, + request_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigDeleteRequest.FromString, + response_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigDeleteResponse.SerializeToString, + ), + 'DeleteSome': grpc.unary_stream_rpc_method_handler( + servicer.DeleteSome, + request_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigDeleteSomeRequest.FromString, + response_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigDeleteSomeResponse.SerializeToString, + ), + 'DeleteAll': grpc.unary_stream_rpc_method_handler( + servicer.DeleteAll, + request_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigDeleteAllRequest.FromString, + response_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigDeleteAllResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigBatchedStreamRequest.FromString, + response_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigBatchedStreamRequest.FromString, + response_serializer=arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.alert.v1.TemplateConfigService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class TemplateConfigService(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.alert.v1.TemplateConfigService/GetOne', + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigRequest.SerializeToString, + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.alert.v1.TemplateConfigService/GetSome', + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigSomeRequest.SerializeToString, + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.alert.v1.TemplateConfigService/GetAll', + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigStreamRequest.SerializeToString, + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.alert.v1.TemplateConfigService/Subscribe', + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigStreamRequest.SerializeToString, + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.alert.v1.TemplateConfigService/GetMeta', + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigStreamRequest.SerializeToString, + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.alert.v1.TemplateConfigService/SubscribeMeta', + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigStreamRequest.SerializeToString, + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.alert.v1.TemplateConfigService/Set', + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigSetRequest.SerializeToString, + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigSetResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.alert.v1.TemplateConfigService/SetSome', + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigSetSomeRequest.SerializeToString, + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigSetSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.alert.v1.TemplateConfigService/Delete', + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigDeleteRequest.SerializeToString, + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigDeleteResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.alert.v1.TemplateConfigService/DeleteSome', + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigDeleteSomeRequest.SerializeToString, + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigDeleteSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.alert.v1.TemplateConfigService/DeleteAll', + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigDeleteAllRequest.SerializeToString, + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigDeleteAllResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.alert.v1.TemplateConfigService/GetAllBatched', + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigBatchedStreamRequest.SerializeToString, + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.alert.v1.TemplateConfigService/SubscribeBatched', + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigBatchedStreamRequest.SerializeToString, + arista_dot_alert_dot_v1_dot_services_dot_gen__pb2.TemplateConfigBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_modules/arista/bugexposure/v1/services/gen_pb2_grpc.html b/_modules/arista/bugexposure/v1/services/gen_pb2_grpc.html new file mode 100644 index 00000000..81572ab5 --- /dev/null +++ b/_modules/arista/bugexposure/v1/services/gen_pb2_grpc.html @@ -0,0 +1,341 @@ + + + + + + + + arista.bugexposure.v1.services.gen_pb2_grpc — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+
    +
  • + + +
  • +
  • +
+
+
+
+
+ +

Source code for arista.bugexposure.v1.services.gen_pb2_grpc

+# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
+"""Client and server classes corresponding to protobuf-defined services."""
+import grpc
+
+from arista.bugexposure.v1.services import gen_pb2 as arista_dot_bugexposure_dot_v1_dot_services_dot_gen__pb2
+
+
+
+[docs] +class BugExposureServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.bugexposure.v1.BugExposureService/GetOne', + request_serializer=arista_dot_bugexposure_dot_v1_dot_services_dot_gen__pb2.BugExposureRequest.SerializeToString, + response_deserializer=arista_dot_bugexposure_dot_v1_dot_services_dot_gen__pb2.BugExposureResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.bugexposure.v1.BugExposureService/GetAll', + request_serializer=arista_dot_bugexposure_dot_v1_dot_services_dot_gen__pb2.BugExposureStreamRequest.SerializeToString, + response_deserializer=arista_dot_bugexposure_dot_v1_dot_services_dot_gen__pb2.BugExposureStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.bugexposure.v1.BugExposureService/Subscribe', + request_serializer=arista_dot_bugexposure_dot_v1_dot_services_dot_gen__pb2.BugExposureStreamRequest.SerializeToString, + response_deserializer=arista_dot_bugexposure_dot_v1_dot_services_dot_gen__pb2.BugExposureStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.bugexposure.v1.BugExposureService/GetMeta', + request_serializer=arista_dot_bugexposure_dot_v1_dot_services_dot_gen__pb2.BugExposureStreamRequest.SerializeToString, + response_deserializer=arista_dot_bugexposure_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.bugexposure.v1.BugExposureService/SubscribeMeta', + request_serializer=arista_dot_bugexposure_dot_v1_dot_services_dot_gen__pb2.BugExposureStreamRequest.SerializeToString, + response_deserializer=arista_dot_bugexposure_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + )
+ + + +
+[docs] +class BugExposureServiceServicer(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 GetMeta(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 SubscribeMeta(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_BugExposureServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_bugexposure_dot_v1_dot_services_dot_gen__pb2.BugExposureRequest.FromString, + response_serializer=arista_dot_bugexposure_dot_v1_dot_services_dot_gen__pb2.BugExposureResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_bugexposure_dot_v1_dot_services_dot_gen__pb2.BugExposureStreamRequest.FromString, + response_serializer=arista_dot_bugexposure_dot_v1_dot_services_dot_gen__pb2.BugExposureStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_bugexposure_dot_v1_dot_services_dot_gen__pb2.BugExposureStreamRequest.FromString, + response_serializer=arista_dot_bugexposure_dot_v1_dot_services_dot_gen__pb2.BugExposureStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_bugexposure_dot_v1_dot_services_dot_gen__pb2.BugExposureStreamRequest.FromString, + response_serializer=arista_dot_bugexposure_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_bugexposure_dot_v1_dot_services_dot_gen__pb2.BugExposureStreamRequest.FromString, + response_serializer=arista_dot_bugexposure_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.bugexposure.v1.BugExposureService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class BugExposureService(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.bugexposure.v1.BugExposureService/GetOne', + arista_dot_bugexposure_dot_v1_dot_services_dot_gen__pb2.BugExposureRequest.SerializeToString, + arista_dot_bugexposure_dot_v1_dot_services_dot_gen__pb2.BugExposureResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.bugexposure.v1.BugExposureService/GetAll', + arista_dot_bugexposure_dot_v1_dot_services_dot_gen__pb2.BugExposureStreamRequest.SerializeToString, + arista_dot_bugexposure_dot_v1_dot_services_dot_gen__pb2.BugExposureStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.bugexposure.v1.BugExposureService/Subscribe', + arista_dot_bugexposure_dot_v1_dot_services_dot_gen__pb2.BugExposureStreamRequest.SerializeToString, + arista_dot_bugexposure_dot_v1_dot_services_dot_gen__pb2.BugExposureStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.bugexposure.v1.BugExposureService/GetMeta', + arista_dot_bugexposure_dot_v1_dot_services_dot_gen__pb2.BugExposureStreamRequest.SerializeToString, + arista_dot_bugexposure_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.bugexposure.v1.BugExposureService/SubscribeMeta', + arista_dot_bugexposure_dot_v1_dot_services_dot_gen__pb2.BugExposureStreamRequest.SerializeToString, + arista_dot_bugexposure_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_modules/arista/changecontrol/v1/services/gen_pb2_grpc.html b/_modules/arista/changecontrol/v1/services/gen_pb2_grpc.html new file mode 100644 index 00000000..7196c682 --- /dev/null +++ b/_modules/arista/changecontrol/v1/services/gen_pb2_grpc.html @@ -0,0 +1,1552 @@ + + + + + + + + arista.changecontrol.v1.services.gen_pb2_grpc — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+
    +
  • + + +
  • +
  • +
+
+
+
+
+ +

Source code for arista.changecontrol.v1.services.gen_pb2_grpc

+# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
+"""Client and server classes corresponding to protobuf-defined services."""
+import grpc
+
+from arista.changecontrol.v1.services import gen_pb2 as arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2
+
+
+
+[docs] +class ApproveConfigServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.changecontrol.v1.ApproveConfigService/GetOne', + request_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigRequest.SerializeToString, + response_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.changecontrol.v1.ApproveConfigService/GetSome', + request_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigSomeRequest.SerializeToString, + response_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.changecontrol.v1.ApproveConfigService/GetAll', + request_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.changecontrol.v1.ApproveConfigService/Subscribe', + request_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.changecontrol.v1.ApproveConfigService/GetMeta', + request_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.changecontrol.v1.ApproveConfigService/SubscribeMeta', + request_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.Set = channel.unary_unary( + '/arista.changecontrol.v1.ApproveConfigService/Set', + request_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigSetRequest.SerializeToString, + response_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigSetResponse.FromString, + ) + self.SetSome = channel.unary_stream( + '/arista.changecontrol.v1.ApproveConfigService/SetSome', + request_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigSetSomeRequest.SerializeToString, + response_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigSetSomeResponse.FromString, + ) + self.Delete = channel.unary_unary( + '/arista.changecontrol.v1.ApproveConfigService/Delete', + request_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigDeleteRequest.SerializeToString, + response_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigDeleteResponse.FromString, + ) + self.DeleteSome = channel.unary_stream( + '/arista.changecontrol.v1.ApproveConfigService/DeleteSome', + request_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigDeleteSomeRequest.SerializeToString, + response_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigDeleteSomeResponse.FromString, + ) + self.DeleteAll = channel.unary_stream( + '/arista.changecontrol.v1.ApproveConfigService/DeleteAll', + request_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigDeleteAllRequest.SerializeToString, + response_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigDeleteAllResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.changecontrol.v1.ApproveConfigService/GetAllBatched', + request_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.changecontrol.v1.ApproveConfigService/SubscribeBatched', + request_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class ApproveConfigServiceServicer(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 GetMeta(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 SubscribeMeta(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_ApproveConfigServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigRequest.FromString, + response_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigSomeRequest.FromString, + response_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigStreamRequest.FromString, + response_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigStreamRequest.FromString, + response_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigStreamRequest.FromString, + response_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigStreamRequest.FromString, + response_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'Set': grpc.unary_unary_rpc_method_handler( + servicer.Set, + request_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigSetRequest.FromString, + response_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigSetResponse.SerializeToString, + ), + 'SetSome': grpc.unary_stream_rpc_method_handler( + servicer.SetSome, + request_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigSetSomeRequest.FromString, + response_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigSetSomeResponse.SerializeToString, + ), + 'Delete': grpc.unary_unary_rpc_method_handler( + servicer.Delete, + request_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigDeleteRequest.FromString, + response_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigDeleteResponse.SerializeToString, + ), + 'DeleteSome': grpc.unary_stream_rpc_method_handler( + servicer.DeleteSome, + request_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigDeleteSomeRequest.FromString, + response_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigDeleteSomeResponse.SerializeToString, + ), + 'DeleteAll': grpc.unary_stream_rpc_method_handler( + servicer.DeleteAll, + request_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigDeleteAllRequest.FromString, + response_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigDeleteAllResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigBatchedStreamRequest.FromString, + response_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigBatchedStreamRequest.FromString, + response_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.changecontrol.v1.ApproveConfigService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class ApproveConfigService(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.changecontrol.v1.ApproveConfigService/GetOne', + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigRequest.SerializeToString, + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.changecontrol.v1.ApproveConfigService/GetSome', + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigSomeRequest.SerializeToString, + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.changecontrol.v1.ApproveConfigService/GetAll', + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigStreamRequest.SerializeToString, + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.changecontrol.v1.ApproveConfigService/Subscribe', + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigStreamRequest.SerializeToString, + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.changecontrol.v1.ApproveConfigService/GetMeta', + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigStreamRequest.SerializeToString, + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.changecontrol.v1.ApproveConfigService/SubscribeMeta', + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigStreamRequest.SerializeToString, + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.changecontrol.v1.ApproveConfigService/Set', + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigSetRequest.SerializeToString, + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigSetResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.changecontrol.v1.ApproveConfigService/SetSome', + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigSetSomeRequest.SerializeToString, + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigSetSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.changecontrol.v1.ApproveConfigService/Delete', + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigDeleteRequest.SerializeToString, + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigDeleteResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.changecontrol.v1.ApproveConfigService/DeleteSome', + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigDeleteSomeRequest.SerializeToString, + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigDeleteSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.changecontrol.v1.ApproveConfigService/DeleteAll', + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigDeleteAllRequest.SerializeToString, + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigDeleteAllResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.changecontrol.v1.ApproveConfigService/GetAllBatched', + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigBatchedStreamRequest.SerializeToString, + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.changecontrol.v1.ApproveConfigService/SubscribeBatched', + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigBatchedStreamRequest.SerializeToString, + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ApproveConfigBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class ChangeControlServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.changecontrol.v1.ChangeControlService/GetOne', + request_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlRequest.SerializeToString, + response_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.changecontrol.v1.ChangeControlService/GetSome', + request_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlSomeRequest.SerializeToString, + response_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.changecontrol.v1.ChangeControlService/GetAll', + request_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlStreamRequest.SerializeToString, + response_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.changecontrol.v1.ChangeControlService/Subscribe', + request_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlStreamRequest.SerializeToString, + response_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.changecontrol.v1.ChangeControlService/GetMeta', + request_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlStreamRequest.SerializeToString, + response_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.changecontrol.v1.ChangeControlService/SubscribeMeta', + request_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlStreamRequest.SerializeToString, + response_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.changecontrol.v1.ChangeControlService/GetAllBatched', + request_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.changecontrol.v1.ChangeControlService/SubscribeBatched', + request_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class ChangeControlServiceServicer(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 GetMeta(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 SubscribeMeta(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_ChangeControlServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlRequest.FromString, + response_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlSomeRequest.FromString, + response_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlStreamRequest.FromString, + response_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlStreamRequest.FromString, + response_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlStreamRequest.FromString, + response_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlStreamRequest.FromString, + response_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlBatchedStreamRequest.FromString, + response_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlBatchedStreamRequest.FromString, + response_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.changecontrol.v1.ChangeControlService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class ChangeControlService(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.changecontrol.v1.ChangeControlService/GetOne', + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlRequest.SerializeToString, + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.changecontrol.v1.ChangeControlService/GetSome', + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlSomeRequest.SerializeToString, + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.changecontrol.v1.ChangeControlService/GetAll', + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlStreamRequest.SerializeToString, + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.changecontrol.v1.ChangeControlService/Subscribe', + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlStreamRequest.SerializeToString, + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.changecontrol.v1.ChangeControlService/GetMeta', + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlStreamRequest.SerializeToString, + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.changecontrol.v1.ChangeControlService/SubscribeMeta', + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlStreamRequest.SerializeToString, + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.changecontrol.v1.ChangeControlService/GetAllBatched', + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlBatchedStreamRequest.SerializeToString, + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.changecontrol.v1.ChangeControlService/SubscribeBatched', + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlBatchedStreamRequest.SerializeToString, + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class ChangeControlConfigServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.changecontrol.v1.ChangeControlConfigService/GetOne', + request_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigRequest.SerializeToString, + response_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.changecontrol.v1.ChangeControlConfigService/GetSome', + request_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigSomeRequest.SerializeToString, + response_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.changecontrol.v1.ChangeControlConfigService/GetAll', + request_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.changecontrol.v1.ChangeControlConfigService/Subscribe', + request_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.changecontrol.v1.ChangeControlConfigService/GetMeta', + request_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.changecontrol.v1.ChangeControlConfigService/SubscribeMeta', + request_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.Set = channel.unary_unary( + '/arista.changecontrol.v1.ChangeControlConfigService/Set', + request_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigSetRequest.SerializeToString, + response_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigSetResponse.FromString, + ) + self.SetSome = channel.unary_stream( + '/arista.changecontrol.v1.ChangeControlConfigService/SetSome', + request_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigSetSomeRequest.SerializeToString, + response_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigSetSomeResponse.FromString, + ) + self.Delete = channel.unary_unary( + '/arista.changecontrol.v1.ChangeControlConfigService/Delete', + request_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigDeleteRequest.SerializeToString, + response_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigDeleteResponse.FromString, + ) + self.DeleteSome = channel.unary_stream( + '/arista.changecontrol.v1.ChangeControlConfigService/DeleteSome', + request_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigDeleteSomeRequest.SerializeToString, + response_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigDeleteSomeResponse.FromString, + ) + self.DeleteAll = channel.unary_stream( + '/arista.changecontrol.v1.ChangeControlConfigService/DeleteAll', + request_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigDeleteAllRequest.SerializeToString, + response_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigDeleteAllResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.changecontrol.v1.ChangeControlConfigService/GetAllBatched', + request_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.changecontrol.v1.ChangeControlConfigService/SubscribeBatched', + request_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class ChangeControlConfigServiceServicer(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 GetMeta(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 SubscribeMeta(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_ChangeControlConfigServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigRequest.FromString, + response_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigSomeRequest.FromString, + response_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigStreamRequest.FromString, + response_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigStreamRequest.FromString, + response_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigStreamRequest.FromString, + response_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigStreamRequest.FromString, + response_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'Set': grpc.unary_unary_rpc_method_handler( + servicer.Set, + request_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigSetRequest.FromString, + response_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigSetResponse.SerializeToString, + ), + 'SetSome': grpc.unary_stream_rpc_method_handler( + servicer.SetSome, + request_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigSetSomeRequest.FromString, + response_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigSetSomeResponse.SerializeToString, + ), + 'Delete': grpc.unary_unary_rpc_method_handler( + servicer.Delete, + request_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigDeleteRequest.FromString, + response_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigDeleteResponse.SerializeToString, + ), + 'DeleteSome': grpc.unary_stream_rpc_method_handler( + servicer.DeleteSome, + request_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigDeleteSomeRequest.FromString, + response_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigDeleteSomeResponse.SerializeToString, + ), + 'DeleteAll': grpc.unary_stream_rpc_method_handler( + servicer.DeleteAll, + request_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigDeleteAllRequest.FromString, + response_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigDeleteAllResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigBatchedStreamRequest.FromString, + response_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigBatchedStreamRequest.FromString, + response_serializer=arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.changecontrol.v1.ChangeControlConfigService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class ChangeControlConfigService(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.changecontrol.v1.ChangeControlConfigService/GetOne', + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigRequest.SerializeToString, + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.changecontrol.v1.ChangeControlConfigService/GetSome', + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigSomeRequest.SerializeToString, + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.changecontrol.v1.ChangeControlConfigService/GetAll', + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigStreamRequest.SerializeToString, + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.changecontrol.v1.ChangeControlConfigService/Subscribe', + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigStreamRequest.SerializeToString, + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.changecontrol.v1.ChangeControlConfigService/GetMeta', + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigStreamRequest.SerializeToString, + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.changecontrol.v1.ChangeControlConfigService/SubscribeMeta', + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigStreamRequest.SerializeToString, + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.changecontrol.v1.ChangeControlConfigService/Set', + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigSetRequest.SerializeToString, + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigSetResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.changecontrol.v1.ChangeControlConfigService/SetSome', + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigSetSomeRequest.SerializeToString, + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigSetSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.changecontrol.v1.ChangeControlConfigService/Delete', + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigDeleteRequest.SerializeToString, + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigDeleteResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.changecontrol.v1.ChangeControlConfigService/DeleteSome', + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigDeleteSomeRequest.SerializeToString, + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigDeleteSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.changecontrol.v1.ChangeControlConfigService/DeleteAll', + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigDeleteAllRequest.SerializeToString, + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigDeleteAllResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.changecontrol.v1.ChangeControlConfigService/GetAllBatched', + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigBatchedStreamRequest.SerializeToString, + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.changecontrol.v1.ChangeControlConfigService/SubscribeBatched', + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigBatchedStreamRequest.SerializeToString, + arista_dot_changecontrol_dot_v1_dot_services_dot_gen__pb2.ChangeControlConfigBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_modules/arista/configlet/v1/services/gen_pb2_grpc.html b/_modules/arista/configlet/v1/services/gen_pb2_grpc.html new file mode 100644 index 00000000..e80a12ef --- /dev/null +++ b/_modules/arista/configlet/v1/services/gen_pb2_grpc.html @@ -0,0 +1,1904 @@ + + + + + + + + arista.configlet.v1.services.gen_pb2_grpc — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+
    +
  • + + +
  • +
  • +
+
+
+
+
+ +

Source code for arista.configlet.v1.services.gen_pb2_grpc

+# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
+"""Client and server classes corresponding to protobuf-defined services."""
+import grpc
+
+from arista.configlet.v1.services import gen_pb2 as arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2
+
+
+
+[docs] +class ConfigletServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.configlet.v1.ConfigletService/GetOne', + request_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletRequest.SerializeToString, + response_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.configlet.v1.ConfigletService/GetSome', + request_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletSomeRequest.SerializeToString, + response_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.configlet.v1.ConfigletService/GetAll', + request_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletStreamRequest.SerializeToString, + response_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.configlet.v1.ConfigletService/Subscribe', + request_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletStreamRequest.SerializeToString, + response_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.configlet.v1.ConfigletService/GetMeta', + request_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletStreamRequest.SerializeToString, + response_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.configlet.v1.ConfigletService/SubscribeMeta', + request_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletStreamRequest.SerializeToString, + response_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.configlet.v1.ConfigletService/GetAllBatched', + request_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.configlet.v1.ConfigletService/SubscribeBatched', + request_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class ConfigletServiceServicer(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 GetMeta(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 SubscribeMeta(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_ConfigletServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletRequest.FromString, + response_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletSomeRequest.FromString, + response_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletStreamRequest.FromString, + response_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletStreamRequest.FromString, + response_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletStreamRequest.FromString, + response_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletStreamRequest.FromString, + response_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletBatchedStreamRequest.FromString, + response_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletBatchedStreamRequest.FromString, + response_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.configlet.v1.ConfigletService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class ConfigletService(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.configlet.v1.ConfigletService/GetOne', + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletRequest.SerializeToString, + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configlet.v1.ConfigletService/GetSome', + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletSomeRequest.SerializeToString, + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configlet.v1.ConfigletService/GetAll', + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletStreamRequest.SerializeToString, + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configlet.v1.ConfigletService/Subscribe', + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletStreamRequest.SerializeToString, + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.configlet.v1.ConfigletService/GetMeta', + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletStreamRequest.SerializeToString, + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.configlet.v1.ConfigletService/SubscribeMeta', + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletStreamRequest.SerializeToString, + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configlet.v1.ConfigletService/GetAllBatched', + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletBatchedStreamRequest.SerializeToString, + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configlet.v1.ConfigletService/SubscribeBatched', + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletBatchedStreamRequest.SerializeToString, + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class ConfigletAssignmentServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.configlet.v1.ConfigletAssignmentService/GetOne', + request_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentRequest.SerializeToString, + response_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.configlet.v1.ConfigletAssignmentService/GetSome', + request_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentSomeRequest.SerializeToString, + response_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.configlet.v1.ConfigletAssignmentService/GetAll', + request_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentStreamRequest.SerializeToString, + response_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.configlet.v1.ConfigletAssignmentService/Subscribe', + request_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentStreamRequest.SerializeToString, + response_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.configlet.v1.ConfigletAssignmentService/GetMeta', + request_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentStreamRequest.SerializeToString, + response_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.configlet.v1.ConfigletAssignmentService/SubscribeMeta', + request_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentStreamRequest.SerializeToString, + response_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.configlet.v1.ConfigletAssignmentService/GetAllBatched', + request_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.configlet.v1.ConfigletAssignmentService/SubscribeBatched', + request_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class ConfigletAssignmentServiceServicer(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 GetMeta(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 SubscribeMeta(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_ConfigletAssignmentServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentRequest.FromString, + response_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentSomeRequest.FromString, + response_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentStreamRequest.FromString, + response_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentStreamRequest.FromString, + response_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentStreamRequest.FromString, + response_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentStreamRequest.FromString, + response_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentBatchedStreamRequest.FromString, + response_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentBatchedStreamRequest.FromString, + response_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.configlet.v1.ConfigletAssignmentService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class ConfigletAssignmentService(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.configlet.v1.ConfigletAssignmentService/GetOne', + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentRequest.SerializeToString, + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configlet.v1.ConfigletAssignmentService/GetSome', + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentSomeRequest.SerializeToString, + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configlet.v1.ConfigletAssignmentService/GetAll', + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentStreamRequest.SerializeToString, + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configlet.v1.ConfigletAssignmentService/Subscribe', + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentStreamRequest.SerializeToString, + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.configlet.v1.ConfigletAssignmentService/GetMeta', + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentStreamRequest.SerializeToString, + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.configlet.v1.ConfigletAssignmentService/SubscribeMeta', + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentStreamRequest.SerializeToString, + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configlet.v1.ConfigletAssignmentService/GetAllBatched', + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentBatchedStreamRequest.SerializeToString, + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configlet.v1.ConfigletAssignmentService/SubscribeBatched', + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentBatchedStreamRequest.SerializeToString, + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class ConfigletAssignmentConfigServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.configlet.v1.ConfigletAssignmentConfigService/GetOne', + request_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigRequest.SerializeToString, + response_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.configlet.v1.ConfigletAssignmentConfigService/GetSome', + request_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigSomeRequest.SerializeToString, + response_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.configlet.v1.ConfigletAssignmentConfigService/GetAll', + request_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.configlet.v1.ConfigletAssignmentConfigService/Subscribe', + request_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.configlet.v1.ConfigletAssignmentConfigService/GetMeta', + request_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.configlet.v1.ConfigletAssignmentConfigService/SubscribeMeta', + request_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.Set = channel.unary_unary( + '/arista.configlet.v1.ConfigletAssignmentConfigService/Set', + request_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigSetRequest.SerializeToString, + response_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigSetResponse.FromString, + ) + self.SetSome = channel.unary_stream( + '/arista.configlet.v1.ConfigletAssignmentConfigService/SetSome', + request_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigSetSomeRequest.SerializeToString, + response_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigSetSomeResponse.FromString, + ) + self.Delete = channel.unary_unary( + '/arista.configlet.v1.ConfigletAssignmentConfigService/Delete', + request_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigDeleteRequest.SerializeToString, + response_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigDeleteResponse.FromString, + ) + self.DeleteSome = channel.unary_stream( + '/arista.configlet.v1.ConfigletAssignmentConfigService/DeleteSome', + request_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigDeleteSomeRequest.SerializeToString, + response_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigDeleteSomeResponse.FromString, + ) + self.DeleteAll = channel.unary_stream( + '/arista.configlet.v1.ConfigletAssignmentConfigService/DeleteAll', + request_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigDeleteAllRequest.SerializeToString, + response_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigDeleteAllResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.configlet.v1.ConfigletAssignmentConfigService/GetAllBatched', + request_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.configlet.v1.ConfigletAssignmentConfigService/SubscribeBatched', + request_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class ConfigletAssignmentConfigServiceServicer(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 GetMeta(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 SubscribeMeta(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_ConfigletAssignmentConfigServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigRequest.FromString, + response_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigSomeRequest.FromString, + response_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigStreamRequest.FromString, + response_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigStreamRequest.FromString, + response_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigStreamRequest.FromString, + response_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigStreamRequest.FromString, + response_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'Set': grpc.unary_unary_rpc_method_handler( + servicer.Set, + request_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigSetRequest.FromString, + response_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigSetResponse.SerializeToString, + ), + 'SetSome': grpc.unary_stream_rpc_method_handler( + servicer.SetSome, + request_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigSetSomeRequest.FromString, + response_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigSetSomeResponse.SerializeToString, + ), + 'Delete': grpc.unary_unary_rpc_method_handler( + servicer.Delete, + request_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigDeleteRequest.FromString, + response_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigDeleteResponse.SerializeToString, + ), + 'DeleteSome': grpc.unary_stream_rpc_method_handler( + servicer.DeleteSome, + request_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigDeleteSomeRequest.FromString, + response_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigDeleteSomeResponse.SerializeToString, + ), + 'DeleteAll': grpc.unary_stream_rpc_method_handler( + servicer.DeleteAll, + request_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigDeleteAllRequest.FromString, + response_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigDeleteAllResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigBatchedStreamRequest.FromString, + response_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigBatchedStreamRequest.FromString, + response_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.configlet.v1.ConfigletAssignmentConfigService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class ConfigletAssignmentConfigService(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.configlet.v1.ConfigletAssignmentConfigService/GetOne', + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigRequest.SerializeToString, + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configlet.v1.ConfigletAssignmentConfigService/GetSome', + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigSomeRequest.SerializeToString, + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configlet.v1.ConfigletAssignmentConfigService/GetAll', + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigStreamRequest.SerializeToString, + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configlet.v1.ConfigletAssignmentConfigService/Subscribe', + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigStreamRequest.SerializeToString, + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.configlet.v1.ConfigletAssignmentConfigService/GetMeta', + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigStreamRequest.SerializeToString, + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.configlet.v1.ConfigletAssignmentConfigService/SubscribeMeta', + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigStreamRequest.SerializeToString, + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configlet.v1.ConfigletAssignmentConfigService/Set', + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigSetRequest.SerializeToString, + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigSetResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configlet.v1.ConfigletAssignmentConfigService/SetSome', + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigSetSomeRequest.SerializeToString, + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigSetSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configlet.v1.ConfigletAssignmentConfigService/Delete', + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigDeleteRequest.SerializeToString, + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigDeleteResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configlet.v1.ConfigletAssignmentConfigService/DeleteSome', + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigDeleteSomeRequest.SerializeToString, + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigDeleteSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configlet.v1.ConfigletAssignmentConfigService/DeleteAll', + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigDeleteAllRequest.SerializeToString, + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigDeleteAllResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configlet.v1.ConfigletAssignmentConfigService/GetAllBatched', + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigBatchedStreamRequest.SerializeToString, + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configlet.v1.ConfigletAssignmentConfigService/SubscribeBatched', + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigBatchedStreamRequest.SerializeToString, + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletAssignmentConfigBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class ConfigletConfigServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.configlet.v1.ConfigletConfigService/GetOne', + request_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigRequest.SerializeToString, + response_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.configlet.v1.ConfigletConfigService/GetSome', + request_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigSomeRequest.SerializeToString, + response_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.configlet.v1.ConfigletConfigService/GetAll', + request_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.configlet.v1.ConfigletConfigService/Subscribe', + request_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.configlet.v1.ConfigletConfigService/GetMeta', + request_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.configlet.v1.ConfigletConfigService/SubscribeMeta', + request_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.Set = channel.unary_unary( + '/arista.configlet.v1.ConfigletConfigService/Set', + request_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigSetRequest.SerializeToString, + response_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigSetResponse.FromString, + ) + self.SetSome = channel.unary_stream( + '/arista.configlet.v1.ConfigletConfigService/SetSome', + request_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigSetSomeRequest.SerializeToString, + response_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigSetSomeResponse.FromString, + ) + self.Delete = channel.unary_unary( + '/arista.configlet.v1.ConfigletConfigService/Delete', + request_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigDeleteRequest.SerializeToString, + response_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigDeleteResponse.FromString, + ) + self.DeleteSome = channel.unary_stream( + '/arista.configlet.v1.ConfigletConfigService/DeleteSome', + request_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigDeleteSomeRequest.SerializeToString, + response_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigDeleteSomeResponse.FromString, + ) + self.DeleteAll = channel.unary_stream( + '/arista.configlet.v1.ConfigletConfigService/DeleteAll', + request_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigDeleteAllRequest.SerializeToString, + response_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigDeleteAllResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.configlet.v1.ConfigletConfigService/GetAllBatched', + request_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.configlet.v1.ConfigletConfigService/SubscribeBatched', + request_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class ConfigletConfigServiceServicer(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 GetMeta(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 SubscribeMeta(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_ConfigletConfigServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigRequest.FromString, + response_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigSomeRequest.FromString, + response_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigStreamRequest.FromString, + response_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigStreamRequest.FromString, + response_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigStreamRequest.FromString, + response_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigStreamRequest.FromString, + response_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'Set': grpc.unary_unary_rpc_method_handler( + servicer.Set, + request_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigSetRequest.FromString, + response_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigSetResponse.SerializeToString, + ), + 'SetSome': grpc.unary_stream_rpc_method_handler( + servicer.SetSome, + request_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigSetSomeRequest.FromString, + response_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigSetSomeResponse.SerializeToString, + ), + 'Delete': grpc.unary_unary_rpc_method_handler( + servicer.Delete, + request_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigDeleteRequest.FromString, + response_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigDeleteResponse.SerializeToString, + ), + 'DeleteSome': grpc.unary_stream_rpc_method_handler( + servicer.DeleteSome, + request_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigDeleteSomeRequest.FromString, + response_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigDeleteSomeResponse.SerializeToString, + ), + 'DeleteAll': grpc.unary_stream_rpc_method_handler( + servicer.DeleteAll, + request_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigDeleteAllRequest.FromString, + response_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigDeleteAllResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigBatchedStreamRequest.FromString, + response_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigBatchedStreamRequest.FromString, + response_serializer=arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.configlet.v1.ConfigletConfigService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class ConfigletConfigService(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.configlet.v1.ConfigletConfigService/GetOne', + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigRequest.SerializeToString, + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configlet.v1.ConfigletConfigService/GetSome', + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigSomeRequest.SerializeToString, + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configlet.v1.ConfigletConfigService/GetAll', + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigStreamRequest.SerializeToString, + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configlet.v1.ConfigletConfigService/Subscribe', + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigStreamRequest.SerializeToString, + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.configlet.v1.ConfigletConfigService/GetMeta', + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigStreamRequest.SerializeToString, + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.configlet.v1.ConfigletConfigService/SubscribeMeta', + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigStreamRequest.SerializeToString, + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configlet.v1.ConfigletConfigService/Set', + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigSetRequest.SerializeToString, + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigSetResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configlet.v1.ConfigletConfigService/SetSome', + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigSetSomeRequest.SerializeToString, + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigSetSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configlet.v1.ConfigletConfigService/Delete', + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigDeleteRequest.SerializeToString, + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigDeleteResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configlet.v1.ConfigletConfigService/DeleteSome', + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigDeleteSomeRequest.SerializeToString, + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigDeleteSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configlet.v1.ConfigletConfigService/DeleteAll', + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigDeleteAllRequest.SerializeToString, + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigDeleteAllResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configlet.v1.ConfigletConfigService/GetAllBatched', + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigBatchedStreamRequest.SerializeToString, + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configlet.v1.ConfigletConfigService/SubscribeBatched', + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigBatchedStreamRequest.SerializeToString, + arista_dot_configlet_dot_v1_dot_services_dot_gen__pb2.ConfigletConfigBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_modules/arista/configstatus/v1/services/gen_pb2_grpc.html b/_modules/arista/configstatus/v1/services/gen_pb2_grpc.html new file mode 100644 index 00000000..2f2db210 --- /dev/null +++ b/_modules/arista/configstatus/v1/services/gen_pb2_grpc.html @@ -0,0 +1,2218 @@ + + + + + + + + arista.configstatus.v1.services.gen_pb2_grpc — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+
    +
  • + + +
  • +
  • +
+
+
+
+
+ +

Source code for arista.configstatus.v1.services.gen_pb2_grpc

+# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
+"""Client and server classes corresponding to protobuf-defined services."""
+import grpc
+
+from arista.configstatus.v1.services import gen_pb2 as arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2
+
+
+
+[docs] +class ConfigDiffServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.configstatus.v1.ConfigDiffService/GetOne', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigDiffRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigDiffResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.configstatus.v1.ConfigDiffService/GetSome', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigDiffSomeRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigDiffSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.configstatus.v1.ConfigDiffService/GetAll', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigDiffStreamRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigDiffStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.configstatus.v1.ConfigDiffService/Subscribe', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigDiffStreamRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigDiffStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.configstatus.v1.ConfigDiffService/GetMeta', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigDiffStreamRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.configstatus.v1.ConfigDiffService/SubscribeMeta', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigDiffStreamRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.configstatus.v1.ConfigDiffService/GetAllBatched', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigDiffBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigDiffBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.configstatus.v1.ConfigDiffService/SubscribeBatched', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigDiffBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigDiffBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class ConfigDiffServiceServicer(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 GetMeta(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 SubscribeMeta(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_ConfigDiffServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigDiffRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigDiffResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigDiffSomeRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigDiffSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigDiffStreamRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigDiffStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigDiffStreamRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigDiffStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigDiffStreamRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigDiffStreamRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigDiffBatchedStreamRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigDiffBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigDiffBatchedStreamRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigDiffBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.configstatus.v1.ConfigDiffService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class ConfigDiffService(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.configstatus.v1.ConfigDiffService/GetOne', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigDiffRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigDiffResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configstatus.v1.ConfigDiffService/GetSome', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigDiffSomeRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigDiffSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configstatus.v1.ConfigDiffService/GetAll', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigDiffStreamRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigDiffStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configstatus.v1.ConfigDiffService/Subscribe', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigDiffStreamRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigDiffStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.configstatus.v1.ConfigDiffService/GetMeta', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigDiffStreamRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.configstatus.v1.ConfigDiffService/SubscribeMeta', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigDiffStreamRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configstatus.v1.ConfigDiffService/GetAllBatched', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigDiffBatchedStreamRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigDiffBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configstatus.v1.ConfigDiffService/SubscribeBatched', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigDiffBatchedStreamRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigDiffBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class ConfigurationServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.configstatus.v1.ConfigurationService/GetOne', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigurationRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigurationResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.configstatus.v1.ConfigurationService/GetSome', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigurationSomeRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigurationSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.configstatus.v1.ConfigurationService/GetAll', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigurationStreamRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigurationStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.configstatus.v1.ConfigurationService/Subscribe', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigurationStreamRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigurationStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.configstatus.v1.ConfigurationService/GetMeta', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigurationStreamRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.configstatus.v1.ConfigurationService/SubscribeMeta', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigurationStreamRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.configstatus.v1.ConfigurationService/GetAllBatched', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigurationBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigurationBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.configstatus.v1.ConfigurationService/SubscribeBatched', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigurationBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigurationBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class ConfigurationServiceServicer(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 GetMeta(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 SubscribeMeta(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_ConfigurationServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigurationRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigurationResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigurationSomeRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigurationSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigurationStreamRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigurationStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigurationStreamRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigurationStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigurationStreamRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigurationStreamRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigurationBatchedStreamRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigurationBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigurationBatchedStreamRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigurationBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.configstatus.v1.ConfigurationService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class ConfigurationService(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.configstatus.v1.ConfigurationService/GetOne', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigurationRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigurationResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configstatus.v1.ConfigurationService/GetSome', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigurationSomeRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigurationSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configstatus.v1.ConfigurationService/GetAll', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigurationStreamRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigurationStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configstatus.v1.ConfigurationService/Subscribe', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigurationStreamRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigurationStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.configstatus.v1.ConfigurationService/GetMeta', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigurationStreamRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.configstatus.v1.ConfigurationService/SubscribeMeta', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigurationStreamRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configstatus.v1.ConfigurationService/GetAllBatched', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigurationBatchedStreamRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigurationBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configstatus.v1.ConfigurationService/SubscribeBatched', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigurationBatchedStreamRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.ConfigurationBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class SecurityProfileServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.configstatus.v1.SecurityProfileService/GetOne', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.configstatus.v1.SecurityProfileService/GetSome', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileSomeRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.configstatus.v1.SecurityProfileService/GetAll', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileStreamRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.configstatus.v1.SecurityProfileService/Subscribe', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileStreamRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.configstatus.v1.SecurityProfileService/GetMeta', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileStreamRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.configstatus.v1.SecurityProfileService/SubscribeMeta', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileStreamRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.configstatus.v1.SecurityProfileService/GetAllBatched', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.configstatus.v1.SecurityProfileService/SubscribeBatched', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class SecurityProfileServiceServicer(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 GetMeta(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 SubscribeMeta(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_SecurityProfileServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileSomeRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileStreamRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileStreamRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileStreamRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileStreamRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileBatchedStreamRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileBatchedStreamRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.configstatus.v1.SecurityProfileService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class SecurityProfileService(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.configstatus.v1.SecurityProfileService/GetOne', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configstatus.v1.SecurityProfileService/GetSome', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileSomeRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configstatus.v1.SecurityProfileService/GetAll', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileStreamRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configstatus.v1.SecurityProfileService/Subscribe', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileStreamRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.configstatus.v1.SecurityProfileService/GetMeta', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileStreamRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.configstatus.v1.SecurityProfileService/SubscribeMeta', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileStreamRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configstatus.v1.SecurityProfileService/GetAllBatched', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileBatchedStreamRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configstatus.v1.SecurityProfileService/SubscribeBatched', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileBatchedStreamRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class SecurityProfileDiffServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.configstatus.v1.SecurityProfileDiffService/GetOne', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.configstatus.v1.SecurityProfileDiffService/GetSome', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSomeRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.configstatus.v1.SecurityProfileDiffService/GetAll', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffStreamRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.configstatus.v1.SecurityProfileDiffService/Subscribe', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffStreamRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.configstatus.v1.SecurityProfileDiffService/GetMeta', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffStreamRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.configstatus.v1.SecurityProfileDiffService/SubscribeMeta', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffStreamRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.configstatus.v1.SecurityProfileDiffService/GetAllBatched', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.configstatus.v1.SecurityProfileDiffService/SubscribeBatched', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class SecurityProfileDiffServiceServicer(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 GetMeta(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 SubscribeMeta(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_SecurityProfileDiffServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSomeRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffStreamRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffStreamRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffStreamRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffStreamRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffBatchedStreamRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffBatchedStreamRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.configstatus.v1.SecurityProfileDiffService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class SecurityProfileDiffService(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.configstatus.v1.SecurityProfileDiffService/GetOne', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configstatus.v1.SecurityProfileDiffService/GetSome', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSomeRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configstatus.v1.SecurityProfileDiffService/GetAll', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffStreamRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configstatus.v1.SecurityProfileDiffService/Subscribe', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffStreamRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.configstatus.v1.SecurityProfileDiffService/GetMeta', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffStreamRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.configstatus.v1.SecurityProfileDiffService/SubscribeMeta', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffStreamRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configstatus.v1.SecurityProfileDiffService/GetAllBatched', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffBatchedStreamRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configstatus.v1.SecurityProfileDiffService/SubscribeBatched', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffBatchedStreamRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class SecurityProfileDiffSummaryServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.configstatus.v1.SecurityProfileDiffSummaryService/GetOne', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSummaryRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSummaryResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.configstatus.v1.SecurityProfileDiffSummaryService/GetSome', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSummarySomeRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSummarySomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.configstatus.v1.SecurityProfileDiffSummaryService/GetAll', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSummaryStreamRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSummaryStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.configstatus.v1.SecurityProfileDiffSummaryService/Subscribe', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSummaryStreamRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSummaryStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.configstatus.v1.SecurityProfileDiffSummaryService/GetMeta', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSummaryStreamRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.configstatus.v1.SecurityProfileDiffSummaryService/SubscribeMeta', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSummaryStreamRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.configstatus.v1.SecurityProfileDiffSummaryService/GetAllBatched', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSummaryBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSummaryBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.configstatus.v1.SecurityProfileDiffSummaryService/SubscribeBatched', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSummaryBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSummaryBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class SecurityProfileDiffSummaryServiceServicer(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 GetMeta(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 SubscribeMeta(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_SecurityProfileDiffSummaryServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSummaryRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSummaryResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSummarySomeRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSummarySomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSummaryStreamRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSummaryStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSummaryStreamRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSummaryStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSummaryStreamRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSummaryStreamRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSummaryBatchedStreamRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSummaryBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSummaryBatchedStreamRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSummaryBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.configstatus.v1.SecurityProfileDiffSummaryService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class SecurityProfileDiffSummaryService(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.configstatus.v1.SecurityProfileDiffSummaryService/GetOne', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSummaryRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSummaryResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configstatus.v1.SecurityProfileDiffSummaryService/GetSome', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSummarySomeRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSummarySomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configstatus.v1.SecurityProfileDiffSummaryService/GetAll', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSummaryStreamRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSummaryStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configstatus.v1.SecurityProfileDiffSummaryService/Subscribe', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSummaryStreamRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSummaryStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.configstatus.v1.SecurityProfileDiffSummaryService/GetMeta', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSummaryStreamRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.configstatus.v1.SecurityProfileDiffSummaryService/SubscribeMeta', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSummaryStreamRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configstatus.v1.SecurityProfileDiffSummaryService/GetAllBatched', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSummaryBatchedStreamRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSummaryBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configstatus.v1.SecurityProfileDiffSummaryService/SubscribeBatched', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSummaryBatchedStreamRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SecurityProfileDiffSummaryBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class SummaryServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.configstatus.v1.SummaryService/GetOne', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SummaryRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SummaryResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.configstatus.v1.SummaryService/GetSome', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SummarySomeRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SummarySomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.configstatus.v1.SummaryService/GetAll', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SummaryStreamRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SummaryStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.configstatus.v1.SummaryService/Subscribe', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SummaryStreamRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SummaryStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.configstatus.v1.SummaryService/GetMeta', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SummaryStreamRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.configstatus.v1.SummaryService/SubscribeMeta', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SummaryStreamRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.configstatus.v1.SummaryService/GetAllBatched', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SummaryBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SummaryBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.configstatus.v1.SummaryService/SubscribeBatched', + request_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SummaryBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SummaryBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class SummaryServiceServicer(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 GetMeta(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 SubscribeMeta(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_SummaryServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SummaryRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SummaryResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SummarySomeRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SummarySomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SummaryStreamRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SummaryStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SummaryStreamRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SummaryStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SummaryStreamRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SummaryStreamRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SummaryBatchedStreamRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SummaryBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SummaryBatchedStreamRequest.FromString, + response_serializer=arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SummaryBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.configstatus.v1.SummaryService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class SummaryService(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.configstatus.v1.SummaryService/GetOne', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SummaryRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SummaryResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configstatus.v1.SummaryService/GetSome', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SummarySomeRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SummarySomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configstatus.v1.SummaryService/GetAll', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SummaryStreamRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SummaryStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configstatus.v1.SummaryService/Subscribe', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SummaryStreamRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SummaryStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.configstatus.v1.SummaryService/GetMeta', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SummaryStreamRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.configstatus.v1.SummaryService/SubscribeMeta', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SummaryStreamRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configstatus.v1.SummaryService/GetAllBatched', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SummaryBatchedStreamRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SummaryBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.configstatus.v1.SummaryService/SubscribeBatched', + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SummaryBatchedStreamRequest.SerializeToString, + arista_dot_configstatus_dot_v1_dot_services_dot_gen__pb2.SummaryBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_modules/arista/connectivitymonitor/v1/services/gen_pb2_grpc.html b/_modules/arista/connectivitymonitor/v1/services/gen_pb2_grpc.html new file mode 100644 index 00000000..473b6c7c --- /dev/null +++ b/_modules/arista/connectivitymonitor/v1/services/gen_pb2_grpc.html @@ -0,0 +1,810 @@ + + + + + + + + arista.connectivitymonitor.v1.services.gen_pb2_grpc — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+
    +
  • + + +
  • +
  • +
+
+
+
+
+ +

Source code for arista.connectivitymonitor.v1.services.gen_pb2_grpc

+# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
+"""Client and server classes corresponding to protobuf-defined services."""
+import grpc
+
+from arista.connectivitymonitor.v1.services import gen_pb2 as arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2
+
+
+
+[docs] +class ProbeServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.connectivitymonitor.v1.ProbeService/GetOne', + request_serializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeRequest.SerializeToString, + response_deserializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.connectivitymonitor.v1.ProbeService/GetSome', + request_serializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeSomeRequest.SerializeToString, + response_deserializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.connectivitymonitor.v1.ProbeService/GetAll', + request_serializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStreamRequest.SerializeToString, + response_deserializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.connectivitymonitor.v1.ProbeService/Subscribe', + request_serializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStreamRequest.SerializeToString, + response_deserializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.connectivitymonitor.v1.ProbeService/GetMeta', + request_serializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStreamRequest.SerializeToString, + response_deserializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.connectivitymonitor.v1.ProbeService/SubscribeMeta', + request_serializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStreamRequest.SerializeToString, + response_deserializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.connectivitymonitor.v1.ProbeService/GetAllBatched', + request_serializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.connectivitymonitor.v1.ProbeService/SubscribeBatched', + request_serializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class ProbeServiceServicer(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 GetMeta(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 SubscribeMeta(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_ProbeServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeRequest.FromString, + response_serializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeSomeRequest.FromString, + response_serializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStreamRequest.FromString, + response_serializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStreamRequest.FromString, + response_serializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStreamRequest.FromString, + response_serializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStreamRequest.FromString, + response_serializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeBatchedStreamRequest.FromString, + response_serializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeBatchedStreamRequest.FromString, + response_serializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.connectivitymonitor.v1.ProbeService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class ProbeService(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.connectivitymonitor.v1.ProbeService/GetOne', + arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeRequest.SerializeToString, + arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.connectivitymonitor.v1.ProbeService/GetSome', + arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeSomeRequest.SerializeToString, + arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.connectivitymonitor.v1.ProbeService/GetAll', + arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStreamRequest.SerializeToString, + arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.connectivitymonitor.v1.ProbeService/Subscribe', + arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStreamRequest.SerializeToString, + arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.connectivitymonitor.v1.ProbeService/GetMeta', + arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStreamRequest.SerializeToString, + arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.connectivitymonitor.v1.ProbeService/SubscribeMeta', + arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStreamRequest.SerializeToString, + arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.connectivitymonitor.v1.ProbeService/GetAllBatched', + arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeBatchedStreamRequest.SerializeToString, + arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.connectivitymonitor.v1.ProbeService/SubscribeBatched', + arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeBatchedStreamRequest.SerializeToString, + arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class ProbeStatsServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.connectivitymonitor.v1.ProbeStatsService/GetOne', + request_serializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStatsRequest.SerializeToString, + response_deserializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStatsResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.connectivitymonitor.v1.ProbeStatsService/GetSome', + request_serializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStatsSomeRequest.SerializeToString, + response_deserializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStatsSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.connectivitymonitor.v1.ProbeStatsService/GetAll', + request_serializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStatsStreamRequest.SerializeToString, + response_deserializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStatsStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.connectivitymonitor.v1.ProbeStatsService/Subscribe', + request_serializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStatsStreamRequest.SerializeToString, + response_deserializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStatsStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.connectivitymonitor.v1.ProbeStatsService/GetMeta', + request_serializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStatsStreamRequest.SerializeToString, + response_deserializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.connectivitymonitor.v1.ProbeStatsService/SubscribeMeta', + request_serializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStatsStreamRequest.SerializeToString, + response_deserializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.connectivitymonitor.v1.ProbeStatsService/GetAllBatched', + request_serializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStatsBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStatsBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.connectivitymonitor.v1.ProbeStatsService/SubscribeBatched', + request_serializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStatsBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStatsBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class ProbeStatsServiceServicer(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 GetMeta(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 SubscribeMeta(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_ProbeStatsServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStatsRequest.FromString, + response_serializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStatsResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStatsSomeRequest.FromString, + response_serializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStatsSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStatsStreamRequest.FromString, + response_serializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStatsStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStatsStreamRequest.FromString, + response_serializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStatsStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStatsStreamRequest.FromString, + response_serializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStatsStreamRequest.FromString, + response_serializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStatsBatchedStreamRequest.FromString, + response_serializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStatsBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStatsBatchedStreamRequest.FromString, + response_serializer=arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStatsBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.connectivitymonitor.v1.ProbeStatsService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class ProbeStatsService(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.connectivitymonitor.v1.ProbeStatsService/GetOne', + arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStatsRequest.SerializeToString, + arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStatsResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.connectivitymonitor.v1.ProbeStatsService/GetSome', + arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStatsSomeRequest.SerializeToString, + arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStatsSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.connectivitymonitor.v1.ProbeStatsService/GetAll', + arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStatsStreamRequest.SerializeToString, + arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStatsStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.connectivitymonitor.v1.ProbeStatsService/Subscribe', + arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStatsStreamRequest.SerializeToString, + arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStatsStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.connectivitymonitor.v1.ProbeStatsService/GetMeta', + arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStatsStreamRequest.SerializeToString, + arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.connectivitymonitor.v1.ProbeStatsService/SubscribeMeta', + arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStatsStreamRequest.SerializeToString, + arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.connectivitymonitor.v1.ProbeStatsService/GetAllBatched', + arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStatsBatchedStreamRequest.SerializeToString, + arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStatsBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.connectivitymonitor.v1.ProbeStatsService/SubscribeBatched', + arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStatsBatchedStreamRequest.SerializeToString, + arista_dot_connectivitymonitor_dot_v1_dot_services_dot_gen__pb2.ProbeStatsBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_modules/arista/dashboard/v1/services/gen_pb2_grpc.html b/_modules/arista/dashboard/v1/services/gen_pb2_grpc.html new file mode 100644 index 00000000..cd790f5e --- /dev/null +++ b/_modules/arista/dashboard/v1/services/gen_pb2_grpc.html @@ -0,0 +1,1318 @@ + + + + + + + + arista.dashboard.v1.services.gen_pb2_grpc — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+
    +
  • + + +
  • +
  • +
+
+
+
+
+ +

Source code for arista.dashboard.v1.services.gen_pb2_grpc

+# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
+"""Client and server classes corresponding to protobuf-defined services."""
+import grpc
+
+from arista.dashboard.v1.services import gen_pb2 as arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2
+
+
+
+[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, + ) + 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, + ) + 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, + ) + 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, + ) + 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, + ) + 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, + ) + 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, + ) + 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, + )
+ + + +
+[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 GetMeta(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 SubscribeMeta(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,))
+ + + + # 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)
+ + +
+[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)
+ + +
+[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)
+ + +
+[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)
+ + +
+[docs] + @staticmethod + def GetMeta(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/GetMeta', + arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardStreamRequest.SerializeToString, + arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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/SubscribeMeta', + arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardStreamRequest.SerializeToString, + arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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)
+ + +
+[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)
+
+ + + +
+[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, + ) + 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, + ) + 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, + ) + 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, + ) + 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, + ) + 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, + ) + 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, + ) + 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, + ) + 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, + ) + 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, + ) + 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, + ) + 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, + ) + 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, + )
+ + + +
+[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 GetMeta(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 SubscribeMeta(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,))
+ + + + # 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)
+ + +
+[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)
+ + +
+[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)
+ + +
+[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)
+ + +
+[docs] + @staticmethod + def GetMeta(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/GetMeta', + arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigStreamRequest.SerializeToString, + arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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/SubscribeMeta', + arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.DashboardConfigStreamRequest.SerializeToString, + arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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)
+ + +
+[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)
+ + +
+[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)
+ + +
+[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)
+ + +
+[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)
+ + +
+[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)
+ + +
+[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)
+
+ + + +
+[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, + ) + 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, + ) + 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, + ) + 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, + ) + 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, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.dashboard.v1.GlobalDashboardConfigService/GetAllBatched', + request_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.GlobalDashboardConfigBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.GlobalDashboardConfigBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.dashboard.v1.GlobalDashboardConfigService/SubscribeBatched', + request_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.GlobalDashboardConfigBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.GlobalDashboardConfigBatchedStreamResponse.FromString, + )
+ + + +
+[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 SubscribeMeta(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 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_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, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.GlobalDashboardConfigBatchedStreamRequest.FromString, + response_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.GlobalDashboardConfigBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.GlobalDashboardConfigBatchedStreamRequest.FromString, + response_serializer=arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.GlobalDashboardConfigBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.dashboard.v1.GlobalDashboardConfigService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # 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)
+ + +
+[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)
+ + +
+[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)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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/SubscribeMeta', + arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.GlobalDashboardConfigStreamRequest.SerializeToString, + arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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)
+ + +
+[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.GlobalDashboardConfigService/GetAllBatched', + arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.GlobalDashboardConfigBatchedStreamRequest.SerializeToString, + arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.GlobalDashboardConfigBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.GlobalDashboardConfigService/SubscribeBatched', + arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.GlobalDashboardConfigBatchedStreamRequest.SerializeToString, + arista_dot_dashboard_dot_v1_dot_services_dot_gen__pb2.GlobalDashboardConfigBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_modules/arista/endpointlocation/v1/services/gen_pb2_grpc.html b/_modules/arista/endpointlocation/v1/services/gen_pb2_grpc.html new file mode 100644 index 00000000..ecefddb8 --- /dev/null +++ b/_modules/arista/endpointlocation/v1/services/gen_pb2_grpc.html @@ -0,0 +1,458 @@ + + + + + + + + arista.endpointlocation.v1.services.gen_pb2_grpc — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+
    +
  • + + +
  • +
  • +
+
+
+
+
+ +

Source code for arista.endpointlocation.v1.services.gen_pb2_grpc

+# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
+"""Client and server classes corresponding to protobuf-defined services."""
+import grpc
+
+from arista.endpointlocation.v1.services import gen_pb2 as arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2
+
+
+
+[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, + ) + 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, + ) + 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, + ) + 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, + ) + 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, + ) + 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, + ) + 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, + ) + 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, + )
+ + + +
+[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 GetMeta(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 SubscribeMeta(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,))
+ + + + # 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)
+ + +
+[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)
+ + +
+[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)
+ + +
+[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)
+ + +
+[docs] + @staticmethod + def GetMeta(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/GetMeta', + arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.EndpointLocationStreamRequest.SerializeToString, + arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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/SubscribeMeta', + arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.EndpointLocationStreamRequest.SerializeToString, + arista_dot_endpointlocation_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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)
+ + +
+[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)
+
+ +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_modules/arista/event/v1/services/gen_pb2_grpc.html b/_modules/arista/event/v1/services/gen_pb2_grpc.html new file mode 100644 index 00000000..72bb90ff --- /dev/null +++ b/_modules/arista/event/v1/services/gen_pb2_grpc.html @@ -0,0 +1,1318 @@ + + + + + + + + arista.event.v1.services.gen_pb2_grpc — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+
    +
  • + + +
  • +
  • +
+
+
+
+
+ +

Source code for arista.event.v1.services.gen_pb2_grpc

+# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
+"""Client and server classes corresponding to protobuf-defined services."""
+import grpc
+
+from arista.event.v1.services import gen_pb2 as arista_dot_event_dot_v1_dot_services_dot_gen__pb2
+
+
+
+[docs] +class EventServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.event.v1.EventService/GetOne', + request_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventRequest.SerializeToString, + response_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.event.v1.EventService/GetSome', + request_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventSomeRequest.SerializeToString, + response_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.event.v1.EventService/GetAll', + request_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventStreamRequest.SerializeToString, + response_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.event.v1.EventService/Subscribe', + request_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventStreamRequest.SerializeToString, + response_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.event.v1.EventService/GetMeta', + request_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventStreamRequest.SerializeToString, + response_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.event.v1.EventService/SubscribeMeta', + request_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventStreamRequest.SerializeToString, + response_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + )
+ + + +
+[docs] +class EventServiceServicer(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 GetMeta(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 SubscribeMeta(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_EventServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventRequest.FromString, + response_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventSomeRequest.FromString, + response_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventStreamRequest.FromString, + response_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventStreamRequest.FromString, + response_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventStreamRequest.FromString, + response_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventStreamRequest.FromString, + response_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.event.v1.EventService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class EventService(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.event.v1.EventService/GetOne', + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventRequest.SerializeToString, + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.event.v1.EventService/GetSome', + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventSomeRequest.SerializeToString, + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.event.v1.EventService/GetAll', + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventStreamRequest.SerializeToString, + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.event.v1.EventService/Subscribe', + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventStreamRequest.SerializeToString, + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.event.v1.EventService/GetMeta', + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventStreamRequest.SerializeToString, + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.event.v1.EventService/SubscribeMeta', + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventStreamRequest.SerializeToString, + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class EventAnnotationConfigServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.event.v1.EventAnnotationConfigService/GetOne', + request_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigRequest.SerializeToString, + response_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.event.v1.EventAnnotationConfigService/GetSome', + request_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigSomeRequest.SerializeToString, + response_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.event.v1.EventAnnotationConfigService/GetAll', + request_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.event.v1.EventAnnotationConfigService/Subscribe', + request_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.event.v1.EventAnnotationConfigService/GetMeta', + request_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.event.v1.EventAnnotationConfigService/SubscribeMeta', + request_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.Set = channel.unary_unary( + '/arista.event.v1.EventAnnotationConfigService/Set', + request_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigSetRequest.SerializeToString, + response_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigSetResponse.FromString, + ) + self.SetSome = channel.unary_stream( + '/arista.event.v1.EventAnnotationConfigService/SetSome', + request_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigSetSomeRequest.SerializeToString, + response_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigSetSomeResponse.FromString, + ) + self.Delete = channel.unary_unary( + '/arista.event.v1.EventAnnotationConfigService/Delete', + request_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigDeleteRequest.SerializeToString, + response_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigDeleteResponse.FromString, + ) + self.DeleteSome = channel.unary_stream( + '/arista.event.v1.EventAnnotationConfigService/DeleteSome', + request_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigDeleteSomeRequest.SerializeToString, + response_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigDeleteSomeResponse.FromString, + ) + self.DeleteAll = channel.unary_stream( + '/arista.event.v1.EventAnnotationConfigService/DeleteAll', + request_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigDeleteAllRequest.SerializeToString, + response_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigDeleteAllResponse.FromString, + )
+ + + +
+[docs] +class EventAnnotationConfigServiceServicer(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 GetMeta(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 SubscribeMeta(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 add_EventAnnotationConfigServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigRequest.FromString, + response_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigSomeRequest.FromString, + response_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigStreamRequest.FromString, + response_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigStreamRequest.FromString, + response_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigStreamRequest.FromString, + response_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigStreamRequest.FromString, + response_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'Set': grpc.unary_unary_rpc_method_handler( + servicer.Set, + request_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigSetRequest.FromString, + response_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigSetResponse.SerializeToString, + ), + 'SetSome': grpc.unary_stream_rpc_method_handler( + servicer.SetSome, + request_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigSetSomeRequest.FromString, + response_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigSetSomeResponse.SerializeToString, + ), + 'Delete': grpc.unary_unary_rpc_method_handler( + servicer.Delete, + request_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigDeleteRequest.FromString, + response_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigDeleteResponse.SerializeToString, + ), + 'DeleteSome': grpc.unary_stream_rpc_method_handler( + servicer.DeleteSome, + request_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigDeleteSomeRequest.FromString, + response_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigDeleteSomeResponse.SerializeToString, + ), + 'DeleteAll': grpc.unary_stream_rpc_method_handler( + servicer.DeleteAll, + request_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigDeleteAllRequest.FromString, + response_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigDeleteAllResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.event.v1.EventAnnotationConfigService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class EventAnnotationConfigService(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.event.v1.EventAnnotationConfigService/GetOne', + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigRequest.SerializeToString, + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.event.v1.EventAnnotationConfigService/GetSome', + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigSomeRequest.SerializeToString, + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.event.v1.EventAnnotationConfigService/GetAll', + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigStreamRequest.SerializeToString, + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.event.v1.EventAnnotationConfigService/Subscribe', + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigStreamRequest.SerializeToString, + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.event.v1.EventAnnotationConfigService/GetMeta', + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigStreamRequest.SerializeToString, + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.event.v1.EventAnnotationConfigService/SubscribeMeta', + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigStreamRequest.SerializeToString, + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.event.v1.EventAnnotationConfigService/Set', + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigSetRequest.SerializeToString, + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigSetResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.event.v1.EventAnnotationConfigService/SetSome', + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigSetSomeRequest.SerializeToString, + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigSetSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.event.v1.EventAnnotationConfigService/Delete', + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigDeleteRequest.SerializeToString, + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigDeleteResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.event.v1.EventAnnotationConfigService/DeleteSome', + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigDeleteSomeRequest.SerializeToString, + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigDeleteSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.event.v1.EventAnnotationConfigService/DeleteAll', + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigDeleteAllRequest.SerializeToString, + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.EventAnnotationConfigDeleteAllResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class UserEventCreationConfigServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.event.v1.UserEventCreationConfigService/GetOne', + request_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigRequest.SerializeToString, + response_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.event.v1.UserEventCreationConfigService/GetSome', + request_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigSomeRequest.SerializeToString, + response_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.event.v1.UserEventCreationConfigService/GetAll', + request_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.event.v1.UserEventCreationConfigService/Subscribe', + request_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.event.v1.UserEventCreationConfigService/GetMeta', + request_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.event.v1.UserEventCreationConfigService/SubscribeMeta', + request_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.Set = channel.unary_unary( + '/arista.event.v1.UserEventCreationConfigService/Set', + request_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigSetRequest.SerializeToString, + response_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigSetResponse.FromString, + ) + self.SetSome = channel.unary_stream( + '/arista.event.v1.UserEventCreationConfigService/SetSome', + request_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigSetSomeRequest.SerializeToString, + response_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigSetSomeResponse.FromString, + ) + self.Delete = channel.unary_unary( + '/arista.event.v1.UserEventCreationConfigService/Delete', + request_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigDeleteRequest.SerializeToString, + response_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigDeleteResponse.FromString, + ) + self.DeleteSome = channel.unary_stream( + '/arista.event.v1.UserEventCreationConfigService/DeleteSome', + request_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigDeleteSomeRequest.SerializeToString, + response_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigDeleteSomeResponse.FromString, + ) + self.DeleteAll = channel.unary_stream( + '/arista.event.v1.UserEventCreationConfigService/DeleteAll', + request_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigDeleteAllRequest.SerializeToString, + response_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigDeleteAllResponse.FromString, + )
+ + + +
+[docs] +class UserEventCreationConfigServiceServicer(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 GetMeta(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 SubscribeMeta(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 add_UserEventCreationConfigServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigRequest.FromString, + response_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigSomeRequest.FromString, + response_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigStreamRequest.FromString, + response_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigStreamRequest.FromString, + response_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigStreamRequest.FromString, + response_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigStreamRequest.FromString, + response_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'Set': grpc.unary_unary_rpc_method_handler( + servicer.Set, + request_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigSetRequest.FromString, + response_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigSetResponse.SerializeToString, + ), + 'SetSome': grpc.unary_stream_rpc_method_handler( + servicer.SetSome, + request_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigSetSomeRequest.FromString, + response_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigSetSomeResponse.SerializeToString, + ), + 'Delete': grpc.unary_unary_rpc_method_handler( + servicer.Delete, + request_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigDeleteRequest.FromString, + response_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigDeleteResponse.SerializeToString, + ), + 'DeleteSome': grpc.unary_stream_rpc_method_handler( + servicer.DeleteSome, + request_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigDeleteSomeRequest.FromString, + response_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigDeleteSomeResponse.SerializeToString, + ), + 'DeleteAll': grpc.unary_stream_rpc_method_handler( + servicer.DeleteAll, + request_deserializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigDeleteAllRequest.FromString, + response_serializer=arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigDeleteAllResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.event.v1.UserEventCreationConfigService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class UserEventCreationConfigService(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.event.v1.UserEventCreationConfigService/GetOne', + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigRequest.SerializeToString, + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.event.v1.UserEventCreationConfigService/GetSome', + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigSomeRequest.SerializeToString, + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.event.v1.UserEventCreationConfigService/GetAll', + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigStreamRequest.SerializeToString, + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.event.v1.UserEventCreationConfigService/Subscribe', + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigStreamRequest.SerializeToString, + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.event.v1.UserEventCreationConfigService/GetMeta', + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigStreamRequest.SerializeToString, + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.event.v1.UserEventCreationConfigService/SubscribeMeta', + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigStreamRequest.SerializeToString, + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.event.v1.UserEventCreationConfigService/Set', + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigSetRequest.SerializeToString, + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigSetResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.event.v1.UserEventCreationConfigService/SetSome', + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigSetSomeRequest.SerializeToString, + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigSetSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.event.v1.UserEventCreationConfigService/Delete', + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigDeleteRequest.SerializeToString, + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigDeleteResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.event.v1.UserEventCreationConfigService/DeleteSome', + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigDeleteSomeRequest.SerializeToString, + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigDeleteSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.event.v1.UserEventCreationConfigService/DeleteAll', + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigDeleteAllRequest.SerializeToString, + arista_dot_event_dot_v1_dot_services_dot_gen__pb2.UserEventCreationConfigDeleteAllResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_modules/arista/identityprovider/v1/services/gen_pb2_grpc.html b/_modules/arista/identityprovider/v1/services/gen_pb2_grpc.html new file mode 100644 index 00000000..80ee46dd --- /dev/null +++ b/_modules/arista/identityprovider/v1/services/gen_pb2_grpc.html @@ -0,0 +1,1200 @@ + + + + + + + + arista.identityprovider.v1.services.gen_pb2_grpc — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+
    +
  • + + +
  • +
  • +
+
+
+
+
+ +

Source code for arista.identityprovider.v1.services.gen_pb2_grpc

+# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
+"""Client and server classes corresponding to protobuf-defined services."""
+import grpc
+
+from arista.identityprovider.v1.services import gen_pb2 as arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2
+
+
+
+[docs] +class OAuthConfigServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.identityprovider.v1.OAuthConfigService/GetOne', + request_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigRequest.SerializeToString, + response_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.identityprovider.v1.OAuthConfigService/GetSome', + request_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigSomeRequest.SerializeToString, + response_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.identityprovider.v1.OAuthConfigService/GetAll', + request_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.identityprovider.v1.OAuthConfigService/Subscribe', + request_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.identityprovider.v1.OAuthConfigService/GetMeta', + request_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.identityprovider.v1.OAuthConfigService/SubscribeMeta', + request_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.Set = channel.unary_unary( + '/arista.identityprovider.v1.OAuthConfigService/Set', + request_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigSetRequest.SerializeToString, + response_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigSetResponse.FromString, + ) + self.SetSome = channel.unary_stream( + '/arista.identityprovider.v1.OAuthConfigService/SetSome', + request_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigSetSomeRequest.SerializeToString, + response_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigSetSomeResponse.FromString, + ) + self.Delete = channel.unary_unary( + '/arista.identityprovider.v1.OAuthConfigService/Delete', + request_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigDeleteRequest.SerializeToString, + response_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigDeleteResponse.FromString, + ) + self.DeleteSome = channel.unary_stream( + '/arista.identityprovider.v1.OAuthConfigService/DeleteSome', + request_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigDeleteSomeRequest.SerializeToString, + response_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigDeleteSomeResponse.FromString, + ) + self.DeleteAll = channel.unary_stream( + '/arista.identityprovider.v1.OAuthConfigService/DeleteAll', + request_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigDeleteAllRequest.SerializeToString, + response_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigDeleteAllResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.identityprovider.v1.OAuthConfigService/GetAllBatched', + request_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.identityprovider.v1.OAuthConfigService/SubscribeBatched', + request_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class OAuthConfigServiceServicer(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 GetMeta(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 SubscribeMeta(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_OAuthConfigServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigRequest.FromString, + response_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigSomeRequest.FromString, + response_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigStreamRequest.FromString, + response_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigStreamRequest.FromString, + response_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigStreamRequest.FromString, + response_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigStreamRequest.FromString, + response_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'Set': grpc.unary_unary_rpc_method_handler( + servicer.Set, + request_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigSetRequest.FromString, + response_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigSetResponse.SerializeToString, + ), + 'SetSome': grpc.unary_stream_rpc_method_handler( + servicer.SetSome, + request_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigSetSomeRequest.FromString, + response_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigSetSomeResponse.SerializeToString, + ), + 'Delete': grpc.unary_unary_rpc_method_handler( + servicer.Delete, + request_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigDeleteRequest.FromString, + response_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigDeleteResponse.SerializeToString, + ), + 'DeleteSome': grpc.unary_stream_rpc_method_handler( + servicer.DeleteSome, + request_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigDeleteSomeRequest.FromString, + response_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigDeleteSomeResponse.SerializeToString, + ), + 'DeleteAll': grpc.unary_stream_rpc_method_handler( + servicer.DeleteAll, + request_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigDeleteAllRequest.FromString, + response_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigDeleteAllResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigBatchedStreamRequest.FromString, + response_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigBatchedStreamRequest.FromString, + response_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.identityprovider.v1.OAuthConfigService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class OAuthConfigService(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.identityprovider.v1.OAuthConfigService/GetOne', + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigRequest.SerializeToString, + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.identityprovider.v1.OAuthConfigService/GetSome', + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigSomeRequest.SerializeToString, + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.identityprovider.v1.OAuthConfigService/GetAll', + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigStreamRequest.SerializeToString, + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.identityprovider.v1.OAuthConfigService/Subscribe', + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigStreamRequest.SerializeToString, + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.identityprovider.v1.OAuthConfigService/GetMeta', + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigStreamRequest.SerializeToString, + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.identityprovider.v1.OAuthConfigService/SubscribeMeta', + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigStreamRequest.SerializeToString, + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.identityprovider.v1.OAuthConfigService/Set', + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigSetRequest.SerializeToString, + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigSetResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.identityprovider.v1.OAuthConfigService/SetSome', + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigSetSomeRequest.SerializeToString, + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigSetSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.identityprovider.v1.OAuthConfigService/Delete', + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigDeleteRequest.SerializeToString, + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigDeleteResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.identityprovider.v1.OAuthConfigService/DeleteSome', + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigDeleteSomeRequest.SerializeToString, + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigDeleteSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.identityprovider.v1.OAuthConfigService/DeleteAll', + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigDeleteAllRequest.SerializeToString, + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigDeleteAllResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.identityprovider.v1.OAuthConfigService/GetAllBatched', + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigBatchedStreamRequest.SerializeToString, + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.identityprovider.v1.OAuthConfigService/SubscribeBatched', + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigBatchedStreamRequest.SerializeToString, + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.OAuthConfigBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class SAMLConfigServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.identityprovider.v1.SAMLConfigService/GetOne', + request_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigRequest.SerializeToString, + response_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.identityprovider.v1.SAMLConfigService/GetSome', + request_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigSomeRequest.SerializeToString, + response_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.identityprovider.v1.SAMLConfigService/GetAll', + request_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.identityprovider.v1.SAMLConfigService/Subscribe', + request_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.identityprovider.v1.SAMLConfigService/GetMeta', + request_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.identityprovider.v1.SAMLConfigService/SubscribeMeta', + request_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.Set = channel.unary_unary( + '/arista.identityprovider.v1.SAMLConfigService/Set', + request_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigSetRequest.SerializeToString, + response_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigSetResponse.FromString, + ) + self.SetSome = channel.unary_stream( + '/arista.identityprovider.v1.SAMLConfigService/SetSome', + request_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigSetSomeRequest.SerializeToString, + response_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigSetSomeResponse.FromString, + ) + self.Delete = channel.unary_unary( + '/arista.identityprovider.v1.SAMLConfigService/Delete', + request_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigDeleteRequest.SerializeToString, + response_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigDeleteResponse.FromString, + ) + self.DeleteSome = channel.unary_stream( + '/arista.identityprovider.v1.SAMLConfigService/DeleteSome', + request_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigDeleteSomeRequest.SerializeToString, + response_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigDeleteSomeResponse.FromString, + ) + self.DeleteAll = channel.unary_stream( + '/arista.identityprovider.v1.SAMLConfigService/DeleteAll', + request_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigDeleteAllRequest.SerializeToString, + response_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigDeleteAllResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.identityprovider.v1.SAMLConfigService/GetAllBatched', + request_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.identityprovider.v1.SAMLConfigService/SubscribeBatched', + request_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class SAMLConfigServiceServicer(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 GetMeta(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 SubscribeMeta(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_SAMLConfigServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigRequest.FromString, + response_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigSomeRequest.FromString, + response_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigStreamRequest.FromString, + response_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigStreamRequest.FromString, + response_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigStreamRequest.FromString, + response_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigStreamRequest.FromString, + response_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'Set': grpc.unary_unary_rpc_method_handler( + servicer.Set, + request_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigSetRequest.FromString, + response_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigSetResponse.SerializeToString, + ), + 'SetSome': grpc.unary_stream_rpc_method_handler( + servicer.SetSome, + request_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigSetSomeRequest.FromString, + response_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigSetSomeResponse.SerializeToString, + ), + 'Delete': grpc.unary_unary_rpc_method_handler( + servicer.Delete, + request_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigDeleteRequest.FromString, + response_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigDeleteResponse.SerializeToString, + ), + 'DeleteSome': grpc.unary_stream_rpc_method_handler( + servicer.DeleteSome, + request_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigDeleteSomeRequest.FromString, + response_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigDeleteSomeResponse.SerializeToString, + ), + 'DeleteAll': grpc.unary_stream_rpc_method_handler( + servicer.DeleteAll, + request_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigDeleteAllRequest.FromString, + response_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigDeleteAllResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigBatchedStreamRequest.FromString, + response_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigBatchedStreamRequest.FromString, + response_serializer=arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.identityprovider.v1.SAMLConfigService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class SAMLConfigService(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.identityprovider.v1.SAMLConfigService/GetOne', + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigRequest.SerializeToString, + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.identityprovider.v1.SAMLConfigService/GetSome', + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigSomeRequest.SerializeToString, + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.identityprovider.v1.SAMLConfigService/GetAll', + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigStreamRequest.SerializeToString, + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.identityprovider.v1.SAMLConfigService/Subscribe', + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigStreamRequest.SerializeToString, + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.identityprovider.v1.SAMLConfigService/GetMeta', + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigStreamRequest.SerializeToString, + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.identityprovider.v1.SAMLConfigService/SubscribeMeta', + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigStreamRequest.SerializeToString, + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.identityprovider.v1.SAMLConfigService/Set', + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigSetRequest.SerializeToString, + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigSetResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.identityprovider.v1.SAMLConfigService/SetSome', + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigSetSomeRequest.SerializeToString, + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigSetSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.identityprovider.v1.SAMLConfigService/Delete', + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigDeleteRequest.SerializeToString, + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigDeleteResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.identityprovider.v1.SAMLConfigService/DeleteSome', + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigDeleteSomeRequest.SerializeToString, + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigDeleteSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.identityprovider.v1.SAMLConfigService/DeleteAll', + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigDeleteAllRequest.SerializeToString, + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigDeleteAllResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.identityprovider.v1.SAMLConfigService/GetAllBatched', + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigBatchedStreamRequest.SerializeToString, + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.identityprovider.v1.SAMLConfigService/SubscribeBatched', + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigBatchedStreamRequest.SerializeToString, + arista_dot_identityprovider_dot_v1_dot_services_dot_gen__pb2.SAMLConfigBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_modules/arista/imagestatus/v1/services/gen_pb2_grpc.html b/_modules/arista/imagestatus/v1/services/gen_pb2_grpc.html new file mode 100644 index 00000000..42b2a10c --- /dev/null +++ b/_modules/arista/imagestatus/v1/services/gen_pb2_grpc.html @@ -0,0 +1,458 @@ + + + + + + + + arista.imagestatus.v1.services.gen_pb2_grpc — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+
    +
  • + + +
  • +
  • +
+
+
+
+
+ +

Source code for arista.imagestatus.v1.services.gen_pb2_grpc

+# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
+"""Client and server classes corresponding to protobuf-defined services."""
+import grpc
+
+from arista.imagestatus.v1.services import gen_pb2 as arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2
+
+
+
+[docs] +class SummaryServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.imagestatus.v1.SummaryService/GetOne', + request_serializer=arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.SummaryRequest.SerializeToString, + response_deserializer=arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.SummaryResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.imagestatus.v1.SummaryService/GetSome', + request_serializer=arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.SummarySomeRequest.SerializeToString, + response_deserializer=arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.SummarySomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.imagestatus.v1.SummaryService/GetAll', + request_serializer=arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.SummaryStreamRequest.SerializeToString, + response_deserializer=arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.SummaryStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.imagestatus.v1.SummaryService/Subscribe', + request_serializer=arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.SummaryStreamRequest.SerializeToString, + response_deserializer=arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.SummaryStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.imagestatus.v1.SummaryService/GetMeta', + request_serializer=arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.SummaryStreamRequest.SerializeToString, + response_deserializer=arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.imagestatus.v1.SummaryService/SubscribeMeta', + request_serializer=arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.SummaryStreamRequest.SerializeToString, + response_deserializer=arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.imagestatus.v1.SummaryService/GetAllBatched', + request_serializer=arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.SummaryBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.SummaryBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.imagestatus.v1.SummaryService/SubscribeBatched', + request_serializer=arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.SummaryBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.SummaryBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class SummaryServiceServicer(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 GetMeta(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 SubscribeMeta(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_SummaryServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.SummaryRequest.FromString, + response_serializer=arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.SummaryResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.SummarySomeRequest.FromString, + response_serializer=arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.SummarySomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.SummaryStreamRequest.FromString, + response_serializer=arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.SummaryStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.SummaryStreamRequest.FromString, + response_serializer=arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.SummaryStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.SummaryStreamRequest.FromString, + response_serializer=arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.SummaryStreamRequest.FromString, + response_serializer=arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.SummaryBatchedStreamRequest.FromString, + response_serializer=arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.SummaryBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.SummaryBatchedStreamRequest.FromString, + response_serializer=arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.SummaryBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.imagestatus.v1.SummaryService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class SummaryService(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.imagestatus.v1.SummaryService/GetOne', + arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.SummaryRequest.SerializeToString, + arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.SummaryResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.imagestatus.v1.SummaryService/GetSome', + arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.SummarySomeRequest.SerializeToString, + arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.SummarySomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.imagestatus.v1.SummaryService/GetAll', + arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.SummaryStreamRequest.SerializeToString, + arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.SummaryStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.imagestatus.v1.SummaryService/Subscribe', + arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.SummaryStreamRequest.SerializeToString, + arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.SummaryStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.imagestatus.v1.SummaryService/GetMeta', + arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.SummaryStreamRequest.SerializeToString, + arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.imagestatus.v1.SummaryService/SubscribeMeta', + arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.SummaryStreamRequest.SerializeToString, + arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.imagestatus.v1.SummaryService/GetAllBatched', + arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.SummaryBatchedStreamRequest.SerializeToString, + arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.SummaryBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.imagestatus.v1.SummaryService/SubscribeBatched', + arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.SummaryBatchedStreamRequest.SerializeToString, + arista_dot_imagestatus_dot_v1_dot_services_dot_gen__pb2.SummaryBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_modules/arista/inventory/v1/services/gen_pb2_grpc.html b/_modules/arista/inventory/v1/services/gen_pb2_grpc.html new file mode 100644 index 00000000..0fd2e108 --- /dev/null +++ b/_modules/arista/inventory/v1/services/gen_pb2_grpc.html @@ -0,0 +1,2608 @@ + + + + + + + + arista.inventory.v1.services.gen_pb2_grpc — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+
    +
  • + + +
  • +
  • +
+
+
+
+
+ +

Source code for arista.inventory.v1.services.gen_pb2_grpc

+# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
+"""Client and server classes corresponding to protobuf-defined services."""
+import grpc
+
+from arista.inventory.v1.services import gen_pb2 as arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2
+
+
+
+[docs] +class DeviceServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.inventory.v1.DeviceService/GetOne', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.inventory.v1.DeviceService/GetSome', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceSomeRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.inventory.v1.DeviceService/GetAll', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceStreamRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.inventory.v1.DeviceService/Subscribe', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceStreamRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.inventory.v1.DeviceService/GetMeta', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceStreamRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.inventory.v1.DeviceService/SubscribeMeta', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceStreamRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.inventory.v1.DeviceService/GetAllBatched', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.inventory.v1.DeviceService/SubscribeBatched', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class DeviceServiceServicer(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 GetMeta(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 SubscribeMeta(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_DeviceServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceSomeRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceStreamRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceStreamRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceStreamRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceStreamRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceBatchedStreamRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceBatchedStreamRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.inventory.v1.DeviceService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class DeviceService(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.inventory.v1.DeviceService/GetOne', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.inventory.v1.DeviceService/GetSome', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceSomeRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.inventory.v1.DeviceService/GetAll', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceStreamRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.inventory.v1.DeviceService/Subscribe', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceStreamRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.inventory.v1.DeviceService/GetMeta', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceStreamRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.inventory.v1.DeviceService/SubscribeMeta', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceStreamRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.inventory.v1.DeviceService/GetAllBatched', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceBatchedStreamRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.inventory.v1.DeviceService/SubscribeBatched', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceBatchedStreamRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class DeviceDecommissioningServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.inventory.v1.DeviceDecommissioningService/GetOne', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.inventory.v1.DeviceDecommissioningService/GetSome', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningSomeRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.inventory.v1.DeviceDecommissioningService/GetAll', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningStreamRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.inventory.v1.DeviceDecommissioningService/Subscribe', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningStreamRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.inventory.v1.DeviceDecommissioningService/GetMeta', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningStreamRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.inventory.v1.DeviceDecommissioningService/SubscribeMeta', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningStreamRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.inventory.v1.DeviceDecommissioningService/GetAllBatched', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.inventory.v1.DeviceDecommissioningService/SubscribeBatched', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class DeviceDecommissioningServiceServicer(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 GetMeta(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 SubscribeMeta(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_DeviceDecommissioningServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningSomeRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningStreamRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningStreamRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningStreamRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningStreamRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningBatchedStreamRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningBatchedStreamRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.inventory.v1.DeviceDecommissioningService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class DeviceDecommissioningService(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.inventory.v1.DeviceDecommissioningService/GetOne', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.inventory.v1.DeviceDecommissioningService/GetSome', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningSomeRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.inventory.v1.DeviceDecommissioningService/GetAll', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningStreamRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.inventory.v1.DeviceDecommissioningService/Subscribe', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningStreamRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.inventory.v1.DeviceDecommissioningService/GetMeta', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningStreamRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.inventory.v1.DeviceDecommissioningService/SubscribeMeta', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningStreamRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.inventory.v1.DeviceDecommissioningService/GetAllBatched', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningBatchedStreamRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.inventory.v1.DeviceDecommissioningService/SubscribeBatched', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningBatchedStreamRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class DeviceDecommissioningConfigServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.inventory.v1.DeviceDecommissioningConfigService/GetOne', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.inventory.v1.DeviceDecommissioningConfigService/GetSome', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigSomeRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.inventory.v1.DeviceDecommissioningConfigService/GetAll', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.inventory.v1.DeviceDecommissioningConfigService/Subscribe', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.inventory.v1.DeviceDecommissioningConfigService/GetMeta', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.inventory.v1.DeviceDecommissioningConfigService/SubscribeMeta', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.Set = channel.unary_unary( + '/arista.inventory.v1.DeviceDecommissioningConfigService/Set', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigSetRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigSetResponse.FromString, + ) + self.SetSome = channel.unary_stream( + '/arista.inventory.v1.DeviceDecommissioningConfigService/SetSome', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigSetSomeRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigSetSomeResponse.FromString, + ) + self.Delete = channel.unary_unary( + '/arista.inventory.v1.DeviceDecommissioningConfigService/Delete', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigDeleteRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigDeleteResponse.FromString, + ) + self.DeleteSome = channel.unary_stream( + '/arista.inventory.v1.DeviceDecommissioningConfigService/DeleteSome', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigDeleteSomeRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigDeleteSomeResponse.FromString, + ) + self.DeleteAll = channel.unary_stream( + '/arista.inventory.v1.DeviceDecommissioningConfigService/DeleteAll', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigDeleteAllRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigDeleteAllResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.inventory.v1.DeviceDecommissioningConfigService/GetAllBatched', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.inventory.v1.DeviceDecommissioningConfigService/SubscribeBatched', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class DeviceDecommissioningConfigServiceServicer(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 GetMeta(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 SubscribeMeta(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_DeviceDecommissioningConfigServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigSomeRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigStreamRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigStreamRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigStreamRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigStreamRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'Set': grpc.unary_unary_rpc_method_handler( + servicer.Set, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigSetRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigSetResponse.SerializeToString, + ), + 'SetSome': grpc.unary_stream_rpc_method_handler( + servicer.SetSome, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigSetSomeRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigSetSomeResponse.SerializeToString, + ), + 'Delete': grpc.unary_unary_rpc_method_handler( + servicer.Delete, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigDeleteRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigDeleteResponse.SerializeToString, + ), + 'DeleteSome': grpc.unary_stream_rpc_method_handler( + servicer.DeleteSome, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigDeleteSomeRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigDeleteSomeResponse.SerializeToString, + ), + 'DeleteAll': grpc.unary_stream_rpc_method_handler( + servicer.DeleteAll, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigDeleteAllRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigDeleteAllResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigBatchedStreamRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigBatchedStreamRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.inventory.v1.DeviceDecommissioningConfigService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class DeviceDecommissioningConfigService(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.inventory.v1.DeviceDecommissioningConfigService/GetOne', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.inventory.v1.DeviceDecommissioningConfigService/GetSome', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigSomeRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.inventory.v1.DeviceDecommissioningConfigService/GetAll', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigStreamRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.inventory.v1.DeviceDecommissioningConfigService/Subscribe', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigStreamRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.inventory.v1.DeviceDecommissioningConfigService/GetMeta', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigStreamRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.inventory.v1.DeviceDecommissioningConfigService/SubscribeMeta', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigStreamRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.inventory.v1.DeviceDecommissioningConfigService/Set', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigSetRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigSetResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.inventory.v1.DeviceDecommissioningConfigService/SetSome', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigSetSomeRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigSetSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.inventory.v1.DeviceDecommissioningConfigService/Delete', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigDeleteRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigDeleteResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.inventory.v1.DeviceDecommissioningConfigService/DeleteSome', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigDeleteSomeRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigDeleteSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.inventory.v1.DeviceDecommissioningConfigService/DeleteAll', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigDeleteAllRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigDeleteAllResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.inventory.v1.DeviceDecommissioningConfigService/GetAllBatched', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigBatchedStreamRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.inventory.v1.DeviceDecommissioningConfigService/SubscribeBatched', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigBatchedStreamRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceDecommissioningConfigBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class DeviceOnboardingServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.inventory.v1.DeviceOnboardingService/GetOne', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.inventory.v1.DeviceOnboardingService/GetSome', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingSomeRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.inventory.v1.DeviceOnboardingService/GetAll', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingStreamRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.inventory.v1.DeviceOnboardingService/Subscribe', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingStreamRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.inventory.v1.DeviceOnboardingService/GetMeta', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingStreamRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.inventory.v1.DeviceOnboardingService/SubscribeMeta', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingStreamRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.inventory.v1.DeviceOnboardingService/GetAllBatched', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.inventory.v1.DeviceOnboardingService/SubscribeBatched', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class DeviceOnboardingServiceServicer(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 GetMeta(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 SubscribeMeta(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_DeviceOnboardingServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingSomeRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingStreamRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingStreamRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingStreamRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingStreamRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingBatchedStreamRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingBatchedStreamRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.inventory.v1.DeviceOnboardingService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class DeviceOnboardingService(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.inventory.v1.DeviceOnboardingService/GetOne', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.inventory.v1.DeviceOnboardingService/GetSome', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingSomeRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.inventory.v1.DeviceOnboardingService/GetAll', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingStreamRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.inventory.v1.DeviceOnboardingService/Subscribe', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingStreamRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.inventory.v1.DeviceOnboardingService/GetMeta', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingStreamRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.inventory.v1.DeviceOnboardingService/SubscribeMeta', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingStreamRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.inventory.v1.DeviceOnboardingService/GetAllBatched', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingBatchedStreamRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.inventory.v1.DeviceOnboardingService/SubscribeBatched', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingBatchedStreamRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class DeviceOnboardingConfigServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.inventory.v1.DeviceOnboardingConfigService/GetOne', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.inventory.v1.DeviceOnboardingConfigService/GetSome', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigSomeRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.inventory.v1.DeviceOnboardingConfigService/GetAll', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.inventory.v1.DeviceOnboardingConfigService/Subscribe', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.inventory.v1.DeviceOnboardingConfigService/GetMeta', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.inventory.v1.DeviceOnboardingConfigService/SubscribeMeta', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.Set = channel.unary_unary( + '/arista.inventory.v1.DeviceOnboardingConfigService/Set', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigSetRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigSetResponse.FromString, + ) + self.SetSome = channel.unary_stream( + '/arista.inventory.v1.DeviceOnboardingConfigService/SetSome', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigSetSomeRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigSetSomeResponse.FromString, + ) + self.Delete = channel.unary_unary( + '/arista.inventory.v1.DeviceOnboardingConfigService/Delete', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigDeleteRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigDeleteResponse.FromString, + ) + self.DeleteSome = channel.unary_stream( + '/arista.inventory.v1.DeviceOnboardingConfigService/DeleteSome', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigDeleteSomeRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigDeleteSomeResponse.FromString, + ) + self.DeleteAll = channel.unary_stream( + '/arista.inventory.v1.DeviceOnboardingConfigService/DeleteAll', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigDeleteAllRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigDeleteAllResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.inventory.v1.DeviceOnboardingConfigService/GetAllBatched', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.inventory.v1.DeviceOnboardingConfigService/SubscribeBatched', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class DeviceOnboardingConfigServiceServicer(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 GetMeta(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 SubscribeMeta(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_DeviceOnboardingConfigServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigSomeRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigStreamRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigStreamRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigStreamRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigStreamRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'Set': grpc.unary_unary_rpc_method_handler( + servicer.Set, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigSetRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigSetResponse.SerializeToString, + ), + 'SetSome': grpc.unary_stream_rpc_method_handler( + servicer.SetSome, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigSetSomeRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigSetSomeResponse.SerializeToString, + ), + 'Delete': grpc.unary_unary_rpc_method_handler( + servicer.Delete, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigDeleteRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigDeleteResponse.SerializeToString, + ), + 'DeleteSome': grpc.unary_stream_rpc_method_handler( + servicer.DeleteSome, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigDeleteSomeRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigDeleteSomeResponse.SerializeToString, + ), + 'DeleteAll': grpc.unary_stream_rpc_method_handler( + servicer.DeleteAll, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigDeleteAllRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigDeleteAllResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigBatchedStreamRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigBatchedStreamRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.inventory.v1.DeviceOnboardingConfigService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class DeviceOnboardingConfigService(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.inventory.v1.DeviceOnboardingConfigService/GetOne', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.inventory.v1.DeviceOnboardingConfigService/GetSome', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigSomeRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.inventory.v1.DeviceOnboardingConfigService/GetAll', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigStreamRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.inventory.v1.DeviceOnboardingConfigService/Subscribe', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigStreamRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.inventory.v1.DeviceOnboardingConfigService/GetMeta', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigStreamRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.inventory.v1.DeviceOnboardingConfigService/SubscribeMeta', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigStreamRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.inventory.v1.DeviceOnboardingConfigService/Set', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigSetRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigSetResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.inventory.v1.DeviceOnboardingConfigService/SetSome', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigSetSomeRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigSetSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.inventory.v1.DeviceOnboardingConfigService/Delete', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigDeleteRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigDeleteResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.inventory.v1.DeviceOnboardingConfigService/DeleteSome', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigDeleteSomeRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigDeleteSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.inventory.v1.DeviceOnboardingConfigService/DeleteAll', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigDeleteAllRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigDeleteAllResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.inventory.v1.DeviceOnboardingConfigService/GetAllBatched', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigBatchedStreamRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.inventory.v1.DeviceOnboardingConfigService/SubscribeBatched', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigBatchedStreamRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.DeviceOnboardingConfigBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class ProvisionedDeviceServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.inventory.v1.ProvisionedDeviceService/GetOne', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.ProvisionedDeviceRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.ProvisionedDeviceResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.inventory.v1.ProvisionedDeviceService/GetSome', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.ProvisionedDeviceSomeRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.ProvisionedDeviceSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.inventory.v1.ProvisionedDeviceService/GetAll', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.ProvisionedDeviceStreamRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.ProvisionedDeviceStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.inventory.v1.ProvisionedDeviceService/Subscribe', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.ProvisionedDeviceStreamRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.ProvisionedDeviceStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.inventory.v1.ProvisionedDeviceService/GetMeta', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.ProvisionedDeviceStreamRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.inventory.v1.ProvisionedDeviceService/SubscribeMeta', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.ProvisionedDeviceStreamRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.inventory.v1.ProvisionedDeviceService/GetAllBatched', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.ProvisionedDeviceBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.ProvisionedDeviceBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.inventory.v1.ProvisionedDeviceService/SubscribeBatched', + request_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.ProvisionedDeviceBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.ProvisionedDeviceBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class ProvisionedDeviceServiceServicer(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 GetMeta(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 SubscribeMeta(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_ProvisionedDeviceServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.ProvisionedDeviceRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.ProvisionedDeviceResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.ProvisionedDeviceSomeRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.ProvisionedDeviceSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.ProvisionedDeviceStreamRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.ProvisionedDeviceStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.ProvisionedDeviceStreamRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.ProvisionedDeviceStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.ProvisionedDeviceStreamRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.ProvisionedDeviceStreamRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.ProvisionedDeviceBatchedStreamRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.ProvisionedDeviceBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.ProvisionedDeviceBatchedStreamRequest.FromString, + response_serializer=arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.ProvisionedDeviceBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.inventory.v1.ProvisionedDeviceService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class ProvisionedDeviceService(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.inventory.v1.ProvisionedDeviceService/GetOne', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.ProvisionedDeviceRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.ProvisionedDeviceResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.inventory.v1.ProvisionedDeviceService/GetSome', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.ProvisionedDeviceSomeRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.ProvisionedDeviceSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.inventory.v1.ProvisionedDeviceService/GetAll', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.ProvisionedDeviceStreamRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.ProvisionedDeviceStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.inventory.v1.ProvisionedDeviceService/Subscribe', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.ProvisionedDeviceStreamRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.ProvisionedDeviceStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.inventory.v1.ProvisionedDeviceService/GetMeta', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.ProvisionedDeviceStreamRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.inventory.v1.ProvisionedDeviceService/SubscribeMeta', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.ProvisionedDeviceStreamRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.inventory.v1.ProvisionedDeviceService/GetAllBatched', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.ProvisionedDeviceBatchedStreamRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.ProvisionedDeviceBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.inventory.v1.ProvisionedDeviceService/SubscribeBatched', + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.ProvisionedDeviceBatchedStreamRequest.SerializeToString, + arista_dot_inventory_dot_v1_dot_services_dot_gen__pb2.ProvisionedDeviceBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_modules/arista/lifecycle/v1/services/gen_pb2_grpc.html b/_modules/arista/lifecycle/v1/services/gen_pb2_grpc.html new file mode 100644 index 00000000..1f71309f --- /dev/null +++ b/_modules/arista/lifecycle/v1/services/gen_pb2_grpc.html @@ -0,0 +1,341 @@ + + + + + + + + arista.lifecycle.v1.services.gen_pb2_grpc — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+
    +
  • + + +
  • +
  • +
+
+
+
+
+ +

Source code for arista.lifecycle.v1.services.gen_pb2_grpc

+# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
+"""Client and server classes corresponding to protobuf-defined services."""
+import grpc
+
+from arista.lifecycle.v1.services import gen_pb2 as arista_dot_lifecycle_dot_v1_dot_services_dot_gen__pb2
+
+
+
+[docs] +class DeviceLifecycleSummaryServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.lifecycle.v1.DeviceLifecycleSummaryService/GetOne', + request_serializer=arista_dot_lifecycle_dot_v1_dot_services_dot_gen__pb2.DeviceLifecycleSummaryRequest.SerializeToString, + response_deserializer=arista_dot_lifecycle_dot_v1_dot_services_dot_gen__pb2.DeviceLifecycleSummaryResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.lifecycle.v1.DeviceLifecycleSummaryService/GetAll', + request_serializer=arista_dot_lifecycle_dot_v1_dot_services_dot_gen__pb2.DeviceLifecycleSummaryStreamRequest.SerializeToString, + response_deserializer=arista_dot_lifecycle_dot_v1_dot_services_dot_gen__pb2.DeviceLifecycleSummaryStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.lifecycle.v1.DeviceLifecycleSummaryService/Subscribe', + request_serializer=arista_dot_lifecycle_dot_v1_dot_services_dot_gen__pb2.DeviceLifecycleSummaryStreamRequest.SerializeToString, + response_deserializer=arista_dot_lifecycle_dot_v1_dot_services_dot_gen__pb2.DeviceLifecycleSummaryStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.lifecycle.v1.DeviceLifecycleSummaryService/GetMeta', + request_serializer=arista_dot_lifecycle_dot_v1_dot_services_dot_gen__pb2.DeviceLifecycleSummaryStreamRequest.SerializeToString, + response_deserializer=arista_dot_lifecycle_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.lifecycle.v1.DeviceLifecycleSummaryService/SubscribeMeta', + request_serializer=arista_dot_lifecycle_dot_v1_dot_services_dot_gen__pb2.DeviceLifecycleSummaryStreamRequest.SerializeToString, + response_deserializer=arista_dot_lifecycle_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + )
+ + + +
+[docs] +class DeviceLifecycleSummaryServiceServicer(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 GetMeta(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 SubscribeMeta(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_DeviceLifecycleSummaryServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_lifecycle_dot_v1_dot_services_dot_gen__pb2.DeviceLifecycleSummaryRequest.FromString, + response_serializer=arista_dot_lifecycle_dot_v1_dot_services_dot_gen__pb2.DeviceLifecycleSummaryResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_lifecycle_dot_v1_dot_services_dot_gen__pb2.DeviceLifecycleSummaryStreamRequest.FromString, + response_serializer=arista_dot_lifecycle_dot_v1_dot_services_dot_gen__pb2.DeviceLifecycleSummaryStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_lifecycle_dot_v1_dot_services_dot_gen__pb2.DeviceLifecycleSummaryStreamRequest.FromString, + response_serializer=arista_dot_lifecycle_dot_v1_dot_services_dot_gen__pb2.DeviceLifecycleSummaryStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_lifecycle_dot_v1_dot_services_dot_gen__pb2.DeviceLifecycleSummaryStreamRequest.FromString, + response_serializer=arista_dot_lifecycle_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_lifecycle_dot_v1_dot_services_dot_gen__pb2.DeviceLifecycleSummaryStreamRequest.FromString, + response_serializer=arista_dot_lifecycle_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.lifecycle.v1.DeviceLifecycleSummaryService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class DeviceLifecycleSummaryService(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.lifecycle.v1.DeviceLifecycleSummaryService/GetOne', + arista_dot_lifecycle_dot_v1_dot_services_dot_gen__pb2.DeviceLifecycleSummaryRequest.SerializeToString, + arista_dot_lifecycle_dot_v1_dot_services_dot_gen__pb2.DeviceLifecycleSummaryResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.lifecycle.v1.DeviceLifecycleSummaryService/GetAll', + arista_dot_lifecycle_dot_v1_dot_services_dot_gen__pb2.DeviceLifecycleSummaryStreamRequest.SerializeToString, + arista_dot_lifecycle_dot_v1_dot_services_dot_gen__pb2.DeviceLifecycleSummaryStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.lifecycle.v1.DeviceLifecycleSummaryService/Subscribe', + arista_dot_lifecycle_dot_v1_dot_services_dot_gen__pb2.DeviceLifecycleSummaryStreamRequest.SerializeToString, + arista_dot_lifecycle_dot_v1_dot_services_dot_gen__pb2.DeviceLifecycleSummaryStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.lifecycle.v1.DeviceLifecycleSummaryService/GetMeta', + arista_dot_lifecycle_dot_v1_dot_services_dot_gen__pb2.DeviceLifecycleSummaryStreamRequest.SerializeToString, + arista_dot_lifecycle_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.lifecycle.v1.DeviceLifecycleSummaryService/SubscribeMeta', + arista_dot_lifecycle_dot_v1_dot_services_dot_gen__pb2.DeviceLifecycleSummaryStreamRequest.SerializeToString, + arista_dot_lifecycle_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_modules/arista/redirector/v1/services/gen_pb2_grpc.html b/_modules/arista/redirector/v1/services/gen_pb2_grpc.html new file mode 100644 index 00000000..90ad14a5 --- /dev/null +++ b/_modules/arista/redirector/v1/services/gen_pb2_grpc.html @@ -0,0 +1,458 @@ + + + + + + + + arista.redirector.v1.services.gen_pb2_grpc — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+
    +
  • + + +
  • +
  • +
+
+
+
+
+ +

Source code for arista.redirector.v1.services.gen_pb2_grpc

+# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
+"""Client and server classes corresponding to protobuf-defined services."""
+import grpc
+
+from arista.redirector.v1.services import gen_pb2 as arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2
+
+
+
+[docs] +class AssignmentServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.redirector.v1.AssignmentService/GetOne', + request_serializer=arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.AssignmentRequest.SerializeToString, + response_deserializer=arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.AssignmentResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.redirector.v1.AssignmentService/GetSome', + request_serializer=arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.AssignmentSomeRequest.SerializeToString, + response_deserializer=arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.AssignmentSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.redirector.v1.AssignmentService/GetAll', + request_serializer=arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.AssignmentStreamRequest.SerializeToString, + response_deserializer=arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.AssignmentStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.redirector.v1.AssignmentService/Subscribe', + request_serializer=arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.AssignmentStreamRequest.SerializeToString, + response_deserializer=arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.AssignmentStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.redirector.v1.AssignmentService/GetMeta', + request_serializer=arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.AssignmentStreamRequest.SerializeToString, + response_deserializer=arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.redirector.v1.AssignmentService/SubscribeMeta', + request_serializer=arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.AssignmentStreamRequest.SerializeToString, + response_deserializer=arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.redirector.v1.AssignmentService/GetAllBatched', + request_serializer=arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.AssignmentBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.AssignmentBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.redirector.v1.AssignmentService/SubscribeBatched', + request_serializer=arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.AssignmentBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.AssignmentBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class AssignmentServiceServicer(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 GetMeta(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 SubscribeMeta(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_AssignmentServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.AssignmentRequest.FromString, + response_serializer=arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.AssignmentResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.AssignmentSomeRequest.FromString, + response_serializer=arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.AssignmentSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.AssignmentStreamRequest.FromString, + response_serializer=arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.AssignmentStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.AssignmentStreamRequest.FromString, + response_serializer=arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.AssignmentStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.AssignmentStreamRequest.FromString, + response_serializer=arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.AssignmentStreamRequest.FromString, + response_serializer=arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.AssignmentBatchedStreamRequest.FromString, + response_serializer=arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.AssignmentBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.AssignmentBatchedStreamRequest.FromString, + response_serializer=arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.AssignmentBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.redirector.v1.AssignmentService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class AssignmentService(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.redirector.v1.AssignmentService/GetOne', + arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.AssignmentRequest.SerializeToString, + arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.AssignmentResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.redirector.v1.AssignmentService/GetSome', + arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.AssignmentSomeRequest.SerializeToString, + arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.AssignmentSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.redirector.v1.AssignmentService/GetAll', + arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.AssignmentStreamRequest.SerializeToString, + arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.AssignmentStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.redirector.v1.AssignmentService/Subscribe', + arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.AssignmentStreamRequest.SerializeToString, + arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.AssignmentStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.redirector.v1.AssignmentService/GetMeta', + arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.AssignmentStreamRequest.SerializeToString, + arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.redirector.v1.AssignmentService/SubscribeMeta', + arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.AssignmentStreamRequest.SerializeToString, + arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.redirector.v1.AssignmentService/GetAllBatched', + arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.AssignmentBatchedStreamRequest.SerializeToString, + arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.AssignmentBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.redirector.v1.AssignmentService/SubscribeBatched', + arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.AssignmentBatchedStreamRequest.SerializeToString, + arista_dot_redirector_dot_v1_dot_services_dot_gen__pb2.AssignmentBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_modules/arista/serviceaccount/v1/services/gen_pb2_grpc.html b/_modules/arista/serviceaccount/v1/services/gen_pb2_grpc.html new file mode 100644 index 00000000..7b602f41 --- /dev/null +++ b/_modules/arista/serviceaccount/v1/services/gen_pb2_grpc.html @@ -0,0 +1,1592 @@ + + + + + + + + arista.serviceaccount.v1.services.gen_pb2_grpc — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+
    +
  • + + +
  • +
  • +
+
+
+
+
+ +

Source code for arista.serviceaccount.v1.services.gen_pb2_grpc

+# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
+"""Client and server classes corresponding to protobuf-defined services."""
+import grpc
+
+from arista.serviceaccount.v1.services import gen_pb2 as arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2
+
+
+
+[docs] +class AccountServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.serviceaccount.v1.AccountService/GetOne', + request_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountRequest.SerializeToString, + response_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.serviceaccount.v1.AccountService/GetSome', + request_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountSomeRequest.SerializeToString, + response_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.serviceaccount.v1.AccountService/GetAll', + request_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountStreamRequest.SerializeToString, + response_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.serviceaccount.v1.AccountService/Subscribe', + request_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountStreamRequest.SerializeToString, + response_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.serviceaccount.v1.AccountService/GetMeta', + request_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountStreamRequest.SerializeToString, + response_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.serviceaccount.v1.AccountService/SubscribeMeta', + request_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountStreamRequest.SerializeToString, + response_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + )
+ + + +
+[docs] +class AccountServiceServicer(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 GetMeta(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 SubscribeMeta(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_AccountServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountRequest.FromString, + response_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountSomeRequest.FromString, + response_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountStreamRequest.FromString, + response_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountStreamRequest.FromString, + response_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountStreamRequest.FromString, + response_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountStreamRequest.FromString, + response_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.serviceaccount.v1.AccountService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class AccountService(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.serviceaccount.v1.AccountService/GetOne', + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountRequest.SerializeToString, + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.serviceaccount.v1.AccountService/GetSome', + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountSomeRequest.SerializeToString, + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.serviceaccount.v1.AccountService/GetAll', + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountStreamRequest.SerializeToString, + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.serviceaccount.v1.AccountService/Subscribe', + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountStreamRequest.SerializeToString, + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.serviceaccount.v1.AccountService/GetMeta', + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountStreamRequest.SerializeToString, + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.serviceaccount.v1.AccountService/SubscribeMeta', + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountStreamRequest.SerializeToString, + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class AccountConfigServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.serviceaccount.v1.AccountConfigService/GetOne', + request_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigRequest.SerializeToString, + response_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.serviceaccount.v1.AccountConfigService/GetSome', + request_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigSomeRequest.SerializeToString, + response_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.serviceaccount.v1.AccountConfigService/GetAll', + request_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.serviceaccount.v1.AccountConfigService/Subscribe', + request_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.serviceaccount.v1.AccountConfigService/GetMeta', + request_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.serviceaccount.v1.AccountConfigService/SubscribeMeta', + request_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.Set = channel.unary_unary( + '/arista.serviceaccount.v1.AccountConfigService/Set', + request_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigSetRequest.SerializeToString, + response_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigSetResponse.FromString, + ) + self.SetSome = channel.unary_stream( + '/arista.serviceaccount.v1.AccountConfigService/SetSome', + request_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigSetSomeRequest.SerializeToString, + response_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigSetSomeResponse.FromString, + ) + self.Delete = channel.unary_unary( + '/arista.serviceaccount.v1.AccountConfigService/Delete', + request_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigDeleteRequest.SerializeToString, + response_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigDeleteResponse.FromString, + ) + self.DeleteSome = channel.unary_stream( + '/arista.serviceaccount.v1.AccountConfigService/DeleteSome', + request_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigDeleteSomeRequest.SerializeToString, + response_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigDeleteSomeResponse.FromString, + ) + self.DeleteAll = channel.unary_stream( + '/arista.serviceaccount.v1.AccountConfigService/DeleteAll', + request_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigDeleteAllRequest.SerializeToString, + response_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigDeleteAllResponse.FromString, + )
+ + + +
+[docs] +class AccountConfigServiceServicer(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 GetMeta(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 SubscribeMeta(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 add_AccountConfigServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigRequest.FromString, + response_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigSomeRequest.FromString, + response_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigStreamRequest.FromString, + response_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigStreamRequest.FromString, + response_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigStreamRequest.FromString, + response_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigStreamRequest.FromString, + response_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'Set': grpc.unary_unary_rpc_method_handler( + servicer.Set, + request_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigSetRequest.FromString, + response_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigSetResponse.SerializeToString, + ), + 'SetSome': grpc.unary_stream_rpc_method_handler( + servicer.SetSome, + request_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigSetSomeRequest.FromString, + response_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigSetSomeResponse.SerializeToString, + ), + 'Delete': grpc.unary_unary_rpc_method_handler( + servicer.Delete, + request_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigDeleteRequest.FromString, + response_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigDeleteResponse.SerializeToString, + ), + 'DeleteSome': grpc.unary_stream_rpc_method_handler( + servicer.DeleteSome, + request_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigDeleteSomeRequest.FromString, + response_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigDeleteSomeResponse.SerializeToString, + ), + 'DeleteAll': grpc.unary_stream_rpc_method_handler( + servicer.DeleteAll, + request_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigDeleteAllRequest.FromString, + response_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigDeleteAllResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.serviceaccount.v1.AccountConfigService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class AccountConfigService(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.serviceaccount.v1.AccountConfigService/GetOne', + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigRequest.SerializeToString, + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.serviceaccount.v1.AccountConfigService/GetSome', + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigSomeRequest.SerializeToString, + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.serviceaccount.v1.AccountConfigService/GetAll', + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigStreamRequest.SerializeToString, + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.serviceaccount.v1.AccountConfigService/Subscribe', + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigStreamRequest.SerializeToString, + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.serviceaccount.v1.AccountConfigService/GetMeta', + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigStreamRequest.SerializeToString, + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.serviceaccount.v1.AccountConfigService/SubscribeMeta', + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigStreamRequest.SerializeToString, + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.serviceaccount.v1.AccountConfigService/Set', + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigSetRequest.SerializeToString, + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigSetResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.serviceaccount.v1.AccountConfigService/SetSome', + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigSetSomeRequest.SerializeToString, + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigSetSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.serviceaccount.v1.AccountConfigService/Delete', + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigDeleteRequest.SerializeToString, + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigDeleteResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.serviceaccount.v1.AccountConfigService/DeleteSome', + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigDeleteSomeRequest.SerializeToString, + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigDeleteSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.serviceaccount.v1.AccountConfigService/DeleteAll', + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigDeleteAllRequest.SerializeToString, + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.AccountConfigDeleteAllResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class TokenServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.serviceaccount.v1.TokenService/GetOne', + request_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenRequest.SerializeToString, + response_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.serviceaccount.v1.TokenService/GetSome', + request_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenSomeRequest.SerializeToString, + response_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.serviceaccount.v1.TokenService/GetAll', + request_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenStreamRequest.SerializeToString, + response_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.serviceaccount.v1.TokenService/Subscribe', + request_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenStreamRequest.SerializeToString, + response_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.serviceaccount.v1.TokenService/GetMeta', + request_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenStreamRequest.SerializeToString, + response_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.serviceaccount.v1.TokenService/SubscribeMeta', + request_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenStreamRequest.SerializeToString, + response_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + )
+ + + +
+[docs] +class TokenServiceServicer(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 GetMeta(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 SubscribeMeta(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_TokenServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenRequest.FromString, + response_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenSomeRequest.FromString, + response_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenStreamRequest.FromString, + response_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenStreamRequest.FromString, + response_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenStreamRequest.FromString, + response_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenStreamRequest.FromString, + response_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.serviceaccount.v1.TokenService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class TokenService(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.serviceaccount.v1.TokenService/GetOne', + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenRequest.SerializeToString, + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.serviceaccount.v1.TokenService/GetSome', + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenSomeRequest.SerializeToString, + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.serviceaccount.v1.TokenService/GetAll', + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenStreamRequest.SerializeToString, + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.serviceaccount.v1.TokenService/Subscribe', + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenStreamRequest.SerializeToString, + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.serviceaccount.v1.TokenService/GetMeta', + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenStreamRequest.SerializeToString, + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.serviceaccount.v1.TokenService/SubscribeMeta', + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenStreamRequest.SerializeToString, + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class TokenConfigServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.serviceaccount.v1.TokenConfigService/GetOne', + request_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigRequest.SerializeToString, + response_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.serviceaccount.v1.TokenConfigService/GetSome', + request_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigSomeRequest.SerializeToString, + response_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.serviceaccount.v1.TokenConfigService/GetAll', + request_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.serviceaccount.v1.TokenConfigService/Subscribe', + request_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.serviceaccount.v1.TokenConfigService/GetMeta', + request_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.serviceaccount.v1.TokenConfigService/SubscribeMeta', + request_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.Set = channel.unary_unary( + '/arista.serviceaccount.v1.TokenConfigService/Set', + request_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigSetRequest.SerializeToString, + response_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigSetResponse.FromString, + ) + self.SetSome = channel.unary_stream( + '/arista.serviceaccount.v1.TokenConfigService/SetSome', + request_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigSetSomeRequest.SerializeToString, + response_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigSetSomeResponse.FromString, + ) + self.Delete = channel.unary_unary( + '/arista.serviceaccount.v1.TokenConfigService/Delete', + request_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigDeleteRequest.SerializeToString, + response_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigDeleteResponse.FromString, + ) + self.DeleteSome = channel.unary_stream( + '/arista.serviceaccount.v1.TokenConfigService/DeleteSome', + request_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigDeleteSomeRequest.SerializeToString, + response_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigDeleteSomeResponse.FromString, + ) + self.DeleteAll = channel.unary_stream( + '/arista.serviceaccount.v1.TokenConfigService/DeleteAll', + request_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigDeleteAllRequest.SerializeToString, + response_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigDeleteAllResponse.FromString, + )
+ + + +
+[docs] +class TokenConfigServiceServicer(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 GetMeta(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 SubscribeMeta(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 add_TokenConfigServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigRequest.FromString, + response_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigSomeRequest.FromString, + response_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigStreamRequest.FromString, + response_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigStreamRequest.FromString, + response_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigStreamRequest.FromString, + response_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigStreamRequest.FromString, + response_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'Set': grpc.unary_unary_rpc_method_handler( + servicer.Set, + request_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigSetRequest.FromString, + response_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigSetResponse.SerializeToString, + ), + 'SetSome': grpc.unary_stream_rpc_method_handler( + servicer.SetSome, + request_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigSetSomeRequest.FromString, + response_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigSetSomeResponse.SerializeToString, + ), + 'Delete': grpc.unary_unary_rpc_method_handler( + servicer.Delete, + request_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigDeleteRequest.FromString, + response_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigDeleteResponse.SerializeToString, + ), + 'DeleteSome': grpc.unary_stream_rpc_method_handler( + servicer.DeleteSome, + request_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigDeleteSomeRequest.FromString, + response_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigDeleteSomeResponse.SerializeToString, + ), + 'DeleteAll': grpc.unary_stream_rpc_method_handler( + servicer.DeleteAll, + request_deserializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigDeleteAllRequest.FromString, + response_serializer=arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigDeleteAllResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.serviceaccount.v1.TokenConfigService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class TokenConfigService(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.serviceaccount.v1.TokenConfigService/GetOne', + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigRequest.SerializeToString, + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.serviceaccount.v1.TokenConfigService/GetSome', + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigSomeRequest.SerializeToString, + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.serviceaccount.v1.TokenConfigService/GetAll', + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigStreamRequest.SerializeToString, + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.serviceaccount.v1.TokenConfigService/Subscribe', + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigStreamRequest.SerializeToString, + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.serviceaccount.v1.TokenConfigService/GetMeta', + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigStreamRequest.SerializeToString, + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.serviceaccount.v1.TokenConfigService/SubscribeMeta', + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigStreamRequest.SerializeToString, + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.serviceaccount.v1.TokenConfigService/Set', + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigSetRequest.SerializeToString, + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigSetResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.serviceaccount.v1.TokenConfigService/SetSome', + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigSetSomeRequest.SerializeToString, + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigSetSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.serviceaccount.v1.TokenConfigService/Delete', + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigDeleteRequest.SerializeToString, + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigDeleteResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.serviceaccount.v1.TokenConfigService/DeleteSome', + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigDeleteSomeRequest.SerializeToString, + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigDeleteSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.serviceaccount.v1.TokenConfigService/DeleteAll', + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigDeleteAllRequest.SerializeToString, + arista_dot_serviceaccount_dot_v1_dot_services_dot_gen__pb2.TokenConfigDeleteAllResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_modules/arista/studio/v1/services/gen_pb2_grpc.html b/_modules/arista/studio/v1/services/gen_pb2_grpc.html new file mode 100644 index 00000000..72541554 --- /dev/null +++ b/_modules/arista/studio/v1/services/gen_pb2_grpc.html @@ -0,0 +1,4406 @@ + + + + + + + + arista.studio.v1.services.gen_pb2_grpc — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+
    +
  • + + +
  • +
  • +
+
+
+
+
+ +

Source code for arista.studio.v1.services.gen_pb2_grpc

+# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
+"""Client and server classes corresponding to protobuf-defined services."""
+import grpc
+
+from arista.studio.v1.services import gen_pb2 as arista_dot_studio_dot_v1_dot_services_dot_gen__pb2
+
+
+
+[docs] +class AssignedTagsServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.studio.v1.AssignedTagsService/GetOne', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.studio.v1.AssignedTagsService/GetSome', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsSomeRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.studio.v1.AssignedTagsService/GetAll', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.studio.v1.AssignedTagsService/Subscribe', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.studio.v1.AssignedTagsService/GetMeta', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.studio.v1.AssignedTagsService/SubscribeMeta', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.studio.v1.AssignedTagsService/GetAllBatched', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.studio.v1.AssignedTagsService/SubscribeBatched', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class AssignedTagsServiceServicer(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 GetMeta(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 SubscribeMeta(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_AssignedTagsServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsSomeRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsBatchedStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsBatchedStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.studio.v1.AssignedTagsService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class AssignedTagsService(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.studio.v1.AssignedTagsService/GetOne', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.AssignedTagsService/GetSome', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsSomeRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.AssignedTagsService/GetAll', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.AssignedTagsService/Subscribe', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.studio.v1.AssignedTagsService/GetMeta', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.studio.v1.AssignedTagsService/SubscribeMeta', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.AssignedTagsService/GetAllBatched', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsBatchedStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.AssignedTagsService/SubscribeBatched', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsBatchedStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class AssignedTagsConfigServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.studio.v1.AssignedTagsConfigService/GetOne', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.studio.v1.AssignedTagsConfigService/GetSome', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigSomeRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.studio.v1.AssignedTagsConfigService/GetAll', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.studio.v1.AssignedTagsConfigService/Subscribe', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.studio.v1.AssignedTagsConfigService/GetMeta', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.studio.v1.AssignedTagsConfigService/SubscribeMeta', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.Set = channel.unary_unary( + '/arista.studio.v1.AssignedTagsConfigService/Set', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigSetRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigSetResponse.FromString, + ) + self.SetSome = channel.unary_stream( + '/arista.studio.v1.AssignedTagsConfigService/SetSome', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigSetSomeRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigSetSomeResponse.FromString, + ) + self.Delete = channel.unary_unary( + '/arista.studio.v1.AssignedTagsConfigService/Delete', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigDeleteRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigDeleteResponse.FromString, + ) + self.DeleteSome = channel.unary_stream( + '/arista.studio.v1.AssignedTagsConfigService/DeleteSome', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigDeleteSomeRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigDeleteSomeResponse.FromString, + ) + self.DeleteAll = channel.unary_stream( + '/arista.studio.v1.AssignedTagsConfigService/DeleteAll', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigDeleteAllRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigDeleteAllResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.studio.v1.AssignedTagsConfigService/GetAllBatched', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.studio.v1.AssignedTagsConfigService/SubscribeBatched', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class AssignedTagsConfigServiceServicer(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 GetMeta(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 SubscribeMeta(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_AssignedTagsConfigServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigSomeRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'Set': grpc.unary_unary_rpc_method_handler( + servicer.Set, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigSetRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigSetResponse.SerializeToString, + ), + 'SetSome': grpc.unary_stream_rpc_method_handler( + servicer.SetSome, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigSetSomeRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigSetSomeResponse.SerializeToString, + ), + 'Delete': grpc.unary_unary_rpc_method_handler( + servicer.Delete, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigDeleteRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigDeleteResponse.SerializeToString, + ), + 'DeleteSome': grpc.unary_stream_rpc_method_handler( + servicer.DeleteSome, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigDeleteSomeRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigDeleteSomeResponse.SerializeToString, + ), + 'DeleteAll': grpc.unary_stream_rpc_method_handler( + servicer.DeleteAll, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigDeleteAllRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigDeleteAllResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigBatchedStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigBatchedStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.studio.v1.AssignedTagsConfigService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class AssignedTagsConfigService(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.studio.v1.AssignedTagsConfigService/GetOne', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.AssignedTagsConfigService/GetSome', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigSomeRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.AssignedTagsConfigService/GetAll', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.AssignedTagsConfigService/Subscribe', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.studio.v1.AssignedTagsConfigService/GetMeta', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.studio.v1.AssignedTagsConfigService/SubscribeMeta', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.AssignedTagsConfigService/Set', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigSetRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigSetResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.AssignedTagsConfigService/SetSome', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigSetSomeRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigSetSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.AssignedTagsConfigService/Delete', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigDeleteRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigDeleteResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.AssignedTagsConfigService/DeleteSome', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigDeleteSomeRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigDeleteSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.AssignedTagsConfigService/DeleteAll', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigDeleteAllRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigDeleteAllResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.AssignedTagsConfigService/GetAllBatched', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigBatchedStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.AssignedTagsConfigService/SubscribeBatched', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigBatchedStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AssignedTagsConfigBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class AutofillActionServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.studio.v1.AutofillActionService/GetOne', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.studio.v1.AutofillActionService/GetSome', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionSomeRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.studio.v1.AutofillActionService/GetAll', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.studio.v1.AutofillActionService/Subscribe', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.studio.v1.AutofillActionService/GetMeta', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.studio.v1.AutofillActionService/SubscribeMeta', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.studio.v1.AutofillActionService/GetAllBatched', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.studio.v1.AutofillActionService/SubscribeBatched', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class AutofillActionServiceServicer(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 GetMeta(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 SubscribeMeta(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_AutofillActionServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionSomeRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionBatchedStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionBatchedStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.studio.v1.AutofillActionService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class AutofillActionService(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.studio.v1.AutofillActionService/GetOne', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.AutofillActionService/GetSome', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionSomeRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.AutofillActionService/GetAll', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.AutofillActionService/Subscribe', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.studio.v1.AutofillActionService/GetMeta', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.studio.v1.AutofillActionService/SubscribeMeta', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.AutofillActionService/GetAllBatched', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionBatchedStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.AutofillActionService/SubscribeBatched', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionBatchedStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class AutofillActionConfigServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.studio.v1.AutofillActionConfigService/GetOne', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.studio.v1.AutofillActionConfigService/GetSome', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigSomeRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.studio.v1.AutofillActionConfigService/GetAll', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.studio.v1.AutofillActionConfigService/Subscribe', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.studio.v1.AutofillActionConfigService/GetMeta', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.studio.v1.AutofillActionConfigService/SubscribeMeta', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.Set = channel.unary_unary( + '/arista.studio.v1.AutofillActionConfigService/Set', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigSetRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigSetResponse.FromString, + ) + self.SetSome = channel.unary_stream( + '/arista.studio.v1.AutofillActionConfigService/SetSome', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigSetSomeRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigSetSomeResponse.FromString, + ) + self.Delete = channel.unary_unary( + '/arista.studio.v1.AutofillActionConfigService/Delete', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigDeleteRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigDeleteResponse.FromString, + ) + self.DeleteSome = channel.unary_stream( + '/arista.studio.v1.AutofillActionConfigService/DeleteSome', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigDeleteSomeRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigDeleteSomeResponse.FromString, + ) + self.DeleteAll = channel.unary_stream( + '/arista.studio.v1.AutofillActionConfigService/DeleteAll', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigDeleteAllRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigDeleteAllResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.studio.v1.AutofillActionConfigService/GetAllBatched', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.studio.v1.AutofillActionConfigService/SubscribeBatched', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class AutofillActionConfigServiceServicer(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 GetMeta(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 SubscribeMeta(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_AutofillActionConfigServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigSomeRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'Set': grpc.unary_unary_rpc_method_handler( + servicer.Set, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigSetRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigSetResponse.SerializeToString, + ), + 'SetSome': grpc.unary_stream_rpc_method_handler( + servicer.SetSome, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigSetSomeRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigSetSomeResponse.SerializeToString, + ), + 'Delete': grpc.unary_unary_rpc_method_handler( + servicer.Delete, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigDeleteRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigDeleteResponse.SerializeToString, + ), + 'DeleteSome': grpc.unary_stream_rpc_method_handler( + servicer.DeleteSome, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigDeleteSomeRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigDeleteSomeResponse.SerializeToString, + ), + 'DeleteAll': grpc.unary_stream_rpc_method_handler( + servicer.DeleteAll, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigDeleteAllRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigDeleteAllResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigBatchedStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigBatchedStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.studio.v1.AutofillActionConfigService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class AutofillActionConfigService(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.studio.v1.AutofillActionConfigService/GetOne', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.AutofillActionConfigService/GetSome', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigSomeRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.AutofillActionConfigService/GetAll', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.AutofillActionConfigService/Subscribe', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.studio.v1.AutofillActionConfigService/GetMeta', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.studio.v1.AutofillActionConfigService/SubscribeMeta', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.AutofillActionConfigService/Set', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigSetRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigSetResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.AutofillActionConfigService/SetSome', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigSetSomeRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigSetSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.AutofillActionConfigService/Delete', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigDeleteRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigDeleteResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.AutofillActionConfigService/DeleteSome', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigDeleteSomeRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigDeleteSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.AutofillActionConfigService/DeleteAll', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigDeleteAllRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigDeleteAllResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.AutofillActionConfigService/GetAllBatched', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigBatchedStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.AutofillActionConfigService/SubscribeBatched', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigBatchedStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.AutofillActionConfigBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class InputsServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.studio.v1.InputsService/GetOne', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.studio.v1.InputsService/GetSome', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsSomeRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.studio.v1.InputsService/GetAll', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.studio.v1.InputsService/Subscribe', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.studio.v1.InputsService/GetMeta', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.studio.v1.InputsService/SubscribeMeta', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.studio.v1.InputsService/GetAllBatched', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.studio.v1.InputsService/SubscribeBatched', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class InputsServiceServicer(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 GetMeta(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 SubscribeMeta(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_InputsServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsSomeRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsBatchedStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsBatchedStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.studio.v1.InputsService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class InputsService(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.studio.v1.InputsService/GetOne', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.InputsService/GetSome', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsSomeRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.InputsService/GetAll', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.InputsService/Subscribe', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.studio.v1.InputsService/GetMeta', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.studio.v1.InputsService/SubscribeMeta', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.InputsService/GetAllBatched', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsBatchedStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.InputsService/SubscribeBatched', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsBatchedStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class InputsConfigServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.studio.v1.InputsConfigService/GetOne', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.studio.v1.InputsConfigService/GetSome', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigSomeRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.studio.v1.InputsConfigService/GetAll', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.studio.v1.InputsConfigService/Subscribe', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.studio.v1.InputsConfigService/GetMeta', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.studio.v1.InputsConfigService/SubscribeMeta', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.Set = channel.unary_unary( + '/arista.studio.v1.InputsConfigService/Set', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigSetRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigSetResponse.FromString, + ) + self.SetSome = channel.unary_stream( + '/arista.studio.v1.InputsConfigService/SetSome', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigSetSomeRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigSetSomeResponse.FromString, + ) + self.Delete = channel.unary_unary( + '/arista.studio.v1.InputsConfigService/Delete', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigDeleteRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigDeleteResponse.FromString, + ) + self.DeleteSome = channel.unary_stream( + '/arista.studio.v1.InputsConfigService/DeleteSome', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigDeleteSomeRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigDeleteSomeResponse.FromString, + ) + self.DeleteAll = channel.unary_stream( + '/arista.studio.v1.InputsConfigService/DeleteAll', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigDeleteAllRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigDeleteAllResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.studio.v1.InputsConfigService/GetAllBatched', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.studio.v1.InputsConfigService/SubscribeBatched', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class InputsConfigServiceServicer(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 GetMeta(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 SubscribeMeta(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_InputsConfigServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigSomeRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'Set': grpc.unary_unary_rpc_method_handler( + servicer.Set, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigSetRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigSetResponse.SerializeToString, + ), + 'SetSome': grpc.unary_stream_rpc_method_handler( + servicer.SetSome, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigSetSomeRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigSetSomeResponse.SerializeToString, + ), + 'Delete': grpc.unary_unary_rpc_method_handler( + servicer.Delete, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigDeleteRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigDeleteResponse.SerializeToString, + ), + 'DeleteSome': grpc.unary_stream_rpc_method_handler( + servicer.DeleteSome, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigDeleteSomeRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigDeleteSomeResponse.SerializeToString, + ), + 'DeleteAll': grpc.unary_stream_rpc_method_handler( + servicer.DeleteAll, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigDeleteAllRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigDeleteAllResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigBatchedStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigBatchedStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.studio.v1.InputsConfigService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class InputsConfigService(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.studio.v1.InputsConfigService/GetOne', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.InputsConfigService/GetSome', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigSomeRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.InputsConfigService/GetAll', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.InputsConfigService/Subscribe', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.studio.v1.InputsConfigService/GetMeta', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.studio.v1.InputsConfigService/SubscribeMeta', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.InputsConfigService/Set', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigSetRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigSetResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.InputsConfigService/SetSome', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigSetSomeRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigSetSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.InputsConfigService/Delete', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigDeleteRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigDeleteResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.InputsConfigService/DeleteSome', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigDeleteSomeRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigDeleteSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.InputsConfigService/DeleteAll', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigDeleteAllRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigDeleteAllResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.InputsConfigService/GetAllBatched', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigBatchedStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.InputsConfigService/SubscribeBatched', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigBatchedStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.InputsConfigBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class SecretInputServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.studio.v1.SecretInputService/GetOne', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.SecretInputRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.SecretInputResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.studio.v1.SecretInputService/GetSome', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.SecretInputSomeRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.SecretInputSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.studio.v1.SecretInputService/GetAll', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.SecretInputStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.SecretInputStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.studio.v1.SecretInputService/Subscribe', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.SecretInputStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.SecretInputStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.studio.v1.SecretInputService/GetMeta', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.SecretInputStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.studio.v1.SecretInputService/SubscribeMeta', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.SecretInputStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.studio.v1.SecretInputService/GetAllBatched', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.SecretInputBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.SecretInputBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.studio.v1.SecretInputService/SubscribeBatched', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.SecretInputBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.SecretInputBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class SecretInputServiceServicer(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 GetMeta(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 SubscribeMeta(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_SecretInputServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.SecretInputRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.SecretInputResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.SecretInputSomeRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.SecretInputSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.SecretInputStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.SecretInputStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.SecretInputStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.SecretInputStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.SecretInputStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.SecretInputStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.SecretInputBatchedStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.SecretInputBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.SecretInputBatchedStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.SecretInputBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.studio.v1.SecretInputService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class SecretInputService(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.studio.v1.SecretInputService/GetOne', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.SecretInputRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.SecretInputResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.SecretInputService/GetSome', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.SecretInputSomeRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.SecretInputSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.SecretInputService/GetAll', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.SecretInputStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.SecretInputStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.SecretInputService/Subscribe', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.SecretInputStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.SecretInputStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.studio.v1.SecretInputService/GetMeta', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.SecretInputStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.studio.v1.SecretInputService/SubscribeMeta', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.SecretInputStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.SecretInputService/GetAllBatched', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.SecretInputBatchedStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.SecretInputBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.SecretInputService/SubscribeBatched', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.SecretInputBatchedStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.SecretInputBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class StudioServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.studio.v1.StudioService/GetOne', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.studio.v1.StudioService/GetSome', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSomeRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.studio.v1.StudioService/GetAll', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.studio.v1.StudioService/Subscribe', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.studio.v1.StudioService/GetMeta', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.studio.v1.StudioService/SubscribeMeta', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.studio.v1.StudioService/GetAllBatched', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.studio.v1.StudioService/SubscribeBatched', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class StudioServiceServicer(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 GetMeta(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 SubscribeMeta(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_StudioServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSomeRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioBatchedStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioBatchedStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.studio.v1.StudioService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class StudioService(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.studio.v1.StudioService/GetOne', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.StudioService/GetSome', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSomeRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.StudioService/GetAll', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.StudioService/Subscribe', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.studio.v1.StudioService/GetMeta', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.studio.v1.StudioService/SubscribeMeta', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.StudioService/GetAllBatched', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioBatchedStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.StudioService/SubscribeBatched', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioBatchedStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class StudioConfigServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.studio.v1.StudioConfigService/GetOne', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.studio.v1.StudioConfigService/GetSome', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigSomeRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.studio.v1.StudioConfigService/GetAll', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.studio.v1.StudioConfigService/Subscribe', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.studio.v1.StudioConfigService/GetMeta', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.studio.v1.StudioConfigService/SubscribeMeta', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.Set = channel.unary_unary( + '/arista.studio.v1.StudioConfigService/Set', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigSetRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigSetResponse.FromString, + ) + self.SetSome = channel.unary_stream( + '/arista.studio.v1.StudioConfigService/SetSome', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigSetSomeRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigSetSomeResponse.FromString, + ) + self.Delete = channel.unary_unary( + '/arista.studio.v1.StudioConfigService/Delete', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigDeleteRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigDeleteResponse.FromString, + ) + self.DeleteSome = channel.unary_stream( + '/arista.studio.v1.StudioConfigService/DeleteSome', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigDeleteSomeRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigDeleteSomeResponse.FromString, + ) + self.DeleteAll = channel.unary_stream( + '/arista.studio.v1.StudioConfigService/DeleteAll', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigDeleteAllRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigDeleteAllResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.studio.v1.StudioConfigService/GetAllBatched', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.studio.v1.StudioConfigService/SubscribeBatched', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class StudioConfigServiceServicer(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 GetMeta(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 SubscribeMeta(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_StudioConfigServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigSomeRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'Set': grpc.unary_unary_rpc_method_handler( + servicer.Set, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigSetRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigSetResponse.SerializeToString, + ), + 'SetSome': grpc.unary_stream_rpc_method_handler( + servicer.SetSome, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigSetSomeRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigSetSomeResponse.SerializeToString, + ), + 'Delete': grpc.unary_unary_rpc_method_handler( + servicer.Delete, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigDeleteRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigDeleteResponse.SerializeToString, + ), + 'DeleteSome': grpc.unary_stream_rpc_method_handler( + servicer.DeleteSome, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigDeleteSomeRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigDeleteSomeResponse.SerializeToString, + ), + 'DeleteAll': grpc.unary_stream_rpc_method_handler( + servicer.DeleteAll, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigDeleteAllRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigDeleteAllResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigBatchedStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigBatchedStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.studio.v1.StudioConfigService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class StudioConfigService(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.studio.v1.StudioConfigService/GetOne', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.StudioConfigService/GetSome', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigSomeRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.StudioConfigService/GetAll', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.StudioConfigService/Subscribe', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.studio.v1.StudioConfigService/GetMeta', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.studio.v1.StudioConfigService/SubscribeMeta', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.StudioConfigService/Set', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigSetRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigSetResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.StudioConfigService/SetSome', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigSetSomeRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigSetSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.StudioConfigService/Delete', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigDeleteRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigDeleteResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.StudioConfigService/DeleteSome', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigDeleteSomeRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigDeleteSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.StudioConfigService/DeleteAll', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigDeleteAllRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigDeleteAllResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.StudioConfigService/GetAllBatched', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigBatchedStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.StudioConfigService/SubscribeBatched', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigBatchedStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioConfigBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class StudioSummaryServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.studio.v1.StudioSummaryService/GetOne', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSummaryRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSummaryResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.studio.v1.StudioSummaryService/GetSome', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSummarySomeRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSummarySomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.studio.v1.StudioSummaryService/GetAll', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSummaryStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSummaryStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.studio.v1.StudioSummaryService/Subscribe', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSummaryStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSummaryStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.studio.v1.StudioSummaryService/GetMeta', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSummaryStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.studio.v1.StudioSummaryService/SubscribeMeta', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSummaryStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.studio.v1.StudioSummaryService/GetAllBatched', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSummaryBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSummaryBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.studio.v1.StudioSummaryService/SubscribeBatched', + request_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSummaryBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSummaryBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class StudioSummaryServiceServicer(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 GetMeta(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 SubscribeMeta(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_StudioSummaryServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSummaryRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSummaryResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSummarySomeRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSummarySomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSummaryStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSummaryStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSummaryStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSummaryStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSummaryStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSummaryStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSummaryBatchedStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSummaryBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSummaryBatchedStreamRequest.FromString, + response_serializer=arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSummaryBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.studio.v1.StudioSummaryService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class StudioSummaryService(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.studio.v1.StudioSummaryService/GetOne', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSummaryRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSummaryResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.StudioSummaryService/GetSome', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSummarySomeRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSummarySomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.StudioSummaryService/GetAll', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSummaryStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSummaryStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.StudioSummaryService/Subscribe', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSummaryStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSummaryStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.studio.v1.StudioSummaryService/GetMeta', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSummaryStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.studio.v1.StudioSummaryService/SubscribeMeta', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSummaryStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.StudioSummaryService/GetAllBatched', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSummaryBatchedStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSummaryBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.studio.v1.StudioSummaryService/SubscribeBatched', + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSummaryBatchedStreamRequest.SerializeToString, + arista_dot_studio_dot_v1_dot_services_dot_gen__pb2.StudioSummaryBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_modules/arista/tag/v2/services/gen_pb2_grpc.html b/_modules/arista/tag/v2/services/gen_pb2_grpc.html new file mode 100644 index 00000000..d0629955 --- /dev/null +++ b/_modules/arista/tag/v2/services/gen_pb2_grpc.html @@ -0,0 +1,1904 @@ + + + + + + + + arista.tag.v2.services.gen_pb2_grpc — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+
    +
  • + + +
  • +
  • +
+
+
+
+
+ +

Source code for arista.tag.v2.services.gen_pb2_grpc

+# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
+"""Client and server classes corresponding to protobuf-defined services."""
+import grpc
+
+from arista.tag.v2.services import gen_pb2 as arista_dot_tag_dot_v2_dot_services_dot_gen__pb2
+
+
+
+[docs] +class TagServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.tag.v2.TagService/GetOne', + request_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagRequest.SerializeToString, + response_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.tag.v2.TagService/GetSome', + request_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagSomeRequest.SerializeToString, + response_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.tag.v2.TagService/GetAll', + request_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagStreamRequest.SerializeToString, + response_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.tag.v2.TagService/Subscribe', + request_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagStreamRequest.SerializeToString, + response_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.tag.v2.TagService/GetMeta', + request_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagStreamRequest.SerializeToString, + response_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.tag.v2.TagService/SubscribeMeta', + request_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagStreamRequest.SerializeToString, + response_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.tag.v2.TagService/GetAllBatched', + request_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.tag.v2.TagService/SubscribeBatched', + request_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class TagServiceServicer(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 GetMeta(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 SubscribeMeta(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_TagServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagRequest.FromString, + response_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagSomeRequest.FromString, + response_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagStreamRequest.FromString, + response_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagStreamRequest.FromString, + response_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagStreamRequest.FromString, + response_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagStreamRequest.FromString, + response_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagBatchedStreamRequest.FromString, + response_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagBatchedStreamRequest.FromString, + response_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.tag.v2.TagService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class TagService(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.tag.v2.TagService/GetOne', + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagRequest.SerializeToString, + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.tag.v2.TagService/GetSome', + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagSomeRequest.SerializeToString, + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.tag.v2.TagService/GetAll', + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagStreamRequest.SerializeToString, + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.tag.v2.TagService/Subscribe', + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagStreamRequest.SerializeToString, + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.tag.v2.TagService/GetMeta', + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagStreamRequest.SerializeToString, + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.tag.v2.TagService/SubscribeMeta', + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagStreamRequest.SerializeToString, + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.tag.v2.TagService/GetAllBatched', + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagBatchedStreamRequest.SerializeToString, + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.tag.v2.TagService/SubscribeBatched', + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagBatchedStreamRequest.SerializeToString, + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class TagAssignmentServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.tag.v2.TagAssignmentService/GetOne', + request_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentRequest.SerializeToString, + response_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.tag.v2.TagAssignmentService/GetSome', + request_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentSomeRequest.SerializeToString, + response_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.tag.v2.TagAssignmentService/GetAll', + request_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentStreamRequest.SerializeToString, + response_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.tag.v2.TagAssignmentService/Subscribe', + request_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentStreamRequest.SerializeToString, + response_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.tag.v2.TagAssignmentService/GetMeta', + request_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentStreamRequest.SerializeToString, + response_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.tag.v2.TagAssignmentService/SubscribeMeta', + request_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentStreamRequest.SerializeToString, + response_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.tag.v2.TagAssignmentService/GetAllBatched', + request_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.tag.v2.TagAssignmentService/SubscribeBatched', + request_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class TagAssignmentServiceServicer(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 GetMeta(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 SubscribeMeta(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_TagAssignmentServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentRequest.FromString, + response_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentSomeRequest.FromString, + response_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentStreamRequest.FromString, + response_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentStreamRequest.FromString, + response_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentStreamRequest.FromString, + response_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentStreamRequest.FromString, + response_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentBatchedStreamRequest.FromString, + response_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentBatchedStreamRequest.FromString, + response_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.tag.v2.TagAssignmentService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class TagAssignmentService(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.tag.v2.TagAssignmentService/GetOne', + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentRequest.SerializeToString, + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.tag.v2.TagAssignmentService/GetSome', + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentSomeRequest.SerializeToString, + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.tag.v2.TagAssignmentService/GetAll', + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentStreamRequest.SerializeToString, + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.tag.v2.TagAssignmentService/Subscribe', + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentStreamRequest.SerializeToString, + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.tag.v2.TagAssignmentService/GetMeta', + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentStreamRequest.SerializeToString, + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.tag.v2.TagAssignmentService/SubscribeMeta', + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentStreamRequest.SerializeToString, + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.tag.v2.TagAssignmentService/GetAllBatched', + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentBatchedStreamRequest.SerializeToString, + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.tag.v2.TagAssignmentService/SubscribeBatched', + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentBatchedStreamRequest.SerializeToString, + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class TagAssignmentConfigServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.tag.v2.TagAssignmentConfigService/GetOne', + request_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigRequest.SerializeToString, + response_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.tag.v2.TagAssignmentConfigService/GetSome', + request_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigSomeRequest.SerializeToString, + response_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.tag.v2.TagAssignmentConfigService/GetAll', + request_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.tag.v2.TagAssignmentConfigService/Subscribe', + request_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.tag.v2.TagAssignmentConfigService/GetMeta', + request_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.tag.v2.TagAssignmentConfigService/SubscribeMeta', + request_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.Set = channel.unary_unary( + '/arista.tag.v2.TagAssignmentConfigService/Set', + request_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigSetRequest.SerializeToString, + response_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigSetResponse.FromString, + ) + self.SetSome = channel.unary_stream( + '/arista.tag.v2.TagAssignmentConfigService/SetSome', + request_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigSetSomeRequest.SerializeToString, + response_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigSetSomeResponse.FromString, + ) + self.Delete = channel.unary_unary( + '/arista.tag.v2.TagAssignmentConfigService/Delete', + request_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigDeleteRequest.SerializeToString, + response_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigDeleteResponse.FromString, + ) + self.DeleteSome = channel.unary_stream( + '/arista.tag.v2.TagAssignmentConfigService/DeleteSome', + request_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigDeleteSomeRequest.SerializeToString, + response_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigDeleteSomeResponse.FromString, + ) + self.DeleteAll = channel.unary_stream( + '/arista.tag.v2.TagAssignmentConfigService/DeleteAll', + request_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigDeleteAllRequest.SerializeToString, + response_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigDeleteAllResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.tag.v2.TagAssignmentConfigService/GetAllBatched', + request_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.tag.v2.TagAssignmentConfigService/SubscribeBatched', + request_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class TagAssignmentConfigServiceServicer(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 GetMeta(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 SubscribeMeta(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_TagAssignmentConfigServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigRequest.FromString, + response_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigSomeRequest.FromString, + response_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigStreamRequest.FromString, + response_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigStreamRequest.FromString, + response_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigStreamRequest.FromString, + response_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigStreamRequest.FromString, + response_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'Set': grpc.unary_unary_rpc_method_handler( + servicer.Set, + request_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigSetRequest.FromString, + response_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigSetResponse.SerializeToString, + ), + 'SetSome': grpc.unary_stream_rpc_method_handler( + servicer.SetSome, + request_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigSetSomeRequest.FromString, + response_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigSetSomeResponse.SerializeToString, + ), + 'Delete': grpc.unary_unary_rpc_method_handler( + servicer.Delete, + request_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigDeleteRequest.FromString, + response_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigDeleteResponse.SerializeToString, + ), + 'DeleteSome': grpc.unary_stream_rpc_method_handler( + servicer.DeleteSome, + request_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigDeleteSomeRequest.FromString, + response_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigDeleteSomeResponse.SerializeToString, + ), + 'DeleteAll': grpc.unary_stream_rpc_method_handler( + servicer.DeleteAll, + request_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigDeleteAllRequest.FromString, + response_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigDeleteAllResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigBatchedStreamRequest.FromString, + response_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigBatchedStreamRequest.FromString, + response_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.tag.v2.TagAssignmentConfigService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class TagAssignmentConfigService(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.tag.v2.TagAssignmentConfigService/GetOne', + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigRequest.SerializeToString, + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.tag.v2.TagAssignmentConfigService/GetSome', + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigSomeRequest.SerializeToString, + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.tag.v2.TagAssignmentConfigService/GetAll', + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigStreamRequest.SerializeToString, + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.tag.v2.TagAssignmentConfigService/Subscribe', + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigStreamRequest.SerializeToString, + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.tag.v2.TagAssignmentConfigService/GetMeta', + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigStreamRequest.SerializeToString, + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.tag.v2.TagAssignmentConfigService/SubscribeMeta', + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigStreamRequest.SerializeToString, + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.tag.v2.TagAssignmentConfigService/Set', + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigSetRequest.SerializeToString, + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigSetResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.tag.v2.TagAssignmentConfigService/SetSome', + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigSetSomeRequest.SerializeToString, + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigSetSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.tag.v2.TagAssignmentConfigService/Delete', + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigDeleteRequest.SerializeToString, + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigDeleteResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.tag.v2.TagAssignmentConfigService/DeleteSome', + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigDeleteSomeRequest.SerializeToString, + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigDeleteSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.tag.v2.TagAssignmentConfigService/DeleteAll', + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigDeleteAllRequest.SerializeToString, + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigDeleteAllResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.tag.v2.TagAssignmentConfigService/GetAllBatched', + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigBatchedStreamRequest.SerializeToString, + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.tag.v2.TagAssignmentConfigService/SubscribeBatched', + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigBatchedStreamRequest.SerializeToString, + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagAssignmentConfigBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class TagConfigServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.tag.v2.TagConfigService/GetOne', + request_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigRequest.SerializeToString, + response_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.tag.v2.TagConfigService/GetSome', + request_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigSomeRequest.SerializeToString, + response_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.tag.v2.TagConfigService/GetAll', + request_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.tag.v2.TagConfigService/Subscribe', + request_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.tag.v2.TagConfigService/GetMeta', + request_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.tag.v2.TagConfigService/SubscribeMeta', + request_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.Set = channel.unary_unary( + '/arista.tag.v2.TagConfigService/Set', + request_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigSetRequest.SerializeToString, + response_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigSetResponse.FromString, + ) + self.SetSome = channel.unary_stream( + '/arista.tag.v2.TagConfigService/SetSome', + request_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigSetSomeRequest.SerializeToString, + response_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigSetSomeResponse.FromString, + ) + self.Delete = channel.unary_unary( + '/arista.tag.v2.TagConfigService/Delete', + request_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigDeleteRequest.SerializeToString, + response_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigDeleteResponse.FromString, + ) + self.DeleteSome = channel.unary_stream( + '/arista.tag.v2.TagConfigService/DeleteSome', + request_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigDeleteSomeRequest.SerializeToString, + response_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigDeleteSomeResponse.FromString, + ) + self.DeleteAll = channel.unary_stream( + '/arista.tag.v2.TagConfigService/DeleteAll', + request_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigDeleteAllRequest.SerializeToString, + response_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigDeleteAllResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.tag.v2.TagConfigService/GetAllBatched', + request_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.tag.v2.TagConfigService/SubscribeBatched', + request_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class TagConfigServiceServicer(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 GetMeta(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 SubscribeMeta(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_TagConfigServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigRequest.FromString, + response_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigSomeRequest.FromString, + response_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigStreamRequest.FromString, + response_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigStreamRequest.FromString, + response_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigStreamRequest.FromString, + response_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigStreamRequest.FromString, + response_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'Set': grpc.unary_unary_rpc_method_handler( + servicer.Set, + request_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigSetRequest.FromString, + response_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigSetResponse.SerializeToString, + ), + 'SetSome': grpc.unary_stream_rpc_method_handler( + servicer.SetSome, + request_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigSetSomeRequest.FromString, + response_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigSetSomeResponse.SerializeToString, + ), + 'Delete': grpc.unary_unary_rpc_method_handler( + servicer.Delete, + request_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigDeleteRequest.FromString, + response_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigDeleteResponse.SerializeToString, + ), + 'DeleteSome': grpc.unary_stream_rpc_method_handler( + servicer.DeleteSome, + request_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigDeleteSomeRequest.FromString, + response_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigDeleteSomeResponse.SerializeToString, + ), + 'DeleteAll': grpc.unary_stream_rpc_method_handler( + servicer.DeleteAll, + request_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigDeleteAllRequest.FromString, + response_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigDeleteAllResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigBatchedStreamRequest.FromString, + response_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigBatchedStreamRequest.FromString, + response_serializer=arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.tag.v2.TagConfigService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class TagConfigService(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.tag.v2.TagConfigService/GetOne', + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigRequest.SerializeToString, + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.tag.v2.TagConfigService/GetSome', + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigSomeRequest.SerializeToString, + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.tag.v2.TagConfigService/GetAll', + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigStreamRequest.SerializeToString, + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.tag.v2.TagConfigService/Subscribe', + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigStreamRequest.SerializeToString, + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.tag.v2.TagConfigService/GetMeta', + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigStreamRequest.SerializeToString, + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.tag.v2.TagConfigService/SubscribeMeta', + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigStreamRequest.SerializeToString, + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.tag.v2.TagConfigService/Set', + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigSetRequest.SerializeToString, + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigSetResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.tag.v2.TagConfigService/SetSome', + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigSetSomeRequest.SerializeToString, + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigSetSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.tag.v2.TagConfigService/Delete', + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigDeleteRequest.SerializeToString, + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigDeleteResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.tag.v2.TagConfigService/DeleteSome', + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigDeleteSomeRequest.SerializeToString, + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigDeleteSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.tag.v2.TagConfigService/DeleteAll', + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigDeleteAllRequest.SerializeToString, + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigDeleteAllResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.tag.v2.TagConfigService/GetAllBatched', + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigBatchedStreamRequest.SerializeToString, + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.tag.v2.TagConfigService/SubscribeBatched', + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigBatchedStreamRequest.SerializeToString, + arista_dot_tag_dot_v2_dot_services_dot_gen__pb2.TagConfigBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_modules/arista/workspace/v1/services/gen_pb2_grpc.html b/_modules/arista/workspace/v1/services/gen_pb2_grpc.html new file mode 100644 index 00000000..40e0c037 --- /dev/null +++ b/_modules/arista/workspace/v1/services/gen_pb2_grpc.html @@ -0,0 +1,2256 @@ + + + + + + + + arista.workspace.v1.services.gen_pb2_grpc — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+
    +
  • + + +
  • +
  • +
+
+
+
+
+ +

Source code for arista.workspace.v1.services.gen_pb2_grpc

+# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
+"""Client and server classes corresponding to protobuf-defined services."""
+import grpc
+
+from arista.workspace.v1.services import gen_pb2 as arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2
+
+
+
+[docs] +class WorkspaceServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.workspace.v1.WorkspaceService/GetOne', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.workspace.v1.WorkspaceService/GetSome', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSomeRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.workspace.v1.WorkspaceService/GetAll', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceStreamRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.workspace.v1.WorkspaceService/Subscribe', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceStreamRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.workspace.v1.WorkspaceService/GetMeta', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceStreamRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.workspace.v1.WorkspaceService/SubscribeMeta', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceStreamRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.workspace.v1.WorkspaceService/GetAllBatched', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.workspace.v1.WorkspaceService/SubscribeBatched', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class WorkspaceServiceServicer(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 GetMeta(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 SubscribeMeta(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_WorkspaceServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSomeRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceStreamRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceStreamRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceStreamRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceStreamRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBatchedStreamRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBatchedStreamRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.workspace.v1.WorkspaceService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class WorkspaceService(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.workspace.v1.WorkspaceService/GetOne', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.workspace.v1.WorkspaceService/GetSome', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSomeRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.workspace.v1.WorkspaceService/GetAll', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceStreamRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.workspace.v1.WorkspaceService/Subscribe', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceStreamRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.workspace.v1.WorkspaceService/GetMeta', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceStreamRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.workspace.v1.WorkspaceService/SubscribeMeta', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceStreamRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.workspace.v1.WorkspaceService/GetAllBatched', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBatchedStreamRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.workspace.v1.WorkspaceService/SubscribeBatched', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBatchedStreamRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class WorkspaceBuildServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.workspace.v1.WorkspaceBuildService/GetOne', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.workspace.v1.WorkspaceBuildService/GetSome', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildSomeRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.workspace.v1.WorkspaceBuildService/GetAll', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildStreamRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.workspace.v1.WorkspaceBuildService/Subscribe', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildStreamRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.workspace.v1.WorkspaceBuildService/GetMeta', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildStreamRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.workspace.v1.WorkspaceBuildService/SubscribeMeta', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildStreamRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.workspace.v1.WorkspaceBuildService/GetAllBatched', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.workspace.v1.WorkspaceBuildService/SubscribeBatched', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class WorkspaceBuildServiceServicer(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 GetMeta(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 SubscribeMeta(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_WorkspaceBuildServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildSomeRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildStreamRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildStreamRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildStreamRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildStreamRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildBatchedStreamRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildBatchedStreamRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.workspace.v1.WorkspaceBuildService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class WorkspaceBuildService(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.workspace.v1.WorkspaceBuildService/GetOne', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.workspace.v1.WorkspaceBuildService/GetSome', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildSomeRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.workspace.v1.WorkspaceBuildService/GetAll', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildStreamRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.workspace.v1.WorkspaceBuildService/Subscribe', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildStreamRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.workspace.v1.WorkspaceBuildService/GetMeta', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildStreamRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.workspace.v1.WorkspaceBuildService/SubscribeMeta', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildStreamRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.workspace.v1.WorkspaceBuildService/GetAllBatched', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildBatchedStreamRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.workspace.v1.WorkspaceBuildService/SubscribeBatched', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildBatchedStreamRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class WorkspaceBuildDetailsServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.workspace.v1.WorkspaceBuildDetailsService/GetOne', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildDetailsRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildDetailsResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.workspace.v1.WorkspaceBuildDetailsService/GetSome', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildDetailsSomeRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildDetailsSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.workspace.v1.WorkspaceBuildDetailsService/GetAll', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildDetailsStreamRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildDetailsStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.workspace.v1.WorkspaceBuildDetailsService/Subscribe', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildDetailsStreamRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildDetailsStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.workspace.v1.WorkspaceBuildDetailsService/GetMeta', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildDetailsStreamRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.workspace.v1.WorkspaceBuildDetailsService/SubscribeMeta', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildDetailsStreamRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.workspace.v1.WorkspaceBuildDetailsService/GetAllBatched', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildDetailsBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildDetailsBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.workspace.v1.WorkspaceBuildDetailsService/SubscribeBatched', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildDetailsBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildDetailsBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class WorkspaceBuildDetailsServiceServicer(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 GetMeta(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 SubscribeMeta(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_WorkspaceBuildDetailsServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildDetailsRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildDetailsResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildDetailsSomeRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildDetailsSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildDetailsStreamRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildDetailsStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildDetailsStreamRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildDetailsStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildDetailsStreamRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildDetailsStreamRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildDetailsBatchedStreamRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildDetailsBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildDetailsBatchedStreamRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildDetailsBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.workspace.v1.WorkspaceBuildDetailsService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class WorkspaceBuildDetailsService(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.workspace.v1.WorkspaceBuildDetailsService/GetOne', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildDetailsRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildDetailsResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.workspace.v1.WorkspaceBuildDetailsService/GetSome', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildDetailsSomeRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildDetailsSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.workspace.v1.WorkspaceBuildDetailsService/GetAll', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildDetailsStreamRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildDetailsStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.workspace.v1.WorkspaceBuildDetailsService/Subscribe', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildDetailsStreamRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildDetailsStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.workspace.v1.WorkspaceBuildDetailsService/GetMeta', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildDetailsStreamRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.workspace.v1.WorkspaceBuildDetailsService/SubscribeMeta', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildDetailsStreamRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.workspace.v1.WorkspaceBuildDetailsService/GetAllBatched', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildDetailsBatchedStreamRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildDetailsBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.workspace.v1.WorkspaceBuildDetailsService/SubscribeBatched', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildDetailsBatchedStreamRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceBuildDetailsBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class WorkspaceConfigServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.workspace.v1.WorkspaceConfigService/GetOne', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.workspace.v1.WorkspaceConfigService/GetSome', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigSomeRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.workspace.v1.WorkspaceConfigService/GetAll', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.workspace.v1.WorkspaceConfigService/Subscribe', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.workspace.v1.WorkspaceConfigService/GetMeta', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.workspace.v1.WorkspaceConfigService/SubscribeMeta', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.Set = channel.unary_unary( + '/arista.workspace.v1.WorkspaceConfigService/Set', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigSetRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigSetResponse.FromString, + ) + self.SetSome = channel.unary_stream( + '/arista.workspace.v1.WorkspaceConfigService/SetSome', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigSetSomeRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigSetSomeResponse.FromString, + ) + self.Delete = channel.unary_unary( + '/arista.workspace.v1.WorkspaceConfigService/Delete', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigDeleteRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigDeleteResponse.FromString, + ) + self.DeleteSome = channel.unary_stream( + '/arista.workspace.v1.WorkspaceConfigService/DeleteSome', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigDeleteSomeRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigDeleteSomeResponse.FromString, + ) + self.DeleteAll = channel.unary_stream( + '/arista.workspace.v1.WorkspaceConfigService/DeleteAll', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigDeleteAllRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigDeleteAllResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.workspace.v1.WorkspaceConfigService/GetAllBatched', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.workspace.v1.WorkspaceConfigService/SubscribeBatched', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class WorkspaceConfigServiceServicer(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 GetMeta(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 SubscribeMeta(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_WorkspaceConfigServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigSomeRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigStreamRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigStreamRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigStreamRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigStreamRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'Set': grpc.unary_unary_rpc_method_handler( + servicer.Set, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigSetRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigSetResponse.SerializeToString, + ), + 'SetSome': grpc.unary_stream_rpc_method_handler( + servicer.SetSome, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigSetSomeRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigSetSomeResponse.SerializeToString, + ), + 'Delete': grpc.unary_unary_rpc_method_handler( + servicer.Delete, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigDeleteRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigDeleteResponse.SerializeToString, + ), + 'DeleteSome': grpc.unary_stream_rpc_method_handler( + servicer.DeleteSome, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigDeleteSomeRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigDeleteSomeResponse.SerializeToString, + ), + 'DeleteAll': grpc.unary_stream_rpc_method_handler( + servicer.DeleteAll, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigDeleteAllRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigDeleteAllResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigBatchedStreamRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigBatchedStreamRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.workspace.v1.WorkspaceConfigService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class WorkspaceConfigService(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.workspace.v1.WorkspaceConfigService/GetOne', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.workspace.v1.WorkspaceConfigService/GetSome', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigSomeRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.workspace.v1.WorkspaceConfigService/GetAll', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigStreamRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.workspace.v1.WorkspaceConfigService/Subscribe', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigStreamRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.workspace.v1.WorkspaceConfigService/GetMeta', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigStreamRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.workspace.v1.WorkspaceConfigService/SubscribeMeta', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigStreamRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.workspace.v1.WorkspaceConfigService/Set', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigSetRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigSetResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.workspace.v1.WorkspaceConfigService/SetSome', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigSetSomeRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigSetSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.workspace.v1.WorkspaceConfigService/Delete', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigDeleteRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigDeleteResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.workspace.v1.WorkspaceConfigService/DeleteSome', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigDeleteSomeRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigDeleteSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.workspace.v1.WorkspaceConfigService/DeleteAll', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigDeleteAllRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigDeleteAllResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.workspace.v1.WorkspaceConfigService/GetAllBatched', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigBatchedStreamRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.workspace.v1.WorkspaceConfigService/SubscribeBatched', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigBatchedStreamRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceConfigBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class WorkspaceSyncConfigServiceStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.GetOne = channel.unary_unary( + '/arista.workspace.v1.WorkspaceSyncConfigService/GetOne', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigResponse.FromString, + ) + self.GetSome = channel.unary_stream( + '/arista.workspace.v1.WorkspaceSyncConfigService/GetSome', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigSomeRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigSomeResponse.FromString, + ) + self.GetAll = channel.unary_stream( + '/arista.workspace.v1.WorkspaceSyncConfigService/GetAll', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigStreamResponse.FromString, + ) + self.Subscribe = channel.unary_stream( + '/arista.workspace.v1.WorkspaceSyncConfigService/Subscribe', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigStreamResponse.FromString, + ) + self.GetMeta = channel.unary_unary( + '/arista.workspace.v1.WorkspaceSyncConfigService/GetMeta', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.SubscribeMeta = channel.unary_stream( + '/arista.workspace.v1.WorkspaceSyncConfigService/SubscribeMeta', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigStreamRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + ) + self.Set = channel.unary_unary( + '/arista.workspace.v1.WorkspaceSyncConfigService/Set', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigSetRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigSetResponse.FromString, + ) + self.SetSome = channel.unary_stream( + '/arista.workspace.v1.WorkspaceSyncConfigService/SetSome', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigSetSomeRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigSetSomeResponse.FromString, + ) + self.Delete = channel.unary_unary( + '/arista.workspace.v1.WorkspaceSyncConfigService/Delete', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigDeleteRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigDeleteResponse.FromString, + ) + self.DeleteSome = channel.unary_stream( + '/arista.workspace.v1.WorkspaceSyncConfigService/DeleteSome', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigDeleteSomeRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigDeleteSomeResponse.FromString, + ) + self.DeleteAll = channel.unary_stream( + '/arista.workspace.v1.WorkspaceSyncConfigService/DeleteAll', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigDeleteAllRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigDeleteAllResponse.FromString, + ) + self.GetAllBatched = channel.unary_stream( + '/arista.workspace.v1.WorkspaceSyncConfigService/GetAllBatched', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigBatchedStreamResponse.FromString, + ) + self.SubscribeBatched = channel.unary_stream( + '/arista.workspace.v1.WorkspaceSyncConfigService/SubscribeBatched', + request_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigBatchedStreamRequest.SerializeToString, + response_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigBatchedStreamResponse.FromString, + )
+ + + +
+[docs] +class WorkspaceSyncConfigServiceServicer(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 GetMeta(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 SubscribeMeta(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_WorkspaceSyncConfigServiceServicer_to_server(servicer, server): + rpc_method_handlers = { + 'GetOne': grpc.unary_unary_rpc_method_handler( + servicer.GetOne, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigResponse.SerializeToString, + ), + 'GetSome': grpc.unary_stream_rpc_method_handler( + servicer.GetSome, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigSomeRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigSomeResponse.SerializeToString, + ), + 'GetAll': grpc.unary_stream_rpc_method_handler( + servicer.GetAll, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigStreamRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigStreamResponse.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigStreamRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigStreamResponse.SerializeToString, + ), + 'GetMeta': grpc.unary_unary_rpc_method_handler( + servicer.GetMeta, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigStreamRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'SubscribeMeta': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeMeta, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigStreamRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.MetaResponse.SerializeToString, + ), + 'Set': grpc.unary_unary_rpc_method_handler( + servicer.Set, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigSetRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigSetResponse.SerializeToString, + ), + 'SetSome': grpc.unary_stream_rpc_method_handler( + servicer.SetSome, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigSetSomeRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigSetSomeResponse.SerializeToString, + ), + 'Delete': grpc.unary_unary_rpc_method_handler( + servicer.Delete, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigDeleteRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigDeleteResponse.SerializeToString, + ), + 'DeleteSome': grpc.unary_stream_rpc_method_handler( + servicer.DeleteSome, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigDeleteSomeRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigDeleteSomeResponse.SerializeToString, + ), + 'DeleteAll': grpc.unary_stream_rpc_method_handler( + servicer.DeleteAll, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigDeleteAllRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigDeleteAllResponse.SerializeToString, + ), + 'GetAllBatched': grpc.unary_stream_rpc_method_handler( + servicer.GetAllBatched, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigBatchedStreamRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigBatchedStreamResponse.SerializeToString, + ), + 'SubscribeBatched': grpc.unary_stream_rpc_method_handler( + servicer.SubscribeBatched, + request_deserializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigBatchedStreamRequest.FromString, + response_serializer=arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigBatchedStreamResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'arista.workspace.v1.WorkspaceSyncConfigService', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class WorkspaceSyncConfigService(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.workspace.v1.WorkspaceSyncConfigService/GetOne', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.workspace.v1.WorkspaceSyncConfigService/GetSome', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigSomeRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.workspace.v1.WorkspaceSyncConfigService/GetAll', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigStreamRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.workspace.v1.WorkspaceSyncConfigService/Subscribe', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigStreamRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetMeta(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.workspace.v1.WorkspaceSyncConfigService/GetMeta', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigStreamRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SubscribeMeta(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.workspace.v1.WorkspaceSyncConfigService/SubscribeMeta', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigStreamRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.MetaResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.workspace.v1.WorkspaceSyncConfigService/Set', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigSetRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigSetResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.workspace.v1.WorkspaceSyncConfigService/SetSome', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigSetSomeRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigSetSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.workspace.v1.WorkspaceSyncConfigService/Delete', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigDeleteRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigDeleteResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.workspace.v1.WorkspaceSyncConfigService/DeleteSome', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigDeleteSomeRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigDeleteSomeResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.workspace.v1.WorkspaceSyncConfigService/DeleteAll', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigDeleteAllRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigDeleteAllResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.workspace.v1.WorkspaceSyncConfigService/GetAllBatched', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigBatchedStreamRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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.workspace.v1.WorkspaceSyncConfigService/SubscribeBatched', + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigBatchedStreamRequest.SerializeToString, + arista_dot_workspace_dot_v1_dot_services_dot_gen__pb2.WorkspaceSyncConfigBatchedStreamResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_modules/cloudvision/Connector.html b/_modules/cloudvision/Connector.html new file mode 100644 index 00000000..81377e64 --- /dev/null +++ b/_modules/cloudvision/Connector.html @@ -0,0 +1,184 @@ + + + + + + + + cloudvision.Connector — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +

Source code for cloudvision.Connector

+# Copyright (c) 2020 Arista Networks, Inc.
+# Use of this source code is governed by the Apache License 2.0
+# that can be found in the COPYING file.
+
+import logging
+name = "cloudvision.Connector"
+
+
+
+[docs] +def process_notifs(stream, paths={}, keys={}, nominalKeys=None): + """ + process_notifs consume the batch coming from stream and return them + as a hierarchy of dataset, path, and keys. Allowing for faster access + of a given time serie. + """ + res = {} + + for batch in stream: + dname = batch["dataset"]["name"] + for notif in batch["notifications"]: + time = notif["timestamp"] + path = "/".join(notif["path_elements"]) + if paths and path not in paths: + continue + for key, value in notif["updates"].items(): + if keys and key not in keys: + continue + value = __get_val(value, nominalKeys) + res = __update_dict(res, dname, path, key, nominalKeys, value, time) + return res
+ + + +def __get_val(nominal, nomKeys): + res = nominal + if nomKeys is None: + return res + for k in nomKeys: + if k not in res: + logging.error( + """ + Key %s not found in json %s + Full nominal %s + Nominal key path %s + """ % (k, res, nominal, nomKeys)) + return None + res = res[k] + return res + + +def __update_dict(resDict, dataset, path, key, nominalKeys, val, ts): + entry = resDict.setdefault(dataset, + {}).setdefault(path, + {}).setdefault(key, {}) + if nominalKeys: + entry = entry.setdefault("/".join(nominalKeys), {}) + entry.setdefault("values", []).append(val) + entry.setdefault("timestamps", []).append(ts) + return resDict + + +
+[docs] +def sort_dict(resDict): + """ + sort_dict orders every timeseries in a hierarchy of dataset by its timestamps. + """ + + def sort_timeserie(timeserie): + timeserie["values"], timeserie["timestamps"] = zip(*sorted(zip( + timeserie["values"], + timeserie["timestamps"]), key=lambda x: (x[1].seconds, x[1].nanos))) + + stack = [resDict] + while stack: + timeserie = stack.pop() + if "values" in timeserie and "timestamps" in timeserie: + sort_timeserie(timeserie) + else: + stack.extend(timeserie.values()) + return resDict
+ +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_modules/cloudvision/Connector/auth/cert.html b/_modules/cloudvision/Connector/auth/cert.html new file mode 100644 index 00000000..214e8fa7 --- /dev/null +++ b/_modules/cloudvision/Connector/auth/cert.html @@ -0,0 +1,220 @@ + + + + + + + + cloudvision.Connector.auth.cert — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +

Source code for cloudvision.Connector.auth.cert

+# Copyright (c) 2023 Arista Networks, Inc.
+# Use of this source code is governed by the Apache License 2.0
+# that can be found in the COPYING file.
+
+from typing import Any, Optional, Tuple
+
+from cryptography import x509
+from cryptography.hazmat.primitives import hashes, serialization
+
+
+
+[docs] +def gen_csr_der(cert_path: str, key_path: str) -> bytes: + """Generate ASN.1 DER encoded CSR. + + :param cert_path: Certificate file path (PEM encoded) + :param key_path: Private Key file path (PEM encoded) + :return: ASN.1 DER encoded CSR data + """ + + cert, key = load_key_cert_pair(cert_path, key_path) + csr = create_csr(cert, key) + return csr.public_bytes(serialization.Encoding.DER)
+ + + +
+[docs] +def create_csr(cert: x509.Certificate, key: Any) -> x509.CertificateSigningRequest: + """Create CSR from given cert and private key. + + :param cert: Certificate object + :param key: Private Key object + :return: CSR object + """ + + return ( + x509.CertificateSigningRequestBuilder().subject_name(cert.subject) + # Use SHA256 as signing algorithm + .sign(key, hashes.SHA256()) + )
+ + + +
+[docs] +def load_key_cert_pair(cert_path: str, key_path: str) -> Tuple[x509.Certificate, Any]: + """Load key & cert files. + + :param cert_path: Certificate file path (PEM encoded) + :param key_path: Private key file path (PEM encoded) + :return: Certificate and Key object + """ + + return load_cert(cert_path), load_key(key_path)
+ + + +
+[docs] +def load_cert(cert_path: str) -> x509.Certificate: + """Load certificate file (PEM encoded). + + :param cert_path: Certificate file (PEM encoded) + :return: Certificate object + """ + + cert_pem: bytes + with open(cert_path, "rb") as f: + cert_pem = f.read() + return cert_from_pem(cert_pem)
+ + + +
+[docs] +def cert_from_pem(cert_pem: bytes) -> x509.Certificate: + """Generate cert object from PEM encoded cert. + + :param cert_pem: Certificate PEM data + :return: Certificate object + """ + + return x509.load_pem_x509_certificate(cert_pem)
+ + + +
+[docs] +def load_key(key_path: str, passphrase: Optional[str] = None) -> Any: + """Load private key file (PEM encoded). + + :param key_path: Private key file (PEM encoded) + :param passphrase: Passphrase used to decrypt the key + :return: Private key object + """ + + key_pem: bytes + with open(key_path, "rb") as f: + key_pem = f.read() + + _passphrase: Optional[bytes] = bytes(passphrase, "utf-8") if passphrase else None + return key_from_pem(key_pem, _passphrase)
+ + + +
+[docs] +def key_from_pem(key_pem: bytes, passphrase: Optional[bytes] = None) -> Any: + """Generate key object from PEM encoded private key. + + :param key_pem: Private key (PEM encoded) + :param passphrase: Passphrase used to decrypt the key + :return: Private key object + """ + + return serialization.load_pem_private_key(key_pem, password=passphrase)
+ +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_modules/cloudvision/Connector/codec/custom_types.html b/_modules/cloudvision/Connector/codec/custom_types.html new file mode 100644 index 00000000..536b996e --- /dev/null +++ b/_modules/cloudvision/Connector/codec/custom_types.html @@ -0,0 +1,205 @@ + + + + + + + + cloudvision.Connector.codec.custom_types — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +

Source code for cloudvision.Connector.codec.custom_types

+# Copyright (c) 2020 Arista Networks, Inc.
+# Use of this source code is governed by the Apache License 2.0
+# that can be found in the COPYING file.
+
+from collections.abc import Mapping
+PointerType = 0
+WildcardType = 1
+
+
+# Python doesn't differentiate between Float32 and 64
+# This allows for the proper Marshalling of Float32
+
+[docs] +class Float32(float): + pass
+ + + +
+[docs] +class Wildcard(object): + pass
+ + + +
+[docs] +class FrozenDict(Mapping): + """An immutable wrapper around dictionaries. + + FrozenDict implements the complete :py:class:`collections.Mapping` + interface. It can be used as a drop-in replacement for dictionaries where + immutability is desired, for instance with complex map keys. + """ + + dict_cls = dict + + def __init__(self, *args, **kwargs): + self._dict = self.dict_cls(*args, **kwargs) + self._hash = None + + def __getitem__(self, key): + return self._dict[key] + + def __contains__(self, key): + return key in self._dict + +
+[docs] + def copy(self, **add_or_replace): + return self.__class__(self, **add_or_replace)
+ + + def __iter__(self): + return iter(self._dict) + + def __len__(self): + return len(self._dict) + + def __repr__(self): + return '<%s %r>' % (self.__class__.__name__, self._dict) + + def __hash__(self): + if self._hash is None: + h = 0 + for key, value in self._dict.items(): + h ^= hash((key, value)) + self._hash = h + return self._hash + + # Used in with sort_keys when dumping json + def __gt__(self, other): + return tuple(sorted(self._dict.items())) < \ + tuple(sorted(other._dict.items())) + + def __eq__(self, other): + return tuple(sorted(self._dict.items())) == \ + tuple(sorted(other._dict.items()))
+ + + +
+[docs] +class Path(object): + + def __init__(self, keys=None): + if keys is None: + keys = [] + self._keys = keys + + def __repr__(self): + return self._keys.__str__() + + def __eq__(self, other): + """ Two paths are equal if all keys are equal """ + if isinstance(other, Path) and len(other._keys) == len(self._keys): + for s, o in zip(self._keys, other._keys): + if s != o: + return False + + return True + return False
+ +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_modules/cloudvision/Connector/codec/decoder.html b/_modules/cloudvision/Connector/codec/decoder.html new file mode 100644 index 00000000..f964b799 --- /dev/null +++ b/_modules/cloudvision/Connector/codec/decoder.html @@ -0,0 +1,170 @@ + + + + + + + + cloudvision.Connector.codec.decoder — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +

Source code for cloudvision.Connector.codec.decoder

+# Copyright (c) 2020 Arista Networks, Inc.
+# Use of this source code is governed by the Apache License 2.0
+# that can be found in the COPYING file.
+
+import msgpack
+from .custom_types import Wildcard, WildcardType, FrozenDict, PointerType, Path
+__all__ = ["Decoder"]
+
+
+def pair_hook(data):
+    res = FrozenDict({
+        FrozenDict(k) if isinstance(k, dict) else k: v
+        for k, v in data
+    })
+    return res
+
+
+def ext_hook(code, data):
+    decoder = Decoder()
+    if code == PointerType:
+        return Path(keys=decoder.decode(data))
+    elif code == WildcardType:
+        return Wildcard()
+    return msgpack.ExtType(code, data)
+
+
+
+[docs] +class Decoder(object): + + def __init__(self): + self.__unpacker = msgpack.Unpacker(strict_map_key=False, + object_pairs_hook=pair_hook, + ext_hook=ext_hook) + +
+[docs] + def decode_array(self, arr): + return [self.__postProcess(v) for v in arr]
+ + +
+[docs] + def decode_map(self, m): + return FrozenDict({ + self.__postProcess(k): self.__postProcess(v) + for k, v in m.items() + })
+ + + def __postProcess(self, b): + if isinstance(b, bytes): + return b.decode('utf-8', 'replace') + elif isinstance(b, list): + return self.decode_array(b) + elif isinstance(b, (dict, FrozenDict)): + return self.decode_map(b) + else: + return b + +
+[docs] + def decode(self, buf): + self.__unpacker.feed(buf) + res = self.__unpacker.unpack() + return self.__postProcess(res)
+
+ +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_modules/cloudvision/Connector/codec/encoder.html b/_modules/cloudvision/Connector/codec/encoder.html new file mode 100644 index 00000000..eea6251f --- /dev/null +++ b/_modules/cloudvision/Connector/codec/encoder.html @@ -0,0 +1,172 @@ + + + + + + + + cloudvision.Connector.codec.encoder — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +

Source code for cloudvision.Connector.codec.encoder

+# Copyright (c) 2020 Arista Networks, Inc.
+# Use of this source code is governed by the Apache License 2.0
+# that can be found in the COPYING file.
+
+import msgpack
+import io
+from cloudvision.Connector.codec import Float32, PointerType, WildcardType
+from cloudvision.Connector.codec import Wildcard, Path, FrozenDict
+
+
+
+[docs] +class Encoder(object): + + def __init__(self): + self.__packer = msgpack.Packer(use_single_float=False) + self.__buffer = io.BytesIO() + +
+[docs] + def encode_string(self, s): + return self.__packer.pack(bytes(s, 'utf-8', 'replace'))
+ + +
+[docs] + def encode_array(self, a): + res = b"" + res += self.__packer.pack_array_header(len(a)) + res += b"".join(self.encode(val) for val in a) + return res
+ + +
+[docs] + def encode_map(self, m): + res = b"" + res += self.__packer.pack_map_header(len(m)) + dictItems = [] + for k, v in m.items(): + buf = b"".join((self.encode(k), self.encode(v))) + dictItems.append(buf) + res += b"".join(sorted(dictItems)) + return res
+ + +
+[docs] + def encode(self, val): + res = b"" + if isinstance(val, str): + res = self.encode_string(val) + elif isinstance(val, Float32): + res = msgpack.packb(val, use_single_float=True) + elif isinstance(val, list): + res = self.encode_array(val) + elif isinstance(val, (dict, FrozenDict)): + res = self.encode_map(val) + elif isinstance(val, Wildcard): + res = self.__packer.pack(msgpack.ExtType( + WildcardType, b"")) + elif isinstance(val, Path): + keys = self.encode(val._keys) + res = self.__packer.pack(msgpack.ExtType( + PointerType, keys)) + else: + res = self.__packer.pack(val) + return res
+
+ +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_modules/cloudvision/Connector/core/utils.html b/_modules/cloudvision/Connector/core/utils.html new file mode 100644 index 00000000..c385dfe8 --- /dev/null +++ b/_modules/cloudvision/Connector/core/utils.html @@ -0,0 +1,126 @@ + + + + + + + + cloudvision.Connector.core.utils — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +

Source code for cloudvision.Connector.core.utils

+# Copyright (c) 2023 Arista Networks, Inc.
+# Use of this source code is governed by the Apache License 2.0
+# that can be found in the COPYING file.
+
+"""Utility module."""
+
+
+from typing import Any, Dict
+
+
+
+[docs] +def get_dict(whatever: Any, default: Dict[Any, Any] = {}) -> Dict[Any, Any]: + """Get dictionary. + + :param whatever: Given object + :param default: Given default object (default is empty dict) + :return: A dictionary or the default value + """ + + if isinstance(whatever, dict): + return whatever + return default
+ +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_modules/cloudvision/Connector/gen/ca_pb2_grpc.html b/_modules/cloudvision/Connector/gen/ca_pb2_grpc.html new file mode 100644 index 00000000..0060d9c8 --- /dev/null +++ b/_modules/cloudvision/Connector/gen/ca_pb2_grpc.html @@ -0,0 +1,231 @@ + + + + + + + + cloudvision.Connector.gen.ca_pb2_grpc — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +

Source code for cloudvision.Connector.gen.ca_pb2_grpc

+# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
+"""Client and server classes corresponding to protobuf-defined services."""
+import grpc
+
+import ca_pb2 as ca__pb2
+
+
+
+[docs] +class CertificateAuthorityStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.Enroll = channel.unary_unary( + '/CertificateAuthority/Enroll', + request_serializer=ca__pb2.CSR.SerializeToString, + response_deserializer=ca__pb2.CRT.FromString, + ) + self.Reenroll = channel.unary_unary( + '/CertificateAuthority/Reenroll', + request_serializer=ca__pb2.CSR.SerializeToString, + response_deserializer=ca__pb2.CRT.FromString, + )
+ + + +
+[docs] +class CertificateAuthorityServicer(object): + """Missing associated documentation comment in .proto file.""" + +
+[docs] + def Enroll(self, request, context): + """Enroll is called by client passing Certificate Signing Request (CSR) + containing its personal certificate to be signed. The server returns + back the certificate (CRT) to authenticate into IngestGateway or Router. + """ + context.set_code(grpc.StatusCode.UNIMPLEMENTED) + context.set_details('Method not implemented!') + raise NotImplementedError('Method not implemented!')
+ + +
+[docs] + def Reenroll(self, request, context): + """Reenroll is called by client passing Certificate Signing Request (CSR) + when it wants to renew its personal certificate. The server returns + a new certificate (CRT). + """ + context.set_code(grpc.StatusCode.UNIMPLEMENTED) + context.set_details('Method not implemented!') + raise NotImplementedError('Method not implemented!')
+
+ + + +
+[docs] +def add_CertificateAuthorityServicer_to_server(servicer, server): + rpc_method_handlers = { + 'Enroll': grpc.unary_unary_rpc_method_handler( + servicer.Enroll, + request_deserializer=ca__pb2.CSR.FromString, + response_serializer=ca__pb2.CRT.SerializeToString, + ), + 'Reenroll': grpc.unary_unary_rpc_method_handler( + servicer.Reenroll, + request_deserializer=ca__pb2.CSR.FromString, + response_serializer=ca__pb2.CRT.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'CertificateAuthority', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class CertificateAuthority(object): + """Missing associated documentation comment in .proto file.""" + +
+[docs] + @staticmethod + def Enroll(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, '/CertificateAuthority/Enroll', + ca__pb2.CSR.SerializeToString, + ca__pb2.CRT.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def Reenroll(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, '/CertificateAuthority/Reenroll', + ca__pb2.CSR.SerializeToString, + ca__pb2.CRT.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_modules/cloudvision/Connector/gen/router_pb2_grpc.html b/_modules/cloudvision/Connector/gen/router_pb2_grpc.html new file mode 100644 index 00000000..7682a9bd --- /dev/null +++ b/_modules/cloudvision/Connector/gen/router_pb2_grpc.html @@ -0,0 +1,1391 @@ + + + + + + + + cloudvision.Connector.gen.router_pb2_grpc — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +

Source code for cloudvision.Connector.gen.router_pb2_grpc

+# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
+"""Client and server classes corresponding to protobuf-defined services."""
+import grpc
+
+from google.protobuf import empty_pb2 as google_dot_protobuf_dot_empty__pb2
+import notification_pb2 as notification__pb2
+import router_pb2 as router__pb2
+
+
+
+[docs] +class RouterV1Stub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.Publish = channel.unary_unary( + '/RouterV1/Publish', + request_serializer=router__pb2.PublishRequest.SerializeToString, + response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString, + ) + self.Subscribe = channel.unary_stream( + '/RouterV1/Subscribe', + request_serializer=router__pb2.SubscribeRequest.SerializeToString, + response_deserializer=notification__pb2.NotificationBatch.FromString, + ) + self.Get = channel.unary_stream( + '/RouterV1/Get', + request_serializer=router__pb2.GetRequest.SerializeToString, + response_deserializer=notification__pb2.NotificationBatch.FromString, + ) + self.GetAndSubscribe = channel.unary_stream( + '/RouterV1/GetAndSubscribe', + request_serializer=router__pb2.GetAndSubscribeRequest.SerializeToString, + response_deserializer=notification__pb2.NotificationBatch.FromString, + ) + self.GetDatasets = channel.unary_stream( + '/RouterV1/GetDatasets', + request_serializer=router__pb2.DatasetsRequest.SerializeToString, + response_deserializer=router__pb2.DatasetsResponse.FromString, + )
+ + + +
+[docs] +class RouterV1Servicer(object): + """Missing associated documentation comment in .proto file.""" + +
+[docs] + def Publish(self, request, context): + """Publish is used to send notifications to Cloudvision. + They will be saved into the storage and sent to all + the clients subscribing to the same device/path. + + * Publish guarantees atomicity of the data saved per {timestamp+path+key}. + For Notification => For one Notification having multiple keys, + each key is ensured to be saved atomically + but atomicity is not guaranteed for the entire notification. + For NotificationBatch => if Notif[1] and Notif[5] + both have updates for a {timestamp+path+key} + either the update of Notif[1] will be saved, or the update of Notif[5] will be saved. + The value will be one or the other, not a corrupted combination of both requests. + + * There is no guarantee for write order within a single publish request. + When sending multiple notifications where multiple notification will have + the same timestamp, path and keys, + Publish does not guarantee that Notif[1] will be processed before Notif[5] + This means that for two notifications in the same Publish call having the + same {timestamp+path+key}, the result is undefined and will randomly vary + (i.e. the first notif data will be saved, or the second one). + The client must send two synchronous Publish requests to guarantee + the write order at which the requests are processed. + + * Publish is asynchronous by default: + When the call to Publish ends without error, it means the data has been + correctly received by Cloudvision but not stored yet. + So, if a "get" call is done right after the Publish call, the get might + not return the data just published. + When the "sync" field is set to true in PublishRequest, the Publish + will be synchronous: + When the call to Publish ends without error, it means the data has been + correctly received AND stored by Cloudvision. + So, if a "get" call is done right after the synchronous Publish call, the get will + return the data just published (unless someone else stored more recent data of course). + + * Client-side and Server-side timestamping: + The notification object has a timestamp that can be populated by the client. + In case the Client sends a notification with a "null" timestamp as the + Notification.timestamp field, the server will populate the timestamp with + the current time of the node with the server process is running. + This "current time" will be queried once at the beginning of the Publish request + and will be used as the Notification.timestamp for all the notification having this field + as null. + """ + context.set_code(grpc.StatusCode.UNIMPLEMENTED) + context.set_details('Method not implemented!') + raise NotImplementedError('Method not implemented!')
+ + +
+[docs] + def Subscribe(self, request, context): + """Subscribe allows the client to request a live stream of updates + (V1: either based on regexp or exact match, V2: based on exact match) + + There is no order guarantee for batches received by subscribers. + It means that two batches A and B published synchronously (B is published after A) + the subscribers can receive batch A first or B second, OR batch B first and A second. + This is also true for notifications within a batch. + The backend can decide to split a batch and reorder notifications so subscribers + might receive notifications within a batch in a different order that they were published. + """ + context.set_code(grpc.StatusCode.UNIMPLEMENTED) + context.set_details('Method not implemented!') + raise NotImplementedError('Method not implemented!')
+ + +
+[docs] + def Get(self, request, context): + """Get is used to request notifications for a given path over a specified time range. + Wildcards are supported with Get requests, but when given a range of time the server + will resolve all wildcard paths at the starting timestamp of the given range, so any + pointers and/or paths that are created after the given start timestamp will not be + accounted for during wildcard resolution. The client may receive duplicate notifications. + """ + context.set_code(grpc.StatusCode.UNIMPLEMENTED) + context.set_details('Method not implemented!') + raise NotImplementedError('Method not implemented!')
+ + +
+[docs] + def GetAndSubscribe(self, request, context): + """GetAndSubscribe allows the client to issue one request to do both Get and Subscribe requests. + The server will first send a mix of subscribe and get batches, and there's no distinction + between which batches are subscribe or get batches. Then the server will send a sync signal + signaling that the Get stream has finished. After that, server will stream out only subscribe + batches. There's no order guarantee for batches received by client. + The end of get stream sync signal will be in the Metadata field in the NotificationBatch, as + 1 key, value pair: [GetRequest:EOF]. If there are batches returned from Get request, this + metadata will be in the last Get batch; if there's no results from Get, it will be sent + in an empty NotificationBatch with only the Metadata field. + """ + context.set_code(grpc.StatusCode.UNIMPLEMENTED) + context.set_details('Method not implemented!') + raise NotImplementedError('Method not implemented!')
+ + +
+[docs] + def GetDatasets(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_RouterV1Servicer_to_server(servicer, server): + rpc_method_handlers = { + 'Publish': grpc.unary_unary_rpc_method_handler( + servicer.Publish, + request_deserializer=router__pb2.PublishRequest.FromString, + response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString, + ), + 'Subscribe': grpc.unary_stream_rpc_method_handler( + servicer.Subscribe, + request_deserializer=router__pb2.SubscribeRequest.FromString, + response_serializer=notification__pb2.NotificationBatch.SerializeToString, + ), + 'Get': grpc.unary_stream_rpc_method_handler( + servicer.Get, + request_deserializer=router__pb2.GetRequest.FromString, + response_serializer=notification__pb2.NotificationBatch.SerializeToString, + ), + 'GetAndSubscribe': grpc.unary_stream_rpc_method_handler( + servicer.GetAndSubscribe, + request_deserializer=router__pb2.GetAndSubscribeRequest.FromString, + response_serializer=notification__pb2.NotificationBatch.SerializeToString, + ), + 'GetDatasets': grpc.unary_stream_rpc_method_handler( + servicer.GetDatasets, + request_deserializer=router__pb2.DatasetsRequest.FromString, + response_serializer=router__pb2.DatasetsResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'RouterV1', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class RouterV1(object): + """Missing associated documentation comment in .proto file.""" + +
+[docs] + @staticmethod + def Publish(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, '/RouterV1/Publish', + router__pb2.PublishRequest.SerializeToString, + google_dot_protobuf_dot_empty__pb2.Empty.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[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, '/RouterV1/Subscribe', + router__pb2.SubscribeRequest.SerializeToString, + notification__pb2.NotificationBatch.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def Get(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, '/RouterV1/Get', + router__pb2.GetRequest.SerializeToString, + notification__pb2.NotificationBatch.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetAndSubscribe(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, '/RouterV1/GetAndSubscribe', + router__pb2.GetAndSubscribeRequest.SerializeToString, + notification__pb2.NotificationBatch.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetDatasets(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, '/RouterV1/GetDatasets', + router__pb2.DatasetsRequest.SerializeToString, + router__pb2.DatasetsResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class AuthStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.CreateDataset = channel.unary_unary( + '/Auth/CreateDataset', + request_serializer=router__pb2.CreateDatasetRequest.SerializeToString, + response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString, + ) + self.SetPermission = channel.unary_unary( + '/Auth/SetPermission', + request_serializer=router__pb2.SetPermissionRequest.SerializeToString, + response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString, + ) + self.GetPermissionSet = channel.unary_stream( + '/Auth/GetPermissionSet', + request_serializer=router__pb2.GetRequest.SerializeToString, + response_deserializer=router__pb2.PermissionSet.FromString, + ) + self.SetPassword = channel.unary_unary( + '/Auth/SetPassword', + request_serializer=router__pb2.SetPasswordRequest.SerializeToString, + response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString, + ) + self.CreateSession = channel.unary_stream( + '/Auth/CreateSession', + request_serializer=router__pb2.CreateSessionRequest.SerializeToString, + response_deserializer=router__pb2.CreateSessionResponse.FromString, + )
+ + + +
+[docs] +class AuthServicer(object): + """Missing associated documentation comment in .proto file.""" + +
+[docs] + def CreateDataset(self, request, context): + """CreateDataset from a given Dataset wrapped in a CreateDatasetRequest + """ + context.set_code(grpc.StatusCode.UNIMPLEMENTED) + context.set_details('Method not implemented!') + raise NotImplementedError('Method not implemented!')
+ + +
+[docs] + def SetPermission(self, request, context): + """SetPermission sets a permission for a dataset using a SetPermissionRequest. + """ + context.set_code(grpc.StatusCode.UNIMPLEMENTED) + context.set_details('Method not implemented!') + raise NotImplementedError('Method not implemented!')
+ + +
+[docs] + def GetPermissionSet(self, request, context): + """GetPermissionSet returns the set of all permissions present for the datasets specified + in the 'query'(s) of the GetRequest. + """ + context.set_code(grpc.StatusCode.UNIMPLEMENTED) + context.set_details('Method not implemented!') + raise NotImplementedError('Method not implemented!')
+ + +
+[docs] + def SetPassword(self, request, context): + """SetPassword sets the password for a user. + """ + context.set_code(grpc.StatusCode.UNIMPLEMENTED) + context.set_details('Method not implemented!') + raise NotImplementedError('Method not implemented!')
+ + +
+[docs] + def CreateSession(self, request, context): + """CreateSession creates session for user + """ + context.set_code(grpc.StatusCode.UNIMPLEMENTED) + context.set_details('Method not implemented!') + raise NotImplementedError('Method not implemented!')
+
+ + + +
+[docs] +def add_AuthServicer_to_server(servicer, server): + rpc_method_handlers = { + 'CreateDataset': grpc.unary_unary_rpc_method_handler( + servicer.CreateDataset, + request_deserializer=router__pb2.CreateDatasetRequest.FromString, + response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString, + ), + 'SetPermission': grpc.unary_unary_rpc_method_handler( + servicer.SetPermission, + request_deserializer=router__pb2.SetPermissionRequest.FromString, + response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString, + ), + 'GetPermissionSet': grpc.unary_stream_rpc_method_handler( + servicer.GetPermissionSet, + request_deserializer=router__pb2.GetRequest.FromString, + response_serializer=router__pb2.PermissionSet.SerializeToString, + ), + 'SetPassword': grpc.unary_unary_rpc_method_handler( + servicer.SetPassword, + request_deserializer=router__pb2.SetPasswordRequest.FromString, + response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString, + ), + 'CreateSession': grpc.unary_stream_rpc_method_handler( + servicer.CreateSession, + request_deserializer=router__pb2.CreateSessionRequest.FromString, + response_serializer=router__pb2.CreateSessionResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'Auth', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class Auth(object): + """Missing associated documentation comment in .proto file.""" + +
+[docs] + @staticmethod + def CreateDataset(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, '/Auth/CreateDataset', + router__pb2.CreateDatasetRequest.SerializeToString, + google_dot_protobuf_dot_empty__pb2.Empty.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SetPermission(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, '/Auth/SetPermission', + router__pb2.SetPermissionRequest.SerializeToString, + google_dot_protobuf_dot_empty__pb2.Empty.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def GetPermissionSet(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, '/Auth/GetPermissionSet', + router__pb2.GetRequest.SerializeToString, + router__pb2.PermissionSet.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SetPassword(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, '/Auth/SetPassword', + router__pb2.SetPasswordRequest.SerializeToString, + google_dot_protobuf_dot_empty__pb2.Empty.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def CreateSession(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, '/Auth/CreateSession', + router__pb2.CreateSessionRequest.SerializeToString, + router__pb2.CreateSessionResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class SearchStub(object): + """Search provides methods to query CloudVision using the Search service. + """ + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.Search = channel.unary_stream( + '/Search/Search', + request_serializer=router__pb2.SearchRequest.SerializeToString, + response_deserializer=notification__pb2.NotificationBatch.FromString, + ) + self.SearchSubscribe = channel.unary_stream( + '/Search/SearchSubscribe', + request_serializer=router__pb2.SearchRequest.SerializeToString, + response_deserializer=notification__pb2.NotificationBatch.FromString, + ) + self.SearchWithAggregation = channel.unary_unary( + '/Search/SearchWithAggregation', + request_serializer=router__pb2.SearchRequestWithAggr.SerializeToString, + response_deserializer=router__pb2.AggrResponse.FromString, + ) + self.SearchWithAggregationStream = channel.unary_stream( + '/Search/SearchWithAggregationStream', + request_serializer=router__pb2.SearchRequestWithAggr.SerializeToString, + response_deserializer=router__pb2.ByteStream.FromString, + ) + self.SetCustomSchema = channel.unary_unary( + '/Search/SetCustomSchema', + request_serializer=router__pb2.CustomIndexSchema.SerializeToString, + response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString, + ) + self.DeleteCustomSchema = channel.unary_unary( + '/Search/DeleteCustomSchema', + request_serializer=router__pb2.CustomIndexSchemaDel.SerializeToString, + response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString, + )
+ + + +
+[docs] +class SearchServicer(object): + """Search provides methods to query CloudVision using the Search service. + """ + +
+[docs] + def Search(self, request, context): + """you know, for search... + """ + context.set_code(grpc.StatusCode.UNIMPLEMENTED) + context.set_details('Method not implemented!') + raise NotImplementedError('Method not implemented!')
+ + +
+[docs] + def SearchSubscribe(self, request, context): + """SearchSubscribe allows the client to request a live stream of updates + based on client search request + """ + context.set_code(grpc.StatusCode.UNIMPLEMENTED) + context.set_details('Method not implemented!') + raise NotImplementedError('Method not implemented!')
+ + +
+[docs] + def SearchWithAggregation(self, request, context): + """for search with aggregation + """ + context.set_code(grpc.StatusCode.UNIMPLEMENTED) + context.set_details('Method not implemented!') + raise NotImplementedError('Method not implemented!')
+ + +
+[docs] + def SearchWithAggregationStream(self, request, context): + """SearchWithAggregationStream sends the protobuf-serialized form of AggrResponse as in a stream + of byteArrays. Receiver needs to append the "bytearrays", and protobuf-deserialize + to obtain the result. Intended for messages exceeding the grpc size limit + """ + context.set_code(grpc.StatusCode.UNIMPLEMENTED) + context.set_details('Method not implemented!') + raise NotImplementedError('Method not implemented!')
+ + +
+[docs] + def SetCustomSchema(self, request, context): + """for custom schema configuration + """ + context.set_code(grpc.StatusCode.UNIMPLEMENTED) + context.set_details('Method not implemented!') + raise NotImplementedError('Method not implemented!')
+ + +
+[docs] + def DeleteCustomSchema(self, request, context): + """for custom schema deletion + This is alpha version of this api and doesn't synchronize across apiserver instances. + apiserver restart is needed to get updated schema information from hbase. + """ + context.set_code(grpc.StatusCode.UNIMPLEMENTED) + context.set_details('Method not implemented!') + raise NotImplementedError('Method not implemented!')
+
+ + + +
+[docs] +def add_SearchServicer_to_server(servicer, server): + rpc_method_handlers = { + 'Search': grpc.unary_stream_rpc_method_handler( + servicer.Search, + request_deserializer=router__pb2.SearchRequest.FromString, + response_serializer=notification__pb2.NotificationBatch.SerializeToString, + ), + 'SearchSubscribe': grpc.unary_stream_rpc_method_handler( + servicer.SearchSubscribe, + request_deserializer=router__pb2.SearchRequest.FromString, + response_serializer=notification__pb2.NotificationBatch.SerializeToString, + ), + 'SearchWithAggregation': grpc.unary_unary_rpc_method_handler( + servicer.SearchWithAggregation, + request_deserializer=router__pb2.SearchRequestWithAggr.FromString, + response_serializer=router__pb2.AggrResponse.SerializeToString, + ), + 'SearchWithAggregationStream': grpc.unary_stream_rpc_method_handler( + servicer.SearchWithAggregationStream, + request_deserializer=router__pb2.SearchRequestWithAggr.FromString, + response_serializer=router__pb2.ByteStream.SerializeToString, + ), + 'SetCustomSchema': grpc.unary_unary_rpc_method_handler( + servicer.SetCustomSchema, + request_deserializer=router__pb2.CustomIndexSchema.FromString, + response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString, + ), + 'DeleteCustomSchema': grpc.unary_unary_rpc_method_handler( + servicer.DeleteCustomSchema, + request_deserializer=router__pb2.CustomIndexSchemaDel.FromString, + response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'Search', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. + + + + +
+[docs] +class AlphaStub(object): + """Alpha services are deprecated. Please use SearchV1 + """ + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.Search = channel.unary_stream( + '/Alpha/Search', + request_serializer=router__pb2.SearchRequest.SerializeToString, + response_deserializer=notification__pb2.NotificationBatch.FromString, + ) + self.SearchSubscribe = channel.unary_stream( + '/Alpha/SearchSubscribe', + request_serializer=router__pb2.SearchRequest.SerializeToString, + response_deserializer=notification__pb2.NotificationBatch.FromString, + ) + self.SearchWithAggregation = channel.unary_unary( + '/Alpha/SearchWithAggregation', + request_serializer=router__pb2.SearchRequestWithAggr.SerializeToString, + response_deserializer=router__pb2.AggrResponse.FromString, + ) + self.SearchWithAggregationStream = channel.unary_stream( + '/Alpha/SearchWithAggregationStream', + request_serializer=router__pb2.SearchRequestWithAggr.SerializeToString, + response_deserializer=router__pb2.ByteStream.FromString, + ) + self.SetCustomSchema = channel.unary_unary( + '/Alpha/SetCustomSchema', + request_serializer=router__pb2.CustomIndexSchema.SerializeToString, + response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString, + ) + self.DeleteCustomSchema = channel.unary_unary( + '/Alpha/DeleteCustomSchema', + request_serializer=router__pb2.CustomIndexSchemaDel.SerializeToString, + response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString, + )
+ + + +
+[docs] +class AlphaServicer(object): + """Alpha services are deprecated. Please use SearchV1 + """ + +
+[docs] + def Search(self, request, context): + """you know, for search... + """ + context.set_code(grpc.StatusCode.UNIMPLEMENTED) + context.set_details('Method not implemented!') + raise NotImplementedError('Method not implemented!')
+ + +
+[docs] + def SearchSubscribe(self, request, context): + """SearchSubscribe allows the client to request a live stream of updates + based on client search request + """ + context.set_code(grpc.StatusCode.UNIMPLEMENTED) + context.set_details('Method not implemented!') + raise NotImplementedError('Method not implemented!')
+ + +
+[docs] + def SearchWithAggregation(self, request, context): + """for search with aggregation + """ + context.set_code(grpc.StatusCode.UNIMPLEMENTED) + context.set_details('Method not implemented!') + raise NotImplementedError('Method not implemented!')
+ + +
+[docs] + def SearchWithAggregationStream(self, request, context): + """SearchWithAggregationStream sends the protobuf-serialized form of AggrResponse as in a stream + of byteArrays. Receiver needs to append the "bytearrays", and protobuf-deserialize + to obtain the result. Intended for messages exceeding the grpc size limit + """ + context.set_code(grpc.StatusCode.UNIMPLEMENTED) + context.set_details('Method not implemented!') + raise NotImplementedError('Method not implemented!')
+ + +
+[docs] + def SetCustomSchema(self, request, context): + """for custom schema configuration + """ + context.set_code(grpc.StatusCode.UNIMPLEMENTED) + context.set_details('Method not implemented!') + raise NotImplementedError('Method not implemented!')
+ + +
+[docs] + def DeleteCustomSchema(self, request, context): + """for custom schema deletion + This is alpha version of this api and doesn't synchronize across apiserver instances. + apiserver restart is needed to get updated schema information from hbase. + """ + context.set_code(grpc.StatusCode.UNIMPLEMENTED) + context.set_details('Method not implemented!') + raise NotImplementedError('Method not implemented!')
+
+ + + +
+[docs] +def add_AlphaServicer_to_server(servicer, server): + rpc_method_handlers = { + 'Search': grpc.unary_stream_rpc_method_handler( + servicer.Search, + request_deserializer=router__pb2.SearchRequest.FromString, + response_serializer=notification__pb2.NotificationBatch.SerializeToString, + ), + 'SearchSubscribe': grpc.unary_stream_rpc_method_handler( + servicer.SearchSubscribe, + request_deserializer=router__pb2.SearchRequest.FromString, + response_serializer=notification__pb2.NotificationBatch.SerializeToString, + ), + 'SearchWithAggregation': grpc.unary_unary_rpc_method_handler( + servicer.SearchWithAggregation, + request_deserializer=router__pb2.SearchRequestWithAggr.FromString, + response_serializer=router__pb2.AggrResponse.SerializeToString, + ), + 'SearchWithAggregationStream': grpc.unary_stream_rpc_method_handler( + servicer.SearchWithAggregationStream, + request_deserializer=router__pb2.SearchRequestWithAggr.FromString, + response_serializer=router__pb2.ByteStream.SerializeToString, + ), + 'SetCustomSchema': grpc.unary_unary_rpc_method_handler( + servicer.SetCustomSchema, + request_deserializer=router__pb2.CustomIndexSchema.FromString, + response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString, + ), + 'DeleteCustomSchema': grpc.unary_unary_rpc_method_handler( + servicer.DeleteCustomSchema, + request_deserializer=router__pb2.CustomIndexSchemaDel.FromString, + response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'Alpha', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class Alpha(object): + """Alpha services are deprecated. Please use SearchV1 + """ + +
+[docs] + @staticmethod + def Search(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, '/Alpha/Search', + router__pb2.SearchRequest.SerializeToString, + notification__pb2.NotificationBatch.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SearchSubscribe(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, '/Alpha/SearchSubscribe', + router__pb2.SearchRequest.SerializeToString, + notification__pb2.NotificationBatch.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SearchWithAggregation(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, '/Alpha/SearchWithAggregation', + router__pb2.SearchRequestWithAggr.SerializeToString, + router__pb2.AggrResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SearchWithAggregationStream(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, '/Alpha/SearchWithAggregationStream', + router__pb2.SearchRequestWithAggr.SerializeToString, + router__pb2.ByteStream.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def SetCustomSchema(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, '/Alpha/SetCustomSchema', + router__pb2.CustomIndexSchema.SerializeToString, + google_dot_protobuf_dot_empty__pb2.Empty.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+ + +
+[docs] + @staticmethod + def DeleteCustomSchema(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, '/Alpha/DeleteCustomSchema', + router__pb2.CustomIndexSchemaDel.SerializeToString, + google_dot_protobuf_dot_empty__pb2.Empty.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class QuerierStub(object): + """Missing associated documentation comment in .proto file.""" + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.SQL = channel.unary_stream( + '/Querier/SQL', + request_serializer=router__pb2.SQLRequest.SerializeToString, + response_deserializer=router__pb2.SQLResponse.FromString, + )
+ + + +
+[docs] +class QuerierServicer(object): + """Missing associated documentation comment in .proto file.""" + +
+[docs] + def SQL(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_QuerierServicer_to_server(servicer, server): + rpc_method_handlers = { + 'SQL': grpc.unary_stream_rpc_method_handler( + servicer.SQL, + request_deserializer=router__pb2.SQLRequest.FromString, + response_serializer=router__pb2.SQLResponse.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'Querier', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class Querier(object): + """Missing associated documentation comment in .proto file.""" + +
+[docs] + @staticmethod + def SQL(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, '/Querier/SQL', + router__pb2.SQLRequest.SerializeToString, + router__pb2.SQLResponse.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ + + +
+[docs] +class ClusterStub(object): + """Cluster service gives some descriptions about the cluster where the service + is running. + """ + + def __init__(self, channel): + """Constructor. + + Args: + channel: A grpc.Channel. + """ + self.ClusterInfo = channel.unary_stream( + '/Cluster/ClusterInfo', + request_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString, + response_deserializer=router__pb2.ClusterDescription.FromString, + )
+ + + +
+[docs] +class ClusterServicer(object): + """Cluster service gives some descriptions about the cluster where the service + is running. + """ + +
+[docs] + def ClusterInfo(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_ClusterServicer_to_server(servicer, server): + rpc_method_handlers = { + 'ClusterInfo': grpc.unary_stream_rpc_method_handler( + servicer.ClusterInfo, + request_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString, + response_serializer=router__pb2.ClusterDescription.SerializeToString, + ), + } + generic_handler = grpc.method_handlers_generic_handler( + 'Cluster', rpc_method_handlers) + server.add_generic_rpc_handlers((generic_handler,))
+ + + + # This class is part of an EXPERIMENTAL API. +
+[docs] +class Cluster(object): + """Cluster service gives some descriptions about the cluster where the service + is running. + """ + +
+[docs] + @staticmethod + def ClusterInfo(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, '/Cluster/ClusterInfo', + google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString, + router__pb2.ClusterDescription.FromString, + options, channel_credentials, + insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
+
+ +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_modules/cloudvision/Connector/grpc_client/grpcClient.html b/_modules/cloudvision/Connector/grpc_client/grpcClient.html new file mode 100644 index 00000000..8798063c --- /dev/null +++ b/_modules/cloudvision/Connector/grpc_client/grpcClient.html @@ -0,0 +1,608 @@ + + + + + + + + cloudvision.Connector.grpc_client.grpcClient — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +

Source code for cloudvision.Connector.grpc_client.grpcClient

+# Copyright (c) 2020 Arista Networks, Inc.
+# Use of this source code is governed by the Apache License 2.0
+# that can be found in the COPYING file.
+
+from argparse import ArgumentError
+from datetime import datetime
+from typing import Any, Dict, Iterable, List, Optional, Tuple, Union
+
+import grpc
+from google.protobuf import timestamp_pb2 as pbts
+from google.protobuf.empty_pb2 import Empty
+
+from cloudvision import __version__ as version
+from cloudvision.Connector import codec
+from cloudvision.Connector.auth.cert import gen_csr_der
+from cloudvision.Connector.core.utils import get_dict
+from cloudvision.Connector.gen import ca_pb2 as ca
+from cloudvision.Connector.gen import ca_pb2_grpc as ca_client
+from cloudvision.Connector.gen import notification_pb2 as ntf
+from cloudvision.Connector.gen import router_pb2 as rtr
+from cloudvision.Connector.gen import router_pb2_grpc as rtr_client
+
+TIME_TYPE = Union[pbts.Timestamp, datetime]
+UPDATE_TYPE = Tuple[Any, Any]
+UPDATES_TYPE = List[UPDATE_TYPE]
+DEFAULT_DELETE_AFTER_DAYS = 34
+DATASET_TYPE_DEVICE = "device"
+
+
+
+[docs] +def to_pbts(ts: TIME_TYPE) -> pbts.Timestamp: + if isinstance(ts, datetime): + x = pbts.Timestamp() + x.FromDatetime(ts) # type: ignore + return x + elif isinstance(ts, pbts.Timestamp): + return ts + else: + raise TypeError("timestamp must be a datetime or protobuf timestamp")
+ + + +
+[docs] +def create_query(pathKeys: List[Any], dId: str, dtype: str = DATASET_TYPE_DEVICE) -> rtr.Query: + """ + create_query creates a protobuf query message with dataset ID dId + and dataset type dtype. + pathKeys must be of the form [([pathElts...], [keys...])...] + """ + encoder = codec.Encoder() + paths = [ + rtr.Path( + keys=[encoder.encode(k) for k in keys], + path_elements=[encoder.encode(elt) for elt in path], + ) + for path, keys in pathKeys + if keys is not None + ] + return rtr.Query( + dataset=ntf.Dataset(type=dtype, name=dId), + paths=paths, + )
+ + + +
+[docs] +def create_notification( + ts: TIME_TYPE, + paths: List[Any], + deletes: Optional[List[Any]] = None, + updates: Optional[UPDATES_TYPE] = None, + retracts: Optional[List[Any]] = None, +) -> ntf.Notification: + """ + create_notification creates a notification protobuf message. + ts must be a google.protobuf.timestamp_pb2.Timestamp or a + python datetime object. + paths must be a list of path elements. + deletes and retracts, if present, must be lists of keys. + updates, if present, must be of the form [(key, value)...]. + """ + proto_ts = to_pbts(ts) + encoder = codec.Encoder() + # An empty list would mean deleteAll so there is a need to distinguish between empty and None + deleteAll = False + dels = None + if deletes is not None and not deletes: + # Passed deletes is an empty list, e.g. deleteAll + deleteAll = True + elif deletes: + dels = [encoder.encode(d) for d in deletes] + + upds = None + if updates is not None: + upds = [ntf.Notification.Update(key=encoder.encode(k), + value=encoder.encode(v)) for k, v in updates] + rets = None + if retracts is not None: + rets = [encoder.encode(r) for r in retracts] + + pathElts = [encoder.encode(elt) for elt in paths] + return ntf.Notification( + timestamp=proto_ts, + delete_all=deleteAll, + deletes=dels, + updates=upds, + retracts=rets, + path_elements=pathElts, + )
+ + + +
+[docs] +class GRPCClient(object): + """ + GRPCClient implements the protobuf client as well as its methods. + grpcAddr must be a valid apiserver address in the format <ADDRESS>:<PORT>. + certs, if present, must be the path to the cert file. + key, if present, must be the path to a .pem key file. + ca, if present, must be the path to a root certificate authority file. + token, if present, must be the path a .tok user access token. + tokenValue, if present, is the actual token in string form. Cannot be set with token + certsValue, if present, is the actual certs in string form. Cannot be set with certs + keyValue, if present, is the actual key in string form. Cannot be set with key + caValue, if present, is the actual ca in string form. Cannot be set with ca + """ + + AUTH_KEY_PATH = "access_token" + DEFAULT_CHANNEL_OPTIONS = { + "grpc.primary_user_agent": f"cloudvision.Connector/{version}", + # 60 seconds + "grpc.keepalive_time_ms": 60000, + # 0 means infinite, as keepalive_time_ms is 60 seconds client will send 1 ping every minute + "grpc.http2.max_pings_without_data": 0, + } + + def __init__( + self, + grpcAddr: str, + *, + certs: Optional[str] = None, + key: Optional[str] = None, + ca: Optional[str] = None, + token: Optional[str] = None, + tokenValue: Optional[str] = None, + certsValue: Optional[str] = None, + keyValue: Optional[str] = None, + caValue: Optional[str] = None, + channel_options: Dict[str, Any] = {}, + ) -> None: + # used to store the auth token for per request auth + self.metadata = None + # create a channel option by merging the default channel options and the user provided one + # NOTE: default options will be overriden if provided by the user + channel_options = get_dict(channel_options) + self.channel_options = [ + (k, v) for k, v in dict(GRPCClient.DEFAULT_CHANNEL_OPTIONS, **channel_options).items() + ] + + if (certs is None or key is None) and (token is None and tokenValue is None): + self.channel = grpc.insecure_channel(grpcAddr, options=self.channel_options) + else: + tokCreds = None + if token or tokenValue: + if token and tokenValue: + raise ArgumentError(None, "Cannot supply both token and token value") + tokData = "" + if token: + with open(token, 'r') as f: + tokData = f.read().strip() + elif tokenValue: + # need the elif to validate that tokenValue is string for typing + tokData = tokenValue + tokCreds = grpc.access_token_call_credentials(tokData) + self.metadata = ( + ( + self.AUTH_KEY_PATH, + tokData, + ), + ) + + certData = None + if certs or certsValue: + if certs and certsValue: + raise ArgumentError(None, "Cannot supply both certs and certs value") + if certs: + with open(certs, 'rb') as cf: + certData = cf.read() + elif certsValue: + certData = certsValue.encode('utf-8') + keyData = None + if key or keyValue: + if key and keyValue: + raise ArgumentError(None, "Cannot supply both key and key value") + if key: + with open(key, 'rb') as kf: + keyData = kf.read() + elif keyValue: + keyData = keyValue.encode('utf-8') + caData = None + if ca or caValue: + if ca and caValue: + raise ArgumentError(None, "Cannot supply both ca and ca value") + if ca: + with open(ca, 'rb') as cf: + caData = cf.read() + elif caValue: + caData = caValue.encode('utf-8') + + creds = grpc.ssl_channel_credentials( + certificate_chain=certData, + private_key=keyData, + root_certificates=caData, + ) + + if tokCreds: + creds = grpc.composite_channel_credentials(creds, tokCreds) + + self.channel = grpc.secure_channel(grpcAddr, creds, options=self.channel_options) + self.__client = rtr_client.RouterV1Stub(self.channel) + self.__auth_client = rtr_client.AuthStub(self.channel) + self.__search_client = rtr_client.SearchStub(self.channel) + self.__ca_client = ca_client.CertificateAuthorityStub(self.channel) + + self.encoder = codec.Encoder() + self.decoder = codec.Decoder() + + # Make GRPCClient usable with `with` statement + def __enter__(self): + return self + + def __exit__(self, type, value, traceback): + return self.channel.__exit__(type, value, traceback) + +
+[docs] + def close(self): + self.channel.close()
+ + +
+[docs] + def get( + self, + queries: List[rtr.Query], + start: Optional[TIME_TYPE] = None, + end: Optional[TIME_TYPE] = None, + versions=0, + sharding=None, + exact_range=False, + ): + """ + Get creates and executes a Get protobuf message, returning a stream of + notificationBatch. + queries must be a list of querry protobuf messages. + start and end, if present, must be nanoseconds timestamps (uint64). + sharding, if present must be a protobuf sharding message. + """ + end_ts = 0 + start_ts = 0 + if end: + end_ts = to_pbts(end).ToNanoseconds() + + if start: + start_ts = to_pbts(start).ToNanoseconds() + + request = rtr.GetRequest( + query=queries, + start=start_ts, + end=end_ts, + versions=versions, + sharded_sub=sharding, + exact_range=exact_range, + ) + stream = self.__client.Get(request, metadata=self.metadata) + return (self.decode_batch(nb) for nb in stream)
+ + +
+[docs] + def subscribe(self, queries, sharding=None): + """ + Subscribe creates and executes a Subscribe protobuf message, + returning a stream of notificationBatch. + queries must be a list of querry protobuf messages. + sharding, if present must be a protobuf sharding message. + """ + + req = rtr.SubscribeRequest( + query=queries, + sharded_sub=sharding, + ) + stream = self.__client.Subscribe(req, metadata=self.metadata) + return (self.decode_batch(nb) for nb in stream)
+ + +
+[docs] + def publish( + self, + dId, + notifs: List[ntf.Notification], + dtype: str = DATASET_TYPE_DEVICE, + sync: bool = True, + compare: Optional[UPDATE_TYPE] = None, + ) -> None: + """ + Publish creates and executes a Publish protobuf message. + refer to cloudvision/Connector/protobufs/router.proto:124 + default to sync publish being true so that changes are reflected + """ + comp_pb = None + if compare: + key = compare[0] + value = compare[1] + comp_pb = ntf.Notification.Update( + key=self.encoder.encode(key), + value=self.encoder.encode(value), + ) + + req = rtr.PublishRequest( + batch=ntf.NotificationBatch( + d=DATASET_TYPE_DEVICE, + dataset=ntf.Dataset(type=dtype, name=dId), + notifications=notifs, + ), + sync=sync, + compare=comp_pb, + ) + self.__client.Publish(req, metadata=self.metadata)
+ + +
+[docs] + def get_datasets(self, types: Optional[List[str]] = None): + """ + GetDatasets retrieves all the datasets streaming on CloudVision. + types, if present, filter the queried dataset by types + """ + req = rtr.DatasetsRequest( + types=types, + ) + stream = self.__client.GetDatasets(req, metadata=self.metadata) + return stream
+ + +
+[docs] + def create_dataset(self, dtype, dId) -> None: + req = rtr.CreateDatasetRequest( + dataset=ntf.Dataset(type=dtype, name=dId), + ) + self.__auth_client.CreateDataset(req, metadata=self.metadata)
+ + +
+[docs] + def decode_batch(self, batch): + res = { + "dataset": { + "name": batch.dataset.name, + "type": batch.dataset.type, + }, + "notifications": [self.decode_notification(n) for n in batch.notifications], + } + return res
+ + +
+[docs] + def decode_notification(self, notif): + res = { + "timestamp": notif.timestamp, + "deletes": [self.decoder.decode(d) for d in notif.deletes], + "updates": {self.decoder.decode(u.key): + self.decoder.decode(u.value) for u in notif.updates}, + "retracts": [self.decoder.decode(r) for r in notif.retracts], + "path_elements": [self.decoder.decode(elt) for elt in notif.path_elements], + } + return res
+ + +
+[docs] + def search( + self, + search_type=rtr.SearchRequest.CUSTOM, + d_type: str = DATASET_TYPE_DEVICE, + d_name: str = "", + result_size: int = 1, + start: Optional[TIME_TYPE] = None, + end: Optional[TIME_TYPE] = None, + path_elements=[], + key_filters: Iterable[rtr.Filter] = [], + value_filters: Iterable[rtr.Filter] = [], + exact_range: bool = False, + offset: int = 0, + exact_term: bool = False, + sort: Iterable[rtr.Sort] = [], + count_only: bool = False, + ): + start_ts = to_pbts(start).ToNanoseconds() if start else 0 + end_ts = to_pbts(end).ToNanoseconds() if end else 0 + encoded_path_elements = [self.encoder.encode(x) for x in path_elements] + req = rtr.SearchRequest( + search_type=search_type, + start=start_ts, + end=end_ts, + query=[ + rtr.Query( + dataset=ntf.Dataset(type=d_type, name=d_name), + paths=[ + rtr.Path(path_elements=encoded_path_elements), + ], + ), + ], + result_size=result_size, + key_filters=key_filters, + value_filters=value_filters, + exact_range=exact_range, + offset=offset, + exact_term=exact_term, + sort=sort, + count_only=count_only, + ) + res = self.__search_client.Search(req) + return (self.decode_batch(nb) for nb in res)
+ + +
+[docs] + def set_custom_schema( + self, + d_name: str, + path_elements: Iterable[str], + schema: Iterable[rtr.IndexField], + delete_after_days: int = DEFAULT_DELETE_AFTER_DAYS, + d_type: str = DATASET_TYPE_DEVICE, + ) -> Empty: + """Set custom index schema for given path. + + :param d_name: Dataset name on aeris + :param path_elements: Path elements for which schema needs to be set + :param schema: Schema to be set + :param delete_after_days: Number of days after which data would be deleted + :param d_type: Type of the dataset + :return: Empty message + """ + req = self.create_custom_schema_index_request( + d_name, path_elements, schema, delete_after_days, d_type) + return self.__search_client.SetCustomSchema(req)
+ + +
+[docs] + def create_custom_schema_index_request( + self, + d_name, + path_elements, schema, + delete_after_days, d_type + ) -> rtr.CustomIndexSchema: + """Create custom index schema request from given imputs. + + :param d_name: Dataset name on aeris + :param path_elements: Path elements for which schema needs to be set + :param schema: Schema to be set + :param delete_after_days: Number of days after which data would be deleted + :param d_type: Type of the dataset + :return: Custom index schema request + """ + encoded_path_elements = [self.encoder.encode(x) for x in path_elements] + req = rtr.CustomIndexSchema( + query=rtr.Query + ( + dataset=ntf.Dataset(type=d_type, name=d_name), + paths=[rtr.Path(path_elements=encoded_path_elements)], + ), + schema=schema, + option=rtr.CustomIndexOptions(delete_after_days=delete_after_days) + ) + return req
+ + +
+[docs] + def reenroll(self, cert_path: str, key_path: str) -> bytes: + """Reenroll the existing certificate. + + Caller can pass their current key and certificate and receive a renewed + certificate in return. + The default validity of the renewed certificate is 90 days. + + :param cert_path: Certificate file path + :param key_path: Private Key file path + :return: Renewed Certificate in ASN.1 DER + """ + + csr_der: bytes = gen_csr_der(cert_path, key_path) + crt = self.__ca_client.Reenroll(ca.CSR(csr=csr_der)) + return crt.crt
+
+ +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_modules/cloudvision/cvlib/action.html b/_modules/cloudvision/cvlib/action.html new file mode 100644 index 00000000..56087b8c --- /dev/null +++ b/_modules/cloudvision/cvlib/action.html @@ -0,0 +1,175 @@ + + + + + + + + cloudvision.cvlib.action — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +

Source code for cloudvision.cvlib.action

+# Copyright (c) 2022 Arista Networks, Inc.
+# Use of this source code is governed by the Apache License 2.0
+# that can be found in the COPYING file.
+
+from enum import Enum
+from typing import Dict, Optional
+
+from cloudvision.Connector.grpc_client import GRPCClient
+
+from .utils import queryCCStartTime
+
+
+
+[docs] +class ActionContext(Enum): + ''' + Enum class used to store the various contexts in which actions are executed in + ''' + Unknown = 0 + ChangeControl = 1 + StudioAutofill = 2 + StudioBuildHook = 3
+ + + +
+[docs] +class Action: + ''' + Object to store common change control action script arguments: + - name: Name of the action currently running + - context: Enum for the context in which the action is running, + e.g. Action that is running is a change control action + - actionId: ID of the action currently running + - args: String -> String dictionary of the args associated with the action + - ccId: ID of the change control, if applicable + - stageId: ID of the current stage of the change control, if applicable + ''' + + def __init__(self, name: str, + actionId: str, + context: ActionContext = ActionContext.Unknown, + args: Optional[Dict[str, str]] = None, + ccId: Optional[str] = None, + stageId: Optional[str] = None): + self.name = name + self.id = actionId + self.context = context + self.args = args + self.ccId = ccId + self.stageId = stageId + + # Fields used in some execution contexts + self.__ccStartTime: Optional[int] = None + +
+[docs] + def getCCStartTime(self, cvClient: GRPCClient): + ''' + Queries the cloudvision database for the change control start time + :param cvClient: context.getCvClient() client + :return: nanosecond start timestamp of the change control + ''' + if self.context != ActionContext.ChangeControl or not self.ccId: + return None + + if self.__ccStartTime: + return self.__ccStartTime + + ccStartTs = queryCCStartTime(cvClient, self.ccId) + self.__ccStartTime = int(ccStartTs) + return self.__ccStartTime
+
+ +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_modules/cloudvision/cvlib/changecontrol.html b/_modules/cloudvision/cvlib/changecontrol.html new file mode 100644 index 00000000..ae4ae015 --- /dev/null +++ b/_modules/cloudvision/cvlib/changecontrol.html @@ -0,0 +1,151 @@ + + + + + + + + cloudvision.cvlib.changecontrol — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+
    +
  • + + +
  • +
  • +
+
+
+
+
+ +

Source code for cloudvision.cvlib.changecontrol

+# Copyright (c) 2022 Arista Networks, Inc.
+# Use of this source code is governed by the Apache License 2.0
+# that can be found in the COPYING file.
+
+from typing import Dict, Optional
+
+from cloudvision.Connector.grpc_client import GRPCClient
+
+from .utils import queryCCStartTime
+
+
+
+[docs] +class ChangeControl: + ''' + (Deprecated) Please use ctx.action instead for various field information + Object to store common change control action script arguments: + - ccId: ID of the change control, if applicable + - stageId: ID of the current stage of the change control, if applicable + - args: Dict of user-defined/script defined arguments that are passed in + ''' + + def __init__(self, + ccId: Optional[str] = None, + stageId: Optional[str] = None, + args: Optional[Dict[str, str]] = None): + self.ccId = ccId + self.stageId = stageId + self.args = args + self.__ccStartTime: Optional[int] = None + +
+[docs] + def getStartTime(self, cvClient: GRPCClient): + ''' + Queries the cloudvision database for the change control start time + :param cvClient: context.getCvClient() client + :return: nanosecond start timestamp of the change control + ''' + if self.ccId is None: + return None + + if self.__ccStartTime: + return self.__ccStartTime + + ccStartTs = queryCCStartTime(cvClient, self.ccId) + self.__ccStartTime = int(ccStartTs) + return self.__ccStartTime
+
+ +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_modules/cloudvision/cvlib/connections.html b/_modules/cloudvision/cvlib/connections.html new file mode 100644 index 00000000..990f8924 --- /dev/null +++ b/_modules/cloudvision/cvlib/connections.html @@ -0,0 +1,242 @@ + + + + + + + + cloudvision.cvlib.connections — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+
    +
  • + + +
  • +
  • +
+
+
+
+
+ +

Source code for cloudvision.cvlib.connections

+# Copyright (c) 2022 Arista Networks, Inc.
+# Use of this source code is governed by the Apache License 2.0
+# that can be found in the COPYING file.
+
+import collections
+import grpc
+from typing import Dict, Optional
+
+
+
+[docs] +class AuthAndEndpoints: + ''' + Object to store auth and endpoint information for use in the context object + - apiserverAddr: Address of the CloudVision apiserver + - serviceAddr: Address of the CloudVision service proxy server, e.g. ambassador address + - cacert: Path to local CA Cert, used for establishing CV grpc connections + - commandEndpoint: Service endpoint where command requests are posted to + - logEndpoint: Service endpoint where log requests are posted to + - connectionTimeout: Timeout value for connections to endpoints in seconds + - cliTimeout: Timeout value for cli commands invoked by connections + - testAddresses: Api addresses to use when execution is in a test context + ''' + + def __init__(self, + apiserverAddr: Optional[str] = None, + serviceAddr: Optional[str] = None, + serviceCACert: Optional[str] = None, + aerisCACert: Optional[str] = None, + commandEndpoint: Optional[str] = None, + logEndpoint: Optional[str] = None, + connectionTimeout: Optional[int] = 250, + cliTimeout: Optional[int] = 200, + testAddresses: Optional[Dict[str, str]] = None): + self.apiserverAddr = apiserverAddr + self.serviceAddr = serviceAddr + self.serviceCACert = serviceCACert + self.aerisCACert = aerisCACert + self.commandEndpoint = commandEndpoint + self.logEndpoint = logEndpoint + self.connectionTimeout = connectionTimeout + self.cliTimeout = cliTimeout + self.testAddresses = testAddresses
+ + + +# The following code is sourced from: +# https://github.com/grpc/grpc/blob/master/examples/python/interceptors/headers/generic_client_interceptor.py + +# ------------------------------------------------------------------------ +# Copyright 2017 gRPC authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + + +class _GenericClientInterceptor(grpc.UnaryUnaryClientInterceptor, + grpc.UnaryStreamClientInterceptor, + grpc.StreamUnaryClientInterceptor, + grpc.StreamStreamClientInterceptor): + """Base class for interceptors that operate on all RPC types.""" + + def __init__(self, interceptor_function): + self._fn = interceptor_function + + def intercept_unary_unary(self, continuation, client_call_details, request): + new_details, new_request_iterator, postprocess = self._fn( + client_call_details, iter((request,)), False, False) + response = continuation(new_details, next(new_request_iterator)) + return postprocess(response) if postprocess else response + + def intercept_unary_stream(self, continuation, client_call_details, + request): + new_details, new_request_iterator, postprocess = self._fn( + client_call_details, iter((request,)), False, True) + response_it = continuation(new_details, next(new_request_iterator)) + return postprocess(response_it) if postprocess else response_it + + def intercept_stream_unary(self, continuation, client_call_details, + request_iterator): + new_details, new_request_iterator, postprocess = self._fn( + client_call_details, request_iterator, True, False) + response = continuation(new_details, new_request_iterator) + return postprocess(response) if postprocess else response + + def intercept_stream_stream(self, continuation, client_call_details, + request_iterator): + new_details, new_request_iterator, postprocess = self._fn( + client_call_details, request_iterator, True, True) + response_it = continuation(new_details, new_request_iterator) + return postprocess(response_it) if postprocess else response_it + + +
+[docs] +def create(intercept_call): + return _GenericClientInterceptor(intercept_call)
+ + +# ------------------------------------------------------------------------ + +# Code to add an interceptor that sets the header, based on example code from +# https://github.com/grpc/grpc/tree/master/examples/python/interceptors/headers + + +class _ClientCallDetails( + collections.namedtuple( + '_ClientCallDetails', + ('method', 'timeout', 'metadata', 'credentials')), + grpc.ClientCallDetails): + pass + + +
+[docs] +def addHeaderInterceptor(header, value): + def intercept_call(client_call_details, request_iterator, request_streaming, + response_streaming): + metadata = [] + if client_call_details.metadata is not None: + metadata = list(client_call_details.metadata) + metadata.append(( + header, + value, + )) + client_call_details = _ClientCallDetails( + client_call_details.method, client_call_details.timeout, metadata, + client_call_details.credentials) + return client_call_details, request_iterator, None + + return create(intercept_call)
+ +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_modules/cloudvision/cvlib/context.html b/_modules/cloudvision/cvlib/context.html new file mode 100644 index 00000000..7700eca7 --- /dev/null +++ b/_modules/cloudvision/cvlib/context.html @@ -0,0 +1,1201 @@ + + + + + + + + cloudvision.cvlib.context — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +

Source code for cloudvision.cvlib.context

+# Copyright (c) 2022 Arista Networks, Inc.
+# Use of this source code is governed by the Apache License 2.0
+# that can be found in the COPYING file.
+
+import json
+import signal
+from collections.abc import Callable
+from enum import IntEnum
+from logging import getLogger
+from time import process_time_ns
+from typing import Any, Dict, List, Optional
+
+import grpc
+import requests
+from google.protobuf.timestamp_pb2 import Timestamp
+from grpc import RpcError, StatusCode
+
+from cloudvision.Connector.codec import Path
+from cloudvision.Connector.grpc_client import (
+    GRPCClient,
+    create_notification,
+    create_query,
+)
+
+from .action import Action
+from .changecontrol import ChangeControl
+from .connections import AuthAndEndpoints, addHeaderInterceptor
+from .constants import (
+    BUILD_ID_ARG,
+    STUDIO_ID_ARG,
+    STUDIO_IDS_ARG,
+    WORKSPACE_ID_ARG,
+    TIMEOUT_REQUEST,
+)
+from .device import Device, Interface
+from .exceptions import (
+    ConnectionFailed,
+    DeviceCommandsFailed,
+    InvalidContextException,
+    InvalidCredentials,
+    LoggingFailed,
+    TimeoutExpiry,
+)
+from .execution import Execution
+from .logger import Logger
+from .studio import Studio, StudioCustomData
+from .tags import Tag, Tags
+from .topology import Topology
+from .user import User
+from .utils import extractJSONEncodedListArg
+from .workspace import Workspace
+
+ACCESS_TOKEN = "access_token"
+CMDS = "cmds"
+DEVICE_ID = "deviceID"
+EXEC_ACTION = "execaction"
+HEADER_ACCEPT = "Accept"
+HEADER_AUTH = "Authorization"
+HEADER_CONTENT_TYPE = "Content-Type"
+HEADER_JSON_APPLICATION = "application/json"
+HEADERS = {HEADER_ACCEPT: HEADER_JSON_APPLICATION}
+HOST = "host"
+JSON = "json"
+REQ_FORMAT = "format"
+STOP_ON_ERROR = "stopOnError"
+TIMEOUT_CLI = "readTimeout"
+TIMEOUT_CONN = "connTimeout"
+TMP_STORAGE_PATH = ["action", "tmp"]
+USERNAME = "username"
+DATASET_TYPE = "dataset_type"
+ORGANIZATION = "organization"
+
+systemLogger = getLogger(__name__)
+
+
+
+[docs] +class LoggingLevel(IntEnum): + Trace = 0, + Debug = 1, + Info = 2, + Warn = 3, + Error = 4, + Critical = 5
+ + + +
+[docs] +class Context: + ''' + Context object that stores a number of system and user-defined parameters: + - user: Info on the user executing this script + - device: Info on the device the script is operating on, if applicable + - action: Info on the action associated with the current context, if applicable + - changeControl: Common change-control script parameters (Deprecated, use action) + - studio: Common studio parameters + - execution: Info on the standalone execution context + - connections: Object storing connection info used by the context, e.g. apiserver address + - logger: Logging functions to be used by the context + ''' + + def __init__(self, user: User, + device: Optional[Device] = None, + action: Optional[Action] = None, + changeControl: Optional[ChangeControl] = None, + studio: Optional[Studio] = None, + execution: Optional[Execution] = None, + connections: Optional[AuthAndEndpoints] = None, + logger: Optional[Logger] = None, + loggingLevel: Optional[LoggingLevel] = None): + self.user = user + self.device = device + self.action = action + self.changeControl = changeControl + self.studio = studio + self.execution = execution + # When connections is None, replace with an empty AuthAndEndpoints obj + # so that further lookups succeed without throwing exceptions + self.connections = connections if connections else AuthAndEndpoints() + # In the case where the context is not passed a logger, create a backup one and use that + self.logger = logger if logger else self.__getBackupLogger() + self.__connector = None + self.__serviceChann = None + self.topology: Optional[Topology] = None + self.preserveWhitespace = False + self.loggingLevel = loggingLevel if loggingLevel else LoggingLevel.Info + self.stats: Dict = {} + self.benchmarking = False + self.tags = Tags(self) + self.studioCustomData = StudioCustomData(self) + self.workspace: Optional[Workspace] = None + +
+[docs] + def getDevice(self): + ''' + Returns the device associated to the context. + ''' + return self.device
+ + +
+[docs] + def getDeviceHostname(self, device: Device = None): + ''' + Returns the hostname of the device associated to the context. + Retrieves that information if the context device doesn't have it + ''' + if not device: + device = self.device + if not device: + raise InvalidContextException(("getDeviceHostname requires either a device or the" + " calling context to have a device associated with it")) + if not device.hostName: + cmdResponse = self.runDeviceCmds(["enable", "show hostname"], device) + if len(cmdResponse) != 2: + raise DeviceCommandsFailed((f"'show hostname' failed on device {device.id}" + f" with response: {cmdResponse}")) + hostnameErr = cmdResponse[1].get('error') + if hostnameErr: + raise DeviceCommandsFailed((f"'show hostname' failed on device {device.id}" + f" with error: {hostnameErr}")) + device.hostName = cmdResponse[1]['response']['hostname'] + return device.hostName
+ + +
+[docs] + def setTopology(self, topology: Topology): + ''' + Sets the topology of the context. + Called during context initialisation during script execution, + to set the Topology to that of the Inventory and Topology Studio. + Does not need to be called by the script writers. + ''' + self.topology = topology + self.topology.setLogger(systemLogger) + + # Studios can have a device associated with it through it's inputs, which is only extracted + # after the topology is set, not passed into the context at it's creation. + # In the case where a device was not passed to the ctx, and a topology is set where there is + # only a single device in the topology, set that device as the one used in the context + if self.topology and self.studio and self.device is None: + topologyDevs = self.topology.getDevices(self.studio.deviceIds) + if len(topologyDevs) == 1: + self.device = topologyDevs[0]
+ + +
+[docs] + def getCvClient(self): + ''' + Instantiates a cloudvision connector client to the cv database + based on the current user auth token + :return: cloudvision Connector client + ''' + if self.__connector: + return self.__connector + if self.connections.apiserverAddr is None or self.user is None: + return None + connector = GRPCClient(self.connections.apiserverAddr, + ca=self.connections.aerisCACert, + tokenValue=self.user.token) + self.__connector = connector + return connector
+ + +
+[docs] + def getApiClient(self, stub): + ''' + Instantiates a resource api client to the service server + based on the current user auth token and passed stub + :param: stub of the resource api to connect to + :return: resource api client to the passed stub + ''' + def add_user_context(chann): + # If provided, add the user context to the grpc metadata + # This allows the context to access services correctly + if self.user is not None: + username_interceptor = addHeaderInterceptor(USERNAME, self.user.username) + chann = grpc.intercept_channel(chann, username_interceptor) + return chann + + if self.__serviceChann: + return stub(self.__serviceChann) + if self.connections.serviceAddr is None: + systemLogger.error( + "service address is None, trying to establish connection to apiserver") + # use api server's secure grpc channel if service address is not provided + if self.getCvClient(): + self.__serviceChann = self.getCvClient().channel + self.__serviceChann = add_user_context(self.__serviceChann) + return stub(self.__serviceChann) + systemLogger.error( + "cannot establish connection to apiserver: %s", self.__connector) + raise ConnectionFailed("cannot establish connection to api server") + + # Verify that we have a correct token + token = self.user.token + if token is None: + systemLogger.error("no valid token for authenticating the API Client") + raise InvalidCredentials("no valid token for authenticating the API Client") + + # Try and read the ca cert + caData = None + if self.connections.serviceCACert: + with open(self.connections.serviceCACert, 'rb') as cf: + caData = cf.read() + + # Build the grpc connection with the token and the potential ca cert + creds = grpc.ssl_channel_credentials(root_certificates=caData) + tokCreds = grpc.access_token_call_credentials(token) + creds = grpc.composite_channel_credentials(creds, tokCreds) + self.__serviceChann = grpc.secure_channel(self.connections.serviceAddr, creds) + self.__serviceChann = add_user_context(self.__serviceChann) + return stub(self.__serviceChann)
+ + +
+[docs] + def runDeviceCmds(self, commandsList: List[str], device: Optional[Device] = None, fmt=JSON, + validateResponse=True): + ''' + Sends a post request to DI, encodes commandsList in message body. + Receives output of cli commands from DI as json object. + + :param commandsList: + :param device: device that the commands are run on. + Defaults to the context change control device if unspecified + :param validateResponse: Validates that the commands ran successfully. Defaults to true and + will raise an exception in the case an error message is present in + the command response. + Can be set to false to allow commands to run without raising any + resultant error as an exception, e.g. device reboot commands can + cause heartbeat error messages in the response, but we can discard + them as the device will reboot. + :return: json object containing output of commandsList (if validateResponse is True) + OR + raw request response (if validateResponse is False) + :raises: InvalidContextException when context is invalid for execution of device commands + requests.ConnectionError if connection cannot be established to the command + endpoint address + HTTPError if the status code from the command request is not a 200 + DeviceCommandsFailed if validating command responses and the contents + contain an error code/message (can occur if request is a 200) + ''' + if not self or not self.action: + raise InvalidContextException( + "runDeviceCmds is only available in action contexts") + + if device is None: + if self.device is None: + raise InvalidContextException( + "runDeviceCmds is only available when a device is set") + device = self.device + + if not device.id: + raise InvalidContextException( + "runDeviceCmds requires a device with an id") + + if not self.connections.serviceAddr or not self.connections.commandEndpoint: + raise InvalidContextException("runDeviceCmds must have a valid service " + "address and command endpoint specified") + + # From the DI service documentation about the HOST field: + # Host can be either IP address or hostname + deviceInteractionHost = device.ip if device.ip else device.hostName + + request = { + HOST: deviceInteractionHost, + DEVICE_ID: device.id, + CMDS: commandsList, + TIMEOUT_CLI: self.connections.cliTimeout, + TIMEOUT_CONN: self.connections.connectionTimeout, + REQ_FORMAT: fmt, + STOP_ON_ERROR: False + } + data = json.dumps(request) + + accessToken = "" + if self: + accessToken = self.user.token + + cookies = {ACCESS_TOKEN: accessToken} + try: + runCmdURL = f"https://{self.connections.serviceAddr}/{self.connections.commandEndpoint}" + self.debug(f"Executing the following command(s) on device {device.id}: {commandsList}") + response = requests.post(runCmdURL, data=data, headers=HEADERS, + cookies=cookies, timeout=TIMEOUT_REQUEST, verify=False) + except requests.ConnectionError as e: + self.error(f"Got exception while establishing connection to DI : {e}") + raise + + self.debug(f"Status code received from DI : {response.status_code}") + if response.status_code != 200: + response.raise_for_status() + + # In the case where a response is not validated do not check for errors or convert + # the response to JSON. Simply return it as-is + if not validateResponse: + return response + + resp = response.json() + # Check that some other issue did not occur. It has been seen that a statuscode 200 was + # received for the response, but when the response contents are jsonified and returned, + # they can be a simple dictionary with two entries, 'errorCode' and 'errorMessage', + # instead of the usual list of dictionaries for each command response. + # This is not caused by the commands that the user provided, but is an issue with + # the request that was sent to the command endpoint + # If that occurs, raise a DeviceCommandsFailedException + # An example of this is {'errorCode': '341604', 'errorMessage': 'Invalid request'} + if all(key in resp for key in ["errorCode", "errorMessage"]): + errCode = resp["errorCode"] + errMsg = resp["errorMessage"] + raise DeviceCommandsFailed((f"Commands failed to run on device \"{device.id}\"," + f" returned {errCode}:\"{errMsg}\""), errCode, errMsg) + + # Check that none of the commands have outright failed + for i, cmdResp in enumerate(resp): + err = cmdResp.get("error") + if err: + raise DeviceCommandsFailed((f"Command \"{commandsList[i]}\" failed to run on " + f"device \"{device.id}\", returned {err}")) + + return resp
+ + +
+[docs] + @staticmethod + def doWithTimeout(f, timeout: int): + ''' + Takes a function and a timeout in seconds. + Will call and return the result of f, but raises a cvlib.TimeoutExpiry + exception if it runs longer than <timeout> + ''' + + # A handler function for the timer that will raise our custom exception + def monitorTimerHandler(signum, frame): + raise TimeoutExpiry + + # Set up a signal handler that will cause a signal.SIGALRM signal to trigger our timer + # handler + signal.signal(signal.SIGALRM, monitorTimerHandler) + # Set an alarm to fire in <timeout> seconds. This will call the handler we bound earlier + signal.alarm(timeout) + + try: + return f() + finally: + # Always turn off the alarm, whether returning a value or propagating an exception + signal.alarm(0)
+ + +
+[docs] + def initializeStudioCtxFromArgs(self): + ''' + initializeStudioCtxFromArgs associates studio(s) and a workspace with the current + context from argument information available in the current context's action class. + This allows for actions such as Studio Autofill Actions and Studio Build Hook Actions + to associate a studio with their active contexts, allowing them to access various helper + methods that require the presence of a studio or workspace with the active context, + such as those offered by the tags class. + + NOTE: Will raise InvalidContextException if called and either a studio is already + bound to the context or no action is available in the context + ''' + if self.studio or self.workspace: + raise InvalidContextException( + "initializeStudioCtxFromArgs already has studio ctx initialised") + if not self.action: + raise InvalidContextException("initializeStudioCtxFromArgs must be" + " run in an action context") + + buildId = self.action.args.get(BUILD_ID_ARG) + # Will be set if action is in a studio scope + studioId = self.action.args.get(STUDIO_ID_ARG) + # Will be present for some execution contexts, e.g. Studio Build Hook actions + studioIdsStr = self.action.args.get(STUDIO_IDS_ARG) + workspaceId = self.action.args.get(WORKSPACE_ID_ARG) + studioIds = None + if studioIdsStr: + try: + studioIds = extractJSONEncodedListArg(studioIdsStr) + except ValueError as e: + self.warning((f"Unable to extract json encoded list '{STUDIO_IDS_ARG}': {e}\n" + f"Ignoring {STUDIO_IDS_ARG} contents")) + if not workspaceId: + raise InvalidContextException( + ("initializeStudioCtxFromArgs: Missing minimum required argument" + f" {WORKSPACE_ID_ARG} for studio ctx initialisation")) + self.workspace = Workspace( + workspaceId=workspaceId, + studioIds=studioIds, + buildId=buildId + ) + if studioId: + self.studio = Studio( + workspaceId=workspaceId, + studioId=studioId, + buildId=buildId + )
+ + +
+[docs] + def getWorkspaceId(self): + if not (self.workspace or self.studio): + raise InvalidContextException(("Context does not have a workspace or studio " + "associated with it")) + return self.workspace.id if self.workspace else self.studio.workspaceId
+ + +
+[docs] + def httpGet(self, path: str): + ''' + Issues a https GET to a given endpoint in CloudVision and returns the json + content if there are no errors + ''' + if not (self.user and self.user.token): + raise InvalidContextException("httpGet requires an authenticated" + + " user associated with the context") + + if not self.connections.serviceAddr: + raise InvalidContextException("httpGet must have a valid service address specified") + + # Perform a split to ensure to drop any ports that are provided as part of the serviceAddr + url = "https://" + self.connections.serviceAddr.split(':', maxsplit=1)[0] + endpoint = url + path + headers = { + HEADER_ACCEPT: HEADER_JSON_APPLICATION, + HEADER_CONTENT_TYPE: HEADER_JSON_APPLICATION, + HEADER_AUTH: f"Bearer {self.user.token}" + } + try: + response = requests.get(endpoint, headers=headers, verify=False) + response.raise_for_status() + respJson = json.loads(response.text) + except requests.ConnectionError as e: + self.error(f"Got exception while establishing connection to url '{endpoint}': {e}") + raise + except requests.HTTPError as e: + self.error(f"Got error response from get on '{endpoint}': {e}") + raise + return respJson
+ + +
+[docs] + def httpGetConfig(self, path: str): + ''' + Issues a http get to retrieve the device config content at a cvp url and formats it. + ''' + rawConfig = self.httpGet(path).get('config') + if not rawConfig: + return "" + formattedConfig = rawConfig.replace('\\n', '\n').replace('\\t', '\t') + return formattedConfig
+ + +
+[docs] + def httpPost(self, path, request={}): + ''' + Issues a https POST to a given endpoint in CloudVision + ''' + data = json.dumps(request) + + if not (self.user and self.user.token): + raise InvalidContextException("httpPost requires an authenticated" + + " user associated with the context") + + if not self.connections.serviceAddr: + raise InvalidContextException("httpPost must have a valid service address specified") + + # Perform a split to ensure to drop any ports that are provided as part of the serviceAddr + url = "https://" + self.connections.serviceAddr.split(':', maxsplit=1)[0] + endpoint = url + path + headers = { + HEADER_ACCEPT: HEADER_JSON_APPLICATION, + HEADER_CONTENT_TYPE: HEADER_JSON_APPLICATION, + HEADER_AUTH: f"Bearer {self.user.token}" + } + try: + response = requests.post(endpoint, data=data, headers=headers, verify=False) + response.raise_for_status() + except requests.ConnectionError as e: + self.error(f"Got exception while establishing connection to url '{endpoint}': {e}") + raise + except requests.HTTPError as e: + self.error(f"Got error response from get on '{endpoint}': {e}") + raise
+ + +
+[docs] + def Get(self, path: List[str], keys: List[str] = [], dataset: str = "analytics"): + ''' + Get issues a get request to the provided path/key(s) combo, and returns the contents + of that path as a dictionary. Wildcarding is not advised as the returned dictionary + is only a single level deep, so adding wildcards will cause overwrites in the results. + + Params: + - path: The path to issue the get to, in the form of a list of strings + - keys: The key(s) to get at the path. Defaults to all keys + - dataset: The dataset to issue the get to. Defaults to the `analytics` dataset + ''' + client: GRPCClient = self.getCvClient() + query = create_query(pathKeys=[(path, keys)], dId=dataset) + + results = {} + for batch in client.get([query]): + for notif in batch["notifications"]: + results.update(notif.get("updates", {})) + return results
+ + + def _getGenericKey(self) -> str: + ''' + Creates a generic key for use in store/retrieve based off of the available + context information such that overwrites will be done on successive runs of + the same calling studio/WS or action. + + When building the key based on the context; + - If it is a studio context, the key generated will be in the form of + "<studioId>:<buildId>" if a build ID is present, else "<studioId>" + - If it is an action context, the key generated will be in the form of + "<executionID>" + + Raises InvalidContextException if not enough context information is present + to create a key + ''' + if self.studio is not None: + if self.studio.buildId: + return ":".join([self.studio.studioId, self.studio.buildId]) + return self.studio.studioId + if self.action and self.execution: + return self.execution.executionId + raise InvalidContextException( + "store/retrieve without key requires a studio or action in the context") + + def _getStoragePath(self, additionalElems: List[str] = []) -> List[str]: + ''' + Builds a generic path for use in store/retrieve based off of either the passed + additional elements provided by the user or the available context information. + All paths will contain "action/tmp" as the root. + + When building a path based on the context; + - If it is a studio context, the path generated will be in the form of + /action/tmp/workspace/<workspaceId>/studio + - If it is an action context, the path generated will be in the form of + /action/tmp/action/<actionId> + + Raises InvalidContextException if no additional elems were passed by the user + and not enough context information is present to create a path + ''' + storage_path = TMP_STORAGE_PATH.copy() + if additionalElems: + storage_path.extend(additionalElems) + return storage_path + if self.studio and self.studio.workspaceId: + storage_path.extend(["workspace", self.studio.workspaceId, "studio"]) + return storage_path + if self.action and self.action.id: + storage_path.extend(["action", self.action.id]) + return storage_path + raise InvalidContextException( + "store without specified path requires a studio or action in the context") + +
+[docs] + def store(self, data, path: List[str] = [], customKey=""): + ''' + store puts the passed data into a path in the Database + + NOTE: This function is only available to those with write permissions to the + 'action' path in the cvp dataset (granted by the action module), as that is + where the store is. + + This should be used in conjunction with the retrieve method to ensure that + the entry is cleaned up after use. + + Params: + - data: The data to store + - path: The path to store the data at, in the form of a list of strings. + If this argument is omitted, a generic path will be created for + use. All paths have "action/tmp" as the root. + - customKey: The key to store the data at in the path. If this argument is + omitted, a generic string key will be created for use. + + Raises InvalidContextException if not enough context information is + present to create a generic key/path (if required) + ''' + key = customKey if customKey else self._getGenericKey() + storagePath = self._getStoragePath(additionalElems=path) + update = [(key, data)] + ts = Timestamp() + ts.GetCurrentTime() + notifs = [create_notification(ts, storagePath, updates=update)] + # Generate the list of path pointer notifs that lead to the new entry + for i, pathElem in enumerate(storagePath): + if i == 0: + # We don't want to keep writing the path pointer to actions + # in the top level of the cvp dataset + continue + pathPointerPath = storagePath[:i] + pathPointerUpdate = [(pathElem, Path(keys=storagePath[:i + 1]))] + notifs.append(create_notification(ts, pathPointerPath, updates=pathPointerUpdate)) + try: + self.getCvClient().publish(dId="cvp", notifs=notifs) + except RpcError as exc: + # If the exception is not a permissions error, reraise the original + # exception as something went wrong + if exc.code() != StatusCode.PERMISSION_DENIED: + raise + raise InvalidCredentials( + f"Context user does not have permission to write to path '{storagePath}'")
+ + +
+[docs] + def retrieve(self, path: List[str] = [], customKey="", delete=True): + ''' + retrieve gets the passed key's data from the provided path from the + Database store. + + NOTE: This function is only available to those with read permissions to the + 'action' path in the cvp dataset (granted by the action module), as that is + where the store is. + + Params: + - path: The path where the data is stored at, in the form of a list + of strings. If this argument is omitted, a generic path will be + created for use. All paths have "action/tmp" as the root. + - customKey: The key where the data is stored at in the path. If this argument + is omitted, a generic string key will be created for use. + - delete: Boolean flag marking whether a delete should be issued to the + store for the key/path combo to clean up after use. + Deleting once the contents have been retrieved is the default. + + Raises InvalidContextException if not enough context information is + present to create a generic key/path (if required) + ''' + key = customKey if customKey else self._getGenericKey() + storagePath = self._getStoragePath(additionalElems=path) + try: + results = self.Get(path=storagePath, keys=[key], dataset="cvp") + except RpcError as exc: + # If the exception is not a permissions error, reraise the original + # exception as something went wrong + if exc.code() != StatusCode.PERMISSION_DENIED: + raise + raise InvalidCredentials( + f"Context user does not have permission to read from path '{storagePath}'") + if delete: + ts = Timestamp() + ts.GetCurrentTime() + try: + self.getCvClient().publish( + dId="cvp", notifs=[create_notification(ts, storagePath, deletes=[key])]) + except RpcError as exc: + # If the exception is not a permissions error, reraise the original + # exception as something went wrong + if exc.code() != StatusCode.PERMISSION_DENIED: + raise + raise InvalidCredentials( + f"Context user does not have permission to write to path '{storagePath}'") + return results.get(key)
+ + +
+[docs] + def clear(self, path: List, keys: List = [], fullPathOnly: bool = False): + """ + clear issues deletes to the backend data store for cleanup, where retrieve with + delete is not required or not suitable. By default, it walks upwards through + each element in the path provided and issues a delete-all at each sub-path + to purge the information store. The fullPathOnly flag can be set to true to only + issue a deletes to the full path, instead of at all sub-paths in the path. A list + of keys to specifically delete can be provided to only delete those fields. + + NOTE: While this function accepts wildcards, note that using them may + impact other storage paths used in other actions. + + Params: + - path: The path where the data should be purged, in the form of a list + of strings or Connector Wildcards. + - keys: The list of keys to delete. Defaults to a delete-all. + - fullPathOnly: Boolean flag marking whether a delete-all should only be issued + to the store for full path. + By default, deletes are issued at all sub-paths. + """ + storagePath = self._getStoragePath(additionalElems=path) + client = self.getCvClient() + ts = Timestamp() + ts.GetCurrentTime() + # Repeatedly issue delete-alls until we reach the root storage path + while len(storagePath) > len(TMP_STORAGE_PATH): + client.publish(dId="cvp", + notifs=[create_notification(ts, storagePath, deletes=keys)]) + if fullPathOnly: + break + storagePath.pop()
+ + +
+[docs] + @staticmethod + def showIf(linefmt, args): + if args: + return linefmt.format(args) + return ''
+ + +
+[docs] + def alog(self, message, userName=None, customKey=None, tags: Dict[str, str] = None, + ignoreFailures=False): + """ + Creates an audit log entry in CloudVision, with the provided info. + The context's associated device name and id will be added to the audit log metadata + if it is available in the context. + + Args: + message: The string message for the audit log entry + userName: The user to make the audit log entry under. If unspecified, will + use the context's user's username + customKey: A custom key that will be used to alias the audit log entry if provided + tags: A string dictionary of additional custom tags to add to the audit log + entry. The action ID is always added as a tag to the audit log + ignoreFailures: Prevents logging exceptions from being raised + """ + try: + self.logger.alog(self, message, userName, customKey, tags) + except LoggingFailed: + if not ignoreFailures: + raise
+ + +
+[docs] + def trace(self, msg, ignoreFailures=False, tags: Dict[str, str] = None): + """ + Creates a trace level log if the context's logging level is set to allow for it + If the logging level is higher, is a no-op + Args: + msg: The string message for the log entry + ignoreFailures: Prevents logging exceptions from being raised + tags: A string dictionary of additional custom tags to add to the log + entry. Some system tags are always inserted, e.g. buildID + when logging is done in a studio context. + """ + if self.getLoggingLevel() > LoggingLevel.Trace: + return + try: + self.logger.trace(self, msg, tags) + except LoggingFailed: + if not ignoreFailures: + raise
+ + +
+[docs] + def debug(self, msg, ignoreFailures=False, tags: Dict[str, str] = None): + """ + Creates a debug level log if the context's logging level is set to allow for it + If the logging level is higher, is a no-op + Args: + msg: The string message for the log entry + ignoreFailures: Prevents logging exceptions from being raised + tags: A string dictionary of additional custom tags to add to the log + entry. Some system tags are always inserted, e.g. buildID + when logging is done in a studio context. + """ + if self.getLoggingLevel() > LoggingLevel.Debug: + return + try: + self.logger.debug(self, msg, tags) + except LoggingFailed: + if not ignoreFailures: + raise
+ + +
+[docs] + def info(self, msg, ignoreFailures=False, tags: Dict[str, str] = None): + """ + Creates an info level log if the context's logging level is set to allow for it + If the logging level is higher, is a no-op + Args: + msg: The string message for the log entry + ignoreFailures: Prevents logging exceptions from being raised + tags: A string dictionary of additional custom tags to add to the log + entry. Some system tags are always inserted, e.g. buildID + when logging is done in a studio context. + """ + if self.getLoggingLevel() > LoggingLevel.Info: + return + try: + self.logger.info(self, msg, tags) + except LoggingFailed: + if not ignoreFailures: + raise
+ + +
+[docs] + def warning(self, msg, ignoreFailures=False, tags: Dict[str, str] = None): + """ + Creates a warning level log if the context's logging level is set to allow for it + If the logging level is higher, is a no-op + Args: + msg: The string message for the log entry + ignoreFailures: Prevents logging exceptions from being raised + tags: A string dictionary of additional custom tags to add to the log + entry. Some system tags are always inserted, e.g. buildID + when logging is done in a studio context. + """ + if self.getLoggingLevel() > LoggingLevel.Warn: + return + try: + self.logger.warning(self, msg, tags) + except LoggingFailed: + if not ignoreFailures: + raise
+ + +
+[docs] + def error(self, msg, ignoreFailures=False, tags: Dict[str, str] = None): + """ + Creates an error level log if the context's logging level is set to allow for it + If the logging level is higher, is a no-op + Args: + msg: The string message for the log entry + ignoreFailures: Prevents logging exceptions from being raised + tags: A string dictionary of additional custom tags to add to the log + entry. Some system tags are always inserted, e.g. buildID + when logging is done in a studio context. + """ + if self.getLoggingLevel() > LoggingLevel.Error: + return + try: + self.logger.error(self, msg, tags) + except LoggingFailed: + if not ignoreFailures: + raise
+ + +
+[docs] + def critical(self, msg, ignoreFailures=False, tags: Dict[str, str] = None): + """ + Creates a critical level log + Args: + msg: The string message for the log entry + ignoreFailures: Prevents logging exceptions from being raised + tags: A string dictionary of additional custom tags to add to the log + entry. Some system tags are always inserted, e.g. buildID + when logging is done in a studio context. + """ + try: + self.logger.critical(self, msg, tags) + except LoggingFailed: + if not ignoreFailures: + raise
+ + +
+[docs] + def keepBlankLines(self, preserve=True): + # This function is only relevant for Studio Templates. + # Script executor code introspects this value to decide whether to + # clean rendered templates post-rendering + self.preserveWhitespace = preserve
+ + +
+[docs] + def setLoggingLevel(self, loggingLevel: LoggingLevel): + """ + Takes a logging level value and applies it for use in logging call checks + """ + self.loggingLevel = loggingLevel
+ + +
+[docs] + def getLoggingLevel(self): + """ + Gets the current logging level of the context + """ + return self.loggingLevel
+ + +
+[docs] + def activateDebugMode(self): + """ + Activates debug logging by setting the logging level to debug + """ + self.loggingLevel = LoggingLevel.Debug
+ + +
+[docs] + def deactivateDebugMode(self): + """ + Deactivates debug logging by setting the logging level to info + """ + self.loggingLevel = LoggingLevel.Info
+ + + # In the case where the context has no logger defined, + # we can create a compatible backup logger using the system logger + # This is called in init if no logger is provided + def __getBackupLogger(self) -> Logger: + def backupAlog(_, message, _userName=None, _customKey=None, tags=None): + systemLogger.info(message) + + def backupDebugOrTrace(_, message, tags=None): + systemLogger.debug(message) + + def backupInfo(_, message, tags=None): + systemLogger.info(message) + + def backupWarning(_, message, tags=None): + systemLogger.warning(message) + + def backupError(_, message, tags=None): + systemLogger.error(message) + + def backupCritical(_, message, tags=None): + systemLogger.critical(message) + + return Logger( + alog=backupAlog, + trace=backupDebugOrTrace, + debug=backupDebugOrTrace, + info=backupInfo, + warning=backupWarning, + error=backupError, + critical=backupCritical + ) + +
+[docs] + def benchmarkingOn(self): + ''' + Turns on benchmarking to collect stats such as time consumed in a routine + of the template + To use add the following lines into the template: + ctx.benchmarkingOn() - place this as the first line after imports in the template + @ctx.benchmark - decorate the functions of the template to be benchmarked + ctx.benchmarkDump() - place this as the last line in the template + ''' + self.benchmarking = True
+ + +
+[docs] + def benchmarkingOff(self): + self.benchmarking = False
+ + +
+[docs] + def benchmark(self, func: Callable[..., Any]) -> Callable[..., Any]: + def wrapper(*args: Any, **kwargs: Any) -> Any: + startTime = process_time_ns() + result = func(*args, **kwargs) + timer = process_time_ns() - startTime + if not self.stats.get(func.__name__): + self.stats[func.__name__] = {'sum': 0, 'count': 0, 'instances': []} + + self.stats[func.__name__]['count'] += 1 + self.stats[func.__name__]['sum'] += timer + self.stats[func.__name__]['instances'].append(timer) + return result + if not self.benchmarking: + return func + return wrapper
+ + +
+[docs] + def benchmarkDump(self): + if not self.stats: + return + self.logger.info(self, f'benchmarks for device {self.device.id}:') + for fun, timings in self.stats.items(): + timings['sum'] = timings['sum'] / 1e9 + timings['average'] = timings['sum'] / timings['count'] + + self.logger.info(self, + f"{'functions':<40}:{'total(s)':>8}{'avg(s)':>8}" + + f"{'count':>10}") + self.logger.info(self, "-" * 40 + "-" * 8 + "-" * 8 + "-" * 11) + for fun, timings in dict(sorted(self.stats.items(), + key=lambda item: item[1]['sum'], + reverse=True)).items(): + self.logger.info(self, + f"{fun:<40}:{timings['sum']:>8.4f}{timings['average']:>8.4f}" + + f"{timings['count']:>10}")
+ + +
+[docs] + def getDevicesByTag(self, tag: Tag, inTopology: bool = True): + ''' + Returns list of devices that have the user tag assigned to them. + If tag.value is unspecified then returns devices having that label assigned. + By default only devices in the topology are returned. + ''' + devices = [] + # Note use list instead of .items() + # parallel thread might add/delete tags + for devId in list(allTags := self.tags._getAllDeviceTags()): + tags = allTags.get(devId, {}) + if tags.get(tag.label) and ( + not tag.value or tag.value in tags.get(tag.label, [])): + if dev := self.topology._deviceMap.get(devId) if self.topology else None: + devices.append(dev) + elif not inTopology: + devices.append(Device(deviceId=devId)) + return devices
+ + +
+[docs] + def getInterfacesByTag(self, tag: Tag, inTopology: bool = True): + ''' + Returns list of interfaces that have the user tag assigned to them. + If tag.value is unspecified then returns interfaces having that label assigned. + By default only interfaces in the topology are returned. + ''' + interfaces = [] + # Note use list instead of .items() + # parallel thread might add/delete tags + for devId in list(allTags := self.tags._getAllInterfaceTags()): + for intfId in list(devIntfTags := allTags.get(devId, {})): + tags = devIntfTags.get(intfId, {}) + if tags.get(tag.label) and ( + not tag.value or tag.value in tags.get(tag.label, [])): + if dev := self.topology._deviceMap.get(devId) if self.topology else None: + if intf := dev.getInterface(intfId): + interfaces.append(intf) + elif not inTopology: + interfaces.append(Interface(name=intfId, device=dev)) + elif not inTopology: + interfaces.append( + Interface(name=intfId, + device=Device(deviceId=devId))) + return interfaces
+
+ +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_modules/cloudvision/cvlib/device.html b/_modules/cloudvision/cvlib/device.html new file mode 100644 index 00000000..f124f8bd --- /dev/null +++ b/_modules/cloudvision/cvlib/device.html @@ -0,0 +1,359 @@ + + + + + + + + cloudvision.cvlib.device — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +

Source code for cloudvision.cvlib.device

+# Copyright (c) 2022 Arista Networks, Inc.
+# Use of this source code is governed by the Apache License 2.0
+# that can be found in the COPYING file.
+
+from typing import Dict, List, Optional
+
+from .exceptions import (
+    TagMissingException,
+    TagTooManyValuesException
+)
+from .tags import Tag
+
+
+
+[docs] +class Device: + ''' + Object to store device information + - ip: IP address of device + - deviceId: ID of the device + - deviceMac: Mac address of the device + - hostName: Hostname of the device + - modelName: Model name of the device + ''' + + def __init__(self, deviceId: Optional[str] = None, + ip: Optional[str] = None, + deviceMac: Optional[str] = None, + hostName: Optional[str] = None, + modelName: Optional[str] = None): + self.id = deviceId + self.ip = ip + self.mac = deviceMac + self.hostName = hostName + self.modelName = modelName + # dict of interface name -> interface + self._interfaces: Dict = {} + + def __eq__(self, other): + return self.__dict__ == other.__dict__ + +
+[docs] + def getInterfaces(self): + ''' + Returns a dictionary list of the interfaces assigned to the Device object + ''' + return self._interfaces.values()
+ + +
+[docs] + def getInterface(self, name): + ''' + Returns a particular named interface from the interfaces assigned to the Device + object + ''' + return self._interfaces.get(name)
+ + +
+[docs] + def addInterface(self, name: str): + ''' + addInterface assigns an interface to the Device object + ''' + intf = self._interfaces.get(name) + if intf: + # interface already exists, do a noop + return + intf = Interface(name, self) + self._interfaces[name] = intf
+ + +
+[docs] + def getSingleTag(self, ctx, label: str, required: bool = True): + ''' + Returns a Tag of the label assigned to the device. + Raises TagTooManyValuesException if there are multiple tags of the label assigned. + Raises TagMissingException if required is True and the tag is missing. + Returns None if required is False and the tag is missing. + ''' + devName = str(self.hostName) if self.hostName else str(self.id) + values = ctx.tags._getDeviceTags(self.id).get(label) + if values and len(values) > 1: + raise TagTooManyValuesException(label, devName, values) + if required and not values: + raise TagMissingException(label, devName) + return Tag(label, values[0]) if values else None
+ + +
+[docs] + def getTags(self, ctx, label: str = None): + ''' + Returns a list of Tags matching the specified label assigned to the device. + If label is unspecified then it returns all Tags assigned to the device. + ''' + devTags: List[Tag] = [] + if not (ctxDevTags := ctx.tags._getDeviceTags(self.id)): + return devTags + # Note use list instead of .items() + # parallel thread might add/delete tags + for tagLabel in list(ctxDevTags): + if label and label != tagLabel: + continue + for value in ctxDevTags.get(tagLabel, []): + devTags.append(Tag(tagLabel, value)) + return devTags
+ + + def _assignTag(self, ctx, tag: Tag, replaceValue: bool = True): + ''' + Assign a Tag to a device. + If replaceValue is True ensures only one value of label is assigned to device. + ''' + ctx.tags._assignDeviceTag(self.id, tag.label, tag.value, replaceValue) + + def _unassignTag(self, ctx, tag: Tag): + ''' + Unassign a Tag from a device. + If tag.value is unspecified unassign all tags of label from device. + ''' + if tag.value: + ctx.tags._unassignDeviceTag(self.id, tag.label, tag.value) + else: + ctx.tags._unassignDeviceTagLabel(self.id, tag.label) + +
+[docs] + def getInterfacesByTag(self, ctx, tag: Tag, inTopology: bool = True): + ''' + Returns list of interfaces that have the user tag assigned to them. + If tag.value is unspecified then returns interfaces having that label assigned. + By default only interfaces in the topology are returned. + ''' + interfaces = [] + # Note use list instead of .items() + # parallel thread might add/delete tags + for intfId in list(devIntfTags := ctx.tags._getAllInterfaceTags().get(self.id, {})): + tags = devIntfTags.get(intfId, {}) + if tags.get(tag.label) and ( + not tag.value or tag.value in tags.get(tag.label, [])): + if intf := self.getInterface(intfId): + interfaces.append(intf) + elif not inTopology: + interfaces.append(Interface(name=intfId, device=self)) + return interfaces
+
+ + + +# Interfaces and devices are defined together to avoid circular imports +
+[docs] +class Interface: + ''' + Object to store interface related information + - name: The name of the interface + - device: The device that the interface is on + ''' + + def __init__(self, name: str, device: Device): + self.name = name + self._device = device + self._peerInterface = None + self._peerDevice: Optional[Device] = None + + def __eq__(self, other): + return self.__dict__ == other.__dict__ + +
+[docs] + def getPeerInterface(self): + return self._peerInterface
+ + +
+[docs] + def getPeerDevice(self): + return self._peerDevice
+ + +
+[docs] + def getDevice(self): + return self._device
+ + +
+[docs] + def setPeerInfo(self, device: Device, interface): + self._peerInterface = interface + self._peerDevice = device
+ + +
+[docs] + def getPeerInfo(self): + return self._peerDevice, self._peerInterface
+ + +
+[docs] + def getSingleTag(self, ctx, label: str, required: bool = True): + ''' + Returns a Tag of the label assigned to the interface. + Raises TagTooManyValuesException if there are multiple tags of the label assigned. + Raises TagMissingException if required is True and the tag is missing. + Returns None if required is False and the tag is missing. + ''' + devName = str(self._device.hostName) if self._device.hostName else str(self._device.id) + values = ctx.tags._getInterfaceTags(self._device.id, self.name).get(label) + if values and len(values) > 1: + raise TagTooManyValuesException(label, devName, values, self.name) + if required and not values: + raise TagMissingException(label, devName, self.name) + return Tag(label, values[0]) if values else None
+ + +
+[docs] + def getTags(self, ctx, label: str = None): + ''' + Returns a list of Tags matching the specified label assigned to the interface. + If label is unspecified then it returns all Tags assigned to the interface. + ''' + tags: List[Tag] = [] + if not (ctxTags := ctx.tags._getInterfaceTags(self._device.id, self.name)): + return tags + # Note use list instead of .items() + # parallel thread might add/delete tags + for tagLabel in list(ctxTags): + if label and label != tagLabel: + continue + for value in ctxTags.get(tagLabel, []): + tags.append(Tag(tagLabel, value)) + return tags
+ + + def _assignTag(self, ctx, tag: Tag, replaceValue: bool = True): + ''' + Assign a Tag to an interface. + If replaceValue is True ensures only one value of label is assigned. + ''' + ctx.tags._assignInterfaceTag(self._device.id, self.name, tag.label, tag.value, replaceValue) + + def _unassignTag(self, ctx, tag: Tag): + ''' + Unassign a Tag from an interface. + If tag.value is unspecified unassign all tags of label. + ''' + if tag.value: + ctx.tags._unassignInterfaceTag(self._device.id, self.name, tag.label, tag.value) + else: + ctx.tags._unassignInterfaceTagLabel(self._device.id, self.name, tag.label)
+ +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_modules/cloudvision/cvlib/exceptions.html b/_modules/cloudvision/cvlib/exceptions.html new file mode 100644 index 00000000..7108a167 --- /dev/null +++ b/_modules/cloudvision/cvlib/exceptions.html @@ -0,0 +1,692 @@ + + + + + + + + cloudvision.cvlib.exceptions — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +

Source code for cloudvision.cvlib.exceptions

+# Copyright (c) 2022 Arista Networks, Inc.
+# Use of this source code is governed by the Apache License 2.0
+# that can be found in the COPYING file.
+
+from typing import List, Optional
+
+
+
+[docs] +class CVException(Exception): + """Overarching base exception class for all cloudvision exceptions""" + + def __init__(self, message: str = "cloudvision has encountered an error"): + self.message = message + super().__init__(self.message)
+ + + +# -------------------------- Common Exceptions -------------------------- + +
+[docs] +class InvalidContextException(CVException): + """Exception raised when context methods are called invalidly""" + + def __init__(self, message: str): + super().__init__(message)
+ + + +
+[docs] +class InvalidCredentials(CVException): + """Exception raised if provided credentials are invalid""" + + def __init__(self, message: str = "provided credentials were not valid"): + super().__init__(message)
+ + + +
+[docs] +class ConnectionFailed(CVException): + """ + Exception raised when a connection to the CloudVision API Server + could not be established, or if it was unexpectedly closed + """ + + def __init__(self, message: str = "connection issue with the CloudVision API server"): + super().__init__(message)
+ + + +# ------------------------ Generic Script Execution Exceptions ------------------------ + + +
+[docs] +class ScriptException(CVException): + """Overarching class for Script exceptions""" + + def __init__(self, message: str = "cloudvision has encountered a script error"): + super().__init__(message)
+ + + +
+[docs] +class ActionFailed(ScriptException): + """ + Exception to raise if you wish to fail a script or autofill action being executed. + + For the case of a script action, e.g. CCA, it means that the user has declared + that the action has failed due to some condition being met or missed. This is + "expected" in the sense that the action did not hit an unexpected exception. + + In the autofill action case, it means the autofill could not be completed due to + some expected reason (e.g. could not reach IPAM or IPAM block was exhausted). + """ + + __noReasonFail = "Action failed with no reason specified" + + def __init__(self, message: str = ""): + super().__init__(message) + + def __str__(self): + if not self.message: + return self.__noReasonFail + return f"Action failed due to the following: {self.message}"
+ + + +
+[docs] +class BatchException(ScriptException): + """ + Exception for when a script needs to raise multiple issues in a single error. + This is useful for when scripts do all invariant checking at once, and tell + the user about all the problems they've seen (instead of making the user fix one problem, + rebuild to see the next problem, and repeat). + """ + + def __init__(self, message: str = "Multiple errors encountered", + cvErrors: List[str] = None): + super().__init__(message) + self.errors = cvErrors + + def __str__(self): + if not self.errors: + return self.message + + return f"{self.message}:\n" + "\n".join(self.errors)
+ + + +
+[docs] +class DeviceCommandsFailed(ScriptException): + """ + Exception raised when device fails to run commands with ctx.runDeviceCmds. + This is separate to the commands on the device themselves failing. + This can be caused by the command request being invalid, not caused by + invalid commands being issued + message is the user-facing message for the exception + errCode is the error code returned from the DI service + errMsg is the message that the DI service returned with the error code + """ + + def __init__(self, message: str, errCode: Optional[int] = None, errMsg: Optional[str] = None): + super().__init__(message) + self.errCode = errCode + self.errMsg = errMsg
+ + + +
+[docs] +class LoggingFailed(ScriptException): + """Exception raised when a logging request fails.""" + + __noReasonFail = "Failed to post log with no reason specified" + + def __init__(self, message: str = ""): + super().__init__(message) + + def __str__(self): + if not self.message: + return self.__noReasonFail + return f"Failed to post log: {self.message}"
+ + + +
+[docs] +class TimeoutExpiry(ScriptException): + """ + Exception to raise when alarm signals are used in scripts as timers so that script writers + do not need to define their own exceptions for use in that situation. + Users should raise and catch this exception in the signal handler + so that they can be sure no other exception occurred while the timer was running + """ + + def __init__(self): + super().__init__("Timeout for function call has been exceeded")
+ + + +# ----------------------- Studio Template Exceptions ----------------------- + + +
+[docs] +class TemplateException(ScriptException): + """Overarching class for Template exceptions""" + + def __init__(self, message: str = "cloudvision has encountered a template error"): + super().__init__(message)
+ + + +
+[docs] +class TemplateTypeNotSupported(TemplateException): + """Exception for when a template type is not supported""" + + def __init__(self, message: str = "Unsupported template type", templateType=None): + super().__init__(message) + self.templateType = templateType + + def __str__(self): + if not self.templateType: + return "Provided template type is unsupported" + return f"Unsupported template type {self.templateType}"
+ + + +
+[docs] +class InputError: + """ + This is the primary error that Studio Template writers would raise. + It is raised manually by a template script if the set of inputs violates the script-author's + assumptions. + - message: A user-friendly text message of the error + - inputPath: The path to the field that is in error. It is a list of field names + (the "name" attribute in the schema) starting from the root. + E.g.: ["networkConfig", "0", "config", "monitoredHosts", "1"] + - fieldId: The unique ID of the field (the "id" attribute in the schema). + - members: A list of all members in a group-type input that are in conflict. inputs easily. + In most cases, a script will only specify a single member to show that inputA + has a problem that the end user needs to fix. In certain cases, though, you may + want to indicate to the end user that either inputA or inputB needs fixing, but + both can't coexist in their current form. + """ + + def __init__(self, message: str = "Error in input field", + inputPath: List[str] = None, fieldId: str = None, members: List[str] = None): + self.message = message + self.inputPath = inputPath + self.fieldId = fieldId + self.members = members + + def __str__(self): + return ( + f"{{" + f"message: '{self.message}', " + f"inputPath: {self.inputPath}, " + f"fieldId: '{self.fieldId}', " + f"members: {self.members}" + f"}}" + )
+ + + +
+[docs] +class InputErrorException(TemplateException): + """ + Exception for when a user needs to raise an error with one or more InputError + structures in it. + For Studios, this is raised manually by a template script to report an error with + one or more input values. It allows for errors in multiple input fields to be + reported at once. These errors are displayed to the user in the Studio UI. + """ + + def __init__(self, message: str = "Error in input fields", + inputErrors: List[InputError] = None): + super().__init__(message) + self.errors = inputErrors + + def __str__(self): + if not self.errors: + return self.message + return f"{self.message}:\n" + "\n".join([str(err) for err in self.errors])
+ + + +
+[docs] +class InputEmptyException(TemplateException): + """ + Exception for when an action/template script tries to access an input that wasn't + populated and that input was not optional or doesn't have a default value. + The members field is something that can be used to determine what input was missing. + Members should be usable by the UI to guide users to the right section to fill + out the missing input. + For studios, this is only raised by the internal studios python library utilities. + + For autofill actions, this could be useful for the autofill action to show that it + can't autofill because some of the existing inputs don't make any sense. This also + lets autofill actions act as validators (users press a button to validate in real time) + """ + + def __init__(self, message: str = "attempted to access unpopulated input", + members=None): + + super().__init__(message) + self.members = members
+ + + +# -------------------- Studio Autofill Action Exceptions -------------------- + +# Autofill actions also make use of the script ActionFailed exception +# Note: These autofill actions are executed via Action Exec API. +# This might change the way these exceptions are marshalled. + +
+[docs] +class AutofillActionException(ScriptException): + """Overarching class for Autofill Action exceptions""" + + def __init__(self, message: str = "cloudvision has encountered an autofill action error"): + super().__init__(message)
+ + + +
+[docs] +class InputException(AutofillActionException): + """ Superclass for autofill input exceptions """ + + def __init__(self, message: str = "Error encountered with inputs", inputPath: List[str] = None, + err=None): + super().__init__(message) + self.inputPath = inputPath + self.err = err + + def __str__(self): + msg = self.message + if self.inputPath: + msg += f" ({self.inputPath})" + if self.err: + msg += f": {self.err}" + return msg
+ + + +
+[docs] +class InputRequestException(InputException): + """ + Exception raised when an request to get studio inputs fails + """ + + def __init__(self, inputPath: List[str] = None, err=None): + super().__init__("Failed to retrieve studio inputs", inputPath, err)
+ + + +
+[docs] +class InputUpdateException(InputException): + """ + Exception raised when an update made to studio inputs fails + """ + + def __init__(self, inputPath: List[str] = None, err=None): + super().__init__("Unable to update studio input", inputPath, err)
+ + + +
+[docs] +class InputNotFoundException(InputException): + """ + Exception raised when an input path does not exist in the provided studio inputs + """ + + def __init__(self, inputPath: List[str] = None, err=None): + super().__init__("Input path does not exist in inputs", inputPath, err)
+ + + +# --------------------------- Topology Exceptions --------------------------- + + +
+[docs] +class InvalidTopologyException(CVException): + ''' + Exception class raised when topology model contains invalid configuration + ''' + + def __init__(self, errors): + super().__init__("Invalid topology configuration:\n" + "\n".join(errors)) + self.errors = errors
+ + + +# ---------------------------- Tag Exceptions ------------------------------ + + +
+[docs] +class TagErrorException(CVException): + ''' + Exception raised for tag errors + ''' + + def __init__(self, message: str): + super().__init__("Tag error: " + message) + +
+[docs] + def expTagField(self, field: str): + return field if field else '<unspecified>'
+
+ + + +
+[docs] +class TagOperationException(TagErrorException): + """ + Exception raised when an attempted tag operation is invalid + """ + + def __init__(self, label: str, value: str, operation: str, + devId: str = None, intfId: str = None): + message = (f"invalid attempt to {operation} tag " + f"{self.expTagField(label)}:{self.expTagField(value)}") + if devId: + message = message + " for device " + devId + if intfId: + message = message + " on interface " + intfId + super().__init__(message)
+ + + +
+[docs] +class TagMissingException(TagErrorException): + """ + Exception raised when a tag is missing from a device + """ + + def __init__(self, label: str, devId: str, intfId: str = None): + message = (f"{self.expTagField(label)} tag missing" + f" for device {devId}") + if intfId: + message = message + " on interface " + intfId + super().__init__(message)
+ + + +
+[docs] +class TagTooManyValuesException(TagErrorException): + """ + Exception raised when a tag has too many values assigned to a device + """ + + def __init__(self, label: str, devId: str, currVals: List[str] = None, + intfId: str = None): + message = (f"{self.expTagField(label)} tag has too many values" + f" assigned to device {devId}") + if intfId: + message = message + " on interface " + intfId + if currVals: + message = message + ", assigned values: " + ", ".join(currVals) + super().__init__(message)
+ + + +
+[docs] +class TagInvalidTypeException(TagErrorException): + """ + Exception raised when a tag value is not of the correct type + """ + + def __init__(self, label: str, devId: str, valType: str, currVals: List[str] = None): + message = (f"{self.expTagField(label)} tag" + f" assigned to device {devId}" + f" must have a {valType} value") + if currVals: + message = message + ", assigned values: " + ", ".join(currVals) + super().__init__(message)
+ + + +
+[docs] +class TagInvalidValuesException(TagErrorException): + """ + Exception raised when a tag has invalid values assigned to a device + """ + + def __init__(self, label: str, devId: str, allowedVals: List[str] = None, + currVals: List[str] = None): + message = (f"{self.expTagField(label)} tag has invalid values" + f" assigned to device {devId}") + if allowedVals: + message = message + ", allowed values: " + ", ".join(allowedVals) + if currVals: + message = message + ", assigned values: " + ", ".join(currVals) + super().__init__(message)
+ + + +# ---------------------------- IP Utils Exceptions ------------------------- + + +
+[docs] +class IpErrorException(CVException): + ''' + Exception raised for IP addressing errors + ''' + + def __init__(self, message: str): + super().__init__("IP addressing error: " + message) + +
+[docs] + def expTagField(self, field: str): + return field if field else '<unspecified>'
+
+ + + +
+[docs] +class IpSubnetIndexException(IpErrorException): + """ + Exception raised when subnet indexing into a subnet pool is invalid + """ + + def __init__(self, network, subnet_mask: int, + num_subnets: int, index: int, + hostname: str = None, poolname: str = None): + message = '' + poolmessage = '' + if hostname: + message = f"Device {hostname}: " + message = message + ( + f"Exceeding number of " + f"/{subnet_mask} subnets in {network}. " + f"Index {index} into subnets exceeds " + f"the {num_subnets} available subnets. ") + if poolname: + poolmessage = ( + f"The size of pool {poolname} must be increased " + f"in the studio inputs.") + else: + poolmessage = ( + "The size of the pool must be increased " + "in the studio inputs.") + message = message + poolmessage + super().__init__(message)
+ + + +
+[docs] +class IpHostIndexException(IpErrorException): + """ + Exception raised when host indexing into a subnet is invalid + """ + + def __init__(self, network, num_hosts: int, index: int, + hostname: str = None, poolname: str = None): + message = '' + poolmessage = '' + if hostname: + message = f"Device {hostname}: " + message = message + ( + f"Exceeding number of " + f"addresses in subnet {network}. " + f"Index {index} into subnet exceeds " + f"the {num_hosts} available subnets. ") + if poolname: + poolmessage = ( + f"The size of pool {poolname} must be increased " + f"in the studio inputs.") + else: + poolmessage = ( + "The size of the pool must be increased " + "in the studio inputs.") + message = message + poolmessage + super().__init__(message)
+ + + +
+[docs] +class IpNetworkOverlapException(IpErrorException): + """ + Exception raised when networks unexpectedly overlap + """ + + def __init__(self, network1, network2, + hostname: str = None, poolname: str = None): + message = '' + poolmessage = '' + if hostname: + message = f"Device {hostname}: " + message = message + ( + f"Subnets {network1} and {network2} overlap. ") + if poolname: + poolmessage = ( + f"Avoid overlapping networks by changing {poolname} " + f"in the studio inputs.") + else: + poolmessage = ( + "Avoid overlapping networks by changing the pool " + "in the studio inputs.") + message = message + poolmessage + super().__init__(message)
+ +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_modules/cloudvision/cvlib/execution.html b/_modules/cloudvision/cvlib/execution.html new file mode 100644 index 00000000..ea6f1fae --- /dev/null +++ b/_modules/cloudvision/cvlib/execution.html @@ -0,0 +1,116 @@ + + + + + + + + cloudvision.cvlib.execution — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +

Source code for cloudvision.cvlib.execution

+# Copyright (c) 2022 Arista Networks, Inc.
+# Use of this source code is governed by the Apache License 2.0
+# that can be found in the COPYING file.
+
+
+[docs] +class Execution: + ''' + Object to store standalone execution context: + - executionId: Key of the execution run, used by alog + ''' + + def __init__(self, executionId: str): + self.executionId = executionId
+ +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_modules/cloudvision/cvlib/id_allocator.html b/_modules/cloudvision/cvlib/id_allocator.html new file mode 100644 index 00000000..ba5f7111 --- /dev/null +++ b/_modules/cloudvision/cvlib/id_allocator.html @@ -0,0 +1,189 @@ + + + + + + + + cloudvision.cvlib.id_allocator — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+
    +
  • + + +
  • +
  • +
+
+
+
+
+ +

Source code for cloudvision.cvlib.id_allocator

+# Copyright (c) 2024 Arista Networks, Inc.
+# Use of this source code is governed by the Apache License 2.0
+# that can be found in the COPYING file.
+
+from typing import Set, Dict, List, Optional
+
+
+
+[docs] +class IdAllocator: + ''' + Object to generate unique integer ids, eg. used for generating nodeIds. + Can also be used for checking manually entered ids for duplicates. + - start: starting value of id range + - end: ending value of id range + The following are only used if checking duplicate id errors: + - idNames: optional name associated with ids + - idLabel: name describing id type + - groupLabel: name describing what is being id'd + ''' + def __init__(self, start: int = 1, + end: int = 65000, + idLabel: str = 'id', + groupLabel: str = 'devices'): + self.rangeStart = start + self.rangeEnd = end + self.available = set(range(start, end + 1)) + self.allocated: Set[int] = set() + self.idNames: Dict[int, Optional[str]] = {} + self.idLabel = idLabel + self.groupLabel = groupLabel + +
+[docs] + def allocate(self, allocId: int = None, name: str = None) -> int: + if allocId is not None: + if self.rangeStart <= allocId <= self.rangeEnd: + if allocId not in self.allocated: + self.allocated.add(allocId) + self.idNames[allocId] = name + self.available.remove(allocId) + elif name: + assert name == self.getIdNames().get(allocId), ( + f"The same {self.idLabel}, {allocId}, can not be " + f"applied to both of these {self.groupLabel}: " + f"{self.getIdNames().get(allocId)}, " + f"{name}") + return allocId + raise ValueError(f"Id {allocId} is outside the available range") + if not self.available: + raise ValueError("no more Ids available") + allocatedId = min(self.available) + self.available.remove(allocatedId) + self.allocated.add(allocatedId) + self.idNames[allocatedId] = name + return allocatedId
+ + +
+[docs] + def free(self, freeId: int): + if self.rangeStart <= freeId <= self.rangeEnd: + self.available.add(freeId) + if freeId in self.allocated: + self.allocated.remove(freeId) + self.idNames.pop(freeId, None) + else: + raise ValueError(f"Id {freeId} is outside the available range")
+ + +
+[docs] + def getAvailable(self) -> List: + return list(self.available)
+ + +
+[docs] + def getAllocated(self) -> List: + return list(self.allocated)
+ + +
+[docs] + def getIdNames(self) -> Dict: + return self.idNames
+
+ +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_modules/cloudvision/cvlib/iputils.html b/_modules/cloudvision/cvlib/iputils.html new file mode 100644 index 00000000..3cb0eea8 --- /dev/null +++ b/_modules/cloudvision/cvlib/iputils.html @@ -0,0 +1,257 @@ + + + + + + + + cloudvision.cvlib.iputils — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +

Source code for cloudvision.cvlib.iputils

+# Copyright (c) 2024 Arista Networks, Inc.
+# Use of this source code is governed by the Apache License 2.0
+# that can be found in the COPYING file.
+#
+# The purpose of this file is to provide ip utilities that are
+# safe for both ipv4 and ipv6
+# DO NOT use network.subnets() due to performance impact.
+# DO NOT use network.hosts() due to performance impact.
+
+import ipaddress
+import json
+from typing import List
+
+from .exceptions import (
+    IpSubnetIndexException,
+    IpHostIndexException,
+    IpNetworkOverlapException,
+)
+
+
+
+[docs] +def is_ipv4(ip): + # Determine if the given network is IPv4 + try: + ipaddress.IPv4Network(ip, strict=False) + return True + except ValueError: + return False
+ + + +
+[docs] +def is_ipv6(ip): + # Determine if the given network is IPv6 + try: + ipaddress.IPv6Network(ip, strict=False) + return True + except ValueError: + return False
+ + + +
+[docs] +def number_of_usable_addresses(network): + net = ipaddress.ip_network(network, strict=False) + if net.version == 4 and net.num_addresses > 2: + # exclude addresses for identification (first) + # and broadcast (last) + return net.num_addresses - 2 + elif net.version == 6 and net.num_addresses > 2: + # exclude anycast (first) address + return net.num_addresses - 1 + else: + # for a p2p-link network use all 2 addresses + return net.num_addresses
+ + + +
+[docs] +def first_usable_address(network): + net = ipaddress.ip_network(network, strict=False) + if net.num_addresses < 3: + return net[0] + return str(net[1])
+ + + +
+[docs] +def last_usable_address(network): + net = ipaddress.ip_network(network, strict=False) + if net.num_addresses < 3: + return net[-1] + return str(net[-2]) if net.version == 4 else str(net[-1])
+ + + +
+[docs] +def get_number_subnets(network, subnet_mask: int): + # Calculate the total number of subnets of the given mask + # on the given network + network = ipaddress.ip_network(network, strict=False) + bit_difference = subnet_mask - network.prefixlen + total_subnets = 2 ** bit_difference + return total_subnets
+ + + +
+[docs] +def get_subnet_by_index(network, subnet_mask: int, index: int, + hostname: str = None, poolname: str = None): + # Return the subnet at the specified index. + # Input index is 0 based. + total_subnets = get_number_subnets(network, subnet_mask) + # Ensure the index is within the valid range + if index < 0 or index >= total_subnets: + raise IpSubnetIndexException( + network, subnet_mask, total_subnets, index, + hostname, poolname) + # Calculate the offset for the subnet at the given index + if is_ipv6(network): + bit_length = 128 + else: + bit_length = 32 + network = ipaddress.ip_network(network, strict=False) + offset = index * (1 << (bit_length - subnet_mask)) + new_subnet_address = int(network.network_address) + offset + subnet = ipaddress.ip_network( + f"{ipaddress.ip_address(new_subnet_address)}/{subnet_mask}", + strict=False) + return subnet
+ + + +
+[docs] +def get_ip_from_subnet(network, index: int, hostname: str = None, + poolname: str = None): + # Return the ip address at the specified index. + # Input index is 0 based. + num_addresses = number_of_usable_addresses(network) + if (network.version == 4 and network.prefixlen < 31) or ( + network.version == 6 and network.prefixlen < 127): + # When indexing directly into non p2p-link networks, + # skip identification/anycast address + index += 1 + if index > num_addresses: + raise IpHostIndexException( + network, num_addresses, index, hostname, poolname) + return network[index]
+ + + +
+[docs] +def overlapping_networks_check(networks: List[str], hostname: str = None, + poolname: str = None): + # Given a list of networks ensures they do not overlap + for idx1 in range(len(networks)): + if networks[idx1].strip() == "": + continue + network1 = ipaddress.ip_network(networks[idx1], strict=False) + idx2 = idx1 + 1 + while idx2 < len(networks): + network2 = ipaddress.ip_network(networks[idx2], strict=False) + if network1.overlaps(network2): + raise IpNetworkOverlapException( + network1, network2, hostname, poolname) + idx2 += 1
+ +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_modules/cloudvision/cvlib/logger.html b/_modules/cloudvision/cvlib/logger.html new file mode 100644 index 00000000..abcf1836 --- /dev/null +++ b/_modules/cloudvision/cvlib/logger.html @@ -0,0 +1,144 @@ + + + + + + + + cloudvision.cvlib.logger — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +

Source code for cloudvision.cvlib.logger

+# Copyright (c) 2022 Arista Networks, Inc.
+# Use of this source code is governed by the Apache License 2.0
+# that can be found in the COPYING file.
+
+from typing import Any, Callable, Dict, Optional
+
+
+
+[docs] +class Logger: + ''' + Logger object that stores a number of user-defined logging functions + Due to context being pickled at certain execution stages of actions/studios, a normal python + logger cannot be used. + Minimum required call signatures are described by the init function, where 'Any' denotes the + context being passed to avoid cyclical imports + - alog: Function to be used for audit log insertion + - trace: Function to be used for trace level logging + - debug: Function to be used for debug level logging + - info: Function to be used for info level logging + - warning: Function to be used for warning level logging + - error: Function to be used for error level logging + - critical: Function to be used for critical level logging + ''' + + def __init__(self, + alog: Callable[ + [Any, str, Optional[str], Optional[str], Optional[Dict[str, str]]], None + ], + trace: Callable[[Any, str, Optional[Dict[str, str]]], None], + debug: Callable[[Any, str, Optional[Dict[str, str]]], None], + info: Callable[[Any, str, Optional[Dict[str, str]]], None], + warning: Callable[[Any, str, Optional[Dict[str, str]]], None], + error: Callable[[Any, str, Optional[Dict[str, str]]], None], + critical: Callable[[Any, str, Optional[Dict[str, str]]], None]): + self.alog = alog + self.trace = trace + self.debug = debug + self.info = info + self.warning = warning + self.error = error + self.critical = critical
+ +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_modules/cloudvision/cvlib/studio.html b/_modules/cloudvision/cvlib/studio.html new file mode 100644 index 00000000..dd490c74 --- /dev/null +++ b/_modules/cloudvision/cvlib/studio.html @@ -0,0 +1,812 @@ + + + + + + + + cloudvision.cvlib.studio — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +

Source code for cloudvision.cvlib.studio

+# Copyright (c) 2022 Arista Networks, Inc.
+# Use of this source code is governed by the Apache License 2.0
+# that can be found in the COPYING file.
+
+import json
+from typing import Any, Dict, List, Tuple
+
+import google.protobuf.wrappers_pb2 as pb
+from google.protobuf.timestamp_pb2 import Timestamp
+from grpc import RpcError, StatusCode
+
+from arista.studio.v1 import models, services
+from arista.time.time_pb2 import TimeBounds
+from cloudvision.Connector.codec import Path
+from cloudvision.Connector.grpc_client import create_notification
+from fmp import wrappers_pb2 as fmp_wrappers
+
+from .constants import (
+    INPUT_PATH_ARG,
+    MAINLINE_WS_ID,
+    STUDIO_ID_ARG,
+    WORKSPACE_ID_ARG,
+    TIMEOUT_REQUEST,
+)
+from .exceptions import (
+    InputException,
+    InputNotFoundException,
+    InputUpdateException,
+    InvalidContextException,
+    InvalidCredentials,
+)
+from .utils import extractJSONEncodedListArg
+from .workspace import getWorkspaceLastSynced
+
+
+
+[docs] +class Studio: + ''' + Object to store studio context: + - workspaceId: Id of the workspace + - studioId: Id of the studio + - inputs: inputs provided to the studio + - deviceIds: Ids of the devices associated with this studio + - logger: The logger to be used with this studio + - execId: Id of the execution + - buildId: Id of the studio build + ''' + + def __init__(self, workspaceId: str, studioId: str, inputs=None, + deviceIds=None, logger=None, execId=None, buildId=None): + self.workspaceId = workspaceId + self.studioId = studioId + self.inputs = inputs + self.deviceIds = deviceIds + self.logger = logger + self.execId = execId + self.buildId = buildId
+ + + +
+[docs] +class StudioCustomData: + ''' + Object to store studio custom data context: + - context: stores system and user-defined parameters. + - chunk_size: chunk size of stored data. + ''' + + def __init__(self, context): + self.context = context + self.chunk_size = 1000 * 1024 + + def __getBuildPath(self, studioId, path, key) -> List[str]: + ''' + Builds a path for use in store/retrieve of studio custom data during a build + using the studioId, path and key provided by the user. All paths contain + "workspace/<wsId>/build/<buildId>/studio/<studioId>/customData" as the root. + Raises InvalidContextException if not enough context information is present + to create a key + ''' + if (studioId and self.context and self.context.studio + and self.context.studio.buildId): + workpaceId = self.context.getWorkspaceId() + return ["workspace", workpaceId, "status", "build", + self.context.studio.buildId, "studio", studioId, + "customData"] + path + [key] + raise InvalidContextException( + "store/retrieve requires context with studio and" + + "build associated with it.") + + def __getMainlinePath(self, studioId, path, key) -> List[str]: + ''' + Builds a path for use in retrieve of studio custom data from mainline + using studioID, path and key. All paths contain + "/studio/<studioId>/customData" as the root. + ''' + return ["studio", studioId, "customData"] + path + [key] + +
+[docs] + def store(self, data: str = "", path: List[str] = [], key: str = ""): + ''' + store puts the passed studio custom data into a path in the Database. + The data is stored in 1MB chunks. + + Params: + - data: The string data to be stored. + - path: The path to store the data at, in the form of a list of strings. + paths have "workspace/<wsId>/build/<buildId>/studio/<studioId>/customData" + as the root. + - key: The key to store the data at in the path. + ''' + if not isinstance(data, str): + raise TypeError("only string data is allowed.") + if not self.context or not self.context.studio: + raise InvalidContextException("store requires a studio in the context.") + if not data: + raise ValueError("no data added.") + if not key: + raise ValueError("invalid key.") + + ts = Timestamp() + ts.GetCurrentTime() + storagePath = self.__getBuildPath(self.context.studio.studioId, path, key) + # Generate the list of path pointer notifs that lead to the new entry + notifs = [] + for i, pathElem in enumerate(storagePath): + # skip creation of workspace and build pointers + if i <= 4: + continue + pathPointerPath = storagePath[:i] + pathPointerUpdate = [(pathElem, Path(keys=storagePath[:i + 1]))] + notifs.append(create_notification(ts, pathPointerPath, + updates=pathPointerUpdate)) + + try: + self.context.getCvClient().publish(dId="cvp", notifs=notifs) + # publish data + for i in range(0, len(data), self.chunk_size): + update = [(f"{key}_{i // self.chunk_size}", data[i:i + self.chunk_size])] + notifs = [create_notification(ts, storagePath, updates=update)] + self.context.getCvClient().publish(dId="cvp", notifs=notifs) + except RpcError as exc: + # If the exception is not a permissions error, reraise the original + # exception as something went wrong + if exc.code() != StatusCode.PERMISSION_DENIED: + raise + raise InvalidCredentials( + f"Context user does not have permission to write to path '{storagePath}'")
+ + +
+[docs] + def retrieve(self, studioId: str = "", path: List[str] = [], searchKey: str = ""): + ''' + retrieve gets the custom data from a path and key written by a studio + in the Database. + Params: + - studioId: The studioId of studio that generates the data to be retrieved. + - path: The path to get the data from, path is a list of strings. + - key: The key to get the data from in the path. + ''' + if not studioId: + raise ValueError("studioId must be provided") + if not searchKey: + raise ValueError("invalid key.") + if not self.context: + raise InvalidContextException("retrieve requires context to be set") + + try: + data = dict() + try: + storagePath = self.__getBuildPath(studioId, path, searchKey) + data = self.context.Get(storagePath, [], "cvp") + except InvalidContextException as e: + self.context.logger.info( + self.context, "custom data not found in build: {}".format(e.message)) + # get data from mainline if data is not generated during build. + if not data: + self.context.logger.info(self.context, "reading custom data from mainline.") + storagePath = self.__getMainlinePath(studioId, path, searchKey) + data = self.context.Get(storagePath, [], "cvp") + return ''.join(data[k] for k in + sorted(data.keys(), key=lambda x: int(x.split(f'{searchKey}_')[1])) + if isinstance(data[k], str)) + except RpcError as exc: + if exc.code() != StatusCode.PERMISSION_DENIED: + raise + raise InvalidCredentials( + f"Context user does not have permission to read from path '{storagePath}'") + except IndexError: + raise ValueError("Invalid Key format: {}".format(data.keys()))
+
+ + + +
+[docs] +def getStudioInputs(clientGetter, studioId: str, workspaceId: str, path: List[str] = []): + ''' + Uses the passed ctx.getApiClient function reference to issue get the current input state for + given combination of studioId, workspaceId and path. + Path MUST be a non-None list, omitting this argument retrieves the full studio input tree. + This function falls back to mainline state at workspace creation time (or last rebase time) + to build up the state should the workspace studio state not be created yet and checks to see + if any deletes would affect the requested input. + + Raises an InputNotFoundException if the input requested does not exist. + ''' + if path is None: + raise TypeError("Path must be a non-None value") + + inputs = __getStudioInputs(clientGetter, studioId, workspaceId) + if not inputs: + # If we're searching for inputs on mainline and we receive none from the getAll, + # raise an exception + if workspaceId == MAINLINE_WS_ID: + raise InputNotFoundException( + path, f"Mainline inputs for studio {studioId} do not exist") + + # Check the config endpoint for the workspace to ensure that + # the mainline value has not been deleted + # We need to check each individual subpath for deletes as they will take precedence + # We don't need to check the timestamps as if they have been overwritten, then + # state will exist and we will not reach here + for i in range(len(path) + 1): + subpath = path[:i] + try: + conf = __getStudioInputConfig(clientGetter, studioId, workspaceId, subpath) + except InputNotFoundException: + continue + if conf.remove.value: + raise InputNotFoundException( + path, (f"Inputs for studio {studioId} at path {path} in " + f"workspace {workspaceId} have been deleted")) + + # Get the lastRebasedAt timestamp, or if that's null, then the createdAt timestamp + # of the workspace such that the correct mainline state is retrieved + wsTs = getWorkspaceLastSynced(clientGetter, workspaceId) + mainlineInputs = __getStudioInputs(clientGetter, studioId, MAINLINE_WS_ID, + start=wsTs, end=wsTs) + if not mainlineInputs: + raise InputNotFoundException(path, f"Inputs for studio {studioId} do not exist") + + inputs = mainlineInputs + + # In the case where a path has been specified, the inputs reflect that subtree from the root + # input, rather than from the specified path. We need to iterate through the inputs down to + # the path desired to return only the requested portion + + finalInput = inputs + for pthElem in path: + try: + finalInput = finalInput[pthElem] + except TypeError: + # Stringified input path will stringify all elements, even integer values, + # so there are cases where list elements are attempted to be accessed with + # stringified indices. Attempt conversion to int and retry + try: + idx = int(pthElem) + finalInput = finalInput[idx] + except IndexError as idxE: + raise InputNotFoundException(path, f"'{pthElem}' {idxE}") from None + except (TypeError, ValueError): + raise InputNotFoundException( + path, f"{pthElem} not present in inputs {finalInput}") from None + except (KeyError, IndexError) as e: + raise InputNotFoundException( + path, f"{pthElem} not present in inputs {finalInput}: {e}") from None + + return finalInput
+ + + +def __getStudioInputs(clientGetter, studioId: str, workspaceId: str, start=None, end=None): + client = clientGetter(services.InputsServiceStub) + wid = pb.StringValue(value=workspaceId) + sid = pb.StringValue(value=studioId) + key = models.InputsKey(studio_id=sid, workspace_id=wid) + p_filter = models.Inputs(key=key) + + startTs = None + endTs = None + if start: + startTs = start + if end: + endTs = end + timeBound = TimeBounds(start=startTs, end=endTs) + req = services.InputsStreamRequest(time=timeBound) + req.partial_eq_filter.append(p_filter) + + inputs = None + # We need to issue the get requests as part of a GetAll to allow for truncated inputs + for res in client.GetAll(req, timeout=TIMEOUT_REQUEST): + inpResp = res.value + if not inpResp.inputs: + continue + path = inpResp.key.path.values + split = json.loads(inpResp.inputs.value) + inputs = mergeStudioInputs(inputs, path, split) + + return inputs + + +def __getStudioInputConfig(clientGetter, studioId: str, workspaceId: str, path: List[str] = []): + client = clientGetter(services.InputsConfigServiceStub) + wid = pb.StringValue(value=workspaceId) + sid = pb.StringValue(value=studioId) + key = models.InputsKey(studio_id=sid, workspace_id=wid, + path=fmp_wrappers.RepeatedString(values=path)) + req = services.InputsConfigRequest(key=key) + + try: + configResp = client.GetOne(req, timeout=TIMEOUT_REQUEST) + except RpcError as confExc: + # If the config does not exist for the workspace, return the mainline state + if confExc.code() == StatusCode.NOT_FOUND: + raise InputNotFoundException( + path, (f"Config not found for input key with studio {studioId}" + f"workspace {workspaceId} and path {path}")) + raise + + return configResp.value + + +
+[docs] +def setStudioInput(clientGetter, studioId: str, workspaceId: str, inputPath: List[str], + value: str, remove: bool = False): + ''' + Uses the passed ctx.getApiClient function reference to + issue a set to the Studio inputs rAPI with the associated input path and value + ''' + try: + serialized = json.dumps(value) + except TypeError as e: + raise InputException( + message=f"Cannot set value as input: {e}", inputPath=inputPath) from None + client = clientGetter(services.InputsConfigServiceStub) + wid = pb.StringValue(value=workspaceId) + sid = pb.StringValue(value=studioId) + key = models.InputsKey(studio_id=sid, + workspace_id=wid, + path=fmp_wrappers.RepeatedString(values=inputPath)) + if remove: + req = services.InputsConfigSetRequest( + value=models.InputsConfig(key=key, remove=pb.BoolValue(value=remove)) + ) + else: + req = services.InputsConfigSetRequest( + value=models.InputsConfig(key=key, inputs=pb.StringValue(value=serialized)) + ) + try: + client.Set(request=req, timeout=TIMEOUT_REQUEST) + except RpcError as exc: + raise InputUpdateException(inputPath, f"Value {value} was not set: {exc}") from None
+ + + +
+[docs] +def setStudioInputs(clientGetter, studioId: str, workspaceId: str, + inputs: List[Tuple]): + ''' + Uses the passed ctx.getApiClient function reference to + issue a setSome to the Studio inputs rAPI with the associated InputsConfig + + The inputs list should contain tuples of a fixed size, either with a + length of 2 or a length of 3. Tuple: (Path, Inputs) or (Path, Inputs, Remove) + a mixed list [(path, value, remove), (path, value),..] is supported + + The value doesn't matter if the remove flag is True + ''' + client = clientGetter(services.InputsConfigServiceStub) + wid = pb.StringValue(value=workspaceId) + sid = pb.StringValue(value=studioId) + inputsConfigs = [] + for entry in inputs: + if len(entry) == 2: + path, value = entry + key = models.InputsKey(studio_id=sid, + workspace_id=wid, + path=fmp_wrappers.RepeatedString(values=path)) + try: + serialized = json.dumps(value) + except TypeError as e: + raise InputException( + message=f"Cannot set value as input: {e}", inputPath=path) from None + item = models.InputsConfig(key=key, inputs=pb.StringValue(value=serialized)) + elif len(entry) == 3: + path, value, remove = entry + key = models.InputsKey(studio_id=sid, + workspace_id=wid, + path=fmp_wrappers.RepeatedString(values=path)) + try: + serialized = json.dumps(value) + except TypeError as e: + raise InputException( + message=f"Cannot set value as input: {e}", inputPath=path) from None + if remove: + item = models.InputsConfig(key=key, remove=pb.BoolValue(value=remove)) + else: + item = models.InputsConfig(key=key, inputs=pb.StringValue(value=serialized)) + else: + raise InputException( + message=f"Invalid entry length: {len(entry)}", inputPath=entry[0]) from None + inputsConfigs.append(item) + req = services.InputsConfigSetSomeRequest( + values=inputsConfigs + ) + try: + for res in client.SetSome(request=req, timeout=TIMEOUT_REQUEST): + pass + except RpcError as exc: + raise InputUpdateException(err=f"Inputs {inputs} was not set: {exc}") from None
+ + + +
+[docs] +def extractInputElems(inputs, inputPath: List[str], elems: List[str] = [], + tagElems: List[str] = []): + ''' + Takes lists of elements and tag elements, and traverses through the input tree towards the + Input path, extracting the most recent matching values for these elements from the inputs. + + Returns these results in a single dict, so overwriting of results will occur if specified + elements/tag elements have the same name in the inputs tree + ''' + results = {} + currInput = inputs + # Go through the input path to find the associated elements + # tags are stored in the form "tags":{ "query": "<tag>:<value>" } + for pthElem in inputPath: + + # Check the current input element for existence of wanted elements + for elem in elems: + if elem in currInput: + results[elem] = currInput[elem] + + # Check the current input element for existence of wanted tag elements + if "tags" in currInput: + query = currInput["tags"]["query"] + for elem in tagElems: + # Add the colon used to separate value and tag in the query + tagElem = elem + ":" + if tagElem in query: + results[elem] = query[len(tagElem):] + + try: + currInput = currInput[pthElem] + except TypeError: + # Stringified input path will stringify all elements, even integer values, + # so there are cases where list elements are attempted to be accessed with + # stringified indices. Attempt conversion to int and retry + try: + idx = int(pthElem) + currInput = currInput[idx] + except IndexError as idxE: + raise InputNotFoundException(inputPath, f"'{pthElem}' {idxE}") from None + except (TypeError, ValueError): + raise InputNotFoundException(inputPath) from None + except (KeyError, IndexError) as e: + raise InputNotFoundException(inputPath, f"{e} not present in inputs") from None + # Ensure sane value and allow for current input to be None + if currInput is None and pthElem != inputPath[-1]: + raise InputNotFoundException(inputPath) + + return results
+ + + +
+[docs] +def getSimpleResolverQueryValue(query: str): + ''' + Autofill action arguments may be resolver queries. In these cases the string + argument is in the form of "<tag>:<Value>" or more complex queries such as + "<tag>:<ValueA> OR <tag>:<ValueB>". This function is designed to extract the + query values from a simple query. + + Params: + - query: The simple query string, e.g. "<tag>:<Value>" + + Returns: + - The query value, e.g. "<Value>" from the above example. + + Raises an InputException in the case where the passed query is not parsable as a simple query + ''' + queryElems = query.split(":") + if len(queryElems) == 1: + raise InputException(f"Passed 'query' \"{query}\" does not appear to be a query") + if len(queryElems) > 2: + raise InputException(f"Passed query \"{query}\" is a complex query") + queryValue = queryElems[1] + if len(queryValue) == 0: + raise InputException(f"Passed query \"{query}\" is missing a value") + return queryValue
+ + + +
+[docs] +def extractStudioInfoFromArgs(args: Dict): + ''' + Studio Autofill actions contains studio related information in their arguments, but a studio + is not instantiated and associated with the context. As these actions require interfacing with + studio APIs, this function extracts the studio info (verifies this info is valid if needed) + and returns it to the user in the order below. + + These are (All return values may be None in the case the field is not present); + - StudioID: The ID of the studio associated with the action + - WorkspaceID: The ID of the workspace associated with the + - InputPath: The string path elements leading to the input element in the action + + NOTE: Input paths containing array/list indices will be stringified, so use caution when + iterating through the input tree using this. These are not converted to integer values + as they could clash with elements containing only numbers. + The `extractInputElems` method accounts for this and is suggested over manually traversing + the tree looking for elements + ''' + studioId = args.get(STUDIO_ID_ARG) + workspaceId = args.get(WORKSPACE_ID_ARG) + inputPath = None + inputPathArg = args.get(INPUT_PATH_ARG) # This is a stringified list + if inputPathArg: + try: + inputPath = extractJSONEncodedListArg(inputPathArg) + except ValueError as e: + raise ValueError("Studio input path must be a list of strings") from e + return studioId, workspaceId, inputPath
+ + + +
+[docs] +def GetOneWithWS(apiClientGetter, stateStub, stateGetReq, configStub, confGetReq): + ''' + For Studio APIs, the state for a particular workspace can be difficult to determine. + A state for a particular workspace only exists if an update has occurred for that workspace. + State may exist in mainline, or the configuration change in the workspace may have explicitly + deleted the state. + + GetOneWithWS does the following to try and provide state for the get request: + - Do a get on the X state endpoint in the particular workspace for the desired state + - If the state does NOT exist, issue another get on the X state endpoint for the + mainline state. + - If the state DOES exist there, check the X configuration endpoint of the workspace to + see if the state has been explicitly deleted there. + + Params: + - apiClientGetter: The API client getter, i.e. ctx.getApiClient + - stateStub: The stub for the state endpoint + - stateGetReq: A workspace-aware get request to be made to the state client for the + desired workspace. It is assumed that the get request has a key field + "workspace_id", such that mainline can be queried in the case that the + workspace query does not return anything. + - configStub: The stub for the config endpoint + - confGetReq: A workspace-aware get request to be made to the config client for the + desired workspace. + + Returns: + - The request's value, or None if the resource has been deleted + ''' + + if not hasattr(stateGetReq.key, 'workspace_id'): + raise ValueError("Passed request to GetOneWithWS has no key attribute 'workspace_id'") + + stateClient = apiClientGetter(stateStub) + # Issue a get to the state endpoint for the workspace + try: + result = stateClient.GetOne(stateGetReq, timeout=TIMEOUT_REQUEST) + except RpcError as exc: + # If the state does not exist for the workspace, reraise the original + # exception as something went wrong + if exc.code() != StatusCode.NOT_FOUND: + raise + + # In the case where the original get req is for the mainline, + # nothing further we can do + if stateGetReq.key.workspace_id.value == MAINLINE_WS_ID: + raise + + # Get the lastRebasedAt timestamp, or if that's null, then the createdAt timestamp + # of the workspace such that the correct mainline state is retrieved + wsTs = getWorkspaceLastSynced(apiClientGetter, stateGetReq.key.workspace_id.value) + # Try again for the mainline state + stateGetReq.key.workspace_id.value = MAINLINE_WS_ID + stateGetReq.time = wsTs + try: + result = stateClient.GetOne(stateGetReq, timeout=TIMEOUT_REQUEST) + except RpcError as mainlineExc: + # Handle the mainline error as its own exception, such that stack + # traces don't contain nested exceptions such as "when handling the + # above exception, another exception occurred" + raise mainlineExc from None + + # Check the config endpoint for the workspace to ensure that + # the mainline value has not been deleted + configClient = apiClientGetter(configStub) + try: + configResp = configClient.GetOne(confGetReq, timeout=TIMEOUT_REQUEST) + except RpcError as confExc: + # If the config does not exist for the workspace, return the mainline state + if confExc.code() == StatusCode.NOT_FOUND: + return result.value + # Handle the config error as its own exception, such that stack + # traces don't contain nested exceptions such as "when handling the + # above exception, another exception occurred" + raise confExc from None + + # Remove is a config field for workspace-aware configuration apis + # If it is set it means that configuration has been explicitly + # deleted for this ws + if configResp.value.remove: + # Config has been explicitly removed, return nothing + return None + + return result.value
+ + + +
+[docs] +def mergeStudioInputs(rootInputs: Any, path: List[Any], inputsToInsert: Any): + ''' + Due to grpc messaging limits, large inputs may be sent out to get requests + in chunks, and should be retrieved with a GetAll to ensure all inputs + for a given studio are received. + + In the case where a studio resource returns inputs in multiple responses, they need to + be spliced together to form a cohesive input object. + + Params: + - rootInputs: The root object to insert the new inputs into + - path: The path in the rootInputs to insert the inputs into + - inputsToInsert: The inputs to insert into the root inputs + + Returns: + - The updated root inputs + ''' + prevElem: Any | None = None + prev = rootInputs + currElem = None + curr = rootInputs + + # Walk down the path from the root to the value at the final element, creating any sub-objects + # or sub-lists along the way if they don't exist. + for currElem in path: + # This element is a list index... + if currElem.isnumeric(): + # If the current value is not a list, set it to one. + if not isinstance(curr, list): + if prevElem is None: + rootInputs = [] + curr = rootInputs + elif prevElem.isnumeric(): + prevElemInt = int(prevElem) + prev[prevElemInt] = [] + curr = prev[prevElemInt] + else: + prev[prevElem] = [] + curr = prev[prevElem] + # If this index is past the last index of the current list, extend the list until + # it is big enough for it. + currElemInt = int(currElem) + if currElemInt >= len(curr): + while len(curr) < currElemInt + 1: + curr.append(None) + # Move to the value at the index. + prevElem = currElem + prev = curr + curr = curr[currElemInt] + # Otherwise this element is an object key... + else: + # If the current value is not an object, set it to one. + if not isinstance(curr, dict): + if prevElem is None: + rootInputs = {} + curr = rootInputs + elif prevElem.isnumeric(): + prevElemInt = int(prevElem) + prev[prevElemInt] = {} + curr = prev[prevElemInt] + else: + prev[prevElem] = {} + curr = prev[prevElem] + # If the current value does not contain this + # key, add it. + if currElem not in curr: + curr[currElem] = None + # Move to the value at the key. + prevElem = currElem + prev = curr + curr = curr[currElem] + # If the path leads to an object, then merge it with the previous object. + if isinstance(curr, dict): + curr.update(inputsToInsert) + + # If it leads to any other type, then simply set it to the inputsToInsert. + else: + if currElem is None: + rootInputs = inputsToInsert + elif currElem.isnumeric(): + prev[int(currElem)] = inputsToInsert + else: + prev[currElem] = inputsToInsert + return rootInputs
+ +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_modules/cloudvision/cvlib/tags.html b/_modules/cloudvision/cvlib/tags.html new file mode 100644 index 00000000..e21cc33d --- /dev/null +++ b/_modules/cloudvision/cvlib/tags.html @@ -0,0 +1,841 @@ + + + + + + + + cloudvision.cvlib.tags — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +

Source code for cloudvision.cvlib.tags

+# Copyright (c) 2023 Arista Networks, Inc.
+# Use of this source code is governed by the Apache License 2.0
+# that can be found in the COPYING file.
+
+from grpc import RpcError
+from typing import Dict, List, Tuple
+
+from arista.tag.v2.services import (
+    TagAssignmentServiceStub,
+    TagAssignmentStreamRequest,
+    TagConfigServiceStub,
+    TagConfigSetRequest,
+    TagConfigSetSomeRequest,
+    TagAssignmentConfigStreamRequest,
+    TagAssignmentConfigServiceStub,
+    TagAssignmentConfigSetRequest,
+    TagAssignmentConfigSetSomeRequest
+)
+from arista.tag.v2.tag_pb2 import (
+    TagAssignment,
+    TagAssignmentConfig,
+    TagConfig,
+    ElementType,
+    ELEMENT_TYPE_DEVICE,
+    ELEMENT_TYPE_INTERFACE,
+    CREATOR_TYPE_USER,
+)
+from arista.time.time_pb2 import TimeBounds
+from .constants import TIMEOUT_REQUEST
+from .exceptions import (
+    TagOperationException
+)
+from .workspace import (
+    getWorkspaceLastSynced
+)
+
+MAINLINE_ID = ""
+
+
+
+[docs] +class Tag: + ''' + Object that represents a tag + ''' + + def __init__(self, label: str, value: str): + self._label = label if label else '' + self._value = value if value else '' + + @property + def value(self): + return self._value + + @property + def label(self): + return self._label + + def __eq__(self, other): + return self.__dict__ == other.__dict__ + + def __lt__(self, other): + if self.label != other.label: + return self.label < other.label + else: + return self.value < other.value
+ + + +
+[docs] +class Tags: + ''' + Object to store tags data relevant to a studio build context. + Note, this class and the methods in context and device classes which use it, + are meant to be used from studio workspace builds and will operate on + tags within workspaces using the workspace and studio in the context. + Implemented so only one access is made to retreive tags from the remote tags service. + (two accesses until the tags service provided merged mainline-workspace state apis) + Note that a tag is of the form label:value, where the same label may be associated + with many values. + Device tags are assigned to devices. + Interface tags are assigned to devices' interfaces. + - ctx: Context in which the studio build is run + - relevantTagAssigns: Dictionary of relevant device tags, of the form: + {deviceId: {label: [value1,value2,..]}}, + works like a cache + - relevantIntfTagAssigns: Dictionary of relevant interface tags, of the form: + {deviceId: {intfId: {label: [value1,value2,..]}}}, + works like a cache + ''' + + def __init__(self, context): + self.ctx = context + self.relevantTagAssigns: Dict = None + self.relevantIntfTagAssigns: Dict = None + + def _getTagUpdatesFromWorkspace(self, etype=ELEMENT_TYPE_DEVICE): + ''' + _getTagUpdatesFromWorkspace returns a list of tags updates, + of the specified ElementType, in the workspace. + The returned list is of the form: + list[(deviceId, interfaceId, label, value, remove)] + ''' + workspaceTagUpdates = [] + tagClient = self.ctx.getApiClient(TagAssignmentConfigServiceStub) + tagRequest = TagAssignmentConfigStreamRequest() + tagFilter = TagAssignmentConfig() + tagFilter.key.element_type = etype + tagFilter.key.workspace_id.value = self.ctx.getWorkspaceId() + tagRequest.partial_eq_filter.append(tagFilter) + for resp in tagClient.GetAll(tagRequest, timeout=TIMEOUT_REQUEST): + workspaceTagUpdates.append((resp.value.key.device_id.value, + resp.value.key.interface_id.value, + resp.value.key.label.value, + resp.value.key.value.value, + resp.value.remove.value)) + return workspaceTagUpdates + + def _createTag(self, etype: int, label: str, value: str): + ''' + _createTag creates a tag if it doesn't already exist, + of the specified ElementType, in the workspace. + ''' + if not label or not value: + raise TagOperationException(label, value, 'create') + # check if the tag exists + if etype == ELEMENT_TYPE_DEVICE and self._deviceTagExists(label, value): + return + if etype == ELEMENT_TYPE_INTERFACE and self._interfaceTagExists(label, value): + return + # create the tag + setRequest = TagConfigSetRequest() + wsID = self.ctx.getWorkspaceId() + setRequest.value.key.workspace_id.value = wsID + # Mypy complains about this not being an int, with + # (expression has type "int", variable has type "ValueType") + # but ValueType = typing.NewType('ValueType', builtins.int), so just ignore it + setRequest.value.key.element_type = etype # type: ignore + setRequest.value.key.label.value = label + setRequest.value.key.value.value = value + tagClient = self.ctx.getApiClient(TagConfigServiceStub) + tagClient.Set(setRequest, timeout=TIMEOUT_REQUEST) + + def _createTags(self, etype: int, tags: List[Tuple], configsPerReq=1000): + ''' + _createTags creates multiple tags if they don't already exist, + of the specified ElementType, in the workspace. + The input tags is a List of Tuples of (label, value) + ''' + # remove from the list if the tag already exists + for (label, value) in tags[:]: + if not label or not value: + raise TagOperationException(label, value, 'create') + if etype == ELEMENT_TYPE_DEVICE and self._deviceTagExists(label, value): + tags.remove((label, value)) + if etype == ELEMENT_TYPE_INTERFACE and self._interfaceTagExists(label, value): + tags.remove((label, value)) + if not tags: + return + # create the tags + tagConfigs = [] + wsID = self.ctx.getWorkspaceId() + for (label, value) in tags: + tagConfig = TagConfig() + tagConfig.key.workspace_id.value = wsID + # Mypy complains about this not being an int, with + # (expression has type "int", variable has type "ValueType") + # but ValueType = typing.NewType('ValueType', builtins.int), so just ignore it + tagConfig.key.element_type = etype # type: ignore + tagConfig.key.label.value = label + tagConfig.key.value.value = value + tagConfigs.append(tagConfig) + res = [] + # chunk each SetSome request to a maximum of configsPerReq + for start in range(0, len(tagConfigs), configsPerReq): + setSomeRequest = TagConfigSetSomeRequest( + values=tagConfigs[start:start + configsPerReq] + ) + tagClient = self.ctx.getApiClient(TagConfigServiceStub) + try: + for res in tagClient.SetSome(setSomeRequest, timeout=TIMEOUT_REQUEST): + pass + except RpcError: + raise TagOperationException('', '', 'create') + + def _assignTagSet(self, etype: int, tagAssign: Tuple, remove: bool = False): + ''' + _assignTagSet assigns a tag. + The input tagAssign is a tuple of the form: + (deviceId, interfaceId, label, value) + If remove is True, then unassigns the tag. + ''' + (deviceId, interfaceId, label, value) = tagAssign + setRequest = TagAssignmentConfigSetRequest() + wsID = self.ctx.getWorkspaceId() + setRequest.value.key.workspace_id.value = wsID + # Mypy complains about this not being an int, with + # (expression has type "int", variable has type "ValueType") + # but ValueType = typing.NewType('ValueType', builtins.int), so just ignore it + setRequest.value.key.element_type = etype # type: ignore + setRequest.value.key.label.value = label + setRequest.value.key.value.value = value + setRequest.value.key.device_id.value = deviceId + setRequest.value.key.interface_id.value = interfaceId + setRequest.value.remove.value = remove + tagClient = self.ctx.getApiClient(TagAssignmentConfigServiceStub) + tagClient.Set(setRequest, timeout=TIMEOUT_REQUEST) + + def _assignTagsSets(self, etype: int, tagAssigns: List[Tuple], + remove: bool = False, configsPerReq: int = 1000): + ''' + _assignTagsSets assigns/unassigns multiple tags. + The input tagAssigns is a List of Tuples of the form: + (deviceId, interfaceId, label, value) + If remove is True, then unassigns the tags. + ''' + tagAssConfigs = [] + wsID = self.ctx.getWorkspaceId() + for (deviceId, interfaceId, label, value) in tagAssigns: + tagAssConfig = TagAssignmentConfig() + tagAssConfig.key.workspace_id.value = wsID + # Mypy complains about this not being an int, with + # (expression has type "int", variable has type "ValueType") + # but ValueType = typing.NewType('ValueType', builtins.int), so just ignore it + tagAssConfig.key.element_type = etype # type: ignore + tagAssConfig.key.label.value = label + tagAssConfig.key.value.value = value + tagAssConfig.key.device_id.value = deviceId + tagAssConfig.key.interface_id.value = interfaceId + tagAssConfig.remove.value = remove + tagAssConfigs.append(tagAssConfig) + res = [] + # chunk each SetSome request to a maximum of configsPerReq + for start in range(0, len(tagAssConfigs), configsPerReq): + setSomeRequest = TagAssignmentConfigSetSomeRequest( + values=tagAssConfigs[start:start + configsPerReq] + ) + tagClient = self.ctx.getApiClient(TagAssignmentConfigServiceStub) + try: + for res in tagClient.SetSome(setSomeRequest, timeout=TIMEOUT_REQUEST): + pass + except RpcError: + raise TagOperationException('', '', 'assign') + + # The following are methods for device Tags + + def _deviceTagExists(self, label: str, value: str): + # Note use list instead of .items() + # parallel thread might add/delete tags + for dev in list(allTags := self._getAllDeviceTags()): + tags = allTags.get(dev, {}) + if value in tags.get(label, []): + return True + return False + + def _deviceTagAssigned(self, deviceId: str, label: str, value: str): + if value in self._getDeviceTags(deviceId).get(label, []): + return True + return False + + def _assignDevTagInCache(self, deviceId: str, label: str, value: str): + ''' + _assignDevTagInCache modifies relevantTagAssigns for the device tag + ensuring the tag is assigned to the device in the local cache + ''' + if deviceId not in self.relevantTagAssigns: + self.relevantTagAssigns[deviceId] = {} + if label not in self.relevantTagAssigns[deviceId]: + self.relevantTagAssigns[deviceId][label] = [] + if value not in self.relevantTagAssigns[deviceId][label]: + self.relevantTagAssigns[deviceId][label].append(value) + + def _unassignDevTagInCache(self, deviceId: str, label: str, value: str): + ''' + _unassignDevTagInCache modifies relevantTagAssigns for the device tag + ensuring the tag is not assigned to the device in the local cache + ''' + if deviceId not in self.relevantTagAssigns: + return + if label not in self.relevantTagAssigns[deviceId]: + return + if value not in self.relevantTagAssigns[deviceId][label]: + return + self.relevantTagAssigns[deviceId][label].remove(value) + if not self.relevantTagAssigns[deviceId][label]: + self.relevantTagAssigns[deviceId].pop(label, None) + if not self.relevantTagAssigns[deviceId]: + self.relevantTagAssigns.pop(deviceId, None) + + def _getAllDeviceTagsFromMainline(self): + ''' + _getAllDeviceTagsFromMainline returns a map of all assigned device tags available + in the mainline. Also sets the local cache to this map. + The returned map is of the form: map[deviceId]map[label]=[value1,value2,..] + ''' + wsTs = getWorkspaceLastSynced(self.ctx.getApiClient, + self.ctx.getWorkspaceId()) + timeBound = TimeBounds(end=wsTs) + self.relevantTagAssigns = {} + tagClient = self.ctx.getApiClient(TagAssignmentServiceStub) + tagRequest = TagAssignmentStreamRequest(time=timeBound) + tagFilter = TagAssignment() + tagFilter.tag_creator_type = CREATOR_TYPE_USER + tagFilter.key.element_type = ELEMENT_TYPE_DEVICE + tagFilter.key.workspace_id.value = MAINLINE_ID + tagRequest.partial_eq_filter.append(tagFilter) + for resp in tagClient.GetAll(tagRequest, timeout=TIMEOUT_REQUEST): + label = resp.value.key.label.value + value = resp.value.key.value.value + deviceId = resp.value.key.device_id.value + if deviceId not in self.relevantTagAssigns: + self.relevantTagAssigns[deviceId] = {} + if label not in self.relevantTagAssigns[deviceId]: + self.relevantTagAssigns[deviceId][label] = [] + if value not in self.relevantTagAssigns[deviceId][label]: + self.relevantTagAssigns[deviceId][label].append(value) + return self.relevantTagAssigns + + def _setRelevantTagAssigns(self, tags: Dict): + ''' + Sets the relevantTagAssigns of the context. + Called during context initialisation during script execution as optimization + Does not need to be called by the script writers + ''' + self.relevantTagAssigns = tags + + def _getDeviceTags(self, deviceId: str): + ''' + _getDeviceTags returns the relevant assigned tags for the device. + The returned map is of the form: map[label]=[value1,value2,..] + ''' + return self._getAllDeviceTags().get(deviceId, {}) + + def _getAllDeviceTags(self): + ''' + _getAllDeviceTags returns a map of all assigned device tags available + in the workspace. + The returned map is of the form: map[deviceId]map[label]=[value1,value2,..] + ''' + if self.relevantTagAssigns is not None: + return self.relevantTagAssigns + self._getAllDeviceTagsFromMainline() + workspaceUpdates = self._getTagUpdatesFromWorkspace() + for (deviceId, _, label, value, remove) in workspaceUpdates: + if remove: + self._unassignDevTagInCache(deviceId, label, value) + else: + self._assignDevTagInCache(deviceId, label, value) + return self.relevantTagAssigns + + def _assignDeviceTag(self, deviceId: str, label: str, value: str, + replaceValue: bool = True): + ''' + _assignDeviceTag assigns a device tag if it isn't already assigned. + If replaceValue is True ensures one value of tag is assigned to device. + If replaceValue is False multiple values of tag can be assigned to device. + ''' + # first make sure this device's tags have been loaded in cache + self._getDeviceTags(deviceId) + # identify unassigns for replace cases + if not label or not value or not deviceId: + raise TagOperationException(label, value, 'assign', deviceId) + if replaceValue: + current_values = list(self._getDeviceTags(deviceId).get(label, [])) + for cvalue in current_values: + if cvalue != value: + self._unassignDeviceTag(deviceId, label, cvalue) + # check if the tag is already assigned to this device + if self._deviceTagAssigned(deviceId, label, value): + return + # create the tag + self._createTag(ELEMENT_TYPE_DEVICE, label, value) + # assign the tag + self._assignTagSet(ELEMENT_TYPE_DEVICE, (deviceId, '', label, value)) + # assign the tag in cache + self._assignDevTagInCache(deviceId, label, value) + + def _unassignDeviceTag(self, deviceId: str, label: str, value: str): + ''' + _unassignDeviceTag unassigns a device tag if it is assigned + ''' + # first make sure this device's tags have been loaded in cache + self._getDeviceTags(deviceId) + if not label or not value or not deviceId: + raise TagOperationException(label, value, 'unassign', deviceId) + # check if the tag is assigned to this device + if not self._deviceTagAssigned(deviceId, label, value): + return + # unassign the tag + self._assignTagSet(ELEMENT_TYPE_DEVICE, + (deviceId, '', label, value), remove=True) + # unassign the tag in cache + self._unassignDevTagInCache(deviceId, label, value) + + def _unassignDeviceTagLabel(self, deviceId: str, label: str): + ''' + _unassignDeviceTagLabel unassigns all device tags of a label + ''' + if not label or not deviceId: + raise TagOperationException(label, '', 'unassign', deviceId) + current_values = list(self._getDeviceTags(deviceId).get(label, [])) + for cvalue in current_values: + self._unassignDeviceTag(deviceId, label, cvalue) + + def _assignDeviceTags(self, tagAssignReplaces: List[Tuple]): + ''' + _assignDeviceTags assigns multiple device tags if not already assigned. + The input tagAssignReplaces is a List of Tuple of the form: + (deviceId, label, value, replaceValue) + If replaceValue is True ensures one value of tag is assigned to device. + If replaceValue is False multiple values of tag can be assigned to device. + ''' + if not tagAssignReplaces: + return + tagUnAssigns: List[Tuple] = [] + tagAssigns: List[Tuple] = [] + tagAssignsDict: Dict = {} + # first make sure device tags have been loaded in cache + self._getAllDeviceTags() + # identify unassigns for replace cases + for (deviceId, label, value, replaceValue) in tagAssignReplaces: + if not label or not value or not deviceId: + raise TagOperationException(label, value, 'assign', deviceId) + if replaceValue: + current_values = list(self._getDeviceTags(deviceId).get(label, [])) + for cvalue in current_values: + if cvalue != value: + tagUnAssigns.append((deviceId, label, cvalue)) + if (cvalues := tagAssignsDict.get(deviceId, {}).get(label)): + for cvalue in cvalues: + tagAssigns.remove((deviceId, '', label, cvalue)) + tagAssignsDict[deviceId].pop(label) + tagAssignsDict.setdefault(deviceId, {}).setdefault(label, []).append(value) + tagAssigns.append((deviceId, '', label, value)) + self._unassignDeviceTags(tagUnAssigns) + # remove from the list if the tag assignmnet already exists + uniqueTags: List[Tuple] = [] + for (deviceId, _, label, value) in tagAssigns[:]: + if self._deviceTagAssigned(deviceId, label, value): + tagAssigns.remove((deviceId, '', label, value)) + elif (label, value) not in uniqueTags: + uniqueTags.append((label, value)) + if not tagAssigns: + return + # create the tags + self._createTags(ELEMENT_TYPE_DEVICE, uniqueTags) + # assign the tags + self._assignTagsSets(ELEMENT_TYPE_DEVICE, tagAssigns) + # assign the tags in cache + for (deviceId, _, label, value) in tagAssigns: + self._assignDevTagInCache(deviceId, label, value) + + def _unassignDeviceTags(self, tagUnAssignsIn: List[Tuple]): + ''' + _unassignDeviceTags unassigns multiple device tags if currently assigned. + The input tagUnAssigns is a List of Tuples of the form: + (deviceId, label, value) + If value is None then unassigns all values of that label + ''' + if not tagUnAssignsIn: + return + # first make sure device tags have been loaded in cache + self._getAllDeviceTags() + tagUnAssigns: List[Tuple] = [] + # remove from the list if the tag assignment doesn't exist + for (deviceId, label, value) in tagUnAssignsIn: + if not label or not deviceId: + raise TagOperationException(label, '', 'unassign', deviceId) + # check if the tag is assigned to this device + if not value: + current_values = list(self._getDeviceTags(deviceId).get(label, [])) + for cvalue in current_values: + tagUnAssigns.append((deviceId, '', label, cvalue)) + elif self._deviceTagAssigned(deviceId, label, value): + tagUnAssigns.append((deviceId, '', label, value)) + if not tagUnAssigns: + return + # unassign the tags + self._assignTagsSets(ELEMENT_TYPE_DEVICE, tagUnAssigns, remove=True) + # unassign the tags in cache + for (deviceId, _, label, value) in tagUnAssigns: + self._unassignDevTagInCache(deviceId, label, value) + + # The following are methods for interface Tags + + def _interfaceTagExists(self, label: str, value: str): + # Note use list instead of .items() + # parallel thread might add/delete tags + for dev in list(allTags := self._getAllInterfaceTags()): + for intf in list(devIntfTags := allTags.get(dev, {})): + tags = devIntfTags.get(intf, {}) + if value in tags.get(label, []): + return True + return False + + def _interfaceTagAssigned(self, deviceId: str, interfaceId: str, label: str, value: str): + if value in self._getInterfaceTags(deviceId, interfaceId).get(label, []): + return True + return False + + def _assignIntfTagInCache(self, deviceId: str, interfaceId: str, label: str, value: str): + ''' + _assignIntfTagInCache modifies relevantIntfAssigns for the device tag + ensuring the tag is assigned to the interface in the local cache + ''' + if deviceId not in self.relevantIntfTagAssigns: + self.relevantIntfTagAssigns[deviceId] = {} + if interfaceId not in self.relevantIntfTagAssigns[deviceId]: + self.relevantIntfTagAssigns[deviceId][interfaceId] = {} + if label not in self.relevantIntfTagAssigns[deviceId][interfaceId]: + self.relevantIntfTagAssigns[deviceId][interfaceId][label] = [] + if value not in self.relevantIntfTagAssigns[deviceId][interfaceId][label]: + self.relevantIntfTagAssigns[deviceId][interfaceId][label].append(value) + + def _unassignIntfTagInCache(self, deviceId: str, interfaceId: str, label: str, value: str): + ''' + _unassignIntfTagInCache modifies relevantIntfTagAssigns for the interface tag + ensuring the tag is not assigned to the interface in the local cache + ''' + if deviceId not in self.relevantIntfTagAssigns: + return + if interfaceId not in self.relevantIntfTagAssigns[deviceId]: + return + if label not in self.relevantIntfTagAssigns[deviceId][interfaceId]: + return + if value not in self.relevantIntfTagAssigns[deviceId][interfaceId][label]: + return + self.relevantIntfTagAssigns[deviceId][interfaceId][label].remove(value) + if not self.relevantIntfTagAssigns[deviceId][interfaceId][label]: + self.relevantIntfTagAssigns[deviceId][interfaceId].pop(label, None) + if not self.relevantIntfTagAssigns[deviceId][interfaceId]: + self.relevantIntfTagAssigns[deviceId].pop(interfaceId, None) + if not self.relevantIntfTagAssigns[deviceId]: + self.relevantIntfTagAssigns.pop(deviceId, None) + + def _getAllInterfaceTagsFromMainline(self): + ''' + _getAllInterfaceTagsFromMainline returns a map of all assigned interface tags + available in the mainline. Also sets the local cache to this map. + The returned map is of the form: + map[deviceId]map[interfaceId]map[label]=[value1,value2,..] + ''' + wsTs = getWorkspaceLastSynced(self.ctx.getApiClient, + self.ctx.getWorkspaceId()) + timeBound = TimeBounds(end=wsTs) + self.relevantIntfTagAssigns = {} + tagClient = self.ctx.getApiClient(TagAssignmentServiceStub) + tagRequest = TagAssignmentStreamRequest(time=timeBound) + tagFilter = TagAssignment() + tagFilter.tag_creator_type = CREATOR_TYPE_USER + tagFilter.key.element_type = ELEMENT_TYPE_INTERFACE + tagFilter.key.workspace_id.value = MAINLINE_ID + tagRequest.partial_eq_filter.append(tagFilter) + for resp in tagClient.GetAll(tagRequest, timeout=TIMEOUT_REQUEST): + label = resp.value.key.label.value + value = resp.value.key.value.value + deviceId = resp.value.key.device_id.value + interfaceId = resp.value.key.interface_id.value + if deviceId not in self.relevantIntfTagAssigns: + self.relevantIntfTagAssigns[deviceId] = {} + if interfaceId not in self.relevantIntfTagAssigns[deviceId]: + self.relevantIntfTagAssigns[deviceId][interfaceId] = {} + if label not in self.relevantIntfTagAssigns[deviceId][interfaceId]: + self.relevantIntfTagAssigns[deviceId][interfaceId][label] = [] + if value not in self.relevantIntfTagAssigns[deviceId][interfaceId][label]: + self.relevantIntfTagAssigns[deviceId][interfaceId][label].append(value) + return self.relevantIntfTagAssigns + + def _setRelevantInterfaceTagAssigns(self, tags: Dict): + ''' + Sets the relevantIntfTagAssigns of the context. + Called during context initialisation during script execution as optimization + Does not need to be called by the script writers + ''' + self.relevantIntfTagAssigns = tags + + def _getInterfaceTags(self, deviceId: str, interfaceId: str): + ''' + _getInterfaceTags returns the relevant assigned tags for the interface. + The returned map is of the form: map[label]=[value1,value2,..] + ''' + return self._getAllInterfaceTags().get(deviceId, {}).get(interfaceId, {}) + + def _getAllInterfaceTags(self): + ''' + _getAllInterfaceTags returns a map of all assigned device tags available + in the workspace. The returned map is of the form: + map[deviceId]map[interfaceId]map[label]=[value1,value2,..] + ''' + if self.relevantIntfTagAssigns is not None: + return self.relevantIntfTagAssigns + self._getAllInterfaceTagsFromMainline() + workspaceUpdates = self._getTagUpdatesFromWorkspace(ELEMENT_TYPE_INTERFACE) + for (deviceId, interfaceId, label, value, remove) in workspaceUpdates: + if remove: + self._unassignIntfTagInCache(deviceId, interfaceId, label, value) + else: + self._assignIntfTagInCache(deviceId, interfaceId, label, value) + return self.relevantIntfTagAssigns + + def _assignInterfaceTag(self, deviceId: str, interfaceId: str, label: str, + value: str, replaceValue: bool = True): + ''' + _assignInterfaceTag assigns aninterface tag if it isn't already assigned. + If replaceValue is True ensures one value of tag is assigned to interface. + If replaceValue is False multiple values of tag can be assigned to interface. + ''' + # first make sure this device's tags have been loaded in cache + self._getInterfaceTags(deviceId, interfaceId) + if not label or not value or not deviceId or not interfaceId: + raise TagOperationException(label, value, 'assign', deviceId, interfaceId) + if replaceValue: + current_values = list(self._getInterfaceTags(deviceId, interfaceId).get(label, [])) + for cvalue in current_values: + if cvalue != value: + self._unassignInterfaceTag(deviceId, interfaceId, label, cvalue) + # check if the tag is already assigned to this device + if self._interfaceTagAssigned(deviceId, interfaceId, label, value): + return + # create the tag + self._createTag(ELEMENT_TYPE_INTERFACE, label, value) + # assign the tag + self._assignTagSet(ELEMENT_TYPE_INTERFACE, + (deviceId, interfaceId, label, value)) + # assign the tag in cache + self._assignIntfTagInCache(deviceId, interfaceId, label, value) + + def _unassignInterfaceTag(self, deviceId: str, interfaceId: str, label: str, value: str): + ''' + _unassignInterfaceTag unassigns a interface tag if it is assigned + ''' + # first make sure this device's tags have been loaded in cache + self._getInterfaceTags(deviceId, interfaceId) + if not label or not value or not deviceId or not interfaceId: + raise TagOperationException(label, value, 'unassign', deviceId, interfaceId) + # check if the tag is assigned to this interface + if not self._interfaceTagAssigned(deviceId, interfaceId, label, value): + return + # unassign the tag + self._assignTagSet(ELEMENT_TYPE_INTERFACE, + (deviceId, interfaceId, label, value), remove=True) + # unassign the tag in cache + self._unassignIntfTagInCache(deviceId, interfaceId, label, value) + + def _unassignInterfaceTagLabel(self, deviceId: str, interfaceId: str, label: str): + ''' + _unassignInterfaceTagLabel unassigns all interface tags of a label + ''' + if not label or not deviceId or not interfaceId: + raise TagOperationException(label, '', 'unassign', deviceId, interfaceId) + current_values = list(self._getInterfaceTags(deviceId, interfaceId).get(label, [])) + for cvalue in current_values: + self._unassignInterfaceTag(deviceId, interfaceId, label, cvalue) + + def _assignInterfaceTags(self, tagAssignReplaces: List[Tuple]): + ''' + _assignInterfaceTags assigns multiple interface tags if not already assigned. + The input tagAssignReplaces is a List of Tuple of the form: + (deviceId, interfaceId, label, value, replaceValue) + If replaceValue is True ensures one value of tag is assigned to interface. + If replaceValue is False multiple values of tag can be assigned to interface. + ''' + if not tagAssignReplaces: + return + tagUnAssigns: List[Tuple] = [] + tagAssigns: List[Tuple] = [] + tagAssignsDict: Dict = {} + # first make sure interface tags have been loaded in cache + self._getAllInterfaceTags() + # identify unassigns for replace cases + for (deviceId, interfaceId, label, value, replaceValue) in tagAssignReplaces: + if not label or not value or not deviceId or not interfaceId: + raise TagOperationException(label, value, 'assign', + deviceId, interfaceId) + if replaceValue: + current_values = list(self._getInterfaceTags(deviceId, + interfaceId).get(label, [])) + for cvalue in current_values: + if cvalue != value: + tagUnAssigns.append((deviceId, interfaceId, label, cvalue)) + if (cvalues := tagAssignsDict.get(deviceId, {}).get( + interfaceId, {}).get(label)): + for cvalue in cvalues: + tagAssigns.remove((deviceId, interfaceId, label, cvalue)) + tagAssignsDict[deviceId][interfaceId].pop(label) + tagAssignsDict.setdefault(deviceId, {}).setdefault( + interfaceId, {}).setdefault(label, []).append(value) + tagAssigns.append((deviceId, interfaceId, label, value)) + self._unassignInterfaceTags(tagUnAssigns) + # remove from the list if the tag assignmnet already exists + uniqueTags: List[Tuple] = [] + for (deviceId, interfaceId, label, value) in tagAssigns[:]: + if self._interfaceTagAssigned(deviceId, interfaceId, label, value): + tagAssigns.remove((deviceId, interfaceId, label, value)) + elif (label, value) not in uniqueTags: + uniqueTags.append((label, value)) + if not tagAssigns: + return + # create the tags + self._createTags(ELEMENT_TYPE_INTERFACE, uniqueTags) + # assign the tags + self._assignTagsSets(ELEMENT_TYPE_INTERFACE, tagAssigns) + # assign the tags in cache + for (deviceId, interfaceId, label, value) in tagAssigns: + self._assignIntfTagInCache(deviceId, interfaceId, label, value) + + def _unassignInterfaceTags(self, tagUnAssignsIn: List[Tuple]): + ''' + _unassignInterfaceTags unassigns multiple interface tags if currently assigned. + The input tagUnAssigns is a List of Tuples of the form: + (deviceId, interfaceId, label, value) + If value is None then unassigns all values of that label + ''' + if not tagUnAssignsIn: + return + # first make sure interface tags have been loaded in cache + self._getAllInterfaceTags() + tagUnAssigns: List[Tuple] = [] + # remove from the list if the tag assignment doesn't exist + for (deviceId, interfaceId, label, value) in tagUnAssignsIn: + if not label or not deviceId or not interfaceId: + raise TagOperationException(label, '', 'unassign', + deviceId, interfaceId) + # check if the tag is assigned to this interface + if not value: + current_values = list(self._getInterfaceTags(deviceId, + interfaceId).get(label, [])) + for cvalue in current_values: + tagUnAssigns.append((deviceId, interfaceId, label, cvalue)) + elif self._interfaceTagAssigned(deviceId, interfaceId, label, value): + tagUnAssigns.append((deviceId, interfaceId, label, value)) + if not tagUnAssigns: + return + # unassign the tags + self._assignTagsSets(ELEMENT_TYPE_INTERFACE, tagUnAssigns, remove=True) + # unassign the tags in cache + for (deviceId, interfaceId, label, value) in tagUnAssigns: + self._unassignIntfTagInCache(deviceId, interfaceId, label, value)
+ +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_modules/cloudvision/cvlib/topology.html b/_modules/cloudvision/cvlib/topology.html new file mode 100644 index 00000000..f5b36269 --- /dev/null +++ b/_modules/cloudvision/cvlib/topology.html @@ -0,0 +1,169 @@ + + + + + + + + cloudvision.cvlib.topology — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +

Source code for cloudvision.cvlib.topology

+# Copyright (c) 2022 Arista Networks, Inc.
+# Use of this source code is governed by the Apache License 2.0
+# that can be found in the COPYING file.
+
+from logging import getLogger, Logger
+from typing import Dict, List
+
+from .device import Device
+
+# This is a global due to it being unpickleable and the classes needing to be pickleable
+logger = getLogger(__name__)
+
+
+
+[docs] +class Connection: + def __init__(self, sourceDevice, sourceInterface, destDevice, destInterface): + self.sourceDevice = sourceDevice + self.sourceInterface = sourceInterface + self.destDevice = destDevice + self.destInterface = destInterface + + def __str__(self): + return ( + (f"{self.sourceDevice}:{self.sourceInterface} --> " + f"{self.destDevice}:{self.destInterface}"))
+ + + +
+[docs] +class Topology: + ''' + Topology object that stores devices and their connection to one another in dict form: + - deviceMap: Prebuilt topology device dictionary to instantiate the class with + ''' + + def __init__(self, deviceMap: Dict[str, Device]): + if not deviceMap: + logger.warning("Topology model was provided an empty device map") + deviceMap = {} + self._deviceMap = deviceMap + +
+[docs] + @staticmethod + def setLogger(loggerToUse: Logger): + global logger + logger = loggerToUse
+ + +
+[docs] + def getDevices(self, deviceIds: List[str] = None): + if not deviceIds: + return list(self._deviceMap.values()) + devices = [] + for did in deviceIds: + if did not in self._deviceMap: + logger.info( + "Requested device was not in topology data, creating a simple device: %s", did) + # Create a device with no topology information + newDevice = Device(deviceId=did) + self._deviceMap[did] = newDevice + devices.append(self._deviceMap[did]) + return devices
+
+ +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_modules/cloudvision/cvlib/user.html b/_modules/cloudvision/cvlib/user.html new file mode 100644 index 00000000..28fb1597 --- /dev/null +++ b/_modules/cloudvision/cvlib/user.html @@ -0,0 +1,118 @@ + + + + + + + + cloudvision.cvlib.user — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +

Source code for cloudvision.cvlib.user

+# Copyright (c) 2022 Arista Networks, Inc.
+# Use of this source code is governed by the Apache License 2.0
+# that can be found in the COPYING file.
+
+
+[docs] +class User: + ''' + Object to store information on the user executing this script: + - username: Cloudvision username + - token: Auth token used to create connections + ''' + + def __init__(self, username: str, token: str): + self.username = username + self.token = token
+ +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_modules/cloudvision/cvlib/utils.html b/_modules/cloudvision/cvlib/utils.html new file mode 100644 index 00000000..5498141a --- /dev/null +++ b/_modules/cloudvision/cvlib/utils.html @@ -0,0 +1,170 @@ + + + + + + + + cloudvision.cvlib.utils — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +

Source code for cloudvision.cvlib.utils

+# Copyright (c) 2022 Arista Networks, Inc.
+# Use of this source code is governed by the Apache License 2.0
+# that can be found in the COPYING file.
+
+from typing import Any, Dict
+from json import loads
+
+from cloudvision.Connector.grpc_client import GRPCClient, create_query
+
+from .exceptions import ScriptException
+
+
+
+[docs] +def queryCCStartTime(client: GRPCClient, ccId: str): + # Create a query to the cvp dataset in the database for the root entry of the change control + # with the provided ID. The root contains all general information regarding the CC + query = [ + create_query([(["changecontrol", "config", ccId, "root"], [])], "cvp") + ] + changeControls = client.get(query) + for batch in changeControls: + # There will only be a single notification here as we're only querying a single path + for notif in batch["notifications"]: + # The updates received will be in the form of nested dictionaries + updates: Dict[str, Dict[str, Dict[str, Any]]] = notif["updates"] + + # There should be a root key entry at this path, if not the CC is invalid + cc = updates.get("root") + if cc is None: + raise ScriptException(f"Change control ID {ccId} is invalid: missing 'root' key") + + # The 'Start' key of the root entry of a change control holds information on + # when the entire change control started, before any actions ran. + # This should be here by default + start = cc.get("Start") + if not start: + raise ScriptException(f"Change control ID {ccId} is invalid: missing 'Start' key") + + # The 'Start' Dict should always have a 'Timestamp' key + startTs = start.get("Timestamp") + if not startTs: + raise ScriptException( + f"Change control ID {ccId} is invalid: 'Start' missing 'Timestamp' key") + + # If the Timestamp in that entry is 0, it means that the CC has not started + if startTs == 0: + raise ScriptException(f"Change control ID {ccId} has not yet started") + + return cc["Start"]["Timestamp"] + + raise ScriptException(f"No entries found for Change control ID {ccId}")
+ + + +
+[docs] +def extractJSONEncodedListArg(listArg: str): + """ + Extracts a string arg in JSON-encoded list form and converts it to a list for use + + Args: + listArg (str): The stringified list + """ + extractedList = loads(listArg) # Evaluate this into a list + if not isinstance(extractedList, list): + raise ValueError("Extracted arg must be a list") + return extractedList
+ +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_modules/cloudvision/cvlib/workspace.html b/_modules/cloudvision/cvlib/workspace.html new file mode 100644 index 00000000..25b0bd1c --- /dev/null +++ b/_modules/cloudvision/cvlib/workspace.html @@ -0,0 +1,175 @@ + + + + + + + + cloudvision.cvlib.workspace — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +

Source code for cloudvision.cvlib.workspace

+# Copyright (c) 2023 Arista Networks, Inc.
+# Use of this source code is governed by the Apache License 2.0
+# that can be found in the COPYING file.
+
+from google.protobuf import wrappers_pb2 as pb
+from grpc import StatusCode, RpcError
+from typing import List, Optional
+
+from arista.workspace.v1 import models, services
+
+from .constants import MAINLINE_WS_ID, TIMEOUT_REQUEST
+from .exceptions import CVException
+
+
+
+[docs] +class Workspace: + ''' + Object to store workspace context: + - id: Id of the workspace + - studioIds: Ids of the studios edited in the associated workspace + - buildId: Id of the workspace build + ''' + + def __init__(self, workspaceId: str, studioIds: List[str] = [], buildId: Optional[str] = None): + self.id = workspaceId + self.studioIds = studioIds + self.buildId = buildId
+ + + +
+[docs] +def getWorkspaceLastSynced(clientGetter, workspaceId: str): + """ + Gets the lastRebasedAt timestamp for the given workspace, or if that's null, + the createdAt timestamp of the workspace. This function allows for workspace-aware + resource apis to gather accurate data when needing to fall back to mainline for building + accurate state in a workspace. + + Params: + clientGetter: The API client getter, i.e. ctx.getApiClient + workspaceId: The ID of the workspace to retrieve the timestamp for + + Returns: + Timestamp object of the workspace's last rebased time, or created at time + + Raises: + CVException: If the workspace does not exist, or is mainline + """ + + if workspaceId == MAINLINE_WS_ID: + raise CVException("Workspace ID provided is mainline, does not have a sync time") + # Get the lastRebasedAt timestamp for the given workspace, or if that's null, + # the createdAt timestamp of the workspace such that accurate mainline state is retrieved + wsClient = clientGetter(services.WorkspaceServiceStub) + wid = pb.StringValue(value=workspaceId) + key = models.WorkspaceKey(workspace_id=wid) + wsReq = services.WorkspaceRequest(key=key) + try: + wsResp = wsClient.GetOne(wsReq, timeout=TIMEOUT_REQUEST) + except RpcError as wsExec: + if wsExec.code() == StatusCode.NOT_FOUND: + raise CVException("Workspace does not exist") + raise wsExec from None + # last_rebased_at is truthy even if not set, + # need to check seconds and nanos to ensure that it exists + rebased = wsResp.value.last_rebased_at + rebasedSet = rebased.seconds or rebased.nanos + # if last_rebased DOES exist, return it, otherwise the workspace creation time + wsTs = rebased if rebasedSet else wsResp.value.created_at + + return wsTs
+ +
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_modules/index.html b/_modules/index.html new file mode 100644 index 00000000..41a9e9ed --- /dev/null +++ b/_modules/index.html @@ -0,0 +1,145 @@ + + + + + + + + Overview: module code — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+
    +
  • + +
  • +
  • +
+
+
+
+
+ +

All modules for which code is available

+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_sources/arista.alert.rst.txt b/_sources/arista.alert.rst.txt new file mode 100644 index 00000000..2a559818 --- /dev/null +++ b/_sources/arista.alert.rst.txt @@ -0,0 +1,18 @@ +arista.alert package +==================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + arista.alert.v1 + +Module contents +--------------- + +.. automodule:: arista.alert + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.alert.v1.rst.txt b/_sources/arista.alert.v1.rst.txt new file mode 100644 index 00000000..39a9ec79 --- /dev/null +++ b/_sources/arista.alert.v1.rst.txt @@ -0,0 +1,37 @@ +arista.alert.v1 package +======================= + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + arista.alert.v1.services + +Submodules +---------- + +arista.alert.v1.alert\_pb2 module +--------------------------------- + +.. automodule:: arista.alert.v1.alert_pb2 + :members: + :undoc-members: + :show-inheritance: + +arista.alert.v1.alert\_pb2\_grpc module +--------------------------------------- + +.. automodule:: arista.alert.v1.alert_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: arista.alert.v1 + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.alert.v1.services.rst.txt b/_sources/arista.alert.v1.services.rst.txt new file mode 100644 index 00000000..38d389c4 --- /dev/null +++ b/_sources/arista.alert.v1.services.rst.txt @@ -0,0 +1,29 @@ +arista.alert.v1.services package +================================ + +Submodules +---------- + +arista.alert.v1.services.gen\_pb2 module +---------------------------------------- + +.. automodule:: arista.alert.v1.services.gen_pb2 + :members: + :undoc-members: + :show-inheritance: + +arista.alert.v1.services.gen\_pb2\_grpc module +---------------------------------------------- + +.. automodule:: arista.alert.v1.services.gen_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: arista.alert.v1.services + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.bugexposure.rst.txt b/_sources/arista.bugexposure.rst.txt new file mode 100644 index 00000000..3e439347 --- /dev/null +++ b/_sources/arista.bugexposure.rst.txt @@ -0,0 +1,18 @@ +arista.bugexposure package +========================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + arista.bugexposure.v1 + +Module contents +--------------- + +.. automodule:: arista.bugexposure + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.bugexposure.v1.rst.txt b/_sources/arista.bugexposure.v1.rst.txt new file mode 100644 index 00000000..13064099 --- /dev/null +++ b/_sources/arista.bugexposure.v1.rst.txt @@ -0,0 +1,37 @@ +arista.bugexposure.v1 package +============================= + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + arista.bugexposure.v1.services + +Submodules +---------- + +arista.bugexposure.v1.bugexposure\_pb2 module +--------------------------------------------- + +.. automodule:: arista.bugexposure.v1.bugexposure_pb2 + :members: + :undoc-members: + :show-inheritance: + +arista.bugexposure.v1.bugexposure\_pb2\_grpc module +--------------------------------------------------- + +.. automodule:: arista.bugexposure.v1.bugexposure_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: arista.bugexposure.v1 + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.bugexposure.v1.services.rst.txt b/_sources/arista.bugexposure.v1.services.rst.txt new file mode 100644 index 00000000..4b3b322b --- /dev/null +++ b/_sources/arista.bugexposure.v1.services.rst.txt @@ -0,0 +1,29 @@ +arista.bugexposure.v1.services package +====================================== + +Submodules +---------- + +arista.bugexposure.v1.services.gen\_pb2 module +---------------------------------------------- + +.. automodule:: arista.bugexposure.v1.services.gen_pb2 + :members: + :undoc-members: + :show-inheritance: + +arista.bugexposure.v1.services.gen\_pb2\_grpc module +---------------------------------------------------- + +.. automodule:: arista.bugexposure.v1.services.gen_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: arista.bugexposure.v1.services + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.changecontrol.rst.txt b/_sources/arista.changecontrol.rst.txt new file mode 100644 index 00000000..299c7a5f --- /dev/null +++ b/_sources/arista.changecontrol.rst.txt @@ -0,0 +1,18 @@ +arista.changecontrol package +============================ + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + arista.changecontrol.v1 + +Module contents +--------------- + +.. automodule:: arista.changecontrol + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.changecontrol.v1.rst.txt b/_sources/arista.changecontrol.v1.rst.txt new file mode 100644 index 00000000..4a700fb1 --- /dev/null +++ b/_sources/arista.changecontrol.v1.rst.txt @@ -0,0 +1,37 @@ +arista.changecontrol.v1 package +=============================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + arista.changecontrol.v1.services + +Submodules +---------- + +arista.changecontrol.v1.changecontrol\_pb2 module +------------------------------------------------- + +.. automodule:: arista.changecontrol.v1.changecontrol_pb2 + :members: + :undoc-members: + :show-inheritance: + +arista.changecontrol.v1.changecontrol\_pb2\_grpc module +------------------------------------------------------- + +.. automodule:: arista.changecontrol.v1.changecontrol_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: arista.changecontrol.v1 + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.changecontrol.v1.services.rst.txt b/_sources/arista.changecontrol.v1.services.rst.txt new file mode 100644 index 00000000..02992e18 --- /dev/null +++ b/_sources/arista.changecontrol.v1.services.rst.txt @@ -0,0 +1,29 @@ +arista.changecontrol.v1.services package +======================================== + +Submodules +---------- + +arista.changecontrol.v1.services.gen\_pb2 module +------------------------------------------------ + +.. automodule:: arista.changecontrol.v1.services.gen_pb2 + :members: + :undoc-members: + :show-inheritance: + +arista.changecontrol.v1.services.gen\_pb2\_grpc module +------------------------------------------------------ + +.. automodule:: arista.changecontrol.v1.services.gen_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: arista.changecontrol.v1.services + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.configlet.rst.txt b/_sources/arista.configlet.rst.txt new file mode 100644 index 00000000..1cbf32b4 --- /dev/null +++ b/_sources/arista.configlet.rst.txt @@ -0,0 +1,18 @@ +arista.configlet package +======================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + arista.configlet.v1 + +Module contents +--------------- + +.. automodule:: arista.configlet + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.configlet.v1.rst.txt b/_sources/arista.configlet.v1.rst.txt new file mode 100644 index 00000000..cdc69207 --- /dev/null +++ b/_sources/arista.configlet.v1.rst.txt @@ -0,0 +1,37 @@ +arista.configlet.v1 package +=========================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + arista.configlet.v1.services + +Submodules +---------- + +arista.configlet.v1.configlet\_pb2 module +----------------------------------------- + +.. automodule:: arista.configlet.v1.configlet_pb2 + :members: + :undoc-members: + :show-inheritance: + +arista.configlet.v1.configlet\_pb2\_grpc module +----------------------------------------------- + +.. automodule:: arista.configlet.v1.configlet_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: arista.configlet.v1 + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.configlet.v1.services.rst.txt b/_sources/arista.configlet.v1.services.rst.txt new file mode 100644 index 00000000..8c646a23 --- /dev/null +++ b/_sources/arista.configlet.v1.services.rst.txt @@ -0,0 +1,29 @@ +arista.configlet.v1.services package +==================================== + +Submodules +---------- + +arista.configlet.v1.services.gen\_pb2 module +-------------------------------------------- + +.. automodule:: arista.configlet.v1.services.gen_pb2 + :members: + :undoc-members: + :show-inheritance: + +arista.configlet.v1.services.gen\_pb2\_grpc module +-------------------------------------------------- + +.. automodule:: arista.configlet.v1.services.gen_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: arista.configlet.v1.services + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.configstatus.rst.txt b/_sources/arista.configstatus.rst.txt new file mode 100644 index 00000000..22104754 --- /dev/null +++ b/_sources/arista.configstatus.rst.txt @@ -0,0 +1,18 @@ +arista.configstatus package +=========================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + arista.configstatus.v1 + +Module contents +--------------- + +.. automodule:: arista.configstatus + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.configstatus.v1.rst.txt b/_sources/arista.configstatus.v1.rst.txt new file mode 100644 index 00000000..63f0efed --- /dev/null +++ b/_sources/arista.configstatus.v1.rst.txt @@ -0,0 +1,37 @@ +arista.configstatus.v1 package +============================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + arista.configstatus.v1.services + +Submodules +---------- + +arista.configstatus.v1.configstatus\_pb2 module +----------------------------------------------- + +.. automodule:: arista.configstatus.v1.configstatus_pb2 + :members: + :undoc-members: + :show-inheritance: + +arista.configstatus.v1.configstatus\_pb2\_grpc module +----------------------------------------------------- + +.. automodule:: arista.configstatus.v1.configstatus_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: arista.configstatus.v1 + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.configstatus.v1.services.rst.txt b/_sources/arista.configstatus.v1.services.rst.txt new file mode 100644 index 00000000..893cd7cc --- /dev/null +++ b/_sources/arista.configstatus.v1.services.rst.txt @@ -0,0 +1,29 @@ +arista.configstatus.v1.services package +======================================= + +Submodules +---------- + +arista.configstatus.v1.services.gen\_pb2 module +----------------------------------------------- + +.. automodule:: arista.configstatus.v1.services.gen_pb2 + :members: + :undoc-members: + :show-inheritance: + +arista.configstatus.v1.services.gen\_pb2\_grpc module +----------------------------------------------------- + +.. automodule:: arista.configstatus.v1.services.gen_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: arista.configstatus.v1.services + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.connectivitymonitor.rst.txt b/_sources/arista.connectivitymonitor.rst.txt new file mode 100644 index 00000000..35775de3 --- /dev/null +++ b/_sources/arista.connectivitymonitor.rst.txt @@ -0,0 +1,18 @@ +arista.connectivitymonitor package +================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + arista.connectivitymonitor.v1 + +Module contents +--------------- + +.. automodule:: arista.connectivitymonitor + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.connectivitymonitor.v1.rst.txt b/_sources/arista.connectivitymonitor.v1.rst.txt new file mode 100644 index 00000000..1cedbe3f --- /dev/null +++ b/_sources/arista.connectivitymonitor.v1.rst.txt @@ -0,0 +1,37 @@ +arista.connectivitymonitor.v1 package +===================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + arista.connectivitymonitor.v1.services + +Submodules +---------- + +arista.connectivitymonitor.v1.connectivitymonitor\_pb2 module +------------------------------------------------------------- + +.. automodule:: arista.connectivitymonitor.v1.connectivitymonitor_pb2 + :members: + :undoc-members: + :show-inheritance: + +arista.connectivitymonitor.v1.connectivitymonitor\_pb2\_grpc module +------------------------------------------------------------------- + +.. automodule:: arista.connectivitymonitor.v1.connectivitymonitor_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: arista.connectivitymonitor.v1 + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.connectivitymonitor.v1.services.rst.txt b/_sources/arista.connectivitymonitor.v1.services.rst.txt new file mode 100644 index 00000000..a65584f9 --- /dev/null +++ b/_sources/arista.connectivitymonitor.v1.services.rst.txt @@ -0,0 +1,29 @@ +arista.connectivitymonitor.v1.services package +============================================== + +Submodules +---------- + +arista.connectivitymonitor.v1.services.gen\_pb2 module +------------------------------------------------------ + +.. automodule:: arista.connectivitymonitor.v1.services.gen_pb2 + :members: + :undoc-members: + :show-inheritance: + +arista.connectivitymonitor.v1.services.gen\_pb2\_grpc module +------------------------------------------------------------ + +.. automodule:: arista.connectivitymonitor.v1.services.gen_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: arista.connectivitymonitor.v1.services + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.dashboard.rst.txt b/_sources/arista.dashboard.rst.txt new file mode 100644 index 00000000..f3865b12 --- /dev/null +++ b/_sources/arista.dashboard.rst.txt @@ -0,0 +1,18 @@ +arista.dashboard package +======================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + arista.dashboard.v1 + +Module contents +--------------- + +.. automodule:: arista.dashboard + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.dashboard.v1.rst.txt b/_sources/arista.dashboard.v1.rst.txt new file mode 100644 index 00000000..ee8fe40f --- /dev/null +++ b/_sources/arista.dashboard.v1.rst.txt @@ -0,0 +1,37 @@ +arista.dashboard.v1 package +=========================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + arista.dashboard.v1.services + +Submodules +---------- + +arista.dashboard.v1.dashboard\_pb2 module +----------------------------------------- + +.. automodule:: arista.dashboard.v1.dashboard_pb2 + :members: + :undoc-members: + :show-inheritance: + +arista.dashboard.v1.dashboard\_pb2\_grpc module +----------------------------------------------- + +.. automodule:: arista.dashboard.v1.dashboard_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: arista.dashboard.v1 + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.dashboard.v1.services.rst.txt b/_sources/arista.dashboard.v1.services.rst.txt new file mode 100644 index 00000000..c4c23d08 --- /dev/null +++ b/_sources/arista.dashboard.v1.services.rst.txt @@ -0,0 +1,29 @@ +arista.dashboard.v1.services package +==================================== + +Submodules +---------- + +arista.dashboard.v1.services.gen\_pb2 module +-------------------------------------------- + +.. automodule:: arista.dashboard.v1.services.gen_pb2 + :members: + :undoc-members: + :show-inheritance: + +arista.dashboard.v1.services.gen\_pb2\_grpc module +-------------------------------------------------- + +.. automodule:: arista.dashboard.v1.services.gen_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: arista.dashboard.v1.services + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.endpointlocation.rst.txt b/_sources/arista.endpointlocation.rst.txt new file mode 100644 index 00000000..d65931c7 --- /dev/null +++ b/_sources/arista.endpointlocation.rst.txt @@ -0,0 +1,18 @@ +arista.endpointlocation package +=============================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + arista.endpointlocation.v1 + +Module contents +--------------- + +.. automodule:: arista.endpointlocation + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.endpointlocation.v1.rst.txt b/_sources/arista.endpointlocation.v1.rst.txt new file mode 100644 index 00000000..e51cf119 --- /dev/null +++ b/_sources/arista.endpointlocation.v1.rst.txt @@ -0,0 +1,37 @@ +arista.endpointlocation.v1 package +================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + arista.endpointlocation.v1.services + +Submodules +---------- + +arista.endpointlocation.v1.endpointlocation\_pb2 module +------------------------------------------------------- + +.. automodule:: arista.endpointlocation.v1.endpointlocation_pb2 + :members: + :undoc-members: + :show-inheritance: + +arista.endpointlocation.v1.endpointlocation\_pb2\_grpc module +------------------------------------------------------------- + +.. automodule:: arista.endpointlocation.v1.endpointlocation_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: arista.endpointlocation.v1 + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.endpointlocation.v1.services.rst.txt b/_sources/arista.endpointlocation.v1.services.rst.txt new file mode 100644 index 00000000..b6af2e32 --- /dev/null +++ b/_sources/arista.endpointlocation.v1.services.rst.txt @@ -0,0 +1,29 @@ +arista.endpointlocation.v1.services package +=========================================== + +Submodules +---------- + +arista.endpointlocation.v1.services.gen\_pb2 module +--------------------------------------------------- + +.. automodule:: arista.endpointlocation.v1.services.gen_pb2 + :members: + :undoc-members: + :show-inheritance: + +arista.endpointlocation.v1.services.gen\_pb2\_grpc module +--------------------------------------------------------- + +.. automodule:: arista.endpointlocation.v1.services.gen_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: arista.endpointlocation.v1.services + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.event.rst.txt b/_sources/arista.event.rst.txt new file mode 100644 index 00000000..04a47304 --- /dev/null +++ b/_sources/arista.event.rst.txt @@ -0,0 +1,18 @@ +arista.event package +==================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + arista.event.v1 + +Module contents +--------------- + +.. automodule:: arista.event + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.event.v1.rst.txt b/_sources/arista.event.v1.rst.txt new file mode 100644 index 00000000..740e1e3b --- /dev/null +++ b/_sources/arista.event.v1.rst.txt @@ -0,0 +1,37 @@ +arista.event.v1 package +======================= + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + arista.event.v1.services + +Submodules +---------- + +arista.event.v1.event\_pb2 module +--------------------------------- + +.. automodule:: arista.event.v1.event_pb2 + :members: + :undoc-members: + :show-inheritance: + +arista.event.v1.event\_pb2\_grpc module +--------------------------------------- + +.. automodule:: arista.event.v1.event_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: arista.event.v1 + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.event.v1.services.rst.txt b/_sources/arista.event.v1.services.rst.txt new file mode 100644 index 00000000..c3acfb82 --- /dev/null +++ b/_sources/arista.event.v1.services.rst.txt @@ -0,0 +1,29 @@ +arista.event.v1.services package +================================ + +Submodules +---------- + +arista.event.v1.services.gen\_pb2 module +---------------------------------------- + +.. automodule:: arista.event.v1.services.gen_pb2 + :members: + :undoc-members: + :show-inheritance: + +arista.event.v1.services.gen\_pb2\_grpc module +---------------------------------------------- + +.. automodule:: arista.event.v1.services.gen_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: arista.event.v1.services + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.identityprovider.rst.txt b/_sources/arista.identityprovider.rst.txt new file mode 100644 index 00000000..ba686559 --- /dev/null +++ b/_sources/arista.identityprovider.rst.txt @@ -0,0 +1,18 @@ +arista.identityprovider package +=============================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + arista.identityprovider.v1 + +Module contents +--------------- + +.. automodule:: arista.identityprovider + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.identityprovider.v1.rst.txt b/_sources/arista.identityprovider.v1.rst.txt new file mode 100644 index 00000000..d190ecc2 --- /dev/null +++ b/_sources/arista.identityprovider.v1.rst.txt @@ -0,0 +1,37 @@ +arista.identityprovider.v1 package +================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + arista.identityprovider.v1.services + +Submodules +---------- + +arista.identityprovider.v1.identityprovider\_pb2 module +------------------------------------------------------- + +.. automodule:: arista.identityprovider.v1.identityprovider_pb2 + :members: + :undoc-members: + :show-inheritance: + +arista.identityprovider.v1.identityprovider\_pb2\_grpc module +------------------------------------------------------------- + +.. automodule:: arista.identityprovider.v1.identityprovider_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: arista.identityprovider.v1 + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.identityprovider.v1.services.rst.txt b/_sources/arista.identityprovider.v1.services.rst.txt new file mode 100644 index 00000000..fa72cbc6 --- /dev/null +++ b/_sources/arista.identityprovider.v1.services.rst.txt @@ -0,0 +1,29 @@ +arista.identityprovider.v1.services package +=========================================== + +Submodules +---------- + +arista.identityprovider.v1.services.gen\_pb2 module +--------------------------------------------------- + +.. automodule:: arista.identityprovider.v1.services.gen_pb2 + :members: + :undoc-members: + :show-inheritance: + +arista.identityprovider.v1.services.gen\_pb2\_grpc module +--------------------------------------------------------- + +.. automodule:: arista.identityprovider.v1.services.gen_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: arista.identityprovider.v1.services + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.imagestatus.rst.txt b/_sources/arista.imagestatus.rst.txt new file mode 100644 index 00000000..4bb6cf82 --- /dev/null +++ b/_sources/arista.imagestatus.rst.txt @@ -0,0 +1,18 @@ +arista.imagestatus package +========================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + arista.imagestatus.v1 + +Module contents +--------------- + +.. automodule:: arista.imagestatus + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.imagestatus.v1.rst.txt b/_sources/arista.imagestatus.v1.rst.txt new file mode 100644 index 00000000..295c4827 --- /dev/null +++ b/_sources/arista.imagestatus.v1.rst.txt @@ -0,0 +1,37 @@ +arista.imagestatus.v1 package +============================= + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + arista.imagestatus.v1.services + +Submodules +---------- + +arista.imagestatus.v1.imagestatus\_pb2 module +--------------------------------------------- + +.. automodule:: arista.imagestatus.v1.imagestatus_pb2 + :members: + :undoc-members: + :show-inheritance: + +arista.imagestatus.v1.imagestatus\_pb2\_grpc module +--------------------------------------------------- + +.. automodule:: arista.imagestatus.v1.imagestatus_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: arista.imagestatus.v1 + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.imagestatus.v1.services.rst.txt b/_sources/arista.imagestatus.v1.services.rst.txt new file mode 100644 index 00000000..7b880339 --- /dev/null +++ b/_sources/arista.imagestatus.v1.services.rst.txt @@ -0,0 +1,29 @@ +arista.imagestatus.v1.services package +====================================== + +Submodules +---------- + +arista.imagestatus.v1.services.gen\_pb2 module +---------------------------------------------- + +.. automodule:: arista.imagestatus.v1.services.gen_pb2 + :members: + :undoc-members: + :show-inheritance: + +arista.imagestatus.v1.services.gen\_pb2\_grpc module +---------------------------------------------------- + +.. automodule:: arista.imagestatus.v1.services.gen_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: arista.imagestatus.v1.services + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.inventory.rst.txt b/_sources/arista.inventory.rst.txt new file mode 100644 index 00000000..6ab1a628 --- /dev/null +++ b/_sources/arista.inventory.rst.txt @@ -0,0 +1,18 @@ +arista.inventory package +======================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + arista.inventory.v1 + +Module contents +--------------- + +.. automodule:: arista.inventory + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.inventory.v1.rst.txt b/_sources/arista.inventory.v1.rst.txt new file mode 100644 index 00000000..7d8db3d3 --- /dev/null +++ b/_sources/arista.inventory.v1.rst.txt @@ -0,0 +1,37 @@ +arista.inventory.v1 package +=========================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + arista.inventory.v1.services + +Submodules +---------- + +arista.inventory.v1.inventory\_pb2 module +----------------------------------------- + +.. automodule:: arista.inventory.v1.inventory_pb2 + :members: + :undoc-members: + :show-inheritance: + +arista.inventory.v1.inventory\_pb2\_grpc module +----------------------------------------------- + +.. automodule:: arista.inventory.v1.inventory_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: arista.inventory.v1 + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.inventory.v1.services.rst.txt b/_sources/arista.inventory.v1.services.rst.txt new file mode 100644 index 00000000..8d4bff25 --- /dev/null +++ b/_sources/arista.inventory.v1.services.rst.txt @@ -0,0 +1,29 @@ +arista.inventory.v1.services package +==================================== + +Submodules +---------- + +arista.inventory.v1.services.gen\_pb2 module +-------------------------------------------- + +.. automodule:: arista.inventory.v1.services.gen_pb2 + :members: + :undoc-members: + :show-inheritance: + +arista.inventory.v1.services.gen\_pb2\_grpc module +-------------------------------------------------- + +.. automodule:: arista.inventory.v1.services.gen_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: arista.inventory.v1.services + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.lifecycle.rst.txt b/_sources/arista.lifecycle.rst.txt new file mode 100644 index 00000000..fc983ec7 --- /dev/null +++ b/_sources/arista.lifecycle.rst.txt @@ -0,0 +1,18 @@ +arista.lifecycle package +======================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + arista.lifecycle.v1 + +Module contents +--------------- + +.. automodule:: arista.lifecycle + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.lifecycle.v1.rst.txt b/_sources/arista.lifecycle.v1.rst.txt new file mode 100644 index 00000000..bf1a0f29 --- /dev/null +++ b/_sources/arista.lifecycle.v1.rst.txt @@ -0,0 +1,37 @@ +arista.lifecycle.v1 package +=========================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + arista.lifecycle.v1.services + +Submodules +---------- + +arista.lifecycle.v1.lifecycle\_pb2 module +----------------------------------------- + +.. automodule:: arista.lifecycle.v1.lifecycle_pb2 + :members: + :undoc-members: + :show-inheritance: + +arista.lifecycle.v1.lifecycle\_pb2\_grpc module +----------------------------------------------- + +.. automodule:: arista.lifecycle.v1.lifecycle_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: arista.lifecycle.v1 + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.lifecycle.v1.services.rst.txt b/_sources/arista.lifecycle.v1.services.rst.txt new file mode 100644 index 00000000..9c16f5d7 --- /dev/null +++ b/_sources/arista.lifecycle.v1.services.rst.txt @@ -0,0 +1,29 @@ +arista.lifecycle.v1.services package +==================================== + +Submodules +---------- + +arista.lifecycle.v1.services.gen\_pb2 module +-------------------------------------------- + +.. automodule:: arista.lifecycle.v1.services.gen_pb2 + :members: + :undoc-members: + :show-inheritance: + +arista.lifecycle.v1.services.gen\_pb2\_grpc module +-------------------------------------------------- + +.. automodule:: arista.lifecycle.v1.services.gen_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: arista.lifecycle.v1.services + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.redirector.rst.txt b/_sources/arista.redirector.rst.txt new file mode 100644 index 00000000..39025ee8 --- /dev/null +++ b/_sources/arista.redirector.rst.txt @@ -0,0 +1,18 @@ +arista.redirector package +========================= + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + arista.redirector.v1 + +Module contents +--------------- + +.. automodule:: arista.redirector + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.redirector.v1.rst.txt b/_sources/arista.redirector.v1.rst.txt new file mode 100644 index 00000000..3534bdb8 --- /dev/null +++ b/_sources/arista.redirector.v1.rst.txt @@ -0,0 +1,37 @@ +arista.redirector.v1 package +============================ + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + arista.redirector.v1.services + +Submodules +---------- + +arista.redirector.v1.redirector\_pb2 module +------------------------------------------- + +.. automodule:: arista.redirector.v1.redirector_pb2 + :members: + :undoc-members: + :show-inheritance: + +arista.redirector.v1.redirector\_pb2\_grpc module +------------------------------------------------- + +.. automodule:: arista.redirector.v1.redirector_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: arista.redirector.v1 + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.redirector.v1.services.rst.txt b/_sources/arista.redirector.v1.services.rst.txt new file mode 100644 index 00000000..33bf63c5 --- /dev/null +++ b/_sources/arista.redirector.v1.services.rst.txt @@ -0,0 +1,29 @@ +arista.redirector.v1.services package +===================================== + +Submodules +---------- + +arista.redirector.v1.services.gen\_pb2 module +--------------------------------------------- + +.. automodule:: arista.redirector.v1.services.gen_pb2 + :members: + :undoc-members: + :show-inheritance: + +arista.redirector.v1.services.gen\_pb2\_grpc module +--------------------------------------------------- + +.. automodule:: arista.redirector.v1.services.gen_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: arista.redirector.v1.services + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.rst.txt b/_sources/arista.rst.txt new file mode 100644 index 00000000..4faaeca4 --- /dev/null +++ b/_sources/arista.rst.txt @@ -0,0 +1,37 @@ +arista package +============== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + arista.alert + arista.bugexposure + arista.changecontrol + arista.configlet + arista.configstatus + arista.connectivitymonitor + arista.dashboard + arista.endpointlocation + arista.event + arista.identityprovider + arista.imagestatus + arista.inventory + arista.lifecycle + arista.redirector + arista.serviceaccount + arista.studio + arista.subscriptions + arista.tag + arista.time + arista.workspace + +Module contents +--------------- + +.. automodule:: arista + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.serviceaccount.rst.txt b/_sources/arista.serviceaccount.rst.txt new file mode 100644 index 00000000..9e57e70c --- /dev/null +++ b/_sources/arista.serviceaccount.rst.txt @@ -0,0 +1,18 @@ +arista.serviceaccount package +============================= + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + arista.serviceaccount.v1 + +Module contents +--------------- + +.. automodule:: arista.serviceaccount + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.serviceaccount.v1.rst.txt b/_sources/arista.serviceaccount.v1.rst.txt new file mode 100644 index 00000000..390a227a --- /dev/null +++ b/_sources/arista.serviceaccount.v1.rst.txt @@ -0,0 +1,37 @@ +arista.serviceaccount.v1 package +================================ + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + arista.serviceaccount.v1.services + +Submodules +---------- + +arista.serviceaccount.v1.serviceaccount\_pb2 module +--------------------------------------------------- + +.. automodule:: arista.serviceaccount.v1.serviceaccount_pb2 + :members: + :undoc-members: + :show-inheritance: + +arista.serviceaccount.v1.serviceaccount\_pb2\_grpc module +--------------------------------------------------------- + +.. automodule:: arista.serviceaccount.v1.serviceaccount_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: arista.serviceaccount.v1 + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.serviceaccount.v1.services.rst.txt b/_sources/arista.serviceaccount.v1.services.rst.txt new file mode 100644 index 00000000..477d0fc5 --- /dev/null +++ b/_sources/arista.serviceaccount.v1.services.rst.txt @@ -0,0 +1,29 @@ +arista.serviceaccount.v1.services package +========================================= + +Submodules +---------- + +arista.serviceaccount.v1.services.gen\_pb2 module +------------------------------------------------- + +.. automodule:: arista.serviceaccount.v1.services.gen_pb2 + :members: + :undoc-members: + :show-inheritance: + +arista.serviceaccount.v1.services.gen\_pb2\_grpc module +------------------------------------------------------- + +.. automodule:: arista.serviceaccount.v1.services.gen_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: arista.serviceaccount.v1.services + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.studio.rst.txt b/_sources/arista.studio.rst.txt new file mode 100644 index 00000000..0e9c642a --- /dev/null +++ b/_sources/arista.studio.rst.txt @@ -0,0 +1,18 @@ +arista.studio package +===================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + arista.studio.v1 + +Module contents +--------------- + +.. automodule:: arista.studio + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.studio.v1.rst.txt b/_sources/arista.studio.v1.rst.txt new file mode 100644 index 00000000..288d9968 --- /dev/null +++ b/_sources/arista.studio.v1.rst.txt @@ -0,0 +1,37 @@ +arista.studio.v1 package +======================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + arista.studio.v1.services + +Submodules +---------- + +arista.studio.v1.studio\_pb2 module +----------------------------------- + +.. automodule:: arista.studio.v1.studio_pb2 + :members: + :undoc-members: + :show-inheritance: + +arista.studio.v1.studio\_pb2\_grpc module +----------------------------------------- + +.. automodule:: arista.studio.v1.studio_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: arista.studio.v1 + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.studio.v1.services.rst.txt b/_sources/arista.studio.v1.services.rst.txt new file mode 100644 index 00000000..d7e69f02 --- /dev/null +++ b/_sources/arista.studio.v1.services.rst.txt @@ -0,0 +1,29 @@ +arista.studio.v1.services package +================================= + +Submodules +---------- + +arista.studio.v1.services.gen\_pb2 module +----------------------------------------- + +.. automodule:: arista.studio.v1.services.gen_pb2 + :members: + :undoc-members: + :show-inheritance: + +arista.studio.v1.services.gen\_pb2\_grpc module +----------------------------------------------- + +.. automodule:: arista.studio.v1.services.gen_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: arista.studio.v1.services + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.subscriptions.rst.txt b/_sources/arista.subscriptions.rst.txt new file mode 100644 index 00000000..07ddac86 --- /dev/null +++ b/_sources/arista.subscriptions.rst.txt @@ -0,0 +1,29 @@ +arista.subscriptions package +============================ + +Submodules +---------- + +arista.subscriptions.subscriptions\_pb2 module +---------------------------------------------- + +.. automodule:: arista.subscriptions.subscriptions_pb2 + :members: + :undoc-members: + :show-inheritance: + +arista.subscriptions.subscriptions\_pb2\_grpc module +---------------------------------------------------- + +.. automodule:: arista.subscriptions.subscriptions_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: arista.subscriptions + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.tag.rst.txt b/_sources/arista.tag.rst.txt new file mode 100644 index 00000000..a9101a6b --- /dev/null +++ b/_sources/arista.tag.rst.txt @@ -0,0 +1,18 @@ +arista.tag package +================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + arista.tag.v2 + +Module contents +--------------- + +.. automodule:: arista.tag + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.tag.v2.rst.txt b/_sources/arista.tag.v2.rst.txt new file mode 100644 index 00000000..d30e6e77 --- /dev/null +++ b/_sources/arista.tag.v2.rst.txt @@ -0,0 +1,37 @@ +arista.tag.v2 package +===================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + arista.tag.v2.services + +Submodules +---------- + +arista.tag.v2.tag\_pb2 module +----------------------------- + +.. automodule:: arista.tag.v2.tag_pb2 + :members: + :undoc-members: + :show-inheritance: + +arista.tag.v2.tag\_pb2\_grpc module +----------------------------------- + +.. automodule:: arista.tag.v2.tag_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: arista.tag.v2 + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.tag.v2.services.rst.txt b/_sources/arista.tag.v2.services.rst.txt new file mode 100644 index 00000000..e763548e --- /dev/null +++ b/_sources/arista.tag.v2.services.rst.txt @@ -0,0 +1,29 @@ +arista.tag.v2.services package +============================== + +Submodules +---------- + +arista.tag.v2.services.gen\_pb2 module +-------------------------------------- + +.. automodule:: arista.tag.v2.services.gen_pb2 + :members: + :undoc-members: + :show-inheritance: + +arista.tag.v2.services.gen\_pb2\_grpc module +-------------------------------------------- + +.. automodule:: arista.tag.v2.services.gen_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: arista.tag.v2.services + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.time.rst.txt b/_sources/arista.time.rst.txt new file mode 100644 index 00000000..f6ae43fc --- /dev/null +++ b/_sources/arista.time.rst.txt @@ -0,0 +1,29 @@ +arista.time package +=================== + +Submodules +---------- + +arista.time.time\_pb2 module +---------------------------- + +.. automodule:: arista.time.time_pb2 + :members: + :undoc-members: + :show-inheritance: + +arista.time.time\_pb2\_grpc module +---------------------------------- + +.. automodule:: arista.time.time_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: arista.time + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.workspace.rst.txt b/_sources/arista.workspace.rst.txt new file mode 100644 index 00000000..82f11d94 --- /dev/null +++ b/_sources/arista.workspace.rst.txt @@ -0,0 +1,18 @@ +arista.workspace package +======================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + arista.workspace.v1 + +Module contents +--------------- + +.. automodule:: arista.workspace + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.workspace.v1.rst.txt b/_sources/arista.workspace.v1.rst.txt new file mode 100644 index 00000000..5fa625a4 --- /dev/null +++ b/_sources/arista.workspace.v1.rst.txt @@ -0,0 +1,37 @@ +arista.workspace.v1 package +=========================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + arista.workspace.v1.services + +Submodules +---------- + +arista.workspace.v1.workspace\_pb2 module +----------------------------------------- + +.. automodule:: arista.workspace.v1.workspace_pb2 + :members: + :undoc-members: + :show-inheritance: + +arista.workspace.v1.workspace\_pb2\_grpc module +----------------------------------------------- + +.. automodule:: arista.workspace.v1.workspace_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: arista.workspace.v1 + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/arista.workspace.v1.services.rst.txt b/_sources/arista.workspace.v1.services.rst.txt new file mode 100644 index 00000000..52a8c8cd --- /dev/null +++ b/_sources/arista.workspace.v1.services.rst.txt @@ -0,0 +1,29 @@ +arista.workspace.v1.services package +==================================== + +Submodules +---------- + +arista.workspace.v1.services.gen\_pb2 module +-------------------------------------------- + +.. automodule:: arista.workspace.v1.services.gen_pb2 + :members: + :undoc-members: + :show-inheritance: + +arista.workspace.v1.services.gen\_pb2\_grpc module +-------------------------------------------------- + +.. automodule:: arista.workspace.v1.services.gen_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: arista.workspace.v1.services + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/cloudvision.Connector.auth.rst.txt b/_sources/cloudvision.Connector.auth.rst.txt new file mode 100644 index 00000000..308449b5 --- /dev/null +++ b/_sources/cloudvision.Connector.auth.rst.txt @@ -0,0 +1,21 @@ +cloudvision.Connector.auth package +================================== + +Submodules +---------- + +cloudvision.Connector.auth.cert module +-------------------------------------- + +.. automodule:: cloudvision.Connector.auth.cert + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: cloudvision.Connector.auth + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/cloudvision.Connector.codec.rst.txt b/_sources/cloudvision.Connector.codec.rst.txt new file mode 100644 index 00000000..260e4b18 --- /dev/null +++ b/_sources/cloudvision.Connector.codec.rst.txt @@ -0,0 +1,37 @@ +cloudvision.Connector.codec package +=================================== + +Submodules +---------- + +cloudvision.Connector.codec.custom\_types module +------------------------------------------------ + +.. automodule:: cloudvision.Connector.codec.custom_types + :members: + :undoc-members: + :show-inheritance: + +cloudvision.Connector.codec.decoder module +------------------------------------------ + +.. automodule:: cloudvision.Connector.codec.decoder + :members: + :undoc-members: + :show-inheritance: + +cloudvision.Connector.codec.encoder module +------------------------------------------ + +.. automodule:: cloudvision.Connector.codec.encoder + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: cloudvision.Connector.codec + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/cloudvision.Connector.core.rst.txt b/_sources/cloudvision.Connector.core.rst.txt new file mode 100644 index 00000000..968e0b91 --- /dev/null +++ b/_sources/cloudvision.Connector.core.rst.txt @@ -0,0 +1,21 @@ +cloudvision.Connector.core package +================================== + +Submodules +---------- + +cloudvision.Connector.core.utils module +--------------------------------------- + +.. automodule:: cloudvision.Connector.core.utils + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: cloudvision.Connector.core + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/cloudvision.Connector.gen.rst.txt b/_sources/cloudvision.Connector.gen.rst.txt new file mode 100644 index 00000000..33b1bcff --- /dev/null +++ b/_sources/cloudvision.Connector.gen.rst.txt @@ -0,0 +1,77 @@ +cloudvision.Connector.gen package +================================= + +Submodules +---------- + +cloudvision.Connector.gen.ca\_pb2 module +---------------------------------------- + +.. automodule:: cloudvision.Connector.gen.ca_pb2 + :members: + :undoc-members: + :show-inheritance: + +cloudvision.Connector.gen.ca\_pb2\_grpc module +---------------------------------------------- + +.. automodule:: cloudvision.Connector.gen.ca_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +cloudvision.Connector.gen.notification\_pb2 module +-------------------------------------------------- + +.. automodule:: cloudvision.Connector.gen.notification_pb2 + :members: + :undoc-members: + :show-inheritance: + +cloudvision.Connector.gen.notification\_pb2\_grpc module +-------------------------------------------------------- + +.. automodule:: cloudvision.Connector.gen.notification_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +cloudvision.Connector.gen.router\_pb2 module +-------------------------------------------- + +.. automodule:: cloudvision.Connector.gen.router_pb2 + :members: + :undoc-members: + :show-inheritance: + +cloudvision.Connector.gen.router\_pb2\_grpc module +-------------------------------------------------- + +.. automodule:: cloudvision.Connector.gen.router_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +cloudvision.Connector.gen.sharding\_pb2 module +---------------------------------------------- + +.. automodule:: cloudvision.Connector.gen.sharding_pb2 + :members: + :undoc-members: + :show-inheritance: + +cloudvision.Connector.gen.sharding\_pb2\_grpc module +---------------------------------------------------- + +.. automodule:: cloudvision.Connector.gen.sharding_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: cloudvision.Connector.gen + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/cloudvision.Connector.grpc_client.rst.txt b/_sources/cloudvision.Connector.grpc_client.rst.txt new file mode 100644 index 00000000..c48ebefb --- /dev/null +++ b/_sources/cloudvision.Connector.grpc_client.rst.txt @@ -0,0 +1,21 @@ +cloudvision.Connector.grpc\_client package +========================================== + +Submodules +---------- + +cloudvision.Connector.grpc\_client.grpcClient module +---------------------------------------------------- + +.. automodule:: cloudvision.Connector.grpc_client.grpcClient + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: cloudvision.Connector.grpc_client + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/cloudvision.Connector.protobuf.rst.txt b/_sources/cloudvision.Connector.protobuf.rst.txt new file mode 100644 index 00000000..be8f36bf --- /dev/null +++ b/_sources/cloudvision.Connector.protobuf.rst.txt @@ -0,0 +1,10 @@ +cloudvision.Connector.protobuf package +====================================== + +Module contents +--------------- + +.. automodule:: cloudvision.Connector.protobuf + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/cloudvision.Connector.rst.txt b/_sources/cloudvision.Connector.rst.txt new file mode 100644 index 00000000..0bbe7037 --- /dev/null +++ b/_sources/cloudvision.Connector.rst.txt @@ -0,0 +1,23 @@ +cloudvision.Connector package +============================= + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + cloudvision.Connector.auth + cloudvision.Connector.codec + cloudvision.Connector.core + cloudvision.Connector.gen + cloudvision.Connector.grpc_client + cloudvision.Connector.protobuf + +Module contents +--------------- + +.. automodule:: cloudvision.Connector + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/cloudvision.cvlib.rst.txt b/_sources/cloudvision.cvlib.rst.txt new file mode 100644 index 00000000..94287351 --- /dev/null +++ b/_sources/cloudvision.cvlib.rst.txt @@ -0,0 +1,149 @@ +cloudvision.cvlib package +========================= + +Submodules +---------- + +cloudvision.cvlib.action module +------------------------------- + +.. automodule:: cloudvision.cvlib.action + :members: + :undoc-members: + :show-inheritance: + +cloudvision.cvlib.changecontrol module +-------------------------------------- + +.. automodule:: cloudvision.cvlib.changecontrol + :members: + :undoc-members: + :show-inheritance: + +cloudvision.cvlib.connections module +------------------------------------ + +.. automodule:: cloudvision.cvlib.connections + :members: + :undoc-members: + :show-inheritance: + +cloudvision.cvlib.constants module +---------------------------------- + +.. automodule:: cloudvision.cvlib.constants + :members: + :undoc-members: + :show-inheritance: + +cloudvision.cvlib.context module +-------------------------------- + +.. automodule:: cloudvision.cvlib.context + :members: + :undoc-members: + :show-inheritance: + +cloudvision.cvlib.device module +------------------------------- + +.. automodule:: cloudvision.cvlib.device + :members: + :undoc-members: + :show-inheritance: + +cloudvision.cvlib.exceptions module +----------------------------------- + +.. automodule:: cloudvision.cvlib.exceptions + :members: + :undoc-members: + :show-inheritance: + +cloudvision.cvlib.execution module +---------------------------------- + +.. automodule:: cloudvision.cvlib.execution + :members: + :undoc-members: + :show-inheritance: + +cloudvision.cvlib.id\_allocator module +-------------------------------------- + +.. automodule:: cloudvision.cvlib.id_allocator + :members: + :undoc-members: + :show-inheritance: + +cloudvision.cvlib.iputils module +-------------------------------- + +.. automodule:: cloudvision.cvlib.iputils + :members: + :undoc-members: + :show-inheritance: + +cloudvision.cvlib.logger module +------------------------------- + +.. automodule:: cloudvision.cvlib.logger + :members: + :undoc-members: + :show-inheritance: + +cloudvision.cvlib.studio module +------------------------------- + +.. automodule:: cloudvision.cvlib.studio + :members: + :undoc-members: + :show-inheritance: + +cloudvision.cvlib.tags module +----------------------------- + +.. automodule:: cloudvision.cvlib.tags + :members: + :undoc-members: + :show-inheritance: + +cloudvision.cvlib.topology module +--------------------------------- + +.. automodule:: cloudvision.cvlib.topology + :members: + :undoc-members: + :show-inheritance: + +cloudvision.cvlib.user module +----------------------------- + +.. automodule:: cloudvision.cvlib.user + :members: + :undoc-members: + :show-inheritance: + +cloudvision.cvlib.utils module +------------------------------ + +.. automodule:: cloudvision.cvlib.utils + :members: + :undoc-members: + :show-inheritance: + +cloudvision.cvlib.workspace module +---------------------------------- + +.. automodule:: cloudvision.cvlib.workspace + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: cloudvision.cvlib + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/cloudvision.rst.txt b/_sources/cloudvision.rst.txt new file mode 100644 index 00000000..c637849b --- /dev/null +++ b/_sources/cloudvision.rst.txt @@ -0,0 +1,19 @@ +cloudvision package +=================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + cloudvision.Connector + cloudvision.cvlib + +Module contents +--------------- + +.. automodule:: cloudvision + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/fmp.rst.txt b/_sources/fmp.rst.txt new file mode 100644 index 00000000..c52f1e23 --- /dev/null +++ b/_sources/fmp.rst.txt @@ -0,0 +1,109 @@ +fmp package +=========== + +Submodules +---------- + +fmp.deletes\_pb2 module +----------------------- + +.. automodule:: fmp.deletes_pb2 + :members: + :undoc-members: + :show-inheritance: + +fmp.deletes\_pb2\_grpc module +----------------------------- + +.. automodule:: fmp.deletes_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +fmp.extensions\_pb2 module +-------------------------- + +.. automodule:: fmp.extensions_pb2 + :members: + :undoc-members: + :show-inheritance: + +fmp.extensions\_pb2\_grpc module +-------------------------------- + +.. automodule:: fmp.extensions_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +fmp.inet\_pb2 module +-------------------- + +.. automodule:: fmp.inet_pb2 + :members: + :undoc-members: + :show-inheritance: + +fmp.inet\_pb2\_grpc module +-------------------------- + +.. automodule:: fmp.inet_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +fmp.pages\_pb2 module +--------------------- + +.. automodule:: fmp.pages_pb2 + :members: + :undoc-members: + :show-inheritance: + +fmp.pages\_pb2\_grpc module +--------------------------- + +.. automodule:: fmp.pages_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +fmp.wrappers\_pb2 module +------------------------ + +.. automodule:: fmp.wrappers_pb2 + :members: + :undoc-members: + :show-inheritance: + +fmp.wrappers\_pb2\_grpc module +------------------------------ + +.. automodule:: fmp.wrappers_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +fmp.yang\_pb2 module +-------------------- + +.. automodule:: fmp.yang_pb2 + :members: + :undoc-members: + :show-inheritance: + +fmp.yang\_pb2\_grpc module +-------------------------- + +.. automodule:: fmp.yang_pb2_grpc + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: fmp + :members: + :undoc-members: + :show-inheritance: diff --git a/_sources/index.rst.txt b/_sources/index.rst.txt new file mode 100644 index 00000000..0cab6d6d --- /dev/null +++ b/_sources/index.rst.txt @@ -0,0 +1,20 @@ +.. CloudVision Python documentation master file, created by + sphinx-quickstart on Tue Jul 26 13:29:37 2022. + You can adapt this file completely to your liking, but it should at least + contain the root `toctree` directive. + +Welcome to CloudVision Python's documentation! +============================================== + +.. toctree:: + :maxdepth: 2 + :caption: Contents: + + modules + +Indices and tables +================== + +* :ref:`genindex` +* :ref:`modindex` +* :ref:`search` diff --git a/_sources/modules.rst.txt b/_sources/modules.rst.txt new file mode 100644 index 00000000..8d22cf3f --- /dev/null +++ b/_sources/modules.rst.txt @@ -0,0 +1,9 @@ +cloudvision +=========== + +.. toctree:: + :maxdepth: 4 + + cloudvision + arista + fmp diff --git a/_static/_sphinx_javascript_frameworks_compat.js b/_static/_sphinx_javascript_frameworks_compat.js new file mode 100644 index 00000000..81415803 --- /dev/null +++ b/_static/_sphinx_javascript_frameworks_compat.js @@ -0,0 +1,123 @@ +/* Compatability shim for jQuery and underscores.js. + * + * Copyright Sphinx contributors + * Released under the two clause BSD licence + */ + +/** + * small helper function to urldecode strings + * + * See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/decodeURIComponent#Decoding_query_parameters_from_a_URL + */ +jQuery.urldecode = function(x) { + if (!x) { + return x + } + return decodeURIComponent(x.replace(/\+/g, ' ')); +}; + +/** + * small helper function to urlencode strings + */ +jQuery.urlencode = encodeURIComponent; + +/** + * This function returns the parsed url parameters of the + * current request. Multiple values per key are supported, + * it will always return arrays of strings for the value parts. + */ +jQuery.getQueryParameters = function(s) { + if (typeof s === 'undefined') + s = document.location.search; + var parts = s.substr(s.indexOf('?') + 1).split('&'); + var result = {}; + for (var i = 0; i < parts.length; i++) { + var tmp = parts[i].split('=', 2); + var key = jQuery.urldecode(tmp[0]); + var value = jQuery.urldecode(tmp[1]); + if (key in result) + result[key].push(value); + else + result[key] = [value]; + } + return result; +}; + +/** + * highlight a given string on a jquery object by wrapping it in + * span elements with the given class name. + */ +jQuery.fn.highlightText = function(text, className) { + function highlight(node, addItems) { + if (node.nodeType === 3) { + var val = node.nodeValue; + var pos = val.toLowerCase().indexOf(text); + if (pos >= 0 && + !jQuery(node.parentNode).hasClass(className) && + !jQuery(node.parentNode).hasClass("nohighlight")) { + var span; + var isInSVG = jQuery(node).closest("body, svg, foreignObject").is("svg"); + if (isInSVG) { + span = document.createElementNS("http://www.w3.org/2000/svg", "tspan"); + } else { + span = document.createElement("span"); + span.className = className; + } + span.appendChild(document.createTextNode(val.substr(pos, text.length))); + node.parentNode.insertBefore(span, node.parentNode.insertBefore( + document.createTextNode(val.substr(pos + text.length)), + node.nextSibling)); + node.nodeValue = val.substr(0, pos); + if (isInSVG) { + var rect = document.createElementNS("http://www.w3.org/2000/svg", "rect"); + var bbox = node.parentElement.getBBox(); + rect.x.baseVal.value = bbox.x; + rect.y.baseVal.value = bbox.y; + rect.width.baseVal.value = bbox.width; + rect.height.baseVal.value = bbox.height; + rect.setAttribute('class', className); + addItems.push({ + "parent": node.parentNode, + "target": rect}); + } + } + } + else if (!jQuery(node).is("button, select, textarea")) { + jQuery.each(node.childNodes, function() { + highlight(this, addItems); + }); + } + } + var addItems = []; + var result = this.each(function() { + highlight(this, addItems); + }); + for (var i = 0; i < addItems.length; ++i) { + jQuery(addItems[i].parent).before(addItems[i].target); + } + return result; +}; + +/* + * backward compatibility for jQuery.browser + * This will be supported until firefox bug is fixed. + */ +if (!jQuery.browser) { + jQuery.uaMatch = function(ua) { + ua = ua.toLowerCase(); + + var match = /(chrome)[ \/]([\w.]+)/.exec(ua) || + /(webkit)[ \/]([\w.]+)/.exec(ua) || + /(opera)(?:.*version|)[ \/]([\w.]+)/.exec(ua) || + /(msie) ([\w.]+)/.exec(ua) || + ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec(ua) || + []; + + return { + browser: match[ 1 ] || "", + version: match[ 2 ] || "0" + }; + }; + jQuery.browser = {}; + jQuery.browser[jQuery.uaMatch(navigator.userAgent).browser] = true; +} diff --git a/_static/basic.css b/_static/basic.css new file mode 100644 index 00000000..7ebbd6d0 --- /dev/null +++ b/_static/basic.css @@ -0,0 +1,914 @@ +/* + * Sphinx stylesheet -- basic theme. + */ + +/* -- main layout ----------------------------------------------------------- */ + +div.clearer { + clear: both; +} + +div.section::after { + display: block; + content: ''; + clear: left; +} + +/* -- relbar ---------------------------------------------------------------- */ + +div.related { + width: 100%; + font-size: 90%; +} + +div.related h3 { + display: none; +} + +div.related ul { + margin: 0; + padding: 0 0 0 10px; + list-style: none; +} + +div.related li { + display: inline; +} + +div.related li.right { + float: right; + margin-right: 5px; +} + +/* -- sidebar --------------------------------------------------------------- */ + +div.sphinxsidebarwrapper { + padding: 10px 5px 0 10px; +} + +div.sphinxsidebar { + float: left; + width: 230px; + margin-left: -100%; + font-size: 90%; + word-wrap: break-word; + overflow-wrap : break-word; +} + +div.sphinxsidebar ul { + list-style: none; +} + +div.sphinxsidebar ul ul, +div.sphinxsidebar ul.want-points { + margin-left: 20px; + list-style: square; +} + +div.sphinxsidebar ul ul { + margin-top: 0; + margin-bottom: 0; +} + +div.sphinxsidebar form { + margin-top: 10px; +} + +div.sphinxsidebar input { + border: 1px solid #98dbcc; + font-family: sans-serif; + font-size: 1em; +} + +div.sphinxsidebar #searchbox form.search { + overflow: hidden; +} + +div.sphinxsidebar #searchbox input[type="text"] { + float: left; + width: 80%; + padding: 0.25em; + box-sizing: border-box; +} + +div.sphinxsidebar #searchbox input[type="submit"] { + float: left; + width: 20%; + border-left: none; + padding: 0.25em; + box-sizing: border-box; +} + + +img { + border: 0; + max-width: 100%; +} + +/* -- search page ----------------------------------------------------------- */ + +ul.search { + margin-top: 10px; +} + +ul.search li { + padding: 5px 0; +} + +ul.search li a { + font-weight: bold; +} + +ul.search li p.context { + color: #888; + margin: 2px 0 0 30px; + text-align: left; +} + +ul.keywordmatches li.goodmatch a { + font-weight: bold; +} + +/* -- index page ------------------------------------------------------------ */ + +table.contentstable { + width: 90%; + margin-left: auto; + margin-right: auto; +} + +table.contentstable p.biglink { + line-height: 150%; +} + +a.biglink { + font-size: 1.3em; +} + +span.linkdescr { + font-style: italic; + padding-top: 5px; + font-size: 90%; +} + +/* -- general index --------------------------------------------------------- */ + +table.indextable { + width: 100%; +} + +table.indextable td { + text-align: left; + vertical-align: top; +} + +table.indextable ul { + margin-top: 0; + margin-bottom: 0; + list-style-type: none; +} + +table.indextable > tbody > tr > td > ul { + padding-left: 0em; +} + +table.indextable tr.pcap { + height: 10px; +} + +table.indextable tr.cap { + margin-top: 10px; + background-color: #f2f2f2; +} + +img.toggler { + margin-right: 3px; + margin-top: 3px; + cursor: pointer; +} + +div.modindex-jumpbox { + border-top: 1px solid #ddd; + border-bottom: 1px solid #ddd; + margin: 1em 0 1em 0; + padding: 0.4em; +} + +div.genindex-jumpbox { + border-top: 1px solid #ddd; + border-bottom: 1px solid #ddd; + margin: 1em 0 1em 0; + padding: 0.4em; +} + +/* -- domain module index --------------------------------------------------- */ + +table.modindextable td { + padding: 2px; + border-collapse: collapse; +} + +/* -- general body styles --------------------------------------------------- */ + +div.body { + min-width: 360px; + max-width: 800px; +} + +div.body p, div.body dd, div.body li, div.body blockquote { + -moz-hyphens: auto; + -ms-hyphens: auto; + -webkit-hyphens: auto; + hyphens: auto; +} + +a.headerlink { + visibility: hidden; +} + +a:visited { + color: #551A8B; +} + +h1:hover > a.headerlink, +h2:hover > a.headerlink, +h3:hover > a.headerlink, +h4:hover > a.headerlink, +h5:hover > a.headerlink, +h6:hover > a.headerlink, +dt:hover > a.headerlink, +caption:hover > a.headerlink, +p.caption:hover > a.headerlink, +div.code-block-caption:hover > a.headerlink { + visibility: visible; +} + +div.body p.caption { + text-align: inherit; +} + +div.body td { + text-align: left; +} + +.first { + margin-top: 0 !important; +} + +p.rubric { + margin-top: 30px; + font-weight: bold; +} + +img.align-left, figure.align-left, .figure.align-left, object.align-left { + clear: left; + float: left; + margin-right: 1em; +} + +img.align-right, figure.align-right, .figure.align-right, object.align-right { + clear: right; + float: right; + margin-left: 1em; +} + +img.align-center, figure.align-center, .figure.align-center, object.align-center { + display: block; + margin-left: auto; + margin-right: auto; +} + +img.align-default, figure.align-default, .figure.align-default { + display: block; + margin-left: auto; + margin-right: auto; +} + +.align-left { + text-align: left; +} + +.align-center { + text-align: center; +} + +.align-default { + text-align: center; +} + +.align-right { + text-align: right; +} + +/* -- sidebars -------------------------------------------------------------- */ + +div.sidebar, +aside.sidebar { + margin: 0 0 0.5em 1em; + border: 1px solid #ddb; + padding: 7px; + background-color: #ffe; + width: 40%; + float: right; + clear: right; + overflow-x: auto; +} + +p.sidebar-title { + font-weight: bold; +} + +nav.contents, +aside.topic, +div.admonition, div.topic, blockquote { + clear: left; +} + +/* -- topics ---------------------------------------------------------------- */ + +nav.contents, +aside.topic, +div.topic { + border: 1px solid #ccc; + padding: 7px; + margin: 10px 0 10px 0; +} + +p.topic-title { + font-size: 1.1em; + font-weight: bold; + margin-top: 10px; +} + +/* -- admonitions ----------------------------------------------------------- */ + +div.admonition { + margin-top: 10px; + margin-bottom: 10px; + padding: 7px; +} + +div.admonition dt { + font-weight: bold; +} + +p.admonition-title { + margin: 0px 10px 5px 0px; + font-weight: bold; +} + +div.body p.centered { + text-align: center; + margin-top: 25px; +} + +/* -- content of sidebars/topics/admonitions -------------------------------- */ + +div.sidebar > :last-child, +aside.sidebar > :last-child, +nav.contents > :last-child, +aside.topic > :last-child, +div.topic > :last-child, +div.admonition > :last-child { + margin-bottom: 0; +} + +div.sidebar::after, +aside.sidebar::after, +nav.contents::after, +aside.topic::after, +div.topic::after, +div.admonition::after, +blockquote::after { + display: block; + content: ''; + clear: both; +} + +/* -- tables ---------------------------------------------------------------- */ + +table.docutils { + margin-top: 10px; + margin-bottom: 10px; + border: 0; + border-collapse: collapse; +} + +table.align-center { + margin-left: auto; + margin-right: auto; +} + +table.align-default { + margin-left: auto; + margin-right: auto; +} + +table caption span.caption-number { + font-style: italic; +} + +table caption span.caption-text { +} + +table.docutils td, table.docutils th { + padding: 1px 8px 1px 5px; + border-top: 0; + border-left: 0; + border-right: 0; + border-bottom: 1px solid #aaa; +} + +th { + text-align: left; + padding-right: 5px; +} + +table.citation { + border-left: solid 1px gray; + margin-left: 1px; +} + +table.citation td { + border-bottom: none; +} + +th > :first-child, +td > :first-child { + margin-top: 0px; +} + +th > :last-child, +td > :last-child { + margin-bottom: 0px; +} + +/* -- figures --------------------------------------------------------------- */ + +div.figure, figure { + margin: 0.5em; + padding: 0.5em; +} + +div.figure p.caption, figcaption { + padding: 0.3em; +} + +div.figure p.caption span.caption-number, +figcaption span.caption-number { + font-style: italic; +} + +div.figure p.caption span.caption-text, +figcaption span.caption-text { +} + +/* -- field list styles ----------------------------------------------------- */ + +table.field-list td, table.field-list th { + border: 0 !important; +} + +.field-list ul { + margin: 0; + padding-left: 1em; +} + +.field-list p { + margin: 0; +} + +.field-name { + -moz-hyphens: manual; + -ms-hyphens: manual; + -webkit-hyphens: manual; + hyphens: manual; +} + +/* -- hlist styles ---------------------------------------------------------- */ + +table.hlist { + margin: 1em 0; +} + +table.hlist td { + vertical-align: top; +} + +/* -- object description styles --------------------------------------------- */ + +.sig { + font-family: 'Consolas', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', monospace; +} + +.sig-name, code.descname { + background-color: transparent; + font-weight: bold; +} + +.sig-name { + font-size: 1.1em; +} + +code.descname { + font-size: 1.2em; +} + +.sig-prename, code.descclassname { + background-color: transparent; +} + +.optional { + font-size: 1.3em; +} + +.sig-paren { + font-size: larger; +} + +.sig-param.n { + font-style: italic; +} + +/* C++ specific styling */ + +.sig-inline.c-texpr, +.sig-inline.cpp-texpr { + font-family: unset; +} + +.sig.c .k, .sig.c .kt, +.sig.cpp .k, .sig.cpp .kt { + color: #0033B3; +} + +.sig.c .m, +.sig.cpp .m { + color: #1750EB; +} + +.sig.c .s, .sig.c .sc, +.sig.cpp .s, .sig.cpp .sc { + color: #067D17; +} + + +/* -- other body styles ----------------------------------------------------- */ + +ol.arabic { + list-style: decimal; +} + +ol.loweralpha { + list-style: lower-alpha; +} + +ol.upperalpha { + list-style: upper-alpha; +} + +ol.lowerroman { + list-style: lower-roman; +} + +ol.upperroman { + list-style: upper-roman; +} + +:not(li) > ol > li:first-child > :first-child, +:not(li) > ul > li:first-child > :first-child { + margin-top: 0px; +} + +:not(li) > ol > li:last-child > :last-child, +:not(li) > ul > li:last-child > :last-child { + margin-bottom: 0px; +} + +ol.simple ol p, +ol.simple ul p, +ul.simple ol p, +ul.simple ul p { + margin-top: 0; +} + +ol.simple > li:not(:first-child) > p, +ul.simple > li:not(:first-child) > p { + margin-top: 0; +} + +ol.simple p, +ul.simple p { + margin-bottom: 0; +} + +aside.footnote > span, +div.citation > span { + float: left; +} +aside.footnote > span:last-of-type, +div.citation > span:last-of-type { + padding-right: 0.5em; +} +aside.footnote > p { + margin-left: 2em; +} +div.citation > p { + margin-left: 4em; +} +aside.footnote > p:last-of-type, +div.citation > p:last-of-type { + margin-bottom: 0em; +} +aside.footnote > p:last-of-type:after, +div.citation > p:last-of-type:after { + content: ""; + clear: both; +} + +dl.field-list { + display: grid; + grid-template-columns: fit-content(30%) auto; +} + +dl.field-list > dt { + font-weight: bold; + word-break: break-word; + padding-left: 0.5em; + padding-right: 5px; +} + +dl.field-list > dd { + padding-left: 0.5em; + margin-top: 0em; + margin-left: 0em; + margin-bottom: 0em; +} + +dl { + margin-bottom: 15px; +} + +dd > :first-child { + margin-top: 0px; +} + +dd ul, dd table { + margin-bottom: 10px; +} + +dd { + margin-top: 3px; + margin-bottom: 10px; + margin-left: 30px; +} + +.sig dd { + margin-top: 0px; + margin-bottom: 0px; +} + +.sig dl { + margin-top: 0px; + margin-bottom: 0px; +} + +dl > dd:last-child, +dl > dd:last-child > :last-child { + margin-bottom: 0; +} + +dt:target, span.highlighted { + background-color: #fbe54e; +} + +rect.highlighted { + fill: #fbe54e; +} + +dl.glossary dt { + font-weight: bold; + font-size: 1.1em; +} + +.versionmodified { + font-style: italic; +} + +.system-message { + background-color: #fda; + padding: 5px; + border: 3px solid red; +} + +.footnote:target { + background-color: #ffa; +} + +.line-block { + display: block; + margin-top: 1em; + margin-bottom: 1em; +} + +.line-block .line-block { + margin-top: 0; + margin-bottom: 0; + margin-left: 1.5em; +} + +.guilabel, .menuselection { + font-family: sans-serif; +} + +.accelerator { + text-decoration: underline; +} + +.classifier { + font-style: oblique; +} + +.classifier:before { + font-style: normal; + margin: 0 0.5em; + content: ":"; + display: inline-block; +} + +abbr, acronym { + border-bottom: dotted 1px; + cursor: help; +} + +.translated { + background-color: rgba(207, 255, 207, 0.2) +} + +.untranslated { + background-color: rgba(255, 207, 207, 0.2) +} + +/* -- code displays --------------------------------------------------------- */ + +pre { + overflow: auto; + overflow-y: hidden; /* fixes display issues on Chrome browsers */ +} + +pre, div[class*="highlight-"] { + clear: both; +} + +span.pre { + -moz-hyphens: none; + -ms-hyphens: none; + -webkit-hyphens: none; + hyphens: none; + white-space: nowrap; +} + +div[class*="highlight-"] { + margin: 1em 0; +} + +td.linenos pre { + border: 0; + background-color: transparent; + color: #aaa; +} + +table.highlighttable { + display: block; +} + +table.highlighttable tbody { + display: block; +} + +table.highlighttable tr { + display: flex; +} + +table.highlighttable td { + margin: 0; + padding: 0; +} + +table.highlighttable td.linenos { + padding-right: 0.5em; +} + +table.highlighttable td.code { + flex: 1; + overflow: hidden; +} + +.highlight .hll { + display: block; +} + +div.highlight pre, +table.highlighttable pre { + margin: 0; +} + +div.code-block-caption + div { + margin-top: 0; +} + +div.code-block-caption { + margin-top: 1em; + padding: 2px 5px; + font-size: small; +} + +div.code-block-caption code { + background-color: transparent; +} + +table.highlighttable td.linenos, +span.linenos, +div.highlight span.gp { /* gp: Generic.Prompt */ + user-select: none; + -webkit-user-select: text; /* Safari fallback only */ + -webkit-user-select: none; /* Chrome/Safari */ + -moz-user-select: none; /* Firefox */ + -ms-user-select: none; /* IE10+ */ +} + +div.code-block-caption span.caption-number { + padding: 0.1em 0.3em; + font-style: italic; +} + +div.code-block-caption span.caption-text { +} + +div.literal-block-wrapper { + margin: 1em 0; +} + +code.xref, a code { + background-color: transparent; + font-weight: bold; +} + +h1 code, h2 code, h3 code, h4 code, h5 code, h6 code { + background-color: transparent; +} + +.viewcode-link { + float: right; +} + +.viewcode-back { + float: right; + font-family: sans-serif; +} + +div.viewcode-block:target { + margin: -1px -10px; + padding: 0 10px; +} + +/* -- math display ---------------------------------------------------------- */ + +img.math { + vertical-align: middle; +} + +div.body div.math p { + text-align: center; +} + +span.eqno { + float: right; +} + +span.eqno a.headerlink { + position: absolute; + z-index: 1; +} + +div.math:hover a.headerlink { + visibility: visible; +} + +/* -- printout stylesheet --------------------------------------------------- */ + +@media print { + div.document, + div.documentwrapper, + div.bodywrapper { + margin: 0 !important; + width: 100%; + } + + div.sphinxsidebar, + div.related, + div.footer, + #top-link { + display: none; + } +} \ No newline at end of file diff --git a/_static/css/badge_only.css b/_static/css/badge_only.css new file mode 100644 index 00000000..88ba55b9 --- /dev/null +++ b/_static/css/badge_only.css @@ -0,0 +1 @@ +.clearfix{*zoom:1}.clearfix:after,.clearfix:before{display:table;content:""}.clearfix:after{clear:both}@font-face{font-family:FontAwesome;font-style:normal;font-weight:400;src:url(fonts/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713?#iefix) format("embedded-opentype"),url(fonts/fontawesome-webfont.woff2?af7ae505a9eed503f8b8e6982036873e) format("woff2"),url(fonts/fontawesome-webfont.woff?fee66e712a8a08eef5805a46892932ad) format("woff"),url(fonts/fontawesome-webfont.ttf?b06871f281fee6b241d60582ae9369b9) format("truetype"),url(fonts/fontawesome-webfont.svg?912ec66d7572ff821749319396470bde#FontAwesome) format("svg")}.fa:before{font-family:FontAwesome;font-style:normal;font-weight:400;line-height:1}.fa:before,a .fa{text-decoration:inherit}.fa:before,a .fa,li .fa{display:inline-block}li .fa-large:before{width:1.875em}ul.fas{list-style-type:none;margin-left:2em;text-indent:-.8em}ul.fas li .fa{width:.8em}ul.fas li .fa-large:before{vertical-align:baseline}.fa-book:before,.icon-book:before{content:"\f02d"}.fa-caret-down:before,.icon-caret-down:before{content:"\f0d7"}.fa-caret-up:before,.icon-caret-up:before{content:"\f0d8"}.fa-caret-left:before,.icon-caret-left:before{content:"\f0d9"}.fa-caret-right:before,.icon-caret-right:before{content:"\f0da"}.rst-versions{position:fixed;bottom:0;left:0;width:300px;color:#fcfcfc;background:#1f1d1d;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;z-index:400}.rst-versions a{color:#2980b9;text-decoration:none}.rst-versions .rst-badge-small{display:none}.rst-versions .rst-current-version{padding:12px;background-color:#272525;display:block;text-align:right;font-size:90%;cursor:pointer;color:#27ae60}.rst-versions .rst-current-version:after{clear:both;content:"";display:block}.rst-versions .rst-current-version .fa{color:#fcfcfc}.rst-versions .rst-current-version .fa-book,.rst-versions .rst-current-version .icon-book{float:left}.rst-versions .rst-current-version.rst-out-of-date{background-color:#e74c3c;color:#fff}.rst-versions .rst-current-version.rst-active-old-version{background-color:#f1c40f;color:#000}.rst-versions.shift-up{height:auto;max-height:100%;overflow-y:scroll}.rst-versions.shift-up .rst-other-versions{display:block}.rst-versions .rst-other-versions{font-size:90%;padding:12px;color:grey;display:none}.rst-versions .rst-other-versions hr{display:block;height:1px;border:0;margin:20px 0;padding:0;border-top:1px solid #413d3d}.rst-versions .rst-other-versions dd{display:inline-block;margin:0}.rst-versions .rst-other-versions dd a{display:inline-block;padding:6px;color:#fcfcfc}.rst-versions .rst-other-versions .rtd-current-item{font-weight:700}.rst-versions.rst-badge{width:auto;bottom:20px;right:20px;left:auto;border:none;max-width:300px;max-height:90%}.rst-versions.rst-badge .fa-book,.rst-versions.rst-badge .icon-book{float:none;line-height:30px}.rst-versions.rst-badge.shift-up .rst-current-version{text-align:right}.rst-versions.rst-badge.shift-up .rst-current-version .fa-book,.rst-versions.rst-badge.shift-up .rst-current-version .icon-book{float:left}.rst-versions.rst-badge>.rst-current-version{width:auto;height:30px;line-height:30px;padding:0 6px;display:block;text-align:center}@media screen and (max-width:768px){.rst-versions{width:85%;display:none}.rst-versions.shift{display:block}}#flyout-search-form{padding:6px} \ No newline at end of file diff --git a/_static/css/fonts/Roboto-Slab-Bold.woff b/_static/css/fonts/Roboto-Slab-Bold.woff new file mode 100644 index 00000000..6cb60000 Binary files /dev/null and b/_static/css/fonts/Roboto-Slab-Bold.woff differ diff --git a/_static/css/fonts/Roboto-Slab-Bold.woff2 b/_static/css/fonts/Roboto-Slab-Bold.woff2 new file mode 100644 index 00000000..7059e231 Binary files /dev/null and b/_static/css/fonts/Roboto-Slab-Bold.woff2 differ diff --git a/_static/css/fonts/Roboto-Slab-Regular.woff b/_static/css/fonts/Roboto-Slab-Regular.woff new file mode 100644 index 00000000..f815f63f Binary files /dev/null and b/_static/css/fonts/Roboto-Slab-Regular.woff differ diff --git a/_static/css/fonts/Roboto-Slab-Regular.woff2 b/_static/css/fonts/Roboto-Slab-Regular.woff2 new file mode 100644 index 00000000..f2c76e5b Binary files /dev/null and b/_static/css/fonts/Roboto-Slab-Regular.woff2 differ diff --git a/_static/css/fonts/fontawesome-webfont.eot b/_static/css/fonts/fontawesome-webfont.eot new file mode 100644 index 00000000..e9f60ca9 Binary files /dev/null and b/_static/css/fonts/fontawesome-webfont.eot differ diff --git a/_static/css/fonts/fontawesome-webfont.svg b/_static/css/fonts/fontawesome-webfont.svg new file mode 100644 index 00000000..855c845e --- /dev/null +++ b/_static/css/fonts/fontawesome-webfont.svg @@ -0,0 +1,2671 @@ + + + + +Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016 + By ,,, +Copyright Dave Gandy 2016. All rights reserved. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_static/css/fonts/fontawesome-webfont.ttf b/_static/css/fonts/fontawesome-webfont.ttf new file mode 100644 index 00000000..35acda2f Binary files /dev/null and b/_static/css/fonts/fontawesome-webfont.ttf differ diff --git a/_static/css/fonts/fontawesome-webfont.woff b/_static/css/fonts/fontawesome-webfont.woff new file mode 100644 index 00000000..400014a4 Binary files /dev/null and b/_static/css/fonts/fontawesome-webfont.woff differ diff --git a/_static/css/fonts/fontawesome-webfont.woff2 b/_static/css/fonts/fontawesome-webfont.woff2 new file mode 100644 index 00000000..4d13fc60 Binary files /dev/null and b/_static/css/fonts/fontawesome-webfont.woff2 differ diff --git a/_static/css/fonts/lato-bold-italic.woff b/_static/css/fonts/lato-bold-italic.woff new file mode 100644 index 00000000..88ad05b9 Binary files /dev/null and b/_static/css/fonts/lato-bold-italic.woff differ diff --git a/_static/css/fonts/lato-bold-italic.woff2 b/_static/css/fonts/lato-bold-italic.woff2 new file mode 100644 index 00000000..c4e3d804 Binary files /dev/null and b/_static/css/fonts/lato-bold-italic.woff2 differ diff --git a/_static/css/fonts/lato-bold.woff b/_static/css/fonts/lato-bold.woff new file mode 100644 index 00000000..c6dff51f Binary files /dev/null and b/_static/css/fonts/lato-bold.woff differ diff --git a/_static/css/fonts/lato-bold.woff2 b/_static/css/fonts/lato-bold.woff2 new file mode 100644 index 00000000..bb195043 Binary files /dev/null and b/_static/css/fonts/lato-bold.woff2 differ diff --git a/_static/css/fonts/lato-normal-italic.woff b/_static/css/fonts/lato-normal-italic.woff new file mode 100644 index 00000000..76114bc0 Binary files /dev/null and b/_static/css/fonts/lato-normal-italic.woff differ diff --git a/_static/css/fonts/lato-normal-italic.woff2 b/_static/css/fonts/lato-normal-italic.woff2 new file mode 100644 index 00000000..3404f37e Binary files /dev/null and b/_static/css/fonts/lato-normal-italic.woff2 differ diff --git a/_static/css/fonts/lato-normal.woff b/_static/css/fonts/lato-normal.woff new file mode 100644 index 00000000..ae1307ff Binary files /dev/null and b/_static/css/fonts/lato-normal.woff differ diff --git a/_static/css/fonts/lato-normal.woff2 b/_static/css/fonts/lato-normal.woff2 new file mode 100644 index 00000000..3bf98433 Binary files /dev/null and b/_static/css/fonts/lato-normal.woff2 differ diff --git a/_static/css/theme.css b/_static/css/theme.css new file mode 100644 index 00000000..0f14f106 --- /dev/null +++ b/_static/css/theme.css @@ -0,0 +1,4 @@ +html{box-sizing:border-box}*,:after,:before{box-sizing:inherit}article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}[hidden],audio:not([controls]){display:none}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}blockquote{margin:0}dfn{font-style:italic}ins{background:#ff9;text-decoration:none}ins,mark{color:#000}mark{background:#ff0;font-style:italic;font-weight:700}.rst-content code,.rst-content tt,code,kbd,pre,samp{font-family:monospace,serif;_font-family:courier new,monospace;font-size:1em}pre{white-space:pre}q{quotes:none}q:after,q:before{content:"";content:none}small{font-size:85%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}dl,ol,ul{margin:0;padding:0;list-style:none;list-style-image:none}li{list-style:none}dd{margin:0}img{border:0;-ms-interpolation-mode:bicubic;vertical-align:middle;max-width:100%}svg:not(:root){overflow:hidden}figure,form{margin:0}label{cursor:pointer}button,input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}button,input{line-height:normal}button,input[type=button],input[type=reset],input[type=submit]{cursor:pointer;-webkit-appearance:button;*overflow:visible}button[disabled],input[disabled]{cursor:default}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}textarea{resize:vertical}table{border-collapse:collapse;border-spacing:0}td{vertical-align:top}.chromeframe{margin:.2em 0;background:#ccc;color:#000;padding:.2em 0}.ir{display:block;border:0;text-indent:-999em;overflow:hidden;background-color:transparent;background-repeat:no-repeat;text-align:left;direction:ltr;*line-height:0}.ir br{display:none}.hidden{display:none!important;visibility:hidden}.visuallyhidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.visuallyhidden.focusable:active,.visuallyhidden.focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}.invisible{visibility:hidden}.relative{position:relative}big,small{font-size:100%}@media print{body,html,section{background:none!important}*{box-shadow:none!important;text-shadow:none!important;filter:none!important;-ms-filter:none!important}a,a:visited{text-decoration:underline}.ir a:after,a[href^="#"]:after,a[href^="javascript:"]:after{content:""}blockquote,pre{page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}@page{margin:.5cm}.rst-content .toctree-wrapper>p.caption,h2,h3,p{orphans:3;widows:3}.rst-content .toctree-wrapper>p.caption,h2,h3{page-break-after:avoid}}.btn,.fa:before,.icon:before,.rst-content .admonition,.rst-content .admonition-title:before,.rst-content .admonition-todo,.rst-content .attention,.rst-content .caution,.rst-content .code-block-caption .headerlink:before,.rst-content .danger,.rst-content .eqno .headerlink:before,.rst-content .error,.rst-content .hint,.rst-content .important,.rst-content .note,.rst-content .seealso,.rst-content .tip,.rst-content .warning,.rst-content code.download span:first-child:before,.rst-content dl dt .headerlink:before,.rst-content h1 .headerlink:before,.rst-content h2 .headerlink:before,.rst-content h3 .headerlink:before,.rst-content h4 .headerlink:before,.rst-content h5 .headerlink:before,.rst-content h6 .headerlink:before,.rst-content p.caption .headerlink:before,.rst-content p .headerlink:before,.rst-content table>caption .headerlink:before,.rst-content tt.download span:first-child:before,.wy-alert,.wy-dropdown .caret:before,.wy-inline-validate.wy-inline-validate-danger .wy-input-context:before,.wy-inline-validate.wy-inline-validate-info .wy-input-context:before,.wy-inline-validate.wy-inline-validate-success .wy-input-context:before,.wy-inline-validate.wy-inline-validate-warning .wy-input-context:before,.wy-menu-vertical li.current>a button.toctree-expand:before,.wy-menu-vertical li.on a button.toctree-expand:before,.wy-menu-vertical li button.toctree-expand:before,input[type=color],input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week],select,textarea{-webkit-font-smoothing:antialiased}.clearfix{*zoom:1}.clearfix:after,.clearfix:before{display:table;content:""}.clearfix:after{clear:both}/*! + * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */@font-face{font-family:FontAwesome;src:url(fonts/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713);src:url(fonts/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713?#iefix&v=4.7.0) format("embedded-opentype"),url(fonts/fontawesome-webfont.woff2?af7ae505a9eed503f8b8e6982036873e) format("woff2"),url(fonts/fontawesome-webfont.woff?fee66e712a8a08eef5805a46892932ad) format("woff"),url(fonts/fontawesome-webfont.ttf?b06871f281fee6b241d60582ae9369b9) format("truetype"),url(fonts/fontawesome-webfont.svg?912ec66d7572ff821749319396470bde#fontawesomeregular) format("svg");font-weight:400;font-style:normal}.fa,.icon,.rst-content .admonition-title,.rst-content .code-block-caption .headerlink,.rst-content .eqno .headerlink,.rst-content code.download span:first-child,.rst-content dl dt .headerlink,.rst-content h1 .headerlink,.rst-content h2 .headerlink,.rst-content h3 .headerlink,.rst-content h4 .headerlink,.rst-content h5 .headerlink,.rst-content h6 .headerlink,.rst-content p.caption .headerlink,.rst-content p .headerlink,.rst-content table>caption .headerlink,.rst-content tt.download span:first-child,.wy-menu-vertical li.current>a button.toctree-expand,.wy-menu-vertical li.on a button.toctree-expand,.wy-menu-vertical li button.toctree-expand{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14286em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14286em;width:2.14286em;top:.14286em;text-align:center}.fa-li.fa-lg{left:-1.85714em}.fa-border{padding:.2em .25em .15em;border:.08em solid #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa-pull-left.icon,.fa.fa-pull-left,.rst-content .code-block-caption .fa-pull-left.headerlink,.rst-content .eqno .fa-pull-left.headerlink,.rst-content .fa-pull-left.admonition-title,.rst-content code.download span.fa-pull-left:first-child,.rst-content dl dt .fa-pull-left.headerlink,.rst-content h1 .fa-pull-left.headerlink,.rst-content h2 .fa-pull-left.headerlink,.rst-content h3 .fa-pull-left.headerlink,.rst-content h4 .fa-pull-left.headerlink,.rst-content h5 .fa-pull-left.headerlink,.rst-content h6 .fa-pull-left.headerlink,.rst-content p .fa-pull-left.headerlink,.rst-content table>caption .fa-pull-left.headerlink,.rst-content tt.download span.fa-pull-left:first-child,.wy-menu-vertical li.current>a button.fa-pull-left.toctree-expand,.wy-menu-vertical li.on a button.fa-pull-left.toctree-expand,.wy-menu-vertical li button.fa-pull-left.toctree-expand{margin-right:.3em}.fa-pull-right.icon,.fa.fa-pull-right,.rst-content .code-block-caption .fa-pull-right.headerlink,.rst-content .eqno .fa-pull-right.headerlink,.rst-content .fa-pull-right.admonition-title,.rst-content code.download span.fa-pull-right:first-child,.rst-content dl dt .fa-pull-right.headerlink,.rst-content h1 .fa-pull-right.headerlink,.rst-content h2 .fa-pull-right.headerlink,.rst-content h3 .fa-pull-right.headerlink,.rst-content h4 .fa-pull-right.headerlink,.rst-content h5 .fa-pull-right.headerlink,.rst-content h6 .fa-pull-right.headerlink,.rst-content p .fa-pull-right.headerlink,.rst-content table>caption .fa-pull-right.headerlink,.rst-content tt.download span.fa-pull-right:first-child,.wy-menu-vertical li.current>a button.fa-pull-right.toctree-expand,.wy-menu-vertical li.on a button.fa-pull-right.toctree-expand,.wy-menu-vertical li button.fa-pull-right.toctree-expand{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left,.pull-left.icon,.rst-content .code-block-caption .pull-left.headerlink,.rst-content .eqno .pull-left.headerlink,.rst-content .pull-left.admonition-title,.rst-content code.download span.pull-left:first-child,.rst-content dl dt .pull-left.headerlink,.rst-content h1 .pull-left.headerlink,.rst-content h2 .pull-left.headerlink,.rst-content h3 .pull-left.headerlink,.rst-content h4 .pull-left.headerlink,.rst-content h5 .pull-left.headerlink,.rst-content h6 .pull-left.headerlink,.rst-content p .pull-left.headerlink,.rst-content table>caption .pull-left.headerlink,.rst-content tt.download span.pull-left:first-child,.wy-menu-vertical li.current>a button.pull-left.toctree-expand,.wy-menu-vertical li.on a button.pull-left.toctree-expand,.wy-menu-vertical li button.pull-left.toctree-expand{margin-right:.3em}.fa.pull-right,.pull-right.icon,.rst-content .code-block-caption .pull-right.headerlink,.rst-content .eqno .pull-right.headerlink,.rst-content .pull-right.admonition-title,.rst-content code.download span.pull-right:first-child,.rst-content dl dt .pull-right.headerlink,.rst-content h1 .pull-right.headerlink,.rst-content h2 .pull-right.headerlink,.rst-content h3 .pull-right.headerlink,.rst-content h4 .pull-right.headerlink,.rst-content h5 .pull-right.headerlink,.rst-content h6 .pull-right.headerlink,.rst-content p .pull-right.headerlink,.rst-content table>caption .pull-right.headerlink,.rst-content tt.download span.pull-right:first-child,.wy-menu-vertical li.current>a button.pull-right.toctree-expand,.wy-menu-vertical li.on a button.pull-right.toctree-expand,.wy-menu-vertical li button.pull-right.toctree-expand{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s linear infinite;animation:fa-spin 2s linear infinite}.fa-pulse{-webkit-animation:fa-spin 1s steps(8) infinite;animation:fa-spin 1s steps(8) infinite}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scaleX(-1);-ms-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scaleY(-1);-ms-transform:scaleY(-1);transform:scaleY(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:""}.fa-music:before{content:""}.fa-search:before,.icon-search:before{content:""}.fa-envelope-o:before{content:""}.fa-heart:before{content:""}.fa-star:before{content:""}.fa-star-o:before{content:""}.fa-user:before{content:""}.fa-film:before{content:""}.fa-th-large:before{content:""}.fa-th:before{content:""}.fa-th-list:before{content:""}.fa-check:before{content:""}.fa-close:before,.fa-remove:before,.fa-times:before{content:""}.fa-search-plus:before{content:""}.fa-search-minus:before{content:""}.fa-power-off:before{content:""}.fa-signal:before{content:""}.fa-cog:before,.fa-gear:before{content:""}.fa-trash-o:before{content:""}.fa-home:before,.icon-home:before{content:""}.fa-file-o:before{content:""}.fa-clock-o:before{content:""}.fa-road:before{content:""}.fa-download:before,.rst-content code.download span:first-child:before,.rst-content tt.download span:first-child:before{content:""}.fa-arrow-circle-o-down:before{content:""}.fa-arrow-circle-o-up:before{content:""}.fa-inbox:before{content:""}.fa-play-circle-o:before{content:""}.fa-repeat:before,.fa-rotate-right:before{content:""}.fa-refresh:before{content:""}.fa-list-alt:before{content:""}.fa-lock:before{content:""}.fa-flag:before{content:""}.fa-headphones:before{content:""}.fa-volume-off:before{content:""}.fa-volume-down:before{content:""}.fa-volume-up:before{content:""}.fa-qrcode:before{content:""}.fa-barcode:before{content:""}.fa-tag:before{content:""}.fa-tags:before{content:""}.fa-book:before,.icon-book:before{content:""}.fa-bookmark:before{content:""}.fa-print:before{content:""}.fa-camera:before{content:""}.fa-font:before{content:""}.fa-bold:before{content:""}.fa-italic:before{content:""}.fa-text-height:before{content:""}.fa-text-width:before{content:""}.fa-align-left:before{content:""}.fa-align-center:before{content:""}.fa-align-right:before{content:""}.fa-align-justify:before{content:""}.fa-list:before{content:""}.fa-dedent:before,.fa-outdent:before{content:""}.fa-indent:before{content:""}.fa-video-camera:before{content:""}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:""}.fa-pencil:before{content:""}.fa-map-marker:before{content:""}.fa-adjust:before{content:""}.fa-tint:before{content:""}.fa-edit:before,.fa-pencil-square-o:before{content:""}.fa-share-square-o:before{content:""}.fa-check-square-o:before{content:""}.fa-arrows:before{content:""}.fa-step-backward:before{content:""}.fa-fast-backward:before{content:""}.fa-backward:before{content:""}.fa-play:before{content:""}.fa-pause:before{content:""}.fa-stop:before{content:""}.fa-forward:before{content:""}.fa-fast-forward:before{content:""}.fa-step-forward:before{content:""}.fa-eject:before{content:""}.fa-chevron-left:before{content:""}.fa-chevron-right:before{content:""}.fa-plus-circle:before{content:""}.fa-minus-circle:before{content:""}.fa-times-circle:before,.wy-inline-validate.wy-inline-validate-danger .wy-input-context:before{content:""}.fa-check-circle:before,.wy-inline-validate.wy-inline-validate-success .wy-input-context:before{content:""}.fa-question-circle:before{content:""}.fa-info-circle:before{content:""}.fa-crosshairs:before{content:""}.fa-times-circle-o:before{content:""}.fa-check-circle-o:before{content:""}.fa-ban:before{content:""}.fa-arrow-left:before{content:""}.fa-arrow-right:before{content:""}.fa-arrow-up:before{content:""}.fa-arrow-down:before{content:""}.fa-mail-forward:before,.fa-share:before{content:""}.fa-expand:before{content:""}.fa-compress:before{content:""}.fa-plus:before{content:""}.fa-minus:before{content:""}.fa-asterisk:before{content:""}.fa-exclamation-circle:before,.rst-content .admonition-title:before,.wy-inline-validate.wy-inline-validate-info .wy-input-context:before,.wy-inline-validate.wy-inline-validate-warning .wy-input-context:before{content:""}.fa-gift:before{content:""}.fa-leaf:before{content:""}.fa-fire:before,.icon-fire:before{content:""}.fa-eye:before{content:""}.fa-eye-slash:before{content:""}.fa-exclamation-triangle:before,.fa-warning:before{content:""}.fa-plane:before{content:""}.fa-calendar:before{content:""}.fa-random:before{content:""}.fa-comment:before{content:""}.fa-magnet:before{content:""}.fa-chevron-up:before{content:""}.fa-chevron-down:before{content:""}.fa-retweet:before{content:""}.fa-shopping-cart:before{content:""}.fa-folder:before{content:""}.fa-folder-open:before{content:""}.fa-arrows-v:before{content:""}.fa-arrows-h:before{content:""}.fa-bar-chart-o:before,.fa-bar-chart:before{content:""}.fa-twitter-square:before{content:""}.fa-facebook-square:before{content:""}.fa-camera-retro:before{content:""}.fa-key:before{content:""}.fa-cogs:before,.fa-gears:before{content:""}.fa-comments:before{content:""}.fa-thumbs-o-up:before{content:""}.fa-thumbs-o-down:before{content:""}.fa-star-half:before{content:""}.fa-heart-o:before{content:""}.fa-sign-out:before{content:""}.fa-linkedin-square:before{content:""}.fa-thumb-tack:before{content:""}.fa-external-link:before{content:""}.fa-sign-in:before{content:""}.fa-trophy:before{content:""}.fa-github-square:before{content:""}.fa-upload:before{content:""}.fa-lemon-o:before{content:""}.fa-phone:before{content:""}.fa-square-o:before{content:""}.fa-bookmark-o:before{content:""}.fa-phone-square:before{content:""}.fa-twitter:before{content:""}.fa-facebook-f:before,.fa-facebook:before{content:""}.fa-github:before,.icon-github:before{content:""}.fa-unlock:before{content:""}.fa-credit-card:before{content:""}.fa-feed:before,.fa-rss:before{content:""}.fa-hdd-o:before{content:""}.fa-bullhorn:before{content:""}.fa-bell:before{content:""}.fa-certificate:before{content:""}.fa-hand-o-right:before{content:""}.fa-hand-o-left:before{content:""}.fa-hand-o-up:before{content:""}.fa-hand-o-down:before{content:""}.fa-arrow-circle-left:before,.icon-circle-arrow-left:before{content:""}.fa-arrow-circle-right:before,.icon-circle-arrow-right:before{content:""}.fa-arrow-circle-up:before{content:""}.fa-arrow-circle-down:before{content:""}.fa-globe:before{content:""}.fa-wrench:before{content:""}.fa-tasks:before{content:""}.fa-filter:before{content:""}.fa-briefcase:before{content:""}.fa-arrows-alt:before{content:""}.fa-group:before,.fa-users:before{content:""}.fa-chain:before,.fa-link:before,.icon-link:before{content:""}.fa-cloud:before{content:""}.fa-flask:before{content:""}.fa-cut:before,.fa-scissors:before{content:""}.fa-copy:before,.fa-files-o:before{content:""}.fa-paperclip:before{content:""}.fa-floppy-o:before,.fa-save:before{content:""}.fa-square:before{content:""}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:""}.fa-list-ul:before{content:""}.fa-list-ol:before{content:""}.fa-strikethrough:before{content:""}.fa-underline:before{content:""}.fa-table:before{content:""}.fa-magic:before{content:""}.fa-truck:before{content:""}.fa-pinterest:before{content:""}.fa-pinterest-square:before{content:""}.fa-google-plus-square:before{content:""}.fa-google-plus:before{content:""}.fa-money:before{content:""}.fa-caret-down:before,.icon-caret-down:before,.wy-dropdown .caret:before{content:""}.fa-caret-up:before{content:""}.fa-caret-left:before{content:""}.fa-caret-right:before{content:""}.fa-columns:before{content:""}.fa-sort:before,.fa-unsorted:before{content:""}.fa-sort-desc:before,.fa-sort-down:before{content:""}.fa-sort-asc:before,.fa-sort-up:before{content:""}.fa-envelope:before{content:""}.fa-linkedin:before{content:""}.fa-rotate-left:before,.fa-undo:before{content:""}.fa-gavel:before,.fa-legal:before{content:""}.fa-dashboard:before,.fa-tachometer:before{content:""}.fa-comment-o:before{content:""}.fa-comments-o:before{content:""}.fa-bolt:before,.fa-flash:before{content:""}.fa-sitemap:before{content:""}.fa-umbrella:before{content:""}.fa-clipboard:before,.fa-paste:before{content:""}.fa-lightbulb-o:before{content:""}.fa-exchange:before{content:""}.fa-cloud-download:before{content:""}.fa-cloud-upload:before{content:""}.fa-user-md:before{content:""}.fa-stethoscope:before{content:""}.fa-suitcase:before{content:""}.fa-bell-o:before{content:""}.fa-coffee:before{content:""}.fa-cutlery:before{content:""}.fa-file-text-o:before{content:""}.fa-building-o:before{content:""}.fa-hospital-o:before{content:""}.fa-ambulance:before{content:""}.fa-medkit:before{content:""}.fa-fighter-jet:before{content:""}.fa-beer:before{content:""}.fa-h-square:before{content:""}.fa-plus-square:before{content:""}.fa-angle-double-left:before{content:""}.fa-angle-double-right:before{content:""}.fa-angle-double-up:before{content:""}.fa-angle-double-down:before{content:""}.fa-angle-left:before{content:""}.fa-angle-right:before{content:""}.fa-angle-up:before{content:""}.fa-angle-down:before{content:""}.fa-desktop:before{content:""}.fa-laptop:before{content:""}.fa-tablet:before{content:""}.fa-mobile-phone:before,.fa-mobile:before{content:""}.fa-circle-o:before{content:""}.fa-quote-left:before{content:""}.fa-quote-right:before{content:""}.fa-spinner:before{content:""}.fa-circle:before{content:""}.fa-mail-reply:before,.fa-reply:before{content:""}.fa-github-alt:before{content:""}.fa-folder-o:before{content:""}.fa-folder-open-o:before{content:""}.fa-smile-o:before{content:""}.fa-frown-o:before{content:""}.fa-meh-o:before{content:""}.fa-gamepad:before{content:""}.fa-keyboard-o:before{content:""}.fa-flag-o:before{content:""}.fa-flag-checkered:before{content:""}.fa-terminal:before{content:""}.fa-code:before{content:""}.fa-mail-reply-all:before,.fa-reply-all:before{content:""}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:""}.fa-location-arrow:before{content:""}.fa-crop:before{content:""}.fa-code-fork:before{content:""}.fa-chain-broken:before,.fa-unlink:before{content:""}.fa-question:before{content:""}.fa-info:before{content:""}.fa-exclamation:before{content:""}.fa-superscript:before{content:""}.fa-subscript:before{content:""}.fa-eraser:before{content:""}.fa-puzzle-piece:before{content:""}.fa-microphone:before{content:""}.fa-microphone-slash:before{content:""}.fa-shield:before{content:""}.fa-calendar-o:before{content:""}.fa-fire-extinguisher:before{content:""}.fa-rocket:before{content:""}.fa-maxcdn:before{content:""}.fa-chevron-circle-left:before{content:""}.fa-chevron-circle-right:before{content:""}.fa-chevron-circle-up:before{content:""}.fa-chevron-circle-down:before{content:""}.fa-html5:before{content:""}.fa-css3:before{content:""}.fa-anchor:before{content:""}.fa-unlock-alt:before{content:""}.fa-bullseye:before{content:""}.fa-ellipsis-h:before{content:""}.fa-ellipsis-v:before{content:""}.fa-rss-square:before{content:""}.fa-play-circle:before{content:""}.fa-ticket:before{content:""}.fa-minus-square:before{content:""}.fa-minus-square-o:before,.wy-menu-vertical li.current>a button.toctree-expand:before,.wy-menu-vertical li.on a button.toctree-expand:before{content:""}.fa-level-up:before{content:""}.fa-level-down:before{content:""}.fa-check-square:before{content:""}.fa-pencil-square:before{content:""}.fa-external-link-square:before{content:""}.fa-share-square:before{content:""}.fa-compass:before{content:""}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:""}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:""}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:""}.fa-eur:before,.fa-euro:before{content:""}.fa-gbp:before{content:""}.fa-dollar:before,.fa-usd:before{content:""}.fa-inr:before,.fa-rupee:before{content:""}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:""}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:""}.fa-krw:before,.fa-won:before{content:""}.fa-bitcoin:before,.fa-btc:before{content:""}.fa-file:before{content:""}.fa-file-text:before{content:""}.fa-sort-alpha-asc:before{content:""}.fa-sort-alpha-desc:before{content:""}.fa-sort-amount-asc:before{content:""}.fa-sort-amount-desc:before{content:""}.fa-sort-numeric-asc:before{content:""}.fa-sort-numeric-desc:before{content:""}.fa-thumbs-up:before{content:""}.fa-thumbs-down:before{content:""}.fa-youtube-square:before{content:""}.fa-youtube:before{content:""}.fa-xing:before{content:""}.fa-xing-square:before{content:""}.fa-youtube-play:before{content:""}.fa-dropbox:before{content:""}.fa-stack-overflow:before{content:""}.fa-instagram:before{content:""}.fa-flickr:before{content:""}.fa-adn:before{content:""}.fa-bitbucket:before,.icon-bitbucket:before{content:""}.fa-bitbucket-square:before{content:""}.fa-tumblr:before{content:""}.fa-tumblr-square:before{content:""}.fa-long-arrow-down:before{content:""}.fa-long-arrow-up:before{content:""}.fa-long-arrow-left:before{content:""}.fa-long-arrow-right:before{content:""}.fa-apple:before{content:""}.fa-windows:before{content:""}.fa-android:before{content:""}.fa-linux:before{content:""}.fa-dribbble:before{content:""}.fa-skype:before{content:""}.fa-foursquare:before{content:""}.fa-trello:before{content:""}.fa-female:before{content:""}.fa-male:before{content:""}.fa-gittip:before,.fa-gratipay:before{content:""}.fa-sun-o:before{content:""}.fa-moon-o:before{content:""}.fa-archive:before{content:""}.fa-bug:before{content:""}.fa-vk:before{content:""}.fa-weibo:before{content:""}.fa-renren:before{content:""}.fa-pagelines:before{content:""}.fa-stack-exchange:before{content:""}.fa-arrow-circle-o-right:before{content:""}.fa-arrow-circle-o-left:before{content:""}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:""}.fa-dot-circle-o:before{content:""}.fa-wheelchair:before{content:""}.fa-vimeo-square:before{content:""}.fa-try:before,.fa-turkish-lira:before{content:""}.fa-plus-square-o:before,.wy-menu-vertical li button.toctree-expand:before{content:""}.fa-space-shuttle:before{content:""}.fa-slack:before{content:""}.fa-envelope-square:before{content:""}.fa-wordpress:before{content:""}.fa-openid:before{content:""}.fa-bank:before,.fa-institution:before,.fa-university:before{content:""}.fa-graduation-cap:before,.fa-mortar-board:before{content:""}.fa-yahoo:before{content:""}.fa-google:before{content:""}.fa-reddit:before{content:""}.fa-reddit-square:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-stumbleupon:before{content:""}.fa-delicious:before{content:""}.fa-digg:before{content:""}.fa-pied-piper-pp:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-drupal:before{content:""}.fa-joomla:before{content:""}.fa-language:before{content:""}.fa-fax:before{content:""}.fa-building:before{content:""}.fa-child:before{content:""}.fa-paw:before{content:""}.fa-spoon:before{content:""}.fa-cube:before{content:""}.fa-cubes:before{content:""}.fa-behance:before{content:""}.fa-behance-square:before{content:""}.fa-steam:before{content:""}.fa-steam-square:before{content:""}.fa-recycle:before{content:""}.fa-automobile:before,.fa-car:before{content:""}.fa-cab:before,.fa-taxi:before{content:""}.fa-tree:before{content:""}.fa-spotify:before{content:""}.fa-deviantart:before{content:""}.fa-soundcloud:before{content:""}.fa-database:before{content:""}.fa-file-pdf-o:before{content:""}.fa-file-word-o:before{content:""}.fa-file-excel-o:before{content:""}.fa-file-powerpoint-o:before{content:""}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:""}.fa-file-archive-o:before,.fa-file-zip-o:before{content:""}.fa-file-audio-o:before,.fa-file-sound-o:before{content:""}.fa-file-movie-o:before,.fa-file-video-o:before{content:""}.fa-file-code-o:before{content:""}.fa-vine:before{content:""}.fa-codepen:before{content:""}.fa-jsfiddle:before{content:""}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:""}.fa-circle-o-notch:before{content:""}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:""}.fa-empire:before,.fa-ge:before{content:""}.fa-git-square:before{content:""}.fa-git:before{content:""}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:""}.fa-tencent-weibo:before{content:""}.fa-qq:before{content:""}.fa-wechat:before,.fa-weixin:before{content:""}.fa-paper-plane:before,.fa-send:before{content:""}.fa-paper-plane-o:before,.fa-send-o:before{content:""}.fa-history:before{content:""}.fa-circle-thin:before{content:""}.fa-header:before{content:""}.fa-paragraph:before{content:""}.fa-sliders:before{content:""}.fa-share-alt:before{content:""}.fa-share-alt-square:before{content:""}.fa-bomb:before{content:""}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:""}.fa-tty:before{content:""}.fa-binoculars:before{content:""}.fa-plug:before{content:""}.fa-slideshare:before{content:""}.fa-twitch:before{content:""}.fa-yelp:before{content:""}.fa-newspaper-o:before{content:""}.fa-wifi:before{content:""}.fa-calculator:before{content:""}.fa-paypal:before{content:""}.fa-google-wallet:before{content:""}.fa-cc-visa:before{content:""}.fa-cc-mastercard:before{content:""}.fa-cc-discover:before{content:""}.fa-cc-amex:before{content:""}.fa-cc-paypal:before{content:""}.fa-cc-stripe:before{content:""}.fa-bell-slash:before{content:""}.fa-bell-slash-o:before{content:""}.fa-trash:before{content:""}.fa-copyright:before{content:""}.fa-at:before{content:""}.fa-eyedropper:before{content:""}.fa-paint-brush:before{content:""}.fa-birthday-cake:before{content:""}.fa-area-chart:before{content:""}.fa-pie-chart:before{content:""}.fa-line-chart:before{content:""}.fa-lastfm:before{content:""}.fa-lastfm-square:before{content:""}.fa-toggle-off:before{content:""}.fa-toggle-on:before{content:""}.fa-bicycle:before{content:""}.fa-bus:before{content:""}.fa-ioxhost:before{content:""}.fa-angellist:before{content:""}.fa-cc:before{content:""}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:""}.fa-meanpath:before{content:""}.fa-buysellads:before{content:""}.fa-connectdevelop:before{content:""}.fa-dashcube:before{content:""}.fa-forumbee:before{content:""}.fa-leanpub:before{content:""}.fa-sellsy:before{content:""}.fa-shirtsinbulk:before{content:""}.fa-simplybuilt:before{content:""}.fa-skyatlas:before{content:""}.fa-cart-plus:before{content:""}.fa-cart-arrow-down:before{content:""}.fa-diamond:before{content:""}.fa-ship:before{content:""}.fa-user-secret:before{content:""}.fa-motorcycle:before{content:""}.fa-street-view:before{content:""}.fa-heartbeat:before{content:""}.fa-venus:before{content:""}.fa-mars:before{content:""}.fa-mercury:before{content:""}.fa-intersex:before,.fa-transgender:before{content:""}.fa-transgender-alt:before{content:""}.fa-venus-double:before{content:""}.fa-mars-double:before{content:""}.fa-venus-mars:before{content:""}.fa-mars-stroke:before{content:""}.fa-mars-stroke-v:before{content:""}.fa-mars-stroke-h:before{content:""}.fa-neuter:before{content:""}.fa-genderless:before{content:""}.fa-facebook-official:before{content:""}.fa-pinterest-p:before{content:""}.fa-whatsapp:before{content:""}.fa-server:before{content:""}.fa-user-plus:before{content:""}.fa-user-times:before{content:""}.fa-bed:before,.fa-hotel:before{content:""}.fa-viacoin:before{content:""}.fa-train:before{content:""}.fa-subway:before{content:""}.fa-medium:before{content:""}.fa-y-combinator:before,.fa-yc:before{content:""}.fa-optin-monster:before{content:""}.fa-opencart:before{content:""}.fa-expeditedssl:before{content:""}.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before{content:""}.fa-battery-3:before,.fa-battery-three-quarters:before{content:""}.fa-battery-2:before,.fa-battery-half:before{content:""}.fa-battery-1:before,.fa-battery-quarter:before{content:""}.fa-battery-0:before,.fa-battery-empty:before{content:""}.fa-mouse-pointer:before{content:""}.fa-i-cursor:before{content:""}.fa-object-group:before{content:""}.fa-object-ungroup:before{content:""}.fa-sticky-note:before{content:""}.fa-sticky-note-o:before{content:""}.fa-cc-jcb:before{content:""}.fa-cc-diners-club:before{content:""}.fa-clone:before{content:""}.fa-balance-scale:before{content:""}.fa-hourglass-o:before{content:""}.fa-hourglass-1:before,.fa-hourglass-start:before{content:""}.fa-hourglass-2:before,.fa-hourglass-half:before{content:""}.fa-hourglass-3:before,.fa-hourglass-end:before{content:""}.fa-hourglass:before{content:""}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:""}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:""}.fa-hand-scissors-o:before{content:""}.fa-hand-lizard-o:before{content:""}.fa-hand-spock-o:before{content:""}.fa-hand-pointer-o:before{content:""}.fa-hand-peace-o:before{content:""}.fa-trademark:before{content:""}.fa-registered:before{content:""}.fa-creative-commons:before{content:""}.fa-gg:before{content:""}.fa-gg-circle:before{content:""}.fa-tripadvisor:before{content:""}.fa-odnoklassniki:before{content:""}.fa-odnoklassniki-square:before{content:""}.fa-get-pocket:before{content:""}.fa-wikipedia-w:before{content:""}.fa-safari:before{content:""}.fa-chrome:before{content:""}.fa-firefox:before{content:""}.fa-opera:before{content:""}.fa-internet-explorer:before{content:""}.fa-television:before,.fa-tv:before{content:""}.fa-contao:before{content:""}.fa-500px:before{content:""}.fa-amazon:before{content:""}.fa-calendar-plus-o:before{content:""}.fa-calendar-minus-o:before{content:""}.fa-calendar-times-o:before{content:""}.fa-calendar-check-o:before{content:""}.fa-industry:before{content:""}.fa-map-pin:before{content:""}.fa-map-signs:before{content:""}.fa-map-o:before{content:""}.fa-map:before{content:""}.fa-commenting:before{content:""}.fa-commenting-o:before{content:""}.fa-houzz:before{content:""}.fa-vimeo:before{content:""}.fa-black-tie:before{content:""}.fa-fonticons:before{content:""}.fa-reddit-alien:before{content:""}.fa-edge:before{content:""}.fa-credit-card-alt:before{content:""}.fa-codiepie:before{content:""}.fa-modx:before{content:""}.fa-fort-awesome:before{content:""}.fa-usb:before{content:""}.fa-product-hunt:before{content:""}.fa-mixcloud:before{content:""}.fa-scribd:before{content:""}.fa-pause-circle:before{content:""}.fa-pause-circle-o:before{content:""}.fa-stop-circle:before{content:""}.fa-stop-circle-o:before{content:""}.fa-shopping-bag:before{content:""}.fa-shopping-basket:before{content:""}.fa-hashtag:before{content:""}.fa-bluetooth:before{content:""}.fa-bluetooth-b:before{content:""}.fa-percent:before{content:""}.fa-gitlab:before,.icon-gitlab:before{content:""}.fa-wpbeginner:before{content:""}.fa-wpforms:before{content:""}.fa-envira:before{content:""}.fa-universal-access:before{content:""}.fa-wheelchair-alt:before{content:""}.fa-question-circle-o:before{content:""}.fa-blind:before{content:""}.fa-audio-description:before{content:""}.fa-volume-control-phone:before{content:""}.fa-braille:before{content:""}.fa-assistive-listening-systems:before{content:""}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:""}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:""}.fa-glide:before{content:""}.fa-glide-g:before{content:""}.fa-sign-language:before,.fa-signing:before{content:""}.fa-low-vision:before{content:""}.fa-viadeo:before{content:""}.fa-viadeo-square:before{content:""}.fa-snapchat:before{content:""}.fa-snapchat-ghost:before{content:""}.fa-snapchat-square:before{content:""}.fa-pied-piper:before{content:""}.fa-first-order:before{content:""}.fa-yoast:before{content:""}.fa-themeisle:before{content:""}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:""}.fa-fa:before,.fa-font-awesome:before{content:""}.fa-handshake-o:before{content:""}.fa-envelope-open:before{content:""}.fa-envelope-open-o:before{content:""}.fa-linode:before{content:""}.fa-address-book:before{content:""}.fa-address-book-o:before{content:""}.fa-address-card:before,.fa-vcard:before{content:""}.fa-address-card-o:before,.fa-vcard-o:before{content:""}.fa-user-circle:before{content:""}.fa-user-circle-o:before{content:""}.fa-user-o:before{content:""}.fa-id-badge:before{content:""}.fa-drivers-license:before,.fa-id-card:before{content:""}.fa-drivers-license-o:before,.fa-id-card-o:before{content:""}.fa-quora:before{content:""}.fa-free-code-camp:before{content:""}.fa-telegram:before{content:""}.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before{content:""}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:""}.fa-thermometer-2:before,.fa-thermometer-half:before{content:""}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:""}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:""}.fa-shower:before{content:""}.fa-bath:before,.fa-bathtub:before,.fa-s15:before{content:""}.fa-podcast:before{content:""}.fa-window-maximize:before{content:""}.fa-window-minimize:before{content:""}.fa-window-restore:before{content:""}.fa-times-rectangle:before,.fa-window-close:before{content:""}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:""}.fa-bandcamp:before{content:""}.fa-grav:before{content:""}.fa-etsy:before{content:""}.fa-imdb:before{content:""}.fa-ravelry:before{content:""}.fa-eercast:before{content:""}.fa-microchip:before{content:""}.fa-snowflake-o:before{content:""}.fa-superpowers:before{content:""}.fa-wpexplorer:before{content:""}.fa-meetup:before{content:""}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.fa,.icon,.rst-content .admonition-title,.rst-content .code-block-caption .headerlink,.rst-content .eqno .headerlink,.rst-content code.download span:first-child,.rst-content dl dt .headerlink,.rst-content h1 .headerlink,.rst-content h2 .headerlink,.rst-content h3 .headerlink,.rst-content h4 .headerlink,.rst-content h5 .headerlink,.rst-content h6 .headerlink,.rst-content p.caption .headerlink,.rst-content p .headerlink,.rst-content table>caption .headerlink,.rst-content tt.download span:first-child,.wy-dropdown .caret,.wy-inline-validate.wy-inline-validate-danger .wy-input-context,.wy-inline-validate.wy-inline-validate-info .wy-input-context,.wy-inline-validate.wy-inline-validate-success .wy-input-context,.wy-inline-validate.wy-inline-validate-warning .wy-input-context,.wy-menu-vertical li.current>a button.toctree-expand,.wy-menu-vertical li.on a button.toctree-expand,.wy-menu-vertical li button.toctree-expand{font-family:inherit}.fa:before,.icon:before,.rst-content .admonition-title:before,.rst-content .code-block-caption .headerlink:before,.rst-content .eqno .headerlink:before,.rst-content code.download span:first-child:before,.rst-content dl dt .headerlink:before,.rst-content h1 .headerlink:before,.rst-content h2 .headerlink:before,.rst-content h3 .headerlink:before,.rst-content h4 .headerlink:before,.rst-content h5 .headerlink:before,.rst-content h6 .headerlink:before,.rst-content p.caption .headerlink:before,.rst-content p .headerlink:before,.rst-content table>caption .headerlink:before,.rst-content tt.download span:first-child:before,.wy-dropdown .caret:before,.wy-inline-validate.wy-inline-validate-danger .wy-input-context:before,.wy-inline-validate.wy-inline-validate-info .wy-input-context:before,.wy-inline-validate.wy-inline-validate-success .wy-input-context:before,.wy-inline-validate.wy-inline-validate-warning .wy-input-context:before,.wy-menu-vertical li.current>a button.toctree-expand:before,.wy-menu-vertical li.on a button.toctree-expand:before,.wy-menu-vertical li button.toctree-expand:before{font-family:FontAwesome;display:inline-block;font-style:normal;font-weight:400;line-height:1;text-decoration:inherit}.rst-content .code-block-caption a .headerlink,.rst-content .eqno a .headerlink,.rst-content a .admonition-title,.rst-content code.download a span:first-child,.rst-content dl dt a .headerlink,.rst-content h1 a .headerlink,.rst-content h2 a .headerlink,.rst-content h3 a .headerlink,.rst-content h4 a .headerlink,.rst-content h5 a .headerlink,.rst-content h6 a .headerlink,.rst-content p.caption a .headerlink,.rst-content p a .headerlink,.rst-content table>caption a .headerlink,.rst-content tt.download a span:first-child,.wy-menu-vertical li.current>a button.toctree-expand,.wy-menu-vertical li.on a button.toctree-expand,.wy-menu-vertical li a button.toctree-expand,a .fa,a .icon,a .rst-content .admonition-title,a .rst-content .code-block-caption .headerlink,a .rst-content .eqno .headerlink,a .rst-content code.download span:first-child,a .rst-content dl dt .headerlink,a .rst-content h1 .headerlink,a .rst-content h2 .headerlink,a .rst-content h3 .headerlink,a .rst-content h4 .headerlink,a .rst-content h5 .headerlink,a .rst-content h6 .headerlink,a .rst-content p.caption .headerlink,a .rst-content p .headerlink,a .rst-content table>caption .headerlink,a .rst-content tt.download span:first-child,a .wy-menu-vertical li button.toctree-expand{display:inline-block;text-decoration:inherit}.btn .fa,.btn .icon,.btn .rst-content .admonition-title,.btn .rst-content .code-block-caption .headerlink,.btn .rst-content .eqno .headerlink,.btn .rst-content code.download span:first-child,.btn .rst-content dl dt .headerlink,.btn .rst-content h1 .headerlink,.btn .rst-content h2 .headerlink,.btn .rst-content h3 .headerlink,.btn .rst-content h4 .headerlink,.btn .rst-content h5 .headerlink,.btn .rst-content h6 .headerlink,.btn .rst-content p .headerlink,.btn .rst-content table>caption .headerlink,.btn .rst-content tt.download span:first-child,.btn .wy-menu-vertical li.current>a button.toctree-expand,.btn .wy-menu-vertical li.on a button.toctree-expand,.btn .wy-menu-vertical li button.toctree-expand,.nav .fa,.nav .icon,.nav .rst-content .admonition-title,.nav .rst-content .code-block-caption .headerlink,.nav .rst-content .eqno .headerlink,.nav .rst-content code.download span:first-child,.nav .rst-content dl dt .headerlink,.nav .rst-content h1 .headerlink,.nav .rst-content h2 .headerlink,.nav .rst-content h3 .headerlink,.nav .rst-content h4 .headerlink,.nav .rst-content h5 .headerlink,.nav .rst-content h6 .headerlink,.nav .rst-content p .headerlink,.nav .rst-content table>caption .headerlink,.nav .rst-content tt.download span:first-child,.nav .wy-menu-vertical li.current>a button.toctree-expand,.nav .wy-menu-vertical li.on a button.toctree-expand,.nav .wy-menu-vertical li button.toctree-expand,.rst-content .btn .admonition-title,.rst-content .code-block-caption .btn .headerlink,.rst-content .code-block-caption .nav .headerlink,.rst-content .eqno .btn .headerlink,.rst-content .eqno .nav .headerlink,.rst-content .nav .admonition-title,.rst-content code.download .btn span:first-child,.rst-content code.download .nav span:first-child,.rst-content dl dt .btn .headerlink,.rst-content dl dt .nav .headerlink,.rst-content h1 .btn .headerlink,.rst-content h1 .nav .headerlink,.rst-content h2 .btn .headerlink,.rst-content h2 .nav .headerlink,.rst-content h3 .btn .headerlink,.rst-content h3 .nav .headerlink,.rst-content h4 .btn .headerlink,.rst-content h4 .nav .headerlink,.rst-content h5 .btn .headerlink,.rst-content h5 .nav .headerlink,.rst-content h6 .btn .headerlink,.rst-content h6 .nav .headerlink,.rst-content p .btn .headerlink,.rst-content p .nav .headerlink,.rst-content table>caption .btn .headerlink,.rst-content table>caption .nav .headerlink,.rst-content tt.download .btn span:first-child,.rst-content tt.download .nav span:first-child,.wy-menu-vertical li .btn button.toctree-expand,.wy-menu-vertical li.current>a .btn button.toctree-expand,.wy-menu-vertical li.current>a .nav button.toctree-expand,.wy-menu-vertical li .nav button.toctree-expand,.wy-menu-vertical li.on a .btn button.toctree-expand,.wy-menu-vertical li.on a .nav button.toctree-expand{display:inline}.btn .fa-large.icon,.btn .fa.fa-large,.btn .rst-content .code-block-caption .fa-large.headerlink,.btn .rst-content .eqno .fa-large.headerlink,.btn .rst-content .fa-large.admonition-title,.btn .rst-content code.download span.fa-large:first-child,.btn .rst-content dl dt .fa-large.headerlink,.btn .rst-content h1 .fa-large.headerlink,.btn .rst-content h2 .fa-large.headerlink,.btn .rst-content h3 .fa-large.headerlink,.btn .rst-content h4 .fa-large.headerlink,.btn .rst-content h5 .fa-large.headerlink,.btn .rst-content h6 .fa-large.headerlink,.btn .rst-content p .fa-large.headerlink,.btn .rst-content table>caption .fa-large.headerlink,.btn .rst-content tt.download span.fa-large:first-child,.btn .wy-menu-vertical li button.fa-large.toctree-expand,.nav .fa-large.icon,.nav .fa.fa-large,.nav .rst-content .code-block-caption .fa-large.headerlink,.nav .rst-content .eqno .fa-large.headerlink,.nav .rst-content .fa-large.admonition-title,.nav .rst-content code.download span.fa-large:first-child,.nav .rst-content dl dt .fa-large.headerlink,.nav .rst-content h1 .fa-large.headerlink,.nav .rst-content h2 .fa-large.headerlink,.nav .rst-content h3 .fa-large.headerlink,.nav .rst-content h4 .fa-large.headerlink,.nav .rst-content h5 .fa-large.headerlink,.nav .rst-content h6 .fa-large.headerlink,.nav .rst-content p .fa-large.headerlink,.nav .rst-content table>caption .fa-large.headerlink,.nav .rst-content tt.download span.fa-large:first-child,.nav .wy-menu-vertical li button.fa-large.toctree-expand,.rst-content .btn .fa-large.admonition-title,.rst-content .code-block-caption .btn .fa-large.headerlink,.rst-content .code-block-caption .nav .fa-large.headerlink,.rst-content .eqno .btn .fa-large.headerlink,.rst-content .eqno .nav .fa-large.headerlink,.rst-content .nav .fa-large.admonition-title,.rst-content code.download .btn span.fa-large:first-child,.rst-content code.download .nav span.fa-large:first-child,.rst-content dl dt .btn .fa-large.headerlink,.rst-content dl dt .nav .fa-large.headerlink,.rst-content h1 .btn .fa-large.headerlink,.rst-content h1 .nav .fa-large.headerlink,.rst-content h2 .btn .fa-large.headerlink,.rst-content h2 .nav .fa-large.headerlink,.rst-content h3 .btn .fa-large.headerlink,.rst-content h3 .nav .fa-large.headerlink,.rst-content h4 .btn .fa-large.headerlink,.rst-content h4 .nav .fa-large.headerlink,.rst-content h5 .btn .fa-large.headerlink,.rst-content h5 .nav .fa-large.headerlink,.rst-content h6 .btn .fa-large.headerlink,.rst-content h6 .nav .fa-large.headerlink,.rst-content p .btn .fa-large.headerlink,.rst-content p .nav .fa-large.headerlink,.rst-content table>caption .btn .fa-large.headerlink,.rst-content table>caption .nav .fa-large.headerlink,.rst-content tt.download .btn span.fa-large:first-child,.rst-content tt.download .nav span.fa-large:first-child,.wy-menu-vertical li .btn button.fa-large.toctree-expand,.wy-menu-vertical li .nav button.fa-large.toctree-expand{line-height:.9em}.btn .fa-spin.icon,.btn .fa.fa-spin,.btn .rst-content .code-block-caption .fa-spin.headerlink,.btn .rst-content .eqno .fa-spin.headerlink,.btn .rst-content .fa-spin.admonition-title,.btn .rst-content code.download span.fa-spin:first-child,.btn .rst-content dl dt .fa-spin.headerlink,.btn .rst-content h1 .fa-spin.headerlink,.btn .rst-content h2 .fa-spin.headerlink,.btn .rst-content h3 .fa-spin.headerlink,.btn .rst-content h4 .fa-spin.headerlink,.btn .rst-content h5 .fa-spin.headerlink,.btn .rst-content h6 .fa-spin.headerlink,.btn .rst-content p .fa-spin.headerlink,.btn .rst-content table>caption .fa-spin.headerlink,.btn .rst-content tt.download span.fa-spin:first-child,.btn .wy-menu-vertical li button.fa-spin.toctree-expand,.nav .fa-spin.icon,.nav .fa.fa-spin,.nav .rst-content .code-block-caption .fa-spin.headerlink,.nav .rst-content .eqno .fa-spin.headerlink,.nav .rst-content .fa-spin.admonition-title,.nav .rst-content code.download span.fa-spin:first-child,.nav .rst-content dl dt .fa-spin.headerlink,.nav .rst-content h1 .fa-spin.headerlink,.nav .rst-content h2 .fa-spin.headerlink,.nav .rst-content h3 .fa-spin.headerlink,.nav .rst-content h4 .fa-spin.headerlink,.nav .rst-content h5 .fa-spin.headerlink,.nav .rst-content h6 .fa-spin.headerlink,.nav .rst-content p .fa-spin.headerlink,.nav .rst-content table>caption .fa-spin.headerlink,.nav .rst-content tt.download span.fa-spin:first-child,.nav .wy-menu-vertical li button.fa-spin.toctree-expand,.rst-content .btn .fa-spin.admonition-title,.rst-content .code-block-caption .btn .fa-spin.headerlink,.rst-content .code-block-caption .nav .fa-spin.headerlink,.rst-content .eqno .btn .fa-spin.headerlink,.rst-content .eqno .nav .fa-spin.headerlink,.rst-content .nav .fa-spin.admonition-title,.rst-content code.download .btn span.fa-spin:first-child,.rst-content code.download .nav span.fa-spin:first-child,.rst-content dl dt .btn .fa-spin.headerlink,.rst-content dl dt .nav .fa-spin.headerlink,.rst-content h1 .btn .fa-spin.headerlink,.rst-content h1 .nav .fa-spin.headerlink,.rst-content h2 .btn .fa-spin.headerlink,.rst-content h2 .nav .fa-spin.headerlink,.rst-content h3 .btn .fa-spin.headerlink,.rst-content h3 .nav .fa-spin.headerlink,.rst-content h4 .btn .fa-spin.headerlink,.rst-content h4 .nav .fa-spin.headerlink,.rst-content h5 .btn .fa-spin.headerlink,.rst-content h5 .nav .fa-spin.headerlink,.rst-content h6 .btn .fa-spin.headerlink,.rst-content h6 .nav .fa-spin.headerlink,.rst-content p .btn .fa-spin.headerlink,.rst-content p .nav .fa-spin.headerlink,.rst-content table>caption .btn .fa-spin.headerlink,.rst-content table>caption .nav .fa-spin.headerlink,.rst-content tt.download .btn span.fa-spin:first-child,.rst-content tt.download .nav span.fa-spin:first-child,.wy-menu-vertical li .btn button.fa-spin.toctree-expand,.wy-menu-vertical li .nav button.fa-spin.toctree-expand{display:inline-block}.btn.fa:before,.btn.icon:before,.rst-content .btn.admonition-title:before,.rst-content .code-block-caption .btn.headerlink:before,.rst-content .eqno .btn.headerlink:before,.rst-content code.download span.btn:first-child:before,.rst-content dl dt .btn.headerlink:before,.rst-content h1 .btn.headerlink:before,.rst-content h2 .btn.headerlink:before,.rst-content h3 .btn.headerlink:before,.rst-content h4 .btn.headerlink:before,.rst-content h5 .btn.headerlink:before,.rst-content h6 .btn.headerlink:before,.rst-content p .btn.headerlink:before,.rst-content table>caption .btn.headerlink:before,.rst-content tt.download span.btn:first-child:before,.wy-menu-vertical li button.btn.toctree-expand:before{opacity:.5;-webkit-transition:opacity .05s ease-in;-moz-transition:opacity .05s ease-in;transition:opacity .05s ease-in}.btn.fa:hover:before,.btn.icon:hover:before,.rst-content .btn.admonition-title:hover:before,.rst-content .code-block-caption .btn.headerlink:hover:before,.rst-content .eqno .btn.headerlink:hover:before,.rst-content code.download span.btn:first-child:hover:before,.rst-content dl dt .btn.headerlink:hover:before,.rst-content h1 .btn.headerlink:hover:before,.rst-content h2 .btn.headerlink:hover:before,.rst-content h3 .btn.headerlink:hover:before,.rst-content h4 .btn.headerlink:hover:before,.rst-content h5 .btn.headerlink:hover:before,.rst-content h6 .btn.headerlink:hover:before,.rst-content p .btn.headerlink:hover:before,.rst-content table>caption .btn.headerlink:hover:before,.rst-content tt.download span.btn:first-child:hover:before,.wy-menu-vertical li button.btn.toctree-expand:hover:before{opacity:1}.btn-mini .fa:before,.btn-mini .icon:before,.btn-mini .rst-content .admonition-title:before,.btn-mini .rst-content .code-block-caption .headerlink:before,.btn-mini .rst-content .eqno .headerlink:before,.btn-mini .rst-content code.download span:first-child:before,.btn-mini .rst-content dl dt .headerlink:before,.btn-mini .rst-content h1 .headerlink:before,.btn-mini .rst-content h2 .headerlink:before,.btn-mini .rst-content h3 .headerlink:before,.btn-mini .rst-content h4 .headerlink:before,.btn-mini .rst-content h5 .headerlink:before,.btn-mini .rst-content h6 .headerlink:before,.btn-mini .rst-content p .headerlink:before,.btn-mini .rst-content table>caption .headerlink:before,.btn-mini .rst-content tt.download span:first-child:before,.btn-mini .wy-menu-vertical li button.toctree-expand:before,.rst-content .btn-mini .admonition-title:before,.rst-content .code-block-caption .btn-mini .headerlink:before,.rst-content .eqno .btn-mini .headerlink:before,.rst-content code.download .btn-mini span:first-child:before,.rst-content dl dt .btn-mini .headerlink:before,.rst-content h1 .btn-mini .headerlink:before,.rst-content h2 .btn-mini .headerlink:before,.rst-content h3 .btn-mini .headerlink:before,.rst-content h4 .btn-mini .headerlink:before,.rst-content h5 .btn-mini .headerlink:before,.rst-content h6 .btn-mini .headerlink:before,.rst-content p .btn-mini .headerlink:before,.rst-content table>caption .btn-mini .headerlink:before,.rst-content tt.download .btn-mini span:first-child:before,.wy-menu-vertical li .btn-mini button.toctree-expand:before{font-size:14px;vertical-align:-15%}.rst-content .admonition,.rst-content .admonition-todo,.rst-content .attention,.rst-content .caution,.rst-content .danger,.rst-content .error,.rst-content .hint,.rst-content .important,.rst-content .note,.rst-content .seealso,.rst-content .tip,.rst-content .warning,.wy-alert{padding:12px;line-height:24px;margin-bottom:24px;background:#e7f2fa}.rst-content .admonition-title,.wy-alert-title{font-weight:700;display:block;color:#fff;background:#6ab0de;padding:6px 12px;margin:-12px -12px 12px}.rst-content .danger,.rst-content .error,.rst-content .wy-alert-danger.admonition,.rst-content .wy-alert-danger.admonition-todo,.rst-content .wy-alert-danger.attention,.rst-content .wy-alert-danger.caution,.rst-content .wy-alert-danger.hint,.rst-content .wy-alert-danger.important,.rst-content .wy-alert-danger.note,.rst-content .wy-alert-danger.seealso,.rst-content .wy-alert-danger.tip,.rst-content .wy-alert-danger.warning,.wy-alert.wy-alert-danger{background:#fdf3f2}.rst-content .danger .admonition-title,.rst-content .danger .wy-alert-title,.rst-content .error .admonition-title,.rst-content .error .wy-alert-title,.rst-content .wy-alert-danger.admonition-todo .admonition-title,.rst-content .wy-alert-danger.admonition-todo .wy-alert-title,.rst-content .wy-alert-danger.admonition .admonition-title,.rst-content .wy-alert-danger.admonition .wy-alert-title,.rst-content .wy-alert-danger.attention .admonition-title,.rst-content .wy-alert-danger.attention .wy-alert-title,.rst-content .wy-alert-danger.caution .admonition-title,.rst-content .wy-alert-danger.caution .wy-alert-title,.rst-content .wy-alert-danger.hint .admonition-title,.rst-content .wy-alert-danger.hint .wy-alert-title,.rst-content .wy-alert-danger.important .admonition-title,.rst-content .wy-alert-danger.important .wy-alert-title,.rst-content .wy-alert-danger.note .admonition-title,.rst-content .wy-alert-danger.note .wy-alert-title,.rst-content .wy-alert-danger.seealso .admonition-title,.rst-content .wy-alert-danger.seealso .wy-alert-title,.rst-content .wy-alert-danger.tip .admonition-title,.rst-content .wy-alert-danger.tip .wy-alert-title,.rst-content .wy-alert-danger.warning .admonition-title,.rst-content .wy-alert-danger.warning .wy-alert-title,.rst-content .wy-alert.wy-alert-danger .admonition-title,.wy-alert.wy-alert-danger .rst-content .admonition-title,.wy-alert.wy-alert-danger .wy-alert-title{background:#f29f97}.rst-content .admonition-todo,.rst-content .attention,.rst-content .caution,.rst-content .warning,.rst-content .wy-alert-warning.admonition,.rst-content .wy-alert-warning.danger,.rst-content .wy-alert-warning.error,.rst-content .wy-alert-warning.hint,.rst-content .wy-alert-warning.important,.rst-content .wy-alert-warning.note,.rst-content .wy-alert-warning.seealso,.rst-content .wy-alert-warning.tip,.wy-alert.wy-alert-warning{background:#ffedcc}.rst-content .admonition-todo .admonition-title,.rst-content .admonition-todo .wy-alert-title,.rst-content .attention .admonition-title,.rst-content .attention .wy-alert-title,.rst-content .caution .admonition-title,.rst-content .caution .wy-alert-title,.rst-content .warning .admonition-title,.rst-content .warning .wy-alert-title,.rst-content .wy-alert-warning.admonition .admonition-title,.rst-content .wy-alert-warning.admonition .wy-alert-title,.rst-content .wy-alert-warning.danger .admonition-title,.rst-content .wy-alert-warning.danger .wy-alert-title,.rst-content .wy-alert-warning.error .admonition-title,.rst-content .wy-alert-warning.error .wy-alert-title,.rst-content .wy-alert-warning.hint .admonition-title,.rst-content .wy-alert-warning.hint .wy-alert-title,.rst-content .wy-alert-warning.important .admonition-title,.rst-content .wy-alert-warning.important .wy-alert-title,.rst-content .wy-alert-warning.note .admonition-title,.rst-content .wy-alert-warning.note .wy-alert-title,.rst-content .wy-alert-warning.seealso .admonition-title,.rst-content .wy-alert-warning.seealso .wy-alert-title,.rst-content .wy-alert-warning.tip .admonition-title,.rst-content .wy-alert-warning.tip .wy-alert-title,.rst-content .wy-alert.wy-alert-warning .admonition-title,.wy-alert.wy-alert-warning .rst-content .admonition-title,.wy-alert.wy-alert-warning .wy-alert-title{background:#f0b37e}.rst-content .note,.rst-content .seealso,.rst-content .wy-alert-info.admonition,.rst-content .wy-alert-info.admonition-todo,.rst-content .wy-alert-info.attention,.rst-content .wy-alert-info.caution,.rst-content .wy-alert-info.danger,.rst-content .wy-alert-info.error,.rst-content .wy-alert-info.hint,.rst-content .wy-alert-info.important,.rst-content .wy-alert-info.tip,.rst-content .wy-alert-info.warning,.wy-alert.wy-alert-info{background:#e7f2fa}.rst-content .note .admonition-title,.rst-content .note .wy-alert-title,.rst-content .seealso .admonition-title,.rst-content .seealso .wy-alert-title,.rst-content .wy-alert-info.admonition-todo .admonition-title,.rst-content .wy-alert-info.admonition-todo .wy-alert-title,.rst-content .wy-alert-info.admonition .admonition-title,.rst-content .wy-alert-info.admonition .wy-alert-title,.rst-content .wy-alert-info.attention .admonition-title,.rst-content .wy-alert-info.attention .wy-alert-title,.rst-content .wy-alert-info.caution .admonition-title,.rst-content .wy-alert-info.caution .wy-alert-title,.rst-content .wy-alert-info.danger .admonition-title,.rst-content .wy-alert-info.danger .wy-alert-title,.rst-content .wy-alert-info.error .admonition-title,.rst-content .wy-alert-info.error .wy-alert-title,.rst-content .wy-alert-info.hint .admonition-title,.rst-content .wy-alert-info.hint .wy-alert-title,.rst-content .wy-alert-info.important .admonition-title,.rst-content .wy-alert-info.important .wy-alert-title,.rst-content .wy-alert-info.tip .admonition-title,.rst-content .wy-alert-info.tip .wy-alert-title,.rst-content .wy-alert-info.warning .admonition-title,.rst-content .wy-alert-info.warning .wy-alert-title,.rst-content .wy-alert.wy-alert-info .admonition-title,.wy-alert.wy-alert-info .rst-content .admonition-title,.wy-alert.wy-alert-info .wy-alert-title{background:#6ab0de}.rst-content .hint,.rst-content .important,.rst-content .tip,.rst-content .wy-alert-success.admonition,.rst-content .wy-alert-success.admonition-todo,.rst-content .wy-alert-success.attention,.rst-content .wy-alert-success.caution,.rst-content .wy-alert-success.danger,.rst-content .wy-alert-success.error,.rst-content .wy-alert-success.note,.rst-content .wy-alert-success.seealso,.rst-content .wy-alert-success.warning,.wy-alert.wy-alert-success{background:#dbfaf4}.rst-content .hint .admonition-title,.rst-content .hint .wy-alert-title,.rst-content .important .admonition-title,.rst-content .important .wy-alert-title,.rst-content .tip .admonition-title,.rst-content .tip .wy-alert-title,.rst-content .wy-alert-success.admonition-todo .admonition-title,.rst-content .wy-alert-success.admonition-todo .wy-alert-title,.rst-content .wy-alert-success.admonition .admonition-title,.rst-content .wy-alert-success.admonition .wy-alert-title,.rst-content .wy-alert-success.attention .admonition-title,.rst-content .wy-alert-success.attention .wy-alert-title,.rst-content .wy-alert-success.caution .admonition-title,.rst-content .wy-alert-success.caution .wy-alert-title,.rst-content .wy-alert-success.danger .admonition-title,.rst-content .wy-alert-success.danger .wy-alert-title,.rst-content .wy-alert-success.error .admonition-title,.rst-content .wy-alert-success.error .wy-alert-title,.rst-content .wy-alert-success.note .admonition-title,.rst-content .wy-alert-success.note .wy-alert-title,.rst-content .wy-alert-success.seealso .admonition-title,.rst-content .wy-alert-success.seealso .wy-alert-title,.rst-content .wy-alert-success.warning .admonition-title,.rst-content .wy-alert-success.warning .wy-alert-title,.rst-content .wy-alert.wy-alert-success .admonition-title,.wy-alert.wy-alert-success .rst-content .admonition-title,.wy-alert.wy-alert-success .wy-alert-title{background:#1abc9c}.rst-content .wy-alert-neutral.admonition,.rst-content .wy-alert-neutral.admonition-todo,.rst-content .wy-alert-neutral.attention,.rst-content .wy-alert-neutral.caution,.rst-content .wy-alert-neutral.danger,.rst-content .wy-alert-neutral.error,.rst-content .wy-alert-neutral.hint,.rst-content .wy-alert-neutral.important,.rst-content .wy-alert-neutral.note,.rst-content .wy-alert-neutral.seealso,.rst-content .wy-alert-neutral.tip,.rst-content .wy-alert-neutral.warning,.wy-alert.wy-alert-neutral{background:#f3f6f6}.rst-content .wy-alert-neutral.admonition-todo .admonition-title,.rst-content .wy-alert-neutral.admonition-todo .wy-alert-title,.rst-content .wy-alert-neutral.admonition .admonition-title,.rst-content .wy-alert-neutral.admonition .wy-alert-title,.rst-content .wy-alert-neutral.attention .admonition-title,.rst-content .wy-alert-neutral.attention .wy-alert-title,.rst-content .wy-alert-neutral.caution .admonition-title,.rst-content .wy-alert-neutral.caution .wy-alert-title,.rst-content .wy-alert-neutral.danger .admonition-title,.rst-content .wy-alert-neutral.danger .wy-alert-title,.rst-content .wy-alert-neutral.error .admonition-title,.rst-content .wy-alert-neutral.error .wy-alert-title,.rst-content .wy-alert-neutral.hint .admonition-title,.rst-content .wy-alert-neutral.hint .wy-alert-title,.rst-content .wy-alert-neutral.important .admonition-title,.rst-content .wy-alert-neutral.important .wy-alert-title,.rst-content .wy-alert-neutral.note .admonition-title,.rst-content .wy-alert-neutral.note .wy-alert-title,.rst-content .wy-alert-neutral.seealso .admonition-title,.rst-content .wy-alert-neutral.seealso .wy-alert-title,.rst-content .wy-alert-neutral.tip .admonition-title,.rst-content .wy-alert-neutral.tip .wy-alert-title,.rst-content .wy-alert-neutral.warning .admonition-title,.rst-content .wy-alert-neutral.warning .wy-alert-title,.rst-content .wy-alert.wy-alert-neutral .admonition-title,.wy-alert.wy-alert-neutral .rst-content .admonition-title,.wy-alert.wy-alert-neutral .wy-alert-title{color:#404040;background:#e1e4e5}.rst-content .wy-alert-neutral.admonition-todo a,.rst-content .wy-alert-neutral.admonition a,.rst-content .wy-alert-neutral.attention a,.rst-content .wy-alert-neutral.caution a,.rst-content .wy-alert-neutral.danger a,.rst-content .wy-alert-neutral.error a,.rst-content .wy-alert-neutral.hint a,.rst-content .wy-alert-neutral.important a,.rst-content .wy-alert-neutral.note a,.rst-content .wy-alert-neutral.seealso a,.rst-content .wy-alert-neutral.tip a,.rst-content .wy-alert-neutral.warning a,.wy-alert.wy-alert-neutral a{color:#2980b9}.rst-content .admonition-todo p:last-child,.rst-content .admonition p:last-child,.rst-content .attention p:last-child,.rst-content .caution p:last-child,.rst-content .danger p:last-child,.rst-content .error p:last-child,.rst-content .hint p:last-child,.rst-content .important p:last-child,.rst-content .note p:last-child,.rst-content .seealso p:last-child,.rst-content .tip p:last-child,.rst-content .warning p:last-child,.wy-alert p:last-child{margin-bottom:0}.wy-tray-container{position:fixed;bottom:0;left:0;z-index:600}.wy-tray-container li{display:block;width:300px;background:transparent;color:#fff;text-align:center;box-shadow:0 5px 5px 0 rgba(0,0,0,.1);padding:0 24px;min-width:20%;opacity:0;height:0;line-height:56px;overflow:hidden;-webkit-transition:all .3s ease-in;-moz-transition:all .3s ease-in;transition:all .3s ease-in}.wy-tray-container li.wy-tray-item-success{background:#27ae60}.wy-tray-container li.wy-tray-item-info{background:#2980b9}.wy-tray-container li.wy-tray-item-warning{background:#e67e22}.wy-tray-container li.wy-tray-item-danger{background:#e74c3c}.wy-tray-container li.on{opacity:1;height:56px}@media screen and (max-width:768px){.wy-tray-container{bottom:auto;top:0;width:100%}.wy-tray-container li{width:100%}}button{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle;cursor:pointer;line-height:normal;-webkit-appearance:button;*overflow:visible}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}button[disabled]{cursor:default}.btn{display:inline-block;border-radius:2px;line-height:normal;white-space:nowrap;text-align:center;cursor:pointer;font-size:100%;padding:6px 12px 8px;color:#fff;border:1px solid rgba(0,0,0,.1);background-color:#27ae60;text-decoration:none;font-weight:400;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;box-shadow:inset 0 1px 2px -1px hsla(0,0%,100%,.5),inset 0 -2px 0 0 rgba(0,0,0,.1);outline-none:false;vertical-align:middle;*display:inline;zoom:1;-webkit-user-drag:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-transition:all .1s linear;-moz-transition:all .1s linear;transition:all .1s linear}.btn-hover{background:#2e8ece;color:#fff}.btn:hover{background:#2cc36b;color:#fff}.btn:focus{background:#2cc36b;outline:0}.btn:active{box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.05),inset 0 2px 0 0 rgba(0,0,0,.1);padding:8px 12px 6px}.btn:visited{color:#fff}.btn-disabled,.btn-disabled:active,.btn-disabled:focus,.btn-disabled:hover,.btn:disabled{background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);filter:alpha(opacity=40);opacity:.4;cursor:not-allowed;box-shadow:none}.btn::-moz-focus-inner{padding:0;border:0}.btn-small{font-size:80%}.btn-info{background-color:#2980b9!important}.btn-info:hover{background-color:#2e8ece!important}.btn-neutral{background-color:#f3f6f6!important;color:#404040!important}.btn-neutral:hover{background-color:#e5ebeb!important;color:#404040}.btn-neutral:visited{color:#404040!important}.btn-success{background-color:#27ae60!important}.btn-success:hover{background-color:#295!important}.btn-danger{background-color:#e74c3c!important}.btn-danger:hover{background-color:#ea6153!important}.btn-warning{background-color:#e67e22!important}.btn-warning:hover{background-color:#e98b39!important}.btn-invert{background-color:#222}.btn-invert:hover{background-color:#2f2f2f!important}.btn-link{background-color:transparent!important;color:#2980b9;box-shadow:none;border-color:transparent!important}.btn-link:active,.btn-link:hover{background-color:transparent!important;color:#409ad5!important;box-shadow:none}.btn-link:visited{color:#9b59b6}.wy-btn-group .btn,.wy-control .btn{vertical-align:middle}.wy-btn-group{margin-bottom:24px;*zoom:1}.wy-btn-group:after,.wy-btn-group:before{display:table;content:""}.wy-btn-group:after{clear:both}.wy-dropdown{position:relative;display:inline-block}.wy-dropdown-active .wy-dropdown-menu{display:block}.wy-dropdown-menu{position:absolute;left:0;display:none;float:left;top:100%;min-width:100%;background:#fcfcfc;z-index:100;border:1px solid #cfd7dd;box-shadow:0 2px 2px 0 rgba(0,0,0,.1);padding:12px}.wy-dropdown-menu>dd>a{display:block;clear:both;color:#404040;white-space:nowrap;font-size:90%;padding:0 12px;cursor:pointer}.wy-dropdown-menu>dd>a:hover{background:#2980b9;color:#fff}.wy-dropdown-menu>dd.divider{border-top:1px solid #cfd7dd;margin:6px 0}.wy-dropdown-menu>dd.search{padding-bottom:12px}.wy-dropdown-menu>dd.search input[type=search]{width:100%}.wy-dropdown-menu>dd.call-to-action{background:#e3e3e3;text-transform:uppercase;font-weight:500;font-size:80%}.wy-dropdown-menu>dd.call-to-action:hover{background:#e3e3e3}.wy-dropdown-menu>dd.call-to-action .btn{color:#fff}.wy-dropdown.wy-dropdown-up .wy-dropdown-menu{bottom:100%;top:auto;left:auto;right:0}.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu{background:#fcfcfc;margin-top:2px}.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu a{padding:6px 12px}.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu a:hover{background:#2980b9;color:#fff}.wy-dropdown.wy-dropdown-left .wy-dropdown-menu{right:0;left:auto;text-align:right}.wy-dropdown-arrow:before{content:" ";border-bottom:5px solid #f5f5f5;border-left:5px solid transparent;border-right:5px solid transparent;position:absolute;display:block;top:-4px;left:50%;margin-left:-3px}.wy-dropdown-arrow.wy-dropdown-arrow-left:before{left:11px}.wy-form-stacked select{display:block}.wy-form-aligned .wy-help-inline,.wy-form-aligned input,.wy-form-aligned label,.wy-form-aligned select,.wy-form-aligned textarea{display:inline-block;*display:inline;*zoom:1;vertical-align:middle}.wy-form-aligned .wy-control-group>label{display:inline-block;vertical-align:middle;width:10em;margin:6px 12px 0 0;float:left}.wy-form-aligned .wy-control{float:left}.wy-form-aligned .wy-control label{display:block}.wy-form-aligned .wy-control select{margin-top:6px}fieldset{margin:0}fieldset,legend{border:0;padding:0}legend{width:100%;white-space:normal;margin-bottom:24px;font-size:150%;*margin-left:-7px}label,legend{display:block}label{margin:0 0 .3125em;color:#333;font-size:90%}input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}.wy-control-group{margin-bottom:24px;max-width:1200px;margin-left:auto;margin-right:auto;*zoom:1}.wy-control-group:after,.wy-control-group:before{display:table;content:""}.wy-control-group:after{clear:both}.wy-control-group.wy-control-group-required>label:after{content:" *";color:#e74c3c}.wy-control-group .wy-form-full,.wy-control-group .wy-form-halves,.wy-control-group .wy-form-thirds{padding-bottom:12px}.wy-control-group .wy-form-full input[type=color],.wy-control-group .wy-form-full input[type=date],.wy-control-group .wy-form-full input[type=datetime-local],.wy-control-group .wy-form-full input[type=datetime],.wy-control-group .wy-form-full input[type=email],.wy-control-group .wy-form-full input[type=month],.wy-control-group .wy-form-full input[type=number],.wy-control-group .wy-form-full input[type=password],.wy-control-group .wy-form-full input[type=search],.wy-control-group .wy-form-full input[type=tel],.wy-control-group .wy-form-full input[type=text],.wy-control-group .wy-form-full input[type=time],.wy-control-group .wy-form-full input[type=url],.wy-control-group .wy-form-full input[type=week],.wy-control-group .wy-form-full select,.wy-control-group .wy-form-halves input[type=color],.wy-control-group .wy-form-halves input[type=date],.wy-control-group .wy-form-halves input[type=datetime-local],.wy-control-group .wy-form-halves input[type=datetime],.wy-control-group .wy-form-halves input[type=email],.wy-control-group .wy-form-halves input[type=month],.wy-control-group .wy-form-halves input[type=number],.wy-control-group .wy-form-halves input[type=password],.wy-control-group .wy-form-halves input[type=search],.wy-control-group .wy-form-halves input[type=tel],.wy-control-group .wy-form-halves input[type=text],.wy-control-group .wy-form-halves input[type=time],.wy-control-group .wy-form-halves input[type=url],.wy-control-group .wy-form-halves input[type=week],.wy-control-group .wy-form-halves select,.wy-control-group .wy-form-thirds input[type=color],.wy-control-group .wy-form-thirds input[type=date],.wy-control-group .wy-form-thirds input[type=datetime-local],.wy-control-group .wy-form-thirds input[type=datetime],.wy-control-group .wy-form-thirds input[type=email],.wy-control-group .wy-form-thirds input[type=month],.wy-control-group .wy-form-thirds input[type=number],.wy-control-group .wy-form-thirds input[type=password],.wy-control-group .wy-form-thirds input[type=search],.wy-control-group .wy-form-thirds input[type=tel],.wy-control-group .wy-form-thirds input[type=text],.wy-control-group .wy-form-thirds input[type=time],.wy-control-group .wy-form-thirds input[type=url],.wy-control-group .wy-form-thirds input[type=week],.wy-control-group .wy-form-thirds select{width:100%}.wy-control-group .wy-form-full{float:left;display:block;width:100%;margin-right:0}.wy-control-group .wy-form-full:last-child{margin-right:0}.wy-control-group .wy-form-halves{float:left;display:block;margin-right:2.35765%;width:48.82117%}.wy-control-group .wy-form-halves:last-child,.wy-control-group .wy-form-halves:nth-of-type(2n){margin-right:0}.wy-control-group .wy-form-halves:nth-of-type(odd){clear:left}.wy-control-group .wy-form-thirds{float:left;display:block;margin-right:2.35765%;width:31.76157%}.wy-control-group .wy-form-thirds:last-child,.wy-control-group .wy-form-thirds:nth-of-type(3n){margin-right:0}.wy-control-group .wy-form-thirds:nth-of-type(3n+1){clear:left}.wy-control-group.wy-control-group-no-input .wy-control,.wy-control-no-input{margin:6px 0 0;font-size:90%}.wy-control-no-input{display:inline-block}.wy-control-group.fluid-input input[type=color],.wy-control-group.fluid-input input[type=date],.wy-control-group.fluid-input input[type=datetime-local],.wy-control-group.fluid-input input[type=datetime],.wy-control-group.fluid-input input[type=email],.wy-control-group.fluid-input input[type=month],.wy-control-group.fluid-input input[type=number],.wy-control-group.fluid-input input[type=password],.wy-control-group.fluid-input input[type=search],.wy-control-group.fluid-input input[type=tel],.wy-control-group.fluid-input input[type=text],.wy-control-group.fluid-input input[type=time],.wy-control-group.fluid-input input[type=url],.wy-control-group.fluid-input input[type=week]{width:100%}.wy-form-message-inline{padding-left:.3em;color:#666;font-size:90%}.wy-form-message{display:block;color:#999;font-size:70%;margin-top:.3125em;font-style:italic}.wy-form-message p{font-size:inherit;font-style:italic;margin-bottom:6px}.wy-form-message p:last-child{margin-bottom:0}input{line-height:normal}input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;*overflow:visible}input[type=color],input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week]{-webkit-appearance:none;padding:6px;display:inline-block;border:1px solid #ccc;font-size:80%;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;box-shadow:inset 0 1px 3px #ddd;border-radius:0;-webkit-transition:border .3s linear;-moz-transition:border .3s linear;transition:border .3s linear}input[type=datetime-local]{padding:.34375em .625em}input[disabled]{cursor:default}input[type=checkbox],input[type=radio]{padding:0;margin-right:.3125em;*height:13px;*width:13px}input[type=checkbox],input[type=radio],input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus{outline:0;outline:thin dotted\9;border-color:#333}input.no-focus:focus{border-color:#ccc!important}input[type=checkbox]:focus,input[type=file]:focus,input[type=radio]:focus{outline:thin dotted #333;outline:1px auto #129fea}input[type=color][disabled],input[type=date][disabled],input[type=datetime-local][disabled],input[type=datetime][disabled],input[type=email][disabled],input[type=month][disabled],input[type=number][disabled],input[type=password][disabled],input[type=search][disabled],input[type=tel][disabled],input[type=text][disabled],input[type=time][disabled],input[type=url][disabled],input[type=week][disabled]{cursor:not-allowed;background-color:#fafafa}input:focus:invalid,select:focus:invalid,textarea:focus:invalid{color:#e74c3c;border:1px solid #e74c3c}input:focus:invalid:focus,select:focus:invalid:focus,textarea:focus:invalid:focus{border-color:#e74c3c}input[type=checkbox]:focus:invalid:focus,input[type=file]:focus:invalid:focus,input[type=radio]:focus:invalid:focus{outline-color:#e74c3c}input.wy-input-large{padding:12px;font-size:100%}textarea{overflow:auto;vertical-align:top;width:100%;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif}select,textarea{padding:.5em .625em;display:inline-block;border:1px solid #ccc;font-size:80%;box-shadow:inset 0 1px 3px #ddd;-webkit-transition:border .3s linear;-moz-transition:border .3s linear;transition:border .3s linear}select{border:1px solid #ccc;background-color:#fff}select[multiple]{height:auto}select:focus,textarea:focus{outline:0}input[readonly],select[disabled],select[readonly],textarea[disabled],textarea[readonly]{cursor:not-allowed;background-color:#fafafa}input[type=checkbox][disabled],input[type=radio][disabled]{cursor:not-allowed}.wy-checkbox,.wy-radio{margin:6px 0;color:#404040;display:block}.wy-checkbox input,.wy-radio input{vertical-align:baseline}.wy-form-message-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle}.wy-input-prefix,.wy-input-suffix{white-space:nowrap;padding:6px}.wy-input-prefix .wy-input-context,.wy-input-suffix .wy-input-context{line-height:27px;padding:0 8px;display:inline-block;font-size:80%;background-color:#f3f6f6;border:1px solid #ccc;color:#999}.wy-input-suffix .wy-input-context{border-left:0}.wy-input-prefix .wy-input-context{border-right:0}.wy-switch{position:relative;display:block;height:24px;margin-top:12px;cursor:pointer}.wy-switch:before{left:0;top:0;width:36px;height:12px;background:#ccc}.wy-switch:after,.wy-switch:before{position:absolute;content:"";display:block;border-radius:4px;-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.wy-switch:after{width:18px;height:18px;background:#999;left:-3px;top:-3px}.wy-switch span{position:absolute;left:48px;display:block;font-size:12px;color:#ccc;line-height:1}.wy-switch.active:before{background:#1e8449}.wy-switch.active:after{left:24px;background:#27ae60}.wy-switch.disabled{cursor:not-allowed;opacity:.8}.wy-control-group.wy-control-group-error .wy-form-message,.wy-control-group.wy-control-group-error>label{color:#e74c3c}.wy-control-group.wy-control-group-error input[type=color],.wy-control-group.wy-control-group-error input[type=date],.wy-control-group.wy-control-group-error input[type=datetime-local],.wy-control-group.wy-control-group-error input[type=datetime],.wy-control-group.wy-control-group-error input[type=email],.wy-control-group.wy-control-group-error input[type=month],.wy-control-group.wy-control-group-error input[type=number],.wy-control-group.wy-control-group-error input[type=password],.wy-control-group.wy-control-group-error input[type=search],.wy-control-group.wy-control-group-error input[type=tel],.wy-control-group.wy-control-group-error input[type=text],.wy-control-group.wy-control-group-error input[type=time],.wy-control-group.wy-control-group-error input[type=url],.wy-control-group.wy-control-group-error input[type=week],.wy-control-group.wy-control-group-error textarea{border:1px solid #e74c3c}.wy-inline-validate{white-space:nowrap}.wy-inline-validate .wy-input-context{padding:.5em .625em;display:inline-block;font-size:80%}.wy-inline-validate.wy-inline-validate-success .wy-input-context{color:#27ae60}.wy-inline-validate.wy-inline-validate-danger .wy-input-context{color:#e74c3c}.wy-inline-validate.wy-inline-validate-warning .wy-input-context{color:#e67e22}.wy-inline-validate.wy-inline-validate-info .wy-input-context{color:#2980b9}.rotate-90{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.rotate-180{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.rotate-270{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}.mirror{-webkit-transform:scaleX(-1);-moz-transform:scaleX(-1);-ms-transform:scaleX(-1);-o-transform:scaleX(-1);transform:scaleX(-1)}.mirror.rotate-90{-webkit-transform:scaleX(-1) rotate(90deg);-moz-transform:scaleX(-1) rotate(90deg);-ms-transform:scaleX(-1) rotate(90deg);-o-transform:scaleX(-1) rotate(90deg);transform:scaleX(-1) rotate(90deg)}.mirror.rotate-180{-webkit-transform:scaleX(-1) rotate(180deg);-moz-transform:scaleX(-1) rotate(180deg);-ms-transform:scaleX(-1) rotate(180deg);-o-transform:scaleX(-1) rotate(180deg);transform:scaleX(-1) rotate(180deg)}.mirror.rotate-270{-webkit-transform:scaleX(-1) rotate(270deg);-moz-transform:scaleX(-1) rotate(270deg);-ms-transform:scaleX(-1) rotate(270deg);-o-transform:scaleX(-1) rotate(270deg);transform:scaleX(-1) rotate(270deg)}@media only screen and (max-width:480px){.wy-form button[type=submit]{margin:.7em 0 0}.wy-form input[type=color],.wy-form input[type=date],.wy-form input[type=datetime-local],.wy-form input[type=datetime],.wy-form input[type=email],.wy-form input[type=month],.wy-form input[type=number],.wy-form input[type=password],.wy-form input[type=search],.wy-form input[type=tel],.wy-form input[type=text],.wy-form input[type=time],.wy-form input[type=url],.wy-form input[type=week],.wy-form label{margin-bottom:.3em;display:block}.wy-form input[type=color],.wy-form input[type=date],.wy-form input[type=datetime-local],.wy-form input[type=datetime],.wy-form input[type=email],.wy-form input[type=month],.wy-form input[type=number],.wy-form input[type=password],.wy-form input[type=search],.wy-form input[type=tel],.wy-form input[type=time],.wy-form input[type=url],.wy-form input[type=week]{margin-bottom:0}.wy-form-aligned .wy-control-group label{margin-bottom:.3em;text-align:left;display:block;width:100%}.wy-form-aligned .wy-control{margin:1.5em 0 0}.wy-form-message,.wy-form-message-inline,.wy-form .wy-help-inline{display:block;font-size:80%;padding:6px 0}}@media screen and (max-width:768px){.tablet-hide{display:none}}@media screen and (max-width:480px){.mobile-hide{display:none}}.float-left{float:left}.float-right{float:right}.full-width{width:100%}.rst-content table.docutils,.rst-content table.field-list,.wy-table{border-collapse:collapse;border-spacing:0;empty-cells:show;margin-bottom:24px}.rst-content table.docutils caption,.rst-content table.field-list caption,.wy-table caption{color:#000;font:italic 85%/1 arial,sans-serif;padding:1em 0;text-align:center}.rst-content table.docutils td,.rst-content table.docutils th,.rst-content table.field-list td,.rst-content table.field-list th,.wy-table td,.wy-table th{font-size:90%;margin:0;overflow:visible;padding:8px 16px}.rst-content table.docutils td:first-child,.rst-content table.docutils th:first-child,.rst-content table.field-list td:first-child,.rst-content table.field-list th:first-child,.wy-table td:first-child,.wy-table th:first-child{border-left-width:0}.rst-content table.docutils thead,.rst-content table.field-list thead,.wy-table thead{color:#000;text-align:left;vertical-align:bottom;white-space:nowrap}.rst-content table.docutils thead th,.rst-content table.field-list thead th,.wy-table thead th{font-weight:700;border-bottom:2px solid #e1e4e5}.rst-content table.docutils td,.rst-content table.field-list td,.wy-table td{background-color:transparent;vertical-align:middle}.rst-content table.docutils td p,.rst-content table.field-list td p,.wy-table td p{line-height:18px}.rst-content table.docutils td p:last-child,.rst-content table.field-list td p:last-child,.wy-table td p:last-child{margin-bottom:0}.rst-content table.docutils .wy-table-cell-min,.rst-content table.field-list .wy-table-cell-min,.wy-table .wy-table-cell-min{width:1%;padding-right:0}.rst-content table.docutils .wy-table-cell-min input[type=checkbox],.rst-content table.field-list .wy-table-cell-min input[type=checkbox],.wy-table .wy-table-cell-min input[type=checkbox]{margin:0}.wy-table-secondary{color:grey;font-size:90%}.wy-table-tertiary{color:grey;font-size:80%}.rst-content table.docutils:not(.field-list) tr:nth-child(2n-1) td,.wy-table-backed,.wy-table-odd td,.wy-table-striped tr:nth-child(2n-1) td{background-color:#f3f6f6}.rst-content table.docutils,.wy-table-bordered-all{border:1px solid #e1e4e5}.rst-content table.docutils td,.wy-table-bordered-all td{border-bottom:1px solid #e1e4e5;border-left:1px solid #e1e4e5}.rst-content table.docutils tbody>tr:last-child td,.wy-table-bordered-all tbody>tr:last-child td{border-bottom-width:0}.wy-table-bordered{border:1px solid #e1e4e5}.wy-table-bordered-rows td{border-bottom:1px solid #e1e4e5}.wy-table-bordered-rows tbody>tr:last-child td{border-bottom-width:0}.wy-table-horizontal td,.wy-table-horizontal th{border-width:0 0 1px;border-bottom:1px solid #e1e4e5}.wy-table-horizontal tbody>tr:last-child td{border-bottom-width:0}.wy-table-responsive{margin-bottom:24px;max-width:100%;overflow:auto}.wy-table-responsive table{margin-bottom:0!important}.wy-table-responsive table td,.wy-table-responsive table th{white-space:nowrap}a{color:#2980b9;text-decoration:none;cursor:pointer}a:hover{color:#3091d1}a:visited{color:#9b59b6}html{height:100%}body,html{overflow-x:hidden}body{font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;font-weight:400;color:#404040;min-height:100%;background:#edf0f2}.wy-text-left{text-align:left}.wy-text-center{text-align:center}.wy-text-right{text-align:right}.wy-text-large{font-size:120%}.wy-text-normal{font-size:100%}.wy-text-small,small{font-size:80%}.wy-text-strike{text-decoration:line-through}.wy-text-warning{color:#e67e22!important}a.wy-text-warning:hover{color:#eb9950!important}.wy-text-info{color:#2980b9!important}a.wy-text-info:hover{color:#409ad5!important}.wy-text-success{color:#27ae60!important}a.wy-text-success:hover{color:#36d278!important}.wy-text-danger{color:#e74c3c!important}a.wy-text-danger:hover{color:#ed7669!important}.wy-text-neutral{color:#404040!important}a.wy-text-neutral:hover{color:#595959!important}.rst-content .toctree-wrapper>p.caption,h1,h2,h3,h4,h5,h6,legend{margin-top:0;font-weight:700;font-family:Roboto Slab,ff-tisa-web-pro,Georgia,Arial,sans-serif}p{line-height:24px;font-size:16px;margin:0 0 24px}h1{font-size:175%}.rst-content .toctree-wrapper>p.caption,h2{font-size:150%}h3{font-size:125%}h4{font-size:115%}h5{font-size:110%}h6{font-size:100%}hr{display:block;height:1px;border:0;border-top:1px solid #e1e4e5;margin:24px 0;padding:0}.rst-content code,.rst-content tt,code{white-space:nowrap;max-width:100%;background:#fff;border:1px solid #e1e4e5;font-size:75%;padding:0 5px;font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;color:#e74c3c;overflow-x:auto}.rst-content tt.code-large,code.code-large{font-size:90%}.rst-content .section ul,.rst-content .toctree-wrapper ul,.rst-content section ul,.wy-plain-list-disc,article ul{list-style:disc;line-height:24px;margin-bottom:24px}.rst-content .section ul li,.rst-content .toctree-wrapper ul li,.rst-content section ul li,.wy-plain-list-disc li,article ul li{list-style:disc;margin-left:24px}.rst-content .section ul li p:last-child,.rst-content .section ul li ul,.rst-content .toctree-wrapper ul li p:last-child,.rst-content .toctree-wrapper ul li ul,.rst-content section ul li p:last-child,.rst-content section ul li ul,.wy-plain-list-disc li p:last-child,.wy-plain-list-disc li ul,article ul li p:last-child,article ul li ul{margin-bottom:0}.rst-content .section ul li li,.rst-content .toctree-wrapper ul li li,.rst-content section ul li li,.wy-plain-list-disc li li,article ul li li{list-style:circle}.rst-content .section ul li li li,.rst-content .toctree-wrapper ul li li li,.rst-content section ul li li li,.wy-plain-list-disc li li li,article ul li li li{list-style:square}.rst-content .section ul li ol li,.rst-content .toctree-wrapper ul li ol li,.rst-content section ul li ol li,.wy-plain-list-disc li ol li,article ul li ol li{list-style:decimal}.rst-content .section ol,.rst-content .section ol.arabic,.rst-content .toctree-wrapper ol,.rst-content .toctree-wrapper ol.arabic,.rst-content section ol,.rst-content section ol.arabic,.wy-plain-list-decimal,article ol{list-style:decimal;line-height:24px;margin-bottom:24px}.rst-content .section ol.arabic li,.rst-content .section ol li,.rst-content .toctree-wrapper ol.arabic li,.rst-content .toctree-wrapper ol li,.rst-content section ol.arabic li,.rst-content section ol li,.wy-plain-list-decimal li,article ol li{list-style:decimal;margin-left:24px}.rst-content .section ol.arabic li ul,.rst-content .section ol li p:last-child,.rst-content .section ol li ul,.rst-content .toctree-wrapper ol.arabic li ul,.rst-content .toctree-wrapper ol li p:last-child,.rst-content .toctree-wrapper ol li ul,.rst-content section ol.arabic li ul,.rst-content section ol li p:last-child,.rst-content section ol li ul,.wy-plain-list-decimal li p:last-child,.wy-plain-list-decimal li ul,article ol li p:last-child,article ol li ul{margin-bottom:0}.rst-content .section ol.arabic li ul li,.rst-content .section ol li ul li,.rst-content .toctree-wrapper ol.arabic li ul li,.rst-content .toctree-wrapper ol li ul li,.rst-content section ol.arabic li ul li,.rst-content section ol li ul li,.wy-plain-list-decimal li ul li,article ol li ul li{list-style:disc}.wy-breadcrumbs{*zoom:1}.wy-breadcrumbs:after,.wy-breadcrumbs:before{display:table;content:""}.wy-breadcrumbs:after{clear:both}.wy-breadcrumbs>li{display:inline-block;padding-top:5px}.wy-breadcrumbs>li.wy-breadcrumbs-aside{float:right}.rst-content .wy-breadcrumbs>li code,.rst-content .wy-breadcrumbs>li tt,.wy-breadcrumbs>li .rst-content tt,.wy-breadcrumbs>li code{all:inherit;color:inherit}.breadcrumb-item:before{content:"/";color:#bbb;font-size:13px;padding:0 6px 0 3px}.wy-breadcrumbs-extra{margin-bottom:0;color:#b3b3b3;font-size:80%;display:inline-block}@media screen and (max-width:480px){.wy-breadcrumbs-extra,.wy-breadcrumbs li.wy-breadcrumbs-aside{display:none}}@media print{.wy-breadcrumbs li.wy-breadcrumbs-aside{display:none}}html{font-size:16px}.wy-affix{position:fixed;top:1.618em}.wy-menu a:hover{text-decoration:none}.wy-menu-horiz{*zoom:1}.wy-menu-horiz:after,.wy-menu-horiz:before{display:table;content:""}.wy-menu-horiz:after{clear:both}.wy-menu-horiz li,.wy-menu-horiz ul{display:inline-block}.wy-menu-horiz li:hover{background:hsla(0,0%,100%,.1)}.wy-menu-horiz li.divide-left{border-left:1px solid #404040}.wy-menu-horiz li.divide-right{border-right:1px solid #404040}.wy-menu-horiz a{height:32px;display:inline-block;line-height:32px;padding:0 16px}.wy-menu-vertical{width:300px}.wy-menu-vertical header,.wy-menu-vertical p.caption{color:#55a5d9;height:32px;line-height:32px;padding:0 1.618em;margin:12px 0 0;display:block;font-weight:700;text-transform:uppercase;font-size:85%;white-space:nowrap}.wy-menu-vertical ul{margin-bottom:0}.wy-menu-vertical li.divide-top{border-top:1px solid #404040}.wy-menu-vertical li.divide-bottom{border-bottom:1px solid #404040}.wy-menu-vertical li.current{background:#e3e3e3}.wy-menu-vertical li.current a{color:grey;border-right:1px solid #c9c9c9;padding:.4045em 2.427em}.wy-menu-vertical li.current a:hover{background:#d6d6d6}.rst-content .wy-menu-vertical li tt,.wy-menu-vertical li .rst-content tt,.wy-menu-vertical li code{border:none;background:inherit;color:inherit;padding-left:0;padding-right:0}.wy-menu-vertical li button.toctree-expand{display:block;float:left;margin-left:-1.2em;line-height:18px;color:#4d4d4d;border:none;background:none;padding:0}.wy-menu-vertical li.current>a,.wy-menu-vertical li.on a{color:#404040;font-weight:700;position:relative;background:#fcfcfc;border:none;padding:.4045em 1.618em}.wy-menu-vertical li.current>a:hover,.wy-menu-vertical li.on a:hover{background:#fcfcfc}.wy-menu-vertical li.current>a:hover button.toctree-expand,.wy-menu-vertical li.on a:hover button.toctree-expand{color:grey}.wy-menu-vertical li.current>a button.toctree-expand,.wy-menu-vertical li.on a button.toctree-expand{display:block;line-height:18px;color:#333}.wy-menu-vertical li.toctree-l1.current>a{border-bottom:1px solid #c9c9c9;border-top:1px solid #c9c9c9}.wy-menu-vertical .toctree-l1.current .toctree-l2>ul,.wy-menu-vertical .toctree-l2.current .toctree-l3>ul,.wy-menu-vertical .toctree-l3.current .toctree-l4>ul,.wy-menu-vertical .toctree-l4.current .toctree-l5>ul,.wy-menu-vertical .toctree-l5.current .toctree-l6>ul,.wy-menu-vertical .toctree-l6.current .toctree-l7>ul,.wy-menu-vertical .toctree-l7.current .toctree-l8>ul,.wy-menu-vertical .toctree-l8.current .toctree-l9>ul,.wy-menu-vertical .toctree-l9.current .toctree-l10>ul,.wy-menu-vertical .toctree-l10.current .toctree-l11>ul{display:none}.wy-menu-vertical .toctree-l1.current .current.toctree-l2>ul,.wy-menu-vertical .toctree-l2.current .current.toctree-l3>ul,.wy-menu-vertical .toctree-l3.current .current.toctree-l4>ul,.wy-menu-vertical .toctree-l4.current .current.toctree-l5>ul,.wy-menu-vertical .toctree-l5.current .current.toctree-l6>ul,.wy-menu-vertical .toctree-l6.current .current.toctree-l7>ul,.wy-menu-vertical .toctree-l7.current .current.toctree-l8>ul,.wy-menu-vertical .toctree-l8.current .current.toctree-l9>ul,.wy-menu-vertical .toctree-l9.current .current.toctree-l10>ul,.wy-menu-vertical .toctree-l10.current .current.toctree-l11>ul{display:block}.wy-menu-vertical li.toctree-l3,.wy-menu-vertical li.toctree-l4{font-size:.9em}.wy-menu-vertical li.toctree-l2 a,.wy-menu-vertical li.toctree-l3 a,.wy-menu-vertical li.toctree-l4 a,.wy-menu-vertical li.toctree-l5 a,.wy-menu-vertical li.toctree-l6 a,.wy-menu-vertical li.toctree-l7 a,.wy-menu-vertical li.toctree-l8 a,.wy-menu-vertical li.toctree-l9 a,.wy-menu-vertical li.toctree-l10 a{color:#404040}.wy-menu-vertical li.toctree-l2 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l3 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l4 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l5 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l6 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l7 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l8 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l9 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l10 a:hover button.toctree-expand{color:grey}.wy-menu-vertical li.toctree-l2.current li.toctree-l3>a,.wy-menu-vertical li.toctree-l3.current li.toctree-l4>a,.wy-menu-vertical li.toctree-l4.current li.toctree-l5>a,.wy-menu-vertical li.toctree-l5.current li.toctree-l6>a,.wy-menu-vertical li.toctree-l6.current li.toctree-l7>a,.wy-menu-vertical li.toctree-l7.current li.toctree-l8>a,.wy-menu-vertical li.toctree-l8.current li.toctree-l9>a,.wy-menu-vertical li.toctree-l9.current li.toctree-l10>a,.wy-menu-vertical li.toctree-l10.current li.toctree-l11>a{display:block}.wy-menu-vertical li.toctree-l2.current>a{padding:.4045em 2.427em}.wy-menu-vertical li.toctree-l2.current li.toctree-l3>a{padding:.4045em 1.618em .4045em 4.045em}.wy-menu-vertical li.toctree-l3.current>a{padding:.4045em 4.045em}.wy-menu-vertical li.toctree-l3.current li.toctree-l4>a{padding:.4045em 1.618em .4045em 5.663em}.wy-menu-vertical li.toctree-l4.current>a{padding:.4045em 5.663em}.wy-menu-vertical li.toctree-l4.current li.toctree-l5>a{padding:.4045em 1.618em .4045em 7.281em}.wy-menu-vertical li.toctree-l5.current>a{padding:.4045em 7.281em}.wy-menu-vertical li.toctree-l5.current li.toctree-l6>a{padding:.4045em 1.618em .4045em 8.899em}.wy-menu-vertical li.toctree-l6.current>a{padding:.4045em 8.899em}.wy-menu-vertical li.toctree-l6.current li.toctree-l7>a{padding:.4045em 1.618em .4045em 10.517em}.wy-menu-vertical li.toctree-l7.current>a{padding:.4045em 10.517em}.wy-menu-vertical li.toctree-l7.current li.toctree-l8>a{padding:.4045em 1.618em .4045em 12.135em}.wy-menu-vertical li.toctree-l8.current>a{padding:.4045em 12.135em}.wy-menu-vertical li.toctree-l8.current li.toctree-l9>a{padding:.4045em 1.618em .4045em 13.753em}.wy-menu-vertical li.toctree-l9.current>a{padding:.4045em 13.753em}.wy-menu-vertical li.toctree-l9.current li.toctree-l10>a{padding:.4045em 1.618em .4045em 15.371em}.wy-menu-vertical li.toctree-l10.current>a{padding:.4045em 15.371em}.wy-menu-vertical li.toctree-l10.current li.toctree-l11>a{padding:.4045em 1.618em .4045em 16.989em}.wy-menu-vertical li.toctree-l2.current>a,.wy-menu-vertical li.toctree-l2.current li.toctree-l3>a{background:#c9c9c9}.wy-menu-vertical li.toctree-l2 button.toctree-expand{color:#a3a3a3}.wy-menu-vertical li.toctree-l3.current>a,.wy-menu-vertical li.toctree-l3.current li.toctree-l4>a{background:#bdbdbd}.wy-menu-vertical li.toctree-l3 button.toctree-expand{color:#969696}.wy-menu-vertical li.current ul{display:block}.wy-menu-vertical li ul{margin-bottom:0;display:none}.wy-menu-vertical li ul li a{margin-bottom:0;color:#d9d9d9;font-weight:400}.wy-menu-vertical a{line-height:18px;padding:.4045em 1.618em;display:block;position:relative;font-size:90%;color:#d9d9d9}.wy-menu-vertical a:hover{background-color:#4e4a4a;cursor:pointer}.wy-menu-vertical a:hover button.toctree-expand{color:#d9d9d9}.wy-menu-vertical a:active{background-color:#2980b9;cursor:pointer;color:#fff}.wy-menu-vertical a:active button.toctree-expand{color:#fff}.wy-side-nav-search{display:block;width:300px;padding:.809em;margin-bottom:.809em;z-index:200;background-color:#2980b9;text-align:center;color:#fcfcfc}.wy-side-nav-search input[type=text]{width:100%;border-radius:50px;padding:6px 12px;border-color:#2472a4}.wy-side-nav-search img{display:block;margin:auto auto .809em;height:45px;width:45px;background-color:#2980b9;padding:5px;border-radius:100%}.wy-side-nav-search .wy-dropdown>a,.wy-side-nav-search>a{color:#fcfcfc;font-size:100%;font-weight:700;display:inline-block;padding:4px 6px;margin-bottom:.809em;max-width:100%}.wy-side-nav-search .wy-dropdown>a:hover,.wy-side-nav-search .wy-dropdown>aactive,.wy-side-nav-search .wy-dropdown>afocus,.wy-side-nav-search>a:hover,.wy-side-nav-search>aactive,.wy-side-nav-search>afocus{background:hsla(0,0%,100%,.1)}.wy-side-nav-search .wy-dropdown>a img.logo,.wy-side-nav-search>a img.logo{display:block;margin:0 auto;height:auto;width:auto;border-radius:0;max-width:100%;background:transparent}.wy-side-nav-search .wy-dropdown>a.icon,.wy-side-nav-search>a.icon{display:block}.wy-side-nav-search .wy-dropdown>a.icon img.logo,.wy-side-nav-search>a.icon img.logo{margin-top:.85em}.wy-side-nav-search>div.switch-menus{position:relative;display:block;margin-top:-.4045em;margin-bottom:.809em;font-weight:400;color:hsla(0,0%,100%,.3)}.wy-side-nav-search>div.switch-menus>div.language-switch,.wy-side-nav-search>div.switch-menus>div.version-switch{display:inline-block;padding:.2em}.wy-side-nav-search>div.switch-menus>div.language-switch select,.wy-side-nav-search>div.switch-menus>div.version-switch select{display:inline-block;margin-right:-2rem;padding-right:2rem;max-width:240px;text-align-last:center;background:none;border:none;border-radius:0;box-shadow:none;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;font-size:1em;font-weight:400;color:hsla(0,0%,100%,.3);cursor:pointer;appearance:none;-webkit-appearance:none;-moz-appearance:none}.wy-side-nav-search>div.switch-menus>div.language-switch select:active,.wy-side-nav-search>div.switch-menus>div.language-switch select:focus,.wy-side-nav-search>div.switch-menus>div.language-switch select:hover,.wy-side-nav-search>div.switch-menus>div.version-switch select:active,.wy-side-nav-search>div.switch-menus>div.version-switch select:focus,.wy-side-nav-search>div.switch-menus>div.version-switch select:hover{background:hsla(0,0%,100%,.1);color:hsla(0,0%,100%,.5)}.wy-side-nav-search>div.switch-menus>div.language-switch select option,.wy-side-nav-search>div.switch-menus>div.version-switch select option{color:#000}.wy-side-nav-search>div.switch-menus>div.language-switch:has(>select):after,.wy-side-nav-search>div.switch-menus>div.version-switch:has(>select):after{display:inline-block;width:1.5em;height:100%;padding:.1em;content:"\f0d7";font-size:1em;line-height:1.2em;font-family:FontAwesome;text-align:center;pointer-events:none;box-sizing:border-box}.wy-nav .wy-menu-vertical header{color:#2980b9}.wy-nav .wy-menu-vertical a{color:#b3b3b3}.wy-nav .wy-menu-vertical a:hover{background-color:#2980b9;color:#fff}[data-menu-wrap]{-webkit-transition:all .2s ease-in;-moz-transition:all .2s ease-in;transition:all .2s ease-in;position:absolute;opacity:1;width:100%;opacity:0}[data-menu-wrap].move-center{left:0;right:auto;opacity:1}[data-menu-wrap].move-left{right:auto;left:-100%;opacity:0}[data-menu-wrap].move-right{right:-100%;left:auto;opacity:0}.wy-body-for-nav{background:#fcfcfc}.wy-grid-for-nav{position:absolute;width:100%;height:100%}.wy-nav-side{position:fixed;top:0;bottom:0;left:0;padding-bottom:2em;width:300px;overflow-x:hidden;overflow-y:hidden;min-height:100%;color:#9b9b9b;background:#343131;z-index:200}.wy-side-scroll{width:320px;position:relative;overflow-x:hidden;overflow-y:scroll;height:100%}.wy-nav-top{display:none;background:#2980b9;color:#fff;padding:.4045em .809em;position:relative;line-height:50px;text-align:center;font-size:100%;*zoom:1}.wy-nav-top:after,.wy-nav-top:before{display:table;content:""}.wy-nav-top:after{clear:both}.wy-nav-top a{color:#fff;font-weight:700}.wy-nav-top img{margin-right:12px;height:45px;width:45px;background-color:#2980b9;padding:5px;border-radius:100%}.wy-nav-top i{font-size:30px;float:left;cursor:pointer;padding-top:inherit}.wy-nav-content-wrap{margin-left:300px;background:#fcfcfc;min-height:100%}.wy-nav-content{padding:1.618em 3.236em;height:100%;max-width:800px;margin:auto}.wy-body-mask{position:fixed;width:100%;height:100%;background:rgba(0,0,0,.2);display:none;z-index:499}.wy-body-mask.on{display:block}footer{color:grey}footer p{margin-bottom:12px}.rst-content footer span.commit tt,footer span.commit .rst-content tt,footer span.commit code{padding:0;font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;font-size:1em;background:none;border:none;color:grey}.rst-footer-buttons{*zoom:1}.rst-footer-buttons:after,.rst-footer-buttons:before{width:100%;display:table;content:""}.rst-footer-buttons:after{clear:both}.rst-breadcrumbs-buttons{margin-top:12px;*zoom:1}.rst-breadcrumbs-buttons:after,.rst-breadcrumbs-buttons:before{display:table;content:""}.rst-breadcrumbs-buttons:after{clear:both}#search-results .search li{margin-bottom:24px;border-bottom:1px solid #e1e4e5;padding-bottom:24px}#search-results .search li:first-child{border-top:1px solid #e1e4e5;padding-top:24px}#search-results .search li a{font-size:120%;margin-bottom:12px;display:inline-block}#search-results .context{color:grey;font-size:90%}.genindextable li>ul{margin-left:24px}@media screen and (max-width:768px){.wy-body-for-nav{background:#fcfcfc}.wy-nav-top{display:block}.wy-nav-side{left:-300px}.wy-nav-side.shift{width:85%;left:0}.wy-menu.wy-menu-vertical,.wy-side-nav-search,.wy-side-scroll{width:auto}.wy-nav-content-wrap{margin-left:0}.wy-nav-content-wrap .wy-nav-content{padding:1.618em}.wy-nav-content-wrap.shift{position:fixed;min-width:100%;left:85%;top:0;height:100%;overflow:hidden}}@media screen and (min-width:1100px){.wy-nav-content-wrap{background:rgba(0,0,0,.05)}.wy-nav-content{margin:0;background:#fcfcfc}}@media print{.rst-versions,.wy-nav-side,footer{display:none}.wy-nav-content-wrap{margin-left:0}}.rst-versions{position:fixed;bottom:0;left:0;width:300px;color:#fcfcfc;background:#1f1d1d;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;z-index:400}.rst-versions a{color:#2980b9;text-decoration:none}.rst-versions .rst-badge-small{display:none}.rst-versions .rst-current-version{padding:12px;background-color:#272525;display:block;text-align:right;font-size:90%;cursor:pointer;color:#27ae60;*zoom:1}.rst-versions .rst-current-version:after,.rst-versions .rst-current-version:before{display:table;content:""}.rst-versions .rst-current-version:after{clear:both}.rst-content .code-block-caption .rst-versions .rst-current-version .headerlink,.rst-content .eqno .rst-versions .rst-current-version .headerlink,.rst-content .rst-versions .rst-current-version .admonition-title,.rst-content code.download .rst-versions .rst-current-version span:first-child,.rst-content dl dt .rst-versions .rst-current-version .headerlink,.rst-content h1 .rst-versions .rst-current-version .headerlink,.rst-content h2 .rst-versions .rst-current-version .headerlink,.rst-content h3 .rst-versions .rst-current-version .headerlink,.rst-content h4 .rst-versions .rst-current-version .headerlink,.rst-content h5 .rst-versions .rst-current-version .headerlink,.rst-content h6 .rst-versions .rst-current-version .headerlink,.rst-content p .rst-versions .rst-current-version .headerlink,.rst-content table>caption .rst-versions .rst-current-version .headerlink,.rst-content tt.download .rst-versions .rst-current-version span:first-child,.rst-versions .rst-current-version .fa,.rst-versions .rst-current-version .icon,.rst-versions .rst-current-version .rst-content .admonition-title,.rst-versions .rst-current-version .rst-content .code-block-caption .headerlink,.rst-versions .rst-current-version .rst-content .eqno .headerlink,.rst-versions .rst-current-version .rst-content code.download span:first-child,.rst-versions .rst-current-version .rst-content dl dt .headerlink,.rst-versions .rst-current-version .rst-content h1 .headerlink,.rst-versions .rst-current-version .rst-content h2 .headerlink,.rst-versions .rst-current-version .rst-content h3 .headerlink,.rst-versions .rst-current-version .rst-content h4 .headerlink,.rst-versions .rst-current-version .rst-content h5 .headerlink,.rst-versions .rst-current-version .rst-content h6 .headerlink,.rst-versions .rst-current-version .rst-content p .headerlink,.rst-versions .rst-current-version .rst-content table>caption .headerlink,.rst-versions .rst-current-version .rst-content tt.download span:first-child,.rst-versions .rst-current-version .wy-menu-vertical li button.toctree-expand,.wy-menu-vertical li .rst-versions .rst-current-version button.toctree-expand{color:#fcfcfc}.rst-versions .rst-current-version .fa-book,.rst-versions .rst-current-version .icon-book{float:left}.rst-versions .rst-current-version.rst-out-of-date{background-color:#e74c3c;color:#fff}.rst-versions .rst-current-version.rst-active-old-version{background-color:#f1c40f;color:#000}.rst-versions.shift-up{height:auto;max-height:100%;overflow-y:scroll}.rst-versions.shift-up .rst-other-versions{display:block}.rst-versions .rst-other-versions{font-size:90%;padding:12px;color:grey;display:none}.rst-versions .rst-other-versions hr{display:block;height:1px;border:0;margin:20px 0;padding:0;border-top:1px solid #413d3d}.rst-versions .rst-other-versions dd{display:inline-block;margin:0}.rst-versions .rst-other-versions dd a{display:inline-block;padding:6px;color:#fcfcfc}.rst-versions .rst-other-versions .rtd-current-item{font-weight:700}.rst-versions.rst-badge{width:auto;bottom:20px;right:20px;left:auto;border:none;max-width:300px;max-height:90%}.rst-versions.rst-badge .fa-book,.rst-versions.rst-badge .icon-book{float:none;line-height:30px}.rst-versions.rst-badge.shift-up .rst-current-version{text-align:right}.rst-versions.rst-badge.shift-up .rst-current-version .fa-book,.rst-versions.rst-badge.shift-up .rst-current-version .icon-book{float:left}.rst-versions.rst-badge>.rst-current-version{width:auto;height:30px;line-height:30px;padding:0 6px;display:block;text-align:center}@media screen and (max-width:768px){.rst-versions{width:85%;display:none}.rst-versions.shift{display:block}}#flyout-search-form{padding:6px}.rst-content .toctree-wrapper>p.caption,.rst-content h1,.rst-content h2,.rst-content h3,.rst-content h4,.rst-content h5,.rst-content h6{margin-bottom:24px}.rst-content img{max-width:100%;height:auto}.rst-content div.figure,.rst-content figure{margin-bottom:24px}.rst-content div.figure .caption-text,.rst-content figure .caption-text{font-style:italic}.rst-content div.figure p:last-child.caption,.rst-content figure p:last-child.caption{margin-bottom:0}.rst-content div.figure.align-center,.rst-content figure.align-center{text-align:center}.rst-content .section>a>img,.rst-content .section>img,.rst-content section>a>img,.rst-content section>img{margin-bottom:24px}.rst-content abbr[title]{text-decoration:none}.rst-content.style-external-links a.reference.external:after{font-family:FontAwesome;content:"\f08e";color:#b3b3b3;vertical-align:super;font-size:60%;margin:0 .2em}.rst-content blockquote{margin-left:24px;line-height:24px;margin-bottom:24px}.rst-content pre.literal-block{white-space:pre;margin:0;padding:12px;font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;display:block;overflow:auto}.rst-content div[class^=highlight],.rst-content pre.literal-block{border:1px solid #e1e4e5;overflow-x:auto;margin:1px 0 24px}.rst-content div[class^=highlight] div[class^=highlight],.rst-content pre.literal-block div[class^=highlight]{padding:0;border:none;margin:0}.rst-content div[class^=highlight] td.code{width:100%}.rst-content .linenodiv pre{border-right:1px solid #e6e9ea;margin:0;padding:12px;font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;user-select:none;pointer-events:none}.rst-content div[class^=highlight] pre{white-space:pre;margin:0;padding:12px;display:block;overflow:auto}.rst-content div[class^=highlight] pre .hll{display:block;margin:0 -12px;padding:0 12px}.rst-content .linenodiv pre,.rst-content div[class^=highlight] pre,.rst-content pre.literal-block{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;font-size:12px;line-height:1.4}.rst-content div.highlight .gp,.rst-content div.highlight span.linenos{user-select:none;pointer-events:none}.rst-content div.highlight span.linenos{display:inline-block;padding-left:0;padding-right:12px;margin-right:12px;border-right:1px solid #e6e9ea}.rst-content .code-block-caption{font-style:italic;font-size:85%;line-height:1;padding:1em 0;text-align:center}@media print{.rst-content .codeblock,.rst-content div[class^=highlight],.rst-content div[class^=highlight] pre{white-space:pre-wrap}}.rst-content .admonition,.rst-content .admonition-todo,.rst-content .attention,.rst-content .caution,.rst-content .danger,.rst-content .error,.rst-content .hint,.rst-content .important,.rst-content .note,.rst-content .seealso,.rst-content .tip,.rst-content .warning{clear:both}.rst-content .admonition-todo .last,.rst-content .admonition-todo>:last-child,.rst-content .admonition .last,.rst-content .admonition>:last-child,.rst-content .attention .last,.rst-content .attention>:last-child,.rst-content .caution .last,.rst-content .caution>:last-child,.rst-content .danger .last,.rst-content .danger>:last-child,.rst-content .error .last,.rst-content .error>:last-child,.rst-content .hint .last,.rst-content .hint>:last-child,.rst-content .important .last,.rst-content .important>:last-child,.rst-content .note .last,.rst-content .note>:last-child,.rst-content .seealso .last,.rst-content .seealso>:last-child,.rst-content .tip .last,.rst-content .tip>:last-child,.rst-content .warning .last,.rst-content .warning>:last-child{margin-bottom:0}.rst-content .admonition-title:before{margin-right:4px}.rst-content .admonition table{border-color:rgba(0,0,0,.1)}.rst-content .admonition table td,.rst-content .admonition table th{background:transparent!important;border-color:rgba(0,0,0,.1)!important}.rst-content .section ol.loweralpha,.rst-content .section ol.loweralpha>li,.rst-content .toctree-wrapper ol.loweralpha,.rst-content .toctree-wrapper ol.loweralpha>li,.rst-content section ol.loweralpha,.rst-content section ol.loweralpha>li{list-style:lower-alpha}.rst-content .section ol.upperalpha,.rst-content .section ol.upperalpha>li,.rst-content .toctree-wrapper ol.upperalpha,.rst-content .toctree-wrapper ol.upperalpha>li,.rst-content section ol.upperalpha,.rst-content section ol.upperalpha>li{list-style:upper-alpha}.rst-content .section ol li>*,.rst-content .section ul li>*,.rst-content .toctree-wrapper ol li>*,.rst-content .toctree-wrapper ul li>*,.rst-content section ol li>*,.rst-content section ul li>*{margin-top:12px;margin-bottom:12px}.rst-content .section ol li>:first-child,.rst-content .section ul li>:first-child,.rst-content .toctree-wrapper ol li>:first-child,.rst-content .toctree-wrapper ul li>:first-child,.rst-content section ol li>:first-child,.rst-content section ul li>:first-child{margin-top:0}.rst-content .section ol li>p,.rst-content .section ol li>p:last-child,.rst-content .section ul li>p,.rst-content .section ul li>p:last-child,.rst-content .toctree-wrapper ol li>p,.rst-content .toctree-wrapper ol li>p:last-child,.rst-content .toctree-wrapper ul li>p,.rst-content .toctree-wrapper ul li>p:last-child,.rst-content section ol li>p,.rst-content section ol li>p:last-child,.rst-content section ul li>p,.rst-content section ul li>p:last-child{margin-bottom:12px}.rst-content .section ol li>p:only-child,.rst-content .section ol li>p:only-child:last-child,.rst-content .section ul li>p:only-child,.rst-content .section ul li>p:only-child:last-child,.rst-content .toctree-wrapper ol li>p:only-child,.rst-content .toctree-wrapper ol li>p:only-child:last-child,.rst-content .toctree-wrapper ul li>p:only-child,.rst-content .toctree-wrapper ul li>p:only-child:last-child,.rst-content section ol li>p:only-child,.rst-content section ol li>p:only-child:last-child,.rst-content section ul li>p:only-child,.rst-content section ul li>p:only-child:last-child{margin-bottom:0}.rst-content .section ol li>ol,.rst-content .section ol li>ul,.rst-content .section ul li>ol,.rst-content .section ul li>ul,.rst-content .toctree-wrapper ol li>ol,.rst-content .toctree-wrapper ol li>ul,.rst-content .toctree-wrapper ul li>ol,.rst-content .toctree-wrapper ul li>ul,.rst-content section ol li>ol,.rst-content section ol li>ul,.rst-content section ul li>ol,.rst-content section ul li>ul{margin-bottom:12px}.rst-content .section ol.simple li>*,.rst-content .section ol.simple li ol,.rst-content .section ol.simple li ul,.rst-content .section ul.simple li>*,.rst-content .section ul.simple li ol,.rst-content .section ul.simple li ul,.rst-content .toctree-wrapper ol.simple li>*,.rst-content .toctree-wrapper ol.simple li ol,.rst-content .toctree-wrapper ol.simple li ul,.rst-content .toctree-wrapper ul.simple li>*,.rst-content .toctree-wrapper ul.simple li ol,.rst-content .toctree-wrapper ul.simple li ul,.rst-content section ol.simple li>*,.rst-content section ol.simple li ol,.rst-content section ol.simple li ul,.rst-content section ul.simple li>*,.rst-content section ul.simple li ol,.rst-content section ul.simple li ul{margin-top:0;margin-bottom:0}.rst-content .line-block{margin-left:0;margin-bottom:24px;line-height:24px}.rst-content .line-block .line-block{margin-left:24px;margin-bottom:0}.rst-content .topic-title{font-weight:700;margin-bottom:12px}.rst-content .toc-backref{color:#404040}.rst-content .align-right{float:right;margin:0 0 24px 24px}.rst-content .align-left{float:left;margin:0 24px 24px 0}.rst-content .align-center{margin:auto}.rst-content .align-center:not(table){display:block}.rst-content .code-block-caption .headerlink,.rst-content .eqno .headerlink,.rst-content .toctree-wrapper>p.caption .headerlink,.rst-content dl dt .headerlink,.rst-content h1 .headerlink,.rst-content h2 .headerlink,.rst-content h3 .headerlink,.rst-content h4 .headerlink,.rst-content h5 .headerlink,.rst-content h6 .headerlink,.rst-content p.caption .headerlink,.rst-content p .headerlink,.rst-content table>caption .headerlink{opacity:0;font-size:14px;font-family:FontAwesome;margin-left:.5em}.rst-content .code-block-caption .headerlink:focus,.rst-content .code-block-caption:hover .headerlink,.rst-content .eqno .headerlink:focus,.rst-content .eqno:hover .headerlink,.rst-content .toctree-wrapper>p.caption .headerlink:focus,.rst-content .toctree-wrapper>p.caption:hover .headerlink,.rst-content dl dt .headerlink:focus,.rst-content dl dt:hover .headerlink,.rst-content h1 .headerlink:focus,.rst-content h1:hover .headerlink,.rst-content h2 .headerlink:focus,.rst-content h2:hover .headerlink,.rst-content h3 .headerlink:focus,.rst-content h3:hover .headerlink,.rst-content h4 .headerlink:focus,.rst-content h4:hover .headerlink,.rst-content h5 .headerlink:focus,.rst-content h5:hover .headerlink,.rst-content h6 .headerlink:focus,.rst-content h6:hover .headerlink,.rst-content p.caption .headerlink:focus,.rst-content p.caption:hover .headerlink,.rst-content p .headerlink:focus,.rst-content p:hover .headerlink,.rst-content table>caption .headerlink:focus,.rst-content table>caption:hover .headerlink{opacity:1}.rst-content p a{overflow-wrap:anywhere}.rst-content .wy-table td p,.rst-content .wy-table td ul,.rst-content .wy-table th p,.rst-content .wy-table th ul,.rst-content table.docutils td p,.rst-content table.docutils td ul,.rst-content table.docutils th p,.rst-content table.docutils th ul,.rst-content table.field-list td p,.rst-content table.field-list td ul,.rst-content table.field-list th p,.rst-content table.field-list th ul{font-size:inherit}.rst-content .btn:focus{outline:2px solid}.rst-content table>caption .headerlink:after{font-size:12px}.rst-content .centered{text-align:center}.rst-content .sidebar{float:right;width:40%;display:block;margin:0 0 24px 24px;padding:24px;background:#f3f6f6;border:1px solid #e1e4e5}.rst-content .sidebar dl,.rst-content .sidebar p,.rst-content .sidebar ul{font-size:90%}.rst-content .sidebar .last,.rst-content .sidebar>:last-child{margin-bottom:0}.rst-content .sidebar .sidebar-title{display:block;font-family:Roboto Slab,ff-tisa-web-pro,Georgia,Arial,sans-serif;font-weight:700;background:#e1e4e5;padding:6px 12px;margin:-24px -24px 24px;font-size:100%}.rst-content .highlighted{background:#f1c40f;box-shadow:0 0 0 2px #f1c40f;display:inline;font-weight:700}.rst-content .citation-reference,.rst-content .footnote-reference{vertical-align:baseline;position:relative;top:-.4em;line-height:0;font-size:90%}.rst-content .citation-reference>span.fn-bracket,.rst-content .footnote-reference>span.fn-bracket{display:none}.rst-content .hlist{width:100%}.rst-content dl dt span.classifier:before{content:" : "}.rst-content dl dt span.classifier-delimiter{display:none!important}html.writer-html4 .rst-content table.docutils.citation,html.writer-html4 .rst-content table.docutils.footnote{background:none;border:none}html.writer-html4 .rst-content table.docutils.citation td,html.writer-html4 .rst-content table.docutils.citation tr,html.writer-html4 .rst-content table.docutils.footnote td,html.writer-html4 .rst-content table.docutils.footnote tr{border:none;background-color:transparent!important;white-space:normal}html.writer-html4 .rst-content table.docutils.citation td.label,html.writer-html4 .rst-content table.docutils.footnote td.label{padding-left:0;padding-right:0;vertical-align:top}html.writer-html5 .rst-content dl.citation,html.writer-html5 .rst-content dl.field-list,html.writer-html5 .rst-content dl.footnote{display:grid;grid-template-columns:auto minmax(80%,95%)}html.writer-html5 .rst-content dl.citation>dt,html.writer-html5 .rst-content dl.field-list>dt,html.writer-html5 .rst-content dl.footnote>dt{display:inline-grid;grid-template-columns:max-content auto}html.writer-html5 .rst-content aside.citation,html.writer-html5 .rst-content aside.footnote,html.writer-html5 .rst-content div.citation{display:grid;grid-template-columns:auto auto minmax(.65rem,auto) minmax(40%,95%)}html.writer-html5 .rst-content aside.citation>span.label,html.writer-html5 .rst-content aside.footnote>span.label,html.writer-html5 .rst-content div.citation>span.label{grid-column-start:1;grid-column-end:2}html.writer-html5 .rst-content aside.citation>span.backrefs,html.writer-html5 .rst-content aside.footnote>span.backrefs,html.writer-html5 .rst-content div.citation>span.backrefs{grid-column-start:2;grid-column-end:3;grid-row-start:1;grid-row-end:3}html.writer-html5 .rst-content aside.citation>p,html.writer-html5 .rst-content aside.footnote>p,html.writer-html5 .rst-content div.citation>p{grid-column-start:4;grid-column-end:5}html.writer-html5 .rst-content dl.citation,html.writer-html5 .rst-content dl.field-list,html.writer-html5 .rst-content dl.footnote{margin-bottom:24px}html.writer-html5 .rst-content dl.citation>dt,html.writer-html5 .rst-content dl.field-list>dt,html.writer-html5 .rst-content dl.footnote>dt{padding-left:1rem}html.writer-html5 .rst-content dl.citation>dd,html.writer-html5 .rst-content dl.citation>dt,html.writer-html5 .rst-content dl.field-list>dd,html.writer-html5 .rst-content dl.field-list>dt,html.writer-html5 .rst-content dl.footnote>dd,html.writer-html5 .rst-content dl.footnote>dt{margin-bottom:0}html.writer-html5 .rst-content dl.citation,html.writer-html5 .rst-content dl.footnote{font-size:.9rem}html.writer-html5 .rst-content dl.citation>dt,html.writer-html5 .rst-content dl.footnote>dt{margin:0 .5rem .5rem 0;line-height:1.2rem;word-break:break-all;font-weight:400}html.writer-html5 .rst-content dl.citation>dt>span.brackets:before,html.writer-html5 .rst-content dl.footnote>dt>span.brackets:before{content:"["}html.writer-html5 .rst-content dl.citation>dt>span.brackets:after,html.writer-html5 .rst-content dl.footnote>dt>span.brackets:after{content:"]"}html.writer-html5 .rst-content dl.citation>dt>span.fn-backref,html.writer-html5 .rst-content dl.footnote>dt>span.fn-backref{text-align:left;font-style:italic;margin-left:.65rem;word-break:break-word;word-spacing:-.1rem;max-width:5rem}html.writer-html5 .rst-content dl.citation>dt>span.fn-backref>a,html.writer-html5 .rst-content dl.footnote>dt>span.fn-backref>a{word-break:keep-all}html.writer-html5 .rst-content dl.citation>dt>span.fn-backref>a:not(:first-child):before,html.writer-html5 .rst-content dl.footnote>dt>span.fn-backref>a:not(:first-child):before{content:" "}html.writer-html5 .rst-content dl.citation>dd,html.writer-html5 .rst-content dl.footnote>dd{margin:0 0 .5rem;line-height:1.2rem}html.writer-html5 .rst-content dl.citation>dd p,html.writer-html5 .rst-content dl.footnote>dd p{font-size:.9rem}html.writer-html5 .rst-content aside.citation,html.writer-html5 .rst-content aside.footnote,html.writer-html5 .rst-content div.citation{padding-left:1rem;padding-right:1rem;font-size:.9rem;line-height:1.2rem}html.writer-html5 .rst-content aside.citation p,html.writer-html5 .rst-content aside.footnote p,html.writer-html5 .rst-content div.citation p{font-size:.9rem;line-height:1.2rem;margin-bottom:12px}html.writer-html5 .rst-content aside.citation span.backrefs,html.writer-html5 .rst-content aside.footnote span.backrefs,html.writer-html5 .rst-content div.citation span.backrefs{text-align:left;font-style:italic;margin-left:.65rem;word-break:break-word;word-spacing:-.1rem;max-width:5rem}html.writer-html5 .rst-content aside.citation span.backrefs>a,html.writer-html5 .rst-content aside.footnote span.backrefs>a,html.writer-html5 .rst-content div.citation span.backrefs>a{word-break:keep-all}html.writer-html5 .rst-content aside.citation span.backrefs>a:not(:first-child):before,html.writer-html5 .rst-content aside.footnote span.backrefs>a:not(:first-child):before,html.writer-html5 .rst-content div.citation span.backrefs>a:not(:first-child):before{content:" "}html.writer-html5 .rst-content aside.citation span.label,html.writer-html5 .rst-content aside.footnote span.label,html.writer-html5 .rst-content div.citation span.label{line-height:1.2rem}html.writer-html5 .rst-content aside.citation-list,html.writer-html5 .rst-content aside.footnote-list,html.writer-html5 .rst-content div.citation-list{margin-bottom:24px}html.writer-html5 .rst-content dl.option-list kbd{font-size:.9rem}.rst-content table.docutils.footnote,html.writer-html4 .rst-content table.docutils.citation,html.writer-html5 .rst-content aside.footnote,html.writer-html5 .rst-content aside.footnote-list aside.footnote,html.writer-html5 .rst-content div.citation-list>div.citation,html.writer-html5 .rst-content dl.citation,html.writer-html5 .rst-content dl.footnote{color:grey}.rst-content table.docutils.footnote code,.rst-content table.docutils.footnote tt,html.writer-html4 .rst-content table.docutils.citation code,html.writer-html4 .rst-content table.docutils.citation tt,html.writer-html5 .rst-content aside.footnote-list aside.footnote code,html.writer-html5 .rst-content aside.footnote-list aside.footnote tt,html.writer-html5 .rst-content aside.footnote code,html.writer-html5 .rst-content aside.footnote tt,html.writer-html5 .rst-content div.citation-list>div.citation code,html.writer-html5 .rst-content div.citation-list>div.citation tt,html.writer-html5 .rst-content dl.citation code,html.writer-html5 .rst-content dl.citation tt,html.writer-html5 .rst-content dl.footnote code,html.writer-html5 .rst-content dl.footnote tt{color:#555}.rst-content .wy-table-responsive.citation,.rst-content .wy-table-responsive.footnote{margin-bottom:0}.rst-content .wy-table-responsive.citation+:not(.citation),.rst-content .wy-table-responsive.footnote+:not(.footnote){margin-top:24px}.rst-content .wy-table-responsive.citation:last-child,.rst-content .wy-table-responsive.footnote:last-child{margin-bottom:24px}.rst-content table.docutils th{border-color:#e1e4e5}html.writer-html5 .rst-content table.docutils th{border:1px solid #e1e4e5}html.writer-html5 .rst-content table.docutils td>p,html.writer-html5 .rst-content table.docutils th>p{line-height:1rem;margin-bottom:0;font-size:.9rem}.rst-content table.docutils td .last,.rst-content table.docutils td .last>:last-child{margin-bottom:0}.rst-content table.field-list,.rst-content table.field-list td{border:none}.rst-content table.field-list td p{line-height:inherit}.rst-content table.field-list td>strong{display:inline-block}.rst-content table.field-list .field-name{padding-right:10px;text-align:left;white-space:nowrap}.rst-content table.field-list .field-body{text-align:left}.rst-content code,.rst-content tt{color:#000;font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;padding:2px 5px}.rst-content code big,.rst-content code em,.rst-content tt big,.rst-content tt em{font-size:100%!important;line-height:normal}.rst-content code.literal,.rst-content tt.literal{color:#e74c3c;white-space:normal}.rst-content code.xref,.rst-content tt.xref,a .rst-content code,a .rst-content tt{font-weight:700;color:#404040;overflow-wrap:normal}.rst-content kbd,.rst-content pre,.rst-content samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace}.rst-content a code,.rst-content a tt{color:#2980b9}.rst-content dl{margin-bottom:24px}.rst-content dl dt{font-weight:700;margin-bottom:12px}.rst-content dl ol,.rst-content dl p,.rst-content dl table,.rst-content dl ul{margin-bottom:12px}.rst-content dl dd{margin:0 0 12px 24px;line-height:24px}.rst-content dl dd>ol:last-child,.rst-content dl dd>p:last-child,.rst-content dl dd>table:last-child,.rst-content dl dd>ul:last-child{margin-bottom:0}html.writer-html4 .rst-content dl:not(.docutils),html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple){margin-bottom:24px}html.writer-html4 .rst-content dl:not(.docutils)>dt,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt{display:table;margin:6px 0;font-size:90%;line-height:normal;background:#e7f2fa;color:#2980b9;border-top:3px solid #6ab0de;padding:6px;position:relative}html.writer-html4 .rst-content dl:not(.docutils)>dt:before,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt:before{color:#6ab0de}html.writer-html4 .rst-content dl:not(.docutils)>dt .headerlink,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt .headerlink{color:#404040;font-size:100%!important}html.writer-html4 .rst-content dl:not(.docutils) dl:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) dl:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt{margin-bottom:6px;border:none;border-left:3px solid #ccc;background:#f0f0f0;color:#555}html.writer-html4 .rst-content dl:not(.docutils) dl:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt .headerlink,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) dl:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt .headerlink{color:#404040;font-size:100%!important}html.writer-html4 .rst-content dl:not(.docutils)>dt:first-child,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt:first-child{margin-top:0}html.writer-html4 .rst-content dl:not(.docutils) code.descclassname,html.writer-html4 .rst-content dl:not(.docutils) code.descname,html.writer-html4 .rst-content dl:not(.docutils) tt.descclassname,html.writer-html4 .rst-content dl:not(.docutils) tt.descname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) code.descclassname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) code.descname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) tt.descclassname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) tt.descname{background-color:transparent;border:none;padding:0;font-size:100%!important}html.writer-html4 .rst-content dl:not(.docutils) code.descname,html.writer-html4 .rst-content dl:not(.docutils) tt.descname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) code.descname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) tt.descname{font-weight:700}html.writer-html4 .rst-content dl:not(.docutils) .optional,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) .optional{display:inline-block;padding:0 4px;color:#000;font-weight:700}html.writer-html4 .rst-content dl:not(.docutils) .property,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) .property{display:inline-block;padding-right:8px;max-width:100%}html.writer-html4 .rst-content dl:not(.docutils) .k,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) .k{font-style:italic}html.writer-html4 .rst-content dl:not(.docutils) .descclassname,html.writer-html4 .rst-content dl:not(.docutils) .descname,html.writer-html4 .rst-content dl:not(.docutils) .sig-name,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) .descclassname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) .descname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) .sig-name{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;color:#000}.rst-content .viewcode-back,.rst-content .viewcode-link{display:inline-block;color:#27ae60;font-size:80%;padding-left:24px}.rst-content .viewcode-back{display:block;float:right}.rst-content p.rubric{margin-bottom:12px;font-weight:700}.rst-content code.download,.rst-content tt.download{background:inherit;padding:inherit;font-weight:400;font-family:inherit;font-size:inherit;color:inherit;border:inherit;white-space:inherit}.rst-content code.download span:first-child,.rst-content tt.download span:first-child{-webkit-font-smoothing:subpixel-antialiased}.rst-content code.download span:first-child:before,.rst-content tt.download span:first-child:before{margin-right:4px}.rst-content .guilabel,.rst-content .menuselection{font-size:80%;font-weight:700;border-radius:4px;padding:2.4px 6px;margin:auto 2px}.rst-content .guilabel,.rst-content .menuselection{border:1px solid #7fbbe3;background:#e7f2fa}.rst-content :not(dl.option-list)>:not(dt):not(kbd):not(.kbd)>.kbd,.rst-content :not(dl.option-list)>:not(dt):not(kbd):not(.kbd)>kbd{color:inherit;font-size:80%;background-color:#fff;border:1px solid #a6a6a6;border-radius:4px;box-shadow:0 2px grey;padding:2.4px 6px;margin:auto 0}.rst-content .versionmodified{font-style:italic}@media screen and (max-width:480px){.rst-content .sidebar{width:100%}}span[id*=MathJax-Span]{color:#404040}.math{text-align:center}@font-face{font-family:Lato;src:url(fonts/lato-normal.woff2?bd03a2cc277bbbc338d464e679fe9942) format("woff2"),url(fonts/lato-normal.woff?27bd77b9162d388cb8d4c4217c7c5e2a) format("woff");font-weight:400;font-style:normal;font-display:block}@font-face{font-family:Lato;src:url(fonts/lato-bold.woff2?cccb897485813c7c256901dbca54ecf2) format("woff2"),url(fonts/lato-bold.woff?d878b6c29b10beca227e9eef4246111b) format("woff");font-weight:700;font-style:normal;font-display:block}@font-face{font-family:Lato;src:url(fonts/lato-bold-italic.woff2?0b6bb6725576b072c5d0b02ecdd1900d) format("woff2"),url(fonts/lato-bold-italic.woff?9c7e4e9eb485b4a121c760e61bc3707c) format("woff");font-weight:700;font-style:italic;font-display:block}@font-face{font-family:Lato;src:url(fonts/lato-normal-italic.woff2?4eb103b4d12be57cb1d040ed5e162e9d) format("woff2"),url(fonts/lato-normal-italic.woff?f28f2d6482446544ef1ea1ccc6dd5892) format("woff");font-weight:400;font-style:italic;font-display:block}@font-face{font-family:Roboto Slab;font-style:normal;font-weight:400;src:url(fonts/Roboto-Slab-Regular.woff2?7abf5b8d04d26a2cafea937019bca958) format("woff2"),url(fonts/Roboto-Slab-Regular.woff?c1be9284088d487c5e3ff0a10a92e58c) format("woff");font-display:block}@font-face{font-family:Roboto Slab;font-style:normal;font-weight:700;src:url(fonts/Roboto-Slab-Bold.woff2?9984f4a9bda09be08e83f2506954adbe) format("woff2"),url(fonts/Roboto-Slab-Bold.woff?bed5564a116b05148e3b3bea6fb1162a) format("woff");font-display:block} \ No newline at end of file diff --git a/_static/doctools.js b/_static/doctools.js new file mode 100644 index 00000000..0398ebb9 --- /dev/null +++ b/_static/doctools.js @@ -0,0 +1,149 @@ +/* + * Base JavaScript utilities for all Sphinx HTML documentation. + */ +"use strict"; + +const BLACKLISTED_KEY_CONTROL_ELEMENTS = new Set([ + "TEXTAREA", + "INPUT", + "SELECT", + "BUTTON", +]); + +const _ready = (callback) => { + if (document.readyState !== "loading") { + callback(); + } else { + document.addEventListener("DOMContentLoaded", callback); + } +}; + +/** + * Small JavaScript module for the documentation. + */ +const Documentation = { + init: () => { + Documentation.initDomainIndexTable(); + Documentation.initOnKeyListeners(); + }, + + /** + * i18n support + */ + TRANSLATIONS: {}, + PLURAL_EXPR: (n) => (n === 1 ? 0 : 1), + LOCALE: "unknown", + + // gettext and ngettext don't access this so that the functions + // can safely bound to a different name (_ = Documentation.gettext) + gettext: (string) => { + const translated = Documentation.TRANSLATIONS[string]; + switch (typeof translated) { + case "undefined": + return string; // no translation + case "string": + return translated; // translation exists + default: + return translated[0]; // (singular, plural) translation tuple exists + } + }, + + ngettext: (singular, plural, n) => { + const translated = Documentation.TRANSLATIONS[singular]; + if (typeof translated !== "undefined") + return translated[Documentation.PLURAL_EXPR(n)]; + return n === 1 ? singular : plural; + }, + + addTranslations: (catalog) => { + Object.assign(Documentation.TRANSLATIONS, catalog.messages); + Documentation.PLURAL_EXPR = new Function( + "n", + `return (${catalog.plural_expr})` + ); + Documentation.LOCALE = catalog.locale; + }, + + /** + * helper function to focus on search bar + */ + focusSearchBar: () => { + document.querySelectorAll("input[name=q]")[0]?.focus(); + }, + + /** + * Initialise the domain index toggle buttons + */ + initDomainIndexTable: () => { + const toggler = (el) => { + const idNumber = el.id.substr(7); + const toggledRows = document.querySelectorAll(`tr.cg-${idNumber}`); + if (el.src.substr(-9) === "minus.png") { + el.src = `${el.src.substr(0, el.src.length - 9)}plus.png`; + toggledRows.forEach((el) => (el.style.display = "none")); + } else { + el.src = `${el.src.substr(0, el.src.length - 8)}minus.png`; + toggledRows.forEach((el) => (el.style.display = "")); + } + }; + + const togglerElements = document.querySelectorAll("img.toggler"); + togglerElements.forEach((el) => + el.addEventListener("click", (event) => toggler(event.currentTarget)) + ); + togglerElements.forEach((el) => (el.style.display = "")); + if (DOCUMENTATION_OPTIONS.COLLAPSE_INDEX) togglerElements.forEach(toggler); + }, + + initOnKeyListeners: () => { + // only install a listener if it is really needed + if ( + !DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS && + !DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS + ) + return; + + document.addEventListener("keydown", (event) => { + // bail for input elements + if (BLACKLISTED_KEY_CONTROL_ELEMENTS.has(document.activeElement.tagName)) return; + // bail with special keys + if (event.altKey || event.ctrlKey || event.metaKey) return; + + if (!event.shiftKey) { + switch (event.key) { + case "ArrowLeft": + if (!DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS) break; + + const prevLink = document.querySelector('link[rel="prev"]'); + if (prevLink && prevLink.href) { + window.location.href = prevLink.href; + event.preventDefault(); + } + break; + case "ArrowRight": + if (!DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS) break; + + const nextLink = document.querySelector('link[rel="next"]'); + if (nextLink && nextLink.href) { + window.location.href = nextLink.href; + event.preventDefault(); + } + break; + } + } + + // some keyboard layouts may need Shift to get / + switch (event.key) { + case "/": + if (!DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS) break; + Documentation.focusSearchBar(); + event.preventDefault(); + } + }); + }, +}; + +// quick alias for translations +const _ = Documentation.gettext; + +_ready(Documentation.init); diff --git a/_static/documentation_options.js b/_static/documentation_options.js new file mode 100644 index 00000000..1b3d57f5 --- /dev/null +++ b/_static/documentation_options.js @@ -0,0 +1,13 @@ +const DOCUMENTATION_OPTIONS = { + VERSION: '1.21.1', + LANGUAGE: 'en', + COLLAPSE_INDEX: false, + BUILDER: 'html', + FILE_SUFFIX: '.html', + LINK_SUFFIX: '.html', + HAS_SOURCE: true, + SOURCELINK_SUFFIX: '.txt', + NAVIGATION_WITH_KEYS: false, + SHOW_SEARCH_SUMMARY: true, + ENABLE_SEARCH_SHORTCUTS: true, +}; \ No newline at end of file diff --git a/_static/file.png b/_static/file.png new file mode 100644 index 00000000..a858a410 Binary files /dev/null and b/_static/file.png differ diff --git a/_static/fonts/Lato/lato-bold.eot b/_static/fonts/Lato/lato-bold.eot new file mode 100644 index 00000000..3361183a Binary files /dev/null and b/_static/fonts/Lato/lato-bold.eot differ diff --git a/_static/fonts/Lato/lato-bold.ttf b/_static/fonts/Lato/lato-bold.ttf new file mode 100644 index 00000000..29f691d5 Binary files /dev/null and b/_static/fonts/Lato/lato-bold.ttf differ diff --git a/_static/fonts/Lato/lato-bold.woff b/_static/fonts/Lato/lato-bold.woff new file mode 100644 index 00000000..c6dff51f Binary files /dev/null and b/_static/fonts/Lato/lato-bold.woff differ diff --git a/_static/fonts/Lato/lato-bold.woff2 b/_static/fonts/Lato/lato-bold.woff2 new file mode 100644 index 00000000..bb195043 Binary files /dev/null and b/_static/fonts/Lato/lato-bold.woff2 differ diff --git a/_static/fonts/Lato/lato-bolditalic.eot b/_static/fonts/Lato/lato-bolditalic.eot new file mode 100644 index 00000000..3d415493 Binary files /dev/null and b/_static/fonts/Lato/lato-bolditalic.eot differ diff --git a/_static/fonts/Lato/lato-bolditalic.ttf b/_static/fonts/Lato/lato-bolditalic.ttf new file mode 100644 index 00000000..f402040b Binary files /dev/null and b/_static/fonts/Lato/lato-bolditalic.ttf differ diff --git a/_static/fonts/Lato/lato-bolditalic.woff b/_static/fonts/Lato/lato-bolditalic.woff new file mode 100644 index 00000000..88ad05b9 Binary files /dev/null and b/_static/fonts/Lato/lato-bolditalic.woff differ diff --git a/_static/fonts/Lato/lato-bolditalic.woff2 b/_static/fonts/Lato/lato-bolditalic.woff2 new file mode 100644 index 00000000..c4e3d804 Binary files /dev/null and b/_static/fonts/Lato/lato-bolditalic.woff2 differ diff --git a/_static/fonts/Lato/lato-italic.eot b/_static/fonts/Lato/lato-italic.eot new file mode 100644 index 00000000..3f826421 Binary files /dev/null and b/_static/fonts/Lato/lato-italic.eot differ diff --git a/_static/fonts/Lato/lato-italic.ttf b/_static/fonts/Lato/lato-italic.ttf new file mode 100644 index 00000000..b4bfc9b2 Binary files /dev/null and b/_static/fonts/Lato/lato-italic.ttf differ diff --git a/_static/fonts/Lato/lato-italic.woff b/_static/fonts/Lato/lato-italic.woff new file mode 100644 index 00000000..76114bc0 Binary files /dev/null and b/_static/fonts/Lato/lato-italic.woff differ diff --git a/_static/fonts/Lato/lato-italic.woff2 b/_static/fonts/Lato/lato-italic.woff2 new file mode 100644 index 00000000..3404f37e Binary files /dev/null and b/_static/fonts/Lato/lato-italic.woff2 differ diff --git a/_static/fonts/Lato/lato-regular.eot b/_static/fonts/Lato/lato-regular.eot new file mode 100644 index 00000000..11e3f2a5 Binary files /dev/null and b/_static/fonts/Lato/lato-regular.eot differ diff --git a/_static/fonts/Lato/lato-regular.ttf b/_static/fonts/Lato/lato-regular.ttf new file mode 100644 index 00000000..74decd9e Binary files /dev/null and b/_static/fonts/Lato/lato-regular.ttf differ diff --git a/_static/fonts/Lato/lato-regular.woff b/_static/fonts/Lato/lato-regular.woff new file mode 100644 index 00000000..ae1307ff Binary files /dev/null and b/_static/fonts/Lato/lato-regular.woff differ diff --git a/_static/fonts/Lato/lato-regular.woff2 b/_static/fonts/Lato/lato-regular.woff2 new file mode 100644 index 00000000..3bf98433 Binary files /dev/null and b/_static/fonts/Lato/lato-regular.woff2 differ diff --git a/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot b/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot new file mode 100644 index 00000000..79dc8efe Binary files /dev/null and b/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot differ diff --git a/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf b/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf new file mode 100644 index 00000000..df5d1df2 Binary files /dev/null and b/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf differ diff --git a/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff b/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff new file mode 100644 index 00000000..6cb60000 Binary files /dev/null and b/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff differ diff --git a/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2 b/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2 new file mode 100644 index 00000000..7059e231 Binary files /dev/null and b/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2 differ diff --git a/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot b/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot new file mode 100644 index 00000000..2f7ca78a Binary files /dev/null and b/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot differ diff --git a/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf b/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf new file mode 100644 index 00000000..eb52a790 Binary files /dev/null and b/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf differ diff --git a/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff b/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff new file mode 100644 index 00000000..f815f63f Binary files /dev/null and b/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff differ diff --git a/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2 b/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2 new file mode 100644 index 00000000..f2c76e5b Binary files /dev/null and b/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2 differ diff --git a/_static/jquery.js b/_static/jquery.js new file mode 100644 index 00000000..c4c6022f --- /dev/null +++ b/_static/jquery.js @@ -0,0 +1,2 @@ +/*! jQuery v3.6.0 | (c) OpenJS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.6.0",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||v.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},j=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,D=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="",y.option=!!ce.lastChild;var ge={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n",""]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function je(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function De(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function qe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Le(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var _t,zt=[],Ut=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=zt.pop()||S.expando+"_"+wt.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Ut.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Ut.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Ut,"$1"+r):!1!==e.jsonp&&(e.url+=(Tt.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,zt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((_t=E.implementation.createHTMLDocument("").body).innerHTML="
",2===_t.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=Fe(y.pixelPosition,function(e,t){if(t)return t=We(e,n),Pe.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0"),n("table.docutils.footnote").wrap("
"),n("table.docutils.citation").wrap("
"),n(".wy-menu-vertical ul").not(".simple").siblings("a").each((function(){var t=n(this);expand=n(''),expand.on("click",(function(n){return e.toggleCurrent(t),n.stopPropagation(),!1})),t.prepend(expand)}))},reset:function(){var n=encodeURI(window.location.hash)||"#";try{var e=$(".wy-menu-vertical"),t=e.find('[href="'+n+'"]');if(0===t.length){var i=$('.document [id="'+n.substring(1)+'"]').closest("div.section");0===(t=e.find('[href="#'+i.attr("id")+'"]')).length&&(t=e.find('[href="#"]'))}if(t.length>0){$(".wy-menu-vertical .current").removeClass("current").attr("aria-expanded","false"),t.addClass("current").attr("aria-expanded","true"),t.closest("li.toctree-l1").parent().addClass("current").attr("aria-expanded","true");for(let n=1;n<=10;n++)t.closest("li.toctree-l"+n).addClass("current").attr("aria-expanded","true");t[0].scrollIntoView()}}catch(n){console.log("Error expanding nav for anchor",n)}},onScroll:function(){this.winScroll=!1;var n=this.win.scrollTop(),e=n+this.winHeight,t=this.navBar.scrollTop()+(n-this.winPosition);n<0||e>this.docHeight||(this.navBar.scrollTop(t),this.winPosition=n)},onResize:function(){this.winResize=!1,this.winHeight=this.win.height(),this.docHeight=$(document).height()},hashChange:function(){this.linkScroll=!0,this.win.one("hashchange",(function(){this.linkScroll=!1}))},toggleCurrent:function(n){var e=n.closest("li");e.siblings("li.current").removeClass("current").attr("aria-expanded","false"),e.siblings().find("li.current").removeClass("current").attr("aria-expanded","false");var t=e.find("> ul li");t.length&&(t.removeClass("current").attr("aria-expanded","false"),e.toggleClass("current").attr("aria-expanded",(function(n,e){return"true"==e?"false":"true"})))}},"undefined"!=typeof window&&(window.SphinxRtdTheme={Navigation:n.exports.ThemeNav,StickyNav:n.exports.ThemeNav}),function(){for(var n=0,e=["ms","moz","webkit","o"],t=0;t a.language.name.localeCompare(b.language.name)); + + const languagesHTML = ` +
+
Languages
+ ${languages + .map( + (translation) => ` +
+ ${translation.language.code} +
+ `, + ) + .join("\n")} +
+ `; + return languagesHTML; + } + + function renderVersions(config) { + if (!config.versions.active.length) { + return ""; + } + const versionsHTML = ` +
+
Versions
+ ${config.versions.active + .map( + (version) => ` +
+ ${version.slug} +
+ `, + ) + .join("\n")} +
+ `; + return versionsHTML; + } + + function renderDownloads(config) { + if (!Object.keys(config.versions.current.downloads).length) { + return ""; + } + const downloadsNameDisplay = { + pdf: "PDF", + epub: "Epub", + htmlzip: "HTML", + }; + + const downloadsHTML = ` +
+
Downloads
+ ${Object.entries(config.versions.current.downloads) + .map( + ([name, url]) => ` +
+ ${downloadsNameDisplay[name]} +
+ `, + ) + .join("\n")} +
+ `; + return downloadsHTML; + } + + document.addEventListener("readthedocs-addons-data-ready", function (event) { + const config = event.detail.data(); + + const flyout = ` +
+ + Read the Docs + v: ${config.versions.current.slug} + + +
+
+ ${renderLanguages(config)} + ${renderVersions(config)} + ${renderDownloads(config)} +
+
On Read the Docs
+
+ Project Home +
+
+ Builds +
+
+ Downloads +
+
+
+
Search
+
+
+ +
+
+
+
+ + Hosted by Read the Docs + +
+
+ `; + + // Inject the generated flyout into the body HTML element. + document.body.insertAdjacentHTML("beforeend", flyout); + + // Trigger the Read the Docs Addons Search modal when clicking on the "Search docs" input from inside the flyout. + document + .querySelector("#flyout-search-form") + .addEventListener("focusin", () => { + const event = new CustomEvent("readthedocs-search-show"); + document.dispatchEvent(event); + }); + }) +} + +if (themeLanguageSelector || themeVersionSelector) { + function onSelectorSwitch(event) { + const option = event.target.selectedIndex; + const item = event.target.options[option]; + window.location.href = item.dataset.url; + } + + document.addEventListener("readthedocs-addons-data-ready", function (event) { + const config = event.detail.data(); + + const versionSwitch = document.querySelector( + "div.switch-menus > div.version-switch", + ); + if (themeVersionSelector) { + let versions = config.versions.active; + if (config.versions.current.hidden || config.versions.current.type === "external") { + versions.unshift(config.versions.current); + } + const versionSelect = ` + + `; + + versionSwitch.innerHTML = versionSelect; + versionSwitch.firstElementChild.addEventListener("change", onSelectorSwitch); + } + + const languageSwitch = document.querySelector( + "div.switch-menus > div.language-switch", + ); + + if (themeLanguageSelector) { + if (config.projects.translations.length) { + // Add the current language to the options on the selector + let languages = config.projects.translations.concat( + config.projects.current, + ); + languages = languages.sort((a, b) => + a.language.name.localeCompare(b.language.name), + ); + + const languageSelect = ` + + `; + + languageSwitch.innerHTML = languageSelect; + languageSwitch.firstElementChild.addEventListener("change", onSelectorSwitch); + } + else { + languageSwitch.remove(); + } + } + }); +} + +document.addEventListener("readthedocs-addons-data-ready", function (event) { + // Trigger the Read the Docs Addons Search modal when clicking on "Search docs" input from the topnav. + document + .querySelector("[role='search'] input") + .addEventListener("focusin", () => { + const event = new CustomEvent("readthedocs-search-show"); + document.dispatchEvent(event); + }); +}); \ No newline at end of file diff --git a/_static/language_data.js b/_static/language_data.js new file mode 100644 index 00000000..c7fe6c6f --- /dev/null +++ b/_static/language_data.js @@ -0,0 +1,192 @@ +/* + * This script contains the language-specific data used by searchtools.js, + * namely the list of stopwords, stemmer, scorer and splitter. + */ + +var stopwords = ["a", "and", "are", "as", "at", "be", "but", "by", "for", "if", "in", "into", "is", "it", "near", "no", "not", "of", "on", "or", "such", "that", "the", "their", "then", "there", "these", "they", "this", "to", "was", "will", "with"]; + + +/* Non-minified version is copied as a separate JS file, if available */ + +/** + * Porter Stemmer + */ +var Stemmer = function() { + + var step2list = { + ational: 'ate', + tional: 'tion', + enci: 'ence', + anci: 'ance', + izer: 'ize', + bli: 'ble', + alli: 'al', + entli: 'ent', + eli: 'e', + ousli: 'ous', + ization: 'ize', + ation: 'ate', + ator: 'ate', + alism: 'al', + iveness: 'ive', + fulness: 'ful', + ousness: 'ous', + aliti: 'al', + iviti: 'ive', + biliti: 'ble', + logi: 'log' + }; + + var step3list = { + icate: 'ic', + ative: '', + alize: 'al', + iciti: 'ic', + ical: 'ic', + ful: '', + ness: '' + }; + + var c = "[^aeiou]"; // consonant + var v = "[aeiouy]"; // vowel + var C = c + "[^aeiouy]*"; // consonant sequence + var V = v + "[aeiou]*"; // vowel sequence + + var mgr0 = "^(" + C + ")?" + V + C; // [C]VC... is m>0 + var meq1 = "^(" + C + ")?" + V + C + "(" + V + ")?$"; // [C]VC[V] is m=1 + var mgr1 = "^(" + C + ")?" + V + C + V + C; // [C]VCVC... is m>1 + var s_v = "^(" + C + ")?" + v; // vowel in stem + + this.stemWord = function (w) { + var stem; + var suffix; + var firstch; + var origword = w; + + if (w.length < 3) + return w; + + var re; + var re2; + var re3; + var re4; + + firstch = w.substr(0,1); + if (firstch == "y") + w = firstch.toUpperCase() + w.substr(1); + + // Step 1a + re = /^(.+?)(ss|i)es$/; + re2 = /^(.+?)([^s])s$/; + + if (re.test(w)) + w = w.replace(re,"$1$2"); + else if (re2.test(w)) + w = w.replace(re2,"$1$2"); + + // Step 1b + re = /^(.+?)eed$/; + re2 = /^(.+?)(ed|ing)$/; + if (re.test(w)) { + var fp = re.exec(w); + re = new RegExp(mgr0); + if (re.test(fp[1])) { + re = /.$/; + w = w.replace(re,""); + } + } + else if (re2.test(w)) { + var fp = re2.exec(w); + stem = fp[1]; + re2 = new RegExp(s_v); + if (re2.test(stem)) { + w = stem; + re2 = /(at|bl|iz)$/; + re3 = new RegExp("([^aeiouylsz])\\1$"); + re4 = new RegExp("^" + C + v + "[^aeiouwxy]$"); + if (re2.test(w)) + w = w + "e"; + else if (re3.test(w)) { + re = /.$/; + w = w.replace(re,""); + } + else if (re4.test(w)) + w = w + "e"; + } + } + + // Step 1c + re = /^(.+?)y$/; + if (re.test(w)) { + var fp = re.exec(w); + stem = fp[1]; + re = new RegExp(s_v); + if (re.test(stem)) + w = stem + "i"; + } + + // Step 2 + re = /^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/; + if (re.test(w)) { + var fp = re.exec(w); + stem = fp[1]; + suffix = fp[2]; + re = new RegExp(mgr0); + if (re.test(stem)) + w = stem + step2list[suffix]; + } + + // Step 3 + re = /^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/; + if (re.test(w)) { + var fp = re.exec(w); + stem = fp[1]; + suffix = fp[2]; + re = new RegExp(mgr0); + if (re.test(stem)) + w = stem + step3list[suffix]; + } + + // Step 4 + re = /^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/; + re2 = /^(.+?)(s|t)(ion)$/; + if (re.test(w)) { + var fp = re.exec(w); + stem = fp[1]; + re = new RegExp(mgr1); + if (re.test(stem)) + w = stem; + } + else if (re2.test(w)) { + var fp = re2.exec(w); + stem = fp[1] + fp[2]; + re2 = new RegExp(mgr1); + if (re2.test(stem)) + w = stem; + } + + // Step 5 + re = /^(.+?)e$/; + if (re.test(w)) { + var fp = re.exec(w); + stem = fp[1]; + re = new RegExp(mgr1); + re2 = new RegExp(meq1); + re3 = new RegExp("^" + C + v + "[^aeiouwxy]$"); + if (re.test(stem) || (re2.test(stem) && !(re3.test(stem)))) + w = stem; + } + re = /ll$/; + re2 = new RegExp(mgr1); + if (re.test(w) && re2.test(w)) { + re = /.$/; + w = w.replace(re,""); + } + + // and turn initial Y back to y + if (firstch == "y") + w = firstch.toLowerCase() + w.substr(1); + return w; + } +} + diff --git a/_static/minus.png b/_static/minus.png new file mode 100644 index 00000000..d96755fd Binary files /dev/null and b/_static/minus.png differ diff --git a/_static/plus.png b/_static/plus.png new file mode 100644 index 00000000..7107cec9 Binary files /dev/null and b/_static/plus.png differ diff --git a/_static/pygments.css b/_static/pygments.css new file mode 100644 index 00000000..84ab3030 --- /dev/null +++ b/_static/pygments.css @@ -0,0 +1,75 @@ +pre { line-height: 125%; } +td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; } +span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; } +td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; } +span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; } +.highlight .hll { background-color: #ffffcc } +.highlight { background: #f8f8f8; } +.highlight .c { color: #3D7B7B; font-style: italic } /* Comment */ +.highlight .err { border: 1px solid #FF0000 } /* Error */ +.highlight .k { color: #008000; font-weight: bold } /* Keyword */ +.highlight .o { color: #666666 } /* Operator */ +.highlight .ch { color: #3D7B7B; font-style: italic } /* Comment.Hashbang */ +.highlight .cm { color: #3D7B7B; font-style: italic } /* Comment.Multiline */ +.highlight .cp { color: #9C6500 } /* Comment.Preproc */ +.highlight .cpf { color: #3D7B7B; font-style: italic } /* Comment.PreprocFile */ +.highlight .c1 { color: #3D7B7B; font-style: italic } /* Comment.Single */ +.highlight .cs { color: #3D7B7B; font-style: italic } /* Comment.Special */ +.highlight .gd { color: #A00000 } /* Generic.Deleted */ +.highlight .ge { font-style: italic } /* Generic.Emph */ +.highlight .ges { font-weight: bold; font-style: italic } /* Generic.EmphStrong */ +.highlight .gr { color: #E40000 } /* Generic.Error */ +.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */ +.highlight .gi { color: #008400 } /* Generic.Inserted */ +.highlight .go { color: #717171 } /* Generic.Output */ +.highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */ +.highlight .gs { font-weight: bold } /* Generic.Strong */ +.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ +.highlight .gt { color: #0044DD } /* Generic.Traceback */ +.highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */ +.highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */ +.highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */ +.highlight .kp { color: #008000 } /* Keyword.Pseudo */ +.highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */ +.highlight .kt { color: #B00040 } /* Keyword.Type */ +.highlight .m { color: #666666 } /* Literal.Number */ +.highlight .s { color: #BA2121 } /* Literal.String */ +.highlight .na { color: #687822 } /* Name.Attribute */ +.highlight .nb { color: #008000 } /* Name.Builtin */ +.highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */ +.highlight .no { color: #880000 } /* Name.Constant */ +.highlight .nd { color: #AA22FF } /* Name.Decorator */ +.highlight .ni { color: #717171; font-weight: bold } /* Name.Entity */ +.highlight .ne { color: #CB3F38; font-weight: bold } /* Name.Exception */ +.highlight .nf { color: #0000FF } /* Name.Function */ +.highlight .nl { color: #767600 } /* Name.Label */ +.highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */ +.highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */ +.highlight .nv { color: #19177C } /* Name.Variable */ +.highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */ +.highlight .w { color: #bbbbbb } /* Text.Whitespace */ +.highlight .mb { color: #666666 } /* Literal.Number.Bin */ +.highlight .mf { color: #666666 } /* Literal.Number.Float */ +.highlight .mh { color: #666666 } /* Literal.Number.Hex */ +.highlight .mi { color: #666666 } /* Literal.Number.Integer */ +.highlight .mo { color: #666666 } /* Literal.Number.Oct */ +.highlight .sa { color: #BA2121 } /* Literal.String.Affix */ +.highlight .sb { color: #BA2121 } /* Literal.String.Backtick */ +.highlight .sc { color: #BA2121 } /* Literal.String.Char */ +.highlight .dl { color: #BA2121 } /* Literal.String.Delimiter */ +.highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */ +.highlight .s2 { color: #BA2121 } /* Literal.String.Double */ +.highlight .se { color: #AA5D1F; font-weight: bold } /* Literal.String.Escape */ +.highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */ +.highlight .si { color: #A45A77; font-weight: bold } /* Literal.String.Interpol */ +.highlight .sx { color: #008000 } /* Literal.String.Other */ +.highlight .sr { color: #A45A77 } /* Literal.String.Regex */ +.highlight .s1 { color: #BA2121 } /* Literal.String.Single */ +.highlight .ss { color: #19177C } /* Literal.String.Symbol */ +.highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */ +.highlight .fm { color: #0000FF } /* Name.Function.Magic */ +.highlight .vc { color: #19177C } /* Name.Variable.Class */ +.highlight .vg { color: #19177C } /* Name.Variable.Global */ +.highlight .vi { color: #19177C } /* Name.Variable.Instance */ +.highlight .vm { color: #19177C } /* Name.Variable.Magic */ +.highlight .il { color: #666666 } /* Literal.Number.Integer.Long */ \ No newline at end of file diff --git a/_static/searchtools.js b/_static/searchtools.js new file mode 100644 index 00000000..2c774d17 --- /dev/null +++ b/_static/searchtools.js @@ -0,0 +1,632 @@ +/* + * Sphinx JavaScript utilities for the full-text search. + */ +"use strict"; + +/** + * Simple result scoring code. + */ +if (typeof Scorer === "undefined") { + var Scorer = { + // Implement the following function to further tweak the score for each result + // The function takes a result array [docname, title, anchor, descr, score, filename] + // and returns the new score. + /* + score: result => { + const [docname, title, anchor, descr, score, filename, kind] = result + return score + }, + */ + + // query matches the full name of an object + objNameMatch: 11, + // or matches in the last dotted part of the object name + objPartialMatch: 6, + // Additive scores depending on the priority of the object + objPrio: { + 0: 15, // used to be importantResults + 1: 5, // used to be objectResults + 2: -5, // used to be unimportantResults + }, + // Used when the priority is not in the mapping. + objPrioDefault: 0, + + // query found in title + title: 15, + partialTitle: 7, + // query found in terms + term: 5, + partialTerm: 2, + }; +} + +// Global search result kind enum, used by themes to style search results. +class SearchResultKind { + static get index() { return "index"; } + static get object() { return "object"; } + static get text() { return "text"; } + static get title() { return "title"; } +} + +const _removeChildren = (element) => { + while (element && element.lastChild) element.removeChild(element.lastChild); +}; + +/** + * See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions#escaping + */ +const _escapeRegExp = (string) => + string.replace(/[.*+\-?^${}()|[\]\\]/g, "\\$&"); // $& means the whole matched string + +const _displayItem = (item, searchTerms, highlightTerms) => { + const docBuilder = DOCUMENTATION_OPTIONS.BUILDER; + const docFileSuffix = DOCUMENTATION_OPTIONS.FILE_SUFFIX; + const docLinkSuffix = DOCUMENTATION_OPTIONS.LINK_SUFFIX; + const showSearchSummary = DOCUMENTATION_OPTIONS.SHOW_SEARCH_SUMMARY; + const contentRoot = document.documentElement.dataset.content_root; + + const [docName, title, anchor, descr, score, _filename, kind] = item; + + let listItem = document.createElement("li"); + // Add a class representing the item's type: + // can be used by a theme's CSS selector for styling + // See SearchResultKind for the class names. + listItem.classList.add(`kind-${kind}`); + let requestUrl; + let linkUrl; + if (docBuilder === "dirhtml") { + // dirhtml builder + let dirname = docName + "/"; + if (dirname.match(/\/index\/$/)) + dirname = dirname.substring(0, dirname.length - 6); + else if (dirname === "index/") dirname = ""; + requestUrl = contentRoot + dirname; + linkUrl = requestUrl; + } else { + // normal html builders + requestUrl = contentRoot + docName + docFileSuffix; + linkUrl = docName + docLinkSuffix; + } + let linkEl = listItem.appendChild(document.createElement("a")); + linkEl.href = linkUrl + anchor; + linkEl.dataset.score = score; + linkEl.innerHTML = title; + if (descr) { + listItem.appendChild(document.createElement("span")).innerHTML = + " (" + descr + ")"; + // highlight search terms in the description + if (SPHINX_HIGHLIGHT_ENABLED) // set in sphinx_highlight.js + highlightTerms.forEach((term) => _highlightText(listItem, term, "highlighted")); + } + else if (showSearchSummary) + fetch(requestUrl) + .then((responseData) => responseData.text()) + .then((data) => { + if (data) + listItem.appendChild( + Search.makeSearchSummary(data, searchTerms, anchor) + ); + // highlight search terms in the summary + if (SPHINX_HIGHLIGHT_ENABLED) // set in sphinx_highlight.js + highlightTerms.forEach((term) => _highlightText(listItem, term, "highlighted")); + }); + Search.output.appendChild(listItem); +}; +const _finishSearch = (resultCount) => { + Search.stopPulse(); + Search.title.innerText = _("Search Results"); + if (!resultCount) + Search.status.innerText = Documentation.gettext( + "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories." + ); + else + Search.status.innerText = Documentation.ngettext( + "Search finished, found one page matching the search query.", + "Search finished, found ${resultCount} pages matching the search query.", + resultCount, + ).replace('${resultCount}', resultCount); +}; +const _displayNextItem = ( + results, + resultCount, + searchTerms, + highlightTerms, +) => { + // results left, load the summary and display it + // this is intended to be dynamic (don't sub resultsCount) + if (results.length) { + _displayItem(results.pop(), searchTerms, highlightTerms); + setTimeout( + () => _displayNextItem(results, resultCount, searchTerms, highlightTerms), + 5 + ); + } + // search finished, update title and status message + else _finishSearch(resultCount); +}; +// Helper function used by query() to order search results. +// Each input is an array of [docname, title, anchor, descr, score, filename, kind]. +// Order the results by score (in opposite order of appearance, since the +// `_displayNextItem` function uses pop() to retrieve items) and then alphabetically. +const _orderResultsByScoreThenName = (a, b) => { + const leftScore = a[4]; + const rightScore = b[4]; + if (leftScore === rightScore) { + // same score: sort alphabetically + const leftTitle = a[1].toLowerCase(); + const rightTitle = b[1].toLowerCase(); + if (leftTitle === rightTitle) return 0; + return leftTitle > rightTitle ? -1 : 1; // inverted is intentional + } + return leftScore > rightScore ? 1 : -1; +}; + +/** + * Default splitQuery function. Can be overridden in ``sphinx.search`` with a + * custom function per language. + * + * The regular expression works by splitting the string on consecutive characters + * that are not Unicode letters, numbers, underscores, or emoji characters. + * This is the same as ``\W+`` in Python, preserving the surrogate pair area. + */ +if (typeof splitQuery === "undefined") { + var splitQuery = (query) => query + .split(/[^\p{Letter}\p{Number}_\p{Emoji_Presentation}]+/gu) + .filter(term => term) // remove remaining empty strings +} + +/** + * Search Module + */ +const Search = { + _index: null, + _queued_query: null, + _pulse_status: -1, + + htmlToText: (htmlString, anchor) => { + const htmlElement = new DOMParser().parseFromString(htmlString, 'text/html'); + for (const removalQuery of [".headerlink", "script", "style"]) { + htmlElement.querySelectorAll(removalQuery).forEach((el) => { el.remove() }); + } + if (anchor) { + const anchorContent = htmlElement.querySelector(`[role="main"] ${anchor}`); + if (anchorContent) return anchorContent.textContent; + + console.warn( + `Anchored content block not found. Sphinx search tries to obtain it via DOM query '[role=main] ${anchor}'. Check your theme or template.` + ); + } + + // if anchor not specified or not found, fall back to main content + const docContent = htmlElement.querySelector('[role="main"]'); + if (docContent) return docContent.textContent; + + console.warn( + "Content block not found. Sphinx search tries to obtain it via DOM query '[role=main]'. Check your theme or template." + ); + return ""; + }, + + init: () => { + const query = new URLSearchParams(window.location.search).get("q"); + document + .querySelectorAll('input[name="q"]') + .forEach((el) => (el.value = query)); + if (query) Search.performSearch(query); + }, + + loadIndex: (url) => + (document.body.appendChild(document.createElement("script")).src = url), + + setIndex: (index) => { + Search._index = index; + if (Search._queued_query !== null) { + const query = Search._queued_query; + Search._queued_query = null; + Search.query(query); + } + }, + + hasIndex: () => Search._index !== null, + + deferQuery: (query) => (Search._queued_query = query), + + stopPulse: () => (Search._pulse_status = -1), + + startPulse: () => { + if (Search._pulse_status >= 0) return; + + const pulse = () => { + Search._pulse_status = (Search._pulse_status + 1) % 4; + Search.dots.innerText = ".".repeat(Search._pulse_status); + if (Search._pulse_status >= 0) window.setTimeout(pulse, 500); + }; + pulse(); + }, + + /** + * perform a search for something (or wait until index is loaded) + */ + performSearch: (query) => { + // create the required interface elements + const searchText = document.createElement("h2"); + searchText.textContent = _("Searching"); + const searchSummary = document.createElement("p"); + searchSummary.classList.add("search-summary"); + searchSummary.innerText = ""; + const searchList = document.createElement("ul"); + searchList.setAttribute("role", "list"); + searchList.classList.add("search"); + + const out = document.getElementById("search-results"); + Search.title = out.appendChild(searchText); + Search.dots = Search.title.appendChild(document.createElement("span")); + Search.status = out.appendChild(searchSummary); + Search.output = out.appendChild(searchList); + + const searchProgress = document.getElementById("search-progress"); + // Some themes don't use the search progress node + if (searchProgress) { + searchProgress.innerText = _("Preparing search..."); + } + Search.startPulse(); + + // index already loaded, the browser was quick! + if (Search.hasIndex()) Search.query(query); + else Search.deferQuery(query); + }, + + _parseQuery: (query) => { + // stem the search terms and add them to the correct list + const stemmer = new Stemmer(); + const searchTerms = new Set(); + const excludedTerms = new Set(); + const highlightTerms = new Set(); + const objectTerms = new Set(splitQuery(query.toLowerCase().trim())); + splitQuery(query.trim()).forEach((queryTerm) => { + const queryTermLower = queryTerm.toLowerCase(); + + // maybe skip this "word" + // stopwords array is from language_data.js + if ( + stopwords.indexOf(queryTermLower) !== -1 || + queryTerm.match(/^\d+$/) + ) + return; + + // stem the word + let word = stemmer.stemWord(queryTermLower); + // select the correct list + if (word[0] === "-") excludedTerms.add(word.substr(1)); + else { + searchTerms.add(word); + highlightTerms.add(queryTermLower); + } + }); + + if (SPHINX_HIGHLIGHT_ENABLED) { // set in sphinx_highlight.js + localStorage.setItem("sphinx_highlight_terms", [...highlightTerms].join(" ")) + } + + // console.debug("SEARCH: searching for:"); + // console.info("required: ", [...searchTerms]); + // console.info("excluded: ", [...excludedTerms]); + + return [query, searchTerms, excludedTerms, highlightTerms, objectTerms]; + }, + + /** + * execute search (requires search index to be loaded) + */ + _performSearch: (query, searchTerms, excludedTerms, highlightTerms, objectTerms) => { + const filenames = Search._index.filenames; + const docNames = Search._index.docnames; + const titles = Search._index.titles; + const allTitles = Search._index.alltitles; + const indexEntries = Search._index.indexentries; + + // Collect multiple result groups to be sorted separately and then ordered. + // Each is an array of [docname, title, anchor, descr, score, filename, kind]. + const normalResults = []; + const nonMainIndexResults = []; + + _removeChildren(document.getElementById("search-progress")); + + const queryLower = query.toLowerCase().trim(); + for (const [title, foundTitles] of Object.entries(allTitles)) { + if (title.toLowerCase().trim().includes(queryLower) && (queryLower.length >= title.length/2)) { + for (const [file, id] of foundTitles) { + const score = Math.round(Scorer.title * queryLower.length / title.length); + const boost = titles[file] === title ? 1 : 0; // add a boost for document titles + normalResults.push([ + docNames[file], + titles[file] !== title ? `${titles[file]} > ${title}` : title, + id !== null ? "#" + id : "", + null, + score + boost, + filenames[file], + SearchResultKind.title, + ]); + } + } + } + + // search for explicit entries in index directives + for (const [entry, foundEntries] of Object.entries(indexEntries)) { + if (entry.includes(queryLower) && (queryLower.length >= entry.length/2)) { + for (const [file, id, isMain] of foundEntries) { + const score = Math.round(100 * queryLower.length / entry.length); + const result = [ + docNames[file], + titles[file], + id ? "#" + id : "", + null, + score, + filenames[file], + SearchResultKind.index, + ]; + if (isMain) { + normalResults.push(result); + } else { + nonMainIndexResults.push(result); + } + } + } + } + + // lookup as object + objectTerms.forEach((term) => + normalResults.push(...Search.performObjectSearch(term, objectTerms)) + ); + + // lookup as search terms in fulltext + normalResults.push(...Search.performTermsSearch(searchTerms, excludedTerms)); + + // let the scorer override scores with a custom scoring function + if (Scorer.score) { + normalResults.forEach((item) => (item[4] = Scorer.score(item))); + nonMainIndexResults.forEach((item) => (item[4] = Scorer.score(item))); + } + + // Sort each group of results by score and then alphabetically by name. + normalResults.sort(_orderResultsByScoreThenName); + nonMainIndexResults.sort(_orderResultsByScoreThenName); + + // Combine the result groups in (reverse) order. + // Non-main index entries are typically arbitrary cross-references, + // so display them after other results. + let results = [...nonMainIndexResults, ...normalResults]; + + // remove duplicate search results + // note the reversing of results, so that in the case of duplicates, the highest-scoring entry is kept + let seen = new Set(); + results = results.reverse().reduce((acc, result) => { + let resultStr = result.slice(0, 4).concat([result[5]]).map(v => String(v)).join(','); + if (!seen.has(resultStr)) { + acc.push(result); + seen.add(resultStr); + } + return acc; + }, []); + + return results.reverse(); + }, + + query: (query) => { + const [searchQuery, searchTerms, excludedTerms, highlightTerms, objectTerms] = Search._parseQuery(query); + const results = Search._performSearch(searchQuery, searchTerms, excludedTerms, highlightTerms, objectTerms); + + // for debugging + //Search.lastresults = results.slice(); // a copy + // console.info("search results:", Search.lastresults); + + // print the results + _displayNextItem(results, results.length, searchTerms, highlightTerms); + }, + + /** + * search for object names + */ + performObjectSearch: (object, objectTerms) => { + const filenames = Search._index.filenames; + const docNames = Search._index.docnames; + const objects = Search._index.objects; + const objNames = Search._index.objnames; + const titles = Search._index.titles; + + const results = []; + + const objectSearchCallback = (prefix, match) => { + const name = match[4] + const fullname = (prefix ? prefix + "." : "") + name; + const fullnameLower = fullname.toLowerCase(); + if (fullnameLower.indexOf(object) < 0) return; + + let score = 0; + const parts = fullnameLower.split("."); + + // check for different match types: exact matches of full name or + // "last name" (i.e. last dotted part) + if (fullnameLower === object || parts.slice(-1)[0] === object) + score += Scorer.objNameMatch; + else if (parts.slice(-1)[0].indexOf(object) > -1) + score += Scorer.objPartialMatch; // matches in last name + + const objName = objNames[match[1]][2]; + const title = titles[match[0]]; + + // If more than one term searched for, we require other words to be + // found in the name/title/description + const otherTerms = new Set(objectTerms); + otherTerms.delete(object); + if (otherTerms.size > 0) { + const haystack = `${prefix} ${name} ${objName} ${title}`.toLowerCase(); + if ( + [...otherTerms].some((otherTerm) => haystack.indexOf(otherTerm) < 0) + ) + return; + } + + let anchor = match[3]; + if (anchor === "") anchor = fullname; + else if (anchor === "-") anchor = objNames[match[1]][1] + "-" + fullname; + + const descr = objName + _(", in ") + title; + + // add custom score for some objects according to scorer + if (Scorer.objPrio.hasOwnProperty(match[2])) + score += Scorer.objPrio[match[2]]; + else score += Scorer.objPrioDefault; + + results.push([ + docNames[match[0]], + fullname, + "#" + anchor, + descr, + score, + filenames[match[0]], + SearchResultKind.object, + ]); + }; + Object.keys(objects).forEach((prefix) => + objects[prefix].forEach((array) => + objectSearchCallback(prefix, array) + ) + ); + return results; + }, + + /** + * search for full-text terms in the index + */ + performTermsSearch: (searchTerms, excludedTerms) => { + // prepare search + const terms = Search._index.terms; + const titleTerms = Search._index.titleterms; + const filenames = Search._index.filenames; + const docNames = Search._index.docnames; + const titles = Search._index.titles; + + const scoreMap = new Map(); + const fileMap = new Map(); + + // perform the search on the required terms + searchTerms.forEach((word) => { + const files = []; + const arr = [ + { files: terms[word], score: Scorer.term }, + { files: titleTerms[word], score: Scorer.title }, + ]; + // add support for partial matches + if (word.length > 2) { + const escapedWord = _escapeRegExp(word); + if (!terms.hasOwnProperty(word)) { + Object.keys(terms).forEach((term) => { + if (term.match(escapedWord)) + arr.push({ files: terms[term], score: Scorer.partialTerm }); + }); + } + if (!titleTerms.hasOwnProperty(word)) { + Object.keys(titleTerms).forEach((term) => { + if (term.match(escapedWord)) + arr.push({ files: titleTerms[term], score: Scorer.partialTitle }); + }); + } + } + + // no match but word was a required one + if (arr.every((record) => record.files === undefined)) return; + + // found search word in contents + arr.forEach((record) => { + if (record.files === undefined) return; + + let recordFiles = record.files; + if (recordFiles.length === undefined) recordFiles = [recordFiles]; + files.push(...recordFiles); + + // set score for the word in each file + recordFiles.forEach((file) => { + if (!scoreMap.has(file)) scoreMap.set(file, {}); + scoreMap.get(file)[word] = record.score; + }); + }); + + // create the mapping + files.forEach((file) => { + if (!fileMap.has(file)) fileMap.set(file, [word]); + else if (fileMap.get(file).indexOf(word) === -1) fileMap.get(file).push(word); + }); + }); + + // now check if the files don't contain excluded terms + const results = []; + for (const [file, wordList] of fileMap) { + // check if all requirements are matched + + // as search terms with length < 3 are discarded + const filteredTermCount = [...searchTerms].filter( + (term) => term.length > 2 + ).length; + if ( + wordList.length !== searchTerms.size && + wordList.length !== filteredTermCount + ) + continue; + + // ensure that none of the excluded terms is in the search result + if ( + [...excludedTerms].some( + (term) => + terms[term] === file || + titleTerms[term] === file || + (terms[term] || []).includes(file) || + (titleTerms[term] || []).includes(file) + ) + ) + break; + + // select one (max) score for the file. + const score = Math.max(...wordList.map((w) => scoreMap.get(file)[w])); + // add result to the result list + results.push([ + docNames[file], + titles[file], + "", + null, + score, + filenames[file], + SearchResultKind.text, + ]); + } + return results; + }, + + /** + * helper function to return a node containing the + * search summary for a given text. keywords is a list + * of stemmed words. + */ + makeSearchSummary: (htmlText, keywords, anchor) => { + const text = Search.htmlToText(htmlText, anchor); + if (text === "") return null; + + const textLower = text.toLowerCase(); + const actualStartPosition = [...keywords] + .map((k) => textLower.indexOf(k.toLowerCase())) + .filter((i) => i > -1) + .slice(-1)[0]; + const startWithContext = Math.max(actualStartPosition - 120, 0); + + const top = startWithContext === 0 ? "" : "..."; + const tail = startWithContext + 240 < text.length ? "..." : ""; + + let summary = document.createElement("p"); + summary.classList.add("context"); + summary.textContent = top + text.substr(startWithContext, 240).trim() + tail; + + return summary; + }, +}; + +_ready(Search.init); diff --git a/_static/sphinx_highlight.js b/_static/sphinx_highlight.js new file mode 100644 index 00000000..8a96c69a --- /dev/null +++ b/_static/sphinx_highlight.js @@ -0,0 +1,154 @@ +/* Highlighting utilities for Sphinx HTML documentation. */ +"use strict"; + +const SPHINX_HIGHLIGHT_ENABLED = true + +/** + * highlight a given string on a node by wrapping it in + * span elements with the given class name. + */ +const _highlight = (node, addItems, text, className) => { + if (node.nodeType === Node.TEXT_NODE) { + const val = node.nodeValue; + const parent = node.parentNode; + const pos = val.toLowerCase().indexOf(text); + if ( + pos >= 0 && + !parent.classList.contains(className) && + !parent.classList.contains("nohighlight") + ) { + let span; + + const closestNode = parent.closest("body, svg, foreignObject"); + const isInSVG = closestNode && closestNode.matches("svg"); + if (isInSVG) { + span = document.createElementNS("http://www.w3.org/2000/svg", "tspan"); + } else { + span = document.createElement("span"); + span.classList.add(className); + } + + span.appendChild(document.createTextNode(val.substr(pos, text.length))); + const rest = document.createTextNode(val.substr(pos + text.length)); + parent.insertBefore( + span, + parent.insertBefore( + rest, + node.nextSibling + ) + ); + node.nodeValue = val.substr(0, pos); + /* There may be more occurrences of search term in this node. So call this + * function recursively on the remaining fragment. + */ + _highlight(rest, addItems, text, className); + + if (isInSVG) { + const rect = document.createElementNS( + "http://www.w3.org/2000/svg", + "rect" + ); + const bbox = parent.getBBox(); + rect.x.baseVal.value = bbox.x; + rect.y.baseVal.value = bbox.y; + rect.width.baseVal.value = bbox.width; + rect.height.baseVal.value = bbox.height; + rect.setAttribute("class", className); + addItems.push({ parent: parent, target: rect }); + } + } + } else if (node.matches && !node.matches("button, select, textarea")) { + node.childNodes.forEach((el) => _highlight(el, addItems, text, className)); + } +}; +const _highlightText = (thisNode, text, className) => { + let addItems = []; + _highlight(thisNode, addItems, text, className); + addItems.forEach((obj) => + obj.parent.insertAdjacentElement("beforebegin", obj.target) + ); +}; + +/** + * Small JavaScript module for the documentation. + */ +const SphinxHighlight = { + + /** + * highlight the search words provided in localstorage in the text + */ + highlightSearchWords: () => { + if (!SPHINX_HIGHLIGHT_ENABLED) return; // bail if no highlight + + // get and clear terms from localstorage + const url = new URL(window.location); + const highlight = + localStorage.getItem("sphinx_highlight_terms") + || url.searchParams.get("highlight") + || ""; + localStorage.removeItem("sphinx_highlight_terms") + url.searchParams.delete("highlight"); + window.history.replaceState({}, "", url); + + // get individual terms from highlight string + const terms = highlight.toLowerCase().split(/\s+/).filter(x => x); + if (terms.length === 0) return; // nothing to do + + // There should never be more than one element matching "div.body" + const divBody = document.querySelectorAll("div.body"); + const body = divBody.length ? divBody[0] : document.querySelector("body"); + window.setTimeout(() => { + terms.forEach((term) => _highlightText(body, term, "highlighted")); + }, 10); + + const searchBox = document.getElementById("searchbox"); + if (searchBox === null) return; + searchBox.appendChild( + document + .createRange() + .createContextualFragment( + '" + ) + ); + }, + + /** + * helper function to hide the search marks again + */ + hideSearchWords: () => { + document + .querySelectorAll("#searchbox .highlight-link") + .forEach((el) => el.remove()); + document + .querySelectorAll("span.highlighted") + .forEach((el) => el.classList.remove("highlighted")); + localStorage.removeItem("sphinx_highlight_terms") + }, + + initEscapeListener: () => { + // only install a listener if it is really needed + if (!DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS) return; + + document.addEventListener("keydown", (event) => { + // bail for input elements + if (BLACKLISTED_KEY_CONTROL_ELEMENTS.has(document.activeElement.tagName)) return; + // bail with special keys + if (event.shiftKey || event.altKey || event.ctrlKey || event.metaKey) return; + if (DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS && (event.key === "Escape")) { + SphinxHighlight.hideSearchWords(); + event.preventDefault(); + } + }); + }, +}; + +_ready(() => { + /* Do not call highlightSearchWords() when we are on the search page. + * It will highlight words from the *previous* search query. + */ + if (typeof Search === "undefined") SphinxHighlight.highlightSearchWords(); + SphinxHighlight.initEscapeListener(); +}); diff --git a/arista.alert.html b/arista.alert.html new file mode 100644 index 00000000..cd4dc0f4 --- /dev/null +++ b/arista.alert.html @@ -0,0 +1,463 @@ + + + + + + + + + arista.alert package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

arista.alert package

+
+

Subpackages

+
+ +
+
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/arista.alert.v1.html b/arista.alert.v1.html new file mode 100644 index 00000000..51cb3bbc --- /dev/null +++ b/arista.alert.v1.html @@ -0,0 +1,1251 @@ + + + + + + + + + arista.alert.v1 package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

arista.alert.v1 package

+
+

Subpackages

+
+ +
+
+
+

Submodules

+
+
+

arista.alert.v1.alert_pb2 module

+

Generated protocol buffer code.

+
+
+class arista.alert.v1.alert_pb2.Alert
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.AlertConfig
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.AzureOAuth
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.BroadcastGroup
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.BroadcastGroups
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class arista.alert.v1.alert_pb2.ConfigError
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.ConfigErrors
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.CueData
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class arista.alert.v1.alert_pb2.CueSNMPAuth
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.CueSNMPEndpoint
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.CueSNMPSettings
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.CueSendgridEndpoint
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.CueSendgridEndpoints
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.CueSendgridSettings
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.CueSnmpEndpoints
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.CueSyslogEndpoint
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.CueSyslogEndpoints
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.CueSyslogSettings
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.DefaultTemplate
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.EmailEndpoint
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.EmailEndpoints
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.EmailSettings
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.EndpointError
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.EndpointErrors
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.EventList
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.GoogleChatEndpoint
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.GoogleChatEndpoints
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.GoogleChatSettings
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.HeaderValues
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.HttpHeaders
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class arista.alert.v1.alert_pb2.HttpSettings
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.InhibitionSettings
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class arista.alert.v1.alert_pb2.Matches
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.MsTeamsEndpoint
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.MsTeamsEndpoints
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.MsTeamsSettings
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.OpsgenieEndpoint
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.OpsgenieEndpoints
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.OpsgenieSettings
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.PagerdutyEndpoint
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.PagerdutyEndpoints
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.PagerdutySettings
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.Priorities
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.PushoverEndpoint
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.PushoverEndpoints
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.Rule
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.Rules
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.SNMPAuth
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.SNMPEndpoint
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.SNMPEndpoints
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.SNMPSettings
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.SendgridEndpoint
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.SendgridEndpoints
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.SendgridSettings
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.Settings
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.SlackEndpoint
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.SlackEndpoints
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.SlackSettings
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.SyslogEndpoint
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.SyslogEndpoints
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.SyslogSettings
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.TemplateConfig
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.TemplateKey
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.VictorOpsEndpoint
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.VictorOpsEndpoints
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.VictoropsSettings
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.WebhookEndpoint
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.WebhookEndpoints
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.WebhookSettings
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.ZoomEndpoint
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.ZoomEndpoints
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.alert_pb2.ZoomSettings
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+

arista.alert.v1.alert_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/arista.alert.v1.services.html b/arista.alert.v1.services.html new file mode 100644 index 00000000..09ea8dba --- /dev/null +++ b/arista.alert.v1.services.html @@ -0,0 +1,999 @@ + + + + + + + + + arista.alert.v1.services package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

arista.alert.v1.services package

+
+

Submodules

+
+
+

arista.alert.v1.services.gen_pb2 module

+

Generated protocol buffer code.

+
+
+class arista.alert.v1.services.gen_pb2.AlertConfigRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.services.gen_pb2.AlertConfigResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.services.gen_pb2.AlertConfigSetRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.services.gen_pb2.AlertConfigSetResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.services.gen_pb2.AlertConfigStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.services.gen_pb2.AlertConfigStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.services.gen_pb2.AlertRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.services.gen_pb2.AlertResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.services.gen_pb2.AlertStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.services.gen_pb2.AlertStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.services.gen_pb2.DefaultTemplateBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.services.gen_pb2.DefaultTemplateBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.services.gen_pb2.DefaultTemplateRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.services.gen_pb2.DefaultTemplateResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.services.gen_pb2.DefaultTemplateSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.services.gen_pb2.DefaultTemplateSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.services.gen_pb2.DefaultTemplateStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.services.gen_pb2.DefaultTemplateStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.services.gen_pb2.MetaResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.services.gen_pb2.TemplateConfigBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.services.gen_pb2.TemplateConfigBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.services.gen_pb2.TemplateConfigDeleteAllRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.services.gen_pb2.TemplateConfigDeleteAllResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.services.gen_pb2.TemplateConfigDeleteRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.services.gen_pb2.TemplateConfigDeleteResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.services.gen_pb2.TemplateConfigDeleteSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.services.gen_pb2.TemplateConfigDeleteSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.services.gen_pb2.TemplateConfigRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.services.gen_pb2.TemplateConfigResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.services.gen_pb2.TemplateConfigSetRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.services.gen_pb2.TemplateConfigSetResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.services.gen_pb2.TemplateConfigSetSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.services.gen_pb2.TemplateConfigSetSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.services.gen_pb2.TemplateConfigSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.services.gen_pb2.TemplateConfigSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.services.gen_pb2.TemplateConfigStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.alert.v1.services.gen_pb2.TemplateConfigStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+

arista.alert.v1.services.gen_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+class arista.alert.v1.services.gen_pb2_grpc.AlertConfigService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Set(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.alert.v1.services.gen_pb2_grpc.AlertConfigServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Set(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.alert.v1.services.gen_pb2_grpc.AlertConfigServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class arista.alert.v1.services.gen_pb2_grpc.AlertService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.alert.v1.services.gen_pb2_grpc.AlertServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.alert.v1.services.gen_pb2_grpc.AlertServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class arista.alert.v1.services.gen_pb2_grpc.DefaultTemplateService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.alert.v1.services.gen_pb2_grpc.DefaultTemplateServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.alert.v1.services.gen_pb2_grpc.DefaultTemplateServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class arista.alert.v1.services.gen_pb2_grpc.TemplateConfigService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static Delete(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static DeleteAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static DeleteSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Set(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.alert.v1.services.gen_pb2_grpc.TemplateConfigServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+Delete(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+DeleteAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+DeleteSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Set(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.alert.v1.services.gen_pb2_grpc.TemplateConfigServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+arista.alert.v1.services.gen_pb2_grpc.add_AlertConfigServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+arista.alert.v1.services.gen_pb2_grpc.add_AlertServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+arista.alert.v1.services.gen_pb2_grpc.add_DefaultTemplateServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+arista.alert.v1.services.gen_pb2_grpc.add_TemplateConfigServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/arista.bugexposure.html b/arista.bugexposure.html new file mode 100644 index 00000000..2625e158 --- /dev/null +++ b/arista.bugexposure.html @@ -0,0 +1,179 @@ + + + + + + + + + arista.bugexposure package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+
+ + + + \ No newline at end of file diff --git a/arista.bugexposure.v1.html b/arista.bugexposure.v1.html new file mode 100644 index 00000000..eab2514b --- /dev/null +++ b/arista.bugexposure.v1.html @@ -0,0 +1,235 @@ + + + + + + + + + arista.bugexposure.v1 package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

arista.bugexposure.v1 package

+
+

Subpackages

+ +
+
+

Submodules

+
+
+

arista.bugexposure.v1.bugexposure_pb2 module

+

Generated protocol buffer code.

+
+
+class arista.bugexposure.v1.bugexposure_pb2.BugExposure
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.bugexposure.v1.bugexposure_pb2.BugExposureKey
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+

arista.bugexposure.v1.bugexposure_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/arista.bugexposure.v1.services.html b/arista.bugexposure.v1.services.html new file mode 100644 index 00000000..6d4061f7 --- /dev/null +++ b/arista.bugexposure.v1.services.html @@ -0,0 +1,294 @@ + + + + + + + + + arista.bugexposure.v1.services package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

arista.bugexposure.v1.services package

+
+

Submodules

+
+
+

arista.bugexposure.v1.services.gen_pb2 module

+

Generated protocol buffer code.

+
+
+class arista.bugexposure.v1.services.gen_pb2.BugExposureRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.bugexposure.v1.services.gen_pb2.BugExposureResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.bugexposure.v1.services.gen_pb2.BugExposureStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.bugexposure.v1.services.gen_pb2.BugExposureStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.bugexposure.v1.services.gen_pb2.MetaResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+

arista.bugexposure.v1.services.gen_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+class arista.bugexposure.v1.services.gen_pb2_grpc.BugExposureService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.bugexposure.v1.services.gen_pb2_grpc.BugExposureServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.bugexposure.v1.services.gen_pb2_grpc.BugExposureServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+arista.bugexposure.v1.services.gen_pb2_grpc.add_BugExposureServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/arista.changecontrol.html b/arista.changecontrol.html new file mode 100644 index 00000000..deb41696 --- /dev/null +++ b/arista.changecontrol.html @@ -0,0 +1,246 @@ + + + + + + + + + arista.changecontrol package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+ + +
+
+
+
+ + + + \ No newline at end of file diff --git a/arista.changecontrol.v1.html b/arista.changecontrol.v1.html new file mode 100644 index 00000000..0c73edc1 --- /dev/null +++ b/arista.changecontrol.v1.html @@ -0,0 +1,678 @@ + + + + + + + + + arista.changecontrol.v1 package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

arista.changecontrol.v1 package

+
+

Subpackages

+
+ +
+
+
+

Submodules

+
+
+

arista.changecontrol.v1.changecontrol_pb2 module

+

Generated protocol buffer code.

+
+
+class arista.changecontrol.v1.changecontrol_pb2.Action
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.changecontrol_pb2.ApproveConfig
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.changecontrol_pb2.Change
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.changecontrol_pb2.ChangeConfig
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.changecontrol_pb2.ChangeControl
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.changecontrol_pb2.ChangeControlConfig
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.changecontrol_pb2.ChangeControlKey
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.changecontrol_pb2.DeviceToStageMap
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class arista.changecontrol.v1.changecontrol_pb2.Filter
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.changecontrol_pb2.Flag
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.changecontrol_pb2.FlagConfig
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.changecontrol_pb2.RepeatedRepeatedString
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.changecontrol_pb2.Stage
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.changecontrol_pb2.StageConfig
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.changecontrol_pb2.StageConfigMap
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class arista.changecontrol.v1.changecontrol_pb2.StageMap
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class arista.changecontrol.v1.changecontrol_pb2.TimestampFlag
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.changecontrol_pb2.TimestampFlagConfig
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+

arista.changecontrol.v1.changecontrol_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/arista.changecontrol.v1.services.html b/arista.changecontrol.v1.services.html new file mode 100644 index 00000000..4a27d834 --- /dev/null +++ b/arista.changecontrol.v1.services.html @@ -0,0 +1,1105 @@ + + + + + + + + + arista.changecontrol.v1.services package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

arista.changecontrol.v1.services package

+
+

Submodules

+
+
+

arista.changecontrol.v1.services.gen_pb2 module

+

Generated protocol buffer code.

+
+
+class arista.changecontrol.v1.services.gen_pb2.ApproveConfigBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2.ApproveConfigBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2.ApproveConfigDeleteAllRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2.ApproveConfigDeleteAllResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2.ApproveConfigDeleteRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2.ApproveConfigDeleteResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2.ApproveConfigDeleteSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2.ApproveConfigDeleteSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2.ApproveConfigRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2.ApproveConfigResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2.ApproveConfigSetRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2.ApproveConfigSetResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2.ApproveConfigSetSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2.ApproveConfigSetSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2.ApproveConfigSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2.ApproveConfigSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2.ApproveConfigStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2.ApproveConfigStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2.ChangeControlBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2.ChangeControlBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigDeleteAllRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigDeleteAllResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigDeleteRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigDeleteResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigDeleteSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigDeleteSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigSetRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigSetResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigSetSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigSetSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2.ChangeControlRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2.ChangeControlResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2.ChangeControlSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2.ChangeControlSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2.ChangeControlStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2.ChangeControlStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2.MetaResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+

arista.changecontrol.v1.services.gen_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+class arista.changecontrol.v1.services.gen_pb2_grpc.ApproveConfigService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static Delete(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static DeleteAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static DeleteSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Set(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2_grpc.ApproveConfigServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+Delete(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+DeleteAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+DeleteSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Set(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2_grpc.ApproveConfigServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlConfigService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static Delete(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static DeleteAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static DeleteSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Set(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlConfigServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+Delete(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+DeleteAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+DeleteSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Set(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlConfigServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+arista.changecontrol.v1.services.gen_pb2_grpc.add_ApproveConfigServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+arista.changecontrol.v1.services.gen_pb2_grpc.add_ChangeControlConfigServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+arista.changecontrol.v1.services.gen_pb2_grpc.add_ChangeControlServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/arista.configlet.html b/arista.configlet.html new file mode 100644 index 00000000..78f2d24d --- /dev/null +++ b/arista.configlet.html @@ -0,0 +1,199 @@ + + + + + + + + + arista.configlet package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+
+ + + + \ No newline at end of file diff --git a/arista.configlet.v1.html b/arista.configlet.v1.html new file mode 100644 index 00000000..d42ec3e6 --- /dev/null +++ b/arista.configlet.v1.html @@ -0,0 +1,580 @@ + + + + + + + + + arista.configlet.v1 package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

arista.configlet.v1 package

+
+

Subpackages

+
+ +
+
+
+

Submodules

+
+
+

arista.configlet.v1.configlet_pb2 module

+

Generated protocol buffer code.

+
+
+class arista.configlet.v1.configlet_pb2.Configlet
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.configlet_pb2.ConfigletAssignment
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.configlet_pb2.ConfigletAssignmentConfig
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.configlet_pb2.ConfigletAssignmentKey
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.configlet_pb2.ConfigletConfig
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.configlet_pb2.ConfigletKey
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.configlet_pb2.Filter
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+

arista.configlet.v1.configlet_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/arista.configlet.v1.services.html b/arista.configlet.v1.services.html new file mode 100644 index 00000000..f665ceb6 --- /dev/null +++ b/arista.configlet.v1.services.html @@ -0,0 +1,1307 @@ + + + + + + + + + arista.configlet.v1.services package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

arista.configlet.v1.services package

+
+

Submodules

+
+
+

arista.configlet.v1.services.gen_pb2 module

+

Generated protocol buffer code.

+
+
+class arista.configlet.v1.services.gen_pb2.ConfigletAssignmentBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletAssignmentBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigDeleteAllRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigDeleteAllResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigDeleteRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigDeleteResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigDeleteSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigDeleteSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigSetRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigSetResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigSetSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigSetSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletAssignmentRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletAssignmentResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletAssignmentSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletAssignmentSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletAssignmentStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletAssignmentStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletConfigBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletConfigBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletConfigDeleteAllRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletConfigDeleteAllResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletConfigDeleteRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletConfigDeleteResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletConfigDeleteSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletConfigDeleteSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletConfigRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletConfigResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletConfigSetRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletConfigSetResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletConfigSetSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletConfigSetSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletConfigSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletConfigSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletConfigStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletConfigStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.ConfigletStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2.MetaResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+

arista.configlet.v1.services.gen_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+class arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentConfigService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static Delete(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static DeleteAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static DeleteSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Set(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentConfigServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+Delete(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+DeleteAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+DeleteSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Set(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentConfigServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class arista.configlet.v1.services.gen_pb2_grpc.ConfigletConfigService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static Delete(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static DeleteAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static DeleteSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Set(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2_grpc.ConfigletConfigServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+Delete(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+DeleteAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+DeleteSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Set(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2_grpc.ConfigletConfigServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class arista.configlet.v1.services.gen_pb2_grpc.ConfigletService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2_grpc.ConfigletServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.configlet.v1.services.gen_pb2_grpc.ConfigletServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+arista.configlet.v1.services.gen_pb2_grpc.add_ConfigletAssignmentConfigServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+arista.configlet.v1.services.gen_pb2_grpc.add_ConfigletAssignmentServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+arista.configlet.v1.services.gen_pb2_grpc.add_ConfigletConfigServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+arista.configlet.v1.services.gen_pb2_grpc.add_ConfigletServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/arista.configstatus.html b/arista.configstatus.html new file mode 100644 index 00000000..49c86c05 --- /dev/null +++ b/arista.configstatus.html @@ -0,0 +1,239 @@ + + + + + + + + + arista.configstatus package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+
+ + + + \ No newline at end of file diff --git a/arista.configstatus.v1.html b/arista.configstatus.v1.html new file mode 100644 index 00000000..4f617999 --- /dev/null +++ b/arista.configstatus.v1.html @@ -0,0 +1,702 @@ + + + + + + + + + arista.configstatus.v1 package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

arista.configstatus.v1 package

+
+

Subpackages

+
+ +
+
+
+

Submodules

+
+
+

arista.configstatus.v1.configstatus_pb2 module

+

Generated protocol buffer code.

+
+
+class arista.configstatus.v1.configstatus_pb2.ConfigDiff
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.configstatus_pb2.ConfigDiffKey
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.configstatus_pb2.ConfigError
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.configstatus_pb2.ConfigErrors
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.configstatus_pb2.ConfigKey
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.configstatus_pb2.ConfigSource
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.configstatus_pb2.ConfigSources
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.configstatus_pb2.ConfigSummary
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.configstatus_pb2.Configuration
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.configstatus_pb2.DiffEntries
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.configstatus_pb2.DiffEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.configstatus_pb2.SecurityProfile
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.configstatus_pb2.SecurityProfileComplianceSummary
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.configstatus_pb2.SecurityProfileDiff
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.configstatus_pb2.SecurityProfileDiffSummary
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.configstatus_pb2.Summary
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.configstatus_pb2.SummaryKey
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+

arista.configstatus.v1.configstatus_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/arista.configstatus.v1.services.html b/arista.configstatus.v1.services.html new file mode 100644 index 00000000..e8c8a5a3 --- /dev/null +++ b/arista.configstatus.v1.services.html @@ -0,0 +1,1381 @@ + + + + + + + + + arista.configstatus.v1.services package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

arista.configstatus.v1.services package

+
+

Submodules

+
+
+

arista.configstatus.v1.services.gen_pb2 module

+

Generated protocol buffer code.

+
+
+class arista.configstatus.v1.services.gen_pb2.ConfigDiffBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.ConfigDiffBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.ConfigDiffRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.ConfigDiffResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.ConfigDiffSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.ConfigDiffSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.ConfigDiffStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.ConfigDiffStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.ConfigurationBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.ConfigurationBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.ConfigurationRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.ConfigurationResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.ConfigurationSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.ConfigurationSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.ConfigurationStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.ConfigurationStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.MetaResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.SecurityProfileBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.SecurityProfileBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffSummaryBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffSummaryBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffSummaryRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffSummaryResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffSummarySomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffSummarySomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffSummaryStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffSummaryStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.SecurityProfileRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.SecurityProfileResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.SecurityProfileSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.SecurityProfileSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.SecurityProfileStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.SecurityProfileStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.SummaryBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.SummaryBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.SummaryRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.SummaryResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.SummarySomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.SummarySomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.SummaryStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2.SummaryStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+

arista.configstatus.v1.services.gen_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+class arista.configstatus.v1.services.gen_pb2_grpc.ConfigDiffService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2_grpc.ConfigDiffServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2_grpc.ConfigDiffServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class arista.configstatus.v1.services.gen_pb2_grpc.ConfigurationService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2_grpc.ConfigurationServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2_grpc.ConfigurationServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffSummaryService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffSummaryServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffSummaryServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class arista.configstatus.v1.services.gen_pb2_grpc.SummaryService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2_grpc.SummaryServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.configstatus.v1.services.gen_pb2_grpc.SummaryServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+arista.configstatus.v1.services.gen_pb2_grpc.add_ConfigDiffServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+arista.configstatus.v1.services.gen_pb2_grpc.add_ConfigurationServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+arista.configstatus.v1.services.gen_pb2_grpc.add_SecurityProfileDiffServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+arista.configstatus.v1.services.gen_pb2_grpc.add_SecurityProfileDiffSummaryServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+arista.configstatus.v1.services.gen_pb2_grpc.add_SecurityProfileServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+arista.configstatus.v1.services.gen_pb2_grpc.add_SummaryServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/arista.connectivitymonitor.html b/arista.connectivitymonitor.html new file mode 100644 index 00000000..0d1e1535 --- /dev/null +++ b/arista.connectivitymonitor.html @@ -0,0 +1,187 @@ + + + + + + + + + arista.connectivitymonitor package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+
+ + + + \ No newline at end of file diff --git a/arista.connectivitymonitor.v1.html b/arista.connectivitymonitor.v1.html new file mode 100644 index 00000000..b95aa2a7 --- /dev/null +++ b/arista.connectivitymonitor.v1.html @@ -0,0 +1,335 @@ + + + + + + + + + arista.connectivitymonitor.v1 package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

arista.connectivitymonitor.v1 package

+
+

Subpackages

+
+ +
+
+
+

Submodules

+
+
+

arista.connectivitymonitor.v1.connectivitymonitor_pb2 module

+

Generated protocol buffer code.

+
+
+class arista.connectivitymonitor.v1.connectivitymonitor_pb2.Probe
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.connectivitymonitor.v1.connectivitymonitor_pb2.ProbeKey
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.connectivitymonitor.v1.connectivitymonitor_pb2.ProbeStats
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.connectivitymonitor.v1.connectivitymonitor_pb2.ProbeStatsKey
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+

arista.connectivitymonitor.v1.connectivitymonitor_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/arista.connectivitymonitor.v1.services.html b/arista.connectivitymonitor.v1.services.html new file mode 100644 index 00000000..47972194 --- /dev/null +++ b/arista.connectivitymonitor.v1.services.html @@ -0,0 +1,573 @@ + + + + + + + + + arista.connectivitymonitor.v1.services package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

arista.connectivitymonitor.v1.services package

+
+

Submodules

+
+
+

arista.connectivitymonitor.v1.services.gen_pb2 module

+

Generated protocol buffer code.

+
+
+class arista.connectivitymonitor.v1.services.gen_pb2.MetaResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.connectivitymonitor.v1.services.gen_pb2.ProbeBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.connectivitymonitor.v1.services.gen_pb2.ProbeBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.connectivitymonitor.v1.services.gen_pb2.ProbeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.connectivitymonitor.v1.services.gen_pb2.ProbeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.connectivitymonitor.v1.services.gen_pb2.ProbeSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.connectivitymonitor.v1.services.gen_pb2.ProbeSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.connectivitymonitor.v1.services.gen_pb2.ProbeStatsBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.connectivitymonitor.v1.services.gen_pb2.ProbeStatsBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.connectivitymonitor.v1.services.gen_pb2.ProbeStatsRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.connectivitymonitor.v1.services.gen_pb2.ProbeStatsResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.connectivitymonitor.v1.services.gen_pb2.ProbeStatsSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.connectivitymonitor.v1.services.gen_pb2.ProbeStatsSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.connectivitymonitor.v1.services.gen_pb2.ProbeStatsStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.connectivitymonitor.v1.services.gen_pb2.ProbeStatsStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.connectivitymonitor.v1.services.gen_pb2.ProbeStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.connectivitymonitor.v1.services.gen_pb2.ProbeStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+

arista.connectivitymonitor.v1.services.gen_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+class arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeStatsService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeStatsServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeStatsServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+arista.connectivitymonitor.v1.services.gen_pb2_grpc.add_ProbeServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+arista.connectivitymonitor.v1.services.gen_pb2_grpc.add_ProbeStatsServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/arista.dashboard.html b/arista.dashboard.html new file mode 100644 index 00000000..c43eb370 --- /dev/null +++ b/arista.dashboard.html @@ -0,0 +1,215 @@ + + + + + + + + + arista.dashboard package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+
+ + + + \ No newline at end of file diff --git a/arista.dashboard.v1.html b/arista.dashboard.v1.html new file mode 100644 index 00000000..833bc052 --- /dev/null +++ b/arista.dashboard.v1.html @@ -0,0 +1,516 @@ + + + + + + + + + arista.dashboard.v1 package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

arista.dashboard.v1 package

+
+

Subpackages

+
+ +
+
+
+

Submodules

+
+
+

arista.dashboard.v1.dashboard_pb2 module

+

Generated protocol buffer code.

+
+
+class arista.dashboard.v1.dashboard_pb2.Dashboard
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.dashboard.v1.dashboard_pb2.DashboardConfig
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.dashboard.v1.dashboard_pb2.DashboardKey
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.dashboard.v1.dashboard_pb2.DashboardMetadata
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.dashboard.v1.dashboard_pb2.Dimensions
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.dashboard.v1.dashboard_pb2.Filter
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.dashboard.v1.dashboard_pb2.GlobalDashboardConfig
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.dashboard.v1.dashboard_pb2.Position
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.dashboard.v1.dashboard_pb2.Widget
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.dashboard.v1.dashboard_pb2.WidgetStyles
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.dashboard.v1.dashboard_pb2.Widgets
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+

arista.dashboard.v1.dashboard_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/arista.dashboard.v1.services.html b/arista.dashboard.v1.services.html new file mode 100644 index 00000000..5368a9d9 --- /dev/null +++ b/arista.dashboard.v1.services.html @@ -0,0 +1,929 @@ + + + + + + + + + arista.dashboard.v1.services package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

arista.dashboard.v1.services package

+
+

Submodules

+
+
+

arista.dashboard.v1.services.gen_pb2 module

+

Generated protocol buffer code.

+
+
+class arista.dashboard.v1.services.gen_pb2.DashboardBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.dashboard.v1.services.gen_pb2.DashboardBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.dashboard.v1.services.gen_pb2.DashboardConfigBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.dashboard.v1.services.gen_pb2.DashboardConfigBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.dashboard.v1.services.gen_pb2.DashboardConfigDeleteAllRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.dashboard.v1.services.gen_pb2.DashboardConfigDeleteAllResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.dashboard.v1.services.gen_pb2.DashboardConfigDeleteRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.dashboard.v1.services.gen_pb2.DashboardConfigDeleteResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.dashboard.v1.services.gen_pb2.DashboardConfigDeleteSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.dashboard.v1.services.gen_pb2.DashboardConfigDeleteSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.dashboard.v1.services.gen_pb2.DashboardConfigRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.dashboard.v1.services.gen_pb2.DashboardConfigResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.dashboard.v1.services.gen_pb2.DashboardConfigSetRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.dashboard.v1.services.gen_pb2.DashboardConfigSetResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.dashboard.v1.services.gen_pb2.DashboardConfigSetSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.dashboard.v1.services.gen_pb2.DashboardConfigSetSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.dashboard.v1.services.gen_pb2.DashboardConfigSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.dashboard.v1.services.gen_pb2.DashboardConfigSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.dashboard.v1.services.gen_pb2.DashboardConfigStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.dashboard.v1.services.gen_pb2.DashboardConfigStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.dashboard.v1.services.gen_pb2.DashboardRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.dashboard.v1.services.gen_pb2.DashboardResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.dashboard.v1.services.gen_pb2.DashboardSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.dashboard.v1.services.gen_pb2.DashboardSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.dashboard.v1.services.gen_pb2.DashboardStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.dashboard.v1.services.gen_pb2.DashboardStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.dashboard.v1.services.gen_pb2.GlobalDashboardConfigBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.dashboard.v1.services.gen_pb2.GlobalDashboardConfigBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.dashboard.v1.services.gen_pb2.GlobalDashboardConfigRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.dashboard.v1.services.gen_pb2.GlobalDashboardConfigResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.dashboard.v1.services.gen_pb2.GlobalDashboardConfigSetRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.dashboard.v1.services.gen_pb2.GlobalDashboardConfigSetResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.dashboard.v1.services.gen_pb2.GlobalDashboardConfigStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.dashboard.v1.services.gen_pb2.GlobalDashboardConfigStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.dashboard.v1.services.gen_pb2.MetaResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+

arista.dashboard.v1.services.gen_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+class arista.dashboard.v1.services.gen_pb2_grpc.DashboardConfigService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static Delete(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static DeleteAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static DeleteSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Set(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.dashboard.v1.services.gen_pb2_grpc.DashboardConfigServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+Delete(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+DeleteAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+DeleteSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Set(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.dashboard.v1.services.gen_pb2_grpc.DashboardConfigServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class arista.dashboard.v1.services.gen_pb2_grpc.DashboardService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.dashboard.v1.services.gen_pb2_grpc.DashboardServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.dashboard.v1.services.gen_pb2_grpc.DashboardServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class arista.dashboard.v1.services.gen_pb2_grpc.GlobalDashboardConfigService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Set(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.dashboard.v1.services.gen_pb2_grpc.GlobalDashboardConfigServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Set(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.dashboard.v1.services.gen_pb2_grpc.GlobalDashboardConfigServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+arista.dashboard.v1.services.gen_pb2_grpc.add_DashboardConfigServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+arista.dashboard.v1.services.gen_pb2_grpc.add_DashboardServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+arista.dashboard.v1.services.gen_pb2_grpc.add_GlobalDashboardConfigServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/arista.endpointlocation.html b/arista.endpointlocation.html new file mode 100644 index 00000000..a95c279f --- /dev/null +++ b/arista.endpointlocation.html @@ -0,0 +1,216 @@ + + + + + + + + + arista.endpointlocation package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+
+ + + + \ No newline at end of file diff --git a/arista.endpointlocation.v1.html b/arista.endpointlocation.v1.html new file mode 100644 index 00000000..b42f92dc --- /dev/null +++ b/arista.endpointlocation.v1.html @@ -0,0 +1,367 @@ + + + + + + + + + arista.endpointlocation.v1 package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

arista.endpointlocation.v1 package

+
+

Subpackages

+
+ +
+
+
+

Submodules

+
+
+

arista.endpointlocation.v1.endpointlocation_pb2 module

+

Generated protocol buffer code.

+
+
+class arista.endpointlocation.v1.endpointlocation_pb2.Device
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.endpointlocation.v1.endpointlocation_pb2.DeviceInfo
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.endpointlocation.v1.endpointlocation_pb2.DeviceMap
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class arista.endpointlocation.v1.endpointlocation_pb2.EndpointLocation
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.endpointlocation.v1.endpointlocation_pb2.EndpointLocationKey
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.endpointlocation.v1.endpointlocation_pb2.ExplanationList
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.endpointlocation.v1.endpointlocation_pb2.Identifier
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.endpointlocation.v1.endpointlocation_pb2.IdentifierList
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.endpointlocation.v1.endpointlocation_pb2.IdentifierSourceList
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.endpointlocation.v1.endpointlocation_pb2.Location
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.endpointlocation.v1.endpointlocation_pb2.LocationList
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+

arista.endpointlocation.v1.endpointlocation_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/arista.endpointlocation.v1.services.html b/arista.endpointlocation.v1.services.html new file mode 100644 index 00000000..b8df48e7 --- /dev/null +++ b/arista.endpointlocation.v1.services.html @@ -0,0 +1,371 @@ + + + + + + + + + arista.endpointlocation.v1.services package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

arista.endpointlocation.v1.services package

+
+

Submodules

+
+
+

arista.endpointlocation.v1.services.gen_pb2 module

+

Generated protocol buffer code.

+
+
+class arista.endpointlocation.v1.services.gen_pb2.EndpointLocationBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.endpointlocation.v1.services.gen_pb2.EndpointLocationBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.endpointlocation.v1.services.gen_pb2.EndpointLocationRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.endpointlocation.v1.services.gen_pb2.EndpointLocationResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.endpointlocation.v1.services.gen_pb2.EndpointLocationSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.endpointlocation.v1.services.gen_pb2.EndpointLocationSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.endpointlocation.v1.services.gen_pb2.EndpointLocationStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.endpointlocation.v1.services.gen_pb2.EndpointLocationStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.endpointlocation.v1.services.gen_pb2.MetaResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+

arista.endpointlocation.v1.services.gen_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+class arista.endpointlocation.v1.services.gen_pb2_grpc.EndpointLocationService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.endpointlocation.v1.services.gen_pb2_grpc.EndpointLocationServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.endpointlocation.v1.services.gen_pb2_grpc.EndpointLocationServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+arista.endpointlocation.v1.services.gen_pb2_grpc.add_EndpointLocationServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/arista.event.html b/arista.event.html new file mode 100644 index 00000000..63e1cb49 --- /dev/null +++ b/arista.event.html @@ -0,0 +1,231 @@ + + + + + + + + + arista.event package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+
+ + + + \ No newline at end of file diff --git a/arista.event.v1.html b/arista.event.v1.html new file mode 100644 index 00000000..1ccda4b9 --- /dev/null +++ b/arista.event.v1.html @@ -0,0 +1,609 @@ + + + + + + + + + arista.event.v1 package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

arista.event.v1 package

+
+

Subpackages

+
+ +
+
+
+

Submodules

+
+
+

arista.event.v1.event_pb2 module

+

Generated protocol buffer code.

+
+
+class arista.event.v1.event_pb2.Event
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.event_pb2.EventAck
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.event_pb2.EventAnnotationConfig
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.event_pb2.EventComponent
+

Bases: Message, Message

+
+
+class ComponentsEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.event_pb2.EventComponents
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.event_pb2.EventData
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class DataEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class arista.event.v1.event_pb2.EventKey
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.event_pb2.EventNote
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.event_pb2.EventNoteConfig
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.event_pb2.EventNotes
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class NotesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class arista.event.v1.event_pb2.EventNotesConfig
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class NotesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class arista.event.v1.event_pb2.EventRead
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.event_pb2.UserEventCreationConfig
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.event_pb2.UserEventCreationKey
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+

arista.event.v1.event_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/arista.event.v1.services.html b/arista.event.v1.services.html new file mode 100644 index 00000000..5da31798 --- /dev/null +++ b/arista.event.v1.services.html @@ -0,0 +1,973 @@ + + + + + + + + + arista.event.v1.services package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

arista.event.v1.services package

+
+

Submodules

+
+
+

arista.event.v1.services.gen_pb2 module

+

Generated protocol buffer code.

+
+
+class arista.event.v1.services.gen_pb2.EventAnnotationConfigDeleteAllRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.services.gen_pb2.EventAnnotationConfigDeleteAllResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.services.gen_pb2.EventAnnotationConfigDeleteRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.services.gen_pb2.EventAnnotationConfigDeleteResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.services.gen_pb2.EventAnnotationConfigDeleteSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.services.gen_pb2.EventAnnotationConfigDeleteSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.services.gen_pb2.EventAnnotationConfigRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.services.gen_pb2.EventAnnotationConfigResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.services.gen_pb2.EventAnnotationConfigSetRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.services.gen_pb2.EventAnnotationConfigSetResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.services.gen_pb2.EventAnnotationConfigSetSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.services.gen_pb2.EventAnnotationConfigSetSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.services.gen_pb2.EventAnnotationConfigSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.services.gen_pb2.EventAnnotationConfigSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.services.gen_pb2.EventAnnotationConfigStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.services.gen_pb2.EventAnnotationConfigStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.services.gen_pb2.EventRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.services.gen_pb2.EventResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.services.gen_pb2.EventSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.services.gen_pb2.EventSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.services.gen_pb2.EventStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.services.gen_pb2.EventStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.services.gen_pb2.MetaResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.services.gen_pb2.UserEventCreationConfigDeleteAllRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.services.gen_pb2.UserEventCreationConfigDeleteAllResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.services.gen_pb2.UserEventCreationConfigDeleteRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.services.gen_pb2.UserEventCreationConfigDeleteResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.services.gen_pb2.UserEventCreationConfigDeleteSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.services.gen_pb2.UserEventCreationConfigDeleteSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.services.gen_pb2.UserEventCreationConfigRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.services.gen_pb2.UserEventCreationConfigResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.services.gen_pb2.UserEventCreationConfigSetRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.services.gen_pb2.UserEventCreationConfigSetResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.services.gen_pb2.UserEventCreationConfigSetSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.services.gen_pb2.UserEventCreationConfigSetSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.services.gen_pb2.UserEventCreationConfigSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.services.gen_pb2.UserEventCreationConfigSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.services.gen_pb2.UserEventCreationConfigStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.event.v1.services.gen_pb2.UserEventCreationConfigStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+

arista.event.v1.services.gen_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+class arista.event.v1.services.gen_pb2_grpc.EventAnnotationConfigService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static Delete(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static DeleteAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static DeleteSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Set(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.event.v1.services.gen_pb2_grpc.EventAnnotationConfigServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+Delete(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+DeleteAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+DeleteSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Set(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.event.v1.services.gen_pb2_grpc.EventAnnotationConfigServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class arista.event.v1.services.gen_pb2_grpc.EventService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.event.v1.services.gen_pb2_grpc.EventServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.event.v1.services.gen_pb2_grpc.EventServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class arista.event.v1.services.gen_pb2_grpc.UserEventCreationConfigService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static Delete(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static DeleteAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static DeleteSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Set(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.event.v1.services.gen_pb2_grpc.UserEventCreationConfigServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+Delete(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+DeleteAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+DeleteSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Set(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.event.v1.services.gen_pb2_grpc.UserEventCreationConfigServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+arista.event.v1.services.gen_pb2_grpc.add_EventAnnotationConfigServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+arista.event.v1.services.gen_pb2_grpc.add_EventServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+arista.event.v1.services.gen_pb2_grpc.add_UserEventCreationConfigServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/arista.html b/arista.html new file mode 100644 index 00000000..a754fbd8 --- /dev/null +++ b/arista.html @@ -0,0 +1,441 @@ + + + + + + + + + arista package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

arista package

+
+

Subpackages

+
+ +
+
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/arista.identityprovider.html b/arista.identityprovider.html new file mode 100644 index 00000000..d05e7817 --- /dev/null +++ b/arista.identityprovider.html @@ -0,0 +1,187 @@ + + + + + + + + + arista.identityprovider package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+
+ + + + \ No newline at end of file diff --git a/arista.identityprovider.v1.html b/arista.identityprovider.v1.html new file mode 100644 index 00000000..d87c231b --- /dev/null +++ b/arista.identityprovider.v1.html @@ -0,0 +1,435 @@ + + + + + + + + + arista.identityprovider.v1 package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

arista.identityprovider.v1 package

+
+

Subpackages

+
+ +
+
+
+

Submodules

+
+
+

arista.identityprovider.v1.identityprovider_pb2 module

+

Generated protocol buffer code.

+
+
+class arista.identityprovider.v1.identityprovider_pb2.OAuthConfig
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.identityprovider.v1.identityprovider_pb2.OAuthKey
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.identityprovider.v1.identityprovider_pb2.SAMLConfig
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.identityprovider.v1.identityprovider_pb2.SAMLKey
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+

arista.identityprovider.v1.identityprovider_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/arista.identityprovider.v1.services.html b/arista.identityprovider.v1.services.html new file mode 100644 index 00000000..7e4c6dfd --- /dev/null +++ b/arista.identityprovider.v1.services.html @@ -0,0 +1,903 @@ + + + + + + + + + arista.identityprovider.v1.services package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

arista.identityprovider.v1.services package

+
+

Submodules

+
+
+

arista.identityprovider.v1.services.gen_pb2 module

+

Generated protocol buffer code.

+
+
+class arista.identityprovider.v1.services.gen_pb2.MetaResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.identityprovider.v1.services.gen_pb2.OAuthConfigBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.identityprovider.v1.services.gen_pb2.OAuthConfigBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.identityprovider.v1.services.gen_pb2.OAuthConfigDeleteAllRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.identityprovider.v1.services.gen_pb2.OAuthConfigDeleteAllResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.identityprovider.v1.services.gen_pb2.OAuthConfigDeleteRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.identityprovider.v1.services.gen_pb2.OAuthConfigDeleteResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.identityprovider.v1.services.gen_pb2.OAuthConfigDeleteSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.identityprovider.v1.services.gen_pb2.OAuthConfigDeleteSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.identityprovider.v1.services.gen_pb2.OAuthConfigRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.identityprovider.v1.services.gen_pb2.OAuthConfigResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.identityprovider.v1.services.gen_pb2.OAuthConfigSetRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.identityprovider.v1.services.gen_pb2.OAuthConfigSetResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.identityprovider.v1.services.gen_pb2.OAuthConfigSetSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.identityprovider.v1.services.gen_pb2.OAuthConfigSetSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.identityprovider.v1.services.gen_pb2.OAuthConfigSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.identityprovider.v1.services.gen_pb2.OAuthConfigSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.identityprovider.v1.services.gen_pb2.OAuthConfigStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.identityprovider.v1.services.gen_pb2.OAuthConfigStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.identityprovider.v1.services.gen_pb2.SAMLConfigBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.identityprovider.v1.services.gen_pb2.SAMLConfigBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.identityprovider.v1.services.gen_pb2.SAMLConfigDeleteAllRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.identityprovider.v1.services.gen_pb2.SAMLConfigDeleteAllResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.identityprovider.v1.services.gen_pb2.SAMLConfigDeleteRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.identityprovider.v1.services.gen_pb2.SAMLConfigDeleteResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.identityprovider.v1.services.gen_pb2.SAMLConfigDeleteSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.identityprovider.v1.services.gen_pb2.SAMLConfigDeleteSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.identityprovider.v1.services.gen_pb2.SAMLConfigRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.identityprovider.v1.services.gen_pb2.SAMLConfigResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.identityprovider.v1.services.gen_pb2.SAMLConfigSetRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.identityprovider.v1.services.gen_pb2.SAMLConfigSetResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.identityprovider.v1.services.gen_pb2.SAMLConfigSetSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.identityprovider.v1.services.gen_pb2.SAMLConfigSetSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.identityprovider.v1.services.gen_pb2.SAMLConfigSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.identityprovider.v1.services.gen_pb2.SAMLConfigSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.identityprovider.v1.services.gen_pb2.SAMLConfigStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.identityprovider.v1.services.gen_pb2.SAMLConfigStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+

arista.identityprovider.v1.services.gen_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+class arista.identityprovider.v1.services.gen_pb2_grpc.OAuthConfigService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static Delete(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static DeleteAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static DeleteSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Set(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.identityprovider.v1.services.gen_pb2_grpc.OAuthConfigServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+Delete(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+DeleteAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+DeleteSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Set(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.identityprovider.v1.services.gen_pb2_grpc.OAuthConfigServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class arista.identityprovider.v1.services.gen_pb2_grpc.SAMLConfigService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static Delete(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static DeleteAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static DeleteSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Set(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.identityprovider.v1.services.gen_pb2_grpc.SAMLConfigServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+Delete(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+DeleteAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+DeleteSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Set(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.identityprovider.v1.services.gen_pb2_grpc.SAMLConfigServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+arista.identityprovider.v1.services.gen_pb2_grpc.add_OAuthConfigServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+arista.identityprovider.v1.services.gen_pb2_grpc.add_SAMLConfigServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/arista.imagestatus.html b/arista.imagestatus.html new file mode 100644 index 00000000..6ec3fabe --- /dev/null +++ b/arista.imagestatus.html @@ -0,0 +1,263 @@ + + + + + + + + + arista.imagestatus package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

arista.imagestatus package

+
+

Subpackages

+
+ +
+
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/arista.imagestatus.v1.html b/arista.imagestatus.v1.html new file mode 100644 index 00000000..8415f018 --- /dev/null +++ b/arista.imagestatus.v1.html @@ -0,0 +1,521 @@ + + + + + + + + + arista.imagestatus.v1 package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

arista.imagestatus.v1 package

+
+

Subpackages

+ +
+
+

Submodules

+
+
+

arista.imagestatus.v1.imagestatus_pb2 module

+

Generated protocol buffer code.

+
+
+class arista.imagestatus.v1.imagestatus_pb2.ComplianceStatus
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.imagestatus.v1.imagestatus_pb2.ComplianceStatusBySup
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class arista.imagestatus.v1.imagestatus_pb2.Extension
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.imagestatus.v1.imagestatus_pb2.ExtensionDiff
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.imagestatus.v1.imagestatus_pb2.ExtensionDiffs
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.imagestatus.v1.imagestatus_pb2.ExtensionDiffsBySup
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class arista.imagestatus.v1.imagestatus_pb2.Extensions
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.imagestatus.v1.imagestatus_pb2.ImageError
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.imagestatus.v1.imagestatus_pb2.ImageErrors
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.imagestatus.v1.imagestatus_pb2.ImageInfo
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.imagestatus.v1.imagestatus_pb2.ImageInfos
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.imagestatus.v1.imagestatus_pb2.ImageMetadata
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.imagestatus.v1.imagestatus_pb2.ImageSummary
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.imagestatus.v1.imagestatus_pb2.ImageWarning
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.imagestatus.v1.imagestatus_pb2.ImageWarnings
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.imagestatus.v1.imagestatus_pb2.RebootRequired
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.imagestatus.v1.imagestatus_pb2.SoftwareImage
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.imagestatus.v1.imagestatus_pb2.SoftwareImageDiff
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.imagestatus.v1.imagestatus_pb2.SoftwareImageDiffsBySup
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class arista.imagestatus.v1.imagestatus_pb2.Summary
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.imagestatus.v1.imagestatus_pb2.SummaryKey
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.imagestatus.v1.imagestatus_pb2.TerminAttrDiffsBySup
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+

arista.imagestatus.v1.imagestatus_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/arista.imagestatus.v1.services.html b/arista.imagestatus.v1.services.html new file mode 100644 index 00000000..bc8608d8 --- /dev/null +++ b/arista.imagestatus.v1.services.html @@ -0,0 +1,371 @@ + + + + + + + + + arista.imagestatus.v1.services package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

arista.imagestatus.v1.services package

+
+

Submodules

+
+
+

arista.imagestatus.v1.services.gen_pb2 module

+

Generated protocol buffer code.

+
+
+class arista.imagestatus.v1.services.gen_pb2.MetaResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.imagestatus.v1.services.gen_pb2.SummaryBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.imagestatus.v1.services.gen_pb2.SummaryBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.imagestatus.v1.services.gen_pb2.SummaryRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.imagestatus.v1.services.gen_pb2.SummaryResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.imagestatus.v1.services.gen_pb2.SummarySomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.imagestatus.v1.services.gen_pb2.SummarySomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.imagestatus.v1.services.gen_pb2.SummaryStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.imagestatus.v1.services.gen_pb2.SummaryStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+

arista.imagestatus.v1.services.gen_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+class arista.imagestatus.v1.services.gen_pb2_grpc.SummaryService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.imagestatus.v1.services.gen_pb2_grpc.SummaryServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.imagestatus.v1.services.gen_pb2_grpc.SummaryServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+arista.imagestatus.v1.services.gen_pb2_grpc.add_SummaryServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/arista.inventory.html b/arista.inventory.html new file mode 100644 index 00000000..4fb150a5 --- /dev/null +++ b/arista.inventory.html @@ -0,0 +1,213 @@ + + + + + + + + + arista.inventory package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+
+ + + + \ No newline at end of file diff --git a/arista.inventory.v1.html b/arista.inventory.v1.html new file mode 100644 index 00000000..dc9528f6 --- /dev/null +++ b/arista.inventory.v1.html @@ -0,0 +1,747 @@ + + + + + + + + + arista.inventory.v1 package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

arista.inventory.v1 package

+
+

Subpackages

+
+ +
+
+
+

Submodules

+
+
+

arista.inventory.v1.inventory_pb2 module

+

Generated protocol buffer code.

+
+
+class arista.inventory.v1.inventory_pb2.Device
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.inventory_pb2.DeviceConfiguration
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class OptionsEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class arista.inventory.v1.inventory_pb2.DeviceDecommissioning
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.inventory_pb2.DeviceDecommissioningConfig
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.inventory_pb2.DeviceKey
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.inventory_pb2.DeviceOnboarding
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.inventory_pb2.DeviceOnboardingConfig
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.inventory_pb2.ExtendedAttributes
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class FeatureEnabledEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class arista.inventory.v1.inventory_pb2.ProvisionedDevice
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.inventory_pb2.UUIDKey
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+

arista.inventory.v1.inventory_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/arista.inventory.v1.services.html b/arista.inventory.v1.services.html new file mode 100644 index 00000000..edacd836 --- /dev/null +++ b/arista.inventory.v1.services.html @@ -0,0 +1,1711 @@ + + + + + + + + + arista.inventory.v1.services package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

arista.inventory.v1.services package

+
+

Submodules

+
+
+

arista.inventory.v1.services.gen_pb2 module

+

Generated protocol buffer code.

+
+
+class arista.inventory.v1.services.gen_pb2.DeviceBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceDecommissioningBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceDecommissioningBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigDeleteAllRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigDeleteAllResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigDeleteRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigDeleteResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigDeleteSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigDeleteSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigSetRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigSetResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigSetSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigSetSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceDecommissioningRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceDecommissioningResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceDecommissioningSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceDecommissioningSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceDecommissioningStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceDecommissioningStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceOnboardingBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceOnboardingBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigDeleteAllRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigDeleteAllResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigDeleteRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigDeleteResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigDeleteSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigDeleteSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigSetRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigSetResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigSetSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigSetSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceOnboardingRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceOnboardingResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceOnboardingSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceOnboardingSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceOnboardingStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceOnboardingStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.DeviceStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.MetaResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.ProvisionedDeviceBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.ProvisionedDeviceBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.ProvisionedDeviceRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.ProvisionedDeviceResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.ProvisionedDeviceSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.ProvisionedDeviceSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.ProvisionedDeviceStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2.ProvisionedDeviceStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+

arista.inventory.v1.services.gen_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+class arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningConfigService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static Delete(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static DeleteAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static DeleteSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Set(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningConfigServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+Delete(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+DeleteAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+DeleteSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Set(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningConfigServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingConfigService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static Delete(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static DeleteAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static DeleteSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Set(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingConfigServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+Delete(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+DeleteAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+DeleteSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Set(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingConfigServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class arista.inventory.v1.services.gen_pb2_grpc.DeviceService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2_grpc.DeviceServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2_grpc.DeviceServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class arista.inventory.v1.services.gen_pb2_grpc.ProvisionedDeviceService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2_grpc.ProvisionedDeviceServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.inventory.v1.services.gen_pb2_grpc.ProvisionedDeviceServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+arista.inventory.v1.services.gen_pb2_grpc.add_DeviceDecommissioningConfigServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+arista.inventory.v1.services.gen_pb2_grpc.add_DeviceDecommissioningServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+arista.inventory.v1.services.gen_pb2_grpc.add_DeviceOnboardingConfigServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+arista.inventory.v1.services.gen_pb2_grpc.add_DeviceOnboardingServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+arista.inventory.v1.services.gen_pb2_grpc.add_DeviceServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+arista.inventory.v1.services.gen_pb2_grpc.add_ProvisionedDeviceServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/arista.lifecycle.html b/arista.lifecycle.html new file mode 100644 index 00000000..b5a323aa --- /dev/null +++ b/arista.lifecycle.html @@ -0,0 +1,191 @@ + + + + + + + + + arista.lifecycle package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+
+ + + + \ No newline at end of file diff --git a/arista.lifecycle.v1.html b/arista.lifecycle.v1.html new file mode 100644 index 00000000..5212ad6a --- /dev/null +++ b/arista.lifecycle.v1.html @@ -0,0 +1,268 @@ + + + + + + + + + arista.lifecycle.v1 package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

arista.lifecycle.v1 package

+
+

Subpackages

+ +
+
+

Submodules

+
+
+

arista.lifecycle.v1.lifecycle_pb2 module

+

Generated protocol buffer code.

+
+
+class arista.lifecycle.v1.lifecycle_pb2.DateAndModels
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.lifecycle.v1.lifecycle_pb2.DeviceLifecycleSummary
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.lifecycle.v1.lifecycle_pb2.DeviceLifecycleSummaryKey
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.lifecycle.v1.lifecycle_pb2.HardwareLifecycleSummary
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.lifecycle.v1.lifecycle_pb2.SoftwareEOL
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+

arista.lifecycle.v1.lifecycle_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/arista.lifecycle.v1.services.html b/arista.lifecycle.v1.services.html new file mode 100644 index 00000000..7778aedc --- /dev/null +++ b/arista.lifecycle.v1.services.html @@ -0,0 +1,294 @@ + + + + + + + + + arista.lifecycle.v1.services package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

arista.lifecycle.v1.services package

+
+

Submodules

+
+
+

arista.lifecycle.v1.services.gen_pb2 module

+

Generated protocol buffer code.

+
+
+class arista.lifecycle.v1.services.gen_pb2.DeviceLifecycleSummaryRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.lifecycle.v1.services.gen_pb2.DeviceLifecycleSummaryResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.lifecycle.v1.services.gen_pb2.DeviceLifecycleSummaryStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.lifecycle.v1.services.gen_pb2.DeviceLifecycleSummaryStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.lifecycle.v1.services.gen_pb2.MetaResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+

arista.lifecycle.v1.services.gen_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+class arista.lifecycle.v1.services.gen_pb2_grpc.DeviceLifecycleSummaryService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.lifecycle.v1.services.gen_pb2_grpc.DeviceLifecycleSummaryServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.lifecycle.v1.services.gen_pb2_grpc.DeviceLifecycleSummaryServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+arista.lifecycle.v1.services.gen_pb2_grpc.add_DeviceLifecycleSummaryServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/arista.redirector.html b/arista.redirector.html new file mode 100644 index 00000000..ce5541ff --- /dev/null +++ b/arista.redirector.html @@ -0,0 +1,187 @@ + + + + + + + + + arista.redirector package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+
+ + + + \ No newline at end of file diff --git a/arista.redirector.v1.html b/arista.redirector.v1.html new file mode 100644 index 00000000..9312b26b --- /dev/null +++ b/arista.redirector.v1.html @@ -0,0 +1,279 @@ + + + + + + + + + arista.redirector.v1 package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

arista.redirector.v1 package

+
+

Subpackages

+ +
+
+

Submodules

+
+
+

arista.redirector.v1.redirector_pb2 module

+

Generated protocol buffer code.

+
+
+class arista.redirector.v1.redirector_pb2.Assignment
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.redirector.v1.redirector_pb2.AssignmentKey
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.redirector.v1.redirector_pb2.Cluster
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.redirector.v1.redirector_pb2.Clusters
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+

arista.redirector.v1.redirector_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/arista.redirector.v1.services.html b/arista.redirector.v1.services.html new file mode 100644 index 00000000..350b85a6 --- /dev/null +++ b/arista.redirector.v1.services.html @@ -0,0 +1,371 @@ + + + + + + + + + arista.redirector.v1.services package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

arista.redirector.v1.services package

+
+

Submodules

+
+
+

arista.redirector.v1.services.gen_pb2 module

+

Generated protocol buffer code.

+
+
+class arista.redirector.v1.services.gen_pb2.AssignmentBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.redirector.v1.services.gen_pb2.AssignmentBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.redirector.v1.services.gen_pb2.AssignmentRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.redirector.v1.services.gen_pb2.AssignmentResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.redirector.v1.services.gen_pb2.AssignmentSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.redirector.v1.services.gen_pb2.AssignmentSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.redirector.v1.services.gen_pb2.AssignmentStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.redirector.v1.services.gen_pb2.AssignmentStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.redirector.v1.services.gen_pb2.MetaResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+

arista.redirector.v1.services.gen_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+class arista.redirector.v1.services.gen_pb2_grpc.AssignmentService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.redirector.v1.services.gen_pb2_grpc.AssignmentServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.redirector.v1.services.gen_pb2_grpc.AssignmentServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+arista.redirector.v1.services.gen_pb2_grpc.add_AssignmentServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/arista.serviceaccount.html b/arista.serviceaccount.html new file mode 100644 index 00000000..13a69104 --- /dev/null +++ b/arista.serviceaccount.html @@ -0,0 +1,195 @@ + + + + + + + + + arista.serviceaccount package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+
+ + + + \ No newline at end of file diff --git a/arista.serviceaccount.v1.html b/arista.serviceaccount.v1.html new file mode 100644 index 00000000..9f27bcfd --- /dev/null +++ b/arista.serviceaccount.v1.html @@ -0,0 +1,521 @@ + + + + + + + + + arista.serviceaccount.v1 package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

arista.serviceaccount.v1 package

+
+

Subpackages

+
+ +
+
+
+

Submodules

+
+
+

arista.serviceaccount.v1.serviceaccount_pb2 module

+

Generated protocol buffer code.

+
+
+class arista.serviceaccount.v1.serviceaccount_pb2.Account
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.serviceaccount_pb2.AccountConfig
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.serviceaccount_pb2.AccountKey
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.serviceaccount_pb2.Token
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.serviceaccount_pb2.TokenConfig
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.serviceaccount_pb2.TokenKey
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+

arista.serviceaccount.v1.serviceaccount_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/arista.serviceaccount.v1.services.html b/arista.serviceaccount.v1.services.html new file mode 100644 index 00000000..8d9a183a --- /dev/null +++ b/arista.serviceaccount.v1.services.html @@ -0,0 +1,1131 @@ + + + + + + + + + arista.serviceaccount.v1.services package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

arista.serviceaccount.v1.services package

+
+

Submodules

+
+
+

arista.serviceaccount.v1.services.gen_pb2 module

+

Generated protocol buffer code.

+
+
+class arista.serviceaccount.v1.services.gen_pb2.AccountConfigDeleteAllRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2.AccountConfigDeleteAllResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2.AccountConfigDeleteRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2.AccountConfigDeleteResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2.AccountConfigDeleteSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2.AccountConfigDeleteSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2.AccountConfigRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2.AccountConfigResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2.AccountConfigSetRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2.AccountConfigSetResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2.AccountConfigSetSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2.AccountConfigSetSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2.AccountConfigSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2.AccountConfigSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2.AccountConfigStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2.AccountConfigStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2.AccountRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2.AccountResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2.AccountSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2.AccountSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2.AccountStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2.AccountStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2.MetaResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2.TokenConfigDeleteAllRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2.TokenConfigDeleteAllResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2.TokenConfigDeleteRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2.TokenConfigDeleteResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2.TokenConfigDeleteSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2.TokenConfigDeleteSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2.TokenConfigRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2.TokenConfigResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2.TokenConfigSetRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2.TokenConfigSetResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2.TokenConfigSetSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2.TokenConfigSetSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2.TokenConfigSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2.TokenConfigSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2.TokenConfigStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2.TokenConfigStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2.TokenRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2.TokenResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2.TokenSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2.TokenSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2.TokenStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2.TokenStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+

arista.serviceaccount.v1.services.gen_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+class arista.serviceaccount.v1.services.gen_pb2_grpc.AccountConfigService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static Delete(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static DeleteAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static DeleteSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Set(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2_grpc.AccountConfigServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+Delete(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+DeleteAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+DeleteSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Set(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2_grpc.AccountConfigServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2_grpc.AccountService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2_grpc.AccountServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2_grpc.AccountServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2_grpc.TokenConfigService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static Delete(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static DeleteAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static DeleteSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Set(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2_grpc.TokenConfigServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+Delete(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+DeleteAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+DeleteSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Set(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2_grpc.TokenConfigServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2_grpc.TokenService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2_grpc.TokenServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.serviceaccount.v1.services.gen_pb2_grpc.TokenServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+arista.serviceaccount.v1.services.gen_pb2_grpc.add_AccountConfigServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+arista.serviceaccount.v1.services.gen_pb2_grpc.add_AccountServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+arista.serviceaccount.v1.services.gen_pb2_grpc.add_TokenConfigServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+arista.serviceaccount.v1.services.gen_pb2_grpc.add_TokenServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/arista.studio.html b/arista.studio.html new file mode 100644 index 00000000..a0d378ff --- /dev/null +++ b/arista.studio.html @@ -0,0 +1,294 @@ + + + + + + + + + arista.studio package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

arista.studio package

+
+

Subpackages

+
+ +
+
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/arista.studio.v1.html b/arista.studio.v1.html new file mode 100644 index 00000000..45f41dd9 --- /dev/null +++ b/arista.studio.v1.html @@ -0,0 +1,1302 @@ + + + + + + + + + arista.studio.v1 package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

arista.studio.v1 package

+
+

Subpackages

+
+ +
+
+
+

Submodules

+
+
+

arista.studio.v1.studio_pb2 module

+

Generated protocol buffer code.

+
+
+class arista.studio.v1.studio_pb2.AssignedTags
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.studio_pb2.AssignedTagsConfig
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.studio_pb2.AutofillAction
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.studio_pb2.AutofillActionConfig
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.studio_pb2.AutofillActionKey
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.studio_pb2.AutofillArgumentProvider
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.studio_pb2.AutofillArgumentProviders
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class arista.studio.v1.studio_pb2.BooleanInputFieldProps
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.studio_pb2.CollectionInputFieldProps
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.studio_pb2.Entities
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class arista.studio.v1.studio_pb2.Entity
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.studio_pb2.FloatInputFieldProps
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.studio_pb2.GroupInputFieldProps
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.studio_pb2.InputField
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.studio_pb2.InputFields
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class arista.studio.v1.studio_pb2.InputSchema
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.studio_pb2.Inputs
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.studio_pb2.InputsConfig
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.studio_pb2.InputsKey
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.studio_pb2.IntegerInputFieldProps
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.studio_pb2.Layout
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.studio_pb2.ResolverInputFieldProps
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.studio_pb2.SecretInput
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.studio_pb2.StringInputFieldProps
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.studio_pb2.Studio
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.studio_pb2.StudioConfig
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.studio_pb2.StudioKey
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.studio_pb2.StudioSummary
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.studio_pb2.TagMatcherInputFieldProps
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.studio_pb2.Template
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+

arista.studio.v1.studio_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/arista.studio.v1.services.html b/arista.studio.v1.services.html new file mode 100644 index 00000000..54754d37 --- /dev/null +++ b/arista.studio.v1.services.html @@ -0,0 +1,2849 @@ + + + + + + + + + arista.studio.v1.services package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

arista.studio.v1.services package

+
+

Submodules

+
+
+

arista.studio.v1.services.gen_pb2 module

+

Generated protocol buffer code.

+
+
+class arista.studio.v1.services.gen_pb2.AssignedTagsBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AssignedTagsBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AssignedTagsConfigBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AssignedTagsConfigBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AssignedTagsConfigDeleteAllRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AssignedTagsConfigDeleteAllResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AssignedTagsConfigDeleteRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AssignedTagsConfigDeleteResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AssignedTagsConfigDeleteSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AssignedTagsConfigDeleteSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AssignedTagsConfigRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AssignedTagsConfigResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AssignedTagsConfigSetRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AssignedTagsConfigSetResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AssignedTagsConfigSetSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AssignedTagsConfigSetSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AssignedTagsConfigSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AssignedTagsConfigSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AssignedTagsConfigStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AssignedTagsConfigStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AssignedTagsRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AssignedTagsResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AssignedTagsSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AssignedTagsSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AssignedTagsStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AssignedTagsStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AutofillActionBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AutofillActionBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AutofillActionConfigBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AutofillActionConfigBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AutofillActionConfigDeleteAllRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AutofillActionConfigDeleteAllResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AutofillActionConfigDeleteRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AutofillActionConfigDeleteResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AutofillActionConfigDeleteSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AutofillActionConfigDeleteSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AutofillActionConfigRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AutofillActionConfigResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AutofillActionConfigSetRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AutofillActionConfigSetResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AutofillActionConfigSetSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AutofillActionConfigSetSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AutofillActionConfigSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AutofillActionConfigSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AutofillActionConfigStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AutofillActionConfigStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AutofillActionRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AutofillActionResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AutofillActionSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AutofillActionSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AutofillActionStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.AutofillActionStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.InputsBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.InputsBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.InputsConfigBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.InputsConfigBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.InputsConfigDeleteAllRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.InputsConfigDeleteAllResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.InputsConfigDeleteRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.InputsConfigDeleteResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.InputsConfigDeleteSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.InputsConfigDeleteSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.InputsConfigRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.InputsConfigResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.InputsConfigSetRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.InputsConfigSetResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.InputsConfigSetSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.InputsConfigSetSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.InputsConfigSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.InputsConfigSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.InputsConfigStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.InputsConfigStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.InputsRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.InputsResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.InputsSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.InputsSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.InputsStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.InputsStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.MetaResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.SecretInputBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.SecretInputBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.SecretInputRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.SecretInputResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.SecretInputSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.SecretInputSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.SecretInputStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.SecretInputStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.StudioBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.StudioBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.StudioConfigBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.StudioConfigBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.StudioConfigDeleteAllRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.StudioConfigDeleteAllResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.StudioConfigDeleteRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.StudioConfigDeleteResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.StudioConfigDeleteSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.StudioConfigDeleteSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.StudioConfigRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.StudioConfigResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.StudioConfigSetRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.StudioConfigSetResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.StudioConfigSetSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.StudioConfigSetSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.StudioConfigSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.StudioConfigSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.StudioConfigStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.StudioConfigStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.StudioRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.StudioResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.StudioSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.StudioSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.StudioStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.StudioStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.StudioSummaryBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.StudioSummaryBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.StudioSummaryRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.StudioSummaryResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.StudioSummarySomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.StudioSummarySomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.StudioSummaryStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2.StudioSummaryStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+

arista.studio.v1.services.gen_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+class arista.studio.v1.services.gen_pb2_grpc.AssignedTagsConfigService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static Delete(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static DeleteAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static DeleteSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Set(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2_grpc.AssignedTagsConfigServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+Delete(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+DeleteAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+DeleteSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Set(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2_grpc.AssignedTagsConfigServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class arista.studio.v1.services.gen_pb2_grpc.AssignedTagsService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2_grpc.AssignedTagsServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2_grpc.AssignedTagsServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class arista.studio.v1.services.gen_pb2_grpc.AutofillActionConfigService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static Delete(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static DeleteAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static DeleteSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Set(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2_grpc.AutofillActionConfigServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+Delete(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+DeleteAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+DeleteSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Set(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2_grpc.AutofillActionConfigServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class arista.studio.v1.services.gen_pb2_grpc.AutofillActionService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2_grpc.AutofillActionServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2_grpc.AutofillActionServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class arista.studio.v1.services.gen_pb2_grpc.InputsConfigService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static Delete(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static DeleteAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static DeleteSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Set(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2_grpc.InputsConfigServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+Delete(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+DeleteAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+DeleteSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Set(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2_grpc.InputsConfigServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class arista.studio.v1.services.gen_pb2_grpc.InputsService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2_grpc.InputsServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2_grpc.InputsServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class arista.studio.v1.services.gen_pb2_grpc.SecretInputService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2_grpc.SecretInputServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2_grpc.SecretInputServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class arista.studio.v1.services.gen_pb2_grpc.StudioConfigService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static Delete(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static DeleteAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static DeleteSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Set(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2_grpc.StudioConfigServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+Delete(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+DeleteAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+DeleteSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Set(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2_grpc.StudioConfigServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class arista.studio.v1.services.gen_pb2_grpc.StudioService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2_grpc.StudioServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2_grpc.StudioServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class arista.studio.v1.services.gen_pb2_grpc.StudioSummaryService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2_grpc.StudioSummaryServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.studio.v1.services.gen_pb2_grpc.StudioSummaryServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+arista.studio.v1.services.gen_pb2_grpc.add_AssignedTagsConfigServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+arista.studio.v1.services.gen_pb2_grpc.add_AssignedTagsServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+arista.studio.v1.services.gen_pb2_grpc.add_AutofillActionConfigServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+arista.studio.v1.services.gen_pb2_grpc.add_AutofillActionServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+arista.studio.v1.services.gen_pb2_grpc.add_InputsConfigServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+arista.studio.v1.services.gen_pb2_grpc.add_InputsServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+arista.studio.v1.services.gen_pb2_grpc.add_SecretInputServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+arista.studio.v1.services.gen_pb2_grpc.add_StudioConfigServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+arista.studio.v1.services.gen_pb2_grpc.add_StudioServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+arista.studio.v1.services.gen_pb2_grpc.add_StudioSummaryServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/arista.subscriptions.html b/arista.subscriptions.html new file mode 100644 index 00000000..5ae0cdc4 --- /dev/null +++ b/arista.subscriptions.html @@ -0,0 +1,156 @@ + + + + + + + + + arista.subscriptions package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

arista.subscriptions package

+
+

Submodules

+
+
+

arista.subscriptions.subscriptions_pb2 module

+

Generated protocol buffer code.

+
+
+

arista.subscriptions.subscriptions_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/arista.tag.html b/arista.tag.html new file mode 100644 index 00000000..5fd64f99 --- /dev/null +++ b/arista.tag.html @@ -0,0 +1,195 @@ + + + + + + + + + arista.tag package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+
+ + + + \ No newline at end of file diff --git a/arista.tag.v2.html b/arista.tag.v2.html new file mode 100644 index 00000000..bc19907c --- /dev/null +++ b/arista.tag.v2.html @@ -0,0 +1,569 @@ + + + + + + + + + arista.tag.v2 package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

arista.tag.v2 package

+
+

Subpackages

+
+ +
+
+
+

Submodules

+
+
+

arista.tag.v2.tag_pb2 module

+

Generated protocol buffer code.

+
+
+class arista.tag.v2.tag_pb2.Tag
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.tag_pb2.TagAssignment
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.tag_pb2.TagAssignmentConfig
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.tag_pb2.TagAssignmentKey
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.tag_pb2.TagConfig
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.tag_pb2.TagKey
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+

arista.tag.v2.tag_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/arista.tag.v2.services.html b/arista.tag.v2.services.html new file mode 100644 index 00000000..bf268b35 --- /dev/null +++ b/arista.tag.v2.services.html @@ -0,0 +1,1307 @@ + + + + + + + + + arista.tag.v2.services package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

arista.tag.v2.services package

+
+

Submodules

+
+
+

arista.tag.v2.services.gen_pb2 module

+

Generated protocol buffer code.

+
+
+class arista.tag.v2.services.gen_pb2.MetaResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagAssignmentBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagAssignmentBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagAssignmentConfigBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagAssignmentConfigBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagAssignmentConfigDeleteAllRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagAssignmentConfigDeleteAllResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagAssignmentConfigDeleteRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagAssignmentConfigDeleteResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagAssignmentConfigDeleteSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagAssignmentConfigDeleteSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagAssignmentConfigRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagAssignmentConfigResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagAssignmentConfigSetRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagAssignmentConfigSetResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagAssignmentConfigSetSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagAssignmentConfigSetSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagAssignmentConfigSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagAssignmentConfigSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagAssignmentConfigStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagAssignmentConfigStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagAssignmentRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagAssignmentResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagAssignmentSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagAssignmentSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagAssignmentStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagAssignmentStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagConfigBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagConfigBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagConfigDeleteAllRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagConfigDeleteAllResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagConfigDeleteRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagConfigDeleteResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagConfigDeleteSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagConfigDeleteSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagConfigRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagConfigResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagConfigSetRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagConfigSetResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagConfigSetSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagConfigSetSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagConfigSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagConfigSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagConfigStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagConfigStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2.TagStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+

arista.tag.v2.services.gen_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+class arista.tag.v2.services.gen_pb2_grpc.TagAssignmentConfigService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static Delete(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static DeleteAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static DeleteSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Set(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2_grpc.TagAssignmentConfigServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+Delete(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+DeleteAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+DeleteSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Set(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2_grpc.TagAssignmentConfigServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class arista.tag.v2.services.gen_pb2_grpc.TagAssignmentService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2_grpc.TagAssignmentServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2_grpc.TagAssignmentServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class arista.tag.v2.services.gen_pb2_grpc.TagConfigService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static Delete(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static DeleteAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static DeleteSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Set(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2_grpc.TagConfigServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+Delete(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+DeleteAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+DeleteSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Set(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2_grpc.TagConfigServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class arista.tag.v2.services.gen_pb2_grpc.TagService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2_grpc.TagServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.tag.v2.services.gen_pb2_grpc.TagServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+arista.tag.v2.services.gen_pb2_grpc.add_TagAssignmentConfigServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+arista.tag.v2.services.gen_pb2_grpc.add_TagAssignmentServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+arista.tag.v2.services.gen_pb2_grpc.add_TagConfigServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+arista.tag.v2.services.gen_pb2_grpc.add_TagServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/arista.time.html b/arista.time.html new file mode 100644 index 00000000..e674b40b --- /dev/null +++ b/arista.time.html @@ -0,0 +1,167 @@ + + + + + + + + + arista.time package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

arista.time package

+
+

Submodules

+
+
+

arista.time.time_pb2 module

+

Generated protocol buffer code.

+
+
+class arista.time.time_pb2.TimeBounds
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+

arista.time.time_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/arista.workspace.html b/arista.workspace.html new file mode 100644 index 00000000..a0152fab --- /dev/null +++ b/arista.workspace.html @@ -0,0 +1,279 @@ + + + + + + + + + arista.workspace package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

arista.workspace package

+
+

Subpackages

+
+ +
+
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/arista.workspace.v1.html b/arista.workspace.v1.html new file mode 100644 index 00000000..0649faa1 --- /dev/null +++ b/arista.workspace.v1.html @@ -0,0 +1,889 @@ + + + + + + + + + arista.workspace.v1 package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

arista.workspace.v1 package

+
+

Subpackages

+
+ +
+
+
+

Submodules

+
+
+

arista.workspace.v1.workspace_pb2 module

+

Generated protocol buffer code.

+
+
+class arista.workspace.v1.workspace_pb2.AuthzResult
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.workspace_pb2.BuildStageState
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class arista.workspace.v1.workspace_pb2.ConfigSyncResult
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.workspace_pb2.ConfigValidationResult
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.workspace_pb2.ConfigletBuildResult
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.workspace_pb2.ConfigletBuildResults
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class arista.workspace.v1.workspace_pb2.ImageValidationResult
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.workspace_pb2.InputError
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.workspace_pb2.InputErrors
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.workspace_pb2.InputValidationResult
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.workspace_pb2.InputValidationResults
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class arista.workspace.v1.workspace_pb2.RequestParams
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.workspace_pb2.Response
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.workspace_pb2.Responses
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class arista.workspace.v1.workspace_pb2.StudioBuildDetails
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.workspace_pb2.TemplateError
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.workspace_pb2.TemplateErrors
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.workspace_pb2.Workspace
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.workspace_pb2.WorkspaceBuild
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.workspace_pb2.WorkspaceBuildDetails
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.workspace_pb2.WorkspaceBuildDetailsKey
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.workspace_pb2.WorkspaceBuildKey
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.workspace_pb2.WorkspaceConfig
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.workspace_pb2.WorkspaceKey
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.workspace_pb2.WorkspaceSyncConfig
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.workspace_pb2.WorkspaceSyncKey
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+

arista.workspace.v1.workspace_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/arista.workspace.v1.services.html b/arista.workspace.v1.services.html new file mode 100644 index 00000000..5f1372d3 --- /dev/null +++ b/arista.workspace.v1.services.html @@ -0,0 +1,1509 @@ + + + + + + + + + arista.workspace.v1.services package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

arista.workspace.v1.services package

+
+

Submodules

+
+
+

arista.workspace.v1.services.gen_pb2 module

+

Generated protocol buffer code.

+
+
+class arista.workspace.v1.services.gen_pb2.MetaResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceBuildBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceBuildBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceBuildDetailsBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceBuildDetailsBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceBuildDetailsRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceBuildDetailsResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceBuildDetailsSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceBuildDetailsSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceBuildDetailsStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceBuildDetailsStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceBuildRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceBuildResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceBuildSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceBuildSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceBuildStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceBuildStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceConfigBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceConfigBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceConfigDeleteAllRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceConfigDeleteAllResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceConfigDeleteRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceConfigDeleteResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceConfigDeleteSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceConfigDeleteSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceConfigRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceConfigResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceConfigSetRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceConfigSetResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceConfigSetSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceConfigSetSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceConfigSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceConfigSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceConfigStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceConfigStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigBatchedStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigBatchedStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigDeleteAllRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigDeleteAllResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigDeleteRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigDeleteResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigDeleteSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigDeleteSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigSetRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigSetResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigSetSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigSetSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigSomeRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigSomeResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigStreamRequest
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigStreamResponse
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+

arista.workspace.v1.services.gen_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+class arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildDetailsService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildDetailsServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildDetailsServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class arista.workspace.v1.services.gen_pb2_grpc.WorkspaceConfigService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static Delete(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static DeleteAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static DeleteSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Set(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2_grpc.WorkspaceConfigServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+Delete(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+DeleteAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+DeleteSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Set(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2_grpc.WorkspaceConfigServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class arista.workspace.v1.services.gen_pb2_grpc.WorkspaceService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2_grpc.WorkspaceServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2_grpc.WorkspaceServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class arista.workspace.v1.services.gen_pb2_grpc.WorkspaceSyncConfigService[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static Delete(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static DeleteAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static DeleteSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAllBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetOne(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Set(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SetSome(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeBatched(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SubscribeMeta(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2_grpc.WorkspaceSyncConfigServiceServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+Delete(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+DeleteAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+DeleteSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAll(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetAllBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetOne(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+GetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Set(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SetSome(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Subscribe(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeBatched(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+SubscribeMeta(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class arista.workspace.v1.services.gen_pb2_grpc.WorkspaceSyncConfigServiceStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+arista.workspace.v1.services.gen_pb2_grpc.add_WorkspaceBuildDetailsServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+arista.workspace.v1.services.gen_pb2_grpc.add_WorkspaceBuildServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+arista.workspace.v1.services.gen_pb2_grpc.add_WorkspaceConfigServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+arista.workspace.v1.services.gen_pb2_grpc.add_WorkspaceServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+arista.workspace.v1.services.gen_pb2_grpc.add_WorkspaceSyncConfigServiceServicer_to_server(servicer, server)[source]
+
+ +
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/cloudvision.Connector.auth.html b/cloudvision.Connector.auth.html new file mode 100644 index 00000000..db544fc0 --- /dev/null +++ b/cloudvision.Connector.auth.html @@ -0,0 +1,247 @@ + + + + + + + + + cloudvision.Connector.auth package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

cloudvision.Connector.auth package

+
+

Submodules

+
+
+

cloudvision.Connector.auth.cert module

+
+
+cloudvision.Connector.auth.cert.cert_from_pem(cert_pem: bytes) Certificate[source]
+

Generate cert object from PEM encoded cert.

+
+
Parameters:
+

cert_pem – Certificate PEM data

+
+
Returns:
+

Certificate object

+
+
+
+ +
+
+cloudvision.Connector.auth.cert.create_csr(cert: Certificate, key: Any) CertificateSigningRequest[source]
+

Create CSR from given cert and private key.

+
+
Parameters:
+
    +
  • cert – Certificate object

  • +
  • key – Private Key object

  • +
+
+
Returns:
+

CSR object

+
+
+
+ +
+
+cloudvision.Connector.auth.cert.gen_csr_der(cert_path: str, key_path: str) bytes[source]
+

Generate ASN.1 DER encoded CSR.

+
+
Parameters:
+
    +
  • cert_path – Certificate file path (PEM encoded)

  • +
  • key_path – Private Key file path (PEM encoded)

  • +
+
+
Returns:
+

ASN.1 DER encoded CSR data

+
+
+
+ +
+
+cloudvision.Connector.auth.cert.key_from_pem(key_pem: bytes, passphrase: bytes | None = None) Any[source]
+

Generate key object from PEM encoded private key.

+
+
Parameters:
+
    +
  • key_pem – Private key (PEM encoded)

  • +
  • passphrase – Passphrase used to decrypt the key

  • +
+
+
Returns:
+

Private key object

+
+
+
+ +
+
+cloudvision.Connector.auth.cert.load_cert(cert_path: str) Certificate[source]
+

Load certificate file (PEM encoded).

+
+
Parameters:
+

cert_path – Certificate file (PEM encoded)

+
+
Returns:
+

Certificate object

+
+
+
+ +
+
+cloudvision.Connector.auth.cert.load_key(key_path: str, passphrase: str | None = None) Any[source]
+

Load private key file (PEM encoded).

+
+
Parameters:
+
    +
  • key_path – Private key file (PEM encoded)

  • +
  • passphrase – Passphrase used to decrypt the key

  • +
+
+
Returns:
+

Private key object

+
+
+
+ +
+
+cloudvision.Connector.auth.cert.load_key_cert_pair(cert_path: str, key_path: str) Tuple[Certificate, Any][source]
+

Load key & cert files.

+
+
Parameters:
+
    +
  • cert_path – Certificate file path (PEM encoded)

  • +
  • key_path – Private key file path (PEM encoded)

  • +
+
+
Returns:
+

Certificate and Key object

+
+
+
+ +
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/cloudvision.Connector.codec.html b/cloudvision.Connector.codec.html new file mode 100644 index 00000000..9e21dfb8 --- /dev/null +++ b/cloudvision.Connector.codec.html @@ -0,0 +1,313 @@ + + + + + + + + + cloudvision.Connector.codec package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

cloudvision.Connector.codec package

+
+

Submodules

+
+
+

cloudvision.Connector.codec.custom_types module

+
+
+class cloudvision.Connector.codec.custom_types.Float32(x=0, /)[source]
+

Bases: float

+
+ +
+
+class cloudvision.Connector.codec.custom_types.FrozenDict(*args, **kwargs)[source]
+

Bases: Mapping

+

An immutable wrapper around dictionaries.

+

FrozenDict implements the complete collections.Mapping +interface. It can be used as a drop-in replacement for dictionaries where +immutability is desired, for instance with complex map keys.

+
+
+copy(**add_or_replace)[source]
+
+ +
+
+dict_cls
+

alias of dict

+
+ +
+ +
+
+class cloudvision.Connector.codec.custom_types.Path(keys=None)[source]
+

Bases: object

+
+ +
+
+class cloudvision.Connector.codec.custom_types.Wildcard[source]
+

Bases: object

+
+ +
+
+

cloudvision.Connector.codec.decoder module

+
+
+class cloudvision.Connector.codec.decoder.Decoder[source]
+

Bases: object

+
+
+decode(buf)[source]
+
+ +
+
+decode_array(arr)[source]
+
+ +
+
+decode_map(m)[source]
+
+ +
+ +
+
+

cloudvision.Connector.codec.encoder module

+
+
+class cloudvision.Connector.codec.encoder.Encoder[source]
+

Bases: object

+
+
+encode(val)[source]
+
+ +
+
+encode_array(a)[source]
+
+ +
+
+encode_map(m)[source]
+
+ +
+
+encode_string(s)[source]
+
+ +
+ +
+
+

Module contents

+

export all codec types used by other parts of the library.

+
+
+class cloudvision.Connector.codec.Decoder[source]
+

Bases: object

+
+
+decode(buf)[source]
+
+ +
+
+decode_array(arr)[source]
+
+ +
+
+decode_map(m)[source]
+
+ +
+ +
+
+class cloudvision.Connector.codec.Encoder[source]
+

Bases: object

+
+
+encode(val)[source]
+
+ +
+
+encode_array(a)[source]
+
+ +
+
+encode_map(m)[source]
+
+ +
+
+encode_string(s)[source]
+
+ +
+ +
+
+class cloudvision.Connector.codec.Float32(x=0, /)[source]
+

Bases: float

+
+ +
+
+class cloudvision.Connector.codec.FrozenDict(*args, **kwargs)[source]
+

Bases: Mapping

+

An immutable wrapper around dictionaries.

+

FrozenDict implements the complete collections.Mapping +interface. It can be used as a drop-in replacement for dictionaries where +immutability is desired, for instance with complex map keys.

+
+
+copy(**add_or_replace)[source]
+
+ +
+
+dict_cls
+

alias of dict

+
+ +
+ +
+
+class cloudvision.Connector.codec.Path(keys=None)[source]
+

Bases: object

+
+ +
+
+class cloudvision.Connector.codec.Wildcard[source]
+

Bases: object

+
+ +
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/cloudvision.Connector.core.html b/cloudvision.Connector.core.html new file mode 100644 index 00000000..fc8f20a1 --- /dev/null +++ b/cloudvision.Connector.core.html @@ -0,0 +1,152 @@ + + + + + + + + + cloudvision.Connector.core package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

cloudvision.Connector.core package

+
+

Submodules

+
+
+

cloudvision.Connector.core.utils module

+

Utility module.

+
+
+cloudvision.Connector.core.utils.get_dict(whatever: Any, default: Dict[Any, Any] = {}) Dict[Any, Any][source]
+

Get dictionary.

+
+
Parameters:
+
    +
  • whatever – Given object

  • +
  • default – Given default object (default is empty dict)

  • +
+
+
Returns:
+

A dictionary or the default value

+
+
+
+ +
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/cloudvision.Connector.gen.html b/cloudvision.Connector.gen.html new file mode 100644 index 00000000..006ccc16 --- /dev/null +++ b/cloudvision.Connector.gen.html @@ -0,0 +1,714 @@ + + + + + + + + + cloudvision.Connector.gen package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

cloudvision.Connector.gen package

+
+

Submodules

+
+
+

cloudvision.Connector.gen.ca_pb2 module

+

Generated protocol buffer code.

+
+
+

cloudvision.Connector.gen.ca_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+class cloudvision.Connector.gen.ca_pb2_grpc.CertificateAuthority[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static Enroll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Reenroll(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class cloudvision.Connector.gen.ca_pb2_grpc.CertificateAuthorityServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+Enroll(request, context)[source]
+

Enroll is called by client passing Certificate Signing Request (CSR) +containing its personal certificate to be signed. The server returns +back the certificate (CRT) to authenticate into IngestGateway or Router.

+
+ +
+
+Reenroll(request, context)[source]
+

Reenroll is called by client passing Certificate Signing Request (CSR) +when it wants to renew its personal certificate. The server returns +a new certificate (CRT).

+
+ +
+ +
+
+class cloudvision.Connector.gen.ca_pb2_grpc.CertificateAuthorityStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+cloudvision.Connector.gen.ca_pb2_grpc.add_CertificateAuthorityServicer_to_server(servicer, server)[source]
+
+ +
+
+

cloudvision.Connector.gen.notification_pb2 module

+

Generated protocol buffer code.

+
+
+

cloudvision.Connector.gen.notification_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+

cloudvision.Connector.gen.router_pb2 module

+

Generated protocol buffer code.

+
+
+

cloudvision.Connector.gen.router_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+class cloudvision.Connector.gen.router_pb2_grpc.Alpha[source]
+

Bases: object

+

Alpha services are deprecated. Please use SearchV1

+
+
+static DeleteCustomSchema(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Search(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SearchSubscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SearchWithAggregation(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SearchWithAggregationStream(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SetCustomSchema(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class cloudvision.Connector.gen.router_pb2_grpc.AlphaServicer[source]
+

Bases: object

+

Alpha services are deprecated. Please use SearchV1

+
+
+DeleteCustomSchema(request, context)[source]
+

for custom schema deletion +This is alpha version of this api and doesn’t synchronize across apiserver instances. +apiserver restart is needed to get updated schema information from hbase.

+
+ +
+
+Search(request, context)[source]
+

you know, for search…

+
+ +
+
+SearchSubscribe(request, context)[source]
+

SearchSubscribe allows the client to request a live stream of updates +based on client search request

+
+ +
+
+SearchWithAggregation(request, context)[source]
+

for search with aggregation

+
+ +
+
+SearchWithAggregationStream(request, context)[source]
+

SearchWithAggregationStream sends the protobuf-serialized form of AggrResponse as in a stream +of byteArrays. Receiver needs to append the “bytearrays”, and protobuf-deserialize +to obtain the result. Intended for messages exceeding the grpc size limit

+
+ +
+
+SetCustomSchema(request, context)[source]
+

for custom schema configuration

+
+ +
+ +
+
+class cloudvision.Connector.gen.router_pb2_grpc.AlphaStub(channel)[source]
+

Bases: object

+

Alpha services are deprecated. Please use SearchV1

+
+ +
+
+class cloudvision.Connector.gen.router_pb2_grpc.Auth[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static CreateDataset(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static CreateSession(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetPermissionSet(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SetPassword(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SetPermission(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class cloudvision.Connector.gen.router_pb2_grpc.AuthServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+CreateDataset(request, context)[source]
+

CreateDataset from a given Dataset wrapped in a CreateDatasetRequest

+
+ +
+
+CreateSession(request, context)[source]
+

CreateSession creates session for user

+
+ +
+
+GetPermissionSet(request, context)[source]
+

GetPermissionSet returns the set of all permissions present for the datasets specified +in the ‘query’(s) of the GetRequest.

+
+ +
+
+SetPassword(request, context)[source]
+

SetPassword sets the password for a user.

+
+ +
+
+SetPermission(request, context)[source]
+

SetPermission sets a permission for a dataset using a SetPermissionRequest.

+
+ +
+ +
+
+class cloudvision.Connector.gen.router_pb2_grpc.AuthStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class cloudvision.Connector.gen.router_pb2_grpc.Cluster[source]
+

Bases: object

+

Cluster service gives some descriptions about the cluster where the service +is running.

+
+
+static ClusterInfo(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class cloudvision.Connector.gen.router_pb2_grpc.ClusterServicer[source]
+

Bases: object

+

Cluster service gives some descriptions about the cluster where the service +is running.

+
+
+ClusterInfo(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class cloudvision.Connector.gen.router_pb2_grpc.ClusterStub(channel)[source]
+

Bases: object

+

Cluster service gives some descriptions about the cluster where the service +is running.

+
+ +
+
+class cloudvision.Connector.gen.router_pb2_grpc.Querier[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static SQL(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class cloudvision.Connector.gen.router_pb2_grpc.QuerierServicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+SQL(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+ +
+
+class cloudvision.Connector.gen.router_pb2_grpc.QuerierStub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class cloudvision.Connector.gen.router_pb2_grpc.RouterV1[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+static Get(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetAndSubscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static GetDatasets(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Publish(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Subscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class cloudvision.Connector.gen.router_pb2_grpc.RouterV1Servicer[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+
+Get(request, context)[source]
+

Get is used to request notifications for a given path over a specified time range. +Wildcards are supported with Get requests, but when given a range of time the server +will resolve all wildcard paths at the starting timestamp of the given range, so any +pointers and/or paths that are created after the given start timestamp will not be +accounted for during wildcard resolution. The client may receive duplicate notifications.

+
+ +
+
+GetAndSubscribe(request, context)[source]
+

GetAndSubscribe allows the client to issue one request to do both Get and Subscribe requests. +The server will first send a mix of subscribe and get batches, and there’s no distinction +between which batches are subscribe or get batches. Then the server will send a sync signal +signaling that the Get stream has finished. After that, server will stream out only subscribe +batches. There’s no order guarantee for batches received by client. +The end of get stream sync signal will be in the Metadata field in the NotificationBatch, as +1 key, value pair: [GetRequest:EOF]. If there are batches returned from Get request, this +metadata will be in the last Get batch; if there’s no results from Get, it will be sent +in an empty NotificationBatch with only the Metadata field.

+
+ +
+
+GetDatasets(request, context)[source]
+

Missing associated documentation comment in .proto file.

+
+ +
+
+Publish(request, context)[source]
+

Publish is used to send notifications to Cloudvision. +They will be saved into the storage and sent to all +the clients subscribing to the same device/path.

+
    +
  • Publish guarantees atomicity of the data saved per {timestamp+path+key}.

  • +
+

For Notification => For one Notification having multiple keys, +each key is ensured to be saved atomically +but atomicity is not guaranteed for the entire notification. +For NotificationBatch => if Notif[1] and Notif[5] +both have updates for a {timestamp+path+key} +either the update of Notif[1] will be saved, or the update of Notif[5] will be saved. +The value will be one or the other, not a corrupted combination of both requests.

+
    +
  • There is no guarantee for write order within a single publish request.

  • +
+

When sending multiple notifications where multiple notification will have +the same timestamp, path and keys, +Publish does not guarantee that Notif[1] will be processed before Notif[5] +This means that for two notifications in the same Publish call having the +same {timestamp+path+key}, the result is undefined and will randomly vary +(i.e. the first notif data will be saved, or the second one). +The client must send two synchronous Publish requests to guarantee +the write order at which the requests are processed.

+
    +
  • Publish is asynchronous by default:

  • +
+

When the call to Publish ends without error, it means the data has been +correctly received by Cloudvision but not stored yet. +So, if a “get” call is done right after the Publish call, the get might +not return the data just published. +When the “sync” field is set to true in PublishRequest, the Publish +will be synchronous: +When the call to Publish ends without error, it means the data has been +correctly received AND stored by Cloudvision. +So, if a “get” call is done right after the synchronous Publish call, the get will +return the data just published (unless someone else stored more recent data of course).

+
    +
  • Client-side and Server-side timestamping:

  • +
+

The notification object has a timestamp that can be populated by the client. +In case the Client sends a notification with a “null” timestamp as the +Notification.timestamp field, the server will populate the timestamp with +the current time of the node with the server process is running. +This “current time” will be queried once at the beginning of the Publish request +and will be used as the Notification.timestamp for all the notification having this field +as null.

+
+ +
+
+Subscribe(request, context)[source]
+

Subscribe allows the client to request a live stream of updates +(V1: either based on regexp or exact match, V2: based on exact match)

+

There is no order guarantee for batches received by subscribers. +It means that two batches A and B published synchronously (B is published after A) +the subscribers can receive batch A first or B second, OR batch B first and A second. +This is also true for notifications within a batch. +The backend can decide to split a batch and reorder notifications so subscribers +might receive notifications within a batch in a different order that they were published.

+
+ +
+ +
+
+class cloudvision.Connector.gen.router_pb2_grpc.RouterV1Stub(channel)[source]
+

Bases: object

+

Missing associated documentation comment in .proto file.

+
+ +
+
+class cloudvision.Connector.gen.router_pb2_grpc.Search[source]
+

Bases: object

+

Search provides methods to query CloudVision using the Search service.

+
+
+static DeleteCustomSchema(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static Search(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SearchSubscribe(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SearchWithAggregation(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SearchWithAggregationStream(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+
+static SetCustomSchema(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None)[source]
+
+ +
+ +
+
+class cloudvision.Connector.gen.router_pb2_grpc.SearchServicer[source]
+

Bases: object

+

Search provides methods to query CloudVision using the Search service.

+
+
+DeleteCustomSchema(request, context)[source]
+

for custom schema deletion +This is alpha version of this api and doesn’t synchronize across apiserver instances. +apiserver restart is needed to get updated schema information from hbase.

+
+ +
+
+Search(request, context)[source]
+

you know, for search…

+
+ +
+
+SearchSubscribe(request, context)[source]
+

SearchSubscribe allows the client to request a live stream of updates +based on client search request

+
+ +
+
+SearchWithAggregation(request, context)[source]
+

for search with aggregation

+
+ +
+
+SearchWithAggregationStream(request, context)[source]
+

SearchWithAggregationStream sends the protobuf-serialized form of AggrResponse as in a stream +of byteArrays. Receiver needs to append the “bytearrays”, and protobuf-deserialize +to obtain the result. Intended for messages exceeding the grpc size limit

+
+ +
+
+SetCustomSchema(request, context)[source]
+

for custom schema configuration

+
+ +
+ +
+
+class cloudvision.Connector.gen.router_pb2_grpc.SearchStub(channel)[source]
+

Bases: object

+

Search provides methods to query CloudVision using the Search service.

+
+ +
+
+cloudvision.Connector.gen.router_pb2_grpc.add_AlphaServicer_to_server(servicer, server)[source]
+
+ +
+
+cloudvision.Connector.gen.router_pb2_grpc.add_AuthServicer_to_server(servicer, server)[source]
+
+ +
+
+cloudvision.Connector.gen.router_pb2_grpc.add_ClusterServicer_to_server(servicer, server)[source]
+
+ +
+
+cloudvision.Connector.gen.router_pb2_grpc.add_QuerierServicer_to_server(servicer, server)[source]
+
+ +
+
+cloudvision.Connector.gen.router_pb2_grpc.add_RouterV1Servicer_to_server(servicer, server)[source]
+
+ +
+
+cloudvision.Connector.gen.router_pb2_grpc.add_SearchServicer_to_server(servicer, server)[source]
+
+ +
+
+

cloudvision.Connector.gen.sharding_pb2 module

+

Generated protocol buffer code.

+
+
+

cloudvision.Connector.gen.sharding_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/cloudvision.Connector.grpc_client.html b/cloudvision.Connector.grpc_client.html new file mode 100644 index 00000000..e9de751b --- /dev/null +++ b/cloudvision.Connector.grpc_client.html @@ -0,0 +1,467 @@ + + + + + + + + + cloudvision.Connector.grpc_client package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

cloudvision.Connector.grpc_client package

+
+

Submodules

+
+
+

cloudvision.Connector.grpc_client.grpcClient module

+
+
+class cloudvision.Connector.grpc_client.grpcClient.GRPCClient(grpcAddr: str, *, certs: str | None = None, key: str | None = None, ca: str | None = None, token: str | None = None, tokenValue: str | None = None, certsValue: str | None = None, keyValue: str | None = None, caValue: str | None = None, channel_options: Dict[str, Any] = {})[source]
+

Bases: object

+

GRPCClient implements the protobuf client as well as its methods. +grpcAddr must be a valid apiserver address in the format <ADDRESS>:<PORT>. +certs, if present, must be the path to the cert file. +key, if present, must be the path to a .pem key file. +ca, if present, must be the path to a root certificate authority file. +token, if present, must be the path a .tok user access token. +tokenValue, if present, is the actual token in string form. Cannot be set with token +certsValue, if present, is the actual certs in string form. Cannot be set with certs +keyValue, if present, is the actual key in string form. Cannot be set with key +caValue, if present, is the actual ca in string form. Cannot be set with ca

+
+
+AUTH_KEY_PATH = 'access_token'
+
+ +
+
+DEFAULT_CHANNEL_OPTIONS = {'grpc.http2.max_pings_without_data': 0, 'grpc.keepalive_time_ms': 60000, 'grpc.primary_user_agent': 'cloudvision.Connector/1.21.1'}
+
+ +
+
+close()[source]
+
+ +
+
+create_custom_schema_index_request(d_name, path_elements, schema, delete_after_days, d_type) CustomIndexSchema[source]
+

Create custom index schema request from given imputs.

+
+
Parameters:
+
    +
  • d_name – Dataset name on aeris

  • +
  • path_elements – Path elements for which schema needs to be set

  • +
  • schema – Schema to be set

  • +
  • delete_after_days – Number of days after which data would be deleted

  • +
  • d_type – Type of the dataset

  • +
+
+
Returns:
+

Custom index schema request

+
+
+
+ +
+
+create_dataset(dtype, dId) None[source]
+
+ +
+
+decode_batch(batch)[source]
+
+ +
+
+decode_notification(notif)[source]
+
+ +
+
+get(queries: List[Query], start: Timestamp | datetime | None = None, end: Timestamp | datetime | None = None, versions=0, sharding=None, exact_range=False)[source]
+

Get creates and executes a Get protobuf message, returning a stream of +notificationBatch. +queries must be a list of querry protobuf messages. +start and end, if present, must be nanoseconds timestamps (uint64). +sharding, if present must be a protobuf sharding message.

+
+ +
+
+get_datasets(types: List[str] | None = None)[source]
+

GetDatasets retrieves all the datasets streaming on CloudVision. +types, if present, filter the queried dataset by types

+
+ +
+
+publish(dId, notifs: List[Notification], dtype: str = 'device', sync: bool = True, compare: Tuple[Any, Any] | None = None) None[source]
+

Publish creates and executes a Publish protobuf message. +refer to cloudvision/Connector/protobufs/router.proto:124 +default to sync publish being true so that changes are reflected

+
+ +
+
+reenroll(cert_path: str, key_path: str) bytes[source]
+

Reenroll the existing certificate.

+

Caller can pass their current key and certificate and receive a renewed +certificate in return. +The default validity of the renewed certificate is 90 days.

+
+
Parameters:
+
    +
  • cert_path – Certificate file path

  • +
  • key_path – Private Key file path

  • +
+
+
Returns:
+

Renewed Certificate in ASN.1 DER

+
+
+
+ +
+
+search(search_type=4, d_type: str = 'device', d_name: str = '', result_size: int = 1, start: Timestamp | datetime | None = None, end: Timestamp | datetime | None = None, path_elements=[], key_filters: Iterable[Filter] = [], value_filters: Iterable[Filter] = [], exact_range: bool = False, offset: int = 0, exact_term: bool = False, sort: Iterable[Sort] = [], count_only: bool = False)[source]
+
+ +
+
+set_custom_schema(d_name: str, path_elements: Iterable[str], schema: Iterable[IndexField], delete_after_days: int = 34, d_type: str = 'device') Empty[source]
+

Set custom index schema for given path.

+
+
Parameters:
+
    +
  • d_name – Dataset name on aeris

  • +
  • path_elements – Path elements for which schema needs to be set

  • +
  • schema – Schema to be set

  • +
  • delete_after_days – Number of days after which data would be deleted

  • +
  • d_type – Type of the dataset

  • +
+
+
Returns:
+

Empty message

+
+
+
+ +
+
+subscribe(queries, sharding=None)[source]
+

Subscribe creates and executes a Subscribe protobuf message, +returning a stream of notificationBatch. +queries must be a list of querry protobuf messages. +sharding, if present must be a protobuf sharding message.

+
+ +
+ +
+
+cloudvision.Connector.grpc_client.grpcClient.create_notification(ts: Timestamp | datetime, paths: List[Any], deletes: List[Any] | None = None, updates: List[Tuple[Any, Any]] | None = None, retracts: List[Any] | None = None) Notification[source]
+

create_notification creates a notification protobuf message. +ts must be a google.protobuf.timestamp_pb2.Timestamp or a +python datetime object. +paths must be a list of path elements. +deletes and retracts, if present, must be lists of keys. +updates, if present, must be of the form [(key, value)…].

+
+ +
+
+cloudvision.Connector.grpc_client.grpcClient.create_query(pathKeys: List[Any], dId: str, dtype: str = 'device') Query[source]
+

create_query creates a protobuf query message with dataset ID dId +and dataset type dtype. +pathKeys must be of the form [([pathElts…], [keys…])…]

+
+ +
+
+cloudvision.Connector.grpc_client.grpcClient.to_pbts(ts: Timestamp | datetime) Timestamp[source]
+
+ +
+
+

Module contents

+
+
+class cloudvision.Connector.grpc_client.GRPCClient(grpcAddr: str, *, certs: str | None = None, key: str | None = None, ca: str | None = None, token: str | None = None, tokenValue: str | None = None, certsValue: str | None = None, keyValue: str | None = None, caValue: str | None = None, channel_options: Dict[str, Any] = {})[source]
+

Bases: object

+

GRPCClient implements the protobuf client as well as its methods. +grpcAddr must be a valid apiserver address in the format <ADDRESS>:<PORT>. +certs, if present, must be the path to the cert file. +key, if present, must be the path to a .pem key file. +ca, if present, must be the path to a root certificate authority file. +token, if present, must be the path a .tok user access token. +tokenValue, if present, is the actual token in string form. Cannot be set with token +certsValue, if present, is the actual certs in string form. Cannot be set with certs +keyValue, if present, is the actual key in string form. Cannot be set with key +caValue, if present, is the actual ca in string form. Cannot be set with ca

+
+
+AUTH_KEY_PATH = 'access_token'
+
+ +
+
+DEFAULT_CHANNEL_OPTIONS = {'grpc.http2.max_pings_without_data': 0, 'grpc.keepalive_time_ms': 60000, 'grpc.primary_user_agent': 'cloudvision.Connector/1.21.1'}
+
+ +
+
+close()[source]
+
+ +
+
+create_custom_schema_index_request(d_name, path_elements, schema, delete_after_days, d_type) CustomIndexSchema[source]
+

Create custom index schema request from given imputs.

+
+
Parameters:
+
    +
  • d_name – Dataset name on aeris

  • +
  • path_elements – Path elements for which schema needs to be set

  • +
  • schema – Schema to be set

  • +
  • delete_after_days – Number of days after which data would be deleted

  • +
  • d_type – Type of the dataset

  • +
+
+
Returns:
+

Custom index schema request

+
+
+
+ +
+
+create_dataset(dtype, dId) None[source]
+
+ +
+
+decode_batch(batch)[source]
+
+ +
+
+decode_notification(notif)[source]
+
+ +
+
+get(queries: List[Query], start: Timestamp | datetime | None = None, end: Timestamp | datetime | None = None, versions=0, sharding=None, exact_range=False)[source]
+

Get creates and executes a Get protobuf message, returning a stream of +notificationBatch. +queries must be a list of querry protobuf messages. +start and end, if present, must be nanoseconds timestamps (uint64). +sharding, if present must be a protobuf sharding message.

+
+ +
+
+get_datasets(types: List[str] | None = None)[source]
+

GetDatasets retrieves all the datasets streaming on CloudVision. +types, if present, filter the queried dataset by types

+
+ +
+
+publish(dId, notifs: List[Notification], dtype: str = 'device', sync: bool = True, compare: Tuple[Any, Any] | None = None) None[source]
+

Publish creates and executes a Publish protobuf message. +refer to cloudvision/Connector/protobufs/router.proto:124 +default to sync publish being true so that changes are reflected

+
+ +
+
+reenroll(cert_path: str, key_path: str) bytes[source]
+

Reenroll the existing certificate.

+

Caller can pass their current key and certificate and receive a renewed +certificate in return. +The default validity of the renewed certificate is 90 days.

+
+
Parameters:
+
    +
  • cert_path – Certificate file path

  • +
  • key_path – Private Key file path

  • +
+
+
Returns:
+

Renewed Certificate in ASN.1 DER

+
+
+
+ +
+
+search(search_type=4, d_type: str = 'device', d_name: str = '', result_size: int = 1, start: Timestamp | datetime | None = None, end: Timestamp | datetime | None = None, path_elements=[], key_filters: Iterable[Filter] = [], value_filters: Iterable[Filter] = [], exact_range: bool = False, offset: int = 0, exact_term: bool = False, sort: Iterable[Sort] = [], count_only: bool = False)[source]
+
+ +
+
+set_custom_schema(d_name: str, path_elements: Iterable[str], schema: Iterable[IndexField], delete_after_days: int = 34, d_type: str = 'device') Empty[source]
+

Set custom index schema for given path.

+
+
Parameters:
+
    +
  • d_name – Dataset name on aeris

  • +
  • path_elements – Path elements for which schema needs to be set

  • +
  • schema – Schema to be set

  • +
  • delete_after_days – Number of days after which data would be deleted

  • +
  • d_type – Type of the dataset

  • +
+
+
Returns:
+

Empty message

+
+
+
+ +
+
+subscribe(queries, sharding=None)[source]
+

Subscribe creates and executes a Subscribe protobuf message, +returning a stream of notificationBatch. +queries must be a list of querry protobuf messages. +sharding, if present must be a protobuf sharding message.

+
+ +
+ +
+
+cloudvision.Connector.grpc_client.create_notification(ts: Timestamp | datetime, paths: List[Any], deletes: List[Any] | None = None, updates: List[Tuple[Any, Any]] | None = None, retracts: List[Any] | None = None) Notification[source]
+

create_notification creates a notification protobuf message. +ts must be a google.protobuf.timestamp_pb2.Timestamp or a +python datetime object. +paths must be a list of path elements. +deletes and retracts, if present, must be lists of keys. +updates, if present, must be of the form [(key, value)…].

+
+ +
+
+cloudvision.Connector.grpc_client.create_query(pathKeys: List[Any], dId: str, dtype: str = 'device') Query[source]
+

create_query creates a protobuf query message with dataset ID dId +and dataset type dtype. +pathKeys must be of the form [([pathElts…], [keys…])…]

+
+ +
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/cloudvision.Connector.html b/cloudvision.Connector.html new file mode 100644 index 00000000..9dab1fac --- /dev/null +++ b/cloudvision.Connector.html @@ -0,0 +1,408 @@ + + + + + + + + + cloudvision.Connector package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

cloudvision.Connector package

+
+

Subpackages

+
+ +
+
+
+

Module contents

+
+
+cloudvision.Connector.process_notifs(stream, paths={}, keys={}, nominalKeys=None)[source]
+

process_notifs consume the batch coming from stream and return them +as a hierarchy of dataset, path, and keys. Allowing for faster access +of a given time serie.

+
+ +
+
+cloudvision.Connector.sort_dict(resDict)[source]
+

sort_dict orders every timeseries in a hierarchy of dataset by its timestamps.

+
+ +
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/cloudvision.Connector.protobuf.html b/cloudvision.Connector.protobuf.html new file mode 100644 index 00000000..bd7da65c --- /dev/null +++ b/cloudvision.Connector.protobuf.html @@ -0,0 +1,128 @@ + + + + + + + + + cloudvision.Connector.protobuf package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

cloudvision.Connector.protobuf package

+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/cloudvision.cvlib.html b/cloudvision.cvlib.html new file mode 100644 index 00000000..b76a742c --- /dev/null +++ b/cloudvision.cvlib.html @@ -0,0 +1,1523 @@ + + + + + + + + + cloudvision.cvlib package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

cloudvision.cvlib package

+
+

Submodules

+
+
+

cloudvision.cvlib.action module

+
+
+class cloudvision.cvlib.action.Action(name: str, actionId: str, context: ActionContext = ActionContext.Unknown, args: Dict[str, str] | None = None, ccId: str | None = None, stageId: str | None = None)[source]
+

Bases: object

+

Object to store common change control action script arguments: +- name: Name of the action currently running +- context: Enum for the context in which the action is running,

+
+

e.g. Action that is running is a change control action

+
+
    +
  • actionId: ID of the action currently running

  • +
  • args: String -> String dictionary of the args associated with the action

  • +
  • ccId: ID of the change control, if applicable

  • +
  • stageId: ID of the current stage of the change control, if applicable

  • +
+
+
+getCCStartTime(cvClient: GRPCClient)[source]
+

Queries the cloudvision database for the change control start time +:param cvClient: context.getCvClient() client +:return: nanosecond start timestamp of the change control

+
+ +
+ +
+
+class cloudvision.cvlib.action.ActionContext(value, names=<not given>, *values, module=None, qualname=None, type=None, start=1, boundary=None)[source]
+

Bases: Enum

+

Enum class used to store the various contexts in which actions are executed in

+
+
+ChangeControl = 1
+
+ +
+
+StudioAutofill = 2
+
+ +
+
+StudioBuildHook = 3
+
+ +
+
+Unknown = 0
+
+ +
+ +
+
+

cloudvision.cvlib.changecontrol module

+
+
+class cloudvision.cvlib.changecontrol.ChangeControl(ccId: str | None = None, stageId: str | None = None, args: Dict[str, str] | None = None)[source]
+

Bases: object

+

(Deprecated) Please use ctx.action instead for various field information +Object to store common change control action script arguments: +- ccId: ID of the change control, if applicable +- stageId: ID of the current stage of the change control, if applicable +- args: Dict of user-defined/script defined arguments that are passed in

+
+
+getStartTime(cvClient: GRPCClient)[source]
+

Queries the cloudvision database for the change control start time +:param cvClient: context.getCvClient() client +:return: nanosecond start timestamp of the change control

+
+ +
+ +
+
+

cloudvision.cvlib.connections module

+
+
+class cloudvision.cvlib.connections.AuthAndEndpoints(apiserverAddr: str | None = None, serviceAddr: str | None = None, serviceCACert: str | None = None, aerisCACert: str | None = None, commandEndpoint: str | None = None, logEndpoint: str | None = None, connectionTimeout: int | None = 250, cliTimeout: int | None = 200, testAddresses: Dict[str, str] | None = None)[source]
+

Bases: object

+

Object to store auth and endpoint information for use in the context object +- apiserverAddr: Address of the CloudVision apiserver +- serviceAddr: Address of the CloudVision service proxy server, e.g. ambassador address +- cacert: Path to local CA Cert, used for establishing CV grpc connections +- commandEndpoint: Service endpoint where command requests are posted to +- logEndpoint: Service endpoint where log requests are posted to +- connectionTimeout: Timeout value for connections to endpoints in seconds +- cliTimeout: Timeout value for cli commands invoked by connections +- testAddresses: Api addresses to use when execution is in a test context

+
+ +
+
+cloudvision.cvlib.connections.addHeaderInterceptor(header, value)[source]
+
+ +
+
+cloudvision.cvlib.connections.create(intercept_call)[source]
+
+ +
+
+

cloudvision.cvlib.constants module

+
+
+

cloudvision.cvlib.context module

+
+
+class cloudvision.cvlib.context.Context(user: User, device: Device | None = None, action: Action | None = None, changeControl: ChangeControl | None = None, studio: Studio | None = None, execution: Execution | None = None, connections: AuthAndEndpoints | None = None, logger: Logger | None = None, loggingLevel: LoggingLevel | None = None)[source]
+

Bases: object

+

Context object that stores a number of system and user-defined parameters: +- user: Info on the user executing this script +- device: Info on the device the script is operating on, if applicable +- action: Info on the action associated with the current context, if applicable +- changeControl: Common change-control script parameters (Deprecated, use action) +- studio: Common studio parameters +- execution: Info on the standalone execution context +- connections: Object storing connection info used by the context, e.g. apiserver address +- logger: Logging functions to be used by the context

+
+
+Get(path: List[str], keys: List[str] = [], dataset: str = 'analytics')[source]
+

Get issues a get request to the provided path/key(s) combo, and returns the contents +of that path as a dictionary. Wildcarding is not advised as the returned dictionary +is only a single level deep, so adding wildcards will cause overwrites in the results.

+

Params: +- path: The path to issue the get to, in the form of a list of strings +- keys: The key(s) to get at the path. Defaults to all keys +- dataset: The dataset to issue the get to. Defaults to the analytics dataset

+
+ +
+
+activateDebugMode()[source]
+

Activates debug logging by setting the logging level to debug

+
+ +
+
+alog(message, userName=None, customKey=None, tags: Dict[str, str] = None, ignoreFailures=False)[source]
+

Creates an audit log entry in CloudVision, with the provided info. +The context’s associated device name and id will be added to the audit log metadata +if it is available in the context.

+
+
Parameters:
+
    +
  • message – The string message for the audit log entry

  • +
  • userName – The user to make the audit log entry under. If unspecified, will +use the context’s user’s username

  • +
  • customKey – A custom key that will be used to alias the audit log entry if provided

  • +
  • tags – A string dictionary of additional custom tags to add to the audit log +entry. The action ID is always added as a tag to the audit log

  • +
  • ignoreFailures – Prevents logging exceptions from being raised

  • +
+
+
+
+ +
+
+benchmark(func: Callable[[...], Any]) Callable[[...], Any][source]
+
+ +
+
+benchmarkDump()[source]
+
+ +
+
+benchmarkingOff()[source]
+
+ +
+
+benchmarkingOn()[source]
+

Turns on benchmarking to collect stats such as time consumed in a routine +of the template +To use add the following lines into the template:

+
+

ctx.benchmarkingOn() - place this as the first line after imports in the template +@ctx.benchmark - decorate the functions of the template to be benchmarked +ctx.benchmarkDump() - place this as the last line in the template

+
+
+ +
+
+clear(path: List, keys: List = [], fullPathOnly: bool = False)[source]
+

clear issues deletes to the backend data store for cleanup, where retrieve with +delete is not required or not suitable. By default, it walks upwards through +each element in the path provided and issues a delete-all at each sub-path +to purge the information store. The fullPathOnly flag can be set to true to only +issue a deletes to the full path, instead of at all sub-paths in the path. A list +of keys to specifically delete can be provided to only delete those fields.

+

NOTE: While this function accepts wildcards, note that using them may +impact other storage paths used in other actions.

+

Params: +- path: The path where the data should be purged, in the form of a list

+
+

of strings or Connector Wildcards.

+
+
    +
  • keys: The list of keys to delete. Defaults to a delete-all.

  • +
  • +
    fullPathOnly: Boolean flag marking whether a delete-all should only be issued

    to the store for full path. +By default, deletes are issued at all sub-paths.

    +
    +
    +
  • +
+
+ +
+
+critical(msg, ignoreFailures=False, tags: Dict[str, str] = None)[source]
+

Creates a critical level log +:param msg: The string message for the log entry +:param ignoreFailures: Prevents logging exceptions from being raised +:param tags: A string dictionary of additional custom tags to add to the log

+
+

entry. Some system tags are always inserted, e.g. buildID +when logging is done in a studio context.

+
+
+ +
+
+deactivateDebugMode()[source]
+

Deactivates debug logging by setting the logging level to info

+
+ +
+
+debug(msg, ignoreFailures=False, tags: Dict[str, str] = None)[source]
+

Creates a debug level log if the context’s logging level is set to allow for it +If the logging level is higher, is a no-op +:param msg: The string message for the log entry +:param ignoreFailures: Prevents logging exceptions from being raised +:param tags: A string dictionary of additional custom tags to add to the log

+
+

entry. Some system tags are always inserted, e.g. buildID +when logging is done in a studio context.

+
+
+ +
+
+static doWithTimeout(f, timeout: int)[source]
+

Takes a function and a timeout in seconds. +Will call and return the result of f, but raises a cvlib.TimeoutExpiry +exception if it runs longer than <timeout>

+
+ +
+
+error(msg, ignoreFailures=False, tags: Dict[str, str] = None)[source]
+

Creates an error level log if the context’s logging level is set to allow for it +If the logging level is higher, is a no-op +:param msg: The string message for the log entry +:param ignoreFailures: Prevents logging exceptions from being raised +:param tags: A string dictionary of additional custom tags to add to the log

+
+

entry. Some system tags are always inserted, e.g. buildID +when logging is done in a studio context.

+
+
+ +
+
+getApiClient(stub)[source]
+

Instantiates a resource api client to the service server +based on the current user auth token and passed stub +:param: stub of the resource api to connect to +:return: resource api client to the passed stub

+
+ +
+
+getCvClient()[source]
+

Instantiates a cloudvision connector client to the cv database +based on the current user auth token +:return: cloudvision Connector client

+
+ +
+
+getDevice()[source]
+

Returns the device associated to the context.

+
+ +
+
+getDeviceHostname(device: Device = None)[source]
+

Returns the hostname of the device associated to the context. +Retrieves that information if the context device doesn’t have it

+
+ +
+
+getDevicesByTag(tag: Tag, inTopology: bool = True)[source]
+

Returns list of devices that have the user tag assigned to them. +If tag.value is unspecified then returns devices having that label assigned. +By default only devices in the topology are returned.

+
+ +
+
+getInterfacesByTag(tag: Tag, inTopology: bool = True)[source]
+

Returns list of interfaces that have the user tag assigned to them. +If tag.value is unspecified then returns interfaces having that label assigned. +By default only interfaces in the topology are returned.

+
+ +
+
+getLoggingLevel()[source]
+

Gets the current logging level of the context

+
+ +
+
+getWorkspaceId()[source]
+
+ +
+
+httpGet(path: str)[source]
+

Issues a https GET to a given endpoint in CloudVision and returns the json +content if there are no errors

+
+ +
+
+httpGetConfig(path: str)[source]
+

Issues a http get to retrieve the device config content at a cvp url and formats it.

+
+ +
+
+httpPost(path, request={})[source]
+

Issues a https POST to a given endpoint in CloudVision

+
+ +
+
+info(msg, ignoreFailures=False, tags: Dict[str, str] = None)[source]
+

Creates an info level log if the context’s logging level is set to allow for it +If the logging level is higher, is a no-op +:param msg: The string message for the log entry +:param ignoreFailures: Prevents logging exceptions from being raised +:param tags: A string dictionary of additional custom tags to add to the log

+
+

entry. Some system tags are always inserted, e.g. buildID +when logging is done in a studio context.

+
+
+ +
+
+initializeStudioCtxFromArgs()[source]
+

initializeStudioCtxFromArgs associates studio(s) and a workspace with the current +context from argument information available in the current context’s action class. +This allows for actions such as Studio Autofill Actions and Studio Build Hook Actions +to associate a studio with their active contexts, allowing them to access various helper +methods that require the presence of a studio or workspace with the active context, +such as those offered by the tags class.

+

NOTE: Will raise InvalidContextException if called and either a studio is already +bound to the context or no action is available in the context

+
+ +
+
+keepBlankLines(preserve=True)[source]
+
+ +
+
+retrieve(path: List[str] = [], customKey='', delete=True)[source]
+

retrieve gets the passed key’s data from the provided path from the +Database store.

+

NOTE: This function is only available to those with read permissions to the +‘action’ path in the cvp dataset (granted by the action module), as that is +where the store is.

+

Params: +- path: The path where the data is stored at, in the form of a list

+
+

of strings. If this argument is omitted, a generic path will be +created for use. All paths have “action/tmp” as the root.

+
+
    +
  • +
    customKey: The key where the data is stored at in the path. If this argument

    is omitted, a generic string key will be created for use.

    +
    +
    +
  • +
  • +
    delete: Boolean flag marking whether a delete should be issued to the

    store for the key/path combo to clean up after use. +Deleting once the contents have been retrieved is the default.

    +
    +
    +
  • +
+

Raises InvalidContextException if not enough context information is +present to create a generic key/path (if required)

+
+ +
+
+runDeviceCmds(commandsList: List[str], device: Device | None = None, fmt='json', validateResponse=True)[source]
+

Sends a post request to DI, encodes commandsList in message body. +Receives output of cli commands from DI as json object.

+
+
Parameters:
+
    +
  • commandsList

  • +
  • device – device that the commands are run on. +Defaults to the context change control device if unspecified

  • +
  • validateResponse – Validates that the commands ran successfully. Defaults to true and +will raise an exception in the case an error message is present in +the command response. +Can be set to false to allow commands to run without raising any +resultant error as an exception, e.g. device reboot commands can +cause heartbeat error messages in the response, but we can discard +them as the device will reboot.

  • +
+
+
Returns:
+

json object containing output of commandsList (if validateResponse is True) +OR +raw request response (if validateResponse is False)

+
+
Raises:
+

InvalidContextException when context is invalid for execution of device commands +requests.ConnectionError if connection cannot be established to the command +endpoint address +HTTPError if the status code from the command request is not a 200 +DeviceCommandsFailed if validating command responses and the contents +contain an error code/message (can occur if request is a 200)

+
+
+
+ +
+
+setLoggingLevel(loggingLevel: LoggingLevel)[source]
+

Takes a logging level value and applies it for use in logging call checks

+
+ +
+
+setTopology(topology: Topology)[source]
+

Sets the topology of the context. +Called during context initialisation during script execution, +to set the Topology to that of the Inventory and Topology Studio. +Does not need to be called by the script writers.

+
+ +
+
+static showIf(linefmt, args)[source]
+
+ +
+
+store(data, path: List[str] = [], customKey='')[source]
+

store puts the passed data into a path in the Database

+

NOTE: This function is only available to those with write permissions to the +‘action’ path in the cvp dataset (granted by the action module), as that is +where the store is.

+

This should be used in conjunction with the retrieve method to ensure that +the entry is cleaned up after use.

+

Params: +- data: The data to store +- path: The path to store the data at, in the form of a list of strings.

+
+

If this argument is omitted, a generic path will be created for +use. All paths have “action/tmp” as the root.

+
+
    +
  • +
    customKey: The key to store the data at in the path. If this argument is

    omitted, a generic string key will be created for use.

    +
    +
    +
  • +
+

Raises InvalidContextException if not enough context information is +present to create a generic key/path (if required)

+
+ +
+
+trace(msg, ignoreFailures=False, tags: Dict[str, str] = None)[source]
+

Creates a trace level log if the context’s logging level is set to allow for it +If the logging level is higher, is a no-op +:param msg: The string message for the log entry +:param ignoreFailures: Prevents logging exceptions from being raised +:param tags: A string dictionary of additional custom tags to add to the log

+
+

entry. Some system tags are always inserted, e.g. buildID +when logging is done in a studio context.

+
+
+ +
+
+warning(msg, ignoreFailures=False, tags: Dict[str, str] = None)[source]
+

Creates a warning level log if the context’s logging level is set to allow for it +If the logging level is higher, is a no-op +:param msg: The string message for the log entry +:param ignoreFailures: Prevents logging exceptions from being raised +:param tags: A string dictionary of additional custom tags to add to the log

+
+

entry. Some system tags are always inserted, e.g. buildID +when logging is done in a studio context.

+
+
+ +
+ +
+
+class cloudvision.cvlib.context.LoggingLevel(value, names=<not given>, *values, module=None, qualname=None, type=None, start=1, boundary=None)[source]
+

Bases: IntEnum

+
+
+Critical = 5
+
+ +
+
+Debug = 1
+
+ +
+
+Error = 4
+
+ +
+
+Info = 2
+
+ +
+
+Trace = 0
+
+ +
+
+Warn = 3
+
+ +
+ +
+
+

cloudvision.cvlib.device module

+
+
+class cloudvision.cvlib.device.Device(deviceId: str | None = None, ip: str | None = None, deviceMac: str | None = None, hostName: str | None = None, modelName: str | None = None)[source]
+

Bases: object

+

Object to store device information +- ip: IP address of device +- deviceId: ID of the device +- deviceMac: Mac address of the device +- hostName: Hostname of the device +- modelName: Model name of the device

+
+
+addInterface(name: str)[source]
+

addInterface assigns an interface to the Device object

+
+ +
+
+getInterface(name)[source]
+

Returns a particular named interface from the interfaces assigned to the Device +object

+
+ +
+
+getInterfaces()[source]
+

Returns a dictionary list of the interfaces assigned to the Device object

+
+ +
+
+getInterfacesByTag(ctx, tag: Tag, inTopology: bool = True)[source]
+

Returns list of interfaces that have the user tag assigned to them. +If tag.value is unspecified then returns interfaces having that label assigned. +By default only interfaces in the topology are returned.

+
+ +
+
+getSingleTag(ctx, label: str, required: bool = True)[source]
+

Returns a Tag of the label assigned to the device. +Raises TagTooManyValuesException if there are multiple tags of the label assigned. +Raises TagMissingException if required is True and the tag is missing. +Returns None if required is False and the tag is missing.

+
+ +
+
+getTags(ctx, label: str = None)[source]
+

Returns a list of Tags matching the specified label assigned to the device. +If label is unspecified then it returns all Tags assigned to the device.

+
+ +
+ +
+
+class cloudvision.cvlib.device.Interface(name: str, device: Device)[source]
+

Bases: object

+

Object to store interface related information +- name: The name of the interface +- device: The device that the interface is on

+
+
+getDevice()[source]
+
+ +
+
+getPeerDevice()[source]
+
+ +
+
+getPeerInfo()[source]
+
+ +
+
+getPeerInterface()[source]
+
+ +
+
+getSingleTag(ctx, label: str, required: bool = True)[source]
+

Returns a Tag of the label assigned to the interface. +Raises TagTooManyValuesException if there are multiple tags of the label assigned. +Raises TagMissingException if required is True and the tag is missing. +Returns None if required is False and the tag is missing.

+
+ +
+
+getTags(ctx, label: str = None)[source]
+

Returns a list of Tags matching the specified label assigned to the interface. +If label is unspecified then it returns all Tags assigned to the interface.

+
+ +
+
+setPeerInfo(device: Device, interface)[source]
+
+ +
+ +
+
+

cloudvision.cvlib.exceptions module

+
+
+exception cloudvision.cvlib.exceptions.ActionFailed(message: str = '')[source]
+

Bases: ScriptException

+

Exception to raise if you wish to fail a script or autofill action being executed.

+

For the case of a script action, e.g. CCA, it means that the user has declared +that the action has failed due to some condition being met or missed. This is +“expected” in the sense that the action did not hit an unexpected exception.

+

In the autofill action case, it means the autofill could not be completed due to +some expected reason (e.g. could not reach IPAM or IPAM block was exhausted).

+
+ +
+
+exception cloudvision.cvlib.exceptions.AutofillActionException(message: str = 'cloudvision has encountered an autofill action error')[source]
+

Bases: ScriptException

+

Overarching class for Autofill Action exceptions

+
+ +
+
+exception cloudvision.cvlib.exceptions.BatchException(message: str = 'Multiple errors encountered', cvErrors: List[str] = None)[source]
+

Bases: ScriptException

+

Exception for when a script needs to raise multiple issues in a single error. +This is useful for when scripts do all invariant checking at once, and tell +the user about all the problems they’ve seen (instead of making the user fix one problem, +rebuild to see the next problem, and repeat).

+
+ +
+
+exception cloudvision.cvlib.exceptions.CVException(message: str = 'cloudvision has encountered an error')[source]
+

Bases: Exception

+

Overarching base exception class for all cloudvision exceptions

+
+ +
+
+exception cloudvision.cvlib.exceptions.ConnectionFailed(message: str = 'connection issue with the CloudVision API server')[source]
+

Bases: CVException

+

Exception raised when a connection to the CloudVision API Server +could not be established, or if it was unexpectedly closed

+
+ +
+
+exception cloudvision.cvlib.exceptions.DeviceCommandsFailed(message: str, errCode: int | None = None, errMsg: str | None = None)[source]
+

Bases: ScriptException

+

Exception raised when device fails to run commands with ctx.runDeviceCmds. +This is separate to the commands on the device themselves failing. +This can be caused by the command request being invalid, not caused by +invalid commands being issued +message is the user-facing message for the exception +errCode is the error code returned from the DI service +errMsg is the message that the DI service returned with the error code

+
+ +
+
+exception cloudvision.cvlib.exceptions.InputEmptyException(message: str = 'attempted to access unpopulated input', members=None)[source]
+

Bases: TemplateException

+

Exception for when an action/template script tries to access an input that wasn’t +populated and that input was not optional or doesn’t have a default value. +The members field is something that can be used to determine what input was missing. +Members should be usable by the UI to guide users to the right section to fill +out the missing input. +For studios, this is only raised by the internal studios python library utilities.

+

For autofill actions, this could be useful for the autofill action to show that it +can’t autofill because some of the existing inputs don’t make any sense. This also +lets autofill actions act as validators (users press a button to validate in real time)

+
+ +
+
+class cloudvision.cvlib.exceptions.InputError(message: str = 'Error in input field', inputPath: List[str] = None, fieldId: str = None, members: List[str] = None)[source]
+

Bases: object

+

This is the primary error that Studio Template writers would raise. +It is raised manually by a template script if the set of inputs violates the script-author’s +assumptions. +- message: A user-friendly text message of the error +- inputPath: The path to the field that is in error. It is a list of field names

+
+

(the “name” attribute in the schema) starting from the root. +E.g.: [“networkConfig”, “0”, “config”, “monitoredHosts”, “1”]

+
+
    +
  • fieldId: The unique ID of the field (the “id” attribute in the schema).

  • +
  • +
    members: A list of all members in a group-type input that are in conflict. inputs easily.

    In most cases, a script will only specify a single member to show that inputA +has a problem that the end user needs to fix. In certain cases, though, you may +want to indicate to the end user that either inputA or inputB needs fixing, but +both can’t coexist in their current form.

    +
    +
    +
  • +
+
+ +
+
+exception cloudvision.cvlib.exceptions.InputErrorException(message: str = 'Error in input fields', inputErrors: List[InputError] = None)[source]
+

Bases: TemplateException

+

Exception for when a user needs to raise an error with one or more InputError +structures in it. +For Studios, this is raised manually by a template script to report an error with +one or more input values. It allows for errors in multiple input fields to be +reported at once. These errors are displayed to the user in the Studio UI.

+
+ +
+
+exception cloudvision.cvlib.exceptions.InputException(message: str = 'Error encountered with inputs', inputPath: List[str] = None, err=None)[source]
+

Bases: AutofillActionException

+

Superclass for autofill input exceptions

+
+ +
+
+exception cloudvision.cvlib.exceptions.InputNotFoundException(inputPath: List[str] = None, err=None)[source]
+

Bases: InputException

+

Exception raised when an input path does not exist in the provided studio inputs

+
+ +
+
+exception cloudvision.cvlib.exceptions.InputRequestException(inputPath: List[str] = None, err=None)[source]
+

Bases: InputException

+

Exception raised when an request to get studio inputs fails

+
+ +
+
+exception cloudvision.cvlib.exceptions.InputUpdateException(inputPath: List[str] = None, err=None)[source]
+

Bases: InputException

+

Exception raised when an update made to studio inputs fails

+
+ +
+
+exception cloudvision.cvlib.exceptions.InvalidContextException(message: str)[source]
+

Bases: CVException

+

Exception raised when context methods are called invalidly

+
+ +
+
+exception cloudvision.cvlib.exceptions.InvalidCredentials(message: str = 'provided credentials were not valid')[source]
+

Bases: CVException

+

Exception raised if provided credentials are invalid

+
+ +
+
+exception cloudvision.cvlib.exceptions.InvalidTopologyException(errors)[source]
+

Bases: CVException

+

Exception class raised when topology model contains invalid configuration

+
+ +
+
+exception cloudvision.cvlib.exceptions.IpErrorException(message: str)[source]
+

Bases: CVException

+

Exception raised for IP addressing errors

+
+
+expTagField(field: str)[source]
+
+ +
+ +
+
+exception cloudvision.cvlib.exceptions.IpHostIndexException(network, num_hosts: int, index: int, hostname: str = None, poolname: str = None)[source]
+

Bases: IpErrorException

+

Exception raised when host indexing into a subnet is invalid

+
+ +
+
+exception cloudvision.cvlib.exceptions.IpNetworkOverlapException(network1, network2, hostname: str = None, poolname: str = None)[source]
+

Bases: IpErrorException

+

Exception raised when networks unexpectedly overlap

+
+ +
+
+exception cloudvision.cvlib.exceptions.IpSubnetIndexException(network, subnet_mask: int, num_subnets: int, index: int, hostname: str = None, poolname: str = None)[source]
+

Bases: IpErrorException

+

Exception raised when subnet indexing into a subnet pool is invalid

+
+ +
+
+exception cloudvision.cvlib.exceptions.LoggingFailed(message: str = '')[source]
+

Bases: ScriptException

+

Exception raised when a logging request fails.

+
+ +
+
+exception cloudvision.cvlib.exceptions.ScriptException(message: str = 'cloudvision has encountered a script error')[source]
+

Bases: CVException

+

Overarching class for Script exceptions

+
+ +
+
+exception cloudvision.cvlib.exceptions.TagErrorException(message: str)[source]
+

Bases: CVException

+

Exception raised for tag errors

+
+
+expTagField(field: str)[source]
+
+ +
+ +
+
+exception cloudvision.cvlib.exceptions.TagInvalidTypeException(label: str, devId: str, valType: str, currVals: List[str] = None)[source]
+

Bases: TagErrorException

+

Exception raised when a tag value is not of the correct type

+
+ +
+
+exception cloudvision.cvlib.exceptions.TagInvalidValuesException(label: str, devId: str, allowedVals: List[str] = None, currVals: List[str] = None)[source]
+

Bases: TagErrorException

+

Exception raised when a tag has invalid values assigned to a device

+
+ +
+
+exception cloudvision.cvlib.exceptions.TagMissingException(label: str, devId: str, intfId: str = None)[source]
+

Bases: TagErrorException

+

Exception raised when a tag is missing from a device

+
+ +
+
+exception cloudvision.cvlib.exceptions.TagOperationException(label: str, value: str, operation: str, devId: str = None, intfId: str = None)[source]
+

Bases: TagErrorException

+

Exception raised when an attempted tag operation is invalid

+
+ +
+
+exception cloudvision.cvlib.exceptions.TagTooManyValuesException(label: str, devId: str, currVals: List[str] = None, intfId: str = None)[source]
+

Bases: TagErrorException

+

Exception raised when a tag has too many values assigned to a device

+
+ +
+
+exception cloudvision.cvlib.exceptions.TemplateException(message: str = 'cloudvision has encountered a template error')[source]
+

Bases: ScriptException

+

Overarching class for Template exceptions

+
+ +
+
+exception cloudvision.cvlib.exceptions.TemplateTypeNotSupported(message: str = 'Unsupported template type', templateType=None)[source]
+

Bases: TemplateException

+

Exception for when a template type is not supported

+
+ +
+
+exception cloudvision.cvlib.exceptions.TimeoutExpiry[source]
+

Bases: ScriptException

+

Exception to raise when alarm signals are used in scripts as timers so that script writers +do not need to define their own exceptions for use in that situation. +Users should raise and catch this exception in the signal handler +so that they can be sure no other exception occurred while the timer was running

+
+ +
+
+

cloudvision.cvlib.execution module

+
+
+class cloudvision.cvlib.execution.Execution(executionId: str)[source]
+

Bases: object

+

Object to store standalone execution context: +- executionId: Key of the execution run, used by alog

+
+ +
+
+

cloudvision.cvlib.id_allocator module

+
+
+class cloudvision.cvlib.id_allocator.IdAllocator(start: int = 1, end: int = 65000, idLabel: str = 'id', groupLabel: str = 'devices')[source]
+

Bases: object

+

Object to generate unique integer ids, eg. used for generating nodeIds. +Can also be used for checking manually entered ids for duplicates. +- start: starting value of id range +- end: ending value of id range +The following are only used if checking duplicate id errors: +- idNames: optional name associated with ids +- idLabel: name describing id type +- groupLabel: name describing what is being id’d

+
+
+allocate(allocId: int = None, name: str = None) int[source]
+
+ +
+
+free(freeId: int)[source]
+
+ +
+
+getAllocated() List[source]
+
+ +
+
+getAvailable() List[source]
+
+ +
+
+getIdNames() Dict[source]
+
+ +
+ +
+
+

cloudvision.cvlib.iputils module

+
+
+cloudvision.cvlib.iputils.first_usable_address(network)[source]
+
+ +
+
+cloudvision.cvlib.iputils.get_ip_from_subnet(network, index: int, hostname: str = None, poolname: str = None)[source]
+
+ +
+
+cloudvision.cvlib.iputils.get_number_subnets(network, subnet_mask: int)[source]
+
+ +
+
+cloudvision.cvlib.iputils.get_subnet_by_index(network, subnet_mask: int, index: int, hostname: str = None, poolname: str = None)[source]
+
+ +
+
+cloudvision.cvlib.iputils.is_ipv4(ip)[source]
+
+ +
+
+cloudvision.cvlib.iputils.is_ipv6(ip)[source]
+
+ +
+
+cloudvision.cvlib.iputils.last_usable_address(network)[source]
+
+ +
+
+cloudvision.cvlib.iputils.number_of_usable_addresses(network)[source]
+
+ +
+
+cloudvision.cvlib.iputils.overlapping_networks_check(networks: List[str], hostname: str = None, poolname: str = None)[source]
+
+ +
+
+

cloudvision.cvlib.logger module

+
+
+class cloudvision.cvlib.logger.Logger(alog: Callable[[Any, str, str | None, str | None, Dict[str, str] | None], None], trace: Callable[[Any, str, Dict[str, str] | None], None], debug: Callable[[Any, str, Dict[str, str] | None], None], info: Callable[[Any, str, Dict[str, str] | None], None], warning: Callable[[Any, str, Dict[str, str] | None], None], error: Callable[[Any, str, Dict[str, str] | None], None], critical: Callable[[Any, str, Dict[str, str] | None], None])[source]
+

Bases: object

+

Logger object that stores a number of user-defined logging functions +Due to context being pickled at certain execution stages of actions/studios, a normal python +logger cannot be used. +Minimum required call signatures are described by the init function, where ‘Any’ denotes the +context being passed to avoid cyclical imports +- alog: Function to be used for audit log insertion +- trace: Function to be used for trace level logging +- debug: Function to be used for debug level logging +- info: Function to be used for info level logging +- warning: Function to be used for warning level logging +- error: Function to be used for error level logging +- critical: Function to be used for critical level logging

+
+ +
+
+

cloudvision.cvlib.studio module

+
+
+cloudvision.cvlib.studio.GetOneWithWS(apiClientGetter, stateStub, stateGetReq, configStub, confGetReq)[source]
+

For Studio APIs, the state for a particular workspace can be difficult to determine. +A state for a particular workspace only exists if an update has occurred for that workspace. +State may exist in mainline, or the configuration change in the workspace may have explicitly +deleted the state.

+
+
GetOneWithWS does the following to try and provide state for the get request:
    +
  • Do a get on the X state endpoint in the particular workspace for the desired state

  • +
  • If the state does NOT exist, issue another get on the X state endpoint for the +mainline state.

  • +
  • If the state DOES exist there, check the X configuration endpoint of the workspace to +see if the state has been explicitly deleted there.

  • +
+
+
+

Params: +- apiClientGetter: The API client getter, i.e. ctx.getApiClient +- stateStub: The stub for the state endpoint +- stateGetReq: A workspace-aware get request to be made to the state client for the

+
+

desired workspace. It is assumed that the get request has a key field +“workspace_id”, such that mainline can be queried in the case that the +workspace query does not return anything.

+
+
    +
  • configStub: The stub for the config endpoint

  • +
  • +
    confGetReq: A workspace-aware get request to be made to the config client for the

    desired workspace.

    +
    +
    +
  • +
+

Returns: +- The request’s value, or None if the resource has been deleted

+
+ +
+
+class cloudvision.cvlib.studio.Studio(workspaceId: str, studioId: str, inputs=None, deviceIds=None, logger=None, execId=None, buildId=None)[source]
+

Bases: object

+

Object to store studio context: +- workspaceId: Id of the workspace +- studioId: Id of the studio +- inputs: inputs provided to the studio +- deviceIds: Ids of the devices associated with this studio +- logger: The logger to be used with this studio +- execId: Id of the execution +- buildId: Id of the studio build

+
+ +
+
+class cloudvision.cvlib.studio.StudioCustomData(context)[source]
+

Bases: object

+

Object to store studio custom data context: +- context: stores system and user-defined parameters. +- chunk_size: chunk size of stored data.

+
+
+retrieve(studioId: str = '', path: List[str] = [], searchKey: str = '')[source]
+

retrieve gets the custom data from a path and key written by a studio +in the Database. +Params: +- studioId: The studioId of studio that generates the data to be retrieved. +- path: The path to get the data from, path is a list of strings. +- key: The key to get the data from in the path.

+
+ +
+
+store(data: str = '', path: List[str] = [], key: str = '')[source]
+

store puts the passed studio custom data into a path in the Database. +The data is stored in 1MB chunks.

+

Params: +- data: The string data to be stored. +- path: The path to store the data at, in the form of a list of strings.

+
+

paths have “workspace/<wsId>/build/<buildId>/studio/<studioId>/customData” +as the root.

+
+
    +
  • key: The key to store the data at in the path.

  • +
+
+ +
+ +
+
+cloudvision.cvlib.studio.extractInputElems(inputs, inputPath: List[str], elems: List[str] = [], tagElems: List[str] = [])[source]
+

Takes lists of elements and tag elements, and traverses through the input tree towards the +Input path, extracting the most recent matching values for these elements from the inputs.

+

Returns these results in a single dict, so overwriting of results will occur if specified +elements/tag elements have the same name in the inputs tree

+
+ +
+
+cloudvision.cvlib.studio.extractStudioInfoFromArgs(args: Dict)[source]
+

Studio Autofill actions contains studio related information in their arguments, but a studio +is not instantiated and associated with the context. As these actions require interfacing with +studio APIs, this function extracts the studio info (verifies this info is valid if needed) +and returns it to the user in the order below.

+

These are (All return values may be None in the case the field is not present); +- StudioID: The ID of the studio associated with the action +- WorkspaceID: The ID of the workspace associated with the +- InputPath: The string path elements leading to the input element in the action

+

NOTE: Input paths containing array/list indices will be stringified, so use caution when +iterating through the input tree using this. These are not converted to integer values +as they could clash with elements containing only numbers. +The extractInputElems method accounts for this and is suggested over manually traversing +the tree looking for elements

+
+ +
+
+cloudvision.cvlib.studio.getSimpleResolverQueryValue(query: str)[source]
+

Autofill action arguments may be resolver queries. In these cases the string +argument is in the form of “<tag>:<Value>” or more complex queries such as +“<tag>:<ValueA> OR <tag>:<ValueB>”. This function is designed to extract the +query values from a simple query.

+

Params: +- query: The simple query string, e.g. “<tag>:<Value>”

+

Returns: +- The query value, e.g. “<Value>” from the above example.

+

Raises an InputException in the case where the passed query is not parsable as a simple query

+
+ +
+
+cloudvision.cvlib.studio.getStudioInputs(clientGetter, studioId: str, workspaceId: str, path: List[str] = [])[source]
+

Uses the passed ctx.getApiClient function reference to issue get the current input state for +given combination of studioId, workspaceId and path. +Path MUST be a non-None list, omitting this argument retrieves the full studio input tree. +This function falls back to mainline state at workspace creation time (or last rebase time) +to build up the state should the workspace studio state not be created yet and checks to see +if any deletes would affect the requested input.

+

Raises an InputNotFoundException if the input requested does not exist.

+
+ +
+
+cloudvision.cvlib.studio.mergeStudioInputs(rootInputs: Any, path: List[Any], inputsToInsert: Any)[source]
+

Due to grpc messaging limits, large inputs may be sent out to get requests +in chunks, and should be retrieved with a GetAll to ensure all inputs +for a given studio are received.

+

In the case where a studio resource returns inputs in multiple responses, they need to +be spliced together to form a cohesive input object.

+

Params: +- rootInputs: The root object to insert the new inputs into +- path: The path in the rootInputs to insert the inputs into +- inputsToInsert: The inputs to insert into the root inputs

+

Returns: +- The updated root inputs

+
+ +
+
+cloudvision.cvlib.studio.setStudioInput(clientGetter, studioId: str, workspaceId: str, inputPath: List[str], value: str, remove: bool = False)[source]
+

Uses the passed ctx.getApiClient function reference to +issue a set to the Studio inputs rAPI with the associated input path and value

+
+ +
+
+cloudvision.cvlib.studio.setStudioInputs(clientGetter, studioId: str, workspaceId: str, inputs: List[Tuple])[source]
+

Uses the passed ctx.getApiClient function reference to +issue a setSome to the Studio inputs rAPI with the associated InputsConfig

+

The inputs list should contain tuples of a fixed size, either with a +length of 2 or a length of 3. Tuple: (Path, Inputs) or (Path, Inputs, Remove) +a mixed list [(path, value, remove), (path, value),..] is supported

+

The value doesn’t matter if the remove flag is True

+
+ +
+
+

cloudvision.cvlib.tags module

+
+
+class cloudvision.cvlib.tags.Tag(label: str, value: str)[source]
+

Bases: object

+

Object that represents a tag

+
+
+property label
+
+ +
+
+property value
+
+ +
+ +
+
+class cloudvision.cvlib.tags.Tags(context)[source]
+

Bases: object

+

Object to store tags data relevant to a studio build context. +Note, this class and the methods in context and device classes which use it, +are meant to be used from studio workspace builds and will operate on +tags within workspaces using the workspace and studio in the context. +Implemented so only one access is made to retreive tags from the remote tags service. +(two accesses until the tags service provided merged mainline-workspace state apis) +Note that a tag is of the form label:value, where the same label may be associated +with many values. +Device tags are assigned to devices. +Interface tags are assigned to devices’ interfaces. +- ctx: Context in which the studio build is run +- relevantTagAssigns: Dictionary of relevant device tags, of the form:

+
+

{deviceId: {label: [value1,value2,..]}}, +works like a cache

+
+
    +
  • +
    relevantIntfTagAssigns: Dictionary of relevant interface tags, of the form:

    {deviceId: {intfId: {label: [value1,value2,..]}}}, +works like a cache

    +
    +
    +
  • +
+
+ +
+
+

cloudvision.cvlib.topology module

+
+
+class cloudvision.cvlib.topology.Connection(sourceDevice, sourceInterface, destDevice, destInterface)[source]
+

Bases: object

+
+ +
+
+class cloudvision.cvlib.topology.Topology(deviceMap: Dict[str, Device])[source]
+

Bases: object

+

Topology object that stores devices and their connection to one another in dict form: +- deviceMap: Prebuilt topology device dictionary to instantiate the class with

+
+
+getDevices(deviceIds: List[str] = None)[source]
+
+ +
+
+static setLogger(loggerToUse: Logger)[source]
+
+ +
+ +
+
+

cloudvision.cvlib.user module

+
+
+class cloudvision.cvlib.user.User(username: str, token: str)[source]
+

Bases: object

+

Object to store information on the user executing this script: +- username: Cloudvision username +- token: Auth token used to create connections

+
+ +
+
+

cloudvision.cvlib.utils module

+
+
+cloudvision.cvlib.utils.extractJSONEncodedListArg(listArg: str)[source]
+

Extracts a string arg in JSON-encoded list form and converts it to a list for use

+
+
Parameters:
+

listArg (str) – The stringified list

+
+
+
+ +
+
+cloudvision.cvlib.utils.queryCCStartTime(client: GRPCClient, ccId: str)[source]
+
+ +
+
+

cloudvision.cvlib.workspace module

+
+
+class cloudvision.cvlib.workspace.Workspace(workspaceId: str, studioIds: List[str] = [], buildId: str | None = None)[source]
+

Bases: object

+

Object to store workspace context: +- id: Id of the workspace +- studioIds: Ids of the studios edited in the associated workspace +- buildId: Id of the workspace build

+
+ +
+
+cloudvision.cvlib.workspace.getWorkspaceLastSynced(clientGetter, workspaceId: str)[source]
+

Gets the lastRebasedAt timestamp for the given workspace, or if that’s null, +the createdAt timestamp of the workspace. This function allows for workspace-aware +resource apis to gather accurate data when needing to fall back to mainline for building +accurate state in a workspace.

+
+
Params:

clientGetter: The API client getter, i.e. ctx.getApiClient +workspaceId: The ID of the workspace to retrieve the timestamp for

+
+
+
+
Returns:
+

Timestamp object of the workspace’s last rebased time, or created at time

+
+
Raises:
+

CVException – If the workspace does not exist, or is mainline

+
+
+
+ +
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/cloudvision.html b/cloudvision.html new file mode 100644 index 00000000..02d5af5d --- /dev/null +++ b/cloudvision.html @@ -0,0 +1,412 @@ + + + + + + + + + cloudvision package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

cloudvision package

+
+

Subpackages

+
+ +
+
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/fmp.html b/fmp.html new file mode 100644 index 00000000..f4758548 --- /dev/null +++ b/fmp.html @@ -0,0 +1,1683 @@ + + + + + + + + + fmp package — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

fmp package

+
+

Submodules

+
+
+

fmp.deletes_pb2 module

+

Generated protocol buffer code.

+
+
+

fmp.deletes_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+

fmp.extensions_pb2 module

+

Generated protocol buffer code.

+
+
+

fmp.extensions_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+

fmp.inet_pb2 module

+

Generated protocol buffer code.

+
+
+class fmp.inet_pb2.IPAddress
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class fmp.inet_pb2.IPPrefix
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class fmp.inet_pb2.IPv4Address
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class fmp.inet_pb2.IPv4Prefix
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class fmp.inet_pb2.IPv6Address
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class fmp.inet_pb2.IPv6Prefix
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class fmp.inet_pb2.Port
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class fmp.inet_pb2.RepeatedIPAddress
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class fmp.inet_pb2.RepeatedIPv4Address
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class fmp.inet_pb2.RepeatedIPv6Address
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+

fmp.inet_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+

fmp.pages_pb2 module

+

Generated protocol buffer code.

+
+
+

fmp.pages_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+

fmp.wrappers_pb2 module

+

Generated protocol buffer code.

+
+
+class fmp.wrappers_pb2.MapBoolBool
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapBoolBytes
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapBoolDouble
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapBoolFloat
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapBoolInt32
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapBoolInt64
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapBoolString
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapBoolUInt32
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapBoolUInt64
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapInt32Bool
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapInt32Bytes
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapInt32Double
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapInt32Float
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapInt32Int32
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapInt32Int64
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapInt32String
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapInt32UInt32
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapInt32UInt64
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapInt64Bool
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapInt64Bytes
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapInt64Double
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapInt64Float
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapInt64Int32
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapInt64Int64
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapInt64String
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapInt64UInt32
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapInt64UInt64
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapStringBool
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapStringBytes
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapStringDouble
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapStringFloat
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapStringInt32
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapStringInt64
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapStringString
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapStringUInt32
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapStringUInt64
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapUInt32Bool
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapUInt32Bytes
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapUInt32Double
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapUInt32Float
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapUInt32Int32
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapUInt32Int64
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapUInt32String
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapUInt32UInt32
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapUInt32UInt64
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapUInt64Bool
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapUInt64Bytes
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapUInt64Double
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapUInt64Float
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapUInt64Int32
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapUInt64Int64
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapUInt64String
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapUInt64UInt32
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.MapUInt64UInt64
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+
+class ValuesEntry
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+ +
+
+class fmp.wrappers_pb2.RepeatedBool
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class fmp.wrappers_pb2.RepeatedBytes
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class fmp.wrappers_pb2.RepeatedDouble
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class fmp.wrappers_pb2.RepeatedFloat
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class fmp.wrappers_pb2.RepeatedInt32
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class fmp.wrappers_pb2.RepeatedInt64
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class fmp.wrappers_pb2.RepeatedString
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class fmp.wrappers_pb2.RepeatedUInt32
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class fmp.wrappers_pb2.RepeatedUInt64
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+

fmp.wrappers_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+

fmp.yang_pb2 module

+

Generated protocol buffer code.

+
+
+class fmp.yang_pb2.MACAddress
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+class fmp.yang_pb2.RepeatedMACAddress
+

Bases: Message, Message

+
+
+DESCRIPTOR = <google._upb._message.Descriptor object>
+
+ +
+ +
+
+

fmp.yang_pb2_grpc module

+

Client and server classes corresponding to protobuf-defined services.

+
+
+

Module contents

+
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/genindex.html b/genindex.html new file mode 100644 index 00000000..260dc250 --- /dev/null +++ b/genindex.html @@ -0,0 +1,10041 @@ + + + + + + + + Index — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+
    +
  • + +
  • +
  • +
+
+
+
+
+ + +

Index

+ +
+ A + | B + | C + | D + | E + | F + | G + | H + | I + | K + | L + | M + | N + | O + | P + | Q + | R + | S + | T + | U + | V + | W + | Z + +
+

A

+ + + +
+ +

B

+ + + +
+ +

C

+ + + +
+ +

D

+ + + +
+ +

E

+ + + +
+ +

F

+ + + +
+ +

G

+ + + +
+ +

H

+ + + +
+ +

I

+ + + +
+ +

K

+ + + +
+ +

L

+ + + +
+ +

M

+ + + +
+ +

N

+ + +
+ +

O

+ + + +
+ +

P

+ + + +
+ +

Q

+ + + +
+ +

R

+ + + +
+ +

S

+ + + +
+ +

T

+ + + +
+ +

U

+ + + +
+ +

V

+ + + +
+ +

W

+ + + +
+ +

Z

+ + + +
+ + + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 00000000..845d3c63 --- /dev/null +++ b/index.html @@ -0,0 +1,126 @@ + + + + + + + + + Welcome to CloudVision Python’s documentation! — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

Welcome to CloudVision Python’s documentation!

+ +
+
+

Indices and tables

+ +
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/modules.html b/modules.html new file mode 100644 index 00000000..d23f64c9 --- /dev/null +++ b/modules.html @@ -0,0 +1,640 @@ + + + + + + + + + cloudvision — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+
+
+
+ +
+

cloudvision

+
+ +
+
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/objects.inv b/objects.inv new file mode 100644 index 00000000..2144e056 Binary files /dev/null and b/objects.inv differ diff --git a/py-modindex.html b/py-modindex.html new file mode 100644 index 00000000..dd3ce7b8 --- /dev/null +++ b/py-modindex.html @@ -0,0 +1,1055 @@ + + + + + + + + Python Module Index — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+
    +
  • + +
  • +
  • +
+
+
+
+
+ + +

Python Module Index

+ +
+ a | + c | + f +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
 
+ a
+ arista +
    + arista.alert +
    + arista.alert.v1 +
    + arista.alert.v1.alert_pb2 +
    + arista.alert.v1.alert_pb2_grpc +
    + arista.alert.v1.services +
    + arista.alert.v1.services.gen_pb2 +
    + arista.alert.v1.services.gen_pb2_grpc +
    + arista.bugexposure +
    + arista.bugexposure.v1 +
    + arista.bugexposure.v1.bugexposure_pb2 +
    + arista.bugexposure.v1.bugexposure_pb2_grpc +
    + arista.bugexposure.v1.services +
    + arista.bugexposure.v1.services.gen_pb2 +
    + arista.bugexposure.v1.services.gen_pb2_grpc +
    + arista.changecontrol +
    + arista.changecontrol.v1 +
    + arista.changecontrol.v1.changecontrol_pb2 +
    + arista.changecontrol.v1.changecontrol_pb2_grpc +
    + arista.changecontrol.v1.services +
    + arista.changecontrol.v1.services.gen_pb2 +
    + arista.changecontrol.v1.services.gen_pb2_grpc +
    + arista.configlet +
    + arista.configlet.v1 +
    + arista.configlet.v1.configlet_pb2 +
    + arista.configlet.v1.configlet_pb2_grpc +
    + arista.configlet.v1.services +
    + arista.configlet.v1.services.gen_pb2 +
    + arista.configlet.v1.services.gen_pb2_grpc +
    + arista.configstatus +
    + arista.configstatus.v1 +
    + arista.configstatus.v1.configstatus_pb2 +
    + arista.configstatus.v1.configstatus_pb2_grpc +
    + arista.configstatus.v1.services +
    + arista.configstatus.v1.services.gen_pb2 +
    + arista.configstatus.v1.services.gen_pb2_grpc +
    + arista.connectivitymonitor +
    + arista.connectivitymonitor.v1 +
    + arista.connectivitymonitor.v1.connectivitymonitor_pb2 +
    + arista.connectivitymonitor.v1.connectivitymonitor_pb2_grpc +
    + arista.connectivitymonitor.v1.services +
    + arista.connectivitymonitor.v1.services.gen_pb2 +
    + arista.connectivitymonitor.v1.services.gen_pb2_grpc +
    + arista.dashboard +
    + arista.dashboard.v1 +
    + arista.dashboard.v1.dashboard_pb2 +
    + arista.dashboard.v1.dashboard_pb2_grpc +
    + arista.dashboard.v1.services +
    + arista.dashboard.v1.services.gen_pb2 +
    + arista.dashboard.v1.services.gen_pb2_grpc +
    + arista.endpointlocation +
    + arista.endpointlocation.v1 +
    + arista.endpointlocation.v1.endpointlocation_pb2 +
    + arista.endpointlocation.v1.endpointlocation_pb2_grpc +
    + arista.endpointlocation.v1.services +
    + arista.endpointlocation.v1.services.gen_pb2 +
    + arista.endpointlocation.v1.services.gen_pb2_grpc +
    + arista.event +
    + arista.event.v1 +
    + arista.event.v1.event_pb2 +
    + arista.event.v1.event_pb2_grpc +
    + arista.event.v1.services +
    + arista.event.v1.services.gen_pb2 +
    + arista.event.v1.services.gen_pb2_grpc +
    + arista.identityprovider +
    + arista.identityprovider.v1 +
    + arista.identityprovider.v1.identityprovider_pb2 +
    + arista.identityprovider.v1.identityprovider_pb2_grpc +
    + arista.identityprovider.v1.services +
    + arista.identityprovider.v1.services.gen_pb2 +
    + arista.identityprovider.v1.services.gen_pb2_grpc +
    + arista.imagestatus +
    + arista.imagestatus.v1 +
    + arista.imagestatus.v1.imagestatus_pb2 +
    + arista.imagestatus.v1.imagestatus_pb2_grpc +
    + arista.imagestatus.v1.services +
    + arista.imagestatus.v1.services.gen_pb2 +
    + arista.imagestatus.v1.services.gen_pb2_grpc +
    + arista.inventory +
    + arista.inventory.v1 +
    + arista.inventory.v1.inventory_pb2 +
    + arista.inventory.v1.inventory_pb2_grpc +
    + arista.inventory.v1.services +
    + arista.inventory.v1.services.gen_pb2 +
    + arista.inventory.v1.services.gen_pb2_grpc +
    + arista.lifecycle +
    + arista.lifecycle.v1 +
    + arista.lifecycle.v1.lifecycle_pb2 +
    + arista.lifecycle.v1.lifecycle_pb2_grpc +
    + arista.lifecycle.v1.services +
    + arista.lifecycle.v1.services.gen_pb2 +
    + arista.lifecycle.v1.services.gen_pb2_grpc +
    + arista.redirector +
    + arista.redirector.v1 +
    + arista.redirector.v1.redirector_pb2 +
    + arista.redirector.v1.redirector_pb2_grpc +
    + arista.redirector.v1.services +
    + arista.redirector.v1.services.gen_pb2 +
    + arista.redirector.v1.services.gen_pb2_grpc +
    + arista.serviceaccount +
    + arista.serviceaccount.v1 +
    + arista.serviceaccount.v1.serviceaccount_pb2 +
    + arista.serviceaccount.v1.serviceaccount_pb2_grpc +
    + arista.serviceaccount.v1.services +
    + arista.serviceaccount.v1.services.gen_pb2 +
    + arista.serviceaccount.v1.services.gen_pb2_grpc +
    + arista.studio +
    + arista.studio.v1 +
    + arista.studio.v1.services +
    + arista.studio.v1.services.gen_pb2 +
    + arista.studio.v1.services.gen_pb2_grpc +
    + arista.studio.v1.studio_pb2 +
    + arista.studio.v1.studio_pb2_grpc +
    + arista.subscriptions +
    + arista.subscriptions.subscriptions_pb2 +
    + arista.subscriptions.subscriptions_pb2_grpc +
    + arista.tag +
    + arista.tag.v2 +
    + arista.tag.v2.services +
    + arista.tag.v2.services.gen_pb2 +
    + arista.tag.v2.services.gen_pb2_grpc +
    + arista.tag.v2.tag_pb2 +
    + arista.tag.v2.tag_pb2_grpc +
    + arista.time +
    + arista.time.time_pb2 +
    + arista.time.time_pb2_grpc +
    + arista.workspace +
    + arista.workspace.v1 +
    + arista.workspace.v1.services +
    + arista.workspace.v1.services.gen_pb2 +
    + arista.workspace.v1.services.gen_pb2_grpc +
    + arista.workspace.v1.workspace_pb2 +
    + arista.workspace.v1.workspace_pb2_grpc +
 
+ c
+ cloudvision +
    + cloudvision.Connector +
    + cloudvision.Connector.auth +
    + cloudvision.Connector.auth.cert +
    + cloudvision.Connector.codec +
    + cloudvision.Connector.codec.custom_types +
    + cloudvision.Connector.codec.decoder +
    + cloudvision.Connector.codec.encoder +
    + cloudvision.Connector.core +
    + cloudvision.Connector.core.utils +
    + cloudvision.Connector.gen +
    + cloudvision.Connector.gen.ca_pb2 +
    + cloudvision.Connector.gen.ca_pb2_grpc +
    + cloudvision.Connector.gen.notification_pb2 +
    + cloudvision.Connector.gen.notification_pb2_grpc +
    + cloudvision.Connector.gen.router_pb2 +
    + cloudvision.Connector.gen.router_pb2_grpc +
    + cloudvision.Connector.gen.sharding_pb2 +
    + cloudvision.Connector.gen.sharding_pb2_grpc +
    + cloudvision.Connector.grpc_client +
    + cloudvision.Connector.grpc_client.grpcClient +
    + cloudvision.Connector.protobuf +
    + cloudvision.cvlib +
    + cloudvision.cvlib.action +
    + cloudvision.cvlib.changecontrol +
    + cloudvision.cvlib.connections +
    + cloudvision.cvlib.constants +
    + cloudvision.cvlib.context +
    + cloudvision.cvlib.device +
    + cloudvision.cvlib.exceptions +
    + cloudvision.cvlib.execution +
    + cloudvision.cvlib.id_allocator +
    + cloudvision.cvlib.iputils +
    + cloudvision.cvlib.logger +
    + cloudvision.cvlib.studio +
    + cloudvision.cvlib.tags +
    + cloudvision.cvlib.topology +
    + cloudvision.cvlib.user +
    + cloudvision.cvlib.utils +
    + cloudvision.cvlib.workspace +
 
+ f
+ fmp +
    + fmp.deletes_pb2 +
    + fmp.deletes_pb2_grpc +
    + fmp.extensions_pb2 +
    + fmp.extensions_pb2_grpc +
    + fmp.inet_pb2 +
    + fmp.inet_pb2_grpc +
    + fmp.pages_pb2 +
    + fmp.pages_pb2_grpc +
    + fmp.wrappers_pb2 +
    + fmp.wrappers_pb2_grpc +
    + fmp.yang_pb2 +
    + fmp.yang_pb2_grpc +
+ + +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/search.html b/search.html new file mode 100644 index 00000000..b88ac5a2 --- /dev/null +++ b/search.html @@ -0,0 +1,120 @@ + + + + + + + + Search — CloudVision Python 1.21.1 documentation + + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+
    +
  • + +
  • +
  • +
+
+
+
+
+ + + + +
+ +
+ +
+
+ +
+
+
+
+ + + + + + + + + \ No newline at end of file diff --git a/searchindex.js b/searchindex.js new file mode 100644 index 00000000..ead1855d --- /dev/null +++ b/searchindex.js @@ -0,0 +1 @@ +Search.setIndex({"alltitles": {"Contents:": [[67, null]], "Indices and tables": [[67, "indices-and-tables"]], "Module contents": [[0, "module-arista"], [1, "module-arista.alert"], [2, "module-arista.alert.v1"], [3, "module-arista.alert.v1.services"], [4, "module-arista.bugexposure"], [5, "module-arista.bugexposure.v1"], [6, "module-arista.bugexposure.v1.services"], [7, "module-arista.changecontrol"], [8, "module-arista.changecontrol.v1"], [9, "module-arista.changecontrol.v1.services"], [10, "module-arista.configlet"], [11, "module-arista.configlet.v1"], [12, "module-arista.configlet.v1.services"], [13, "module-arista.configstatus"], [14, "module-arista.configstatus.v1"], [15, "module-arista.configstatus.v1.services"], [16, "module-arista.connectivitymonitor"], [17, "module-arista.connectivitymonitor.v1"], [18, "module-arista.connectivitymonitor.v1.services"], [19, "module-arista.dashboard"], [20, "module-arista.dashboard.v1"], [21, "module-arista.dashboard.v1.services"], [22, "module-arista.endpointlocation"], [23, "module-arista.endpointlocation.v1"], [24, "module-arista.endpointlocation.v1.services"], [25, "module-arista.event"], [26, "module-arista.event.v1"], [27, "module-arista.event.v1.services"], [28, "module-arista.identityprovider"], [29, "module-arista.identityprovider.v1"], [30, "module-arista.identityprovider.v1.services"], [31, "module-arista.imagestatus"], [32, "module-arista.imagestatus.v1"], [33, "module-arista.imagestatus.v1.services"], [34, "module-arista.inventory"], [35, "module-arista.inventory.v1"], [36, "module-arista.inventory.v1.services"], [37, "module-arista.lifecycle"], [38, "module-arista.lifecycle.v1"], [39, "module-arista.lifecycle.v1.services"], [40, "module-arista.redirector"], [41, "module-arista.redirector.v1"], [42, "module-arista.redirector.v1.services"], [43, "module-arista.serviceaccount"], [44, "module-arista.serviceaccount.v1"], [45, "module-arista.serviceaccount.v1.services"], [46, "module-arista.studio"], [47, "module-arista.studio.v1"], [48, "module-arista.studio.v1.services"], [49, "module-arista.subscriptions"], [50, "module-arista.tag"], [51, "module-arista.tag.v2"], [52, "module-arista.tag.v2.services"], [53, "module-arista.time"], [54, "module-arista.workspace"], [55, "module-arista.workspace.v1"], [56, "module-arista.workspace.v1.services"], [57, "module-cloudvision"], [58, "module-cloudvision.Connector"], [59, "module-cloudvision.Connector.auth"], [60, "module-cloudvision.Connector.codec"], [61, "module-cloudvision.Connector.core"], [62, "module-cloudvision.Connector.gen"], [63, "module-cloudvision.Connector.grpc_client"], [64, "module-cloudvision.Connector.protobuf"], [65, "module-cloudvision.cvlib"], [66, "module-fmp"]], "Submodules": [[2, "submodules"], [3, "submodules"], [5, "submodules"], [6, "submodules"], [8, "submodules"], [9, "submodules"], [11, "submodules"], [12, "submodules"], [14, "submodules"], [15, "submodules"], [17, "submodules"], [18, "submodules"], [20, "submodules"], [21, "submodules"], [23, "submodules"], [24, "submodules"], [26, "submodules"], [27, "submodules"], [29, "submodules"], [30, "submodules"], [32, "submodules"], [33, "submodules"], [35, "submodules"], [36, "submodules"], [38, "submodules"], [39, "submodules"], [41, "submodules"], [42, "submodules"], [44, "submodules"], [45, "submodules"], [47, "submodules"], [48, "submodules"], [49, "submodules"], [51, "submodules"], [52, "submodules"], [53, "submodules"], [55, "submodules"], [56, "submodules"], [59, "submodules"], [60, "submodules"], [61, "submodules"], [62, "submodules"], [63, "submodules"], [65, "submodules"], [66, "submodules"]], "Subpackages": [[0, "subpackages"], [1, "subpackages"], [2, "subpackages"], [4, "subpackages"], [5, "subpackages"], [7, "subpackages"], [8, "subpackages"], [10, "subpackages"], [11, "subpackages"], [13, "subpackages"], [14, "subpackages"], [16, "subpackages"], [17, "subpackages"], [19, "subpackages"], [20, "subpackages"], [22, "subpackages"], [23, "subpackages"], [25, "subpackages"], [26, "subpackages"], [28, "subpackages"], [29, "subpackages"], [31, "subpackages"], [32, "subpackages"], [34, "subpackages"], [35, "subpackages"], [37, "subpackages"], [38, "subpackages"], [40, "subpackages"], [41, "subpackages"], [43, "subpackages"], [44, "subpackages"], [46, "subpackages"], [47, "subpackages"], [50, "subpackages"], [51, "subpackages"], [54, "subpackages"], [55, "subpackages"], [57, "subpackages"], [58, "subpackages"]], "Welcome to CloudVision Python\u2019s documentation!": [[67, null]], "arista package": [[0, null]], "arista.alert package": [[1, null]], "arista.alert.v1 package": [[2, null]], "arista.alert.v1.alert_pb2 module": [[2, "module-arista.alert.v1.alert_pb2"]], "arista.alert.v1.alert_pb2_grpc module": [[2, "module-arista.alert.v1.alert_pb2_grpc"]], "arista.alert.v1.services package": [[3, null]], "arista.alert.v1.services.gen_pb2 module": [[3, "module-arista.alert.v1.services.gen_pb2"]], "arista.alert.v1.services.gen_pb2_grpc module": [[3, "module-arista.alert.v1.services.gen_pb2_grpc"]], "arista.bugexposure package": [[4, null]], "arista.bugexposure.v1 package": [[5, null]], "arista.bugexposure.v1.bugexposure_pb2 module": [[5, "module-arista.bugexposure.v1.bugexposure_pb2"]], "arista.bugexposure.v1.bugexposure_pb2_grpc module": [[5, "module-arista.bugexposure.v1.bugexposure_pb2_grpc"]], "arista.bugexposure.v1.services package": [[6, null]], "arista.bugexposure.v1.services.gen_pb2 module": [[6, "module-arista.bugexposure.v1.services.gen_pb2"]], "arista.bugexposure.v1.services.gen_pb2_grpc module": [[6, "module-arista.bugexposure.v1.services.gen_pb2_grpc"]], "arista.changecontrol package": [[7, null]], "arista.changecontrol.v1 package": [[8, null]], "arista.changecontrol.v1.changecontrol_pb2 module": [[8, "module-arista.changecontrol.v1.changecontrol_pb2"]], "arista.changecontrol.v1.changecontrol_pb2_grpc module": [[8, "module-arista.changecontrol.v1.changecontrol_pb2_grpc"]], "arista.changecontrol.v1.services package": [[9, null]], "arista.changecontrol.v1.services.gen_pb2 module": [[9, "module-arista.changecontrol.v1.services.gen_pb2"]], "arista.changecontrol.v1.services.gen_pb2_grpc module": [[9, "module-arista.changecontrol.v1.services.gen_pb2_grpc"]], "arista.configlet package": [[10, null]], "arista.configlet.v1 package": [[11, null]], "arista.configlet.v1.configlet_pb2 module": [[11, "module-arista.configlet.v1.configlet_pb2"]], "arista.configlet.v1.configlet_pb2_grpc module": [[11, "module-arista.configlet.v1.configlet_pb2_grpc"]], "arista.configlet.v1.services package": [[12, null]], "arista.configlet.v1.services.gen_pb2 module": [[12, "module-arista.configlet.v1.services.gen_pb2"]], "arista.configlet.v1.services.gen_pb2_grpc module": [[12, "module-arista.configlet.v1.services.gen_pb2_grpc"]], "arista.configstatus package": [[13, null]], "arista.configstatus.v1 package": [[14, null]], "arista.configstatus.v1.configstatus_pb2 module": [[14, "module-arista.configstatus.v1.configstatus_pb2"]], "arista.configstatus.v1.configstatus_pb2_grpc module": [[14, "module-arista.configstatus.v1.configstatus_pb2_grpc"]], "arista.configstatus.v1.services package": [[15, null]], "arista.configstatus.v1.services.gen_pb2 module": [[15, "module-arista.configstatus.v1.services.gen_pb2"]], "arista.configstatus.v1.services.gen_pb2_grpc module": [[15, "module-arista.configstatus.v1.services.gen_pb2_grpc"]], "arista.connectivitymonitor package": [[16, null]], "arista.connectivitymonitor.v1 package": [[17, null]], "arista.connectivitymonitor.v1.connectivitymonitor_pb2 module": [[17, "module-arista.connectivitymonitor.v1.connectivitymonitor_pb2"]], "arista.connectivitymonitor.v1.connectivitymonitor_pb2_grpc module": [[17, "module-arista.connectivitymonitor.v1.connectivitymonitor_pb2_grpc"]], "arista.connectivitymonitor.v1.services package": [[18, null]], "arista.connectivitymonitor.v1.services.gen_pb2 module": [[18, "module-arista.connectivitymonitor.v1.services.gen_pb2"]], "arista.connectivitymonitor.v1.services.gen_pb2_grpc module": [[18, "module-arista.connectivitymonitor.v1.services.gen_pb2_grpc"]], "arista.dashboard package": [[19, null]], "arista.dashboard.v1 package": [[20, null]], "arista.dashboard.v1.dashboard_pb2 module": [[20, "module-arista.dashboard.v1.dashboard_pb2"]], "arista.dashboard.v1.dashboard_pb2_grpc module": [[20, "module-arista.dashboard.v1.dashboard_pb2_grpc"]], "arista.dashboard.v1.services package": [[21, null]], "arista.dashboard.v1.services.gen_pb2 module": [[21, "module-arista.dashboard.v1.services.gen_pb2"]], "arista.dashboard.v1.services.gen_pb2_grpc module": [[21, "module-arista.dashboard.v1.services.gen_pb2_grpc"]], "arista.endpointlocation package": [[22, null]], "arista.endpointlocation.v1 package": [[23, null]], "arista.endpointlocation.v1.endpointlocation_pb2 module": [[23, "module-arista.endpointlocation.v1.endpointlocation_pb2"]], "arista.endpointlocation.v1.endpointlocation_pb2_grpc module": [[23, "module-arista.endpointlocation.v1.endpointlocation_pb2_grpc"]], "arista.endpointlocation.v1.services package": [[24, null]], "arista.endpointlocation.v1.services.gen_pb2 module": [[24, "module-arista.endpointlocation.v1.services.gen_pb2"]], "arista.endpointlocation.v1.services.gen_pb2_grpc module": [[24, "module-arista.endpointlocation.v1.services.gen_pb2_grpc"]], "arista.event package": [[25, null]], "arista.event.v1 package": [[26, null]], "arista.event.v1.event_pb2 module": [[26, "module-arista.event.v1.event_pb2"]], "arista.event.v1.event_pb2_grpc module": [[26, "module-arista.event.v1.event_pb2_grpc"]], "arista.event.v1.services package": [[27, null]], "arista.event.v1.services.gen_pb2 module": [[27, "module-arista.event.v1.services.gen_pb2"]], "arista.event.v1.services.gen_pb2_grpc module": [[27, "module-arista.event.v1.services.gen_pb2_grpc"]], "arista.identityprovider package": [[28, null]], "arista.identityprovider.v1 package": [[29, null]], "arista.identityprovider.v1.identityprovider_pb2 module": [[29, "module-arista.identityprovider.v1.identityprovider_pb2"]], "arista.identityprovider.v1.identityprovider_pb2_grpc module": [[29, "module-arista.identityprovider.v1.identityprovider_pb2_grpc"]], "arista.identityprovider.v1.services package": [[30, null]], "arista.identityprovider.v1.services.gen_pb2 module": [[30, "module-arista.identityprovider.v1.services.gen_pb2"]], "arista.identityprovider.v1.services.gen_pb2_grpc module": [[30, "module-arista.identityprovider.v1.services.gen_pb2_grpc"]], "arista.imagestatus package": [[31, null]], "arista.imagestatus.v1 package": [[32, null]], "arista.imagestatus.v1.imagestatus_pb2 module": [[32, "module-arista.imagestatus.v1.imagestatus_pb2"]], "arista.imagestatus.v1.imagestatus_pb2_grpc module": [[32, "module-arista.imagestatus.v1.imagestatus_pb2_grpc"]], "arista.imagestatus.v1.services package": [[33, null]], "arista.imagestatus.v1.services.gen_pb2 module": [[33, "module-arista.imagestatus.v1.services.gen_pb2"]], "arista.imagestatus.v1.services.gen_pb2_grpc module": [[33, "module-arista.imagestatus.v1.services.gen_pb2_grpc"]], "arista.inventory package": [[34, null]], "arista.inventory.v1 package": [[35, null]], "arista.inventory.v1.inventory_pb2 module": [[35, "module-arista.inventory.v1.inventory_pb2"]], "arista.inventory.v1.inventory_pb2_grpc module": [[35, "module-arista.inventory.v1.inventory_pb2_grpc"]], "arista.inventory.v1.services package": [[36, null]], "arista.inventory.v1.services.gen_pb2 module": [[36, "module-arista.inventory.v1.services.gen_pb2"]], "arista.inventory.v1.services.gen_pb2_grpc module": [[36, "module-arista.inventory.v1.services.gen_pb2_grpc"]], "arista.lifecycle package": [[37, null]], "arista.lifecycle.v1 package": [[38, null]], "arista.lifecycle.v1.lifecycle_pb2 module": [[38, "module-arista.lifecycle.v1.lifecycle_pb2"]], "arista.lifecycle.v1.lifecycle_pb2_grpc module": [[38, "module-arista.lifecycle.v1.lifecycle_pb2_grpc"]], "arista.lifecycle.v1.services package": [[39, null]], "arista.lifecycle.v1.services.gen_pb2 module": [[39, "module-arista.lifecycle.v1.services.gen_pb2"]], "arista.lifecycle.v1.services.gen_pb2_grpc module": [[39, "module-arista.lifecycle.v1.services.gen_pb2_grpc"]], "arista.redirector package": [[40, null]], "arista.redirector.v1 package": [[41, null]], "arista.redirector.v1.redirector_pb2 module": [[41, "module-arista.redirector.v1.redirector_pb2"]], "arista.redirector.v1.redirector_pb2_grpc module": [[41, "module-arista.redirector.v1.redirector_pb2_grpc"]], "arista.redirector.v1.services package": [[42, null]], "arista.redirector.v1.services.gen_pb2 module": [[42, "module-arista.redirector.v1.services.gen_pb2"]], "arista.redirector.v1.services.gen_pb2_grpc module": [[42, "module-arista.redirector.v1.services.gen_pb2_grpc"]], "arista.serviceaccount package": [[43, null]], "arista.serviceaccount.v1 package": [[44, null]], "arista.serviceaccount.v1.serviceaccount_pb2 module": [[44, "module-arista.serviceaccount.v1.serviceaccount_pb2"]], "arista.serviceaccount.v1.serviceaccount_pb2_grpc module": [[44, "module-arista.serviceaccount.v1.serviceaccount_pb2_grpc"]], "arista.serviceaccount.v1.services package": [[45, null]], "arista.serviceaccount.v1.services.gen_pb2 module": [[45, "module-arista.serviceaccount.v1.services.gen_pb2"]], "arista.serviceaccount.v1.services.gen_pb2_grpc module": [[45, "module-arista.serviceaccount.v1.services.gen_pb2_grpc"]], "arista.studio package": [[46, null]], "arista.studio.v1 package": [[47, null]], "arista.studio.v1.services package": [[48, null]], "arista.studio.v1.services.gen_pb2 module": [[48, "module-arista.studio.v1.services.gen_pb2"]], "arista.studio.v1.services.gen_pb2_grpc module": [[48, "module-arista.studio.v1.services.gen_pb2_grpc"]], "arista.studio.v1.studio_pb2 module": [[47, "module-arista.studio.v1.studio_pb2"]], "arista.studio.v1.studio_pb2_grpc module": [[47, "module-arista.studio.v1.studio_pb2_grpc"]], "arista.subscriptions package": [[49, null]], "arista.subscriptions.subscriptions_pb2 module": [[49, "module-arista.subscriptions.subscriptions_pb2"]], "arista.subscriptions.subscriptions_pb2_grpc module": [[49, "module-arista.subscriptions.subscriptions_pb2_grpc"]], "arista.tag package": [[50, null]], "arista.tag.v2 package": [[51, null]], "arista.tag.v2.services package": [[52, null]], "arista.tag.v2.services.gen_pb2 module": [[52, "module-arista.tag.v2.services.gen_pb2"]], "arista.tag.v2.services.gen_pb2_grpc module": [[52, "module-arista.tag.v2.services.gen_pb2_grpc"]], "arista.tag.v2.tag_pb2 module": [[51, "module-arista.tag.v2.tag_pb2"]], "arista.tag.v2.tag_pb2_grpc module": [[51, "module-arista.tag.v2.tag_pb2_grpc"]], "arista.time package": [[53, null]], "arista.time.time_pb2 module": [[53, "module-arista.time.time_pb2"]], "arista.time.time_pb2_grpc module": [[53, "module-arista.time.time_pb2_grpc"]], "arista.workspace package": [[54, null]], "arista.workspace.v1 package": [[55, null]], "arista.workspace.v1.services package": [[56, null]], "arista.workspace.v1.services.gen_pb2 module": [[56, "module-arista.workspace.v1.services.gen_pb2"]], "arista.workspace.v1.services.gen_pb2_grpc module": [[56, "module-arista.workspace.v1.services.gen_pb2_grpc"]], "arista.workspace.v1.workspace_pb2 module": [[55, "module-arista.workspace.v1.workspace_pb2"]], "arista.workspace.v1.workspace_pb2_grpc module": [[55, "module-arista.workspace.v1.workspace_pb2_grpc"]], "cloudvision": [[68, null]], "cloudvision package": [[57, null]], "cloudvision.Connector package": [[58, null]], "cloudvision.Connector.auth package": [[59, null]], "cloudvision.Connector.auth.cert module": [[59, "module-cloudvision.Connector.auth.cert"]], "cloudvision.Connector.codec package": [[60, null]], "cloudvision.Connector.codec.custom_types module": [[60, "module-cloudvision.Connector.codec.custom_types"]], "cloudvision.Connector.codec.decoder module": [[60, "module-cloudvision.Connector.codec.decoder"]], "cloudvision.Connector.codec.encoder module": [[60, "module-cloudvision.Connector.codec.encoder"]], "cloudvision.Connector.core package": [[61, null]], "cloudvision.Connector.core.utils module": [[61, "module-cloudvision.Connector.core.utils"]], "cloudvision.Connector.gen package": [[62, null]], "cloudvision.Connector.gen.ca_pb2 module": [[62, "module-cloudvision.Connector.gen.ca_pb2"]], "cloudvision.Connector.gen.ca_pb2_grpc module": [[62, "module-cloudvision.Connector.gen.ca_pb2_grpc"]], "cloudvision.Connector.gen.notification_pb2 module": [[62, "module-cloudvision.Connector.gen.notification_pb2"]], "cloudvision.Connector.gen.notification_pb2_grpc module": [[62, "module-cloudvision.Connector.gen.notification_pb2_grpc"]], "cloudvision.Connector.gen.router_pb2 module": [[62, "module-cloudvision.Connector.gen.router_pb2"]], "cloudvision.Connector.gen.router_pb2_grpc module": [[62, "module-cloudvision.Connector.gen.router_pb2_grpc"]], "cloudvision.Connector.gen.sharding_pb2 module": [[62, "module-cloudvision.Connector.gen.sharding_pb2"]], "cloudvision.Connector.gen.sharding_pb2_grpc module": [[62, "module-cloudvision.Connector.gen.sharding_pb2_grpc"]], "cloudvision.Connector.grpc_client package": [[63, null]], "cloudvision.Connector.grpc_client.grpcClient module": [[63, "module-cloudvision.Connector.grpc_client.grpcClient"]], "cloudvision.Connector.protobuf package": [[64, null]], "cloudvision.cvlib package": [[65, null]], "cloudvision.cvlib.action module": [[65, "module-cloudvision.cvlib.action"]], "cloudvision.cvlib.changecontrol module": [[65, "module-cloudvision.cvlib.changecontrol"]], "cloudvision.cvlib.connections module": [[65, "module-cloudvision.cvlib.connections"]], "cloudvision.cvlib.constants module": [[65, "module-cloudvision.cvlib.constants"]], "cloudvision.cvlib.context module": [[65, "module-cloudvision.cvlib.context"]], "cloudvision.cvlib.device module": [[65, "module-cloudvision.cvlib.device"]], "cloudvision.cvlib.exceptions module": [[65, "module-cloudvision.cvlib.exceptions"]], "cloudvision.cvlib.execution module": [[65, "module-cloudvision.cvlib.execution"]], "cloudvision.cvlib.id_allocator module": [[65, "module-cloudvision.cvlib.id_allocator"]], "cloudvision.cvlib.iputils module": [[65, "module-cloudvision.cvlib.iputils"]], "cloudvision.cvlib.logger module": [[65, "module-cloudvision.cvlib.logger"]], "cloudvision.cvlib.studio module": [[65, "module-cloudvision.cvlib.studio"]], "cloudvision.cvlib.tags module": [[65, "module-cloudvision.cvlib.tags"]], "cloudvision.cvlib.topology module": [[65, "module-cloudvision.cvlib.topology"]], "cloudvision.cvlib.user module": [[65, "module-cloudvision.cvlib.user"]], "cloudvision.cvlib.utils module": [[65, "module-cloudvision.cvlib.utils"]], "cloudvision.cvlib.workspace module": [[65, "module-cloudvision.cvlib.workspace"]], "fmp package": [[66, null]], "fmp.deletes_pb2 module": [[66, "module-fmp.deletes_pb2"]], "fmp.deletes_pb2_grpc module": [[66, "module-fmp.deletes_pb2_grpc"]], "fmp.extensions_pb2 module": [[66, "module-fmp.extensions_pb2"]], "fmp.extensions_pb2_grpc module": [[66, "module-fmp.extensions_pb2_grpc"]], "fmp.inet_pb2 module": [[66, "module-fmp.inet_pb2"]], "fmp.inet_pb2_grpc module": [[66, "module-fmp.inet_pb2_grpc"]], "fmp.pages_pb2 module": [[66, "module-fmp.pages_pb2"]], "fmp.pages_pb2_grpc module": [[66, "module-fmp.pages_pb2_grpc"]], "fmp.wrappers_pb2 module": [[66, "module-fmp.wrappers_pb2"]], "fmp.wrappers_pb2_grpc module": [[66, "module-fmp.wrappers_pb2_grpc"]], "fmp.yang_pb2 module": [[66, "module-fmp.yang_pb2"]], "fmp.yang_pb2_grpc module": [[66, "module-fmp.yang_pb2_grpc"]]}, "docnames": ["arista", "arista.alert", "arista.alert.v1", "arista.alert.v1.services", "arista.bugexposure", "arista.bugexposure.v1", "arista.bugexposure.v1.services", "arista.changecontrol", "arista.changecontrol.v1", "arista.changecontrol.v1.services", "arista.configlet", "arista.configlet.v1", "arista.configlet.v1.services", "arista.configstatus", "arista.configstatus.v1", "arista.configstatus.v1.services", "arista.connectivitymonitor", "arista.connectivitymonitor.v1", "arista.connectivitymonitor.v1.services", "arista.dashboard", "arista.dashboard.v1", "arista.dashboard.v1.services", "arista.endpointlocation", "arista.endpointlocation.v1", "arista.endpointlocation.v1.services", "arista.event", "arista.event.v1", "arista.event.v1.services", "arista.identityprovider", "arista.identityprovider.v1", "arista.identityprovider.v1.services", "arista.imagestatus", "arista.imagestatus.v1", "arista.imagestatus.v1.services", "arista.inventory", "arista.inventory.v1", "arista.inventory.v1.services", "arista.lifecycle", "arista.lifecycle.v1", "arista.lifecycle.v1.services", "arista.redirector", "arista.redirector.v1", "arista.redirector.v1.services", "arista.serviceaccount", "arista.serviceaccount.v1", "arista.serviceaccount.v1.services", "arista.studio", "arista.studio.v1", "arista.studio.v1.services", "arista.subscriptions", "arista.tag", "arista.tag.v2", "arista.tag.v2.services", "arista.time", "arista.workspace", "arista.workspace.v1", "arista.workspace.v1.services", "cloudvision", "cloudvision.Connector", "cloudvision.Connector.auth", "cloudvision.Connector.codec", "cloudvision.Connector.core", "cloudvision.Connector.gen", "cloudvision.Connector.grpc_client", "cloudvision.Connector.protobuf", "cloudvision.cvlib", "fmp", "index", "modules"], "envversion": {"sphinx": 64, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.viewcode": 1}, "filenames": ["arista.rst", "arista.alert.rst", "arista.alert.v1.rst", "arista.alert.v1.services.rst", "arista.bugexposure.rst", "arista.bugexposure.v1.rst", "arista.bugexposure.v1.services.rst", "arista.changecontrol.rst", "arista.changecontrol.v1.rst", "arista.changecontrol.v1.services.rst", "arista.configlet.rst", "arista.configlet.v1.rst", "arista.configlet.v1.services.rst", "arista.configstatus.rst", "arista.configstatus.v1.rst", "arista.configstatus.v1.services.rst", "arista.connectivitymonitor.rst", "arista.connectivitymonitor.v1.rst", "arista.connectivitymonitor.v1.services.rst", "arista.dashboard.rst", "arista.dashboard.v1.rst", "arista.dashboard.v1.services.rst", "arista.endpointlocation.rst", "arista.endpointlocation.v1.rst", "arista.endpointlocation.v1.services.rst", "arista.event.rst", "arista.event.v1.rst", "arista.event.v1.services.rst", "arista.identityprovider.rst", "arista.identityprovider.v1.rst", "arista.identityprovider.v1.services.rst", "arista.imagestatus.rst", "arista.imagestatus.v1.rst", "arista.imagestatus.v1.services.rst", "arista.inventory.rst", "arista.inventory.v1.rst", "arista.inventory.v1.services.rst", "arista.lifecycle.rst", "arista.lifecycle.v1.rst", "arista.lifecycle.v1.services.rst", "arista.redirector.rst", "arista.redirector.v1.rst", "arista.redirector.v1.services.rst", "arista.serviceaccount.rst", "arista.serviceaccount.v1.rst", "arista.serviceaccount.v1.services.rst", "arista.studio.rst", "arista.studio.v1.rst", "arista.studio.v1.services.rst", "arista.subscriptions.rst", "arista.tag.rst", "arista.tag.v2.rst", "arista.tag.v2.services.rst", "arista.time.rst", "arista.workspace.rst", "arista.workspace.v1.rst", "arista.workspace.v1.services.rst", "cloudvision.rst", "cloudvision.Connector.rst", "cloudvision.Connector.auth.rst", "cloudvision.Connector.codec.rst", "cloudvision.Connector.core.rst", "cloudvision.Connector.gen.rst", "cloudvision.Connector.grpc_client.rst", "cloudvision.Connector.protobuf.rst", "cloudvision.cvlib.rst", "fmp.rst", "index.rst", "modules.rst"], "indexentries": {"account (class in arista.serviceaccount.v1.serviceaccount_pb2)": [[44, "arista.serviceaccount.v1.serviceaccount_pb2.Account", false]], "accountconfig (class in arista.serviceaccount.v1.serviceaccount_pb2)": [[44, "arista.serviceaccount.v1.serviceaccount_pb2.AccountConfig", false]], "accountconfigdeleteallrequest (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.AccountConfigDeleteAllRequest", false]], "accountconfigdeleteallresponse (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.AccountConfigDeleteAllResponse", false]], "accountconfigdeleterequest (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.AccountConfigDeleteRequest", false]], "accountconfigdeleteresponse (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.AccountConfigDeleteResponse", false]], "accountconfigdeletesomerequest (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.AccountConfigDeleteSomeRequest", false]], "accountconfigdeletesomeresponse (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.AccountConfigDeleteSomeResponse", false]], "accountconfigrequest (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.AccountConfigRequest", false]], "accountconfigresponse (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.AccountConfigResponse", false]], "accountconfigservice (class in arista.serviceaccount.v1.services.gen_pb2_grpc)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.AccountConfigService", false]], "accountconfigserviceservicer (class in arista.serviceaccount.v1.services.gen_pb2_grpc)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.AccountConfigServiceServicer", false]], "accountconfigservicestub (class in arista.serviceaccount.v1.services.gen_pb2_grpc)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.AccountConfigServiceStub", false]], "accountconfigsetrequest (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.AccountConfigSetRequest", false]], "accountconfigsetresponse (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.AccountConfigSetResponse", false]], "accountconfigsetsomerequest (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.AccountConfigSetSomeRequest", false]], "accountconfigsetsomeresponse (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.AccountConfigSetSomeResponse", false]], "accountconfigsomerequest (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.AccountConfigSomeRequest", false]], "accountconfigsomeresponse (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.AccountConfigSomeResponse", false]], "accountconfigstreamrequest (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.AccountConfigStreamRequest", false]], "accountconfigstreamresponse (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.AccountConfigStreamResponse", false]], "accountkey (class in arista.serviceaccount.v1.serviceaccount_pb2)": [[44, "arista.serviceaccount.v1.serviceaccount_pb2.AccountKey", false]], "accountrequest (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.AccountRequest", false]], "accountresponse (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.AccountResponse", false]], "accountservice (class in arista.serviceaccount.v1.services.gen_pb2_grpc)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.AccountService", false]], "accountserviceservicer (class in arista.serviceaccount.v1.services.gen_pb2_grpc)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.AccountServiceServicer", false]], "accountservicestub (class in arista.serviceaccount.v1.services.gen_pb2_grpc)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.AccountServiceStub", false]], "accountsomerequest (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.AccountSomeRequest", false]], "accountsomeresponse (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.AccountSomeResponse", false]], "accountstreamrequest (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.AccountStreamRequest", false]], "accountstreamresponse (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.AccountStreamResponse", false]], "action (class in arista.changecontrol.v1.changecontrol_pb2)": [[8, "arista.changecontrol.v1.changecontrol_pb2.Action", false]], "action (class in cloudvision.cvlib.action)": [[65, "cloudvision.cvlib.action.Action", false]], "actioncontext (class in cloudvision.cvlib.action)": [[65, "cloudvision.cvlib.action.ActionContext", false]], "actionfailed": [[65, "cloudvision.cvlib.exceptions.ActionFailed", false]], "activatedebugmode() (cloudvision.cvlib.context.context method)": [[65, "cloudvision.cvlib.context.Context.activateDebugMode", false]], "add_accountconfigserviceservicer_to_server() (in module arista.serviceaccount.v1.services.gen_pb2_grpc)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.add_AccountConfigServiceServicer_to_server", false]], "add_accountserviceservicer_to_server() (in module arista.serviceaccount.v1.services.gen_pb2_grpc)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.add_AccountServiceServicer_to_server", false]], "add_alertconfigserviceservicer_to_server() (in module arista.alert.v1.services.gen_pb2_grpc)": [[3, "arista.alert.v1.services.gen_pb2_grpc.add_AlertConfigServiceServicer_to_server", false]], "add_alertserviceservicer_to_server() (in module arista.alert.v1.services.gen_pb2_grpc)": [[3, "arista.alert.v1.services.gen_pb2_grpc.add_AlertServiceServicer_to_server", false]], "add_alphaservicer_to_server() (in module cloudvision.connector.gen.router_pb2_grpc)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.add_AlphaServicer_to_server", false]], "add_approveconfigserviceservicer_to_server() (in module arista.changecontrol.v1.services.gen_pb2_grpc)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.add_ApproveConfigServiceServicer_to_server", false]], "add_assignedtagsconfigserviceservicer_to_server() (in module arista.studio.v1.services.gen_pb2_grpc)": [[48, "arista.studio.v1.services.gen_pb2_grpc.add_AssignedTagsConfigServiceServicer_to_server", false]], "add_assignedtagsserviceservicer_to_server() (in module arista.studio.v1.services.gen_pb2_grpc)": [[48, "arista.studio.v1.services.gen_pb2_grpc.add_AssignedTagsServiceServicer_to_server", false]], "add_assignmentserviceservicer_to_server() (in module arista.redirector.v1.services.gen_pb2_grpc)": [[42, "arista.redirector.v1.services.gen_pb2_grpc.add_AssignmentServiceServicer_to_server", false]], "add_authservicer_to_server() (in module cloudvision.connector.gen.router_pb2_grpc)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.add_AuthServicer_to_server", false]], "add_autofillactionconfigserviceservicer_to_server() (in module arista.studio.v1.services.gen_pb2_grpc)": [[48, "arista.studio.v1.services.gen_pb2_grpc.add_AutofillActionConfigServiceServicer_to_server", false]], "add_autofillactionserviceservicer_to_server() (in module arista.studio.v1.services.gen_pb2_grpc)": [[48, "arista.studio.v1.services.gen_pb2_grpc.add_AutofillActionServiceServicer_to_server", false]], "add_bugexposureserviceservicer_to_server() (in module arista.bugexposure.v1.services.gen_pb2_grpc)": [[6, "arista.bugexposure.v1.services.gen_pb2_grpc.add_BugExposureServiceServicer_to_server", false]], "add_certificateauthorityservicer_to_server() (in module cloudvision.connector.gen.ca_pb2_grpc)": [[62, "cloudvision.Connector.gen.ca_pb2_grpc.add_CertificateAuthorityServicer_to_server", false]], "add_changecontrolconfigserviceservicer_to_server() (in module arista.changecontrol.v1.services.gen_pb2_grpc)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.add_ChangeControlConfigServiceServicer_to_server", false]], "add_changecontrolserviceservicer_to_server() (in module arista.changecontrol.v1.services.gen_pb2_grpc)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.add_ChangeControlServiceServicer_to_server", false]], "add_clusterservicer_to_server() (in module cloudvision.connector.gen.router_pb2_grpc)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.add_ClusterServicer_to_server", false]], "add_configdiffserviceservicer_to_server() (in module arista.configstatus.v1.services.gen_pb2_grpc)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.add_ConfigDiffServiceServicer_to_server", false]], "add_configletassignmentconfigserviceservicer_to_server() (in module arista.configlet.v1.services.gen_pb2_grpc)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.add_ConfigletAssignmentConfigServiceServicer_to_server", false]], "add_configletassignmentserviceservicer_to_server() (in module arista.configlet.v1.services.gen_pb2_grpc)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.add_ConfigletAssignmentServiceServicer_to_server", false]], "add_configletconfigserviceservicer_to_server() (in module arista.configlet.v1.services.gen_pb2_grpc)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.add_ConfigletConfigServiceServicer_to_server", false]], "add_configletserviceservicer_to_server() (in module arista.configlet.v1.services.gen_pb2_grpc)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.add_ConfigletServiceServicer_to_server", false]], "add_configurationserviceservicer_to_server() (in module arista.configstatus.v1.services.gen_pb2_grpc)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.add_ConfigurationServiceServicer_to_server", false]], "add_dashboardconfigserviceservicer_to_server() (in module arista.dashboard.v1.services.gen_pb2_grpc)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.add_DashboardConfigServiceServicer_to_server", false]], "add_dashboardserviceservicer_to_server() (in module arista.dashboard.v1.services.gen_pb2_grpc)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.add_DashboardServiceServicer_to_server", false]], "add_defaulttemplateserviceservicer_to_server() (in module arista.alert.v1.services.gen_pb2_grpc)": [[3, "arista.alert.v1.services.gen_pb2_grpc.add_DefaultTemplateServiceServicer_to_server", false]], "add_devicedecommissioningconfigserviceservicer_to_server() (in module arista.inventory.v1.services.gen_pb2_grpc)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.add_DeviceDecommissioningConfigServiceServicer_to_server", false]], "add_devicedecommissioningserviceservicer_to_server() (in module arista.inventory.v1.services.gen_pb2_grpc)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.add_DeviceDecommissioningServiceServicer_to_server", false]], "add_devicelifecyclesummaryserviceservicer_to_server() (in module arista.lifecycle.v1.services.gen_pb2_grpc)": [[39, "arista.lifecycle.v1.services.gen_pb2_grpc.add_DeviceLifecycleSummaryServiceServicer_to_server", false]], "add_deviceonboardingconfigserviceservicer_to_server() (in module arista.inventory.v1.services.gen_pb2_grpc)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.add_DeviceOnboardingConfigServiceServicer_to_server", false]], "add_deviceonboardingserviceservicer_to_server() (in module arista.inventory.v1.services.gen_pb2_grpc)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.add_DeviceOnboardingServiceServicer_to_server", false]], "add_deviceserviceservicer_to_server() (in module arista.inventory.v1.services.gen_pb2_grpc)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.add_DeviceServiceServicer_to_server", false]], "add_endpointlocationserviceservicer_to_server() (in module arista.endpointlocation.v1.services.gen_pb2_grpc)": [[24, "arista.endpointlocation.v1.services.gen_pb2_grpc.add_EndpointLocationServiceServicer_to_server", false]], "add_eventannotationconfigserviceservicer_to_server() (in module arista.event.v1.services.gen_pb2_grpc)": [[27, "arista.event.v1.services.gen_pb2_grpc.add_EventAnnotationConfigServiceServicer_to_server", false]], "add_eventserviceservicer_to_server() (in module arista.event.v1.services.gen_pb2_grpc)": [[27, "arista.event.v1.services.gen_pb2_grpc.add_EventServiceServicer_to_server", false]], "add_globaldashboardconfigserviceservicer_to_server() (in module arista.dashboard.v1.services.gen_pb2_grpc)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.add_GlobalDashboardConfigServiceServicer_to_server", false]], "add_inputsconfigserviceservicer_to_server() (in module arista.studio.v1.services.gen_pb2_grpc)": [[48, "arista.studio.v1.services.gen_pb2_grpc.add_InputsConfigServiceServicer_to_server", false]], "add_inputsserviceservicer_to_server() (in module arista.studio.v1.services.gen_pb2_grpc)": [[48, "arista.studio.v1.services.gen_pb2_grpc.add_InputsServiceServicer_to_server", false]], "add_oauthconfigserviceservicer_to_server() (in module arista.identityprovider.v1.services.gen_pb2_grpc)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.add_OAuthConfigServiceServicer_to_server", false]], "add_probeserviceservicer_to_server() (in module arista.connectivitymonitor.v1.services.gen_pb2_grpc)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2_grpc.add_ProbeServiceServicer_to_server", false]], "add_probestatsserviceservicer_to_server() (in module arista.connectivitymonitor.v1.services.gen_pb2_grpc)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2_grpc.add_ProbeStatsServiceServicer_to_server", false]], "add_provisioneddeviceserviceservicer_to_server() (in module arista.inventory.v1.services.gen_pb2_grpc)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.add_ProvisionedDeviceServiceServicer_to_server", false]], "add_querierservicer_to_server() (in module cloudvision.connector.gen.router_pb2_grpc)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.add_QuerierServicer_to_server", false]], "add_routerv1servicer_to_server() (in module cloudvision.connector.gen.router_pb2_grpc)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.add_RouterV1Servicer_to_server", false]], "add_samlconfigserviceservicer_to_server() (in module arista.identityprovider.v1.services.gen_pb2_grpc)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.add_SAMLConfigServiceServicer_to_server", false]], "add_searchservicer_to_server() (in module cloudvision.connector.gen.router_pb2_grpc)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.add_SearchServicer_to_server", false]], "add_secretinputserviceservicer_to_server() (in module arista.studio.v1.services.gen_pb2_grpc)": [[48, "arista.studio.v1.services.gen_pb2_grpc.add_SecretInputServiceServicer_to_server", false]], "add_securityprofilediffserviceservicer_to_server() (in module arista.configstatus.v1.services.gen_pb2_grpc)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.add_SecurityProfileDiffServiceServicer_to_server", false]], "add_securityprofilediffsummaryserviceservicer_to_server() (in module arista.configstatus.v1.services.gen_pb2_grpc)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.add_SecurityProfileDiffSummaryServiceServicer_to_server", false]], "add_securityprofileserviceservicer_to_server() (in module arista.configstatus.v1.services.gen_pb2_grpc)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.add_SecurityProfileServiceServicer_to_server", false]], "add_studioconfigserviceservicer_to_server() (in module arista.studio.v1.services.gen_pb2_grpc)": [[48, "arista.studio.v1.services.gen_pb2_grpc.add_StudioConfigServiceServicer_to_server", false]], "add_studioserviceservicer_to_server() (in module arista.studio.v1.services.gen_pb2_grpc)": [[48, "arista.studio.v1.services.gen_pb2_grpc.add_StudioServiceServicer_to_server", false]], "add_studiosummaryserviceservicer_to_server() (in module arista.studio.v1.services.gen_pb2_grpc)": [[48, "arista.studio.v1.services.gen_pb2_grpc.add_StudioSummaryServiceServicer_to_server", false]], "add_summaryserviceservicer_to_server() (in module arista.configstatus.v1.services.gen_pb2_grpc)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.add_SummaryServiceServicer_to_server", false]], "add_summaryserviceservicer_to_server() (in module arista.imagestatus.v1.services.gen_pb2_grpc)": [[33, "arista.imagestatus.v1.services.gen_pb2_grpc.add_SummaryServiceServicer_to_server", false]], "add_tagassignmentconfigserviceservicer_to_server() (in module arista.tag.v2.services.gen_pb2_grpc)": [[52, "arista.tag.v2.services.gen_pb2_grpc.add_TagAssignmentConfigServiceServicer_to_server", false]], "add_tagassignmentserviceservicer_to_server() (in module arista.tag.v2.services.gen_pb2_grpc)": [[52, "arista.tag.v2.services.gen_pb2_grpc.add_TagAssignmentServiceServicer_to_server", false]], "add_tagconfigserviceservicer_to_server() (in module arista.tag.v2.services.gen_pb2_grpc)": [[52, "arista.tag.v2.services.gen_pb2_grpc.add_TagConfigServiceServicer_to_server", false]], "add_tagserviceservicer_to_server() (in module arista.tag.v2.services.gen_pb2_grpc)": [[52, "arista.tag.v2.services.gen_pb2_grpc.add_TagServiceServicer_to_server", false]], "add_templateconfigserviceservicer_to_server() (in module arista.alert.v1.services.gen_pb2_grpc)": [[3, "arista.alert.v1.services.gen_pb2_grpc.add_TemplateConfigServiceServicer_to_server", false]], "add_tokenconfigserviceservicer_to_server() (in module arista.serviceaccount.v1.services.gen_pb2_grpc)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.add_TokenConfigServiceServicer_to_server", false]], "add_tokenserviceservicer_to_server() (in module arista.serviceaccount.v1.services.gen_pb2_grpc)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.add_TokenServiceServicer_to_server", false]], "add_usereventcreationconfigserviceservicer_to_server() (in module arista.event.v1.services.gen_pb2_grpc)": [[27, "arista.event.v1.services.gen_pb2_grpc.add_UserEventCreationConfigServiceServicer_to_server", false]], "add_workspacebuilddetailsserviceservicer_to_server() (in module arista.workspace.v1.services.gen_pb2_grpc)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.add_WorkspaceBuildDetailsServiceServicer_to_server", false]], "add_workspacebuildserviceservicer_to_server() (in module arista.workspace.v1.services.gen_pb2_grpc)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.add_WorkspaceBuildServiceServicer_to_server", false]], "add_workspaceconfigserviceservicer_to_server() (in module arista.workspace.v1.services.gen_pb2_grpc)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.add_WorkspaceConfigServiceServicer_to_server", false]], "add_workspaceserviceservicer_to_server() (in module arista.workspace.v1.services.gen_pb2_grpc)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.add_WorkspaceServiceServicer_to_server", false]], "add_workspacesyncconfigserviceservicer_to_server() (in module arista.workspace.v1.services.gen_pb2_grpc)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.add_WorkspaceSyncConfigServiceServicer_to_server", false]], "addheaderinterceptor() (in module cloudvision.cvlib.connections)": [[65, "cloudvision.cvlib.connections.addHeaderInterceptor", false]], "addinterface() (cloudvision.cvlib.device.device method)": [[65, "cloudvision.cvlib.device.Device.addInterface", false]], "alert (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.Alert", false]], "alertconfig (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.AlertConfig", false]], "alertconfigrequest (class in arista.alert.v1.services.gen_pb2)": [[3, "arista.alert.v1.services.gen_pb2.AlertConfigRequest", false]], "alertconfigresponse (class in arista.alert.v1.services.gen_pb2)": [[3, "arista.alert.v1.services.gen_pb2.AlertConfigResponse", false]], "alertconfigservice (class in arista.alert.v1.services.gen_pb2_grpc)": [[3, "arista.alert.v1.services.gen_pb2_grpc.AlertConfigService", false]], "alertconfigserviceservicer (class in arista.alert.v1.services.gen_pb2_grpc)": [[3, "arista.alert.v1.services.gen_pb2_grpc.AlertConfigServiceServicer", false]], "alertconfigservicestub (class in arista.alert.v1.services.gen_pb2_grpc)": [[3, "arista.alert.v1.services.gen_pb2_grpc.AlertConfigServiceStub", false]], "alertconfigsetrequest (class in arista.alert.v1.services.gen_pb2)": [[3, "arista.alert.v1.services.gen_pb2.AlertConfigSetRequest", false]], "alertconfigsetresponse (class in arista.alert.v1.services.gen_pb2)": [[3, "arista.alert.v1.services.gen_pb2.AlertConfigSetResponse", false]], "alertconfigstreamrequest (class in arista.alert.v1.services.gen_pb2)": [[3, "arista.alert.v1.services.gen_pb2.AlertConfigStreamRequest", false]], "alertconfigstreamresponse (class in arista.alert.v1.services.gen_pb2)": [[3, "arista.alert.v1.services.gen_pb2.AlertConfigStreamResponse", false]], "alertrequest (class in arista.alert.v1.services.gen_pb2)": [[3, "arista.alert.v1.services.gen_pb2.AlertRequest", false]], "alertresponse (class in arista.alert.v1.services.gen_pb2)": [[3, "arista.alert.v1.services.gen_pb2.AlertResponse", false]], "alertservice (class in arista.alert.v1.services.gen_pb2_grpc)": [[3, "arista.alert.v1.services.gen_pb2_grpc.AlertService", false]], "alertserviceservicer (class in arista.alert.v1.services.gen_pb2_grpc)": [[3, "arista.alert.v1.services.gen_pb2_grpc.AlertServiceServicer", false]], "alertservicestub (class in arista.alert.v1.services.gen_pb2_grpc)": [[3, "arista.alert.v1.services.gen_pb2_grpc.AlertServiceStub", false]], "alertstreamrequest (class in arista.alert.v1.services.gen_pb2)": [[3, "arista.alert.v1.services.gen_pb2.AlertStreamRequest", false]], "alertstreamresponse (class in arista.alert.v1.services.gen_pb2)": [[3, "arista.alert.v1.services.gen_pb2.AlertStreamResponse", false]], "allocate() (cloudvision.cvlib.id_allocator.idallocator method)": [[65, "cloudvision.cvlib.id_allocator.IdAllocator.allocate", false]], "alog() (cloudvision.cvlib.context.context method)": [[65, "cloudvision.cvlib.context.Context.alog", false]], "alpha (class in cloudvision.connector.gen.router_pb2_grpc)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.Alpha", false]], "alphaservicer (class in cloudvision.connector.gen.router_pb2_grpc)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.AlphaServicer", false]], "alphastub (class in cloudvision.connector.gen.router_pb2_grpc)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.AlphaStub", false]], "approveconfig (class in arista.changecontrol.v1.changecontrol_pb2)": [[8, "arista.changecontrol.v1.changecontrol_pb2.ApproveConfig", false]], "approveconfigbatchedstreamrequest (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.ApproveConfigBatchedStreamRequest", false]], "approveconfigbatchedstreamresponse (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.ApproveConfigBatchedStreamResponse", false]], "approveconfigdeleteallrequest (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.ApproveConfigDeleteAllRequest", false]], "approveconfigdeleteallresponse (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.ApproveConfigDeleteAllResponse", false]], "approveconfigdeleterequest (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.ApproveConfigDeleteRequest", false]], "approveconfigdeleteresponse (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.ApproveConfigDeleteResponse", false]], "approveconfigdeletesomerequest (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.ApproveConfigDeleteSomeRequest", false]], "approveconfigdeletesomeresponse (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.ApproveConfigDeleteSomeResponse", false]], "approveconfigrequest (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.ApproveConfigRequest", false]], "approveconfigresponse (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.ApproveConfigResponse", false]], "approveconfigservice (class in arista.changecontrol.v1.services.gen_pb2_grpc)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ApproveConfigService", false]], "approveconfigserviceservicer (class in arista.changecontrol.v1.services.gen_pb2_grpc)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ApproveConfigServiceServicer", false]], "approveconfigservicestub (class in arista.changecontrol.v1.services.gen_pb2_grpc)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ApproveConfigServiceStub", false]], "approveconfigsetrequest (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.ApproveConfigSetRequest", false]], "approveconfigsetresponse (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.ApproveConfigSetResponse", false]], "approveconfigsetsomerequest (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.ApproveConfigSetSomeRequest", false]], "approveconfigsetsomeresponse (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.ApproveConfigSetSomeResponse", false]], "approveconfigsomerequest (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.ApproveConfigSomeRequest", false]], "approveconfigsomeresponse (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.ApproveConfigSomeResponse", false]], "approveconfigstreamrequest (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.ApproveConfigStreamRequest", false]], "approveconfigstreamresponse (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.ApproveConfigStreamResponse", false]], "arista": [[0, "module-arista", false]], "arista.alert": [[1, "module-arista.alert", false]], "arista.alert.v1": [[2, "module-arista.alert.v1", false]], "arista.alert.v1.alert_pb2": [[2, "module-arista.alert.v1.alert_pb2", false]], "arista.alert.v1.alert_pb2_grpc": [[2, "module-arista.alert.v1.alert_pb2_grpc", false]], "arista.alert.v1.services": [[3, "module-arista.alert.v1.services", false]], "arista.alert.v1.services.gen_pb2": [[3, "module-arista.alert.v1.services.gen_pb2", false]], "arista.alert.v1.services.gen_pb2_grpc": [[3, "module-arista.alert.v1.services.gen_pb2_grpc", false]], "arista.bugexposure": [[4, "module-arista.bugexposure", false]], "arista.bugexposure.v1": [[5, "module-arista.bugexposure.v1", false]], "arista.bugexposure.v1.bugexposure_pb2": [[5, "module-arista.bugexposure.v1.bugexposure_pb2", false]], "arista.bugexposure.v1.bugexposure_pb2_grpc": [[5, "module-arista.bugexposure.v1.bugexposure_pb2_grpc", false]], "arista.bugexposure.v1.services": [[6, "module-arista.bugexposure.v1.services", false]], "arista.bugexposure.v1.services.gen_pb2": [[6, "module-arista.bugexposure.v1.services.gen_pb2", false]], "arista.bugexposure.v1.services.gen_pb2_grpc": [[6, "module-arista.bugexposure.v1.services.gen_pb2_grpc", false]], "arista.changecontrol": [[7, "module-arista.changecontrol", false]], "arista.changecontrol.v1": [[8, "module-arista.changecontrol.v1", false]], "arista.changecontrol.v1.changecontrol_pb2": [[8, "module-arista.changecontrol.v1.changecontrol_pb2", false]], "arista.changecontrol.v1.changecontrol_pb2_grpc": [[8, "module-arista.changecontrol.v1.changecontrol_pb2_grpc", false]], "arista.changecontrol.v1.services": [[9, "module-arista.changecontrol.v1.services", false]], "arista.changecontrol.v1.services.gen_pb2": [[9, "module-arista.changecontrol.v1.services.gen_pb2", false]], "arista.changecontrol.v1.services.gen_pb2_grpc": [[9, "module-arista.changecontrol.v1.services.gen_pb2_grpc", false]], "arista.configlet": [[10, "module-arista.configlet", false]], "arista.configlet.v1": [[11, "module-arista.configlet.v1", false]], "arista.configlet.v1.configlet_pb2": [[11, "module-arista.configlet.v1.configlet_pb2", false]], "arista.configlet.v1.configlet_pb2_grpc": [[11, "module-arista.configlet.v1.configlet_pb2_grpc", false]], "arista.configlet.v1.services": [[12, "module-arista.configlet.v1.services", false]], "arista.configlet.v1.services.gen_pb2": [[12, "module-arista.configlet.v1.services.gen_pb2", false]], "arista.configlet.v1.services.gen_pb2_grpc": [[12, "module-arista.configlet.v1.services.gen_pb2_grpc", false]], "arista.configstatus": [[13, "module-arista.configstatus", false]], "arista.configstatus.v1": [[14, "module-arista.configstatus.v1", false]], "arista.configstatus.v1.configstatus_pb2": [[14, "module-arista.configstatus.v1.configstatus_pb2", false]], "arista.configstatus.v1.configstatus_pb2_grpc": [[14, "module-arista.configstatus.v1.configstatus_pb2_grpc", false]], "arista.configstatus.v1.services": [[15, "module-arista.configstatus.v1.services", false]], "arista.configstatus.v1.services.gen_pb2": [[15, "module-arista.configstatus.v1.services.gen_pb2", false]], "arista.configstatus.v1.services.gen_pb2_grpc": [[15, "module-arista.configstatus.v1.services.gen_pb2_grpc", false]], "arista.connectivitymonitor": [[16, "module-arista.connectivitymonitor", false]], "arista.connectivitymonitor.v1": [[17, "module-arista.connectivitymonitor.v1", false]], "arista.connectivitymonitor.v1.connectivitymonitor_pb2": [[17, "module-arista.connectivitymonitor.v1.connectivitymonitor_pb2", false]], "arista.connectivitymonitor.v1.connectivitymonitor_pb2_grpc": [[17, "module-arista.connectivitymonitor.v1.connectivitymonitor_pb2_grpc", false]], "arista.connectivitymonitor.v1.services": [[18, "module-arista.connectivitymonitor.v1.services", false]], "arista.connectivitymonitor.v1.services.gen_pb2": [[18, "module-arista.connectivitymonitor.v1.services.gen_pb2", false]], "arista.connectivitymonitor.v1.services.gen_pb2_grpc": [[18, "module-arista.connectivitymonitor.v1.services.gen_pb2_grpc", false]], "arista.dashboard": [[19, "module-arista.dashboard", false]], "arista.dashboard.v1": [[20, "module-arista.dashboard.v1", false]], "arista.dashboard.v1.dashboard_pb2": [[20, "module-arista.dashboard.v1.dashboard_pb2", false]], "arista.dashboard.v1.dashboard_pb2_grpc": [[20, "module-arista.dashboard.v1.dashboard_pb2_grpc", false]], "arista.dashboard.v1.services": [[21, "module-arista.dashboard.v1.services", false]], "arista.dashboard.v1.services.gen_pb2": [[21, "module-arista.dashboard.v1.services.gen_pb2", false]], "arista.dashboard.v1.services.gen_pb2_grpc": [[21, "module-arista.dashboard.v1.services.gen_pb2_grpc", false]], "arista.endpointlocation": [[22, "module-arista.endpointlocation", false]], "arista.endpointlocation.v1": [[23, "module-arista.endpointlocation.v1", false]], "arista.endpointlocation.v1.endpointlocation_pb2": [[23, "module-arista.endpointlocation.v1.endpointlocation_pb2", false]], "arista.endpointlocation.v1.endpointlocation_pb2_grpc": [[23, "module-arista.endpointlocation.v1.endpointlocation_pb2_grpc", false]], "arista.endpointlocation.v1.services": [[24, "module-arista.endpointlocation.v1.services", false]], "arista.endpointlocation.v1.services.gen_pb2": [[24, "module-arista.endpointlocation.v1.services.gen_pb2", false]], "arista.endpointlocation.v1.services.gen_pb2_grpc": [[24, "module-arista.endpointlocation.v1.services.gen_pb2_grpc", false]], "arista.event": [[25, "module-arista.event", false]], "arista.event.v1": [[26, "module-arista.event.v1", false]], "arista.event.v1.event_pb2": [[26, "module-arista.event.v1.event_pb2", false]], "arista.event.v1.event_pb2_grpc": [[26, "module-arista.event.v1.event_pb2_grpc", false]], "arista.event.v1.services": [[27, "module-arista.event.v1.services", false]], "arista.event.v1.services.gen_pb2": [[27, "module-arista.event.v1.services.gen_pb2", false]], "arista.event.v1.services.gen_pb2_grpc": [[27, "module-arista.event.v1.services.gen_pb2_grpc", false]], "arista.identityprovider": [[28, "module-arista.identityprovider", false]], "arista.identityprovider.v1": [[29, "module-arista.identityprovider.v1", false]], "arista.identityprovider.v1.identityprovider_pb2": [[29, "module-arista.identityprovider.v1.identityprovider_pb2", false]], "arista.identityprovider.v1.identityprovider_pb2_grpc": [[29, "module-arista.identityprovider.v1.identityprovider_pb2_grpc", false]], "arista.identityprovider.v1.services": [[30, "module-arista.identityprovider.v1.services", false]], "arista.identityprovider.v1.services.gen_pb2": [[30, "module-arista.identityprovider.v1.services.gen_pb2", false]], "arista.identityprovider.v1.services.gen_pb2_grpc": [[30, "module-arista.identityprovider.v1.services.gen_pb2_grpc", false]], "arista.imagestatus": [[31, "module-arista.imagestatus", false]], "arista.imagestatus.v1": [[32, "module-arista.imagestatus.v1", false]], "arista.imagestatus.v1.imagestatus_pb2": [[32, "module-arista.imagestatus.v1.imagestatus_pb2", false]], "arista.imagestatus.v1.imagestatus_pb2_grpc": [[32, "module-arista.imagestatus.v1.imagestatus_pb2_grpc", false]], "arista.imagestatus.v1.services": [[33, "module-arista.imagestatus.v1.services", false]], "arista.imagestatus.v1.services.gen_pb2": [[33, "module-arista.imagestatus.v1.services.gen_pb2", false]], "arista.imagestatus.v1.services.gen_pb2_grpc": [[33, "module-arista.imagestatus.v1.services.gen_pb2_grpc", false]], "arista.inventory": [[34, "module-arista.inventory", false]], "arista.inventory.v1": [[35, "module-arista.inventory.v1", false]], "arista.inventory.v1.inventory_pb2": [[35, "module-arista.inventory.v1.inventory_pb2", false]], "arista.inventory.v1.inventory_pb2_grpc": [[35, "module-arista.inventory.v1.inventory_pb2_grpc", false]], "arista.inventory.v1.services": [[36, "module-arista.inventory.v1.services", false]], "arista.inventory.v1.services.gen_pb2": [[36, "module-arista.inventory.v1.services.gen_pb2", false]], "arista.inventory.v1.services.gen_pb2_grpc": [[36, "module-arista.inventory.v1.services.gen_pb2_grpc", false]], "arista.lifecycle": [[37, "module-arista.lifecycle", false]], "arista.lifecycle.v1": [[38, "module-arista.lifecycle.v1", false]], "arista.lifecycle.v1.lifecycle_pb2": [[38, "module-arista.lifecycle.v1.lifecycle_pb2", false]], "arista.lifecycle.v1.lifecycle_pb2_grpc": [[38, "module-arista.lifecycle.v1.lifecycle_pb2_grpc", false]], "arista.lifecycle.v1.services": [[39, "module-arista.lifecycle.v1.services", false]], "arista.lifecycle.v1.services.gen_pb2": [[39, "module-arista.lifecycle.v1.services.gen_pb2", false]], "arista.lifecycle.v1.services.gen_pb2_grpc": [[39, "module-arista.lifecycle.v1.services.gen_pb2_grpc", false]], "arista.redirector": [[40, "module-arista.redirector", false]], "arista.redirector.v1": [[41, "module-arista.redirector.v1", false]], "arista.redirector.v1.redirector_pb2": [[41, "module-arista.redirector.v1.redirector_pb2", false]], "arista.redirector.v1.redirector_pb2_grpc": [[41, "module-arista.redirector.v1.redirector_pb2_grpc", false]], "arista.redirector.v1.services": [[42, "module-arista.redirector.v1.services", false]], "arista.redirector.v1.services.gen_pb2": [[42, "module-arista.redirector.v1.services.gen_pb2", false]], "arista.redirector.v1.services.gen_pb2_grpc": [[42, "module-arista.redirector.v1.services.gen_pb2_grpc", false]], "arista.serviceaccount": [[43, "module-arista.serviceaccount", false]], "arista.serviceaccount.v1": [[44, "module-arista.serviceaccount.v1", false]], "arista.serviceaccount.v1.serviceaccount_pb2": [[44, "module-arista.serviceaccount.v1.serviceaccount_pb2", false]], "arista.serviceaccount.v1.serviceaccount_pb2_grpc": [[44, "module-arista.serviceaccount.v1.serviceaccount_pb2_grpc", false]], "arista.serviceaccount.v1.services": [[45, "module-arista.serviceaccount.v1.services", false]], "arista.serviceaccount.v1.services.gen_pb2": [[45, "module-arista.serviceaccount.v1.services.gen_pb2", false]], "arista.serviceaccount.v1.services.gen_pb2_grpc": [[45, "module-arista.serviceaccount.v1.services.gen_pb2_grpc", false]], "arista.studio": [[46, "module-arista.studio", false]], "arista.studio.v1": [[47, "module-arista.studio.v1", false]], "arista.studio.v1.services": [[48, "module-arista.studio.v1.services", false]], "arista.studio.v1.services.gen_pb2": [[48, "module-arista.studio.v1.services.gen_pb2", false]], "arista.studio.v1.services.gen_pb2_grpc": [[48, "module-arista.studio.v1.services.gen_pb2_grpc", false]], "arista.studio.v1.studio_pb2": [[47, "module-arista.studio.v1.studio_pb2", false]], "arista.studio.v1.studio_pb2_grpc": [[47, "module-arista.studio.v1.studio_pb2_grpc", false]], "arista.subscriptions": [[49, "module-arista.subscriptions", false]], "arista.subscriptions.subscriptions_pb2": [[49, "module-arista.subscriptions.subscriptions_pb2", false]], "arista.subscriptions.subscriptions_pb2_grpc": [[49, "module-arista.subscriptions.subscriptions_pb2_grpc", false]], "arista.tag": [[50, "module-arista.tag", false]], "arista.tag.v2": [[51, "module-arista.tag.v2", false]], "arista.tag.v2.services": [[52, "module-arista.tag.v2.services", false]], "arista.tag.v2.services.gen_pb2": [[52, "module-arista.tag.v2.services.gen_pb2", false]], "arista.tag.v2.services.gen_pb2_grpc": [[52, "module-arista.tag.v2.services.gen_pb2_grpc", false]], "arista.tag.v2.tag_pb2": [[51, "module-arista.tag.v2.tag_pb2", false]], "arista.tag.v2.tag_pb2_grpc": [[51, "module-arista.tag.v2.tag_pb2_grpc", false]], "arista.time": [[53, "module-arista.time", false]], "arista.time.time_pb2": [[53, "module-arista.time.time_pb2", false]], "arista.time.time_pb2_grpc": [[53, "module-arista.time.time_pb2_grpc", false]], "arista.workspace": [[54, "module-arista.workspace", false]], "arista.workspace.v1": [[55, "module-arista.workspace.v1", false]], "arista.workspace.v1.services": [[56, "module-arista.workspace.v1.services", false]], "arista.workspace.v1.services.gen_pb2": [[56, "module-arista.workspace.v1.services.gen_pb2", false]], "arista.workspace.v1.services.gen_pb2_grpc": [[56, "module-arista.workspace.v1.services.gen_pb2_grpc", false]], "arista.workspace.v1.workspace_pb2": [[55, "module-arista.workspace.v1.workspace_pb2", false]], "arista.workspace.v1.workspace_pb2_grpc": [[55, "module-arista.workspace.v1.workspace_pb2_grpc", false]], "assignedtags (class in arista.studio.v1.studio_pb2)": [[47, "arista.studio.v1.studio_pb2.AssignedTags", false]], "assignedtagsbatchedstreamrequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsBatchedStreamRequest", false]], "assignedtagsbatchedstreamresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsBatchedStreamResponse", false]], "assignedtagsconfig (class in arista.studio.v1.studio_pb2)": [[47, "arista.studio.v1.studio_pb2.AssignedTagsConfig", false]], "assignedtagsconfigbatchedstreamrequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsConfigBatchedStreamRequest", false]], "assignedtagsconfigbatchedstreamresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsConfigBatchedStreamResponse", false]], "assignedtagsconfigdeleteallrequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsConfigDeleteAllRequest", false]], "assignedtagsconfigdeleteallresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsConfigDeleteAllResponse", false]], "assignedtagsconfigdeleterequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsConfigDeleteRequest", false]], "assignedtagsconfigdeleteresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsConfigDeleteResponse", false]], "assignedtagsconfigdeletesomerequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsConfigDeleteSomeRequest", false]], "assignedtagsconfigdeletesomeresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsConfigDeleteSomeResponse", false]], "assignedtagsconfigrequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsConfigRequest", false]], "assignedtagsconfigresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsConfigResponse", false]], "assignedtagsconfigservice (class in arista.studio.v1.services.gen_pb2_grpc)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsConfigService", false]], "assignedtagsconfigserviceservicer (class in arista.studio.v1.services.gen_pb2_grpc)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsConfigServiceServicer", false]], "assignedtagsconfigservicestub (class in arista.studio.v1.services.gen_pb2_grpc)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsConfigServiceStub", false]], "assignedtagsconfigsetrequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsConfigSetRequest", false]], "assignedtagsconfigsetresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsConfigSetResponse", false]], "assignedtagsconfigsetsomerequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsConfigSetSomeRequest", false]], "assignedtagsconfigsetsomeresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsConfigSetSomeResponse", false]], "assignedtagsconfigsomerequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsConfigSomeRequest", false]], "assignedtagsconfigsomeresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsConfigSomeResponse", false]], "assignedtagsconfigstreamrequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsConfigStreamRequest", false]], "assignedtagsconfigstreamresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsConfigStreamResponse", false]], "assignedtagsrequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsRequest", false]], "assignedtagsresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsResponse", false]], "assignedtagsservice (class in arista.studio.v1.services.gen_pb2_grpc)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsService", false]], "assignedtagsserviceservicer (class in arista.studio.v1.services.gen_pb2_grpc)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsServiceServicer", false]], "assignedtagsservicestub (class in arista.studio.v1.services.gen_pb2_grpc)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsServiceStub", false]], "assignedtagssomerequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsSomeRequest", false]], "assignedtagssomeresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsSomeResponse", false]], "assignedtagsstreamrequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsStreamRequest", false]], "assignedtagsstreamresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsStreamResponse", false]], "assignment (class in arista.redirector.v1.redirector_pb2)": [[41, "arista.redirector.v1.redirector_pb2.Assignment", false]], "assignmentbatchedstreamrequest (class in arista.redirector.v1.services.gen_pb2)": [[42, "arista.redirector.v1.services.gen_pb2.AssignmentBatchedStreamRequest", false]], "assignmentbatchedstreamresponse (class in arista.redirector.v1.services.gen_pb2)": [[42, "arista.redirector.v1.services.gen_pb2.AssignmentBatchedStreamResponse", false]], "assignmentkey (class in arista.redirector.v1.redirector_pb2)": [[41, "arista.redirector.v1.redirector_pb2.AssignmentKey", false]], "assignmentrequest (class in arista.redirector.v1.services.gen_pb2)": [[42, "arista.redirector.v1.services.gen_pb2.AssignmentRequest", false]], "assignmentresponse (class in arista.redirector.v1.services.gen_pb2)": [[42, "arista.redirector.v1.services.gen_pb2.AssignmentResponse", false]], "assignmentservice (class in arista.redirector.v1.services.gen_pb2_grpc)": [[42, "arista.redirector.v1.services.gen_pb2_grpc.AssignmentService", false]], "assignmentserviceservicer (class in arista.redirector.v1.services.gen_pb2_grpc)": [[42, "arista.redirector.v1.services.gen_pb2_grpc.AssignmentServiceServicer", false]], "assignmentservicestub (class in arista.redirector.v1.services.gen_pb2_grpc)": [[42, "arista.redirector.v1.services.gen_pb2_grpc.AssignmentServiceStub", false]], "assignmentsomerequest (class in arista.redirector.v1.services.gen_pb2)": [[42, "arista.redirector.v1.services.gen_pb2.AssignmentSomeRequest", false]], "assignmentsomeresponse (class in arista.redirector.v1.services.gen_pb2)": [[42, "arista.redirector.v1.services.gen_pb2.AssignmentSomeResponse", false]], "assignmentstreamrequest (class in arista.redirector.v1.services.gen_pb2)": [[42, "arista.redirector.v1.services.gen_pb2.AssignmentStreamRequest", false]], "assignmentstreamresponse (class in arista.redirector.v1.services.gen_pb2)": [[42, "arista.redirector.v1.services.gen_pb2.AssignmentStreamResponse", false]], "auth (class in cloudvision.connector.gen.router_pb2_grpc)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.Auth", false]], "auth_key_path (cloudvision.connector.grpc_client.grpcclient attribute)": [[63, "cloudvision.Connector.grpc_client.GRPCClient.AUTH_KEY_PATH", false]], "auth_key_path (cloudvision.connector.grpc_client.grpcclient.grpcclient attribute)": [[63, "cloudvision.Connector.grpc_client.grpcClient.GRPCClient.AUTH_KEY_PATH", false]], "authandendpoints (class in cloudvision.cvlib.connections)": [[65, "cloudvision.cvlib.connections.AuthAndEndpoints", false]], "authservicer (class in cloudvision.connector.gen.router_pb2_grpc)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.AuthServicer", false]], "authstub (class in cloudvision.connector.gen.router_pb2_grpc)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.AuthStub", false]], "authzresult (class in arista.workspace.v1.workspace_pb2)": [[55, "arista.workspace.v1.workspace_pb2.AuthzResult", false]], "autofillaction (class in arista.studio.v1.studio_pb2)": [[47, "arista.studio.v1.studio_pb2.AutofillAction", false]], "autofillactionbatchedstreamrequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionBatchedStreamRequest", false]], "autofillactionbatchedstreamresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionBatchedStreamResponse", false]], "autofillactionconfig (class in arista.studio.v1.studio_pb2)": [[47, "arista.studio.v1.studio_pb2.AutofillActionConfig", false]], "autofillactionconfigbatchedstreamrequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionConfigBatchedStreamRequest", false]], "autofillactionconfigbatchedstreamresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionConfigBatchedStreamResponse", false]], "autofillactionconfigdeleteallrequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionConfigDeleteAllRequest", false]], "autofillactionconfigdeleteallresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionConfigDeleteAllResponse", false]], "autofillactionconfigdeleterequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionConfigDeleteRequest", false]], "autofillactionconfigdeleteresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionConfigDeleteResponse", false]], "autofillactionconfigdeletesomerequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionConfigDeleteSomeRequest", false]], "autofillactionconfigdeletesomeresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionConfigDeleteSomeResponse", false]], "autofillactionconfigrequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionConfigRequest", false]], "autofillactionconfigresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionConfigResponse", false]], "autofillactionconfigservice (class in arista.studio.v1.services.gen_pb2_grpc)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionConfigService", false]], "autofillactionconfigserviceservicer (class in arista.studio.v1.services.gen_pb2_grpc)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionConfigServiceServicer", false]], "autofillactionconfigservicestub (class in arista.studio.v1.services.gen_pb2_grpc)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionConfigServiceStub", false]], "autofillactionconfigsetrequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionConfigSetRequest", false]], "autofillactionconfigsetresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionConfigSetResponse", false]], "autofillactionconfigsetsomerequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionConfigSetSomeRequest", false]], "autofillactionconfigsetsomeresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionConfigSetSomeResponse", false]], "autofillactionconfigsomerequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionConfigSomeRequest", false]], "autofillactionconfigsomeresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionConfigSomeResponse", false]], "autofillactionconfigstreamrequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionConfigStreamRequest", false]], "autofillactionconfigstreamresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionConfigStreamResponse", false]], "autofillactionexception": [[65, "cloudvision.cvlib.exceptions.AutofillActionException", false]], "autofillactionkey (class in arista.studio.v1.studio_pb2)": [[47, "arista.studio.v1.studio_pb2.AutofillActionKey", false]], "autofillactionrequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionRequest", false]], "autofillactionresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionResponse", false]], "autofillactionservice (class in arista.studio.v1.services.gen_pb2_grpc)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionService", false]], "autofillactionserviceservicer (class in arista.studio.v1.services.gen_pb2_grpc)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionServiceServicer", false]], "autofillactionservicestub (class in arista.studio.v1.services.gen_pb2_grpc)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionServiceStub", false]], "autofillactionsomerequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionSomeRequest", false]], "autofillactionsomeresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionSomeResponse", false]], "autofillactionstreamrequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionStreamRequest", false]], "autofillactionstreamresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionStreamResponse", false]], "autofillargumentprovider (class in arista.studio.v1.studio_pb2)": [[47, "arista.studio.v1.studio_pb2.AutofillArgumentProvider", false]], "autofillargumentproviders (class in arista.studio.v1.studio_pb2)": [[47, "arista.studio.v1.studio_pb2.AutofillArgumentProviders", false]], "autofillargumentproviders.valuesentry (class in arista.studio.v1.studio_pb2)": [[47, "arista.studio.v1.studio_pb2.AutofillArgumentProviders.ValuesEntry", false]], "azureoauth (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.AzureOAuth", false]], "batchexception": [[65, "cloudvision.cvlib.exceptions.BatchException", false]], "benchmark() (cloudvision.cvlib.context.context method)": [[65, "cloudvision.cvlib.context.Context.benchmark", false]], "benchmarkdump() (cloudvision.cvlib.context.context method)": [[65, "cloudvision.cvlib.context.Context.benchmarkDump", false]], "benchmarkingoff() (cloudvision.cvlib.context.context method)": [[65, "cloudvision.cvlib.context.Context.benchmarkingOff", false]], "benchmarkingon() (cloudvision.cvlib.context.context method)": [[65, "cloudvision.cvlib.context.Context.benchmarkingOn", false]], "booleaninputfieldprops (class in arista.studio.v1.studio_pb2)": [[47, "arista.studio.v1.studio_pb2.BooleanInputFieldProps", false]], "broadcastgroup (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.BroadcastGroup", false]], "broadcastgroups (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.BroadcastGroups", false]], "broadcastgroups.valuesentry (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.BroadcastGroups.ValuesEntry", false]], "bugexposure (class in arista.bugexposure.v1.bugexposure_pb2)": [[5, "arista.bugexposure.v1.bugexposure_pb2.BugExposure", false]], "bugexposurekey (class in arista.bugexposure.v1.bugexposure_pb2)": [[5, "arista.bugexposure.v1.bugexposure_pb2.BugExposureKey", false]], "bugexposurerequest (class in arista.bugexposure.v1.services.gen_pb2)": [[6, "arista.bugexposure.v1.services.gen_pb2.BugExposureRequest", false]], "bugexposureresponse (class in arista.bugexposure.v1.services.gen_pb2)": [[6, "arista.bugexposure.v1.services.gen_pb2.BugExposureResponse", false]], "bugexposureservice (class in arista.bugexposure.v1.services.gen_pb2_grpc)": [[6, "arista.bugexposure.v1.services.gen_pb2_grpc.BugExposureService", false]], "bugexposureserviceservicer (class in arista.bugexposure.v1.services.gen_pb2_grpc)": [[6, "arista.bugexposure.v1.services.gen_pb2_grpc.BugExposureServiceServicer", false]], "bugexposureservicestub (class in arista.bugexposure.v1.services.gen_pb2_grpc)": [[6, "arista.bugexposure.v1.services.gen_pb2_grpc.BugExposureServiceStub", false]], "bugexposurestreamrequest (class in arista.bugexposure.v1.services.gen_pb2)": [[6, "arista.bugexposure.v1.services.gen_pb2.BugExposureStreamRequest", false]], "bugexposurestreamresponse (class in arista.bugexposure.v1.services.gen_pb2)": [[6, "arista.bugexposure.v1.services.gen_pb2.BugExposureStreamResponse", false]], "buildstagestate (class in arista.workspace.v1.workspace_pb2)": [[55, "arista.workspace.v1.workspace_pb2.BuildStageState", false]], "buildstagestate.valuesentry (class in arista.workspace.v1.workspace_pb2)": [[55, "arista.workspace.v1.workspace_pb2.BuildStageState.ValuesEntry", false]], "cert_from_pem() (in module cloudvision.connector.auth.cert)": [[59, "cloudvision.Connector.auth.cert.cert_from_pem", false]], "certificateauthority (class in cloudvision.connector.gen.ca_pb2_grpc)": [[62, "cloudvision.Connector.gen.ca_pb2_grpc.CertificateAuthority", false]], "certificateauthorityservicer (class in cloudvision.connector.gen.ca_pb2_grpc)": [[62, "cloudvision.Connector.gen.ca_pb2_grpc.CertificateAuthorityServicer", false]], "certificateauthoritystub (class in cloudvision.connector.gen.ca_pb2_grpc)": [[62, "cloudvision.Connector.gen.ca_pb2_grpc.CertificateAuthorityStub", false]], "change (class in arista.changecontrol.v1.changecontrol_pb2)": [[8, "arista.changecontrol.v1.changecontrol_pb2.Change", false]], "changeconfig (class in arista.changecontrol.v1.changecontrol_pb2)": [[8, "arista.changecontrol.v1.changecontrol_pb2.ChangeConfig", false]], "changecontrol (class in arista.changecontrol.v1.changecontrol_pb2)": [[8, "arista.changecontrol.v1.changecontrol_pb2.ChangeControl", false]], "changecontrol (class in cloudvision.cvlib.changecontrol)": [[65, "cloudvision.cvlib.changecontrol.ChangeControl", false]], "changecontrol (cloudvision.cvlib.action.actioncontext attribute)": [[65, "cloudvision.cvlib.action.ActionContext.ChangeControl", false]], "changecontrolbatchedstreamrequest (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlBatchedStreamRequest", false]], "changecontrolbatchedstreamresponse (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlBatchedStreamResponse", false]], "changecontrolconfig (class in arista.changecontrol.v1.changecontrol_pb2)": [[8, "arista.changecontrol.v1.changecontrol_pb2.ChangeControlConfig", false]], "changecontrolconfigbatchedstreamrequest (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigBatchedStreamRequest", false]], "changecontrolconfigbatchedstreamresponse (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigBatchedStreamResponse", false]], "changecontrolconfigdeleteallrequest (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigDeleteAllRequest", false]], "changecontrolconfigdeleteallresponse (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigDeleteAllResponse", false]], "changecontrolconfigdeleterequest (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigDeleteRequest", false]], "changecontrolconfigdeleteresponse (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigDeleteResponse", false]], "changecontrolconfigdeletesomerequest (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigDeleteSomeRequest", false]], "changecontrolconfigdeletesomeresponse (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigDeleteSomeResponse", false]], "changecontrolconfigrequest (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigRequest", false]], "changecontrolconfigresponse (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigResponse", false]], "changecontrolconfigservice (class in arista.changecontrol.v1.services.gen_pb2_grpc)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlConfigService", false]], "changecontrolconfigserviceservicer (class in arista.changecontrol.v1.services.gen_pb2_grpc)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlConfigServiceServicer", false]], "changecontrolconfigservicestub (class in arista.changecontrol.v1.services.gen_pb2_grpc)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlConfigServiceStub", false]], "changecontrolconfigsetrequest (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigSetRequest", false]], "changecontrolconfigsetresponse (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigSetResponse", false]], "changecontrolconfigsetsomerequest (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigSetSomeRequest", false]], "changecontrolconfigsetsomeresponse (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigSetSomeResponse", false]], "changecontrolconfigsomerequest (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigSomeRequest", false]], "changecontrolconfigsomeresponse (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigSomeResponse", false]], "changecontrolconfigstreamrequest (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigStreamRequest", false]], "changecontrolconfigstreamresponse (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigStreamResponse", false]], "changecontrolkey (class in arista.changecontrol.v1.changecontrol_pb2)": [[8, "arista.changecontrol.v1.changecontrol_pb2.ChangeControlKey", false]], "changecontrolrequest (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlRequest", false]], "changecontrolresponse (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlResponse", false]], "changecontrolservice (class in arista.changecontrol.v1.services.gen_pb2_grpc)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlService", false]], "changecontrolserviceservicer (class in arista.changecontrol.v1.services.gen_pb2_grpc)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlServiceServicer", false]], "changecontrolservicestub (class in arista.changecontrol.v1.services.gen_pb2_grpc)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlServiceStub", false]], "changecontrolsomerequest (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlSomeRequest", false]], "changecontrolsomeresponse (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlSomeResponse", false]], "changecontrolstreamrequest (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlStreamRequest", false]], "changecontrolstreamresponse (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlStreamResponse", false]], "clear() (cloudvision.cvlib.context.context method)": [[65, "cloudvision.cvlib.context.Context.clear", false]], "close() (cloudvision.connector.grpc_client.grpcclient method)": [[63, "cloudvision.Connector.grpc_client.GRPCClient.close", false]], "close() (cloudvision.connector.grpc_client.grpcclient.grpcclient method)": [[63, "cloudvision.Connector.grpc_client.grpcClient.GRPCClient.close", false]], "cloudvision": [[57, "module-cloudvision", false]], "cloudvision.connector": [[58, "module-cloudvision.Connector", false]], "cloudvision.connector.auth": [[59, "module-cloudvision.Connector.auth", false]], "cloudvision.connector.auth.cert": [[59, "module-cloudvision.Connector.auth.cert", false]], "cloudvision.connector.codec": [[60, "module-cloudvision.Connector.codec", false]], "cloudvision.connector.codec.custom_types": [[60, "module-cloudvision.Connector.codec.custom_types", false]], "cloudvision.connector.codec.decoder": [[60, "module-cloudvision.Connector.codec.decoder", false]], "cloudvision.connector.codec.encoder": [[60, "module-cloudvision.Connector.codec.encoder", false]], "cloudvision.connector.core": [[61, "module-cloudvision.Connector.core", false]], "cloudvision.connector.core.utils": [[61, "module-cloudvision.Connector.core.utils", false]], "cloudvision.connector.gen": [[62, "module-cloudvision.Connector.gen", false]], "cloudvision.connector.gen.ca_pb2": [[62, "module-cloudvision.Connector.gen.ca_pb2", false]], "cloudvision.connector.gen.ca_pb2_grpc": [[62, "module-cloudvision.Connector.gen.ca_pb2_grpc", false]], "cloudvision.connector.gen.notification_pb2": [[62, "module-cloudvision.Connector.gen.notification_pb2", false]], "cloudvision.connector.gen.notification_pb2_grpc": [[62, "module-cloudvision.Connector.gen.notification_pb2_grpc", false]], "cloudvision.connector.gen.router_pb2": [[62, "module-cloudvision.Connector.gen.router_pb2", false]], "cloudvision.connector.gen.router_pb2_grpc": [[62, "module-cloudvision.Connector.gen.router_pb2_grpc", false]], "cloudvision.connector.gen.sharding_pb2": [[62, "module-cloudvision.Connector.gen.sharding_pb2", false]], "cloudvision.connector.gen.sharding_pb2_grpc": [[62, "module-cloudvision.Connector.gen.sharding_pb2_grpc", false]], "cloudvision.connector.grpc_client": [[63, "module-cloudvision.Connector.grpc_client", false]], "cloudvision.connector.grpc_client.grpcclient": [[63, "module-cloudvision.Connector.grpc_client.grpcClient", false]], "cloudvision.connector.protobuf": [[64, "module-cloudvision.Connector.protobuf", false]], "cloudvision.cvlib": [[65, "module-cloudvision.cvlib", false]], "cloudvision.cvlib.action": [[65, "module-cloudvision.cvlib.action", false]], "cloudvision.cvlib.changecontrol": [[65, "module-cloudvision.cvlib.changecontrol", false]], "cloudvision.cvlib.connections": [[65, "module-cloudvision.cvlib.connections", false]], "cloudvision.cvlib.constants": [[65, "module-cloudvision.cvlib.constants", false]], "cloudvision.cvlib.context": [[65, "module-cloudvision.cvlib.context", false]], "cloudvision.cvlib.device": [[65, "module-cloudvision.cvlib.device", false]], "cloudvision.cvlib.exceptions": [[65, "module-cloudvision.cvlib.exceptions", false]], "cloudvision.cvlib.execution": [[65, "module-cloudvision.cvlib.execution", false]], "cloudvision.cvlib.id_allocator": [[65, "module-cloudvision.cvlib.id_allocator", false]], "cloudvision.cvlib.iputils": [[65, "module-cloudvision.cvlib.iputils", false]], "cloudvision.cvlib.logger": [[65, "module-cloudvision.cvlib.logger", false]], "cloudvision.cvlib.studio": [[65, "module-cloudvision.cvlib.studio", false]], "cloudvision.cvlib.tags": [[65, "module-cloudvision.cvlib.tags", false]], "cloudvision.cvlib.topology": [[65, "module-cloudvision.cvlib.topology", false]], "cloudvision.cvlib.user": [[65, "module-cloudvision.cvlib.user", false]], "cloudvision.cvlib.utils": [[65, "module-cloudvision.cvlib.utils", false]], "cloudvision.cvlib.workspace": [[65, "module-cloudvision.cvlib.workspace", false]], "cluster (class in arista.redirector.v1.redirector_pb2)": [[41, "arista.redirector.v1.redirector_pb2.Cluster", false]], "cluster (class in cloudvision.connector.gen.router_pb2_grpc)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.Cluster", false]], "clusterinfo() (cloudvision.connector.gen.router_pb2_grpc.cluster static method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.Cluster.ClusterInfo", false]], "clusterinfo() (cloudvision.connector.gen.router_pb2_grpc.clusterservicer method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.ClusterServicer.ClusterInfo", false]], "clusters (class in arista.redirector.v1.redirector_pb2)": [[41, "arista.redirector.v1.redirector_pb2.Clusters", false]], "clusterservicer (class in cloudvision.connector.gen.router_pb2_grpc)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.ClusterServicer", false]], "clusterstub (class in cloudvision.connector.gen.router_pb2_grpc)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.ClusterStub", false]], "collectioninputfieldprops (class in arista.studio.v1.studio_pb2)": [[47, "arista.studio.v1.studio_pb2.CollectionInputFieldProps", false]], "compliancestatus (class in arista.imagestatus.v1.imagestatus_pb2)": [[32, "arista.imagestatus.v1.imagestatus_pb2.ComplianceStatus", false]], "compliancestatusbysup (class in arista.imagestatus.v1.imagestatus_pb2)": [[32, "arista.imagestatus.v1.imagestatus_pb2.ComplianceStatusBySup", false]], "compliancestatusbysup.valuesentry (class in arista.imagestatus.v1.imagestatus_pb2)": [[32, "arista.imagestatus.v1.imagestatus_pb2.ComplianceStatusBySup.ValuesEntry", false]], "configdiff (class in arista.configstatus.v1.configstatus_pb2)": [[14, "arista.configstatus.v1.configstatus_pb2.ConfigDiff", false]], "configdiffbatchedstreamrequest (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.ConfigDiffBatchedStreamRequest", false]], "configdiffbatchedstreamresponse (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.ConfigDiffBatchedStreamResponse", false]], "configdiffkey (class in arista.configstatus.v1.configstatus_pb2)": [[14, "arista.configstatus.v1.configstatus_pb2.ConfigDiffKey", false]], "configdiffrequest (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.ConfigDiffRequest", false]], "configdiffresponse (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.ConfigDiffResponse", false]], "configdiffservice (class in arista.configstatus.v1.services.gen_pb2_grpc)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.ConfigDiffService", false]], "configdiffserviceservicer (class in arista.configstatus.v1.services.gen_pb2_grpc)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.ConfigDiffServiceServicer", false]], "configdiffservicestub (class in arista.configstatus.v1.services.gen_pb2_grpc)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.ConfigDiffServiceStub", false]], "configdiffsomerequest (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.ConfigDiffSomeRequest", false]], "configdiffsomeresponse (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.ConfigDiffSomeResponse", false]], "configdiffstreamrequest (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.ConfigDiffStreamRequest", false]], "configdiffstreamresponse (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.ConfigDiffStreamResponse", false]], "configerror (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.ConfigError", false]], "configerror (class in arista.configstatus.v1.configstatus_pb2)": [[14, "arista.configstatus.v1.configstatus_pb2.ConfigError", false]], "configerrors (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.ConfigErrors", false]], "configerrors (class in arista.configstatus.v1.configstatus_pb2)": [[14, "arista.configstatus.v1.configstatus_pb2.ConfigErrors", false]], "configkey (class in arista.configstatus.v1.configstatus_pb2)": [[14, "arista.configstatus.v1.configstatus_pb2.ConfigKey", false]], "configlet (class in arista.configlet.v1.configlet_pb2)": [[11, "arista.configlet.v1.configlet_pb2.Configlet", false]], "configletassignment (class in arista.configlet.v1.configlet_pb2)": [[11, "arista.configlet.v1.configlet_pb2.ConfigletAssignment", false]], "configletassignmentbatchedstreamrequest (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentBatchedStreamRequest", false]], "configletassignmentbatchedstreamresponse (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentBatchedStreamResponse", false]], "configletassignmentconfig (class in arista.configlet.v1.configlet_pb2)": [[11, "arista.configlet.v1.configlet_pb2.ConfigletAssignmentConfig", false]], "configletassignmentconfigbatchedstreamrequest (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigBatchedStreamRequest", false]], "configletassignmentconfigbatchedstreamresponse (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigBatchedStreamResponse", false]], "configletassignmentconfigdeleteallrequest (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigDeleteAllRequest", false]], "configletassignmentconfigdeleteallresponse (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigDeleteAllResponse", false]], "configletassignmentconfigdeleterequest (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigDeleteRequest", false]], "configletassignmentconfigdeleteresponse (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigDeleteResponse", false]], "configletassignmentconfigdeletesomerequest (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigDeleteSomeRequest", false]], "configletassignmentconfigdeletesomeresponse (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigDeleteSomeResponse", false]], "configletassignmentconfigrequest (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigRequest", false]], "configletassignmentconfigresponse (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigResponse", false]], "configletassignmentconfigservice (class in arista.configlet.v1.services.gen_pb2_grpc)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentConfigService", false]], "configletassignmentconfigserviceservicer (class in arista.configlet.v1.services.gen_pb2_grpc)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentConfigServiceServicer", false]], "configletassignmentconfigservicestub (class in arista.configlet.v1.services.gen_pb2_grpc)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentConfigServiceStub", false]], "configletassignmentconfigsetrequest (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigSetRequest", false]], "configletassignmentconfigsetresponse (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigSetResponse", false]], "configletassignmentconfigsetsomerequest (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigSetSomeRequest", false]], "configletassignmentconfigsetsomeresponse (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigSetSomeResponse", false]], "configletassignmentconfigsomerequest (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigSomeRequest", false]], "configletassignmentconfigsomeresponse (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigSomeResponse", false]], "configletassignmentconfigstreamrequest (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigStreamRequest", false]], "configletassignmentconfigstreamresponse (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigStreamResponse", false]], "configletassignmentkey (class in arista.configlet.v1.configlet_pb2)": [[11, "arista.configlet.v1.configlet_pb2.ConfigletAssignmentKey", false]], "configletassignmentrequest (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentRequest", false]], "configletassignmentresponse (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentResponse", false]], "configletassignmentservice (class in arista.configlet.v1.services.gen_pb2_grpc)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentService", false]], "configletassignmentserviceservicer (class in arista.configlet.v1.services.gen_pb2_grpc)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentServiceServicer", false]], "configletassignmentservicestub (class in arista.configlet.v1.services.gen_pb2_grpc)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentServiceStub", false]], "configletassignmentsomerequest (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentSomeRequest", false]], "configletassignmentsomeresponse (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentSomeResponse", false]], "configletassignmentstreamrequest (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentStreamRequest", false]], "configletassignmentstreamresponse (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentStreamResponse", false]], "configletbatchedstreamrequest (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletBatchedStreamRequest", false]], "configletbatchedstreamresponse (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletBatchedStreamResponse", false]], "configletbuildresult (class in arista.workspace.v1.workspace_pb2)": [[55, "arista.workspace.v1.workspace_pb2.ConfigletBuildResult", false]], "configletbuildresults (class in arista.workspace.v1.workspace_pb2)": [[55, "arista.workspace.v1.workspace_pb2.ConfigletBuildResults", false]], "configletbuildresults.valuesentry (class in arista.workspace.v1.workspace_pb2)": [[55, "arista.workspace.v1.workspace_pb2.ConfigletBuildResults.ValuesEntry", false]], "configletconfig (class in arista.configlet.v1.configlet_pb2)": [[11, "arista.configlet.v1.configlet_pb2.ConfigletConfig", false]], "configletconfigbatchedstreamrequest (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletConfigBatchedStreamRequest", false]], "configletconfigbatchedstreamresponse (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletConfigBatchedStreamResponse", false]], "configletconfigdeleteallrequest (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletConfigDeleteAllRequest", false]], "configletconfigdeleteallresponse (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletConfigDeleteAllResponse", false]], "configletconfigdeleterequest (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletConfigDeleteRequest", false]], "configletconfigdeleteresponse (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletConfigDeleteResponse", false]], "configletconfigdeletesomerequest (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletConfigDeleteSomeRequest", false]], "configletconfigdeletesomeresponse (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletConfigDeleteSomeResponse", false]], "configletconfigrequest (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletConfigRequest", false]], "configletconfigresponse (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletConfigResponse", false]], "configletconfigservice (class in arista.configlet.v1.services.gen_pb2_grpc)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletConfigService", false]], "configletconfigserviceservicer (class in arista.configlet.v1.services.gen_pb2_grpc)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletConfigServiceServicer", false]], "configletconfigservicestub (class in arista.configlet.v1.services.gen_pb2_grpc)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletConfigServiceStub", false]], "configletconfigsetrequest (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletConfigSetRequest", false]], "configletconfigsetresponse (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletConfigSetResponse", false]], "configletconfigsetsomerequest (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletConfigSetSomeRequest", false]], "configletconfigsetsomeresponse (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletConfigSetSomeResponse", false]], "configletconfigsomerequest (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletConfigSomeRequest", false]], "configletconfigsomeresponse (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletConfigSomeResponse", false]], "configletconfigstreamrequest (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletConfigStreamRequest", false]], "configletconfigstreamresponse (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletConfigStreamResponse", false]], "configletkey (class in arista.configlet.v1.configlet_pb2)": [[11, "arista.configlet.v1.configlet_pb2.ConfigletKey", false]], "configletrequest (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletRequest", false]], "configletresponse (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletResponse", false]], "configletservice (class in arista.configlet.v1.services.gen_pb2_grpc)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletService", false]], "configletserviceservicer (class in arista.configlet.v1.services.gen_pb2_grpc)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletServiceServicer", false]], "configletservicestub (class in arista.configlet.v1.services.gen_pb2_grpc)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletServiceStub", false]], "configletsomerequest (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletSomeRequest", false]], "configletsomeresponse (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletSomeResponse", false]], "configletstreamrequest (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletStreamRequest", false]], "configletstreamresponse (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletStreamResponse", false]], "configsource (class in arista.configstatus.v1.configstatus_pb2)": [[14, "arista.configstatus.v1.configstatus_pb2.ConfigSource", false]], "configsources (class in arista.configstatus.v1.configstatus_pb2)": [[14, "arista.configstatus.v1.configstatus_pb2.ConfigSources", false]], "configsummary (class in arista.configstatus.v1.configstatus_pb2)": [[14, "arista.configstatus.v1.configstatus_pb2.ConfigSummary", false]], "configsyncresult (class in arista.workspace.v1.workspace_pb2)": [[55, "arista.workspace.v1.workspace_pb2.ConfigSyncResult", false]], "configuration (class in arista.configstatus.v1.configstatus_pb2)": [[14, "arista.configstatus.v1.configstatus_pb2.Configuration", false]], "configurationbatchedstreamrequest (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.ConfigurationBatchedStreamRequest", false]], "configurationbatchedstreamresponse (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.ConfigurationBatchedStreamResponse", false]], "configurationrequest (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.ConfigurationRequest", false]], "configurationresponse (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.ConfigurationResponse", false]], "configurationservice (class in arista.configstatus.v1.services.gen_pb2_grpc)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.ConfigurationService", false]], "configurationserviceservicer (class in arista.configstatus.v1.services.gen_pb2_grpc)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.ConfigurationServiceServicer", false]], "configurationservicestub (class in arista.configstatus.v1.services.gen_pb2_grpc)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.ConfigurationServiceStub", false]], "configurationsomerequest (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.ConfigurationSomeRequest", false]], "configurationsomeresponse (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.ConfigurationSomeResponse", false]], "configurationstreamrequest (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.ConfigurationStreamRequest", false]], "configurationstreamresponse (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.ConfigurationStreamResponse", false]], "configvalidationresult (class in arista.workspace.v1.workspace_pb2)": [[55, "arista.workspace.v1.workspace_pb2.ConfigValidationResult", false]], "connection (class in cloudvision.cvlib.topology)": [[65, "cloudvision.cvlib.topology.Connection", false]], "connectionfailed": [[65, "cloudvision.cvlib.exceptions.ConnectionFailed", false]], "context (class in cloudvision.cvlib.context)": [[65, "cloudvision.cvlib.context.Context", false]], "copy() (cloudvision.connector.codec.custom_types.frozendict method)": [[60, "cloudvision.Connector.codec.custom_types.FrozenDict.copy", false]], "copy() (cloudvision.connector.codec.frozendict method)": [[60, "cloudvision.Connector.codec.FrozenDict.copy", false]], "create() (in module cloudvision.cvlib.connections)": [[65, "cloudvision.cvlib.connections.create", false]], "create_csr() (in module cloudvision.connector.auth.cert)": [[59, "cloudvision.Connector.auth.cert.create_csr", false]], "create_custom_schema_index_request() (cloudvision.connector.grpc_client.grpcclient method)": [[63, "cloudvision.Connector.grpc_client.GRPCClient.create_custom_schema_index_request", false]], "create_custom_schema_index_request() (cloudvision.connector.grpc_client.grpcclient.grpcclient method)": [[63, "cloudvision.Connector.grpc_client.grpcClient.GRPCClient.create_custom_schema_index_request", false]], "create_dataset() (cloudvision.connector.grpc_client.grpcclient method)": [[63, "cloudvision.Connector.grpc_client.GRPCClient.create_dataset", false]], "create_dataset() (cloudvision.connector.grpc_client.grpcclient.grpcclient method)": [[63, "cloudvision.Connector.grpc_client.grpcClient.GRPCClient.create_dataset", false]], "create_notification() (in module cloudvision.connector.grpc_client)": [[63, "cloudvision.Connector.grpc_client.create_notification", false]], "create_notification() (in module cloudvision.connector.grpc_client.grpcclient)": [[63, "cloudvision.Connector.grpc_client.grpcClient.create_notification", false]], "create_query() (in module cloudvision.connector.grpc_client)": [[63, "cloudvision.Connector.grpc_client.create_query", false]], "create_query() (in module cloudvision.connector.grpc_client.grpcclient)": [[63, "cloudvision.Connector.grpc_client.grpcClient.create_query", false]], "createdataset() (cloudvision.connector.gen.router_pb2_grpc.auth static method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.Auth.CreateDataset", false]], "createdataset() (cloudvision.connector.gen.router_pb2_grpc.authservicer method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.AuthServicer.CreateDataset", false]], "createsession() (cloudvision.connector.gen.router_pb2_grpc.auth static method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.Auth.CreateSession", false]], "createsession() (cloudvision.connector.gen.router_pb2_grpc.authservicer method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.AuthServicer.CreateSession", false]], "critical (cloudvision.cvlib.context.logginglevel attribute)": [[65, "cloudvision.cvlib.context.LoggingLevel.Critical", false]], "critical() (cloudvision.cvlib.context.context method)": [[65, "cloudvision.cvlib.context.Context.critical", false]], "cuedata (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.CueData", false]], "cuedata.valuesentry (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.CueData.ValuesEntry", false]], "cuesendgridendpoint (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.CueSendgridEndpoint", false]], "cuesendgridendpoints (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.CueSendgridEndpoints", false]], "cuesendgridsettings (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.CueSendgridSettings", false]], "cuesnmpauth (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.CueSNMPAuth", false]], "cuesnmpendpoint (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.CueSNMPEndpoint", false]], "cuesnmpendpoints (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.CueSnmpEndpoints", false]], "cuesnmpsettings (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.CueSNMPSettings", false]], "cuesyslogendpoint (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.CueSyslogEndpoint", false]], "cuesyslogendpoints (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.CueSyslogEndpoints", false]], "cuesyslogsettings (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.CueSyslogSettings", false]], "cvexception": [[65, "cloudvision.cvlib.exceptions.CVException", false]], "dashboard (class in arista.dashboard.v1.dashboard_pb2)": [[20, "arista.dashboard.v1.dashboard_pb2.Dashboard", false]], "dashboardbatchedstreamrequest (class in arista.dashboard.v1.services.gen_pb2)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardBatchedStreamRequest", false]], "dashboardbatchedstreamresponse (class in arista.dashboard.v1.services.gen_pb2)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardBatchedStreamResponse", false]], "dashboardconfig (class in arista.dashboard.v1.dashboard_pb2)": [[20, "arista.dashboard.v1.dashboard_pb2.DashboardConfig", false]], "dashboardconfigbatchedstreamrequest (class in arista.dashboard.v1.services.gen_pb2)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardConfigBatchedStreamRequest", false]], "dashboardconfigbatchedstreamresponse (class in arista.dashboard.v1.services.gen_pb2)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardConfigBatchedStreamResponse", false]], "dashboardconfigdeleteallrequest (class in arista.dashboard.v1.services.gen_pb2)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardConfigDeleteAllRequest", false]], "dashboardconfigdeleteallresponse (class in arista.dashboard.v1.services.gen_pb2)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardConfigDeleteAllResponse", false]], "dashboardconfigdeleterequest (class in arista.dashboard.v1.services.gen_pb2)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardConfigDeleteRequest", false]], "dashboardconfigdeleteresponse (class in arista.dashboard.v1.services.gen_pb2)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardConfigDeleteResponse", false]], "dashboardconfigdeletesomerequest (class in arista.dashboard.v1.services.gen_pb2)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardConfigDeleteSomeRequest", false]], "dashboardconfigdeletesomeresponse (class in arista.dashboard.v1.services.gen_pb2)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardConfigDeleteSomeResponse", false]], "dashboardconfigrequest (class in arista.dashboard.v1.services.gen_pb2)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardConfigRequest", false]], "dashboardconfigresponse (class in arista.dashboard.v1.services.gen_pb2)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardConfigResponse", false]], "dashboardconfigservice (class in arista.dashboard.v1.services.gen_pb2_grpc)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardConfigService", false]], "dashboardconfigserviceservicer (class in arista.dashboard.v1.services.gen_pb2_grpc)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardConfigServiceServicer", false]], "dashboardconfigservicestub (class in arista.dashboard.v1.services.gen_pb2_grpc)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardConfigServiceStub", false]], "dashboardconfigsetrequest (class in arista.dashboard.v1.services.gen_pb2)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardConfigSetRequest", false]], "dashboardconfigsetresponse (class in arista.dashboard.v1.services.gen_pb2)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardConfigSetResponse", false]], "dashboardconfigsetsomerequest (class in arista.dashboard.v1.services.gen_pb2)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardConfigSetSomeRequest", false]], "dashboardconfigsetsomeresponse (class in arista.dashboard.v1.services.gen_pb2)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardConfigSetSomeResponse", false]], "dashboardconfigsomerequest (class in arista.dashboard.v1.services.gen_pb2)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardConfigSomeRequest", false]], "dashboardconfigsomeresponse (class in arista.dashboard.v1.services.gen_pb2)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardConfigSomeResponse", false]], "dashboardconfigstreamrequest (class in arista.dashboard.v1.services.gen_pb2)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardConfigStreamRequest", false]], "dashboardconfigstreamresponse (class in arista.dashboard.v1.services.gen_pb2)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardConfigStreamResponse", false]], "dashboardkey (class in arista.dashboard.v1.dashboard_pb2)": [[20, "arista.dashboard.v1.dashboard_pb2.DashboardKey", false]], "dashboardmetadata (class in arista.dashboard.v1.dashboard_pb2)": [[20, "arista.dashboard.v1.dashboard_pb2.DashboardMetadata", false]], "dashboardrequest (class in arista.dashboard.v1.services.gen_pb2)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardRequest", false]], "dashboardresponse (class in arista.dashboard.v1.services.gen_pb2)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardResponse", false]], "dashboardservice (class in arista.dashboard.v1.services.gen_pb2_grpc)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardService", false]], "dashboardserviceservicer (class in arista.dashboard.v1.services.gen_pb2_grpc)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardServiceServicer", false]], "dashboardservicestub (class in arista.dashboard.v1.services.gen_pb2_grpc)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardServiceStub", false]], "dashboardsomerequest (class in arista.dashboard.v1.services.gen_pb2)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardSomeRequest", false]], "dashboardsomeresponse (class in arista.dashboard.v1.services.gen_pb2)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardSomeResponse", false]], "dashboardstreamrequest (class in arista.dashboard.v1.services.gen_pb2)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardStreamRequest", false]], "dashboardstreamresponse (class in arista.dashboard.v1.services.gen_pb2)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardStreamResponse", false]], "dateandmodels (class in arista.lifecycle.v1.lifecycle_pb2)": [[38, "arista.lifecycle.v1.lifecycle_pb2.DateAndModels", false]], "deactivatedebugmode() (cloudvision.cvlib.context.context method)": [[65, "cloudvision.cvlib.context.Context.deactivateDebugMode", false]], "debug (cloudvision.cvlib.context.logginglevel attribute)": [[65, "cloudvision.cvlib.context.LoggingLevel.Debug", false]], "debug() (cloudvision.cvlib.context.context method)": [[65, "cloudvision.cvlib.context.Context.debug", false]], "decode() (cloudvision.connector.codec.decoder method)": [[60, "cloudvision.Connector.codec.Decoder.decode", false]], "decode() (cloudvision.connector.codec.decoder.decoder method)": [[60, "cloudvision.Connector.codec.decoder.Decoder.decode", false]], "decode_array() (cloudvision.connector.codec.decoder method)": [[60, "cloudvision.Connector.codec.Decoder.decode_array", false]], "decode_array() (cloudvision.connector.codec.decoder.decoder method)": [[60, "cloudvision.Connector.codec.decoder.Decoder.decode_array", false]], "decode_batch() (cloudvision.connector.grpc_client.grpcclient method)": [[63, "cloudvision.Connector.grpc_client.GRPCClient.decode_batch", false]], "decode_batch() (cloudvision.connector.grpc_client.grpcclient.grpcclient method)": [[63, "cloudvision.Connector.grpc_client.grpcClient.GRPCClient.decode_batch", false]], "decode_map() (cloudvision.connector.codec.decoder method)": [[60, "cloudvision.Connector.codec.Decoder.decode_map", false]], "decode_map() (cloudvision.connector.codec.decoder.decoder method)": [[60, "cloudvision.Connector.codec.decoder.Decoder.decode_map", false]], "decode_notification() (cloudvision.connector.grpc_client.grpcclient method)": [[63, "cloudvision.Connector.grpc_client.GRPCClient.decode_notification", false]], "decode_notification() (cloudvision.connector.grpc_client.grpcclient.grpcclient method)": [[63, "cloudvision.Connector.grpc_client.grpcClient.GRPCClient.decode_notification", false]], "decoder (class in cloudvision.connector.codec)": [[60, "cloudvision.Connector.codec.Decoder", false]], "decoder (class in cloudvision.connector.codec.decoder)": [[60, "cloudvision.Connector.codec.decoder.Decoder", false]], "default_channel_options (cloudvision.connector.grpc_client.grpcclient attribute)": [[63, "cloudvision.Connector.grpc_client.GRPCClient.DEFAULT_CHANNEL_OPTIONS", false]], "default_channel_options (cloudvision.connector.grpc_client.grpcclient.grpcclient attribute)": [[63, "cloudvision.Connector.grpc_client.grpcClient.GRPCClient.DEFAULT_CHANNEL_OPTIONS", false]], "defaulttemplate (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.DefaultTemplate", false]], "defaulttemplatebatchedstreamrequest (class in arista.alert.v1.services.gen_pb2)": [[3, "arista.alert.v1.services.gen_pb2.DefaultTemplateBatchedStreamRequest", false]], "defaulttemplatebatchedstreamresponse (class in arista.alert.v1.services.gen_pb2)": [[3, "arista.alert.v1.services.gen_pb2.DefaultTemplateBatchedStreamResponse", false]], "defaulttemplaterequest (class in arista.alert.v1.services.gen_pb2)": [[3, "arista.alert.v1.services.gen_pb2.DefaultTemplateRequest", false]], "defaulttemplateresponse (class in arista.alert.v1.services.gen_pb2)": [[3, "arista.alert.v1.services.gen_pb2.DefaultTemplateResponse", false]], "defaulttemplateservice (class in arista.alert.v1.services.gen_pb2_grpc)": [[3, "arista.alert.v1.services.gen_pb2_grpc.DefaultTemplateService", false]], "defaulttemplateserviceservicer (class in arista.alert.v1.services.gen_pb2_grpc)": [[3, "arista.alert.v1.services.gen_pb2_grpc.DefaultTemplateServiceServicer", false]], "defaulttemplateservicestub (class in arista.alert.v1.services.gen_pb2_grpc)": [[3, "arista.alert.v1.services.gen_pb2_grpc.DefaultTemplateServiceStub", false]], "defaulttemplatesomerequest (class in arista.alert.v1.services.gen_pb2)": [[3, "arista.alert.v1.services.gen_pb2.DefaultTemplateSomeRequest", false]], "defaulttemplatesomeresponse (class in arista.alert.v1.services.gen_pb2)": [[3, "arista.alert.v1.services.gen_pb2.DefaultTemplateSomeResponse", false]], "defaulttemplatestreamrequest (class in arista.alert.v1.services.gen_pb2)": [[3, "arista.alert.v1.services.gen_pb2.DefaultTemplateStreamRequest", false]], "defaulttemplatestreamresponse (class in arista.alert.v1.services.gen_pb2)": [[3, "arista.alert.v1.services.gen_pb2.DefaultTemplateStreamResponse", false]], "delete() (arista.alert.v1.services.gen_pb2_grpc.templateconfigservice static method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.TemplateConfigService.Delete", false]], "delete() (arista.alert.v1.services.gen_pb2_grpc.templateconfigserviceservicer method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.TemplateConfigServiceServicer.Delete", false]], "delete() (arista.changecontrol.v1.services.gen_pb2_grpc.approveconfigservice static method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ApproveConfigService.Delete", false]], "delete() (arista.changecontrol.v1.services.gen_pb2_grpc.approveconfigserviceservicer method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ApproveConfigServiceServicer.Delete", false]], "delete() (arista.changecontrol.v1.services.gen_pb2_grpc.changecontrolconfigservice static method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlConfigService.Delete", false]], "delete() (arista.changecontrol.v1.services.gen_pb2_grpc.changecontrolconfigserviceservicer method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlConfigServiceServicer.Delete", false]], "delete() (arista.configlet.v1.services.gen_pb2_grpc.configletassignmentconfigservice static method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentConfigService.Delete", false]], "delete() (arista.configlet.v1.services.gen_pb2_grpc.configletassignmentconfigserviceservicer method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentConfigServiceServicer.Delete", false]], "delete() (arista.configlet.v1.services.gen_pb2_grpc.configletconfigservice static method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletConfigService.Delete", false]], "delete() (arista.configlet.v1.services.gen_pb2_grpc.configletconfigserviceservicer method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletConfigServiceServicer.Delete", false]], "delete() (arista.dashboard.v1.services.gen_pb2_grpc.dashboardconfigservice static method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardConfigService.Delete", false]], "delete() (arista.dashboard.v1.services.gen_pb2_grpc.dashboardconfigserviceservicer method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardConfigServiceServicer.Delete", false]], "delete() (arista.event.v1.services.gen_pb2_grpc.eventannotationconfigservice static method)": [[27, "arista.event.v1.services.gen_pb2_grpc.EventAnnotationConfigService.Delete", false]], "delete() (arista.event.v1.services.gen_pb2_grpc.eventannotationconfigserviceservicer method)": [[27, "arista.event.v1.services.gen_pb2_grpc.EventAnnotationConfigServiceServicer.Delete", false]], "delete() (arista.event.v1.services.gen_pb2_grpc.usereventcreationconfigservice static method)": [[27, "arista.event.v1.services.gen_pb2_grpc.UserEventCreationConfigService.Delete", false]], "delete() (arista.event.v1.services.gen_pb2_grpc.usereventcreationconfigserviceservicer method)": [[27, "arista.event.v1.services.gen_pb2_grpc.UserEventCreationConfigServiceServicer.Delete", false]], "delete() (arista.identityprovider.v1.services.gen_pb2_grpc.oauthconfigservice static method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.OAuthConfigService.Delete", false]], "delete() (arista.identityprovider.v1.services.gen_pb2_grpc.oauthconfigserviceservicer method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.OAuthConfigServiceServicer.Delete", false]], "delete() (arista.identityprovider.v1.services.gen_pb2_grpc.samlconfigservice static method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.SAMLConfigService.Delete", false]], "delete() (arista.identityprovider.v1.services.gen_pb2_grpc.samlconfigserviceservicer method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.SAMLConfigServiceServicer.Delete", false]], "delete() (arista.inventory.v1.services.gen_pb2_grpc.devicedecommissioningconfigservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningConfigService.Delete", false]], "delete() (arista.inventory.v1.services.gen_pb2_grpc.devicedecommissioningconfigserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningConfigServiceServicer.Delete", false]], "delete() (arista.inventory.v1.services.gen_pb2_grpc.deviceonboardingconfigservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingConfigService.Delete", false]], "delete() (arista.inventory.v1.services.gen_pb2_grpc.deviceonboardingconfigserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingConfigServiceServicer.Delete", false]], "delete() (arista.serviceaccount.v1.services.gen_pb2_grpc.accountconfigservice static method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.AccountConfigService.Delete", false]], "delete() (arista.serviceaccount.v1.services.gen_pb2_grpc.accountconfigserviceservicer method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.AccountConfigServiceServicer.Delete", false]], "delete() (arista.serviceaccount.v1.services.gen_pb2_grpc.tokenconfigservice static method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.TokenConfigService.Delete", false]], "delete() (arista.serviceaccount.v1.services.gen_pb2_grpc.tokenconfigserviceservicer method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.TokenConfigServiceServicer.Delete", false]], "delete() (arista.studio.v1.services.gen_pb2_grpc.assignedtagsconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsConfigService.Delete", false]], "delete() (arista.studio.v1.services.gen_pb2_grpc.assignedtagsconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsConfigServiceServicer.Delete", false]], "delete() (arista.studio.v1.services.gen_pb2_grpc.autofillactionconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionConfigService.Delete", false]], "delete() (arista.studio.v1.services.gen_pb2_grpc.autofillactionconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionConfigServiceServicer.Delete", false]], "delete() (arista.studio.v1.services.gen_pb2_grpc.inputsconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsConfigService.Delete", false]], "delete() (arista.studio.v1.services.gen_pb2_grpc.inputsconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsConfigServiceServicer.Delete", false]], "delete() (arista.studio.v1.services.gen_pb2_grpc.studioconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioConfigService.Delete", false]], "delete() (arista.studio.v1.services.gen_pb2_grpc.studioconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioConfigServiceServicer.Delete", false]], "delete() (arista.tag.v2.services.gen_pb2_grpc.tagassignmentconfigservice static method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentConfigService.Delete", false]], "delete() (arista.tag.v2.services.gen_pb2_grpc.tagassignmentconfigserviceservicer method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentConfigServiceServicer.Delete", false]], "delete() (arista.tag.v2.services.gen_pb2_grpc.tagconfigservice static method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagConfigService.Delete", false]], "delete() (arista.tag.v2.services.gen_pb2_grpc.tagconfigserviceservicer method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagConfigServiceServicer.Delete", false]], "delete() (arista.workspace.v1.services.gen_pb2_grpc.workspaceconfigservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceConfigService.Delete", false]], "delete() (arista.workspace.v1.services.gen_pb2_grpc.workspaceconfigserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceConfigServiceServicer.Delete", false]], "delete() (arista.workspace.v1.services.gen_pb2_grpc.workspacesyncconfigservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceSyncConfigService.Delete", false]], "delete() (arista.workspace.v1.services.gen_pb2_grpc.workspacesyncconfigserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceSyncConfigServiceServicer.Delete", false]], "deleteall() (arista.alert.v1.services.gen_pb2_grpc.templateconfigservice static method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.TemplateConfigService.DeleteAll", false]], "deleteall() (arista.alert.v1.services.gen_pb2_grpc.templateconfigserviceservicer method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.TemplateConfigServiceServicer.DeleteAll", false]], "deleteall() (arista.changecontrol.v1.services.gen_pb2_grpc.approveconfigservice static method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ApproveConfigService.DeleteAll", false]], "deleteall() (arista.changecontrol.v1.services.gen_pb2_grpc.approveconfigserviceservicer method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ApproveConfigServiceServicer.DeleteAll", false]], "deleteall() (arista.changecontrol.v1.services.gen_pb2_grpc.changecontrolconfigservice static method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlConfigService.DeleteAll", false]], "deleteall() (arista.changecontrol.v1.services.gen_pb2_grpc.changecontrolconfigserviceservicer method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlConfigServiceServicer.DeleteAll", false]], "deleteall() (arista.configlet.v1.services.gen_pb2_grpc.configletassignmentconfigservice static method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentConfigService.DeleteAll", false]], "deleteall() (arista.configlet.v1.services.gen_pb2_grpc.configletassignmentconfigserviceservicer method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentConfigServiceServicer.DeleteAll", false]], "deleteall() (arista.configlet.v1.services.gen_pb2_grpc.configletconfigservice static method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletConfigService.DeleteAll", false]], "deleteall() (arista.configlet.v1.services.gen_pb2_grpc.configletconfigserviceservicer method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletConfigServiceServicer.DeleteAll", false]], "deleteall() (arista.dashboard.v1.services.gen_pb2_grpc.dashboardconfigservice static method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardConfigService.DeleteAll", false]], "deleteall() (arista.dashboard.v1.services.gen_pb2_grpc.dashboardconfigserviceservicer method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardConfigServiceServicer.DeleteAll", false]], "deleteall() (arista.event.v1.services.gen_pb2_grpc.eventannotationconfigservice static method)": [[27, "arista.event.v1.services.gen_pb2_grpc.EventAnnotationConfigService.DeleteAll", false]], "deleteall() (arista.event.v1.services.gen_pb2_grpc.eventannotationconfigserviceservicer method)": [[27, "arista.event.v1.services.gen_pb2_grpc.EventAnnotationConfigServiceServicer.DeleteAll", false]], "deleteall() (arista.event.v1.services.gen_pb2_grpc.usereventcreationconfigservice static method)": [[27, "arista.event.v1.services.gen_pb2_grpc.UserEventCreationConfigService.DeleteAll", false]], "deleteall() (arista.event.v1.services.gen_pb2_grpc.usereventcreationconfigserviceservicer method)": [[27, "arista.event.v1.services.gen_pb2_grpc.UserEventCreationConfigServiceServicer.DeleteAll", false]], "deleteall() (arista.identityprovider.v1.services.gen_pb2_grpc.oauthconfigservice static method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.OAuthConfigService.DeleteAll", false]], "deleteall() (arista.identityprovider.v1.services.gen_pb2_grpc.oauthconfigserviceservicer method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.OAuthConfigServiceServicer.DeleteAll", false]], "deleteall() (arista.identityprovider.v1.services.gen_pb2_grpc.samlconfigservice static method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.SAMLConfigService.DeleteAll", false]], "deleteall() (arista.identityprovider.v1.services.gen_pb2_grpc.samlconfigserviceservicer method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.SAMLConfigServiceServicer.DeleteAll", false]], "deleteall() (arista.inventory.v1.services.gen_pb2_grpc.devicedecommissioningconfigservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningConfigService.DeleteAll", false]], "deleteall() (arista.inventory.v1.services.gen_pb2_grpc.devicedecommissioningconfigserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningConfigServiceServicer.DeleteAll", false]], "deleteall() (arista.inventory.v1.services.gen_pb2_grpc.deviceonboardingconfigservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingConfigService.DeleteAll", false]], "deleteall() (arista.inventory.v1.services.gen_pb2_grpc.deviceonboardingconfigserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingConfigServiceServicer.DeleteAll", false]], "deleteall() (arista.serviceaccount.v1.services.gen_pb2_grpc.accountconfigservice static method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.AccountConfigService.DeleteAll", false]], "deleteall() (arista.serviceaccount.v1.services.gen_pb2_grpc.accountconfigserviceservicer method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.AccountConfigServiceServicer.DeleteAll", false]], "deleteall() (arista.serviceaccount.v1.services.gen_pb2_grpc.tokenconfigservice static method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.TokenConfigService.DeleteAll", false]], "deleteall() (arista.serviceaccount.v1.services.gen_pb2_grpc.tokenconfigserviceservicer method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.TokenConfigServiceServicer.DeleteAll", false]], "deleteall() (arista.studio.v1.services.gen_pb2_grpc.assignedtagsconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsConfigService.DeleteAll", false]], "deleteall() (arista.studio.v1.services.gen_pb2_grpc.assignedtagsconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsConfigServiceServicer.DeleteAll", false]], "deleteall() (arista.studio.v1.services.gen_pb2_grpc.autofillactionconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionConfigService.DeleteAll", false]], "deleteall() (arista.studio.v1.services.gen_pb2_grpc.autofillactionconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionConfigServiceServicer.DeleteAll", false]], "deleteall() (arista.studio.v1.services.gen_pb2_grpc.inputsconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsConfigService.DeleteAll", false]], "deleteall() (arista.studio.v1.services.gen_pb2_grpc.inputsconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsConfigServiceServicer.DeleteAll", false]], "deleteall() (arista.studio.v1.services.gen_pb2_grpc.studioconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioConfigService.DeleteAll", false]], "deleteall() (arista.studio.v1.services.gen_pb2_grpc.studioconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioConfigServiceServicer.DeleteAll", false]], "deleteall() (arista.tag.v2.services.gen_pb2_grpc.tagassignmentconfigservice static method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentConfigService.DeleteAll", false]], "deleteall() (arista.tag.v2.services.gen_pb2_grpc.tagassignmentconfigserviceservicer method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentConfigServiceServicer.DeleteAll", false]], "deleteall() (arista.tag.v2.services.gen_pb2_grpc.tagconfigservice static method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagConfigService.DeleteAll", false]], "deleteall() (arista.tag.v2.services.gen_pb2_grpc.tagconfigserviceservicer method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagConfigServiceServicer.DeleteAll", false]], "deleteall() (arista.workspace.v1.services.gen_pb2_grpc.workspaceconfigservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceConfigService.DeleteAll", false]], "deleteall() (arista.workspace.v1.services.gen_pb2_grpc.workspaceconfigserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceConfigServiceServicer.DeleteAll", false]], "deleteall() (arista.workspace.v1.services.gen_pb2_grpc.workspacesyncconfigservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceSyncConfigService.DeleteAll", false]], "deleteall() (arista.workspace.v1.services.gen_pb2_grpc.workspacesyncconfigserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceSyncConfigServiceServicer.DeleteAll", false]], "deletecustomschema() (cloudvision.connector.gen.router_pb2_grpc.alpha static method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.Alpha.DeleteCustomSchema", false]], "deletecustomschema() (cloudvision.connector.gen.router_pb2_grpc.alphaservicer method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.AlphaServicer.DeleteCustomSchema", false]], "deletecustomschema() (cloudvision.connector.gen.router_pb2_grpc.search static method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.Search.DeleteCustomSchema", false]], "deletecustomschema() (cloudvision.connector.gen.router_pb2_grpc.searchservicer method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.SearchServicer.DeleteCustomSchema", false]], "deletesome() (arista.alert.v1.services.gen_pb2_grpc.templateconfigservice static method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.TemplateConfigService.DeleteSome", false]], "deletesome() (arista.alert.v1.services.gen_pb2_grpc.templateconfigserviceservicer method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.TemplateConfigServiceServicer.DeleteSome", false]], "deletesome() (arista.changecontrol.v1.services.gen_pb2_grpc.approveconfigservice static method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ApproveConfigService.DeleteSome", false]], "deletesome() (arista.changecontrol.v1.services.gen_pb2_grpc.approveconfigserviceservicer method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ApproveConfigServiceServicer.DeleteSome", false]], "deletesome() (arista.changecontrol.v1.services.gen_pb2_grpc.changecontrolconfigservice static method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlConfigService.DeleteSome", false]], "deletesome() (arista.changecontrol.v1.services.gen_pb2_grpc.changecontrolconfigserviceservicer method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlConfigServiceServicer.DeleteSome", false]], "deletesome() (arista.configlet.v1.services.gen_pb2_grpc.configletassignmentconfigservice static method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentConfigService.DeleteSome", false]], "deletesome() (arista.configlet.v1.services.gen_pb2_grpc.configletassignmentconfigserviceservicer method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentConfigServiceServicer.DeleteSome", false]], "deletesome() (arista.configlet.v1.services.gen_pb2_grpc.configletconfigservice static method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletConfigService.DeleteSome", false]], "deletesome() (arista.configlet.v1.services.gen_pb2_grpc.configletconfigserviceservicer method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletConfigServiceServicer.DeleteSome", false]], "deletesome() (arista.dashboard.v1.services.gen_pb2_grpc.dashboardconfigservice static method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardConfigService.DeleteSome", false]], "deletesome() (arista.dashboard.v1.services.gen_pb2_grpc.dashboardconfigserviceservicer method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardConfigServiceServicer.DeleteSome", false]], "deletesome() (arista.event.v1.services.gen_pb2_grpc.eventannotationconfigservice static method)": [[27, "arista.event.v1.services.gen_pb2_grpc.EventAnnotationConfigService.DeleteSome", false]], "deletesome() (arista.event.v1.services.gen_pb2_grpc.eventannotationconfigserviceservicer method)": [[27, "arista.event.v1.services.gen_pb2_grpc.EventAnnotationConfigServiceServicer.DeleteSome", false]], "deletesome() (arista.event.v1.services.gen_pb2_grpc.usereventcreationconfigservice static method)": [[27, "arista.event.v1.services.gen_pb2_grpc.UserEventCreationConfigService.DeleteSome", false]], "deletesome() (arista.event.v1.services.gen_pb2_grpc.usereventcreationconfigserviceservicer method)": [[27, "arista.event.v1.services.gen_pb2_grpc.UserEventCreationConfigServiceServicer.DeleteSome", false]], "deletesome() (arista.identityprovider.v1.services.gen_pb2_grpc.oauthconfigservice static method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.OAuthConfigService.DeleteSome", false]], "deletesome() (arista.identityprovider.v1.services.gen_pb2_grpc.oauthconfigserviceservicer method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.OAuthConfigServiceServicer.DeleteSome", false]], "deletesome() (arista.identityprovider.v1.services.gen_pb2_grpc.samlconfigservice static method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.SAMLConfigService.DeleteSome", false]], "deletesome() (arista.identityprovider.v1.services.gen_pb2_grpc.samlconfigserviceservicer method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.SAMLConfigServiceServicer.DeleteSome", false]], "deletesome() (arista.inventory.v1.services.gen_pb2_grpc.devicedecommissioningconfigservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningConfigService.DeleteSome", false]], "deletesome() (arista.inventory.v1.services.gen_pb2_grpc.devicedecommissioningconfigserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningConfigServiceServicer.DeleteSome", false]], "deletesome() (arista.inventory.v1.services.gen_pb2_grpc.deviceonboardingconfigservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingConfigService.DeleteSome", false]], "deletesome() (arista.inventory.v1.services.gen_pb2_grpc.deviceonboardingconfigserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingConfigServiceServicer.DeleteSome", false]], "deletesome() (arista.serviceaccount.v1.services.gen_pb2_grpc.accountconfigservice static method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.AccountConfigService.DeleteSome", false]], "deletesome() (arista.serviceaccount.v1.services.gen_pb2_grpc.accountconfigserviceservicer method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.AccountConfigServiceServicer.DeleteSome", false]], "deletesome() (arista.serviceaccount.v1.services.gen_pb2_grpc.tokenconfigservice static method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.TokenConfigService.DeleteSome", false]], "deletesome() (arista.serviceaccount.v1.services.gen_pb2_grpc.tokenconfigserviceservicer method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.TokenConfigServiceServicer.DeleteSome", false]], "deletesome() (arista.studio.v1.services.gen_pb2_grpc.assignedtagsconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsConfigService.DeleteSome", false]], "deletesome() (arista.studio.v1.services.gen_pb2_grpc.assignedtagsconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsConfigServiceServicer.DeleteSome", false]], "deletesome() (arista.studio.v1.services.gen_pb2_grpc.autofillactionconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionConfigService.DeleteSome", false]], "deletesome() (arista.studio.v1.services.gen_pb2_grpc.autofillactionconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionConfigServiceServicer.DeleteSome", false]], "deletesome() (arista.studio.v1.services.gen_pb2_grpc.inputsconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsConfigService.DeleteSome", false]], "deletesome() (arista.studio.v1.services.gen_pb2_grpc.inputsconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsConfigServiceServicer.DeleteSome", false]], "deletesome() (arista.studio.v1.services.gen_pb2_grpc.studioconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioConfigService.DeleteSome", false]], "deletesome() (arista.studio.v1.services.gen_pb2_grpc.studioconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioConfigServiceServicer.DeleteSome", false]], "deletesome() (arista.tag.v2.services.gen_pb2_grpc.tagassignmentconfigservice static method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentConfigService.DeleteSome", false]], "deletesome() (arista.tag.v2.services.gen_pb2_grpc.tagassignmentconfigserviceservicer method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentConfigServiceServicer.DeleteSome", false]], "deletesome() (arista.tag.v2.services.gen_pb2_grpc.tagconfigservice static method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagConfigService.DeleteSome", false]], "deletesome() (arista.tag.v2.services.gen_pb2_grpc.tagconfigserviceservicer method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagConfigServiceServicer.DeleteSome", false]], "deletesome() (arista.workspace.v1.services.gen_pb2_grpc.workspaceconfigservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceConfigService.DeleteSome", false]], "deletesome() (arista.workspace.v1.services.gen_pb2_grpc.workspaceconfigserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceConfigServiceServicer.DeleteSome", false]], "deletesome() (arista.workspace.v1.services.gen_pb2_grpc.workspacesyncconfigservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceSyncConfigService.DeleteSome", false]], "deletesome() (arista.workspace.v1.services.gen_pb2_grpc.workspacesyncconfigserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceSyncConfigServiceServicer.DeleteSome", false]], "descriptor (arista.alert.v1.alert_pb2.alert attribute)": [[2, "arista.alert.v1.alert_pb2.Alert.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.alertconfig attribute)": [[2, "arista.alert.v1.alert_pb2.AlertConfig.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.azureoauth attribute)": [[2, "arista.alert.v1.alert_pb2.AzureOAuth.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.broadcastgroup attribute)": [[2, "arista.alert.v1.alert_pb2.BroadcastGroup.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.broadcastgroups attribute)": [[2, "arista.alert.v1.alert_pb2.BroadcastGroups.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.broadcastgroups.valuesentry attribute)": [[2, "arista.alert.v1.alert_pb2.BroadcastGroups.ValuesEntry.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.configerror attribute)": [[2, "arista.alert.v1.alert_pb2.ConfigError.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.configerrors attribute)": [[2, "arista.alert.v1.alert_pb2.ConfigErrors.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.cuedata attribute)": [[2, "arista.alert.v1.alert_pb2.CueData.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.cuedata.valuesentry attribute)": [[2, "arista.alert.v1.alert_pb2.CueData.ValuesEntry.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.cuesendgridendpoint attribute)": [[2, "arista.alert.v1.alert_pb2.CueSendgridEndpoint.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.cuesendgridendpoints attribute)": [[2, "arista.alert.v1.alert_pb2.CueSendgridEndpoints.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.cuesendgridsettings attribute)": [[2, "arista.alert.v1.alert_pb2.CueSendgridSettings.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.cuesnmpauth attribute)": [[2, "arista.alert.v1.alert_pb2.CueSNMPAuth.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.cuesnmpendpoint attribute)": [[2, "arista.alert.v1.alert_pb2.CueSNMPEndpoint.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.cuesnmpendpoints attribute)": [[2, "arista.alert.v1.alert_pb2.CueSnmpEndpoints.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.cuesnmpsettings attribute)": [[2, "arista.alert.v1.alert_pb2.CueSNMPSettings.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.cuesyslogendpoint attribute)": [[2, "arista.alert.v1.alert_pb2.CueSyslogEndpoint.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.cuesyslogendpoints attribute)": [[2, "arista.alert.v1.alert_pb2.CueSyslogEndpoints.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.cuesyslogsettings attribute)": [[2, "arista.alert.v1.alert_pb2.CueSyslogSettings.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.defaulttemplate attribute)": [[2, "arista.alert.v1.alert_pb2.DefaultTemplate.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.emailendpoint attribute)": [[2, "arista.alert.v1.alert_pb2.EmailEndpoint.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.emailendpoints attribute)": [[2, "arista.alert.v1.alert_pb2.EmailEndpoints.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.emailsettings attribute)": [[2, "arista.alert.v1.alert_pb2.EmailSettings.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.endpointerror attribute)": [[2, "arista.alert.v1.alert_pb2.EndpointError.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.endpointerrors attribute)": [[2, "arista.alert.v1.alert_pb2.EndpointErrors.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.eventlist attribute)": [[2, "arista.alert.v1.alert_pb2.EventList.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.googlechatendpoint attribute)": [[2, "arista.alert.v1.alert_pb2.GoogleChatEndpoint.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.googlechatendpoints attribute)": [[2, "arista.alert.v1.alert_pb2.GoogleChatEndpoints.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.googlechatsettings attribute)": [[2, "arista.alert.v1.alert_pb2.GoogleChatSettings.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.headervalues attribute)": [[2, "arista.alert.v1.alert_pb2.HeaderValues.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.httpheaders attribute)": [[2, "arista.alert.v1.alert_pb2.HttpHeaders.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.httpheaders.valuesentry attribute)": [[2, "arista.alert.v1.alert_pb2.HttpHeaders.ValuesEntry.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.httpsettings attribute)": [[2, "arista.alert.v1.alert_pb2.HttpSettings.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.inhibitionsettings attribute)": [[2, "arista.alert.v1.alert_pb2.InhibitionSettings.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.inhibitionsettings.valuesentry attribute)": [[2, "arista.alert.v1.alert_pb2.InhibitionSettings.ValuesEntry.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.matches attribute)": [[2, "arista.alert.v1.alert_pb2.Matches.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.msteamsendpoint attribute)": [[2, "arista.alert.v1.alert_pb2.MsTeamsEndpoint.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.msteamsendpoints attribute)": [[2, "arista.alert.v1.alert_pb2.MsTeamsEndpoints.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.msteamssettings attribute)": [[2, "arista.alert.v1.alert_pb2.MsTeamsSettings.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.opsgenieendpoint attribute)": [[2, "arista.alert.v1.alert_pb2.OpsgenieEndpoint.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.opsgenieendpoints attribute)": [[2, "arista.alert.v1.alert_pb2.OpsgenieEndpoints.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.opsgeniesettings attribute)": [[2, "arista.alert.v1.alert_pb2.OpsgenieSettings.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.pagerdutyendpoint attribute)": [[2, "arista.alert.v1.alert_pb2.PagerdutyEndpoint.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.pagerdutyendpoints attribute)": [[2, "arista.alert.v1.alert_pb2.PagerdutyEndpoints.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.pagerdutysettings attribute)": [[2, "arista.alert.v1.alert_pb2.PagerdutySettings.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.priorities attribute)": [[2, "arista.alert.v1.alert_pb2.Priorities.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.pushoverendpoint attribute)": [[2, "arista.alert.v1.alert_pb2.PushoverEndpoint.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.pushoverendpoints attribute)": [[2, "arista.alert.v1.alert_pb2.PushoverEndpoints.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.rule attribute)": [[2, "arista.alert.v1.alert_pb2.Rule.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.rules attribute)": [[2, "arista.alert.v1.alert_pb2.Rules.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.sendgridendpoint attribute)": [[2, "arista.alert.v1.alert_pb2.SendgridEndpoint.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.sendgridendpoints attribute)": [[2, "arista.alert.v1.alert_pb2.SendgridEndpoints.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.sendgridsettings attribute)": [[2, "arista.alert.v1.alert_pb2.SendgridSettings.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.settings attribute)": [[2, "arista.alert.v1.alert_pb2.Settings.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.slackendpoint attribute)": [[2, "arista.alert.v1.alert_pb2.SlackEndpoint.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.slackendpoints attribute)": [[2, "arista.alert.v1.alert_pb2.SlackEndpoints.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.slacksettings attribute)": [[2, "arista.alert.v1.alert_pb2.SlackSettings.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.snmpauth attribute)": [[2, "arista.alert.v1.alert_pb2.SNMPAuth.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.snmpendpoint attribute)": [[2, "arista.alert.v1.alert_pb2.SNMPEndpoint.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.snmpendpoints attribute)": [[2, "arista.alert.v1.alert_pb2.SNMPEndpoints.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.snmpsettings attribute)": [[2, "arista.alert.v1.alert_pb2.SNMPSettings.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.syslogendpoint attribute)": [[2, "arista.alert.v1.alert_pb2.SyslogEndpoint.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.syslogendpoints attribute)": [[2, "arista.alert.v1.alert_pb2.SyslogEndpoints.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.syslogsettings attribute)": [[2, "arista.alert.v1.alert_pb2.SyslogSettings.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.templateconfig attribute)": [[2, "arista.alert.v1.alert_pb2.TemplateConfig.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.templatekey attribute)": [[2, "arista.alert.v1.alert_pb2.TemplateKey.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.victoropsendpoint attribute)": [[2, "arista.alert.v1.alert_pb2.VictorOpsEndpoint.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.victoropsendpoints attribute)": [[2, "arista.alert.v1.alert_pb2.VictorOpsEndpoints.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.victoropssettings attribute)": [[2, "arista.alert.v1.alert_pb2.VictoropsSettings.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.webhookendpoint attribute)": [[2, "arista.alert.v1.alert_pb2.WebhookEndpoint.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.webhookendpoints attribute)": [[2, "arista.alert.v1.alert_pb2.WebhookEndpoints.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.webhooksettings attribute)": [[2, "arista.alert.v1.alert_pb2.WebhookSettings.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.zoomendpoint attribute)": [[2, "arista.alert.v1.alert_pb2.ZoomEndpoint.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.zoomendpoints attribute)": [[2, "arista.alert.v1.alert_pb2.ZoomEndpoints.DESCRIPTOR", false]], "descriptor (arista.alert.v1.alert_pb2.zoomsettings attribute)": [[2, "arista.alert.v1.alert_pb2.ZoomSettings.DESCRIPTOR", false]], "descriptor (arista.alert.v1.services.gen_pb2.alertconfigrequest attribute)": [[3, "arista.alert.v1.services.gen_pb2.AlertConfigRequest.DESCRIPTOR", false]], "descriptor (arista.alert.v1.services.gen_pb2.alertconfigresponse attribute)": [[3, "arista.alert.v1.services.gen_pb2.AlertConfigResponse.DESCRIPTOR", false]], "descriptor (arista.alert.v1.services.gen_pb2.alertconfigsetrequest attribute)": [[3, "arista.alert.v1.services.gen_pb2.AlertConfigSetRequest.DESCRIPTOR", false]], "descriptor (arista.alert.v1.services.gen_pb2.alertconfigsetresponse attribute)": [[3, "arista.alert.v1.services.gen_pb2.AlertConfigSetResponse.DESCRIPTOR", false]], "descriptor (arista.alert.v1.services.gen_pb2.alertconfigstreamrequest attribute)": [[3, "arista.alert.v1.services.gen_pb2.AlertConfigStreamRequest.DESCRIPTOR", false]], "descriptor (arista.alert.v1.services.gen_pb2.alertconfigstreamresponse attribute)": [[3, "arista.alert.v1.services.gen_pb2.AlertConfigStreamResponse.DESCRIPTOR", false]], "descriptor (arista.alert.v1.services.gen_pb2.alertrequest attribute)": [[3, "arista.alert.v1.services.gen_pb2.AlertRequest.DESCRIPTOR", false]], "descriptor (arista.alert.v1.services.gen_pb2.alertresponse attribute)": [[3, "arista.alert.v1.services.gen_pb2.AlertResponse.DESCRIPTOR", false]], "descriptor (arista.alert.v1.services.gen_pb2.alertstreamrequest attribute)": [[3, "arista.alert.v1.services.gen_pb2.AlertStreamRequest.DESCRIPTOR", false]], "descriptor (arista.alert.v1.services.gen_pb2.alertstreamresponse attribute)": [[3, "arista.alert.v1.services.gen_pb2.AlertStreamResponse.DESCRIPTOR", false]], "descriptor (arista.alert.v1.services.gen_pb2.defaulttemplatebatchedstreamrequest attribute)": [[3, "arista.alert.v1.services.gen_pb2.DefaultTemplateBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.alert.v1.services.gen_pb2.defaulttemplatebatchedstreamresponse attribute)": [[3, "arista.alert.v1.services.gen_pb2.DefaultTemplateBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.alert.v1.services.gen_pb2.defaulttemplaterequest attribute)": [[3, "arista.alert.v1.services.gen_pb2.DefaultTemplateRequest.DESCRIPTOR", false]], "descriptor (arista.alert.v1.services.gen_pb2.defaulttemplateresponse attribute)": [[3, "arista.alert.v1.services.gen_pb2.DefaultTemplateResponse.DESCRIPTOR", false]], "descriptor (arista.alert.v1.services.gen_pb2.defaulttemplatesomerequest attribute)": [[3, "arista.alert.v1.services.gen_pb2.DefaultTemplateSomeRequest.DESCRIPTOR", false]], "descriptor (arista.alert.v1.services.gen_pb2.defaulttemplatesomeresponse attribute)": [[3, "arista.alert.v1.services.gen_pb2.DefaultTemplateSomeResponse.DESCRIPTOR", false]], "descriptor (arista.alert.v1.services.gen_pb2.defaulttemplatestreamrequest attribute)": [[3, "arista.alert.v1.services.gen_pb2.DefaultTemplateStreamRequest.DESCRIPTOR", false]], "descriptor (arista.alert.v1.services.gen_pb2.defaulttemplatestreamresponse attribute)": [[3, "arista.alert.v1.services.gen_pb2.DefaultTemplateStreamResponse.DESCRIPTOR", false]], "descriptor (arista.alert.v1.services.gen_pb2.metaresponse attribute)": [[3, "arista.alert.v1.services.gen_pb2.MetaResponse.DESCRIPTOR", false]], "descriptor (arista.alert.v1.services.gen_pb2.templateconfigbatchedstreamrequest attribute)": [[3, "arista.alert.v1.services.gen_pb2.TemplateConfigBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.alert.v1.services.gen_pb2.templateconfigbatchedstreamresponse attribute)": [[3, "arista.alert.v1.services.gen_pb2.TemplateConfigBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.alert.v1.services.gen_pb2.templateconfigdeleteallrequest attribute)": [[3, "arista.alert.v1.services.gen_pb2.TemplateConfigDeleteAllRequest.DESCRIPTOR", false]], "descriptor (arista.alert.v1.services.gen_pb2.templateconfigdeleteallresponse attribute)": [[3, "arista.alert.v1.services.gen_pb2.TemplateConfigDeleteAllResponse.DESCRIPTOR", false]], "descriptor (arista.alert.v1.services.gen_pb2.templateconfigdeleterequest attribute)": [[3, "arista.alert.v1.services.gen_pb2.TemplateConfigDeleteRequest.DESCRIPTOR", false]], "descriptor (arista.alert.v1.services.gen_pb2.templateconfigdeleteresponse attribute)": [[3, "arista.alert.v1.services.gen_pb2.TemplateConfigDeleteResponse.DESCRIPTOR", false]], "descriptor (arista.alert.v1.services.gen_pb2.templateconfigdeletesomerequest attribute)": [[3, "arista.alert.v1.services.gen_pb2.TemplateConfigDeleteSomeRequest.DESCRIPTOR", false]], "descriptor (arista.alert.v1.services.gen_pb2.templateconfigdeletesomeresponse attribute)": [[3, "arista.alert.v1.services.gen_pb2.TemplateConfigDeleteSomeResponse.DESCRIPTOR", false]], "descriptor (arista.alert.v1.services.gen_pb2.templateconfigrequest attribute)": [[3, "arista.alert.v1.services.gen_pb2.TemplateConfigRequest.DESCRIPTOR", false]], "descriptor (arista.alert.v1.services.gen_pb2.templateconfigresponse attribute)": [[3, "arista.alert.v1.services.gen_pb2.TemplateConfigResponse.DESCRIPTOR", false]], "descriptor (arista.alert.v1.services.gen_pb2.templateconfigsetrequest attribute)": [[3, "arista.alert.v1.services.gen_pb2.TemplateConfigSetRequest.DESCRIPTOR", false]], "descriptor (arista.alert.v1.services.gen_pb2.templateconfigsetresponse attribute)": [[3, "arista.alert.v1.services.gen_pb2.TemplateConfigSetResponse.DESCRIPTOR", false]], "descriptor (arista.alert.v1.services.gen_pb2.templateconfigsetsomerequest attribute)": [[3, "arista.alert.v1.services.gen_pb2.TemplateConfigSetSomeRequest.DESCRIPTOR", false]], "descriptor (arista.alert.v1.services.gen_pb2.templateconfigsetsomeresponse attribute)": [[3, "arista.alert.v1.services.gen_pb2.TemplateConfigSetSomeResponse.DESCRIPTOR", false]], "descriptor (arista.alert.v1.services.gen_pb2.templateconfigsomerequest attribute)": [[3, "arista.alert.v1.services.gen_pb2.TemplateConfigSomeRequest.DESCRIPTOR", false]], "descriptor (arista.alert.v1.services.gen_pb2.templateconfigsomeresponse attribute)": [[3, "arista.alert.v1.services.gen_pb2.TemplateConfigSomeResponse.DESCRIPTOR", false]], "descriptor (arista.alert.v1.services.gen_pb2.templateconfigstreamrequest attribute)": [[3, "arista.alert.v1.services.gen_pb2.TemplateConfigStreamRequest.DESCRIPTOR", false]], "descriptor (arista.alert.v1.services.gen_pb2.templateconfigstreamresponse attribute)": [[3, "arista.alert.v1.services.gen_pb2.TemplateConfigStreamResponse.DESCRIPTOR", false]], "descriptor (arista.bugexposure.v1.bugexposure_pb2.bugexposure attribute)": [[5, "arista.bugexposure.v1.bugexposure_pb2.BugExposure.DESCRIPTOR", false]], "descriptor (arista.bugexposure.v1.bugexposure_pb2.bugexposurekey attribute)": [[5, "arista.bugexposure.v1.bugexposure_pb2.BugExposureKey.DESCRIPTOR", false]], "descriptor (arista.bugexposure.v1.services.gen_pb2.bugexposurerequest attribute)": [[6, "arista.bugexposure.v1.services.gen_pb2.BugExposureRequest.DESCRIPTOR", false]], "descriptor (arista.bugexposure.v1.services.gen_pb2.bugexposureresponse attribute)": [[6, "arista.bugexposure.v1.services.gen_pb2.BugExposureResponse.DESCRIPTOR", false]], "descriptor (arista.bugexposure.v1.services.gen_pb2.bugexposurestreamrequest attribute)": [[6, "arista.bugexposure.v1.services.gen_pb2.BugExposureStreamRequest.DESCRIPTOR", false]], "descriptor (arista.bugexposure.v1.services.gen_pb2.bugexposurestreamresponse attribute)": [[6, "arista.bugexposure.v1.services.gen_pb2.BugExposureStreamResponse.DESCRIPTOR", false]], "descriptor (arista.bugexposure.v1.services.gen_pb2.metaresponse attribute)": [[6, "arista.bugexposure.v1.services.gen_pb2.MetaResponse.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.changecontrol_pb2.action attribute)": [[8, "arista.changecontrol.v1.changecontrol_pb2.Action.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.changecontrol_pb2.approveconfig attribute)": [[8, "arista.changecontrol.v1.changecontrol_pb2.ApproveConfig.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.changecontrol_pb2.change attribute)": [[8, "arista.changecontrol.v1.changecontrol_pb2.Change.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.changecontrol_pb2.changeconfig attribute)": [[8, "arista.changecontrol.v1.changecontrol_pb2.ChangeConfig.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.changecontrol_pb2.changecontrol attribute)": [[8, "arista.changecontrol.v1.changecontrol_pb2.ChangeControl.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.changecontrol_pb2.changecontrolconfig attribute)": [[8, "arista.changecontrol.v1.changecontrol_pb2.ChangeControlConfig.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.changecontrol_pb2.changecontrolkey attribute)": [[8, "arista.changecontrol.v1.changecontrol_pb2.ChangeControlKey.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.changecontrol_pb2.devicetostagemap attribute)": [[8, "arista.changecontrol.v1.changecontrol_pb2.DeviceToStageMap.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.changecontrol_pb2.devicetostagemap.valuesentry attribute)": [[8, "arista.changecontrol.v1.changecontrol_pb2.DeviceToStageMap.ValuesEntry.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.changecontrol_pb2.filter attribute)": [[8, "arista.changecontrol.v1.changecontrol_pb2.Filter.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.changecontrol_pb2.flag attribute)": [[8, "arista.changecontrol.v1.changecontrol_pb2.Flag.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.changecontrol_pb2.flagconfig attribute)": [[8, "arista.changecontrol.v1.changecontrol_pb2.FlagConfig.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.changecontrol_pb2.repeatedrepeatedstring attribute)": [[8, "arista.changecontrol.v1.changecontrol_pb2.RepeatedRepeatedString.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.changecontrol_pb2.stage attribute)": [[8, "arista.changecontrol.v1.changecontrol_pb2.Stage.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.changecontrol_pb2.stageconfig attribute)": [[8, "arista.changecontrol.v1.changecontrol_pb2.StageConfig.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.changecontrol_pb2.stageconfigmap attribute)": [[8, "arista.changecontrol.v1.changecontrol_pb2.StageConfigMap.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.changecontrol_pb2.stageconfigmap.valuesentry attribute)": [[8, "arista.changecontrol.v1.changecontrol_pb2.StageConfigMap.ValuesEntry.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.changecontrol_pb2.stagemap attribute)": [[8, "arista.changecontrol.v1.changecontrol_pb2.StageMap.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.changecontrol_pb2.stagemap.valuesentry attribute)": [[8, "arista.changecontrol.v1.changecontrol_pb2.StageMap.ValuesEntry.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.changecontrol_pb2.timestampflag attribute)": [[8, "arista.changecontrol.v1.changecontrol_pb2.TimestampFlag.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.changecontrol_pb2.timestampflagconfig attribute)": [[8, "arista.changecontrol.v1.changecontrol_pb2.TimestampFlagConfig.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.approveconfigbatchedstreamrequest attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.ApproveConfigBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.approveconfigbatchedstreamresponse attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.ApproveConfigBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.approveconfigdeleteallrequest attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.ApproveConfigDeleteAllRequest.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.approveconfigdeleteallresponse attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.ApproveConfigDeleteAllResponse.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.approveconfigdeleterequest attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.ApproveConfigDeleteRequest.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.approveconfigdeleteresponse attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.ApproveConfigDeleteResponse.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.approveconfigdeletesomerequest attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.ApproveConfigDeleteSomeRequest.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.approveconfigdeletesomeresponse attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.ApproveConfigDeleteSomeResponse.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.approveconfigrequest attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.ApproveConfigRequest.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.approveconfigresponse attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.ApproveConfigResponse.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.approveconfigsetrequest attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.ApproveConfigSetRequest.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.approveconfigsetresponse attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.ApproveConfigSetResponse.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.approveconfigsetsomerequest attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.ApproveConfigSetSomeRequest.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.approveconfigsetsomeresponse attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.ApproveConfigSetSomeResponse.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.approveconfigsomerequest attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.ApproveConfigSomeRequest.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.approveconfigsomeresponse attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.ApproveConfigSomeResponse.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.approveconfigstreamrequest attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.ApproveConfigStreamRequest.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.approveconfigstreamresponse attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.ApproveConfigStreamResponse.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.changecontrolbatchedstreamrequest attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.changecontrolbatchedstreamresponse attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.changecontrolconfigbatchedstreamrequest attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.changecontrolconfigbatchedstreamresponse attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.changecontrolconfigdeleteallrequest attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigDeleteAllRequest.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.changecontrolconfigdeleteallresponse attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigDeleteAllResponse.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.changecontrolconfigdeleterequest attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigDeleteRequest.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.changecontrolconfigdeleteresponse attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigDeleteResponse.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.changecontrolconfigdeletesomerequest attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigDeleteSomeRequest.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.changecontrolconfigdeletesomeresponse attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigDeleteSomeResponse.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.changecontrolconfigrequest attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigRequest.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.changecontrolconfigresponse attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigResponse.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.changecontrolconfigsetrequest attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigSetRequest.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.changecontrolconfigsetresponse attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigSetResponse.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.changecontrolconfigsetsomerequest attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigSetSomeRequest.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.changecontrolconfigsetsomeresponse attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigSetSomeResponse.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.changecontrolconfigsomerequest attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigSomeRequest.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.changecontrolconfigsomeresponse attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigSomeResponse.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.changecontrolconfigstreamrequest attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigStreamRequest.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.changecontrolconfigstreamresponse attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigStreamResponse.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.changecontrolrequest attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlRequest.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.changecontrolresponse attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlResponse.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.changecontrolsomerequest attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlSomeRequest.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.changecontrolsomeresponse attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlSomeResponse.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.changecontrolstreamrequest attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlStreamRequest.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.changecontrolstreamresponse attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.ChangeControlStreamResponse.DESCRIPTOR", false]], "descriptor (arista.changecontrol.v1.services.gen_pb2.metaresponse attribute)": [[9, "arista.changecontrol.v1.services.gen_pb2.MetaResponse.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.configlet_pb2.configlet attribute)": [[11, "arista.configlet.v1.configlet_pb2.Configlet.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.configlet_pb2.configletassignment attribute)": [[11, "arista.configlet.v1.configlet_pb2.ConfigletAssignment.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.configlet_pb2.configletassignmentconfig attribute)": [[11, "arista.configlet.v1.configlet_pb2.ConfigletAssignmentConfig.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.configlet_pb2.configletassignmentkey attribute)": [[11, "arista.configlet.v1.configlet_pb2.ConfigletAssignmentKey.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.configlet_pb2.configletconfig attribute)": [[11, "arista.configlet.v1.configlet_pb2.ConfigletConfig.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.configlet_pb2.configletkey attribute)": [[11, "arista.configlet.v1.configlet_pb2.ConfigletKey.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.configlet_pb2.filter attribute)": [[11, "arista.configlet.v1.configlet_pb2.Filter.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletassignmentbatchedstreamrequest attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletassignmentbatchedstreamresponse attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletassignmentconfigbatchedstreamrequest attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletassignmentconfigbatchedstreamresponse attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletassignmentconfigdeleteallrequest attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigDeleteAllRequest.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletassignmentconfigdeleteallresponse attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigDeleteAllResponse.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletassignmentconfigdeleterequest attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigDeleteRequest.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletassignmentconfigdeleteresponse attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigDeleteResponse.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletassignmentconfigdeletesomerequest attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigDeleteSomeRequest.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletassignmentconfigdeletesomeresponse attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigDeleteSomeResponse.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletassignmentconfigrequest attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigRequest.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletassignmentconfigresponse attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigResponse.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletassignmentconfigsetrequest attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigSetRequest.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletassignmentconfigsetresponse attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigSetResponse.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletassignmentconfigsetsomerequest attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigSetSomeRequest.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletassignmentconfigsetsomeresponse attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigSetSomeResponse.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletassignmentconfigsomerequest attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigSomeRequest.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletassignmentconfigsomeresponse attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigSomeResponse.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletassignmentconfigstreamrequest attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigStreamRequest.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletassignmentconfigstreamresponse attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigStreamResponse.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletassignmentrequest attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentRequest.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletassignmentresponse attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentResponse.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletassignmentsomerequest attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentSomeRequest.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletassignmentsomeresponse attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentSomeResponse.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletassignmentstreamrequest attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentStreamRequest.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletassignmentstreamresponse attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentStreamResponse.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletbatchedstreamrequest attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletbatchedstreamresponse attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletconfigbatchedstreamrequest attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletConfigBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletconfigbatchedstreamresponse attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletConfigBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletconfigdeleteallrequest attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletConfigDeleteAllRequest.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletconfigdeleteallresponse attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletConfigDeleteAllResponse.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletconfigdeleterequest attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletConfigDeleteRequest.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletconfigdeleteresponse attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletConfigDeleteResponse.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletconfigdeletesomerequest attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletConfigDeleteSomeRequest.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletconfigdeletesomeresponse attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletConfigDeleteSomeResponse.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletconfigrequest attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletConfigRequest.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletconfigresponse attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletConfigResponse.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletconfigsetrequest attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletConfigSetRequest.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletconfigsetresponse attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletConfigSetResponse.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletconfigsetsomerequest attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletConfigSetSomeRequest.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletconfigsetsomeresponse attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletConfigSetSomeResponse.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletconfigsomerequest attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletConfigSomeRequest.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletconfigsomeresponse attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletConfigSomeResponse.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletconfigstreamrequest attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletConfigStreamRequest.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletconfigstreamresponse attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletConfigStreamResponse.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletrequest attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletRequest.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletresponse attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletResponse.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletsomerequest attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletSomeRequest.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletsomeresponse attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletSomeResponse.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletstreamrequest attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletStreamRequest.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.configletstreamresponse attribute)": [[12, "arista.configlet.v1.services.gen_pb2.ConfigletStreamResponse.DESCRIPTOR", false]], "descriptor (arista.configlet.v1.services.gen_pb2.metaresponse attribute)": [[12, "arista.configlet.v1.services.gen_pb2.MetaResponse.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.configstatus_pb2.configdiff attribute)": [[14, "arista.configstatus.v1.configstatus_pb2.ConfigDiff.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.configstatus_pb2.configdiffkey attribute)": [[14, "arista.configstatus.v1.configstatus_pb2.ConfigDiffKey.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.configstatus_pb2.configerror attribute)": [[14, "arista.configstatus.v1.configstatus_pb2.ConfigError.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.configstatus_pb2.configerrors attribute)": [[14, "arista.configstatus.v1.configstatus_pb2.ConfigErrors.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.configstatus_pb2.configkey attribute)": [[14, "arista.configstatus.v1.configstatus_pb2.ConfigKey.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.configstatus_pb2.configsource attribute)": [[14, "arista.configstatus.v1.configstatus_pb2.ConfigSource.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.configstatus_pb2.configsources attribute)": [[14, "arista.configstatus.v1.configstatus_pb2.ConfigSources.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.configstatus_pb2.configsummary attribute)": [[14, "arista.configstatus.v1.configstatus_pb2.ConfigSummary.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.configstatus_pb2.configuration attribute)": [[14, "arista.configstatus.v1.configstatus_pb2.Configuration.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.configstatus_pb2.diffentries attribute)": [[14, "arista.configstatus.v1.configstatus_pb2.DiffEntries.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.configstatus_pb2.diffentry attribute)": [[14, "arista.configstatus.v1.configstatus_pb2.DiffEntry.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.configstatus_pb2.securityprofile attribute)": [[14, "arista.configstatus.v1.configstatus_pb2.SecurityProfile.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.configstatus_pb2.securityprofilecompliancesummary attribute)": [[14, "arista.configstatus.v1.configstatus_pb2.SecurityProfileComplianceSummary.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.configstatus_pb2.securityprofilediff attribute)": [[14, "arista.configstatus.v1.configstatus_pb2.SecurityProfileDiff.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.configstatus_pb2.securityprofilediffsummary attribute)": [[14, "arista.configstatus.v1.configstatus_pb2.SecurityProfileDiffSummary.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.configstatus_pb2.summary attribute)": [[14, "arista.configstatus.v1.configstatus_pb2.Summary.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.configstatus_pb2.summarykey attribute)": [[14, "arista.configstatus.v1.configstatus_pb2.SummaryKey.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.configdiffbatchedstreamrequest attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.ConfigDiffBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.configdiffbatchedstreamresponse attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.ConfigDiffBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.configdiffrequest attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.ConfigDiffRequest.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.configdiffresponse attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.ConfigDiffResponse.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.configdiffsomerequest attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.ConfigDiffSomeRequest.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.configdiffsomeresponse attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.ConfigDiffSomeResponse.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.configdiffstreamrequest attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.ConfigDiffStreamRequest.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.configdiffstreamresponse attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.ConfigDiffStreamResponse.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.configurationbatchedstreamrequest attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.ConfigurationBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.configurationbatchedstreamresponse attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.ConfigurationBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.configurationrequest attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.ConfigurationRequest.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.configurationresponse attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.ConfigurationResponse.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.configurationsomerequest attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.ConfigurationSomeRequest.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.configurationsomeresponse attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.ConfigurationSomeResponse.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.configurationstreamrequest attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.ConfigurationStreamRequest.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.configurationstreamresponse attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.ConfigurationStreamResponse.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.metaresponse attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.MetaResponse.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.securityprofilebatchedstreamrequest attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.securityprofilebatchedstreamresponse attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.securityprofilediffbatchedstreamrequest attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.securityprofilediffbatchedstreamresponse attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.securityprofilediffrequest attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffRequest.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.securityprofilediffresponse attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffResponse.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.securityprofilediffsomerequest attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffSomeRequest.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.securityprofilediffsomeresponse attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffSomeResponse.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.securityprofilediffstreamrequest attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffStreamRequest.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.securityprofilediffstreamresponse attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffStreamResponse.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.securityprofilediffsummarybatchedstreamrequest attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffSummaryBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.securityprofilediffsummarybatchedstreamresponse attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffSummaryBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.securityprofilediffsummaryrequest attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffSummaryRequest.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.securityprofilediffsummaryresponse attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffSummaryResponse.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.securityprofilediffsummarysomerequest attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffSummarySomeRequest.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.securityprofilediffsummarysomeresponse attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffSummarySomeResponse.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.securityprofilediffsummarystreamrequest attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffSummaryStreamRequest.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.securityprofilediffsummarystreamresponse attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffSummaryStreamResponse.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.securityprofilerequest attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileRequest.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.securityprofileresponse attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileResponse.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.securityprofilesomerequest attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileSomeRequest.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.securityprofilesomeresponse attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileSomeResponse.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.securityprofilestreamrequest attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileStreamRequest.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.securityprofilestreamresponse attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileStreamResponse.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.summarybatchedstreamrequest attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.SummaryBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.summarybatchedstreamresponse attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.SummaryBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.summaryrequest attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.SummaryRequest.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.summaryresponse attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.SummaryResponse.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.summarysomerequest attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.SummarySomeRequest.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.summarysomeresponse attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.SummarySomeResponse.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.summarystreamrequest attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.SummaryStreamRequest.DESCRIPTOR", false]], "descriptor (arista.configstatus.v1.services.gen_pb2.summarystreamresponse attribute)": [[15, "arista.configstatus.v1.services.gen_pb2.SummaryStreamResponse.DESCRIPTOR", false]], "descriptor (arista.connectivitymonitor.v1.connectivitymonitor_pb2.probe attribute)": [[17, "arista.connectivitymonitor.v1.connectivitymonitor_pb2.Probe.DESCRIPTOR", false]], "descriptor (arista.connectivitymonitor.v1.connectivitymonitor_pb2.probekey attribute)": [[17, "arista.connectivitymonitor.v1.connectivitymonitor_pb2.ProbeKey.DESCRIPTOR", false]], "descriptor (arista.connectivitymonitor.v1.connectivitymonitor_pb2.probestats attribute)": [[17, "arista.connectivitymonitor.v1.connectivitymonitor_pb2.ProbeStats.DESCRIPTOR", false]], "descriptor (arista.connectivitymonitor.v1.connectivitymonitor_pb2.probestatskey attribute)": [[17, "arista.connectivitymonitor.v1.connectivitymonitor_pb2.ProbeStatsKey.DESCRIPTOR", false]], "descriptor (arista.connectivitymonitor.v1.services.gen_pb2.metaresponse attribute)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2.MetaResponse.DESCRIPTOR", false]], "descriptor (arista.connectivitymonitor.v1.services.gen_pb2.probebatchedstreamrequest attribute)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2.ProbeBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.connectivitymonitor.v1.services.gen_pb2.probebatchedstreamresponse attribute)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2.ProbeBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.connectivitymonitor.v1.services.gen_pb2.proberequest attribute)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2.ProbeRequest.DESCRIPTOR", false]], "descriptor (arista.connectivitymonitor.v1.services.gen_pb2.proberesponse attribute)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2.ProbeResponse.DESCRIPTOR", false]], "descriptor (arista.connectivitymonitor.v1.services.gen_pb2.probesomerequest attribute)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2.ProbeSomeRequest.DESCRIPTOR", false]], "descriptor (arista.connectivitymonitor.v1.services.gen_pb2.probesomeresponse attribute)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2.ProbeSomeResponse.DESCRIPTOR", false]], "descriptor (arista.connectivitymonitor.v1.services.gen_pb2.probestatsbatchedstreamrequest attribute)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2.ProbeStatsBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.connectivitymonitor.v1.services.gen_pb2.probestatsbatchedstreamresponse attribute)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2.ProbeStatsBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.connectivitymonitor.v1.services.gen_pb2.probestatsrequest attribute)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2.ProbeStatsRequest.DESCRIPTOR", false]], "descriptor (arista.connectivitymonitor.v1.services.gen_pb2.probestatsresponse attribute)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2.ProbeStatsResponse.DESCRIPTOR", false]], "descriptor (arista.connectivitymonitor.v1.services.gen_pb2.probestatssomerequest attribute)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2.ProbeStatsSomeRequest.DESCRIPTOR", false]], "descriptor (arista.connectivitymonitor.v1.services.gen_pb2.probestatssomeresponse attribute)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2.ProbeStatsSomeResponse.DESCRIPTOR", false]], "descriptor (arista.connectivitymonitor.v1.services.gen_pb2.probestatsstreamrequest attribute)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2.ProbeStatsStreamRequest.DESCRIPTOR", false]], "descriptor (arista.connectivitymonitor.v1.services.gen_pb2.probestatsstreamresponse attribute)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2.ProbeStatsStreamResponse.DESCRIPTOR", false]], "descriptor (arista.connectivitymonitor.v1.services.gen_pb2.probestreamrequest attribute)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2.ProbeStreamRequest.DESCRIPTOR", false]], "descriptor (arista.connectivitymonitor.v1.services.gen_pb2.probestreamresponse attribute)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2.ProbeStreamResponse.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.dashboard_pb2.dashboard attribute)": [[20, "arista.dashboard.v1.dashboard_pb2.Dashboard.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.dashboard_pb2.dashboardconfig attribute)": [[20, "arista.dashboard.v1.dashboard_pb2.DashboardConfig.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.dashboard_pb2.dashboardkey attribute)": [[20, "arista.dashboard.v1.dashboard_pb2.DashboardKey.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.dashboard_pb2.dashboardmetadata attribute)": [[20, "arista.dashboard.v1.dashboard_pb2.DashboardMetadata.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.dashboard_pb2.dimensions attribute)": [[20, "arista.dashboard.v1.dashboard_pb2.Dimensions.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.dashboard_pb2.filter attribute)": [[20, "arista.dashboard.v1.dashboard_pb2.Filter.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.dashboard_pb2.globaldashboardconfig attribute)": [[20, "arista.dashboard.v1.dashboard_pb2.GlobalDashboardConfig.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.dashboard_pb2.position attribute)": [[20, "arista.dashboard.v1.dashboard_pb2.Position.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.dashboard_pb2.widget attribute)": [[20, "arista.dashboard.v1.dashboard_pb2.Widget.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.dashboard_pb2.widgets attribute)": [[20, "arista.dashboard.v1.dashboard_pb2.Widgets.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.dashboard_pb2.widgetstyles attribute)": [[20, "arista.dashboard.v1.dashboard_pb2.WidgetStyles.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.services.gen_pb2.dashboardbatchedstreamrequest attribute)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.services.gen_pb2.dashboardbatchedstreamresponse attribute)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.services.gen_pb2.dashboardconfigbatchedstreamrequest attribute)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardConfigBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.services.gen_pb2.dashboardconfigbatchedstreamresponse attribute)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardConfigBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.services.gen_pb2.dashboardconfigdeleteallrequest attribute)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardConfigDeleteAllRequest.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.services.gen_pb2.dashboardconfigdeleteallresponse attribute)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardConfigDeleteAllResponse.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.services.gen_pb2.dashboardconfigdeleterequest attribute)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardConfigDeleteRequest.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.services.gen_pb2.dashboardconfigdeleteresponse attribute)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardConfigDeleteResponse.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.services.gen_pb2.dashboardconfigdeletesomerequest attribute)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardConfigDeleteSomeRequest.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.services.gen_pb2.dashboardconfigdeletesomeresponse attribute)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardConfigDeleteSomeResponse.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.services.gen_pb2.dashboardconfigrequest attribute)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardConfigRequest.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.services.gen_pb2.dashboardconfigresponse attribute)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardConfigResponse.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.services.gen_pb2.dashboardconfigsetrequest attribute)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardConfigSetRequest.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.services.gen_pb2.dashboardconfigsetresponse attribute)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardConfigSetResponse.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.services.gen_pb2.dashboardconfigsetsomerequest attribute)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardConfigSetSomeRequest.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.services.gen_pb2.dashboardconfigsetsomeresponse attribute)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardConfigSetSomeResponse.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.services.gen_pb2.dashboardconfigsomerequest attribute)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardConfigSomeRequest.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.services.gen_pb2.dashboardconfigsomeresponse attribute)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardConfigSomeResponse.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.services.gen_pb2.dashboardconfigstreamrequest attribute)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardConfigStreamRequest.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.services.gen_pb2.dashboardconfigstreamresponse attribute)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardConfigStreamResponse.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.services.gen_pb2.dashboardrequest attribute)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardRequest.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.services.gen_pb2.dashboardresponse attribute)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardResponse.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.services.gen_pb2.dashboardsomerequest attribute)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardSomeRequest.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.services.gen_pb2.dashboardsomeresponse attribute)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardSomeResponse.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.services.gen_pb2.dashboardstreamrequest attribute)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardStreamRequest.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.services.gen_pb2.dashboardstreamresponse attribute)": [[21, "arista.dashboard.v1.services.gen_pb2.DashboardStreamResponse.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.services.gen_pb2.globaldashboardconfigbatchedstreamrequest attribute)": [[21, "arista.dashboard.v1.services.gen_pb2.GlobalDashboardConfigBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.services.gen_pb2.globaldashboardconfigbatchedstreamresponse attribute)": [[21, "arista.dashboard.v1.services.gen_pb2.GlobalDashboardConfigBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.services.gen_pb2.globaldashboardconfigrequest attribute)": [[21, "arista.dashboard.v1.services.gen_pb2.GlobalDashboardConfigRequest.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.services.gen_pb2.globaldashboardconfigresponse attribute)": [[21, "arista.dashboard.v1.services.gen_pb2.GlobalDashboardConfigResponse.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.services.gen_pb2.globaldashboardconfigsetrequest attribute)": [[21, "arista.dashboard.v1.services.gen_pb2.GlobalDashboardConfigSetRequest.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.services.gen_pb2.globaldashboardconfigsetresponse attribute)": [[21, "arista.dashboard.v1.services.gen_pb2.GlobalDashboardConfigSetResponse.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.services.gen_pb2.globaldashboardconfigstreamrequest attribute)": [[21, "arista.dashboard.v1.services.gen_pb2.GlobalDashboardConfigStreamRequest.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.services.gen_pb2.globaldashboardconfigstreamresponse attribute)": [[21, "arista.dashboard.v1.services.gen_pb2.GlobalDashboardConfigStreamResponse.DESCRIPTOR", false]], "descriptor (arista.dashboard.v1.services.gen_pb2.metaresponse attribute)": [[21, "arista.dashboard.v1.services.gen_pb2.MetaResponse.DESCRIPTOR", false]], "descriptor (arista.endpointlocation.v1.endpointlocation_pb2.device attribute)": [[23, "arista.endpointlocation.v1.endpointlocation_pb2.Device.DESCRIPTOR", false]], "descriptor (arista.endpointlocation.v1.endpointlocation_pb2.deviceinfo attribute)": [[23, "arista.endpointlocation.v1.endpointlocation_pb2.DeviceInfo.DESCRIPTOR", false]], "descriptor (arista.endpointlocation.v1.endpointlocation_pb2.devicemap attribute)": [[23, "arista.endpointlocation.v1.endpointlocation_pb2.DeviceMap.DESCRIPTOR", false]], "descriptor (arista.endpointlocation.v1.endpointlocation_pb2.devicemap.valuesentry attribute)": [[23, "arista.endpointlocation.v1.endpointlocation_pb2.DeviceMap.ValuesEntry.DESCRIPTOR", false]], "descriptor (arista.endpointlocation.v1.endpointlocation_pb2.endpointlocation attribute)": [[23, "arista.endpointlocation.v1.endpointlocation_pb2.EndpointLocation.DESCRIPTOR", false]], "descriptor (arista.endpointlocation.v1.endpointlocation_pb2.endpointlocationkey attribute)": [[23, "arista.endpointlocation.v1.endpointlocation_pb2.EndpointLocationKey.DESCRIPTOR", false]], "descriptor (arista.endpointlocation.v1.endpointlocation_pb2.explanationlist attribute)": [[23, "arista.endpointlocation.v1.endpointlocation_pb2.ExplanationList.DESCRIPTOR", false]], "descriptor (arista.endpointlocation.v1.endpointlocation_pb2.identifier attribute)": [[23, "arista.endpointlocation.v1.endpointlocation_pb2.Identifier.DESCRIPTOR", false]], "descriptor (arista.endpointlocation.v1.endpointlocation_pb2.identifierlist attribute)": [[23, "arista.endpointlocation.v1.endpointlocation_pb2.IdentifierList.DESCRIPTOR", false]], "descriptor (arista.endpointlocation.v1.endpointlocation_pb2.identifiersourcelist attribute)": [[23, "arista.endpointlocation.v1.endpointlocation_pb2.IdentifierSourceList.DESCRIPTOR", false]], "descriptor (arista.endpointlocation.v1.endpointlocation_pb2.location attribute)": [[23, "arista.endpointlocation.v1.endpointlocation_pb2.Location.DESCRIPTOR", false]], "descriptor (arista.endpointlocation.v1.endpointlocation_pb2.locationlist attribute)": [[23, "arista.endpointlocation.v1.endpointlocation_pb2.LocationList.DESCRIPTOR", false]], "descriptor (arista.endpointlocation.v1.services.gen_pb2.endpointlocationbatchedstreamrequest attribute)": [[24, "arista.endpointlocation.v1.services.gen_pb2.EndpointLocationBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.endpointlocation.v1.services.gen_pb2.endpointlocationbatchedstreamresponse attribute)": [[24, "arista.endpointlocation.v1.services.gen_pb2.EndpointLocationBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.endpointlocation.v1.services.gen_pb2.endpointlocationrequest attribute)": [[24, "arista.endpointlocation.v1.services.gen_pb2.EndpointLocationRequest.DESCRIPTOR", false]], "descriptor (arista.endpointlocation.v1.services.gen_pb2.endpointlocationresponse attribute)": [[24, "arista.endpointlocation.v1.services.gen_pb2.EndpointLocationResponse.DESCRIPTOR", false]], "descriptor (arista.endpointlocation.v1.services.gen_pb2.endpointlocationsomerequest attribute)": [[24, "arista.endpointlocation.v1.services.gen_pb2.EndpointLocationSomeRequest.DESCRIPTOR", false]], "descriptor (arista.endpointlocation.v1.services.gen_pb2.endpointlocationsomeresponse attribute)": [[24, "arista.endpointlocation.v1.services.gen_pb2.EndpointLocationSomeResponse.DESCRIPTOR", false]], "descriptor (arista.endpointlocation.v1.services.gen_pb2.endpointlocationstreamrequest attribute)": [[24, "arista.endpointlocation.v1.services.gen_pb2.EndpointLocationStreamRequest.DESCRIPTOR", false]], "descriptor (arista.endpointlocation.v1.services.gen_pb2.endpointlocationstreamresponse attribute)": [[24, "arista.endpointlocation.v1.services.gen_pb2.EndpointLocationStreamResponse.DESCRIPTOR", false]], "descriptor (arista.endpointlocation.v1.services.gen_pb2.metaresponse attribute)": [[24, "arista.endpointlocation.v1.services.gen_pb2.MetaResponse.DESCRIPTOR", false]], "descriptor (arista.event.v1.event_pb2.event attribute)": [[26, "arista.event.v1.event_pb2.Event.DESCRIPTOR", false]], "descriptor (arista.event.v1.event_pb2.eventack attribute)": [[26, "arista.event.v1.event_pb2.EventAck.DESCRIPTOR", false]], "descriptor (arista.event.v1.event_pb2.eventannotationconfig attribute)": [[26, "arista.event.v1.event_pb2.EventAnnotationConfig.DESCRIPTOR", false]], "descriptor (arista.event.v1.event_pb2.eventcomponent attribute)": [[26, "arista.event.v1.event_pb2.EventComponent.DESCRIPTOR", false]], "descriptor (arista.event.v1.event_pb2.eventcomponent.componentsentry attribute)": [[26, "arista.event.v1.event_pb2.EventComponent.ComponentsEntry.DESCRIPTOR", false]], "descriptor (arista.event.v1.event_pb2.eventcomponents attribute)": [[26, "arista.event.v1.event_pb2.EventComponents.DESCRIPTOR", false]], "descriptor (arista.event.v1.event_pb2.eventdata attribute)": [[26, "arista.event.v1.event_pb2.EventData.DESCRIPTOR", false]], "descriptor (arista.event.v1.event_pb2.eventdata.dataentry attribute)": [[26, "arista.event.v1.event_pb2.EventData.DataEntry.DESCRIPTOR", false]], "descriptor (arista.event.v1.event_pb2.eventkey attribute)": [[26, "arista.event.v1.event_pb2.EventKey.DESCRIPTOR", false]], "descriptor (arista.event.v1.event_pb2.eventnote attribute)": [[26, "arista.event.v1.event_pb2.EventNote.DESCRIPTOR", false]], "descriptor (arista.event.v1.event_pb2.eventnoteconfig attribute)": [[26, "arista.event.v1.event_pb2.EventNoteConfig.DESCRIPTOR", false]], "descriptor (arista.event.v1.event_pb2.eventnotes attribute)": [[26, "arista.event.v1.event_pb2.EventNotes.DESCRIPTOR", false]], "descriptor (arista.event.v1.event_pb2.eventnotes.notesentry attribute)": [[26, "arista.event.v1.event_pb2.EventNotes.NotesEntry.DESCRIPTOR", false]], "descriptor (arista.event.v1.event_pb2.eventnotesconfig attribute)": [[26, "arista.event.v1.event_pb2.EventNotesConfig.DESCRIPTOR", false]], "descriptor (arista.event.v1.event_pb2.eventnotesconfig.notesentry attribute)": [[26, "arista.event.v1.event_pb2.EventNotesConfig.NotesEntry.DESCRIPTOR", false]], "descriptor (arista.event.v1.event_pb2.eventread attribute)": [[26, "arista.event.v1.event_pb2.EventRead.DESCRIPTOR", false]], "descriptor (arista.event.v1.event_pb2.usereventcreationconfig attribute)": [[26, "arista.event.v1.event_pb2.UserEventCreationConfig.DESCRIPTOR", false]], "descriptor (arista.event.v1.event_pb2.usereventcreationkey attribute)": [[26, "arista.event.v1.event_pb2.UserEventCreationKey.DESCRIPTOR", false]], "descriptor (arista.event.v1.services.gen_pb2.eventannotationconfigdeleteallrequest attribute)": [[27, "arista.event.v1.services.gen_pb2.EventAnnotationConfigDeleteAllRequest.DESCRIPTOR", false]], "descriptor (arista.event.v1.services.gen_pb2.eventannotationconfigdeleteallresponse attribute)": [[27, "arista.event.v1.services.gen_pb2.EventAnnotationConfigDeleteAllResponse.DESCRIPTOR", false]], "descriptor (arista.event.v1.services.gen_pb2.eventannotationconfigdeleterequest attribute)": [[27, "arista.event.v1.services.gen_pb2.EventAnnotationConfigDeleteRequest.DESCRIPTOR", false]], "descriptor (arista.event.v1.services.gen_pb2.eventannotationconfigdeleteresponse attribute)": [[27, "arista.event.v1.services.gen_pb2.EventAnnotationConfigDeleteResponse.DESCRIPTOR", false]], "descriptor (arista.event.v1.services.gen_pb2.eventannotationconfigdeletesomerequest attribute)": [[27, "arista.event.v1.services.gen_pb2.EventAnnotationConfigDeleteSomeRequest.DESCRIPTOR", false]], "descriptor (arista.event.v1.services.gen_pb2.eventannotationconfigdeletesomeresponse attribute)": [[27, "arista.event.v1.services.gen_pb2.EventAnnotationConfigDeleteSomeResponse.DESCRIPTOR", false]], "descriptor (arista.event.v1.services.gen_pb2.eventannotationconfigrequest attribute)": [[27, "arista.event.v1.services.gen_pb2.EventAnnotationConfigRequest.DESCRIPTOR", false]], "descriptor (arista.event.v1.services.gen_pb2.eventannotationconfigresponse attribute)": [[27, "arista.event.v1.services.gen_pb2.EventAnnotationConfigResponse.DESCRIPTOR", false]], "descriptor (arista.event.v1.services.gen_pb2.eventannotationconfigsetrequest attribute)": [[27, "arista.event.v1.services.gen_pb2.EventAnnotationConfigSetRequest.DESCRIPTOR", false]], "descriptor (arista.event.v1.services.gen_pb2.eventannotationconfigsetresponse attribute)": [[27, "arista.event.v1.services.gen_pb2.EventAnnotationConfigSetResponse.DESCRIPTOR", false]], "descriptor (arista.event.v1.services.gen_pb2.eventannotationconfigsetsomerequest attribute)": [[27, "arista.event.v1.services.gen_pb2.EventAnnotationConfigSetSomeRequest.DESCRIPTOR", false]], "descriptor (arista.event.v1.services.gen_pb2.eventannotationconfigsetsomeresponse attribute)": [[27, "arista.event.v1.services.gen_pb2.EventAnnotationConfigSetSomeResponse.DESCRIPTOR", false]], "descriptor (arista.event.v1.services.gen_pb2.eventannotationconfigsomerequest attribute)": [[27, "arista.event.v1.services.gen_pb2.EventAnnotationConfigSomeRequest.DESCRIPTOR", false]], "descriptor (arista.event.v1.services.gen_pb2.eventannotationconfigsomeresponse attribute)": [[27, "arista.event.v1.services.gen_pb2.EventAnnotationConfigSomeResponse.DESCRIPTOR", false]], "descriptor (arista.event.v1.services.gen_pb2.eventannotationconfigstreamrequest attribute)": [[27, "arista.event.v1.services.gen_pb2.EventAnnotationConfigStreamRequest.DESCRIPTOR", false]], "descriptor (arista.event.v1.services.gen_pb2.eventannotationconfigstreamresponse attribute)": [[27, "arista.event.v1.services.gen_pb2.EventAnnotationConfigStreamResponse.DESCRIPTOR", false]], "descriptor (arista.event.v1.services.gen_pb2.eventrequest attribute)": [[27, "arista.event.v1.services.gen_pb2.EventRequest.DESCRIPTOR", false]], "descriptor (arista.event.v1.services.gen_pb2.eventresponse attribute)": [[27, "arista.event.v1.services.gen_pb2.EventResponse.DESCRIPTOR", false]], "descriptor (arista.event.v1.services.gen_pb2.eventsomerequest attribute)": [[27, "arista.event.v1.services.gen_pb2.EventSomeRequest.DESCRIPTOR", false]], "descriptor (arista.event.v1.services.gen_pb2.eventsomeresponse attribute)": [[27, "arista.event.v1.services.gen_pb2.EventSomeResponse.DESCRIPTOR", false]], "descriptor (arista.event.v1.services.gen_pb2.eventstreamrequest attribute)": [[27, "arista.event.v1.services.gen_pb2.EventStreamRequest.DESCRIPTOR", false]], "descriptor (arista.event.v1.services.gen_pb2.eventstreamresponse attribute)": [[27, "arista.event.v1.services.gen_pb2.EventStreamResponse.DESCRIPTOR", false]], "descriptor (arista.event.v1.services.gen_pb2.metaresponse attribute)": [[27, "arista.event.v1.services.gen_pb2.MetaResponse.DESCRIPTOR", false]], "descriptor (arista.event.v1.services.gen_pb2.usereventcreationconfigdeleteallrequest attribute)": [[27, "arista.event.v1.services.gen_pb2.UserEventCreationConfigDeleteAllRequest.DESCRIPTOR", false]], "descriptor (arista.event.v1.services.gen_pb2.usereventcreationconfigdeleteallresponse attribute)": [[27, "arista.event.v1.services.gen_pb2.UserEventCreationConfigDeleteAllResponse.DESCRIPTOR", false]], "descriptor (arista.event.v1.services.gen_pb2.usereventcreationconfigdeleterequest attribute)": [[27, "arista.event.v1.services.gen_pb2.UserEventCreationConfigDeleteRequest.DESCRIPTOR", false]], "descriptor (arista.event.v1.services.gen_pb2.usereventcreationconfigdeleteresponse attribute)": [[27, "arista.event.v1.services.gen_pb2.UserEventCreationConfigDeleteResponse.DESCRIPTOR", false]], "descriptor (arista.event.v1.services.gen_pb2.usereventcreationconfigdeletesomerequest attribute)": [[27, "arista.event.v1.services.gen_pb2.UserEventCreationConfigDeleteSomeRequest.DESCRIPTOR", false]], "descriptor (arista.event.v1.services.gen_pb2.usereventcreationconfigdeletesomeresponse attribute)": [[27, "arista.event.v1.services.gen_pb2.UserEventCreationConfigDeleteSomeResponse.DESCRIPTOR", false]], "descriptor (arista.event.v1.services.gen_pb2.usereventcreationconfigrequest attribute)": [[27, "arista.event.v1.services.gen_pb2.UserEventCreationConfigRequest.DESCRIPTOR", false]], "descriptor (arista.event.v1.services.gen_pb2.usereventcreationconfigresponse attribute)": [[27, "arista.event.v1.services.gen_pb2.UserEventCreationConfigResponse.DESCRIPTOR", false]], "descriptor (arista.event.v1.services.gen_pb2.usereventcreationconfigsetrequest attribute)": [[27, "arista.event.v1.services.gen_pb2.UserEventCreationConfigSetRequest.DESCRIPTOR", false]], "descriptor (arista.event.v1.services.gen_pb2.usereventcreationconfigsetresponse attribute)": [[27, "arista.event.v1.services.gen_pb2.UserEventCreationConfigSetResponse.DESCRIPTOR", false]], "descriptor (arista.event.v1.services.gen_pb2.usereventcreationconfigsetsomerequest attribute)": [[27, "arista.event.v1.services.gen_pb2.UserEventCreationConfigSetSomeRequest.DESCRIPTOR", false]], "descriptor (arista.event.v1.services.gen_pb2.usereventcreationconfigsetsomeresponse attribute)": [[27, "arista.event.v1.services.gen_pb2.UserEventCreationConfigSetSomeResponse.DESCRIPTOR", false]], "descriptor (arista.event.v1.services.gen_pb2.usereventcreationconfigsomerequest attribute)": [[27, "arista.event.v1.services.gen_pb2.UserEventCreationConfigSomeRequest.DESCRIPTOR", false]], "descriptor (arista.event.v1.services.gen_pb2.usereventcreationconfigsomeresponse attribute)": [[27, "arista.event.v1.services.gen_pb2.UserEventCreationConfigSomeResponse.DESCRIPTOR", false]], "descriptor (arista.event.v1.services.gen_pb2.usereventcreationconfigstreamrequest attribute)": [[27, "arista.event.v1.services.gen_pb2.UserEventCreationConfigStreamRequest.DESCRIPTOR", false]], "descriptor (arista.event.v1.services.gen_pb2.usereventcreationconfigstreamresponse attribute)": [[27, "arista.event.v1.services.gen_pb2.UserEventCreationConfigStreamResponse.DESCRIPTOR", false]], "descriptor (arista.identityprovider.v1.identityprovider_pb2.oauthconfig attribute)": [[29, "arista.identityprovider.v1.identityprovider_pb2.OAuthConfig.DESCRIPTOR", false]], "descriptor (arista.identityprovider.v1.identityprovider_pb2.oauthkey attribute)": [[29, "arista.identityprovider.v1.identityprovider_pb2.OAuthKey.DESCRIPTOR", false]], "descriptor (arista.identityprovider.v1.identityprovider_pb2.samlconfig attribute)": [[29, "arista.identityprovider.v1.identityprovider_pb2.SAMLConfig.DESCRIPTOR", false]], "descriptor (arista.identityprovider.v1.identityprovider_pb2.samlkey attribute)": [[29, "arista.identityprovider.v1.identityprovider_pb2.SAMLKey.DESCRIPTOR", false]], "descriptor (arista.identityprovider.v1.services.gen_pb2.metaresponse attribute)": [[30, "arista.identityprovider.v1.services.gen_pb2.MetaResponse.DESCRIPTOR", false]], "descriptor (arista.identityprovider.v1.services.gen_pb2.oauthconfigbatchedstreamrequest attribute)": [[30, "arista.identityprovider.v1.services.gen_pb2.OAuthConfigBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.identityprovider.v1.services.gen_pb2.oauthconfigbatchedstreamresponse attribute)": [[30, "arista.identityprovider.v1.services.gen_pb2.OAuthConfigBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.identityprovider.v1.services.gen_pb2.oauthconfigdeleteallrequest attribute)": [[30, "arista.identityprovider.v1.services.gen_pb2.OAuthConfigDeleteAllRequest.DESCRIPTOR", false]], "descriptor (arista.identityprovider.v1.services.gen_pb2.oauthconfigdeleteallresponse attribute)": [[30, "arista.identityprovider.v1.services.gen_pb2.OAuthConfigDeleteAllResponse.DESCRIPTOR", false]], "descriptor (arista.identityprovider.v1.services.gen_pb2.oauthconfigdeleterequest attribute)": [[30, "arista.identityprovider.v1.services.gen_pb2.OAuthConfigDeleteRequest.DESCRIPTOR", false]], "descriptor (arista.identityprovider.v1.services.gen_pb2.oauthconfigdeleteresponse attribute)": [[30, "arista.identityprovider.v1.services.gen_pb2.OAuthConfigDeleteResponse.DESCRIPTOR", false]], "descriptor (arista.identityprovider.v1.services.gen_pb2.oauthconfigdeletesomerequest attribute)": [[30, "arista.identityprovider.v1.services.gen_pb2.OAuthConfigDeleteSomeRequest.DESCRIPTOR", false]], "descriptor (arista.identityprovider.v1.services.gen_pb2.oauthconfigdeletesomeresponse attribute)": [[30, "arista.identityprovider.v1.services.gen_pb2.OAuthConfigDeleteSomeResponse.DESCRIPTOR", false]], "descriptor (arista.identityprovider.v1.services.gen_pb2.oauthconfigrequest attribute)": [[30, "arista.identityprovider.v1.services.gen_pb2.OAuthConfigRequest.DESCRIPTOR", false]], "descriptor (arista.identityprovider.v1.services.gen_pb2.oauthconfigresponse attribute)": [[30, "arista.identityprovider.v1.services.gen_pb2.OAuthConfigResponse.DESCRIPTOR", false]], "descriptor (arista.identityprovider.v1.services.gen_pb2.oauthconfigsetrequest attribute)": [[30, "arista.identityprovider.v1.services.gen_pb2.OAuthConfigSetRequest.DESCRIPTOR", false]], "descriptor (arista.identityprovider.v1.services.gen_pb2.oauthconfigsetresponse attribute)": [[30, "arista.identityprovider.v1.services.gen_pb2.OAuthConfigSetResponse.DESCRIPTOR", false]], "descriptor (arista.identityprovider.v1.services.gen_pb2.oauthconfigsetsomerequest attribute)": [[30, "arista.identityprovider.v1.services.gen_pb2.OAuthConfigSetSomeRequest.DESCRIPTOR", false]], "descriptor (arista.identityprovider.v1.services.gen_pb2.oauthconfigsetsomeresponse attribute)": [[30, "arista.identityprovider.v1.services.gen_pb2.OAuthConfigSetSomeResponse.DESCRIPTOR", false]], "descriptor (arista.identityprovider.v1.services.gen_pb2.oauthconfigsomerequest attribute)": [[30, "arista.identityprovider.v1.services.gen_pb2.OAuthConfigSomeRequest.DESCRIPTOR", false]], "descriptor (arista.identityprovider.v1.services.gen_pb2.oauthconfigsomeresponse attribute)": [[30, "arista.identityprovider.v1.services.gen_pb2.OAuthConfigSomeResponse.DESCRIPTOR", false]], "descriptor (arista.identityprovider.v1.services.gen_pb2.oauthconfigstreamrequest attribute)": [[30, "arista.identityprovider.v1.services.gen_pb2.OAuthConfigStreamRequest.DESCRIPTOR", false]], "descriptor (arista.identityprovider.v1.services.gen_pb2.oauthconfigstreamresponse attribute)": [[30, "arista.identityprovider.v1.services.gen_pb2.OAuthConfigStreamResponse.DESCRIPTOR", false]], "descriptor (arista.identityprovider.v1.services.gen_pb2.samlconfigbatchedstreamrequest attribute)": [[30, "arista.identityprovider.v1.services.gen_pb2.SAMLConfigBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.identityprovider.v1.services.gen_pb2.samlconfigbatchedstreamresponse attribute)": [[30, "arista.identityprovider.v1.services.gen_pb2.SAMLConfigBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.identityprovider.v1.services.gen_pb2.samlconfigdeleteallrequest attribute)": [[30, "arista.identityprovider.v1.services.gen_pb2.SAMLConfigDeleteAllRequest.DESCRIPTOR", false]], "descriptor (arista.identityprovider.v1.services.gen_pb2.samlconfigdeleteallresponse attribute)": [[30, "arista.identityprovider.v1.services.gen_pb2.SAMLConfigDeleteAllResponse.DESCRIPTOR", false]], "descriptor (arista.identityprovider.v1.services.gen_pb2.samlconfigdeleterequest attribute)": [[30, "arista.identityprovider.v1.services.gen_pb2.SAMLConfigDeleteRequest.DESCRIPTOR", false]], "descriptor (arista.identityprovider.v1.services.gen_pb2.samlconfigdeleteresponse attribute)": [[30, "arista.identityprovider.v1.services.gen_pb2.SAMLConfigDeleteResponse.DESCRIPTOR", false]], "descriptor (arista.identityprovider.v1.services.gen_pb2.samlconfigdeletesomerequest attribute)": [[30, "arista.identityprovider.v1.services.gen_pb2.SAMLConfigDeleteSomeRequest.DESCRIPTOR", false]], "descriptor (arista.identityprovider.v1.services.gen_pb2.samlconfigdeletesomeresponse attribute)": [[30, "arista.identityprovider.v1.services.gen_pb2.SAMLConfigDeleteSomeResponse.DESCRIPTOR", false]], "descriptor (arista.identityprovider.v1.services.gen_pb2.samlconfigrequest attribute)": [[30, "arista.identityprovider.v1.services.gen_pb2.SAMLConfigRequest.DESCRIPTOR", false]], "descriptor (arista.identityprovider.v1.services.gen_pb2.samlconfigresponse attribute)": [[30, "arista.identityprovider.v1.services.gen_pb2.SAMLConfigResponse.DESCRIPTOR", false]], "descriptor (arista.identityprovider.v1.services.gen_pb2.samlconfigsetrequest attribute)": [[30, "arista.identityprovider.v1.services.gen_pb2.SAMLConfigSetRequest.DESCRIPTOR", false]], "descriptor (arista.identityprovider.v1.services.gen_pb2.samlconfigsetresponse attribute)": [[30, "arista.identityprovider.v1.services.gen_pb2.SAMLConfigSetResponse.DESCRIPTOR", false]], "descriptor (arista.identityprovider.v1.services.gen_pb2.samlconfigsetsomerequest attribute)": [[30, "arista.identityprovider.v1.services.gen_pb2.SAMLConfigSetSomeRequest.DESCRIPTOR", false]], "descriptor (arista.identityprovider.v1.services.gen_pb2.samlconfigsetsomeresponse attribute)": [[30, "arista.identityprovider.v1.services.gen_pb2.SAMLConfigSetSomeResponse.DESCRIPTOR", false]], "descriptor (arista.identityprovider.v1.services.gen_pb2.samlconfigsomerequest attribute)": [[30, "arista.identityprovider.v1.services.gen_pb2.SAMLConfigSomeRequest.DESCRIPTOR", false]], "descriptor (arista.identityprovider.v1.services.gen_pb2.samlconfigsomeresponse attribute)": [[30, "arista.identityprovider.v1.services.gen_pb2.SAMLConfigSomeResponse.DESCRIPTOR", false]], "descriptor (arista.identityprovider.v1.services.gen_pb2.samlconfigstreamrequest attribute)": [[30, "arista.identityprovider.v1.services.gen_pb2.SAMLConfigStreamRequest.DESCRIPTOR", false]], "descriptor (arista.identityprovider.v1.services.gen_pb2.samlconfigstreamresponse attribute)": [[30, "arista.identityprovider.v1.services.gen_pb2.SAMLConfigStreamResponse.DESCRIPTOR", false]], "descriptor (arista.imagestatus.v1.imagestatus_pb2.compliancestatus attribute)": [[32, "arista.imagestatus.v1.imagestatus_pb2.ComplianceStatus.DESCRIPTOR", false]], "descriptor (arista.imagestatus.v1.imagestatus_pb2.compliancestatusbysup attribute)": [[32, "arista.imagestatus.v1.imagestatus_pb2.ComplianceStatusBySup.DESCRIPTOR", false]], "descriptor (arista.imagestatus.v1.imagestatus_pb2.compliancestatusbysup.valuesentry attribute)": [[32, "arista.imagestatus.v1.imagestatus_pb2.ComplianceStatusBySup.ValuesEntry.DESCRIPTOR", false]], "descriptor (arista.imagestatus.v1.imagestatus_pb2.extension attribute)": [[32, "arista.imagestatus.v1.imagestatus_pb2.Extension.DESCRIPTOR", false]], "descriptor (arista.imagestatus.v1.imagestatus_pb2.extensiondiff attribute)": [[32, "arista.imagestatus.v1.imagestatus_pb2.ExtensionDiff.DESCRIPTOR", false]], "descriptor (arista.imagestatus.v1.imagestatus_pb2.extensiondiffs attribute)": [[32, "arista.imagestatus.v1.imagestatus_pb2.ExtensionDiffs.DESCRIPTOR", false]], "descriptor (arista.imagestatus.v1.imagestatus_pb2.extensiondiffsbysup attribute)": [[32, "arista.imagestatus.v1.imagestatus_pb2.ExtensionDiffsBySup.DESCRIPTOR", false]], "descriptor (arista.imagestatus.v1.imagestatus_pb2.extensiondiffsbysup.valuesentry attribute)": [[32, "arista.imagestatus.v1.imagestatus_pb2.ExtensionDiffsBySup.ValuesEntry.DESCRIPTOR", false]], "descriptor (arista.imagestatus.v1.imagestatus_pb2.extensions attribute)": [[32, "arista.imagestatus.v1.imagestatus_pb2.Extensions.DESCRIPTOR", false]], "descriptor (arista.imagestatus.v1.imagestatus_pb2.imageerror attribute)": [[32, "arista.imagestatus.v1.imagestatus_pb2.ImageError.DESCRIPTOR", false]], "descriptor (arista.imagestatus.v1.imagestatus_pb2.imageerrors attribute)": [[32, "arista.imagestatus.v1.imagestatus_pb2.ImageErrors.DESCRIPTOR", false]], "descriptor (arista.imagestatus.v1.imagestatus_pb2.imageinfo attribute)": [[32, "arista.imagestatus.v1.imagestatus_pb2.ImageInfo.DESCRIPTOR", false]], "descriptor (arista.imagestatus.v1.imagestatus_pb2.imageinfos attribute)": [[32, "arista.imagestatus.v1.imagestatus_pb2.ImageInfos.DESCRIPTOR", false]], "descriptor (arista.imagestatus.v1.imagestatus_pb2.imagemetadata attribute)": [[32, "arista.imagestatus.v1.imagestatus_pb2.ImageMetadata.DESCRIPTOR", false]], "descriptor (arista.imagestatus.v1.imagestatus_pb2.imagesummary attribute)": [[32, "arista.imagestatus.v1.imagestatus_pb2.ImageSummary.DESCRIPTOR", false]], "descriptor (arista.imagestatus.v1.imagestatus_pb2.imagewarning attribute)": [[32, "arista.imagestatus.v1.imagestatus_pb2.ImageWarning.DESCRIPTOR", false]], "descriptor (arista.imagestatus.v1.imagestatus_pb2.imagewarnings attribute)": [[32, "arista.imagestatus.v1.imagestatus_pb2.ImageWarnings.DESCRIPTOR", false]], "descriptor (arista.imagestatus.v1.imagestatus_pb2.rebootrequired attribute)": [[32, "arista.imagestatus.v1.imagestatus_pb2.RebootRequired.DESCRIPTOR", false]], "descriptor (arista.imagestatus.v1.imagestatus_pb2.softwareimage attribute)": [[32, "arista.imagestatus.v1.imagestatus_pb2.SoftwareImage.DESCRIPTOR", false]], "descriptor (arista.imagestatus.v1.imagestatus_pb2.softwareimagediff attribute)": [[32, "arista.imagestatus.v1.imagestatus_pb2.SoftwareImageDiff.DESCRIPTOR", false]], "descriptor (arista.imagestatus.v1.imagestatus_pb2.softwareimagediffsbysup attribute)": [[32, "arista.imagestatus.v1.imagestatus_pb2.SoftwareImageDiffsBySup.DESCRIPTOR", false]], "descriptor (arista.imagestatus.v1.imagestatus_pb2.softwareimagediffsbysup.valuesentry attribute)": [[32, "arista.imagestatus.v1.imagestatus_pb2.SoftwareImageDiffsBySup.ValuesEntry.DESCRIPTOR", false]], "descriptor (arista.imagestatus.v1.imagestatus_pb2.summary attribute)": [[32, "arista.imagestatus.v1.imagestatus_pb2.Summary.DESCRIPTOR", false]], "descriptor (arista.imagestatus.v1.imagestatus_pb2.summarykey attribute)": [[32, "arista.imagestatus.v1.imagestatus_pb2.SummaryKey.DESCRIPTOR", false]], "descriptor (arista.imagestatus.v1.imagestatus_pb2.terminattrdiffsbysup attribute)": [[32, "arista.imagestatus.v1.imagestatus_pb2.TerminAttrDiffsBySup.DESCRIPTOR", false]], "descriptor (arista.imagestatus.v1.imagestatus_pb2.terminattrdiffsbysup.valuesentry attribute)": [[32, "arista.imagestatus.v1.imagestatus_pb2.TerminAttrDiffsBySup.ValuesEntry.DESCRIPTOR", false]], "descriptor (arista.imagestatus.v1.services.gen_pb2.metaresponse attribute)": [[33, "arista.imagestatus.v1.services.gen_pb2.MetaResponse.DESCRIPTOR", false]], "descriptor (arista.imagestatus.v1.services.gen_pb2.summarybatchedstreamrequest attribute)": [[33, "arista.imagestatus.v1.services.gen_pb2.SummaryBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.imagestatus.v1.services.gen_pb2.summarybatchedstreamresponse attribute)": [[33, "arista.imagestatus.v1.services.gen_pb2.SummaryBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.imagestatus.v1.services.gen_pb2.summaryrequest attribute)": [[33, "arista.imagestatus.v1.services.gen_pb2.SummaryRequest.DESCRIPTOR", false]], "descriptor (arista.imagestatus.v1.services.gen_pb2.summaryresponse attribute)": [[33, "arista.imagestatus.v1.services.gen_pb2.SummaryResponse.DESCRIPTOR", false]], "descriptor (arista.imagestatus.v1.services.gen_pb2.summarysomerequest attribute)": [[33, "arista.imagestatus.v1.services.gen_pb2.SummarySomeRequest.DESCRIPTOR", false]], "descriptor (arista.imagestatus.v1.services.gen_pb2.summarysomeresponse attribute)": [[33, "arista.imagestatus.v1.services.gen_pb2.SummarySomeResponse.DESCRIPTOR", false]], "descriptor (arista.imagestatus.v1.services.gen_pb2.summarystreamrequest attribute)": [[33, "arista.imagestatus.v1.services.gen_pb2.SummaryStreamRequest.DESCRIPTOR", false]], "descriptor (arista.imagestatus.v1.services.gen_pb2.summarystreamresponse attribute)": [[33, "arista.imagestatus.v1.services.gen_pb2.SummaryStreamResponse.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.inventory_pb2.device attribute)": [[35, "arista.inventory.v1.inventory_pb2.Device.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.inventory_pb2.deviceconfiguration attribute)": [[35, "arista.inventory.v1.inventory_pb2.DeviceConfiguration.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.inventory_pb2.deviceconfiguration.optionsentry attribute)": [[35, "arista.inventory.v1.inventory_pb2.DeviceConfiguration.OptionsEntry.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.inventory_pb2.devicedecommissioning attribute)": [[35, "arista.inventory.v1.inventory_pb2.DeviceDecommissioning.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.inventory_pb2.devicedecommissioningconfig attribute)": [[35, "arista.inventory.v1.inventory_pb2.DeviceDecommissioningConfig.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.inventory_pb2.devicekey attribute)": [[35, "arista.inventory.v1.inventory_pb2.DeviceKey.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.inventory_pb2.deviceonboarding attribute)": [[35, "arista.inventory.v1.inventory_pb2.DeviceOnboarding.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.inventory_pb2.deviceonboardingconfig attribute)": [[35, "arista.inventory.v1.inventory_pb2.DeviceOnboardingConfig.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.inventory_pb2.extendedattributes attribute)": [[35, "arista.inventory.v1.inventory_pb2.ExtendedAttributes.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.inventory_pb2.extendedattributes.featureenabledentry attribute)": [[35, "arista.inventory.v1.inventory_pb2.ExtendedAttributes.FeatureEnabledEntry.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.inventory_pb2.provisioneddevice attribute)": [[35, "arista.inventory.v1.inventory_pb2.ProvisionedDevice.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.inventory_pb2.uuidkey attribute)": [[35, "arista.inventory.v1.inventory_pb2.UUIDKey.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.devicebatchedstreamrequest attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.devicebatchedstreamresponse attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.devicedecommissioningbatchedstreamrequest attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.devicedecommissioningbatchedstreamresponse attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.devicedecommissioningconfigbatchedstreamrequest attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.devicedecommissioningconfigbatchedstreamresponse attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.devicedecommissioningconfigdeleteallrequest attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigDeleteAllRequest.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.devicedecommissioningconfigdeleteallresponse attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigDeleteAllResponse.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.devicedecommissioningconfigdeleterequest attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigDeleteRequest.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.devicedecommissioningconfigdeleteresponse attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigDeleteResponse.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.devicedecommissioningconfigdeletesomerequest attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigDeleteSomeRequest.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.devicedecommissioningconfigdeletesomeresponse attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigDeleteSomeResponse.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.devicedecommissioningconfigrequest attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigRequest.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.devicedecommissioningconfigresponse attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigResponse.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.devicedecommissioningconfigsetrequest attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigSetRequest.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.devicedecommissioningconfigsetresponse attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigSetResponse.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.devicedecommissioningconfigsetsomerequest attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigSetSomeRequest.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.devicedecommissioningconfigsetsomeresponse attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigSetSomeResponse.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.devicedecommissioningconfigsomerequest attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigSomeRequest.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.devicedecommissioningconfigsomeresponse attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigSomeResponse.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.devicedecommissioningconfigstreamrequest attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigStreamRequest.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.devicedecommissioningconfigstreamresponse attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigStreamResponse.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.devicedecommissioningrequest attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningRequest.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.devicedecommissioningresponse attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningResponse.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.devicedecommissioningsomerequest attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningSomeRequest.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.devicedecommissioningsomeresponse attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningSomeResponse.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.devicedecommissioningstreamrequest attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningStreamRequest.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.devicedecommissioningstreamresponse attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningStreamResponse.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.deviceonboardingbatchedstreamrequest attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.deviceonboardingbatchedstreamresponse attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.deviceonboardingconfigbatchedstreamrequest attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.deviceonboardingconfigbatchedstreamresponse attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.deviceonboardingconfigdeleteallrequest attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigDeleteAllRequest.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.deviceonboardingconfigdeleteallresponse attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigDeleteAllResponse.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.deviceonboardingconfigdeleterequest attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigDeleteRequest.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.deviceonboardingconfigdeleteresponse attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigDeleteResponse.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.deviceonboardingconfigdeletesomerequest attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigDeleteSomeRequest.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.deviceonboardingconfigdeletesomeresponse attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigDeleteSomeResponse.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.deviceonboardingconfigrequest attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigRequest.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.deviceonboardingconfigresponse attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigResponse.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.deviceonboardingconfigsetrequest attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigSetRequest.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.deviceonboardingconfigsetresponse attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigSetResponse.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.deviceonboardingconfigsetsomerequest attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigSetSomeRequest.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.deviceonboardingconfigsetsomeresponse attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigSetSomeResponse.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.deviceonboardingconfigsomerequest attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigSomeRequest.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.deviceonboardingconfigsomeresponse attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigSomeResponse.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.deviceonboardingconfigstreamrequest attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigStreamRequest.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.deviceonboardingconfigstreamresponse attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigStreamResponse.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.deviceonboardingrequest attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingRequest.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.deviceonboardingresponse attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingResponse.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.deviceonboardingsomerequest attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingSomeRequest.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.deviceonboardingsomeresponse attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingSomeResponse.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.deviceonboardingstreamrequest attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingStreamRequest.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.deviceonboardingstreamresponse attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingStreamResponse.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.devicerequest attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceRequest.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.deviceresponse attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceResponse.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.devicesomerequest attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceSomeRequest.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.devicesomeresponse attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceSomeResponse.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.devicestreamrequest attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceStreamRequest.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.devicestreamresponse attribute)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceStreamResponse.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.metaresponse attribute)": [[36, "arista.inventory.v1.services.gen_pb2.MetaResponse.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.provisioneddevicebatchedstreamrequest attribute)": [[36, "arista.inventory.v1.services.gen_pb2.ProvisionedDeviceBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.provisioneddevicebatchedstreamresponse attribute)": [[36, "arista.inventory.v1.services.gen_pb2.ProvisionedDeviceBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.provisioneddevicerequest attribute)": [[36, "arista.inventory.v1.services.gen_pb2.ProvisionedDeviceRequest.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.provisioneddeviceresponse attribute)": [[36, "arista.inventory.v1.services.gen_pb2.ProvisionedDeviceResponse.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.provisioneddevicesomerequest attribute)": [[36, "arista.inventory.v1.services.gen_pb2.ProvisionedDeviceSomeRequest.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.provisioneddevicesomeresponse attribute)": [[36, "arista.inventory.v1.services.gen_pb2.ProvisionedDeviceSomeResponse.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.provisioneddevicestreamrequest attribute)": [[36, "arista.inventory.v1.services.gen_pb2.ProvisionedDeviceStreamRequest.DESCRIPTOR", false]], "descriptor (arista.inventory.v1.services.gen_pb2.provisioneddevicestreamresponse attribute)": [[36, "arista.inventory.v1.services.gen_pb2.ProvisionedDeviceStreamResponse.DESCRIPTOR", false]], "descriptor (arista.lifecycle.v1.lifecycle_pb2.dateandmodels attribute)": [[38, "arista.lifecycle.v1.lifecycle_pb2.DateAndModels.DESCRIPTOR", false]], "descriptor (arista.lifecycle.v1.lifecycle_pb2.devicelifecyclesummary attribute)": [[38, "arista.lifecycle.v1.lifecycle_pb2.DeviceLifecycleSummary.DESCRIPTOR", false]], "descriptor (arista.lifecycle.v1.lifecycle_pb2.devicelifecyclesummarykey attribute)": [[38, "arista.lifecycle.v1.lifecycle_pb2.DeviceLifecycleSummaryKey.DESCRIPTOR", false]], "descriptor (arista.lifecycle.v1.lifecycle_pb2.hardwarelifecyclesummary attribute)": [[38, "arista.lifecycle.v1.lifecycle_pb2.HardwareLifecycleSummary.DESCRIPTOR", false]], "descriptor (arista.lifecycle.v1.lifecycle_pb2.softwareeol attribute)": [[38, "arista.lifecycle.v1.lifecycle_pb2.SoftwareEOL.DESCRIPTOR", false]], "descriptor (arista.lifecycle.v1.services.gen_pb2.devicelifecyclesummaryrequest attribute)": [[39, "arista.lifecycle.v1.services.gen_pb2.DeviceLifecycleSummaryRequest.DESCRIPTOR", false]], "descriptor (arista.lifecycle.v1.services.gen_pb2.devicelifecyclesummaryresponse attribute)": [[39, "arista.lifecycle.v1.services.gen_pb2.DeviceLifecycleSummaryResponse.DESCRIPTOR", false]], "descriptor (arista.lifecycle.v1.services.gen_pb2.devicelifecyclesummarystreamrequest attribute)": [[39, "arista.lifecycle.v1.services.gen_pb2.DeviceLifecycleSummaryStreamRequest.DESCRIPTOR", false]], "descriptor (arista.lifecycle.v1.services.gen_pb2.devicelifecyclesummarystreamresponse attribute)": [[39, "arista.lifecycle.v1.services.gen_pb2.DeviceLifecycleSummaryStreamResponse.DESCRIPTOR", false]], "descriptor (arista.lifecycle.v1.services.gen_pb2.metaresponse attribute)": [[39, "arista.lifecycle.v1.services.gen_pb2.MetaResponse.DESCRIPTOR", false]], "descriptor (arista.redirector.v1.redirector_pb2.assignment attribute)": [[41, "arista.redirector.v1.redirector_pb2.Assignment.DESCRIPTOR", false]], "descriptor (arista.redirector.v1.redirector_pb2.assignmentkey attribute)": [[41, "arista.redirector.v1.redirector_pb2.AssignmentKey.DESCRIPTOR", false]], "descriptor (arista.redirector.v1.redirector_pb2.cluster attribute)": [[41, "arista.redirector.v1.redirector_pb2.Cluster.DESCRIPTOR", false]], "descriptor (arista.redirector.v1.redirector_pb2.clusters attribute)": [[41, "arista.redirector.v1.redirector_pb2.Clusters.DESCRIPTOR", false]], "descriptor (arista.redirector.v1.services.gen_pb2.assignmentbatchedstreamrequest attribute)": [[42, "arista.redirector.v1.services.gen_pb2.AssignmentBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.redirector.v1.services.gen_pb2.assignmentbatchedstreamresponse attribute)": [[42, "arista.redirector.v1.services.gen_pb2.AssignmentBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.redirector.v1.services.gen_pb2.assignmentrequest attribute)": [[42, "arista.redirector.v1.services.gen_pb2.AssignmentRequest.DESCRIPTOR", false]], "descriptor (arista.redirector.v1.services.gen_pb2.assignmentresponse attribute)": [[42, "arista.redirector.v1.services.gen_pb2.AssignmentResponse.DESCRIPTOR", false]], "descriptor (arista.redirector.v1.services.gen_pb2.assignmentsomerequest attribute)": [[42, "arista.redirector.v1.services.gen_pb2.AssignmentSomeRequest.DESCRIPTOR", false]], "descriptor (arista.redirector.v1.services.gen_pb2.assignmentsomeresponse attribute)": [[42, "arista.redirector.v1.services.gen_pb2.AssignmentSomeResponse.DESCRIPTOR", false]], "descriptor (arista.redirector.v1.services.gen_pb2.assignmentstreamrequest attribute)": [[42, "arista.redirector.v1.services.gen_pb2.AssignmentStreamRequest.DESCRIPTOR", false]], "descriptor (arista.redirector.v1.services.gen_pb2.assignmentstreamresponse attribute)": [[42, "arista.redirector.v1.services.gen_pb2.AssignmentStreamResponse.DESCRIPTOR", false]], "descriptor (arista.redirector.v1.services.gen_pb2.metaresponse attribute)": [[42, "arista.redirector.v1.services.gen_pb2.MetaResponse.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.serviceaccount_pb2.account attribute)": [[44, "arista.serviceaccount.v1.serviceaccount_pb2.Account.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.serviceaccount_pb2.accountconfig attribute)": [[44, "arista.serviceaccount.v1.serviceaccount_pb2.AccountConfig.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.serviceaccount_pb2.accountkey attribute)": [[44, "arista.serviceaccount.v1.serviceaccount_pb2.AccountKey.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.serviceaccount_pb2.token attribute)": [[44, "arista.serviceaccount.v1.serviceaccount_pb2.Token.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.serviceaccount_pb2.tokenconfig attribute)": [[44, "arista.serviceaccount.v1.serviceaccount_pb2.TokenConfig.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.serviceaccount_pb2.tokenkey attribute)": [[44, "arista.serviceaccount.v1.serviceaccount_pb2.TokenKey.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.accountconfigdeleteallrequest attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.AccountConfigDeleteAllRequest.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.accountconfigdeleteallresponse attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.AccountConfigDeleteAllResponse.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.accountconfigdeleterequest attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.AccountConfigDeleteRequest.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.accountconfigdeleteresponse attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.AccountConfigDeleteResponse.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.accountconfigdeletesomerequest attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.AccountConfigDeleteSomeRequest.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.accountconfigdeletesomeresponse attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.AccountConfigDeleteSomeResponse.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.accountconfigrequest attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.AccountConfigRequest.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.accountconfigresponse attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.AccountConfigResponse.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.accountconfigsetrequest attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.AccountConfigSetRequest.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.accountconfigsetresponse attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.AccountConfigSetResponse.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.accountconfigsetsomerequest attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.AccountConfigSetSomeRequest.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.accountconfigsetsomeresponse attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.AccountConfigSetSomeResponse.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.accountconfigsomerequest attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.AccountConfigSomeRequest.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.accountconfigsomeresponse attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.AccountConfigSomeResponse.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.accountconfigstreamrequest attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.AccountConfigStreamRequest.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.accountconfigstreamresponse attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.AccountConfigStreamResponse.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.accountrequest attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.AccountRequest.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.accountresponse attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.AccountResponse.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.accountsomerequest attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.AccountSomeRequest.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.accountsomeresponse attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.AccountSomeResponse.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.accountstreamrequest attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.AccountStreamRequest.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.accountstreamresponse attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.AccountStreamResponse.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.metaresponse attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.MetaResponse.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.tokenconfigdeleteallrequest attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.TokenConfigDeleteAllRequest.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.tokenconfigdeleteallresponse attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.TokenConfigDeleteAllResponse.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.tokenconfigdeleterequest attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.TokenConfigDeleteRequest.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.tokenconfigdeleteresponse attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.TokenConfigDeleteResponse.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.tokenconfigdeletesomerequest attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.TokenConfigDeleteSomeRequest.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.tokenconfigdeletesomeresponse attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.TokenConfigDeleteSomeResponse.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.tokenconfigrequest attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.TokenConfigRequest.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.tokenconfigresponse attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.TokenConfigResponse.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.tokenconfigsetrequest attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.TokenConfigSetRequest.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.tokenconfigsetresponse attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.TokenConfigSetResponse.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.tokenconfigsetsomerequest attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.TokenConfigSetSomeRequest.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.tokenconfigsetsomeresponse attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.TokenConfigSetSomeResponse.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.tokenconfigsomerequest attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.TokenConfigSomeRequest.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.tokenconfigsomeresponse attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.TokenConfigSomeResponse.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.tokenconfigstreamrequest attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.TokenConfigStreamRequest.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.tokenconfigstreamresponse attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.TokenConfigStreamResponse.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.tokenrequest attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.TokenRequest.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.tokenresponse attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.TokenResponse.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.tokensomerequest attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.TokenSomeRequest.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.tokensomeresponse attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.TokenSomeResponse.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.tokenstreamrequest attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.TokenStreamRequest.DESCRIPTOR", false]], "descriptor (arista.serviceaccount.v1.services.gen_pb2.tokenstreamresponse attribute)": [[45, "arista.serviceaccount.v1.services.gen_pb2.TokenStreamResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.assignedtagsbatchedstreamrequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.assignedtagsbatchedstreamresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.assignedtagsconfigbatchedstreamrequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsConfigBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.assignedtagsconfigbatchedstreamresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsConfigBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.assignedtagsconfigdeleteallrequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsConfigDeleteAllRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.assignedtagsconfigdeleteallresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsConfigDeleteAllResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.assignedtagsconfigdeleterequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsConfigDeleteRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.assignedtagsconfigdeleteresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsConfigDeleteResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.assignedtagsconfigdeletesomerequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsConfigDeleteSomeRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.assignedtagsconfigdeletesomeresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsConfigDeleteSomeResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.assignedtagsconfigrequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsConfigRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.assignedtagsconfigresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsConfigResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.assignedtagsconfigsetrequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsConfigSetRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.assignedtagsconfigsetresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsConfigSetResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.assignedtagsconfigsetsomerequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsConfigSetSomeRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.assignedtagsconfigsetsomeresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsConfigSetSomeResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.assignedtagsconfigsomerequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsConfigSomeRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.assignedtagsconfigsomeresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsConfigSomeResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.assignedtagsconfigstreamrequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsConfigStreamRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.assignedtagsconfigstreamresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsConfigStreamResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.assignedtagsrequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.assignedtagsresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.assignedtagssomerequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsSomeRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.assignedtagssomeresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsSomeResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.assignedtagsstreamrequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsStreamRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.assignedtagsstreamresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.AssignedTagsStreamResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.autofillactionbatchedstreamrequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.autofillactionbatchedstreamresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.autofillactionconfigbatchedstreamrequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionConfigBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.autofillactionconfigbatchedstreamresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionConfigBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.autofillactionconfigdeleteallrequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionConfigDeleteAllRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.autofillactionconfigdeleteallresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionConfigDeleteAllResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.autofillactionconfigdeleterequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionConfigDeleteRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.autofillactionconfigdeleteresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionConfigDeleteResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.autofillactionconfigdeletesomerequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionConfigDeleteSomeRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.autofillactionconfigdeletesomeresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionConfigDeleteSomeResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.autofillactionconfigrequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionConfigRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.autofillactionconfigresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionConfigResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.autofillactionconfigsetrequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionConfigSetRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.autofillactionconfigsetresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionConfigSetResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.autofillactionconfigsetsomerequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionConfigSetSomeRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.autofillactionconfigsetsomeresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionConfigSetSomeResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.autofillactionconfigsomerequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionConfigSomeRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.autofillactionconfigsomeresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionConfigSomeResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.autofillactionconfigstreamrequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionConfigStreamRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.autofillactionconfigstreamresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionConfigStreamResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.autofillactionrequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.autofillactionresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.autofillactionsomerequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionSomeRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.autofillactionsomeresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionSomeResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.autofillactionstreamrequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionStreamRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.autofillactionstreamresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.AutofillActionStreamResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.inputsbatchedstreamrequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.InputsBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.inputsbatchedstreamresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.InputsBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.inputsconfigbatchedstreamrequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.InputsConfigBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.inputsconfigbatchedstreamresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.InputsConfigBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.inputsconfigdeleteallrequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.InputsConfigDeleteAllRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.inputsconfigdeleteallresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.InputsConfigDeleteAllResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.inputsconfigdeleterequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.InputsConfigDeleteRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.inputsconfigdeleteresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.InputsConfigDeleteResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.inputsconfigdeletesomerequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.InputsConfigDeleteSomeRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.inputsconfigdeletesomeresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.InputsConfigDeleteSomeResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.inputsconfigrequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.InputsConfigRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.inputsconfigresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.InputsConfigResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.inputsconfigsetrequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.InputsConfigSetRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.inputsconfigsetresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.InputsConfigSetResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.inputsconfigsetsomerequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.InputsConfigSetSomeRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.inputsconfigsetsomeresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.InputsConfigSetSomeResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.inputsconfigsomerequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.InputsConfigSomeRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.inputsconfigsomeresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.InputsConfigSomeResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.inputsconfigstreamrequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.InputsConfigStreamRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.inputsconfigstreamresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.InputsConfigStreamResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.inputsrequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.InputsRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.inputsresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.InputsResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.inputssomerequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.InputsSomeRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.inputssomeresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.InputsSomeResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.inputsstreamrequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.InputsStreamRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.inputsstreamresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.InputsStreamResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.metaresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.MetaResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.secretinputbatchedstreamrequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.SecretInputBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.secretinputbatchedstreamresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.SecretInputBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.secretinputrequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.SecretInputRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.secretinputresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.SecretInputResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.secretinputsomerequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.SecretInputSomeRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.secretinputsomeresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.SecretInputSomeResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.secretinputstreamrequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.SecretInputStreamRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.secretinputstreamresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.SecretInputStreamResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.studiobatchedstreamrequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.StudioBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.studiobatchedstreamresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.StudioBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.studioconfigbatchedstreamrequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.StudioConfigBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.studioconfigbatchedstreamresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.StudioConfigBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.studioconfigdeleteallrequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.StudioConfigDeleteAllRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.studioconfigdeleteallresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.StudioConfigDeleteAllResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.studioconfigdeleterequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.StudioConfigDeleteRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.studioconfigdeleteresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.StudioConfigDeleteResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.studioconfigdeletesomerequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.StudioConfigDeleteSomeRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.studioconfigdeletesomeresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.StudioConfigDeleteSomeResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.studioconfigrequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.StudioConfigRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.studioconfigresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.StudioConfigResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.studioconfigsetrequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.StudioConfigSetRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.studioconfigsetresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.StudioConfigSetResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.studioconfigsetsomerequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.StudioConfigSetSomeRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.studioconfigsetsomeresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.StudioConfigSetSomeResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.studioconfigsomerequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.StudioConfigSomeRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.studioconfigsomeresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.StudioConfigSomeResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.studioconfigstreamrequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.StudioConfigStreamRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.studioconfigstreamresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.StudioConfigStreamResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.studiorequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.StudioRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.studioresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.StudioResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.studiosomerequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.StudioSomeRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.studiosomeresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.StudioSomeResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.studiostreamrequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.StudioStreamRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.studiostreamresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.StudioStreamResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.studiosummarybatchedstreamrequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.StudioSummaryBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.studiosummarybatchedstreamresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.StudioSummaryBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.studiosummaryrequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.StudioSummaryRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.studiosummaryresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.StudioSummaryResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.studiosummarysomerequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.StudioSummarySomeRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.studiosummarysomeresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.StudioSummarySomeResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.studiosummarystreamrequest attribute)": [[48, "arista.studio.v1.services.gen_pb2.StudioSummaryStreamRequest.DESCRIPTOR", false]], "descriptor (arista.studio.v1.services.gen_pb2.studiosummarystreamresponse attribute)": [[48, "arista.studio.v1.services.gen_pb2.StudioSummaryStreamResponse.DESCRIPTOR", false]], "descriptor (arista.studio.v1.studio_pb2.assignedtags attribute)": [[47, "arista.studio.v1.studio_pb2.AssignedTags.DESCRIPTOR", false]], "descriptor (arista.studio.v1.studio_pb2.assignedtagsconfig attribute)": [[47, "arista.studio.v1.studio_pb2.AssignedTagsConfig.DESCRIPTOR", false]], "descriptor (arista.studio.v1.studio_pb2.autofillaction attribute)": [[47, "arista.studio.v1.studio_pb2.AutofillAction.DESCRIPTOR", false]], "descriptor (arista.studio.v1.studio_pb2.autofillactionconfig attribute)": [[47, "arista.studio.v1.studio_pb2.AutofillActionConfig.DESCRIPTOR", false]], "descriptor (arista.studio.v1.studio_pb2.autofillactionkey attribute)": [[47, "arista.studio.v1.studio_pb2.AutofillActionKey.DESCRIPTOR", false]], "descriptor (arista.studio.v1.studio_pb2.autofillargumentprovider attribute)": [[47, "arista.studio.v1.studio_pb2.AutofillArgumentProvider.DESCRIPTOR", false]], "descriptor (arista.studio.v1.studio_pb2.autofillargumentproviders attribute)": [[47, "arista.studio.v1.studio_pb2.AutofillArgumentProviders.DESCRIPTOR", false]], "descriptor (arista.studio.v1.studio_pb2.autofillargumentproviders.valuesentry attribute)": [[47, "arista.studio.v1.studio_pb2.AutofillArgumentProviders.ValuesEntry.DESCRIPTOR", false]], "descriptor (arista.studio.v1.studio_pb2.booleaninputfieldprops attribute)": [[47, "arista.studio.v1.studio_pb2.BooleanInputFieldProps.DESCRIPTOR", false]], "descriptor (arista.studio.v1.studio_pb2.collectioninputfieldprops attribute)": [[47, "arista.studio.v1.studio_pb2.CollectionInputFieldProps.DESCRIPTOR", false]], "descriptor (arista.studio.v1.studio_pb2.entities attribute)": [[47, "arista.studio.v1.studio_pb2.Entities.DESCRIPTOR", false]], "descriptor (arista.studio.v1.studio_pb2.entities.valuesentry attribute)": [[47, "arista.studio.v1.studio_pb2.Entities.ValuesEntry.DESCRIPTOR", false]], "descriptor (arista.studio.v1.studio_pb2.entity attribute)": [[47, "arista.studio.v1.studio_pb2.Entity.DESCRIPTOR", false]], "descriptor (arista.studio.v1.studio_pb2.floatinputfieldprops attribute)": [[47, "arista.studio.v1.studio_pb2.FloatInputFieldProps.DESCRIPTOR", false]], "descriptor (arista.studio.v1.studio_pb2.groupinputfieldprops attribute)": [[47, "arista.studio.v1.studio_pb2.GroupInputFieldProps.DESCRIPTOR", false]], "descriptor (arista.studio.v1.studio_pb2.inputfield attribute)": [[47, "arista.studio.v1.studio_pb2.InputField.DESCRIPTOR", false]], "descriptor (arista.studio.v1.studio_pb2.inputfields attribute)": [[47, "arista.studio.v1.studio_pb2.InputFields.DESCRIPTOR", false]], "descriptor (arista.studio.v1.studio_pb2.inputfields.valuesentry attribute)": [[47, "arista.studio.v1.studio_pb2.InputFields.ValuesEntry.DESCRIPTOR", false]], "descriptor (arista.studio.v1.studio_pb2.inputs attribute)": [[47, "arista.studio.v1.studio_pb2.Inputs.DESCRIPTOR", false]], "descriptor (arista.studio.v1.studio_pb2.inputschema attribute)": [[47, "arista.studio.v1.studio_pb2.InputSchema.DESCRIPTOR", false]], "descriptor (arista.studio.v1.studio_pb2.inputsconfig attribute)": [[47, "arista.studio.v1.studio_pb2.InputsConfig.DESCRIPTOR", false]], "descriptor (arista.studio.v1.studio_pb2.inputskey attribute)": [[47, "arista.studio.v1.studio_pb2.InputsKey.DESCRIPTOR", false]], "descriptor (arista.studio.v1.studio_pb2.integerinputfieldprops attribute)": [[47, "arista.studio.v1.studio_pb2.IntegerInputFieldProps.DESCRIPTOR", false]], "descriptor (arista.studio.v1.studio_pb2.layout attribute)": [[47, "arista.studio.v1.studio_pb2.Layout.DESCRIPTOR", false]], "descriptor (arista.studio.v1.studio_pb2.resolverinputfieldprops attribute)": [[47, "arista.studio.v1.studio_pb2.ResolverInputFieldProps.DESCRIPTOR", false]], "descriptor (arista.studio.v1.studio_pb2.secretinput attribute)": [[47, "arista.studio.v1.studio_pb2.SecretInput.DESCRIPTOR", false]], "descriptor (arista.studio.v1.studio_pb2.stringinputfieldprops attribute)": [[47, "arista.studio.v1.studio_pb2.StringInputFieldProps.DESCRIPTOR", false]], "descriptor (arista.studio.v1.studio_pb2.studio attribute)": [[47, "arista.studio.v1.studio_pb2.Studio.DESCRIPTOR", false]], "descriptor (arista.studio.v1.studio_pb2.studioconfig attribute)": [[47, "arista.studio.v1.studio_pb2.StudioConfig.DESCRIPTOR", false]], "descriptor (arista.studio.v1.studio_pb2.studiokey attribute)": [[47, "arista.studio.v1.studio_pb2.StudioKey.DESCRIPTOR", false]], "descriptor (arista.studio.v1.studio_pb2.studiosummary attribute)": [[47, "arista.studio.v1.studio_pb2.StudioSummary.DESCRIPTOR", false]], "descriptor (arista.studio.v1.studio_pb2.tagmatcherinputfieldprops attribute)": [[47, "arista.studio.v1.studio_pb2.TagMatcherInputFieldProps.DESCRIPTOR", false]], "descriptor (arista.studio.v1.studio_pb2.template attribute)": [[47, "arista.studio.v1.studio_pb2.Template.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.metaresponse attribute)": [[52, "arista.tag.v2.services.gen_pb2.MetaResponse.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagassignmentbatchedstreamrequest attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagassignmentbatchedstreamresponse attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagassignmentconfigbatchedstreamrequest attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentConfigBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagassignmentconfigbatchedstreamresponse attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentConfigBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagassignmentconfigdeleteallrequest attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentConfigDeleteAllRequest.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagassignmentconfigdeleteallresponse attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentConfigDeleteAllResponse.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagassignmentconfigdeleterequest attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentConfigDeleteRequest.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagassignmentconfigdeleteresponse attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentConfigDeleteResponse.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagassignmentconfigdeletesomerequest attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentConfigDeleteSomeRequest.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagassignmentconfigdeletesomeresponse attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentConfigDeleteSomeResponse.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagassignmentconfigrequest attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentConfigRequest.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagassignmentconfigresponse attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentConfigResponse.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagassignmentconfigsetrequest attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentConfigSetRequest.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagassignmentconfigsetresponse attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentConfigSetResponse.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagassignmentconfigsetsomerequest attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentConfigSetSomeRequest.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagassignmentconfigsetsomeresponse attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentConfigSetSomeResponse.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagassignmentconfigsomerequest attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentConfigSomeRequest.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagassignmentconfigsomeresponse attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentConfigSomeResponse.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagassignmentconfigstreamrequest attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentConfigStreamRequest.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagassignmentconfigstreamresponse attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentConfigStreamResponse.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagassignmentrequest attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentRequest.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagassignmentresponse attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentResponse.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagassignmentsomerequest attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentSomeRequest.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagassignmentsomeresponse attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentSomeResponse.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagassignmentstreamrequest attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentStreamRequest.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagassignmentstreamresponse attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentStreamResponse.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagbatchedstreamrequest attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagbatchedstreamresponse attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagconfigbatchedstreamrequest attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagConfigBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagconfigbatchedstreamresponse attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagConfigBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagconfigdeleteallrequest attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagConfigDeleteAllRequest.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagconfigdeleteallresponse attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagConfigDeleteAllResponse.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagconfigdeleterequest attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagConfigDeleteRequest.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagconfigdeleteresponse attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagConfigDeleteResponse.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagconfigdeletesomerequest attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagConfigDeleteSomeRequest.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagconfigdeletesomeresponse attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagConfigDeleteSomeResponse.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagconfigrequest attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagConfigRequest.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagconfigresponse attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagConfigResponse.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagconfigsetrequest attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagConfigSetRequest.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagconfigsetresponse attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagConfigSetResponse.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagconfigsetsomerequest attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagConfigSetSomeRequest.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagconfigsetsomeresponse attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagConfigSetSomeResponse.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagconfigsomerequest attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagConfigSomeRequest.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagconfigsomeresponse attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagConfigSomeResponse.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagconfigstreamrequest attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagConfigStreamRequest.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagconfigstreamresponse attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagConfigStreamResponse.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagrequest attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagRequest.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagresponse attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagResponse.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagsomerequest attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagSomeRequest.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagsomeresponse attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagSomeResponse.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagstreamrequest attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagStreamRequest.DESCRIPTOR", false]], "descriptor (arista.tag.v2.services.gen_pb2.tagstreamresponse attribute)": [[52, "arista.tag.v2.services.gen_pb2.TagStreamResponse.DESCRIPTOR", false]], "descriptor (arista.tag.v2.tag_pb2.tag attribute)": [[51, "arista.tag.v2.tag_pb2.Tag.DESCRIPTOR", false]], "descriptor (arista.tag.v2.tag_pb2.tagassignment attribute)": [[51, "arista.tag.v2.tag_pb2.TagAssignment.DESCRIPTOR", false]], "descriptor (arista.tag.v2.tag_pb2.tagassignmentconfig attribute)": [[51, "arista.tag.v2.tag_pb2.TagAssignmentConfig.DESCRIPTOR", false]], "descriptor (arista.tag.v2.tag_pb2.tagassignmentkey attribute)": [[51, "arista.tag.v2.tag_pb2.TagAssignmentKey.DESCRIPTOR", false]], "descriptor (arista.tag.v2.tag_pb2.tagconfig attribute)": [[51, "arista.tag.v2.tag_pb2.TagConfig.DESCRIPTOR", false]], "descriptor (arista.tag.v2.tag_pb2.tagkey attribute)": [[51, "arista.tag.v2.tag_pb2.TagKey.DESCRIPTOR", false]], "descriptor (arista.time.time_pb2.timebounds attribute)": [[53, "arista.time.time_pb2.TimeBounds.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.metaresponse attribute)": [[56, "arista.workspace.v1.services.gen_pb2.MetaResponse.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspacebatchedstreamrequest attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspacebatchedstreamresponse attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspacebuildbatchedstreamrequest attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceBuildBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspacebuildbatchedstreamresponse attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceBuildBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspacebuilddetailsbatchedstreamrequest attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceBuildDetailsBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspacebuilddetailsbatchedstreamresponse attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceBuildDetailsBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspacebuilddetailsrequest attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceBuildDetailsRequest.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspacebuilddetailsresponse attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceBuildDetailsResponse.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspacebuilddetailssomerequest attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceBuildDetailsSomeRequest.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspacebuilddetailssomeresponse attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceBuildDetailsSomeResponse.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspacebuilddetailsstreamrequest attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceBuildDetailsStreamRequest.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspacebuilddetailsstreamresponse attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceBuildDetailsStreamResponse.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspacebuildrequest attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceBuildRequest.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspacebuildresponse attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceBuildResponse.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspacebuildsomerequest attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceBuildSomeRequest.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspacebuildsomeresponse attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceBuildSomeResponse.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspacebuildstreamrequest attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceBuildStreamRequest.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspacebuildstreamresponse attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceBuildStreamResponse.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspaceconfigbatchedstreamrequest attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceConfigBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspaceconfigbatchedstreamresponse attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceConfigBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspaceconfigdeleteallrequest attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceConfigDeleteAllRequest.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspaceconfigdeleteallresponse attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceConfigDeleteAllResponse.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspaceconfigdeleterequest attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceConfigDeleteRequest.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspaceconfigdeleteresponse attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceConfigDeleteResponse.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspaceconfigdeletesomerequest attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceConfigDeleteSomeRequest.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspaceconfigdeletesomeresponse attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceConfigDeleteSomeResponse.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspaceconfigrequest attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceConfigRequest.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspaceconfigresponse attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceConfigResponse.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspaceconfigsetrequest attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceConfigSetRequest.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspaceconfigsetresponse attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceConfigSetResponse.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspaceconfigsetsomerequest attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceConfigSetSomeRequest.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspaceconfigsetsomeresponse attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceConfigSetSomeResponse.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspaceconfigsomerequest attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceConfigSomeRequest.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspaceconfigsomeresponse attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceConfigSomeResponse.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspaceconfigstreamrequest attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceConfigStreamRequest.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspaceconfigstreamresponse attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceConfigStreamResponse.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspacerequest attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceRequest.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspaceresponse attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceResponse.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspacesomerequest attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceSomeRequest.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspacesomeresponse attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceSomeResponse.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspacestreamrequest attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceStreamRequest.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspacestreamresponse attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceStreamResponse.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspacesyncconfigbatchedstreamrequest attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigBatchedStreamRequest.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspacesyncconfigbatchedstreamresponse attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigBatchedStreamResponse.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspacesyncconfigdeleteallrequest attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigDeleteAllRequest.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspacesyncconfigdeleteallresponse attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigDeleteAllResponse.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspacesyncconfigdeleterequest attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigDeleteRequest.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspacesyncconfigdeleteresponse attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigDeleteResponse.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspacesyncconfigdeletesomerequest attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigDeleteSomeRequest.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspacesyncconfigdeletesomeresponse attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigDeleteSomeResponse.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspacesyncconfigrequest attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigRequest.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspacesyncconfigresponse attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigResponse.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspacesyncconfigsetrequest attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigSetRequest.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspacesyncconfigsetresponse attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigSetResponse.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspacesyncconfigsetsomerequest attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigSetSomeRequest.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspacesyncconfigsetsomeresponse attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigSetSomeResponse.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspacesyncconfigsomerequest attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigSomeRequest.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspacesyncconfigsomeresponse attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigSomeResponse.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspacesyncconfigstreamrequest attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigStreamRequest.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.services.gen_pb2.workspacesyncconfigstreamresponse attribute)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigStreamResponse.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.workspace_pb2.authzresult attribute)": [[55, "arista.workspace.v1.workspace_pb2.AuthzResult.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.workspace_pb2.buildstagestate attribute)": [[55, "arista.workspace.v1.workspace_pb2.BuildStageState.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.workspace_pb2.buildstagestate.valuesentry attribute)": [[55, "arista.workspace.v1.workspace_pb2.BuildStageState.ValuesEntry.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.workspace_pb2.configletbuildresult attribute)": [[55, "arista.workspace.v1.workspace_pb2.ConfigletBuildResult.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.workspace_pb2.configletbuildresults attribute)": [[55, "arista.workspace.v1.workspace_pb2.ConfigletBuildResults.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.workspace_pb2.configletbuildresults.valuesentry attribute)": [[55, "arista.workspace.v1.workspace_pb2.ConfigletBuildResults.ValuesEntry.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.workspace_pb2.configsyncresult attribute)": [[55, "arista.workspace.v1.workspace_pb2.ConfigSyncResult.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.workspace_pb2.configvalidationresult attribute)": [[55, "arista.workspace.v1.workspace_pb2.ConfigValidationResult.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.workspace_pb2.imagevalidationresult attribute)": [[55, "arista.workspace.v1.workspace_pb2.ImageValidationResult.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.workspace_pb2.inputerror attribute)": [[55, "arista.workspace.v1.workspace_pb2.InputError.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.workspace_pb2.inputerrors attribute)": [[55, "arista.workspace.v1.workspace_pb2.InputErrors.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.workspace_pb2.inputvalidationresult attribute)": [[55, "arista.workspace.v1.workspace_pb2.InputValidationResult.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.workspace_pb2.inputvalidationresults attribute)": [[55, "arista.workspace.v1.workspace_pb2.InputValidationResults.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.workspace_pb2.inputvalidationresults.valuesentry attribute)": [[55, "arista.workspace.v1.workspace_pb2.InputValidationResults.ValuesEntry.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.workspace_pb2.requestparams attribute)": [[55, "arista.workspace.v1.workspace_pb2.RequestParams.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.workspace_pb2.response attribute)": [[55, "arista.workspace.v1.workspace_pb2.Response.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.workspace_pb2.responses attribute)": [[55, "arista.workspace.v1.workspace_pb2.Responses.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.workspace_pb2.responses.valuesentry attribute)": [[55, "arista.workspace.v1.workspace_pb2.Responses.ValuesEntry.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.workspace_pb2.studiobuilddetails attribute)": [[55, "arista.workspace.v1.workspace_pb2.StudioBuildDetails.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.workspace_pb2.templateerror attribute)": [[55, "arista.workspace.v1.workspace_pb2.TemplateError.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.workspace_pb2.templateerrors attribute)": [[55, "arista.workspace.v1.workspace_pb2.TemplateErrors.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.workspace_pb2.workspace attribute)": [[55, "arista.workspace.v1.workspace_pb2.Workspace.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.workspace_pb2.workspacebuild attribute)": [[55, "arista.workspace.v1.workspace_pb2.WorkspaceBuild.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.workspace_pb2.workspacebuilddetails attribute)": [[55, "arista.workspace.v1.workspace_pb2.WorkspaceBuildDetails.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.workspace_pb2.workspacebuilddetailskey attribute)": [[55, "arista.workspace.v1.workspace_pb2.WorkspaceBuildDetailsKey.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.workspace_pb2.workspacebuildkey attribute)": [[55, "arista.workspace.v1.workspace_pb2.WorkspaceBuildKey.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.workspace_pb2.workspaceconfig attribute)": [[55, "arista.workspace.v1.workspace_pb2.WorkspaceConfig.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.workspace_pb2.workspacekey attribute)": [[55, "arista.workspace.v1.workspace_pb2.WorkspaceKey.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.workspace_pb2.workspacesyncconfig attribute)": [[55, "arista.workspace.v1.workspace_pb2.WorkspaceSyncConfig.DESCRIPTOR", false]], "descriptor (arista.workspace.v1.workspace_pb2.workspacesynckey attribute)": [[55, "arista.workspace.v1.workspace_pb2.WorkspaceSyncKey.DESCRIPTOR", false]], "descriptor (fmp.inet_pb2.ipaddress attribute)": [[66, "fmp.inet_pb2.IPAddress.DESCRIPTOR", false]], "descriptor (fmp.inet_pb2.ipprefix attribute)": [[66, "fmp.inet_pb2.IPPrefix.DESCRIPTOR", false]], "descriptor (fmp.inet_pb2.ipv4address attribute)": [[66, "fmp.inet_pb2.IPv4Address.DESCRIPTOR", false]], "descriptor (fmp.inet_pb2.ipv4prefix attribute)": [[66, "fmp.inet_pb2.IPv4Prefix.DESCRIPTOR", false]], "descriptor (fmp.inet_pb2.ipv6address attribute)": [[66, "fmp.inet_pb2.IPv6Address.DESCRIPTOR", false]], "descriptor (fmp.inet_pb2.ipv6prefix attribute)": [[66, "fmp.inet_pb2.IPv6Prefix.DESCRIPTOR", false]], "descriptor (fmp.inet_pb2.port attribute)": [[66, "fmp.inet_pb2.Port.DESCRIPTOR", false]], "descriptor (fmp.inet_pb2.repeatedipaddress attribute)": [[66, "fmp.inet_pb2.RepeatedIPAddress.DESCRIPTOR", false]], "descriptor (fmp.inet_pb2.repeatedipv4address attribute)": [[66, "fmp.inet_pb2.RepeatedIPv4Address.DESCRIPTOR", false]], "descriptor (fmp.inet_pb2.repeatedipv6address attribute)": [[66, "fmp.inet_pb2.RepeatedIPv6Address.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapboolbool attribute)": [[66, "fmp.wrappers_pb2.MapBoolBool.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapboolbool.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapBoolBool.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapboolbytes attribute)": [[66, "fmp.wrappers_pb2.MapBoolBytes.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapboolbytes.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapBoolBytes.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapbooldouble attribute)": [[66, "fmp.wrappers_pb2.MapBoolDouble.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapbooldouble.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapBoolDouble.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapboolfloat attribute)": [[66, "fmp.wrappers_pb2.MapBoolFloat.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapboolfloat.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapBoolFloat.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapboolint32 attribute)": [[66, "fmp.wrappers_pb2.MapBoolInt32.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapboolint32.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapBoolInt32.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapboolint64 attribute)": [[66, "fmp.wrappers_pb2.MapBoolInt64.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapboolint64.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapBoolInt64.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapboolstring attribute)": [[66, "fmp.wrappers_pb2.MapBoolString.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapboolstring.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapBoolString.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapbooluint32 attribute)": [[66, "fmp.wrappers_pb2.MapBoolUInt32.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapbooluint32.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapBoolUInt32.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapbooluint64 attribute)": [[66, "fmp.wrappers_pb2.MapBoolUInt64.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapbooluint64.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapBoolUInt64.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapint32bool attribute)": [[66, "fmp.wrappers_pb2.MapInt32Bool.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapint32bool.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapInt32Bool.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapint32bytes attribute)": [[66, "fmp.wrappers_pb2.MapInt32Bytes.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapint32bytes.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapInt32Bytes.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapint32double attribute)": [[66, "fmp.wrappers_pb2.MapInt32Double.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapint32double.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapInt32Double.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapint32float attribute)": [[66, "fmp.wrappers_pb2.MapInt32Float.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapint32float.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapInt32Float.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapint32int32 attribute)": [[66, "fmp.wrappers_pb2.MapInt32Int32.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapint32int32.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapInt32Int32.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapint32int64 attribute)": [[66, "fmp.wrappers_pb2.MapInt32Int64.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapint32int64.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapInt32Int64.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapint32string attribute)": [[66, "fmp.wrappers_pb2.MapInt32String.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapint32string.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapInt32String.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapint32uint32 attribute)": [[66, "fmp.wrappers_pb2.MapInt32UInt32.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapint32uint32.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapInt32UInt32.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapint32uint64 attribute)": [[66, "fmp.wrappers_pb2.MapInt32UInt64.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapint32uint64.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapInt32UInt64.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapint64bool attribute)": [[66, "fmp.wrappers_pb2.MapInt64Bool.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapint64bool.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapInt64Bool.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapint64bytes attribute)": [[66, "fmp.wrappers_pb2.MapInt64Bytes.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapint64bytes.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapInt64Bytes.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapint64double attribute)": [[66, "fmp.wrappers_pb2.MapInt64Double.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapint64double.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapInt64Double.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapint64float attribute)": [[66, "fmp.wrappers_pb2.MapInt64Float.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapint64float.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapInt64Float.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapint64int32 attribute)": [[66, "fmp.wrappers_pb2.MapInt64Int32.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapint64int32.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapInt64Int32.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapint64int64 attribute)": [[66, "fmp.wrappers_pb2.MapInt64Int64.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapint64int64.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapInt64Int64.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapint64string attribute)": [[66, "fmp.wrappers_pb2.MapInt64String.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapint64string.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapInt64String.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapint64uint32 attribute)": [[66, "fmp.wrappers_pb2.MapInt64UInt32.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapint64uint32.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapInt64UInt32.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapint64uint64 attribute)": [[66, "fmp.wrappers_pb2.MapInt64UInt64.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapint64uint64.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapInt64UInt64.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapstringbool attribute)": [[66, "fmp.wrappers_pb2.MapStringBool.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapstringbool.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapStringBool.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapstringbytes attribute)": [[66, "fmp.wrappers_pb2.MapStringBytes.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapstringbytes.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapStringBytes.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapstringdouble attribute)": [[66, "fmp.wrappers_pb2.MapStringDouble.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapstringdouble.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapStringDouble.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapstringfloat attribute)": [[66, "fmp.wrappers_pb2.MapStringFloat.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapstringfloat.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapStringFloat.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapstringint32 attribute)": [[66, "fmp.wrappers_pb2.MapStringInt32.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapstringint32.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapStringInt32.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapstringint64 attribute)": [[66, "fmp.wrappers_pb2.MapStringInt64.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapstringint64.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapStringInt64.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapstringstring attribute)": [[66, "fmp.wrappers_pb2.MapStringString.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapstringstring.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapStringString.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapstringuint32 attribute)": [[66, "fmp.wrappers_pb2.MapStringUInt32.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapstringuint32.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapStringUInt32.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapstringuint64 attribute)": [[66, "fmp.wrappers_pb2.MapStringUInt64.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapstringuint64.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapStringUInt64.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapuint32bool attribute)": [[66, "fmp.wrappers_pb2.MapUInt32Bool.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapuint32bool.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapUInt32Bool.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapuint32bytes attribute)": [[66, "fmp.wrappers_pb2.MapUInt32Bytes.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapuint32bytes.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapUInt32Bytes.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapuint32double attribute)": [[66, "fmp.wrappers_pb2.MapUInt32Double.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapuint32double.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapUInt32Double.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapuint32float attribute)": [[66, "fmp.wrappers_pb2.MapUInt32Float.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapuint32float.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapUInt32Float.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapuint32int32 attribute)": [[66, "fmp.wrappers_pb2.MapUInt32Int32.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapuint32int32.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapUInt32Int32.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapuint32int64 attribute)": [[66, "fmp.wrappers_pb2.MapUInt32Int64.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapuint32int64.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapUInt32Int64.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapuint32string attribute)": [[66, "fmp.wrappers_pb2.MapUInt32String.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapuint32string.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapUInt32String.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapuint32uint32 attribute)": [[66, "fmp.wrappers_pb2.MapUInt32UInt32.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapuint32uint32.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapUInt32UInt32.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapuint32uint64 attribute)": [[66, "fmp.wrappers_pb2.MapUInt32UInt64.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapuint32uint64.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapUInt32UInt64.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapuint64bool attribute)": [[66, "fmp.wrappers_pb2.MapUInt64Bool.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapuint64bool.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapUInt64Bool.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapuint64bytes attribute)": [[66, "fmp.wrappers_pb2.MapUInt64Bytes.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapuint64bytes.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapUInt64Bytes.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapuint64double attribute)": [[66, "fmp.wrappers_pb2.MapUInt64Double.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapuint64double.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapUInt64Double.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapuint64float attribute)": [[66, "fmp.wrappers_pb2.MapUInt64Float.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapuint64float.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapUInt64Float.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapuint64int32 attribute)": [[66, "fmp.wrappers_pb2.MapUInt64Int32.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapuint64int32.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapUInt64Int32.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapuint64int64 attribute)": [[66, "fmp.wrappers_pb2.MapUInt64Int64.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapuint64int64.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapUInt64Int64.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapuint64string attribute)": [[66, "fmp.wrappers_pb2.MapUInt64String.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapuint64string.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapUInt64String.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapuint64uint32 attribute)": [[66, "fmp.wrappers_pb2.MapUInt64UInt32.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapuint64uint32.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapUInt64UInt32.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapuint64uint64 attribute)": [[66, "fmp.wrappers_pb2.MapUInt64UInt64.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.mapuint64uint64.valuesentry attribute)": [[66, "fmp.wrappers_pb2.MapUInt64UInt64.ValuesEntry.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.repeatedbool attribute)": [[66, "fmp.wrappers_pb2.RepeatedBool.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.repeatedbytes attribute)": [[66, "fmp.wrappers_pb2.RepeatedBytes.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.repeateddouble attribute)": [[66, "fmp.wrappers_pb2.RepeatedDouble.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.repeatedfloat attribute)": [[66, "fmp.wrappers_pb2.RepeatedFloat.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.repeatedint32 attribute)": [[66, "fmp.wrappers_pb2.RepeatedInt32.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.repeatedint64 attribute)": [[66, "fmp.wrappers_pb2.RepeatedInt64.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.repeatedstring attribute)": [[66, "fmp.wrappers_pb2.RepeatedString.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.repeateduint32 attribute)": [[66, "fmp.wrappers_pb2.RepeatedUInt32.DESCRIPTOR", false]], "descriptor (fmp.wrappers_pb2.repeateduint64 attribute)": [[66, "fmp.wrappers_pb2.RepeatedUInt64.DESCRIPTOR", false]], "descriptor (fmp.yang_pb2.macaddress attribute)": [[66, "fmp.yang_pb2.MACAddress.DESCRIPTOR", false]], "descriptor (fmp.yang_pb2.repeatedmacaddress attribute)": [[66, "fmp.yang_pb2.RepeatedMACAddress.DESCRIPTOR", false]], "device (class in arista.endpointlocation.v1.endpointlocation_pb2)": [[23, "arista.endpointlocation.v1.endpointlocation_pb2.Device", false]], "device (class in arista.inventory.v1.inventory_pb2)": [[35, "arista.inventory.v1.inventory_pb2.Device", false]], "device (class in cloudvision.cvlib.device)": [[65, "cloudvision.cvlib.device.Device", false]], "devicebatchedstreamrequest (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceBatchedStreamRequest", false]], "devicebatchedstreamresponse (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceBatchedStreamResponse", false]], "devicecommandsfailed": [[65, "cloudvision.cvlib.exceptions.DeviceCommandsFailed", false]], "deviceconfiguration (class in arista.inventory.v1.inventory_pb2)": [[35, "arista.inventory.v1.inventory_pb2.DeviceConfiguration", false]], "deviceconfiguration.optionsentry (class in arista.inventory.v1.inventory_pb2)": [[35, "arista.inventory.v1.inventory_pb2.DeviceConfiguration.OptionsEntry", false]], "devicedecommissioning (class in arista.inventory.v1.inventory_pb2)": [[35, "arista.inventory.v1.inventory_pb2.DeviceDecommissioning", false]], "devicedecommissioningbatchedstreamrequest (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningBatchedStreamRequest", false]], "devicedecommissioningbatchedstreamresponse (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningBatchedStreamResponse", false]], "devicedecommissioningconfig (class in arista.inventory.v1.inventory_pb2)": [[35, "arista.inventory.v1.inventory_pb2.DeviceDecommissioningConfig", false]], "devicedecommissioningconfigbatchedstreamrequest (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigBatchedStreamRequest", false]], "devicedecommissioningconfigbatchedstreamresponse (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigBatchedStreamResponse", false]], "devicedecommissioningconfigdeleteallrequest (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigDeleteAllRequest", false]], "devicedecommissioningconfigdeleteallresponse (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigDeleteAllResponse", false]], "devicedecommissioningconfigdeleterequest (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigDeleteRequest", false]], "devicedecommissioningconfigdeleteresponse (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigDeleteResponse", false]], "devicedecommissioningconfigdeletesomerequest (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigDeleteSomeRequest", false]], "devicedecommissioningconfigdeletesomeresponse (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigDeleteSomeResponse", false]], "devicedecommissioningconfigrequest (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigRequest", false]], "devicedecommissioningconfigresponse (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigResponse", false]], "devicedecommissioningconfigservice (class in arista.inventory.v1.services.gen_pb2_grpc)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningConfigService", false]], "devicedecommissioningconfigserviceservicer (class in arista.inventory.v1.services.gen_pb2_grpc)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningConfigServiceServicer", false]], "devicedecommissioningconfigservicestub (class in arista.inventory.v1.services.gen_pb2_grpc)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningConfigServiceStub", false]], "devicedecommissioningconfigsetrequest (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigSetRequest", false]], "devicedecommissioningconfigsetresponse (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigSetResponse", false]], "devicedecommissioningconfigsetsomerequest (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigSetSomeRequest", false]], "devicedecommissioningconfigsetsomeresponse (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigSetSomeResponse", false]], "devicedecommissioningconfigsomerequest (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigSomeRequest", false]], "devicedecommissioningconfigsomeresponse (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigSomeResponse", false]], "devicedecommissioningconfigstreamrequest (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigStreamRequest", false]], "devicedecommissioningconfigstreamresponse (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigStreamResponse", false]], "devicedecommissioningrequest (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningRequest", false]], "devicedecommissioningresponse (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningResponse", false]], "devicedecommissioningservice (class in arista.inventory.v1.services.gen_pb2_grpc)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningService", false]], "devicedecommissioningserviceservicer (class in arista.inventory.v1.services.gen_pb2_grpc)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningServiceServicer", false]], "devicedecommissioningservicestub (class in arista.inventory.v1.services.gen_pb2_grpc)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningServiceStub", false]], "devicedecommissioningsomerequest (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningSomeRequest", false]], "devicedecommissioningsomeresponse (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningSomeResponse", false]], "devicedecommissioningstreamrequest (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningStreamRequest", false]], "devicedecommissioningstreamresponse (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningStreamResponse", false]], "deviceinfo (class in arista.endpointlocation.v1.endpointlocation_pb2)": [[23, "arista.endpointlocation.v1.endpointlocation_pb2.DeviceInfo", false]], "devicekey (class in arista.inventory.v1.inventory_pb2)": [[35, "arista.inventory.v1.inventory_pb2.DeviceKey", false]], "devicelifecyclesummary (class in arista.lifecycle.v1.lifecycle_pb2)": [[38, "arista.lifecycle.v1.lifecycle_pb2.DeviceLifecycleSummary", false]], "devicelifecyclesummarykey (class in arista.lifecycle.v1.lifecycle_pb2)": [[38, "arista.lifecycle.v1.lifecycle_pb2.DeviceLifecycleSummaryKey", false]], "devicelifecyclesummaryrequest (class in arista.lifecycle.v1.services.gen_pb2)": [[39, "arista.lifecycle.v1.services.gen_pb2.DeviceLifecycleSummaryRequest", false]], "devicelifecyclesummaryresponse (class in arista.lifecycle.v1.services.gen_pb2)": [[39, "arista.lifecycle.v1.services.gen_pb2.DeviceLifecycleSummaryResponse", false]], "devicelifecyclesummaryservice (class in arista.lifecycle.v1.services.gen_pb2_grpc)": [[39, "arista.lifecycle.v1.services.gen_pb2_grpc.DeviceLifecycleSummaryService", false]], "devicelifecyclesummaryserviceservicer (class in arista.lifecycle.v1.services.gen_pb2_grpc)": [[39, "arista.lifecycle.v1.services.gen_pb2_grpc.DeviceLifecycleSummaryServiceServicer", false]], "devicelifecyclesummaryservicestub (class in arista.lifecycle.v1.services.gen_pb2_grpc)": [[39, "arista.lifecycle.v1.services.gen_pb2_grpc.DeviceLifecycleSummaryServiceStub", false]], "devicelifecyclesummarystreamrequest (class in arista.lifecycle.v1.services.gen_pb2)": [[39, "arista.lifecycle.v1.services.gen_pb2.DeviceLifecycleSummaryStreamRequest", false]], "devicelifecyclesummarystreamresponse (class in arista.lifecycle.v1.services.gen_pb2)": [[39, "arista.lifecycle.v1.services.gen_pb2.DeviceLifecycleSummaryStreamResponse", false]], "devicemap (class in arista.endpointlocation.v1.endpointlocation_pb2)": [[23, "arista.endpointlocation.v1.endpointlocation_pb2.DeviceMap", false]], "devicemap.valuesentry (class in arista.endpointlocation.v1.endpointlocation_pb2)": [[23, "arista.endpointlocation.v1.endpointlocation_pb2.DeviceMap.ValuesEntry", false]], "deviceonboarding (class in arista.inventory.v1.inventory_pb2)": [[35, "arista.inventory.v1.inventory_pb2.DeviceOnboarding", false]], "deviceonboardingbatchedstreamrequest (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingBatchedStreamRequest", false]], "deviceonboardingbatchedstreamresponse (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingBatchedStreamResponse", false]], "deviceonboardingconfig (class in arista.inventory.v1.inventory_pb2)": [[35, "arista.inventory.v1.inventory_pb2.DeviceOnboardingConfig", false]], "deviceonboardingconfigbatchedstreamrequest (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigBatchedStreamRequest", false]], "deviceonboardingconfigbatchedstreamresponse (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigBatchedStreamResponse", false]], "deviceonboardingconfigdeleteallrequest (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigDeleteAllRequest", false]], "deviceonboardingconfigdeleteallresponse (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigDeleteAllResponse", false]], "deviceonboardingconfigdeleterequest (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigDeleteRequest", false]], "deviceonboardingconfigdeleteresponse (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigDeleteResponse", false]], "deviceonboardingconfigdeletesomerequest (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigDeleteSomeRequest", false]], "deviceonboardingconfigdeletesomeresponse (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigDeleteSomeResponse", false]], "deviceonboardingconfigrequest (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigRequest", false]], "deviceonboardingconfigresponse (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigResponse", false]], "deviceonboardingconfigservice (class in arista.inventory.v1.services.gen_pb2_grpc)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingConfigService", false]], "deviceonboardingconfigserviceservicer (class in arista.inventory.v1.services.gen_pb2_grpc)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingConfigServiceServicer", false]], "deviceonboardingconfigservicestub (class in arista.inventory.v1.services.gen_pb2_grpc)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingConfigServiceStub", false]], "deviceonboardingconfigsetrequest (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigSetRequest", false]], "deviceonboardingconfigsetresponse (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigSetResponse", false]], "deviceonboardingconfigsetsomerequest (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigSetSomeRequest", false]], "deviceonboardingconfigsetsomeresponse (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigSetSomeResponse", false]], "deviceonboardingconfigsomerequest (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigSomeRequest", false]], "deviceonboardingconfigsomeresponse (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigSomeResponse", false]], "deviceonboardingconfigstreamrequest (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigStreamRequest", false]], "deviceonboardingconfigstreamresponse (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigStreamResponse", false]], "deviceonboardingrequest (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingRequest", false]], "deviceonboardingresponse (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingResponse", false]], "deviceonboardingservice (class in arista.inventory.v1.services.gen_pb2_grpc)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingService", false]], "deviceonboardingserviceservicer (class in arista.inventory.v1.services.gen_pb2_grpc)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingServiceServicer", false]], "deviceonboardingservicestub (class in arista.inventory.v1.services.gen_pb2_grpc)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingServiceStub", false]], "deviceonboardingsomerequest (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingSomeRequest", false]], "deviceonboardingsomeresponse (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingSomeResponse", false]], "deviceonboardingstreamrequest (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingStreamRequest", false]], "deviceonboardingstreamresponse (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceOnboardingStreamResponse", false]], "devicerequest (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceRequest", false]], "deviceresponse (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceResponse", false]], "deviceservice (class in arista.inventory.v1.services.gen_pb2_grpc)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceService", false]], "deviceserviceservicer (class in arista.inventory.v1.services.gen_pb2_grpc)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceServiceServicer", false]], "deviceservicestub (class in arista.inventory.v1.services.gen_pb2_grpc)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceServiceStub", false]], "devicesomerequest (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceSomeRequest", false]], "devicesomeresponse (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceSomeResponse", false]], "devicestreamrequest (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceStreamRequest", false]], "devicestreamresponse (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.DeviceStreamResponse", false]], "devicetostagemap (class in arista.changecontrol.v1.changecontrol_pb2)": [[8, "arista.changecontrol.v1.changecontrol_pb2.DeviceToStageMap", false]], "devicetostagemap.valuesentry (class in arista.changecontrol.v1.changecontrol_pb2)": [[8, "arista.changecontrol.v1.changecontrol_pb2.DeviceToStageMap.ValuesEntry", false]], "dict_cls (cloudvision.connector.codec.custom_types.frozendict attribute)": [[60, "cloudvision.Connector.codec.custom_types.FrozenDict.dict_cls", false]], "dict_cls (cloudvision.connector.codec.frozendict attribute)": [[60, "cloudvision.Connector.codec.FrozenDict.dict_cls", false]], "diffentries (class in arista.configstatus.v1.configstatus_pb2)": [[14, "arista.configstatus.v1.configstatus_pb2.DiffEntries", false]], "diffentry (class in arista.configstatus.v1.configstatus_pb2)": [[14, "arista.configstatus.v1.configstatus_pb2.DiffEntry", false]], "dimensions (class in arista.dashboard.v1.dashboard_pb2)": [[20, "arista.dashboard.v1.dashboard_pb2.Dimensions", false]], "dowithtimeout() (cloudvision.cvlib.context.context static method)": [[65, "cloudvision.cvlib.context.Context.doWithTimeout", false]], "emailendpoint (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.EmailEndpoint", false]], "emailendpoints (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.EmailEndpoints", false]], "emailsettings (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.EmailSettings", false]], "encode() (cloudvision.connector.codec.encoder method)": [[60, "cloudvision.Connector.codec.Encoder.encode", false]], "encode() (cloudvision.connector.codec.encoder.encoder method)": [[60, "cloudvision.Connector.codec.encoder.Encoder.encode", false]], "encode_array() (cloudvision.connector.codec.encoder method)": [[60, "cloudvision.Connector.codec.Encoder.encode_array", false]], "encode_array() (cloudvision.connector.codec.encoder.encoder method)": [[60, "cloudvision.Connector.codec.encoder.Encoder.encode_array", false]], "encode_map() (cloudvision.connector.codec.encoder method)": [[60, "cloudvision.Connector.codec.Encoder.encode_map", false]], "encode_map() (cloudvision.connector.codec.encoder.encoder method)": [[60, "cloudvision.Connector.codec.encoder.Encoder.encode_map", false]], "encode_string() (cloudvision.connector.codec.encoder method)": [[60, "cloudvision.Connector.codec.Encoder.encode_string", false]], "encode_string() (cloudvision.connector.codec.encoder.encoder method)": [[60, "cloudvision.Connector.codec.encoder.Encoder.encode_string", false]], "encoder (class in cloudvision.connector.codec)": [[60, "cloudvision.Connector.codec.Encoder", false]], "encoder (class in cloudvision.connector.codec.encoder)": [[60, "cloudvision.Connector.codec.encoder.Encoder", false]], "endpointerror (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.EndpointError", false]], "endpointerrors (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.EndpointErrors", false]], "endpointlocation (class in arista.endpointlocation.v1.endpointlocation_pb2)": [[23, "arista.endpointlocation.v1.endpointlocation_pb2.EndpointLocation", false]], "endpointlocationbatchedstreamrequest (class in arista.endpointlocation.v1.services.gen_pb2)": [[24, "arista.endpointlocation.v1.services.gen_pb2.EndpointLocationBatchedStreamRequest", false]], "endpointlocationbatchedstreamresponse (class in arista.endpointlocation.v1.services.gen_pb2)": [[24, "arista.endpointlocation.v1.services.gen_pb2.EndpointLocationBatchedStreamResponse", false]], "endpointlocationkey (class in arista.endpointlocation.v1.endpointlocation_pb2)": [[23, "arista.endpointlocation.v1.endpointlocation_pb2.EndpointLocationKey", false]], "endpointlocationrequest (class in arista.endpointlocation.v1.services.gen_pb2)": [[24, "arista.endpointlocation.v1.services.gen_pb2.EndpointLocationRequest", false]], "endpointlocationresponse (class in arista.endpointlocation.v1.services.gen_pb2)": [[24, "arista.endpointlocation.v1.services.gen_pb2.EndpointLocationResponse", false]], "endpointlocationservice (class in arista.endpointlocation.v1.services.gen_pb2_grpc)": [[24, "arista.endpointlocation.v1.services.gen_pb2_grpc.EndpointLocationService", false]], "endpointlocationserviceservicer (class in arista.endpointlocation.v1.services.gen_pb2_grpc)": [[24, "arista.endpointlocation.v1.services.gen_pb2_grpc.EndpointLocationServiceServicer", false]], "endpointlocationservicestub (class in arista.endpointlocation.v1.services.gen_pb2_grpc)": [[24, "arista.endpointlocation.v1.services.gen_pb2_grpc.EndpointLocationServiceStub", false]], "endpointlocationsomerequest (class in arista.endpointlocation.v1.services.gen_pb2)": [[24, "arista.endpointlocation.v1.services.gen_pb2.EndpointLocationSomeRequest", false]], "endpointlocationsomeresponse (class in arista.endpointlocation.v1.services.gen_pb2)": [[24, "arista.endpointlocation.v1.services.gen_pb2.EndpointLocationSomeResponse", false]], "endpointlocationstreamrequest (class in arista.endpointlocation.v1.services.gen_pb2)": [[24, "arista.endpointlocation.v1.services.gen_pb2.EndpointLocationStreamRequest", false]], "endpointlocationstreamresponse (class in arista.endpointlocation.v1.services.gen_pb2)": [[24, "arista.endpointlocation.v1.services.gen_pb2.EndpointLocationStreamResponse", false]], "enroll() (cloudvision.connector.gen.ca_pb2_grpc.certificateauthority static method)": [[62, "cloudvision.Connector.gen.ca_pb2_grpc.CertificateAuthority.Enroll", false]], "enroll() (cloudvision.connector.gen.ca_pb2_grpc.certificateauthorityservicer method)": [[62, "cloudvision.Connector.gen.ca_pb2_grpc.CertificateAuthorityServicer.Enroll", false]], "entities (class in arista.studio.v1.studio_pb2)": [[47, "arista.studio.v1.studio_pb2.Entities", false]], "entities.valuesentry (class in arista.studio.v1.studio_pb2)": [[47, "arista.studio.v1.studio_pb2.Entities.ValuesEntry", false]], "entity (class in arista.studio.v1.studio_pb2)": [[47, "arista.studio.v1.studio_pb2.Entity", false]], "error (cloudvision.cvlib.context.logginglevel attribute)": [[65, "cloudvision.cvlib.context.LoggingLevel.Error", false]], "error() (cloudvision.cvlib.context.context method)": [[65, "cloudvision.cvlib.context.Context.error", false]], "event (class in arista.event.v1.event_pb2)": [[26, "arista.event.v1.event_pb2.Event", false]], "eventack (class in arista.event.v1.event_pb2)": [[26, "arista.event.v1.event_pb2.EventAck", false]], "eventannotationconfig (class in arista.event.v1.event_pb2)": [[26, "arista.event.v1.event_pb2.EventAnnotationConfig", false]], "eventannotationconfigdeleteallrequest (class in arista.event.v1.services.gen_pb2)": [[27, "arista.event.v1.services.gen_pb2.EventAnnotationConfigDeleteAllRequest", false]], "eventannotationconfigdeleteallresponse (class in arista.event.v1.services.gen_pb2)": [[27, "arista.event.v1.services.gen_pb2.EventAnnotationConfigDeleteAllResponse", false]], "eventannotationconfigdeleterequest (class in arista.event.v1.services.gen_pb2)": [[27, "arista.event.v1.services.gen_pb2.EventAnnotationConfigDeleteRequest", false]], "eventannotationconfigdeleteresponse (class in arista.event.v1.services.gen_pb2)": [[27, "arista.event.v1.services.gen_pb2.EventAnnotationConfigDeleteResponse", false]], "eventannotationconfigdeletesomerequest (class in arista.event.v1.services.gen_pb2)": [[27, "arista.event.v1.services.gen_pb2.EventAnnotationConfigDeleteSomeRequest", false]], "eventannotationconfigdeletesomeresponse (class in arista.event.v1.services.gen_pb2)": [[27, "arista.event.v1.services.gen_pb2.EventAnnotationConfigDeleteSomeResponse", false]], "eventannotationconfigrequest (class in arista.event.v1.services.gen_pb2)": [[27, "arista.event.v1.services.gen_pb2.EventAnnotationConfigRequest", false]], "eventannotationconfigresponse (class in arista.event.v1.services.gen_pb2)": [[27, "arista.event.v1.services.gen_pb2.EventAnnotationConfigResponse", false]], "eventannotationconfigservice (class in arista.event.v1.services.gen_pb2_grpc)": [[27, "arista.event.v1.services.gen_pb2_grpc.EventAnnotationConfigService", false]], "eventannotationconfigserviceservicer (class in arista.event.v1.services.gen_pb2_grpc)": [[27, "arista.event.v1.services.gen_pb2_grpc.EventAnnotationConfigServiceServicer", false]], "eventannotationconfigservicestub (class in arista.event.v1.services.gen_pb2_grpc)": [[27, "arista.event.v1.services.gen_pb2_grpc.EventAnnotationConfigServiceStub", false]], "eventannotationconfigsetrequest (class in arista.event.v1.services.gen_pb2)": [[27, "arista.event.v1.services.gen_pb2.EventAnnotationConfigSetRequest", false]], "eventannotationconfigsetresponse (class in arista.event.v1.services.gen_pb2)": [[27, "arista.event.v1.services.gen_pb2.EventAnnotationConfigSetResponse", false]], "eventannotationconfigsetsomerequest (class in arista.event.v1.services.gen_pb2)": [[27, "arista.event.v1.services.gen_pb2.EventAnnotationConfigSetSomeRequest", false]], "eventannotationconfigsetsomeresponse (class in arista.event.v1.services.gen_pb2)": [[27, "arista.event.v1.services.gen_pb2.EventAnnotationConfigSetSomeResponse", false]], "eventannotationconfigsomerequest (class in arista.event.v1.services.gen_pb2)": [[27, "arista.event.v1.services.gen_pb2.EventAnnotationConfigSomeRequest", false]], "eventannotationconfigsomeresponse (class in arista.event.v1.services.gen_pb2)": [[27, "arista.event.v1.services.gen_pb2.EventAnnotationConfigSomeResponse", false]], "eventannotationconfigstreamrequest (class in arista.event.v1.services.gen_pb2)": [[27, "arista.event.v1.services.gen_pb2.EventAnnotationConfigStreamRequest", false]], "eventannotationconfigstreamresponse (class in arista.event.v1.services.gen_pb2)": [[27, "arista.event.v1.services.gen_pb2.EventAnnotationConfigStreamResponse", false]], "eventcomponent (class in arista.event.v1.event_pb2)": [[26, "arista.event.v1.event_pb2.EventComponent", false]], "eventcomponent.componentsentry (class in arista.event.v1.event_pb2)": [[26, "arista.event.v1.event_pb2.EventComponent.ComponentsEntry", false]], "eventcomponents (class in arista.event.v1.event_pb2)": [[26, "arista.event.v1.event_pb2.EventComponents", false]], "eventdata (class in arista.event.v1.event_pb2)": [[26, "arista.event.v1.event_pb2.EventData", false]], "eventdata.dataentry (class in arista.event.v1.event_pb2)": [[26, "arista.event.v1.event_pb2.EventData.DataEntry", false]], "eventkey (class in arista.event.v1.event_pb2)": [[26, "arista.event.v1.event_pb2.EventKey", false]], "eventlist (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.EventList", false]], "eventnote (class in arista.event.v1.event_pb2)": [[26, "arista.event.v1.event_pb2.EventNote", false]], "eventnoteconfig (class in arista.event.v1.event_pb2)": [[26, "arista.event.v1.event_pb2.EventNoteConfig", false]], "eventnotes (class in arista.event.v1.event_pb2)": [[26, "arista.event.v1.event_pb2.EventNotes", false]], "eventnotes.notesentry (class in arista.event.v1.event_pb2)": [[26, "arista.event.v1.event_pb2.EventNotes.NotesEntry", false]], "eventnotesconfig (class in arista.event.v1.event_pb2)": [[26, "arista.event.v1.event_pb2.EventNotesConfig", false]], "eventnotesconfig.notesentry (class in arista.event.v1.event_pb2)": [[26, "arista.event.v1.event_pb2.EventNotesConfig.NotesEntry", false]], "eventread (class in arista.event.v1.event_pb2)": [[26, "arista.event.v1.event_pb2.EventRead", false]], "eventrequest (class in arista.event.v1.services.gen_pb2)": [[27, "arista.event.v1.services.gen_pb2.EventRequest", false]], "eventresponse (class in arista.event.v1.services.gen_pb2)": [[27, "arista.event.v1.services.gen_pb2.EventResponse", false]], "eventservice (class in arista.event.v1.services.gen_pb2_grpc)": [[27, "arista.event.v1.services.gen_pb2_grpc.EventService", false]], "eventserviceservicer (class in arista.event.v1.services.gen_pb2_grpc)": [[27, "arista.event.v1.services.gen_pb2_grpc.EventServiceServicer", false]], "eventservicestub (class in arista.event.v1.services.gen_pb2_grpc)": [[27, "arista.event.v1.services.gen_pb2_grpc.EventServiceStub", false]], "eventsomerequest (class in arista.event.v1.services.gen_pb2)": [[27, "arista.event.v1.services.gen_pb2.EventSomeRequest", false]], "eventsomeresponse (class in arista.event.v1.services.gen_pb2)": [[27, "arista.event.v1.services.gen_pb2.EventSomeResponse", false]], "eventstreamrequest (class in arista.event.v1.services.gen_pb2)": [[27, "arista.event.v1.services.gen_pb2.EventStreamRequest", false]], "eventstreamresponse (class in arista.event.v1.services.gen_pb2)": [[27, "arista.event.v1.services.gen_pb2.EventStreamResponse", false]], "execution (class in cloudvision.cvlib.execution)": [[65, "cloudvision.cvlib.execution.Execution", false]], "explanationlist (class in arista.endpointlocation.v1.endpointlocation_pb2)": [[23, "arista.endpointlocation.v1.endpointlocation_pb2.ExplanationList", false]], "exptagfield() (cloudvision.cvlib.exceptions.iperrorexception method)": [[65, "cloudvision.cvlib.exceptions.IpErrorException.expTagField", false]], "exptagfield() (cloudvision.cvlib.exceptions.tagerrorexception method)": [[65, "cloudvision.cvlib.exceptions.TagErrorException.expTagField", false]], "extendedattributes (class in arista.inventory.v1.inventory_pb2)": [[35, "arista.inventory.v1.inventory_pb2.ExtendedAttributes", false]], "extendedattributes.featureenabledentry (class in arista.inventory.v1.inventory_pb2)": [[35, "arista.inventory.v1.inventory_pb2.ExtendedAttributes.FeatureEnabledEntry", false]], "extension (class in arista.imagestatus.v1.imagestatus_pb2)": [[32, "arista.imagestatus.v1.imagestatus_pb2.Extension", false]], "extensiondiff (class in arista.imagestatus.v1.imagestatus_pb2)": [[32, "arista.imagestatus.v1.imagestatus_pb2.ExtensionDiff", false]], "extensiondiffs (class in arista.imagestatus.v1.imagestatus_pb2)": [[32, "arista.imagestatus.v1.imagestatus_pb2.ExtensionDiffs", false]], "extensiondiffsbysup (class in arista.imagestatus.v1.imagestatus_pb2)": [[32, "arista.imagestatus.v1.imagestatus_pb2.ExtensionDiffsBySup", false]], "extensiondiffsbysup.valuesentry (class in arista.imagestatus.v1.imagestatus_pb2)": [[32, "arista.imagestatus.v1.imagestatus_pb2.ExtensionDiffsBySup.ValuesEntry", false]], "extensions (class in arista.imagestatus.v1.imagestatus_pb2)": [[32, "arista.imagestatus.v1.imagestatus_pb2.Extensions", false]], "extractinputelems() (in module cloudvision.cvlib.studio)": [[65, "cloudvision.cvlib.studio.extractInputElems", false]], "extractjsonencodedlistarg() (in module cloudvision.cvlib.utils)": [[65, "cloudvision.cvlib.utils.extractJSONEncodedListArg", false]], "extractstudioinfofromargs() (in module cloudvision.cvlib.studio)": [[65, "cloudvision.cvlib.studio.extractStudioInfoFromArgs", false]], "filter (class in arista.changecontrol.v1.changecontrol_pb2)": [[8, "arista.changecontrol.v1.changecontrol_pb2.Filter", false]], "filter (class in arista.configlet.v1.configlet_pb2)": [[11, "arista.configlet.v1.configlet_pb2.Filter", false]], "filter (class in arista.dashboard.v1.dashboard_pb2)": [[20, "arista.dashboard.v1.dashboard_pb2.Filter", false]], "first_usable_address() (in module cloudvision.cvlib.iputils)": [[65, "cloudvision.cvlib.iputils.first_usable_address", false]], "flag (class in arista.changecontrol.v1.changecontrol_pb2)": [[8, "arista.changecontrol.v1.changecontrol_pb2.Flag", false]], "flagconfig (class in arista.changecontrol.v1.changecontrol_pb2)": [[8, "arista.changecontrol.v1.changecontrol_pb2.FlagConfig", false]], "float32 (class in cloudvision.connector.codec)": [[60, "cloudvision.Connector.codec.Float32", false]], "float32 (class in cloudvision.connector.codec.custom_types)": [[60, "cloudvision.Connector.codec.custom_types.Float32", false]], "floatinputfieldprops (class in arista.studio.v1.studio_pb2)": [[47, "arista.studio.v1.studio_pb2.FloatInputFieldProps", false]], "fmp": [[66, "module-fmp", false]], "fmp.deletes_pb2": [[66, "module-fmp.deletes_pb2", false]], "fmp.deletes_pb2_grpc": [[66, "module-fmp.deletes_pb2_grpc", false]], "fmp.extensions_pb2": [[66, "module-fmp.extensions_pb2", false]], "fmp.extensions_pb2_grpc": [[66, "module-fmp.extensions_pb2_grpc", false]], "fmp.inet_pb2": [[66, "module-fmp.inet_pb2", false]], "fmp.inet_pb2_grpc": [[66, "module-fmp.inet_pb2_grpc", false]], "fmp.pages_pb2": [[66, "module-fmp.pages_pb2", false]], "fmp.pages_pb2_grpc": [[66, "module-fmp.pages_pb2_grpc", false]], "fmp.wrappers_pb2": [[66, "module-fmp.wrappers_pb2", false]], "fmp.wrappers_pb2_grpc": [[66, "module-fmp.wrappers_pb2_grpc", false]], "fmp.yang_pb2": [[66, "module-fmp.yang_pb2", false]], "fmp.yang_pb2_grpc": [[66, "module-fmp.yang_pb2_grpc", false]], "free() (cloudvision.cvlib.id_allocator.idallocator method)": [[65, "cloudvision.cvlib.id_allocator.IdAllocator.free", false]], "frozendict (class in cloudvision.connector.codec)": [[60, "cloudvision.Connector.codec.FrozenDict", false]], "frozendict (class in cloudvision.connector.codec.custom_types)": [[60, "cloudvision.Connector.codec.custom_types.FrozenDict", false]], "gen_csr_der() (in module cloudvision.connector.auth.cert)": [[59, "cloudvision.Connector.auth.cert.gen_csr_der", false]], "get() (cloudvision.connector.gen.router_pb2_grpc.routerv1 static method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.RouterV1.Get", false]], "get() (cloudvision.connector.gen.router_pb2_grpc.routerv1servicer method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.RouterV1Servicer.Get", false]], "get() (cloudvision.connector.grpc_client.grpcclient method)": [[63, "cloudvision.Connector.grpc_client.GRPCClient.get", false]], "get() (cloudvision.connector.grpc_client.grpcclient.grpcclient method)": [[63, "cloudvision.Connector.grpc_client.grpcClient.GRPCClient.get", false]], "get() (cloudvision.cvlib.context.context method)": [[65, "cloudvision.cvlib.context.Context.Get", false]], "get_datasets() (cloudvision.connector.grpc_client.grpcclient method)": [[63, "cloudvision.Connector.grpc_client.GRPCClient.get_datasets", false]], "get_datasets() (cloudvision.connector.grpc_client.grpcclient.grpcclient method)": [[63, "cloudvision.Connector.grpc_client.grpcClient.GRPCClient.get_datasets", false]], "get_dict() (in module cloudvision.connector.core.utils)": [[61, "cloudvision.Connector.core.utils.get_dict", false]], "get_ip_from_subnet() (in module cloudvision.cvlib.iputils)": [[65, "cloudvision.cvlib.iputils.get_ip_from_subnet", false]], "get_number_subnets() (in module cloudvision.cvlib.iputils)": [[65, "cloudvision.cvlib.iputils.get_number_subnets", false]], "get_subnet_by_index() (in module cloudvision.cvlib.iputils)": [[65, "cloudvision.cvlib.iputils.get_subnet_by_index", false]], "getall() (arista.alert.v1.services.gen_pb2_grpc.alertconfigservice static method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.AlertConfigService.GetAll", false]], "getall() (arista.alert.v1.services.gen_pb2_grpc.alertconfigserviceservicer method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.AlertConfigServiceServicer.GetAll", false]], "getall() (arista.alert.v1.services.gen_pb2_grpc.alertservice static method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.AlertService.GetAll", false]], "getall() (arista.alert.v1.services.gen_pb2_grpc.alertserviceservicer method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.AlertServiceServicer.GetAll", false]], "getall() (arista.alert.v1.services.gen_pb2_grpc.defaulttemplateservice static method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.DefaultTemplateService.GetAll", false]], "getall() (arista.alert.v1.services.gen_pb2_grpc.defaulttemplateserviceservicer method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.DefaultTemplateServiceServicer.GetAll", false]], "getall() (arista.alert.v1.services.gen_pb2_grpc.templateconfigservice static method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.TemplateConfigService.GetAll", false]], "getall() (arista.alert.v1.services.gen_pb2_grpc.templateconfigserviceservicer method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.TemplateConfigServiceServicer.GetAll", false]], "getall() (arista.bugexposure.v1.services.gen_pb2_grpc.bugexposureservice static method)": [[6, "arista.bugexposure.v1.services.gen_pb2_grpc.BugExposureService.GetAll", false]], "getall() (arista.bugexposure.v1.services.gen_pb2_grpc.bugexposureserviceservicer method)": [[6, "arista.bugexposure.v1.services.gen_pb2_grpc.BugExposureServiceServicer.GetAll", false]], "getall() (arista.changecontrol.v1.services.gen_pb2_grpc.approveconfigservice static method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ApproveConfigService.GetAll", false]], "getall() (arista.changecontrol.v1.services.gen_pb2_grpc.approveconfigserviceservicer method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ApproveConfigServiceServicer.GetAll", false]], "getall() (arista.changecontrol.v1.services.gen_pb2_grpc.changecontrolconfigservice static method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlConfigService.GetAll", false]], "getall() (arista.changecontrol.v1.services.gen_pb2_grpc.changecontrolconfigserviceservicer method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlConfigServiceServicer.GetAll", false]], "getall() (arista.changecontrol.v1.services.gen_pb2_grpc.changecontrolservice static method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlService.GetAll", false]], "getall() (arista.changecontrol.v1.services.gen_pb2_grpc.changecontrolserviceservicer method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlServiceServicer.GetAll", false]], "getall() (arista.configlet.v1.services.gen_pb2_grpc.configletassignmentconfigservice static method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentConfigService.GetAll", false]], "getall() (arista.configlet.v1.services.gen_pb2_grpc.configletassignmentconfigserviceservicer method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentConfigServiceServicer.GetAll", false]], "getall() (arista.configlet.v1.services.gen_pb2_grpc.configletassignmentservice static method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentService.GetAll", false]], "getall() (arista.configlet.v1.services.gen_pb2_grpc.configletassignmentserviceservicer method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentServiceServicer.GetAll", false]], "getall() (arista.configlet.v1.services.gen_pb2_grpc.configletconfigservice static method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletConfigService.GetAll", false]], "getall() (arista.configlet.v1.services.gen_pb2_grpc.configletconfigserviceservicer method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletConfigServiceServicer.GetAll", false]], "getall() (arista.configlet.v1.services.gen_pb2_grpc.configletservice static method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletService.GetAll", false]], "getall() (arista.configlet.v1.services.gen_pb2_grpc.configletserviceservicer method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletServiceServicer.GetAll", false]], "getall() (arista.configstatus.v1.services.gen_pb2_grpc.configdiffservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.ConfigDiffService.GetAll", false]], "getall() (arista.configstatus.v1.services.gen_pb2_grpc.configdiffserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.ConfigDiffServiceServicer.GetAll", false]], "getall() (arista.configstatus.v1.services.gen_pb2_grpc.configurationservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.ConfigurationService.GetAll", false]], "getall() (arista.configstatus.v1.services.gen_pb2_grpc.configurationserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.ConfigurationServiceServicer.GetAll", false]], "getall() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofilediffservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffService.GetAll", false]], "getall() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofilediffserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffServiceServicer.GetAll", false]], "getall() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofilediffsummaryservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffSummaryService.GetAll", false]], "getall() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofilediffsummaryserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffSummaryServiceServicer.GetAll", false]], "getall() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofileservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileService.GetAll", false]], "getall() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofileserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileServiceServicer.GetAll", false]], "getall() (arista.configstatus.v1.services.gen_pb2_grpc.summaryservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SummaryService.GetAll", false]], "getall() (arista.configstatus.v1.services.gen_pb2_grpc.summaryserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SummaryServiceServicer.GetAll", false]], "getall() (arista.connectivitymonitor.v1.services.gen_pb2_grpc.probeservice static method)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeService.GetAll", false]], "getall() (arista.connectivitymonitor.v1.services.gen_pb2_grpc.probeserviceservicer method)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeServiceServicer.GetAll", false]], "getall() (arista.connectivitymonitor.v1.services.gen_pb2_grpc.probestatsservice static method)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeStatsService.GetAll", false]], "getall() (arista.connectivitymonitor.v1.services.gen_pb2_grpc.probestatsserviceservicer method)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeStatsServiceServicer.GetAll", false]], "getall() (arista.dashboard.v1.services.gen_pb2_grpc.dashboardconfigservice static method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardConfigService.GetAll", false]], "getall() (arista.dashboard.v1.services.gen_pb2_grpc.dashboardconfigserviceservicer method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardConfigServiceServicer.GetAll", false]], "getall() (arista.dashboard.v1.services.gen_pb2_grpc.dashboardservice static method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardService.GetAll", false]], "getall() (arista.dashboard.v1.services.gen_pb2_grpc.dashboardserviceservicer method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardServiceServicer.GetAll", false]], "getall() (arista.dashboard.v1.services.gen_pb2_grpc.globaldashboardconfigservice static method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.GlobalDashboardConfigService.GetAll", false]], "getall() (arista.dashboard.v1.services.gen_pb2_grpc.globaldashboardconfigserviceservicer method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.GlobalDashboardConfigServiceServicer.GetAll", false]], "getall() (arista.endpointlocation.v1.services.gen_pb2_grpc.endpointlocationservice static method)": [[24, "arista.endpointlocation.v1.services.gen_pb2_grpc.EndpointLocationService.GetAll", false]], "getall() (arista.endpointlocation.v1.services.gen_pb2_grpc.endpointlocationserviceservicer method)": [[24, "arista.endpointlocation.v1.services.gen_pb2_grpc.EndpointLocationServiceServicer.GetAll", false]], "getall() (arista.event.v1.services.gen_pb2_grpc.eventannotationconfigservice static method)": [[27, "arista.event.v1.services.gen_pb2_grpc.EventAnnotationConfigService.GetAll", false]], "getall() (arista.event.v1.services.gen_pb2_grpc.eventannotationconfigserviceservicer method)": [[27, "arista.event.v1.services.gen_pb2_grpc.EventAnnotationConfigServiceServicer.GetAll", false]], "getall() (arista.event.v1.services.gen_pb2_grpc.eventservice static method)": [[27, "arista.event.v1.services.gen_pb2_grpc.EventService.GetAll", false]], "getall() (arista.event.v1.services.gen_pb2_grpc.eventserviceservicer method)": [[27, "arista.event.v1.services.gen_pb2_grpc.EventServiceServicer.GetAll", false]], "getall() (arista.event.v1.services.gen_pb2_grpc.usereventcreationconfigservice static method)": [[27, "arista.event.v1.services.gen_pb2_grpc.UserEventCreationConfigService.GetAll", false]], "getall() (arista.event.v1.services.gen_pb2_grpc.usereventcreationconfigserviceservicer method)": [[27, "arista.event.v1.services.gen_pb2_grpc.UserEventCreationConfigServiceServicer.GetAll", false]], "getall() (arista.identityprovider.v1.services.gen_pb2_grpc.oauthconfigservice static method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.OAuthConfigService.GetAll", false]], "getall() (arista.identityprovider.v1.services.gen_pb2_grpc.oauthconfigserviceservicer method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.OAuthConfigServiceServicer.GetAll", false]], "getall() (arista.identityprovider.v1.services.gen_pb2_grpc.samlconfigservice static method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.SAMLConfigService.GetAll", false]], "getall() (arista.identityprovider.v1.services.gen_pb2_grpc.samlconfigserviceservicer method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.SAMLConfigServiceServicer.GetAll", false]], "getall() (arista.imagestatus.v1.services.gen_pb2_grpc.summaryservice static method)": [[33, "arista.imagestatus.v1.services.gen_pb2_grpc.SummaryService.GetAll", false]], "getall() (arista.imagestatus.v1.services.gen_pb2_grpc.summaryserviceservicer method)": [[33, "arista.imagestatus.v1.services.gen_pb2_grpc.SummaryServiceServicer.GetAll", false]], "getall() (arista.inventory.v1.services.gen_pb2_grpc.devicedecommissioningconfigservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningConfigService.GetAll", false]], "getall() (arista.inventory.v1.services.gen_pb2_grpc.devicedecommissioningconfigserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningConfigServiceServicer.GetAll", false]], "getall() (arista.inventory.v1.services.gen_pb2_grpc.devicedecommissioningservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningService.GetAll", false]], "getall() (arista.inventory.v1.services.gen_pb2_grpc.devicedecommissioningserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningServiceServicer.GetAll", false]], "getall() (arista.inventory.v1.services.gen_pb2_grpc.deviceonboardingconfigservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingConfigService.GetAll", false]], "getall() (arista.inventory.v1.services.gen_pb2_grpc.deviceonboardingconfigserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingConfigServiceServicer.GetAll", false]], "getall() (arista.inventory.v1.services.gen_pb2_grpc.deviceonboardingservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingService.GetAll", false]], "getall() (arista.inventory.v1.services.gen_pb2_grpc.deviceonboardingserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingServiceServicer.GetAll", false]], "getall() (arista.inventory.v1.services.gen_pb2_grpc.deviceservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceService.GetAll", false]], "getall() (arista.inventory.v1.services.gen_pb2_grpc.deviceserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceServiceServicer.GetAll", false]], "getall() (arista.inventory.v1.services.gen_pb2_grpc.provisioneddeviceservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.ProvisionedDeviceService.GetAll", false]], "getall() (arista.inventory.v1.services.gen_pb2_grpc.provisioneddeviceserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.ProvisionedDeviceServiceServicer.GetAll", false]], "getall() (arista.lifecycle.v1.services.gen_pb2_grpc.devicelifecyclesummaryservice static method)": [[39, "arista.lifecycle.v1.services.gen_pb2_grpc.DeviceLifecycleSummaryService.GetAll", false]], "getall() (arista.lifecycle.v1.services.gen_pb2_grpc.devicelifecyclesummaryserviceservicer method)": [[39, "arista.lifecycle.v1.services.gen_pb2_grpc.DeviceLifecycleSummaryServiceServicer.GetAll", false]], "getall() (arista.redirector.v1.services.gen_pb2_grpc.assignmentservice static method)": [[42, "arista.redirector.v1.services.gen_pb2_grpc.AssignmentService.GetAll", false]], "getall() (arista.redirector.v1.services.gen_pb2_grpc.assignmentserviceservicer method)": [[42, "arista.redirector.v1.services.gen_pb2_grpc.AssignmentServiceServicer.GetAll", false]], "getall() (arista.serviceaccount.v1.services.gen_pb2_grpc.accountconfigservice static method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.AccountConfigService.GetAll", false]], "getall() (arista.serviceaccount.v1.services.gen_pb2_grpc.accountconfigserviceservicer method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.AccountConfigServiceServicer.GetAll", false]], "getall() (arista.serviceaccount.v1.services.gen_pb2_grpc.accountservice static method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.AccountService.GetAll", false]], "getall() (arista.serviceaccount.v1.services.gen_pb2_grpc.accountserviceservicer method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.AccountServiceServicer.GetAll", false]], "getall() (arista.serviceaccount.v1.services.gen_pb2_grpc.tokenconfigservice static method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.TokenConfigService.GetAll", false]], "getall() (arista.serviceaccount.v1.services.gen_pb2_grpc.tokenconfigserviceservicer method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.TokenConfigServiceServicer.GetAll", false]], "getall() (arista.serviceaccount.v1.services.gen_pb2_grpc.tokenservice static method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.TokenService.GetAll", false]], "getall() (arista.serviceaccount.v1.services.gen_pb2_grpc.tokenserviceservicer method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.TokenServiceServicer.GetAll", false]], "getall() (arista.studio.v1.services.gen_pb2_grpc.assignedtagsconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsConfigService.GetAll", false]], "getall() (arista.studio.v1.services.gen_pb2_grpc.assignedtagsconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsConfigServiceServicer.GetAll", false]], "getall() (arista.studio.v1.services.gen_pb2_grpc.assignedtagsservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsService.GetAll", false]], "getall() (arista.studio.v1.services.gen_pb2_grpc.assignedtagsserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsServiceServicer.GetAll", false]], "getall() (arista.studio.v1.services.gen_pb2_grpc.autofillactionconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionConfigService.GetAll", false]], "getall() (arista.studio.v1.services.gen_pb2_grpc.autofillactionconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionConfigServiceServicer.GetAll", false]], "getall() (arista.studio.v1.services.gen_pb2_grpc.autofillactionservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionService.GetAll", false]], "getall() (arista.studio.v1.services.gen_pb2_grpc.autofillactionserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionServiceServicer.GetAll", false]], "getall() (arista.studio.v1.services.gen_pb2_grpc.inputsconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsConfigService.GetAll", false]], "getall() (arista.studio.v1.services.gen_pb2_grpc.inputsconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsConfigServiceServicer.GetAll", false]], "getall() (arista.studio.v1.services.gen_pb2_grpc.inputsservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsService.GetAll", false]], "getall() (arista.studio.v1.services.gen_pb2_grpc.inputsserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsServiceServicer.GetAll", false]], "getall() (arista.studio.v1.services.gen_pb2_grpc.secretinputservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.SecretInputService.GetAll", false]], "getall() (arista.studio.v1.services.gen_pb2_grpc.secretinputserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.SecretInputServiceServicer.GetAll", false]], "getall() (arista.studio.v1.services.gen_pb2_grpc.studioconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioConfigService.GetAll", false]], "getall() (arista.studio.v1.services.gen_pb2_grpc.studioconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioConfigServiceServicer.GetAll", false]], "getall() (arista.studio.v1.services.gen_pb2_grpc.studioservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioService.GetAll", false]], "getall() (arista.studio.v1.services.gen_pb2_grpc.studioserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioServiceServicer.GetAll", false]], "getall() (arista.studio.v1.services.gen_pb2_grpc.studiosummaryservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioSummaryService.GetAll", false]], "getall() (arista.studio.v1.services.gen_pb2_grpc.studiosummaryserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioSummaryServiceServicer.GetAll", false]], "getall() (arista.tag.v2.services.gen_pb2_grpc.tagassignmentconfigservice static method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentConfigService.GetAll", false]], "getall() (arista.tag.v2.services.gen_pb2_grpc.tagassignmentconfigserviceservicer method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentConfigServiceServicer.GetAll", false]], "getall() (arista.tag.v2.services.gen_pb2_grpc.tagassignmentservice static method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentService.GetAll", false]], "getall() (arista.tag.v2.services.gen_pb2_grpc.tagassignmentserviceservicer method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentServiceServicer.GetAll", false]], "getall() (arista.tag.v2.services.gen_pb2_grpc.tagconfigservice static method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagConfigService.GetAll", false]], "getall() (arista.tag.v2.services.gen_pb2_grpc.tagconfigserviceservicer method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagConfigServiceServicer.GetAll", false]], "getall() (arista.tag.v2.services.gen_pb2_grpc.tagservice static method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagService.GetAll", false]], "getall() (arista.tag.v2.services.gen_pb2_grpc.tagserviceservicer method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagServiceServicer.GetAll", false]], "getall() (arista.workspace.v1.services.gen_pb2_grpc.workspacebuilddetailsservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildDetailsService.GetAll", false]], "getall() (arista.workspace.v1.services.gen_pb2_grpc.workspacebuilddetailsserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildDetailsServiceServicer.GetAll", false]], "getall() (arista.workspace.v1.services.gen_pb2_grpc.workspacebuildservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildService.GetAll", false]], "getall() (arista.workspace.v1.services.gen_pb2_grpc.workspacebuildserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildServiceServicer.GetAll", false]], "getall() (arista.workspace.v1.services.gen_pb2_grpc.workspaceconfigservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceConfigService.GetAll", false]], "getall() (arista.workspace.v1.services.gen_pb2_grpc.workspaceconfigserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceConfigServiceServicer.GetAll", false]], "getall() (arista.workspace.v1.services.gen_pb2_grpc.workspaceservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceService.GetAll", false]], "getall() (arista.workspace.v1.services.gen_pb2_grpc.workspaceserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceServiceServicer.GetAll", false]], "getall() (arista.workspace.v1.services.gen_pb2_grpc.workspacesyncconfigservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceSyncConfigService.GetAll", false]], "getall() (arista.workspace.v1.services.gen_pb2_grpc.workspacesyncconfigserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceSyncConfigServiceServicer.GetAll", false]], "getallbatched() (arista.alert.v1.services.gen_pb2_grpc.defaulttemplateservice static method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.DefaultTemplateService.GetAllBatched", false]], "getallbatched() (arista.alert.v1.services.gen_pb2_grpc.defaulttemplateserviceservicer method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.DefaultTemplateServiceServicer.GetAllBatched", false]], "getallbatched() (arista.alert.v1.services.gen_pb2_grpc.templateconfigservice static method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.TemplateConfigService.GetAllBatched", false]], "getallbatched() (arista.alert.v1.services.gen_pb2_grpc.templateconfigserviceservicer method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.TemplateConfigServiceServicer.GetAllBatched", false]], "getallbatched() (arista.changecontrol.v1.services.gen_pb2_grpc.approveconfigservice static method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ApproveConfigService.GetAllBatched", false]], "getallbatched() (arista.changecontrol.v1.services.gen_pb2_grpc.approveconfigserviceservicer method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ApproveConfigServiceServicer.GetAllBatched", false]], "getallbatched() (arista.changecontrol.v1.services.gen_pb2_grpc.changecontrolconfigservice static method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlConfigService.GetAllBatched", false]], "getallbatched() (arista.changecontrol.v1.services.gen_pb2_grpc.changecontrolconfigserviceservicer method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlConfigServiceServicer.GetAllBatched", false]], "getallbatched() (arista.changecontrol.v1.services.gen_pb2_grpc.changecontrolservice static method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlService.GetAllBatched", false]], "getallbatched() (arista.changecontrol.v1.services.gen_pb2_grpc.changecontrolserviceservicer method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlServiceServicer.GetAllBatched", false]], "getallbatched() (arista.configlet.v1.services.gen_pb2_grpc.configletassignmentconfigservice static method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentConfigService.GetAllBatched", false]], "getallbatched() (arista.configlet.v1.services.gen_pb2_grpc.configletassignmentconfigserviceservicer method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentConfigServiceServicer.GetAllBatched", false]], "getallbatched() (arista.configlet.v1.services.gen_pb2_grpc.configletassignmentservice static method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentService.GetAllBatched", false]], "getallbatched() (arista.configlet.v1.services.gen_pb2_grpc.configletassignmentserviceservicer method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentServiceServicer.GetAllBatched", false]], "getallbatched() (arista.configlet.v1.services.gen_pb2_grpc.configletconfigservice static method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletConfigService.GetAllBatched", false]], "getallbatched() (arista.configlet.v1.services.gen_pb2_grpc.configletconfigserviceservicer method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletConfigServiceServicer.GetAllBatched", false]], "getallbatched() (arista.configlet.v1.services.gen_pb2_grpc.configletservice static method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletService.GetAllBatched", false]], "getallbatched() (arista.configlet.v1.services.gen_pb2_grpc.configletserviceservicer method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletServiceServicer.GetAllBatched", false]], "getallbatched() (arista.configstatus.v1.services.gen_pb2_grpc.configdiffservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.ConfigDiffService.GetAllBatched", false]], "getallbatched() (arista.configstatus.v1.services.gen_pb2_grpc.configdiffserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.ConfigDiffServiceServicer.GetAllBatched", false]], "getallbatched() (arista.configstatus.v1.services.gen_pb2_grpc.configurationservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.ConfigurationService.GetAllBatched", false]], "getallbatched() (arista.configstatus.v1.services.gen_pb2_grpc.configurationserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.ConfigurationServiceServicer.GetAllBatched", false]], "getallbatched() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofilediffservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffService.GetAllBatched", false]], "getallbatched() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofilediffserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffServiceServicer.GetAllBatched", false]], "getallbatched() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofilediffsummaryservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffSummaryService.GetAllBatched", false]], "getallbatched() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofilediffsummaryserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffSummaryServiceServicer.GetAllBatched", false]], "getallbatched() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofileservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileService.GetAllBatched", false]], "getallbatched() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofileserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileServiceServicer.GetAllBatched", false]], "getallbatched() (arista.configstatus.v1.services.gen_pb2_grpc.summaryservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SummaryService.GetAllBatched", false]], "getallbatched() (arista.configstatus.v1.services.gen_pb2_grpc.summaryserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SummaryServiceServicer.GetAllBatched", false]], "getallbatched() (arista.connectivitymonitor.v1.services.gen_pb2_grpc.probeservice static method)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeService.GetAllBatched", false]], "getallbatched() (arista.connectivitymonitor.v1.services.gen_pb2_grpc.probeserviceservicer method)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeServiceServicer.GetAllBatched", false]], "getallbatched() (arista.connectivitymonitor.v1.services.gen_pb2_grpc.probestatsservice static method)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeStatsService.GetAllBatched", false]], "getallbatched() (arista.connectivitymonitor.v1.services.gen_pb2_grpc.probestatsserviceservicer method)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeStatsServiceServicer.GetAllBatched", false]], "getallbatched() (arista.dashboard.v1.services.gen_pb2_grpc.dashboardconfigservice static method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardConfigService.GetAllBatched", false]], "getallbatched() (arista.dashboard.v1.services.gen_pb2_grpc.dashboardconfigserviceservicer method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardConfigServiceServicer.GetAllBatched", false]], "getallbatched() (arista.dashboard.v1.services.gen_pb2_grpc.dashboardservice static method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardService.GetAllBatched", false]], "getallbatched() (arista.dashboard.v1.services.gen_pb2_grpc.dashboardserviceservicer method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardServiceServicer.GetAllBatched", false]], "getallbatched() (arista.dashboard.v1.services.gen_pb2_grpc.globaldashboardconfigservice static method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.GlobalDashboardConfigService.GetAllBatched", false]], "getallbatched() (arista.dashboard.v1.services.gen_pb2_grpc.globaldashboardconfigserviceservicer method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.GlobalDashboardConfigServiceServicer.GetAllBatched", false]], "getallbatched() (arista.endpointlocation.v1.services.gen_pb2_grpc.endpointlocationservice static method)": [[24, "arista.endpointlocation.v1.services.gen_pb2_grpc.EndpointLocationService.GetAllBatched", false]], "getallbatched() (arista.endpointlocation.v1.services.gen_pb2_grpc.endpointlocationserviceservicer method)": [[24, "arista.endpointlocation.v1.services.gen_pb2_grpc.EndpointLocationServiceServicer.GetAllBatched", false]], "getallbatched() (arista.identityprovider.v1.services.gen_pb2_grpc.oauthconfigservice static method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.OAuthConfigService.GetAllBatched", false]], "getallbatched() (arista.identityprovider.v1.services.gen_pb2_grpc.oauthconfigserviceservicer method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.OAuthConfigServiceServicer.GetAllBatched", false]], "getallbatched() (arista.identityprovider.v1.services.gen_pb2_grpc.samlconfigservice static method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.SAMLConfigService.GetAllBatched", false]], "getallbatched() (arista.identityprovider.v1.services.gen_pb2_grpc.samlconfigserviceservicer method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.SAMLConfigServiceServicer.GetAllBatched", false]], "getallbatched() (arista.imagestatus.v1.services.gen_pb2_grpc.summaryservice static method)": [[33, "arista.imagestatus.v1.services.gen_pb2_grpc.SummaryService.GetAllBatched", false]], "getallbatched() (arista.imagestatus.v1.services.gen_pb2_grpc.summaryserviceservicer method)": [[33, "arista.imagestatus.v1.services.gen_pb2_grpc.SummaryServiceServicer.GetAllBatched", false]], "getallbatched() (arista.inventory.v1.services.gen_pb2_grpc.devicedecommissioningconfigservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningConfigService.GetAllBatched", false]], "getallbatched() (arista.inventory.v1.services.gen_pb2_grpc.devicedecommissioningconfigserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningConfigServiceServicer.GetAllBatched", false]], "getallbatched() (arista.inventory.v1.services.gen_pb2_grpc.devicedecommissioningservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningService.GetAllBatched", false]], "getallbatched() (arista.inventory.v1.services.gen_pb2_grpc.devicedecommissioningserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningServiceServicer.GetAllBatched", false]], "getallbatched() (arista.inventory.v1.services.gen_pb2_grpc.deviceonboardingconfigservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingConfigService.GetAllBatched", false]], "getallbatched() (arista.inventory.v1.services.gen_pb2_grpc.deviceonboardingconfigserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingConfigServiceServicer.GetAllBatched", false]], "getallbatched() (arista.inventory.v1.services.gen_pb2_grpc.deviceonboardingservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingService.GetAllBatched", false]], "getallbatched() (arista.inventory.v1.services.gen_pb2_grpc.deviceonboardingserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingServiceServicer.GetAllBatched", false]], "getallbatched() (arista.inventory.v1.services.gen_pb2_grpc.deviceservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceService.GetAllBatched", false]], "getallbatched() (arista.inventory.v1.services.gen_pb2_grpc.deviceserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceServiceServicer.GetAllBatched", false]], "getallbatched() (arista.inventory.v1.services.gen_pb2_grpc.provisioneddeviceservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.ProvisionedDeviceService.GetAllBatched", false]], "getallbatched() (arista.inventory.v1.services.gen_pb2_grpc.provisioneddeviceserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.ProvisionedDeviceServiceServicer.GetAllBatched", false]], "getallbatched() (arista.redirector.v1.services.gen_pb2_grpc.assignmentservice static method)": [[42, "arista.redirector.v1.services.gen_pb2_grpc.AssignmentService.GetAllBatched", false]], "getallbatched() (arista.redirector.v1.services.gen_pb2_grpc.assignmentserviceservicer method)": [[42, "arista.redirector.v1.services.gen_pb2_grpc.AssignmentServiceServicer.GetAllBatched", false]], "getallbatched() (arista.studio.v1.services.gen_pb2_grpc.assignedtagsconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsConfigService.GetAllBatched", false]], "getallbatched() (arista.studio.v1.services.gen_pb2_grpc.assignedtagsconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsConfigServiceServicer.GetAllBatched", false]], "getallbatched() (arista.studio.v1.services.gen_pb2_grpc.assignedtagsservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsService.GetAllBatched", false]], "getallbatched() (arista.studio.v1.services.gen_pb2_grpc.assignedtagsserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsServiceServicer.GetAllBatched", false]], "getallbatched() (arista.studio.v1.services.gen_pb2_grpc.autofillactionconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionConfigService.GetAllBatched", false]], "getallbatched() (arista.studio.v1.services.gen_pb2_grpc.autofillactionconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionConfigServiceServicer.GetAllBatched", false]], "getallbatched() (arista.studio.v1.services.gen_pb2_grpc.autofillactionservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionService.GetAllBatched", false]], "getallbatched() (arista.studio.v1.services.gen_pb2_grpc.autofillactionserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionServiceServicer.GetAllBatched", false]], "getallbatched() (arista.studio.v1.services.gen_pb2_grpc.inputsconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsConfigService.GetAllBatched", false]], "getallbatched() (arista.studio.v1.services.gen_pb2_grpc.inputsconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsConfigServiceServicer.GetAllBatched", false]], "getallbatched() (arista.studio.v1.services.gen_pb2_grpc.inputsservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsService.GetAllBatched", false]], "getallbatched() (arista.studio.v1.services.gen_pb2_grpc.inputsserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsServiceServicer.GetAllBatched", false]], "getallbatched() (arista.studio.v1.services.gen_pb2_grpc.secretinputservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.SecretInputService.GetAllBatched", false]], "getallbatched() (arista.studio.v1.services.gen_pb2_grpc.secretinputserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.SecretInputServiceServicer.GetAllBatched", false]], "getallbatched() (arista.studio.v1.services.gen_pb2_grpc.studioconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioConfigService.GetAllBatched", false]], "getallbatched() (arista.studio.v1.services.gen_pb2_grpc.studioconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioConfigServiceServicer.GetAllBatched", false]], "getallbatched() (arista.studio.v1.services.gen_pb2_grpc.studioservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioService.GetAllBatched", false]], "getallbatched() (arista.studio.v1.services.gen_pb2_grpc.studioserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioServiceServicer.GetAllBatched", false]], "getallbatched() (arista.studio.v1.services.gen_pb2_grpc.studiosummaryservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioSummaryService.GetAllBatched", false]], "getallbatched() (arista.studio.v1.services.gen_pb2_grpc.studiosummaryserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioSummaryServiceServicer.GetAllBatched", false]], "getallbatched() (arista.tag.v2.services.gen_pb2_grpc.tagassignmentconfigservice static method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentConfigService.GetAllBatched", false]], "getallbatched() (arista.tag.v2.services.gen_pb2_grpc.tagassignmentconfigserviceservicer method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentConfigServiceServicer.GetAllBatched", false]], "getallbatched() (arista.tag.v2.services.gen_pb2_grpc.tagassignmentservice static method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentService.GetAllBatched", false]], "getallbatched() (arista.tag.v2.services.gen_pb2_grpc.tagassignmentserviceservicer method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentServiceServicer.GetAllBatched", false]], "getallbatched() (arista.tag.v2.services.gen_pb2_grpc.tagconfigservice static method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagConfigService.GetAllBatched", false]], "getallbatched() (arista.tag.v2.services.gen_pb2_grpc.tagconfigserviceservicer method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagConfigServiceServicer.GetAllBatched", false]], "getallbatched() (arista.tag.v2.services.gen_pb2_grpc.tagservice static method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagService.GetAllBatched", false]], "getallbatched() (arista.tag.v2.services.gen_pb2_grpc.tagserviceservicer method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagServiceServicer.GetAllBatched", false]], "getallbatched() (arista.workspace.v1.services.gen_pb2_grpc.workspacebuilddetailsservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildDetailsService.GetAllBatched", false]], "getallbatched() (arista.workspace.v1.services.gen_pb2_grpc.workspacebuilddetailsserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildDetailsServiceServicer.GetAllBatched", false]], "getallbatched() (arista.workspace.v1.services.gen_pb2_grpc.workspacebuildservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildService.GetAllBatched", false]], "getallbatched() (arista.workspace.v1.services.gen_pb2_grpc.workspacebuildserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildServiceServicer.GetAllBatched", false]], "getallbatched() (arista.workspace.v1.services.gen_pb2_grpc.workspaceconfigservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceConfigService.GetAllBatched", false]], "getallbatched() (arista.workspace.v1.services.gen_pb2_grpc.workspaceconfigserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceConfigServiceServicer.GetAllBatched", false]], "getallbatched() (arista.workspace.v1.services.gen_pb2_grpc.workspaceservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceService.GetAllBatched", false]], "getallbatched() (arista.workspace.v1.services.gen_pb2_grpc.workspaceserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceServiceServicer.GetAllBatched", false]], "getallbatched() (arista.workspace.v1.services.gen_pb2_grpc.workspacesyncconfigservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceSyncConfigService.GetAllBatched", false]], "getallbatched() (arista.workspace.v1.services.gen_pb2_grpc.workspacesyncconfigserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceSyncConfigServiceServicer.GetAllBatched", false]], "getallocated() (cloudvision.cvlib.id_allocator.idallocator method)": [[65, "cloudvision.cvlib.id_allocator.IdAllocator.getAllocated", false]], "getandsubscribe() (cloudvision.connector.gen.router_pb2_grpc.routerv1 static method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.RouterV1.GetAndSubscribe", false]], "getandsubscribe() (cloudvision.connector.gen.router_pb2_grpc.routerv1servicer method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.RouterV1Servicer.GetAndSubscribe", false]], "getapiclient() (cloudvision.cvlib.context.context method)": [[65, "cloudvision.cvlib.context.Context.getApiClient", false]], "getavailable() (cloudvision.cvlib.id_allocator.idallocator method)": [[65, "cloudvision.cvlib.id_allocator.IdAllocator.getAvailable", false]], "getccstarttime() (cloudvision.cvlib.action.action method)": [[65, "cloudvision.cvlib.action.Action.getCCStartTime", false]], "getcvclient() (cloudvision.cvlib.context.context method)": [[65, "cloudvision.cvlib.context.Context.getCvClient", false]], "getdatasets() (cloudvision.connector.gen.router_pb2_grpc.routerv1 static method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.RouterV1.GetDatasets", false]], "getdatasets() (cloudvision.connector.gen.router_pb2_grpc.routerv1servicer method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.RouterV1Servicer.GetDatasets", false]], "getdevice() (cloudvision.cvlib.context.context method)": [[65, "cloudvision.cvlib.context.Context.getDevice", false]], "getdevice() (cloudvision.cvlib.device.interface method)": [[65, "cloudvision.cvlib.device.Interface.getDevice", false]], "getdevicehostname() (cloudvision.cvlib.context.context method)": [[65, "cloudvision.cvlib.context.Context.getDeviceHostname", false]], "getdevices() (cloudvision.cvlib.topology.topology method)": [[65, "cloudvision.cvlib.topology.Topology.getDevices", false]], "getdevicesbytag() (cloudvision.cvlib.context.context method)": [[65, "cloudvision.cvlib.context.Context.getDevicesByTag", false]], "getidnames() (cloudvision.cvlib.id_allocator.idallocator method)": [[65, "cloudvision.cvlib.id_allocator.IdAllocator.getIdNames", false]], "getinterface() (cloudvision.cvlib.device.device method)": [[65, "cloudvision.cvlib.device.Device.getInterface", false]], "getinterfaces() (cloudvision.cvlib.device.device method)": [[65, "cloudvision.cvlib.device.Device.getInterfaces", false]], "getinterfacesbytag() (cloudvision.cvlib.context.context method)": [[65, "cloudvision.cvlib.context.Context.getInterfacesByTag", false]], "getinterfacesbytag() (cloudvision.cvlib.device.device method)": [[65, "cloudvision.cvlib.device.Device.getInterfacesByTag", false]], "getlogginglevel() (cloudvision.cvlib.context.context method)": [[65, "cloudvision.cvlib.context.Context.getLoggingLevel", false]], "getmeta() (arista.alert.v1.services.gen_pb2_grpc.defaulttemplateservice static method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.DefaultTemplateService.GetMeta", false]], "getmeta() (arista.alert.v1.services.gen_pb2_grpc.defaulttemplateserviceservicer method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.DefaultTemplateServiceServicer.GetMeta", false]], "getmeta() (arista.alert.v1.services.gen_pb2_grpc.templateconfigservice static method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.TemplateConfigService.GetMeta", false]], "getmeta() (arista.alert.v1.services.gen_pb2_grpc.templateconfigserviceservicer method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.TemplateConfigServiceServicer.GetMeta", false]], "getmeta() (arista.bugexposure.v1.services.gen_pb2_grpc.bugexposureservice static method)": [[6, "arista.bugexposure.v1.services.gen_pb2_grpc.BugExposureService.GetMeta", false]], "getmeta() (arista.bugexposure.v1.services.gen_pb2_grpc.bugexposureserviceservicer method)": [[6, "arista.bugexposure.v1.services.gen_pb2_grpc.BugExposureServiceServicer.GetMeta", false]], "getmeta() (arista.changecontrol.v1.services.gen_pb2_grpc.approveconfigservice static method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ApproveConfigService.GetMeta", false]], "getmeta() (arista.changecontrol.v1.services.gen_pb2_grpc.approveconfigserviceservicer method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ApproveConfigServiceServicer.GetMeta", false]], "getmeta() (arista.changecontrol.v1.services.gen_pb2_grpc.changecontrolconfigservice static method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlConfigService.GetMeta", false]], "getmeta() (arista.changecontrol.v1.services.gen_pb2_grpc.changecontrolconfigserviceservicer method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlConfigServiceServicer.GetMeta", false]], "getmeta() (arista.changecontrol.v1.services.gen_pb2_grpc.changecontrolservice static method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlService.GetMeta", false]], "getmeta() (arista.changecontrol.v1.services.gen_pb2_grpc.changecontrolserviceservicer method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlServiceServicer.GetMeta", false]], "getmeta() (arista.configlet.v1.services.gen_pb2_grpc.configletassignmentconfigservice static method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentConfigService.GetMeta", false]], "getmeta() (arista.configlet.v1.services.gen_pb2_grpc.configletassignmentconfigserviceservicer method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentConfigServiceServicer.GetMeta", false]], "getmeta() (arista.configlet.v1.services.gen_pb2_grpc.configletassignmentservice static method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentService.GetMeta", false]], "getmeta() (arista.configlet.v1.services.gen_pb2_grpc.configletassignmentserviceservicer method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentServiceServicer.GetMeta", false]], "getmeta() (arista.configlet.v1.services.gen_pb2_grpc.configletconfigservice static method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletConfigService.GetMeta", false]], "getmeta() (arista.configlet.v1.services.gen_pb2_grpc.configletconfigserviceservicer method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletConfigServiceServicer.GetMeta", false]], "getmeta() (arista.configlet.v1.services.gen_pb2_grpc.configletservice static method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletService.GetMeta", false]], "getmeta() (arista.configlet.v1.services.gen_pb2_grpc.configletserviceservicer method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletServiceServicer.GetMeta", false]], "getmeta() (arista.configstatus.v1.services.gen_pb2_grpc.configdiffservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.ConfigDiffService.GetMeta", false]], "getmeta() (arista.configstatus.v1.services.gen_pb2_grpc.configdiffserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.ConfigDiffServiceServicer.GetMeta", false]], "getmeta() (arista.configstatus.v1.services.gen_pb2_grpc.configurationservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.ConfigurationService.GetMeta", false]], "getmeta() (arista.configstatus.v1.services.gen_pb2_grpc.configurationserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.ConfigurationServiceServicer.GetMeta", false]], "getmeta() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofilediffservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffService.GetMeta", false]], "getmeta() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofilediffserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffServiceServicer.GetMeta", false]], "getmeta() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofilediffsummaryservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffSummaryService.GetMeta", false]], "getmeta() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofilediffsummaryserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffSummaryServiceServicer.GetMeta", false]], "getmeta() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofileservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileService.GetMeta", false]], "getmeta() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofileserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileServiceServicer.GetMeta", false]], "getmeta() (arista.configstatus.v1.services.gen_pb2_grpc.summaryservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SummaryService.GetMeta", false]], "getmeta() (arista.configstatus.v1.services.gen_pb2_grpc.summaryserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SummaryServiceServicer.GetMeta", false]], "getmeta() (arista.connectivitymonitor.v1.services.gen_pb2_grpc.probeservice static method)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeService.GetMeta", false]], "getmeta() (arista.connectivitymonitor.v1.services.gen_pb2_grpc.probeserviceservicer method)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeServiceServicer.GetMeta", false]], "getmeta() (arista.connectivitymonitor.v1.services.gen_pb2_grpc.probestatsservice static method)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeStatsService.GetMeta", false]], "getmeta() (arista.connectivitymonitor.v1.services.gen_pb2_grpc.probestatsserviceservicer method)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeStatsServiceServicer.GetMeta", false]], "getmeta() (arista.dashboard.v1.services.gen_pb2_grpc.dashboardconfigservice static method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardConfigService.GetMeta", false]], "getmeta() (arista.dashboard.v1.services.gen_pb2_grpc.dashboardconfigserviceservicer method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardConfigServiceServicer.GetMeta", false]], "getmeta() (arista.dashboard.v1.services.gen_pb2_grpc.dashboardservice static method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardService.GetMeta", false]], "getmeta() (arista.dashboard.v1.services.gen_pb2_grpc.dashboardserviceservicer method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardServiceServicer.GetMeta", false]], "getmeta() (arista.endpointlocation.v1.services.gen_pb2_grpc.endpointlocationservice static method)": [[24, "arista.endpointlocation.v1.services.gen_pb2_grpc.EndpointLocationService.GetMeta", false]], "getmeta() (arista.endpointlocation.v1.services.gen_pb2_grpc.endpointlocationserviceservicer method)": [[24, "arista.endpointlocation.v1.services.gen_pb2_grpc.EndpointLocationServiceServicer.GetMeta", false]], "getmeta() (arista.event.v1.services.gen_pb2_grpc.eventannotationconfigservice static method)": [[27, "arista.event.v1.services.gen_pb2_grpc.EventAnnotationConfigService.GetMeta", false]], "getmeta() (arista.event.v1.services.gen_pb2_grpc.eventannotationconfigserviceservicer method)": [[27, "arista.event.v1.services.gen_pb2_grpc.EventAnnotationConfigServiceServicer.GetMeta", false]], "getmeta() (arista.event.v1.services.gen_pb2_grpc.eventservice static method)": [[27, "arista.event.v1.services.gen_pb2_grpc.EventService.GetMeta", false]], "getmeta() (arista.event.v1.services.gen_pb2_grpc.eventserviceservicer method)": [[27, "arista.event.v1.services.gen_pb2_grpc.EventServiceServicer.GetMeta", false]], "getmeta() (arista.event.v1.services.gen_pb2_grpc.usereventcreationconfigservice static method)": [[27, "arista.event.v1.services.gen_pb2_grpc.UserEventCreationConfigService.GetMeta", false]], "getmeta() (arista.event.v1.services.gen_pb2_grpc.usereventcreationconfigserviceservicer method)": [[27, "arista.event.v1.services.gen_pb2_grpc.UserEventCreationConfigServiceServicer.GetMeta", false]], "getmeta() (arista.identityprovider.v1.services.gen_pb2_grpc.oauthconfigservice static method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.OAuthConfigService.GetMeta", false]], "getmeta() (arista.identityprovider.v1.services.gen_pb2_grpc.oauthconfigserviceservicer method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.OAuthConfigServiceServicer.GetMeta", false]], "getmeta() (arista.identityprovider.v1.services.gen_pb2_grpc.samlconfigservice static method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.SAMLConfigService.GetMeta", false]], "getmeta() (arista.identityprovider.v1.services.gen_pb2_grpc.samlconfigserviceservicer method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.SAMLConfigServiceServicer.GetMeta", false]], "getmeta() (arista.imagestatus.v1.services.gen_pb2_grpc.summaryservice static method)": [[33, "arista.imagestatus.v1.services.gen_pb2_grpc.SummaryService.GetMeta", false]], "getmeta() (arista.imagestatus.v1.services.gen_pb2_grpc.summaryserviceservicer method)": [[33, "arista.imagestatus.v1.services.gen_pb2_grpc.SummaryServiceServicer.GetMeta", false]], "getmeta() (arista.inventory.v1.services.gen_pb2_grpc.devicedecommissioningconfigservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningConfigService.GetMeta", false]], "getmeta() (arista.inventory.v1.services.gen_pb2_grpc.devicedecommissioningconfigserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningConfigServiceServicer.GetMeta", false]], "getmeta() (arista.inventory.v1.services.gen_pb2_grpc.devicedecommissioningservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningService.GetMeta", false]], "getmeta() (arista.inventory.v1.services.gen_pb2_grpc.devicedecommissioningserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningServiceServicer.GetMeta", false]], "getmeta() (arista.inventory.v1.services.gen_pb2_grpc.deviceonboardingconfigservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingConfigService.GetMeta", false]], "getmeta() (arista.inventory.v1.services.gen_pb2_grpc.deviceonboardingconfigserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingConfigServiceServicer.GetMeta", false]], "getmeta() (arista.inventory.v1.services.gen_pb2_grpc.deviceonboardingservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingService.GetMeta", false]], "getmeta() (arista.inventory.v1.services.gen_pb2_grpc.deviceonboardingserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingServiceServicer.GetMeta", false]], "getmeta() (arista.inventory.v1.services.gen_pb2_grpc.deviceservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceService.GetMeta", false]], "getmeta() (arista.inventory.v1.services.gen_pb2_grpc.deviceserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceServiceServicer.GetMeta", false]], "getmeta() (arista.inventory.v1.services.gen_pb2_grpc.provisioneddeviceservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.ProvisionedDeviceService.GetMeta", false]], "getmeta() (arista.inventory.v1.services.gen_pb2_grpc.provisioneddeviceserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.ProvisionedDeviceServiceServicer.GetMeta", false]], "getmeta() (arista.lifecycle.v1.services.gen_pb2_grpc.devicelifecyclesummaryservice static method)": [[39, "arista.lifecycle.v1.services.gen_pb2_grpc.DeviceLifecycleSummaryService.GetMeta", false]], "getmeta() (arista.lifecycle.v1.services.gen_pb2_grpc.devicelifecyclesummaryserviceservicer method)": [[39, "arista.lifecycle.v1.services.gen_pb2_grpc.DeviceLifecycleSummaryServiceServicer.GetMeta", false]], "getmeta() (arista.redirector.v1.services.gen_pb2_grpc.assignmentservice static method)": [[42, "arista.redirector.v1.services.gen_pb2_grpc.AssignmentService.GetMeta", false]], "getmeta() (arista.redirector.v1.services.gen_pb2_grpc.assignmentserviceservicer method)": [[42, "arista.redirector.v1.services.gen_pb2_grpc.AssignmentServiceServicer.GetMeta", false]], "getmeta() (arista.serviceaccount.v1.services.gen_pb2_grpc.accountconfigservice static method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.AccountConfigService.GetMeta", false]], "getmeta() (arista.serviceaccount.v1.services.gen_pb2_grpc.accountconfigserviceservicer method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.AccountConfigServiceServicer.GetMeta", false]], "getmeta() (arista.serviceaccount.v1.services.gen_pb2_grpc.accountservice static method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.AccountService.GetMeta", false]], "getmeta() (arista.serviceaccount.v1.services.gen_pb2_grpc.accountserviceservicer method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.AccountServiceServicer.GetMeta", false]], "getmeta() (arista.serviceaccount.v1.services.gen_pb2_grpc.tokenconfigservice static method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.TokenConfigService.GetMeta", false]], "getmeta() (arista.serviceaccount.v1.services.gen_pb2_grpc.tokenconfigserviceservicer method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.TokenConfigServiceServicer.GetMeta", false]], "getmeta() (arista.serviceaccount.v1.services.gen_pb2_grpc.tokenservice static method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.TokenService.GetMeta", false]], "getmeta() (arista.serviceaccount.v1.services.gen_pb2_grpc.tokenserviceservicer method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.TokenServiceServicer.GetMeta", false]], "getmeta() (arista.studio.v1.services.gen_pb2_grpc.assignedtagsconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsConfigService.GetMeta", false]], "getmeta() (arista.studio.v1.services.gen_pb2_grpc.assignedtagsconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsConfigServiceServicer.GetMeta", false]], "getmeta() (arista.studio.v1.services.gen_pb2_grpc.assignedtagsservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsService.GetMeta", false]], "getmeta() (arista.studio.v1.services.gen_pb2_grpc.assignedtagsserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsServiceServicer.GetMeta", false]], "getmeta() (arista.studio.v1.services.gen_pb2_grpc.autofillactionconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionConfigService.GetMeta", false]], "getmeta() (arista.studio.v1.services.gen_pb2_grpc.autofillactionconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionConfigServiceServicer.GetMeta", false]], "getmeta() (arista.studio.v1.services.gen_pb2_grpc.autofillactionservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionService.GetMeta", false]], "getmeta() (arista.studio.v1.services.gen_pb2_grpc.autofillactionserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionServiceServicer.GetMeta", false]], "getmeta() (arista.studio.v1.services.gen_pb2_grpc.inputsconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsConfigService.GetMeta", false]], "getmeta() (arista.studio.v1.services.gen_pb2_grpc.inputsconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsConfigServiceServicer.GetMeta", false]], "getmeta() (arista.studio.v1.services.gen_pb2_grpc.inputsservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsService.GetMeta", false]], "getmeta() (arista.studio.v1.services.gen_pb2_grpc.inputsserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsServiceServicer.GetMeta", false]], "getmeta() (arista.studio.v1.services.gen_pb2_grpc.secretinputservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.SecretInputService.GetMeta", false]], "getmeta() (arista.studio.v1.services.gen_pb2_grpc.secretinputserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.SecretInputServiceServicer.GetMeta", false]], "getmeta() (arista.studio.v1.services.gen_pb2_grpc.studioconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioConfigService.GetMeta", false]], "getmeta() (arista.studio.v1.services.gen_pb2_grpc.studioconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioConfigServiceServicer.GetMeta", false]], "getmeta() (arista.studio.v1.services.gen_pb2_grpc.studioservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioService.GetMeta", false]], "getmeta() (arista.studio.v1.services.gen_pb2_grpc.studioserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioServiceServicer.GetMeta", false]], "getmeta() (arista.studio.v1.services.gen_pb2_grpc.studiosummaryservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioSummaryService.GetMeta", false]], "getmeta() (arista.studio.v1.services.gen_pb2_grpc.studiosummaryserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioSummaryServiceServicer.GetMeta", false]], "getmeta() (arista.tag.v2.services.gen_pb2_grpc.tagassignmentconfigservice static method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentConfigService.GetMeta", false]], "getmeta() (arista.tag.v2.services.gen_pb2_grpc.tagassignmentconfigserviceservicer method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentConfigServiceServicer.GetMeta", false]], "getmeta() (arista.tag.v2.services.gen_pb2_grpc.tagassignmentservice static method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentService.GetMeta", false]], "getmeta() (arista.tag.v2.services.gen_pb2_grpc.tagassignmentserviceservicer method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentServiceServicer.GetMeta", false]], "getmeta() (arista.tag.v2.services.gen_pb2_grpc.tagconfigservice static method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagConfigService.GetMeta", false]], "getmeta() (arista.tag.v2.services.gen_pb2_grpc.tagconfigserviceservicer method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagConfigServiceServicer.GetMeta", false]], "getmeta() (arista.tag.v2.services.gen_pb2_grpc.tagservice static method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagService.GetMeta", false]], "getmeta() (arista.tag.v2.services.gen_pb2_grpc.tagserviceservicer method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagServiceServicer.GetMeta", false]], "getmeta() (arista.workspace.v1.services.gen_pb2_grpc.workspacebuilddetailsservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildDetailsService.GetMeta", false]], "getmeta() (arista.workspace.v1.services.gen_pb2_grpc.workspacebuilddetailsserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildDetailsServiceServicer.GetMeta", false]], "getmeta() (arista.workspace.v1.services.gen_pb2_grpc.workspacebuildservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildService.GetMeta", false]], "getmeta() (arista.workspace.v1.services.gen_pb2_grpc.workspacebuildserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildServiceServicer.GetMeta", false]], "getmeta() (arista.workspace.v1.services.gen_pb2_grpc.workspaceconfigservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceConfigService.GetMeta", false]], "getmeta() (arista.workspace.v1.services.gen_pb2_grpc.workspaceconfigserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceConfigServiceServicer.GetMeta", false]], "getmeta() (arista.workspace.v1.services.gen_pb2_grpc.workspaceservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceService.GetMeta", false]], "getmeta() (arista.workspace.v1.services.gen_pb2_grpc.workspaceserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceServiceServicer.GetMeta", false]], "getmeta() (arista.workspace.v1.services.gen_pb2_grpc.workspacesyncconfigservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceSyncConfigService.GetMeta", false]], "getmeta() (arista.workspace.v1.services.gen_pb2_grpc.workspacesyncconfigserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceSyncConfigServiceServicer.GetMeta", false]], "getone() (arista.alert.v1.services.gen_pb2_grpc.alertconfigservice static method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.AlertConfigService.GetOne", false]], "getone() (arista.alert.v1.services.gen_pb2_grpc.alertconfigserviceservicer method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.AlertConfigServiceServicer.GetOne", false]], "getone() (arista.alert.v1.services.gen_pb2_grpc.alertservice static method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.AlertService.GetOne", false]], "getone() (arista.alert.v1.services.gen_pb2_grpc.alertserviceservicer method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.AlertServiceServicer.GetOne", false]], "getone() (arista.alert.v1.services.gen_pb2_grpc.defaulttemplateservice static method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.DefaultTemplateService.GetOne", false]], "getone() (arista.alert.v1.services.gen_pb2_grpc.defaulttemplateserviceservicer method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.DefaultTemplateServiceServicer.GetOne", false]], "getone() (arista.alert.v1.services.gen_pb2_grpc.templateconfigservice static method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.TemplateConfigService.GetOne", false]], "getone() (arista.alert.v1.services.gen_pb2_grpc.templateconfigserviceservicer method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.TemplateConfigServiceServicer.GetOne", false]], "getone() (arista.bugexposure.v1.services.gen_pb2_grpc.bugexposureservice static method)": [[6, "arista.bugexposure.v1.services.gen_pb2_grpc.BugExposureService.GetOne", false]], "getone() (arista.bugexposure.v1.services.gen_pb2_grpc.bugexposureserviceservicer method)": [[6, "arista.bugexposure.v1.services.gen_pb2_grpc.BugExposureServiceServicer.GetOne", false]], "getone() (arista.changecontrol.v1.services.gen_pb2_grpc.approveconfigservice static method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ApproveConfigService.GetOne", false]], "getone() (arista.changecontrol.v1.services.gen_pb2_grpc.approveconfigserviceservicer method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ApproveConfigServiceServicer.GetOne", false]], "getone() (arista.changecontrol.v1.services.gen_pb2_grpc.changecontrolconfigservice static method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlConfigService.GetOne", false]], "getone() (arista.changecontrol.v1.services.gen_pb2_grpc.changecontrolconfigserviceservicer method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlConfigServiceServicer.GetOne", false]], "getone() (arista.changecontrol.v1.services.gen_pb2_grpc.changecontrolservice static method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlService.GetOne", false]], "getone() (arista.changecontrol.v1.services.gen_pb2_grpc.changecontrolserviceservicer method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlServiceServicer.GetOne", false]], "getone() (arista.configlet.v1.services.gen_pb2_grpc.configletassignmentconfigservice static method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentConfigService.GetOne", false]], "getone() (arista.configlet.v1.services.gen_pb2_grpc.configletassignmentconfigserviceservicer method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentConfigServiceServicer.GetOne", false]], "getone() (arista.configlet.v1.services.gen_pb2_grpc.configletassignmentservice static method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentService.GetOne", false]], "getone() (arista.configlet.v1.services.gen_pb2_grpc.configletassignmentserviceservicer method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentServiceServicer.GetOne", false]], "getone() (arista.configlet.v1.services.gen_pb2_grpc.configletconfigservice static method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletConfigService.GetOne", false]], "getone() (arista.configlet.v1.services.gen_pb2_grpc.configletconfigserviceservicer method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletConfigServiceServicer.GetOne", false]], "getone() (arista.configlet.v1.services.gen_pb2_grpc.configletservice static method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletService.GetOne", false]], "getone() (arista.configlet.v1.services.gen_pb2_grpc.configletserviceservicer method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletServiceServicer.GetOne", false]], "getone() (arista.configstatus.v1.services.gen_pb2_grpc.configdiffservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.ConfigDiffService.GetOne", false]], "getone() (arista.configstatus.v1.services.gen_pb2_grpc.configdiffserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.ConfigDiffServiceServicer.GetOne", false]], "getone() (arista.configstatus.v1.services.gen_pb2_grpc.configurationservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.ConfigurationService.GetOne", false]], "getone() (arista.configstatus.v1.services.gen_pb2_grpc.configurationserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.ConfigurationServiceServicer.GetOne", false]], "getone() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofilediffservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffService.GetOne", false]], "getone() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofilediffserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffServiceServicer.GetOne", false]], "getone() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofilediffsummaryservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffSummaryService.GetOne", false]], "getone() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofilediffsummaryserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffSummaryServiceServicer.GetOne", false]], "getone() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofileservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileService.GetOne", false]], "getone() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofileserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileServiceServicer.GetOne", false]], "getone() (arista.configstatus.v1.services.gen_pb2_grpc.summaryservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SummaryService.GetOne", false]], "getone() (arista.configstatus.v1.services.gen_pb2_grpc.summaryserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SummaryServiceServicer.GetOne", false]], "getone() (arista.connectivitymonitor.v1.services.gen_pb2_grpc.probeservice static method)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeService.GetOne", false]], "getone() (arista.connectivitymonitor.v1.services.gen_pb2_grpc.probeserviceservicer method)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeServiceServicer.GetOne", false]], "getone() (arista.connectivitymonitor.v1.services.gen_pb2_grpc.probestatsservice static method)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeStatsService.GetOne", false]], "getone() (arista.connectivitymonitor.v1.services.gen_pb2_grpc.probestatsserviceservicer method)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeStatsServiceServicer.GetOne", false]], "getone() (arista.dashboard.v1.services.gen_pb2_grpc.dashboardconfigservice static method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardConfigService.GetOne", false]], "getone() (arista.dashboard.v1.services.gen_pb2_grpc.dashboardconfigserviceservicer method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardConfigServiceServicer.GetOne", false]], "getone() (arista.dashboard.v1.services.gen_pb2_grpc.dashboardservice static method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardService.GetOne", false]], "getone() (arista.dashboard.v1.services.gen_pb2_grpc.dashboardserviceservicer method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardServiceServicer.GetOne", false]], "getone() (arista.dashboard.v1.services.gen_pb2_grpc.globaldashboardconfigservice static method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.GlobalDashboardConfigService.GetOne", false]], "getone() (arista.dashboard.v1.services.gen_pb2_grpc.globaldashboardconfigserviceservicer method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.GlobalDashboardConfigServiceServicer.GetOne", false]], "getone() (arista.endpointlocation.v1.services.gen_pb2_grpc.endpointlocationservice static method)": [[24, "arista.endpointlocation.v1.services.gen_pb2_grpc.EndpointLocationService.GetOne", false]], "getone() (arista.endpointlocation.v1.services.gen_pb2_grpc.endpointlocationserviceservicer method)": [[24, "arista.endpointlocation.v1.services.gen_pb2_grpc.EndpointLocationServiceServicer.GetOne", false]], "getone() (arista.event.v1.services.gen_pb2_grpc.eventannotationconfigservice static method)": [[27, "arista.event.v1.services.gen_pb2_grpc.EventAnnotationConfigService.GetOne", false]], "getone() (arista.event.v1.services.gen_pb2_grpc.eventannotationconfigserviceservicer method)": [[27, "arista.event.v1.services.gen_pb2_grpc.EventAnnotationConfigServiceServicer.GetOne", false]], "getone() (arista.event.v1.services.gen_pb2_grpc.eventservice static method)": [[27, "arista.event.v1.services.gen_pb2_grpc.EventService.GetOne", false]], "getone() (arista.event.v1.services.gen_pb2_grpc.eventserviceservicer method)": [[27, "arista.event.v1.services.gen_pb2_grpc.EventServiceServicer.GetOne", false]], "getone() (arista.event.v1.services.gen_pb2_grpc.usereventcreationconfigservice static method)": [[27, "arista.event.v1.services.gen_pb2_grpc.UserEventCreationConfigService.GetOne", false]], "getone() (arista.event.v1.services.gen_pb2_grpc.usereventcreationconfigserviceservicer method)": [[27, "arista.event.v1.services.gen_pb2_grpc.UserEventCreationConfigServiceServicer.GetOne", false]], "getone() (arista.identityprovider.v1.services.gen_pb2_grpc.oauthconfigservice static method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.OAuthConfigService.GetOne", false]], "getone() (arista.identityprovider.v1.services.gen_pb2_grpc.oauthconfigserviceservicer method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.OAuthConfigServiceServicer.GetOne", false]], "getone() (arista.identityprovider.v1.services.gen_pb2_grpc.samlconfigservice static method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.SAMLConfigService.GetOne", false]], "getone() (arista.identityprovider.v1.services.gen_pb2_grpc.samlconfigserviceservicer method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.SAMLConfigServiceServicer.GetOne", false]], "getone() (arista.imagestatus.v1.services.gen_pb2_grpc.summaryservice static method)": [[33, "arista.imagestatus.v1.services.gen_pb2_grpc.SummaryService.GetOne", false]], "getone() (arista.imagestatus.v1.services.gen_pb2_grpc.summaryserviceservicer method)": [[33, "arista.imagestatus.v1.services.gen_pb2_grpc.SummaryServiceServicer.GetOne", false]], "getone() (arista.inventory.v1.services.gen_pb2_grpc.devicedecommissioningconfigservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningConfigService.GetOne", false]], "getone() (arista.inventory.v1.services.gen_pb2_grpc.devicedecommissioningconfigserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningConfigServiceServicer.GetOne", false]], "getone() (arista.inventory.v1.services.gen_pb2_grpc.devicedecommissioningservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningService.GetOne", false]], "getone() (arista.inventory.v1.services.gen_pb2_grpc.devicedecommissioningserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningServiceServicer.GetOne", false]], "getone() (arista.inventory.v1.services.gen_pb2_grpc.deviceonboardingconfigservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingConfigService.GetOne", false]], "getone() (arista.inventory.v1.services.gen_pb2_grpc.deviceonboardingconfigserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingConfigServiceServicer.GetOne", false]], "getone() (arista.inventory.v1.services.gen_pb2_grpc.deviceonboardingservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingService.GetOne", false]], "getone() (arista.inventory.v1.services.gen_pb2_grpc.deviceonboardingserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingServiceServicer.GetOne", false]], "getone() (arista.inventory.v1.services.gen_pb2_grpc.deviceservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceService.GetOne", false]], "getone() (arista.inventory.v1.services.gen_pb2_grpc.deviceserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceServiceServicer.GetOne", false]], "getone() (arista.inventory.v1.services.gen_pb2_grpc.provisioneddeviceservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.ProvisionedDeviceService.GetOne", false]], "getone() (arista.inventory.v1.services.gen_pb2_grpc.provisioneddeviceserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.ProvisionedDeviceServiceServicer.GetOne", false]], "getone() (arista.lifecycle.v1.services.gen_pb2_grpc.devicelifecyclesummaryservice static method)": [[39, "arista.lifecycle.v1.services.gen_pb2_grpc.DeviceLifecycleSummaryService.GetOne", false]], "getone() (arista.lifecycle.v1.services.gen_pb2_grpc.devicelifecyclesummaryserviceservicer method)": [[39, "arista.lifecycle.v1.services.gen_pb2_grpc.DeviceLifecycleSummaryServiceServicer.GetOne", false]], "getone() (arista.redirector.v1.services.gen_pb2_grpc.assignmentservice static method)": [[42, "arista.redirector.v1.services.gen_pb2_grpc.AssignmentService.GetOne", false]], "getone() (arista.redirector.v1.services.gen_pb2_grpc.assignmentserviceservicer method)": [[42, "arista.redirector.v1.services.gen_pb2_grpc.AssignmentServiceServicer.GetOne", false]], "getone() (arista.serviceaccount.v1.services.gen_pb2_grpc.accountconfigservice static method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.AccountConfigService.GetOne", false]], "getone() (arista.serviceaccount.v1.services.gen_pb2_grpc.accountconfigserviceservicer method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.AccountConfigServiceServicer.GetOne", false]], "getone() (arista.serviceaccount.v1.services.gen_pb2_grpc.accountservice static method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.AccountService.GetOne", false]], "getone() (arista.serviceaccount.v1.services.gen_pb2_grpc.accountserviceservicer method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.AccountServiceServicer.GetOne", false]], "getone() (arista.serviceaccount.v1.services.gen_pb2_grpc.tokenconfigservice static method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.TokenConfigService.GetOne", false]], "getone() (arista.serviceaccount.v1.services.gen_pb2_grpc.tokenconfigserviceservicer method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.TokenConfigServiceServicer.GetOne", false]], "getone() (arista.serviceaccount.v1.services.gen_pb2_grpc.tokenservice static method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.TokenService.GetOne", false]], "getone() (arista.serviceaccount.v1.services.gen_pb2_grpc.tokenserviceservicer method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.TokenServiceServicer.GetOne", false]], "getone() (arista.studio.v1.services.gen_pb2_grpc.assignedtagsconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsConfigService.GetOne", false]], "getone() (arista.studio.v1.services.gen_pb2_grpc.assignedtagsconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsConfigServiceServicer.GetOne", false]], "getone() (arista.studio.v1.services.gen_pb2_grpc.assignedtagsservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsService.GetOne", false]], "getone() (arista.studio.v1.services.gen_pb2_grpc.assignedtagsserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsServiceServicer.GetOne", false]], "getone() (arista.studio.v1.services.gen_pb2_grpc.autofillactionconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionConfigService.GetOne", false]], "getone() (arista.studio.v1.services.gen_pb2_grpc.autofillactionconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionConfigServiceServicer.GetOne", false]], "getone() (arista.studio.v1.services.gen_pb2_grpc.autofillactionservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionService.GetOne", false]], "getone() (arista.studio.v1.services.gen_pb2_grpc.autofillactionserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionServiceServicer.GetOne", false]], "getone() (arista.studio.v1.services.gen_pb2_grpc.inputsconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsConfigService.GetOne", false]], "getone() (arista.studio.v1.services.gen_pb2_grpc.inputsconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsConfigServiceServicer.GetOne", false]], "getone() (arista.studio.v1.services.gen_pb2_grpc.inputsservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsService.GetOne", false]], "getone() (arista.studio.v1.services.gen_pb2_grpc.inputsserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsServiceServicer.GetOne", false]], "getone() (arista.studio.v1.services.gen_pb2_grpc.secretinputservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.SecretInputService.GetOne", false]], "getone() (arista.studio.v1.services.gen_pb2_grpc.secretinputserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.SecretInputServiceServicer.GetOne", false]], "getone() (arista.studio.v1.services.gen_pb2_grpc.studioconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioConfigService.GetOne", false]], "getone() (arista.studio.v1.services.gen_pb2_grpc.studioconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioConfigServiceServicer.GetOne", false]], "getone() (arista.studio.v1.services.gen_pb2_grpc.studioservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioService.GetOne", false]], "getone() (arista.studio.v1.services.gen_pb2_grpc.studioserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioServiceServicer.GetOne", false]], "getone() (arista.studio.v1.services.gen_pb2_grpc.studiosummaryservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioSummaryService.GetOne", false]], "getone() (arista.studio.v1.services.gen_pb2_grpc.studiosummaryserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioSummaryServiceServicer.GetOne", false]], "getone() (arista.tag.v2.services.gen_pb2_grpc.tagassignmentconfigservice static method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentConfigService.GetOne", false]], "getone() (arista.tag.v2.services.gen_pb2_grpc.tagassignmentconfigserviceservicer method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentConfigServiceServicer.GetOne", false]], "getone() (arista.tag.v2.services.gen_pb2_grpc.tagassignmentservice static method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentService.GetOne", false]], "getone() (arista.tag.v2.services.gen_pb2_grpc.tagassignmentserviceservicer method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentServiceServicer.GetOne", false]], "getone() (arista.tag.v2.services.gen_pb2_grpc.tagconfigservice static method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagConfigService.GetOne", false]], "getone() (arista.tag.v2.services.gen_pb2_grpc.tagconfigserviceservicer method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagConfigServiceServicer.GetOne", false]], "getone() (arista.tag.v2.services.gen_pb2_grpc.tagservice static method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagService.GetOne", false]], "getone() (arista.tag.v2.services.gen_pb2_grpc.tagserviceservicer method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagServiceServicer.GetOne", false]], "getone() (arista.workspace.v1.services.gen_pb2_grpc.workspacebuilddetailsservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildDetailsService.GetOne", false]], "getone() (arista.workspace.v1.services.gen_pb2_grpc.workspacebuilddetailsserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildDetailsServiceServicer.GetOne", false]], "getone() (arista.workspace.v1.services.gen_pb2_grpc.workspacebuildservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildService.GetOne", false]], "getone() (arista.workspace.v1.services.gen_pb2_grpc.workspacebuildserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildServiceServicer.GetOne", false]], "getone() (arista.workspace.v1.services.gen_pb2_grpc.workspaceconfigservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceConfigService.GetOne", false]], "getone() (arista.workspace.v1.services.gen_pb2_grpc.workspaceconfigserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceConfigServiceServicer.GetOne", false]], "getone() (arista.workspace.v1.services.gen_pb2_grpc.workspaceservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceService.GetOne", false]], "getone() (arista.workspace.v1.services.gen_pb2_grpc.workspaceserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceServiceServicer.GetOne", false]], "getone() (arista.workspace.v1.services.gen_pb2_grpc.workspacesyncconfigservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceSyncConfigService.GetOne", false]], "getone() (arista.workspace.v1.services.gen_pb2_grpc.workspacesyncconfigserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceSyncConfigServiceServicer.GetOne", false]], "getonewithws() (in module cloudvision.cvlib.studio)": [[65, "cloudvision.cvlib.studio.GetOneWithWS", false]], "getpeerdevice() (cloudvision.cvlib.device.interface method)": [[65, "cloudvision.cvlib.device.Interface.getPeerDevice", false]], "getpeerinfo() (cloudvision.cvlib.device.interface method)": [[65, "cloudvision.cvlib.device.Interface.getPeerInfo", false]], "getpeerinterface() (cloudvision.cvlib.device.interface method)": [[65, "cloudvision.cvlib.device.Interface.getPeerInterface", false]], "getpermissionset() (cloudvision.connector.gen.router_pb2_grpc.auth static method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.Auth.GetPermissionSet", false]], "getpermissionset() (cloudvision.connector.gen.router_pb2_grpc.authservicer method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.AuthServicer.GetPermissionSet", false]], "getsimpleresolverqueryvalue() (in module cloudvision.cvlib.studio)": [[65, "cloudvision.cvlib.studio.getSimpleResolverQueryValue", false]], "getsingletag() (cloudvision.cvlib.device.device method)": [[65, "cloudvision.cvlib.device.Device.getSingleTag", false]], "getsingletag() (cloudvision.cvlib.device.interface method)": [[65, "cloudvision.cvlib.device.Interface.getSingleTag", false]], "getsome() (arista.alert.v1.services.gen_pb2_grpc.defaulttemplateservice static method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.DefaultTemplateService.GetSome", false]], "getsome() (arista.alert.v1.services.gen_pb2_grpc.defaulttemplateserviceservicer method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.DefaultTemplateServiceServicer.GetSome", false]], "getsome() (arista.alert.v1.services.gen_pb2_grpc.templateconfigservice static method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.TemplateConfigService.GetSome", false]], "getsome() (arista.alert.v1.services.gen_pb2_grpc.templateconfigserviceservicer method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.TemplateConfigServiceServicer.GetSome", false]], "getsome() (arista.changecontrol.v1.services.gen_pb2_grpc.approveconfigservice static method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ApproveConfigService.GetSome", false]], "getsome() (arista.changecontrol.v1.services.gen_pb2_grpc.approveconfigserviceservicer method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ApproveConfigServiceServicer.GetSome", false]], "getsome() (arista.changecontrol.v1.services.gen_pb2_grpc.changecontrolconfigservice static method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlConfigService.GetSome", false]], "getsome() (arista.changecontrol.v1.services.gen_pb2_grpc.changecontrolconfigserviceservicer method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlConfigServiceServicer.GetSome", false]], "getsome() (arista.changecontrol.v1.services.gen_pb2_grpc.changecontrolservice static method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlService.GetSome", false]], "getsome() (arista.changecontrol.v1.services.gen_pb2_grpc.changecontrolserviceservicer method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlServiceServicer.GetSome", false]], "getsome() (arista.configlet.v1.services.gen_pb2_grpc.configletassignmentconfigservice static method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentConfigService.GetSome", false]], "getsome() (arista.configlet.v1.services.gen_pb2_grpc.configletassignmentconfigserviceservicer method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentConfigServiceServicer.GetSome", false]], "getsome() (arista.configlet.v1.services.gen_pb2_grpc.configletassignmentservice static method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentService.GetSome", false]], "getsome() (arista.configlet.v1.services.gen_pb2_grpc.configletassignmentserviceservicer method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentServiceServicer.GetSome", false]], "getsome() (arista.configlet.v1.services.gen_pb2_grpc.configletconfigservice static method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletConfigService.GetSome", false]], "getsome() (arista.configlet.v1.services.gen_pb2_grpc.configletconfigserviceservicer method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletConfigServiceServicer.GetSome", false]], "getsome() (arista.configlet.v1.services.gen_pb2_grpc.configletservice static method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletService.GetSome", false]], "getsome() (arista.configlet.v1.services.gen_pb2_grpc.configletserviceservicer method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletServiceServicer.GetSome", false]], "getsome() (arista.configstatus.v1.services.gen_pb2_grpc.configdiffservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.ConfigDiffService.GetSome", false]], "getsome() (arista.configstatus.v1.services.gen_pb2_grpc.configdiffserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.ConfigDiffServiceServicer.GetSome", false]], "getsome() (arista.configstatus.v1.services.gen_pb2_grpc.configurationservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.ConfigurationService.GetSome", false]], "getsome() (arista.configstatus.v1.services.gen_pb2_grpc.configurationserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.ConfigurationServiceServicer.GetSome", false]], "getsome() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofilediffservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffService.GetSome", false]], "getsome() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofilediffserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffServiceServicer.GetSome", false]], "getsome() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofilediffsummaryservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffSummaryService.GetSome", false]], "getsome() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofilediffsummaryserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffSummaryServiceServicer.GetSome", false]], "getsome() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofileservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileService.GetSome", false]], "getsome() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofileserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileServiceServicer.GetSome", false]], "getsome() (arista.configstatus.v1.services.gen_pb2_grpc.summaryservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SummaryService.GetSome", false]], "getsome() (arista.configstatus.v1.services.gen_pb2_grpc.summaryserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SummaryServiceServicer.GetSome", false]], "getsome() (arista.connectivitymonitor.v1.services.gen_pb2_grpc.probeservice static method)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeService.GetSome", false]], "getsome() (arista.connectivitymonitor.v1.services.gen_pb2_grpc.probeserviceservicer method)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeServiceServicer.GetSome", false]], "getsome() (arista.connectivitymonitor.v1.services.gen_pb2_grpc.probestatsservice static method)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeStatsService.GetSome", false]], "getsome() (arista.connectivitymonitor.v1.services.gen_pb2_grpc.probestatsserviceservicer method)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeStatsServiceServicer.GetSome", false]], "getsome() (arista.dashboard.v1.services.gen_pb2_grpc.dashboardconfigservice static method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardConfigService.GetSome", false]], "getsome() (arista.dashboard.v1.services.gen_pb2_grpc.dashboardconfigserviceservicer method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardConfigServiceServicer.GetSome", false]], "getsome() (arista.dashboard.v1.services.gen_pb2_grpc.dashboardservice static method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardService.GetSome", false]], "getsome() (arista.dashboard.v1.services.gen_pb2_grpc.dashboardserviceservicer method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardServiceServicer.GetSome", false]], "getsome() (arista.endpointlocation.v1.services.gen_pb2_grpc.endpointlocationservice static method)": [[24, "arista.endpointlocation.v1.services.gen_pb2_grpc.EndpointLocationService.GetSome", false]], "getsome() (arista.endpointlocation.v1.services.gen_pb2_grpc.endpointlocationserviceservicer method)": [[24, "arista.endpointlocation.v1.services.gen_pb2_grpc.EndpointLocationServiceServicer.GetSome", false]], "getsome() (arista.event.v1.services.gen_pb2_grpc.eventannotationconfigservice static method)": [[27, "arista.event.v1.services.gen_pb2_grpc.EventAnnotationConfigService.GetSome", false]], "getsome() (arista.event.v1.services.gen_pb2_grpc.eventannotationconfigserviceservicer method)": [[27, "arista.event.v1.services.gen_pb2_grpc.EventAnnotationConfigServiceServicer.GetSome", false]], "getsome() (arista.event.v1.services.gen_pb2_grpc.eventservice static method)": [[27, "arista.event.v1.services.gen_pb2_grpc.EventService.GetSome", false]], "getsome() (arista.event.v1.services.gen_pb2_grpc.eventserviceservicer method)": [[27, "arista.event.v1.services.gen_pb2_grpc.EventServiceServicer.GetSome", false]], "getsome() (arista.event.v1.services.gen_pb2_grpc.usereventcreationconfigservice static method)": [[27, "arista.event.v1.services.gen_pb2_grpc.UserEventCreationConfigService.GetSome", false]], "getsome() (arista.event.v1.services.gen_pb2_grpc.usereventcreationconfigserviceservicer method)": [[27, "arista.event.v1.services.gen_pb2_grpc.UserEventCreationConfigServiceServicer.GetSome", false]], "getsome() (arista.identityprovider.v1.services.gen_pb2_grpc.oauthconfigservice static method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.OAuthConfigService.GetSome", false]], "getsome() (arista.identityprovider.v1.services.gen_pb2_grpc.oauthconfigserviceservicer method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.OAuthConfigServiceServicer.GetSome", false]], "getsome() (arista.identityprovider.v1.services.gen_pb2_grpc.samlconfigservice static method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.SAMLConfigService.GetSome", false]], "getsome() (arista.identityprovider.v1.services.gen_pb2_grpc.samlconfigserviceservicer method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.SAMLConfigServiceServicer.GetSome", false]], "getsome() (arista.imagestatus.v1.services.gen_pb2_grpc.summaryservice static method)": [[33, "arista.imagestatus.v1.services.gen_pb2_grpc.SummaryService.GetSome", false]], "getsome() (arista.imagestatus.v1.services.gen_pb2_grpc.summaryserviceservicer method)": [[33, "arista.imagestatus.v1.services.gen_pb2_grpc.SummaryServiceServicer.GetSome", false]], "getsome() (arista.inventory.v1.services.gen_pb2_grpc.devicedecommissioningconfigservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningConfigService.GetSome", false]], "getsome() (arista.inventory.v1.services.gen_pb2_grpc.devicedecommissioningconfigserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningConfigServiceServicer.GetSome", false]], "getsome() (arista.inventory.v1.services.gen_pb2_grpc.devicedecommissioningservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningService.GetSome", false]], "getsome() (arista.inventory.v1.services.gen_pb2_grpc.devicedecommissioningserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningServiceServicer.GetSome", false]], "getsome() (arista.inventory.v1.services.gen_pb2_grpc.deviceonboardingconfigservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingConfigService.GetSome", false]], "getsome() (arista.inventory.v1.services.gen_pb2_grpc.deviceonboardingconfigserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingConfigServiceServicer.GetSome", false]], "getsome() (arista.inventory.v1.services.gen_pb2_grpc.deviceonboardingservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingService.GetSome", false]], "getsome() (arista.inventory.v1.services.gen_pb2_grpc.deviceonboardingserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingServiceServicer.GetSome", false]], "getsome() (arista.inventory.v1.services.gen_pb2_grpc.deviceservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceService.GetSome", false]], "getsome() (arista.inventory.v1.services.gen_pb2_grpc.deviceserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceServiceServicer.GetSome", false]], "getsome() (arista.inventory.v1.services.gen_pb2_grpc.provisioneddeviceservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.ProvisionedDeviceService.GetSome", false]], "getsome() (arista.inventory.v1.services.gen_pb2_grpc.provisioneddeviceserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.ProvisionedDeviceServiceServicer.GetSome", false]], "getsome() (arista.redirector.v1.services.gen_pb2_grpc.assignmentservice static method)": [[42, "arista.redirector.v1.services.gen_pb2_grpc.AssignmentService.GetSome", false]], "getsome() (arista.redirector.v1.services.gen_pb2_grpc.assignmentserviceservicer method)": [[42, "arista.redirector.v1.services.gen_pb2_grpc.AssignmentServiceServicer.GetSome", false]], "getsome() (arista.serviceaccount.v1.services.gen_pb2_grpc.accountconfigservice static method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.AccountConfigService.GetSome", false]], "getsome() (arista.serviceaccount.v1.services.gen_pb2_grpc.accountconfigserviceservicer method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.AccountConfigServiceServicer.GetSome", false]], "getsome() (arista.serviceaccount.v1.services.gen_pb2_grpc.accountservice static method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.AccountService.GetSome", false]], "getsome() (arista.serviceaccount.v1.services.gen_pb2_grpc.accountserviceservicer method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.AccountServiceServicer.GetSome", false]], "getsome() (arista.serviceaccount.v1.services.gen_pb2_grpc.tokenconfigservice static method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.TokenConfigService.GetSome", false]], "getsome() (arista.serviceaccount.v1.services.gen_pb2_grpc.tokenconfigserviceservicer method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.TokenConfigServiceServicer.GetSome", false]], "getsome() (arista.serviceaccount.v1.services.gen_pb2_grpc.tokenservice static method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.TokenService.GetSome", false]], "getsome() (arista.serviceaccount.v1.services.gen_pb2_grpc.tokenserviceservicer method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.TokenServiceServicer.GetSome", false]], "getsome() (arista.studio.v1.services.gen_pb2_grpc.assignedtagsconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsConfigService.GetSome", false]], "getsome() (arista.studio.v1.services.gen_pb2_grpc.assignedtagsconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsConfigServiceServicer.GetSome", false]], "getsome() (arista.studio.v1.services.gen_pb2_grpc.assignedtagsservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsService.GetSome", false]], "getsome() (arista.studio.v1.services.gen_pb2_grpc.assignedtagsserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsServiceServicer.GetSome", false]], "getsome() (arista.studio.v1.services.gen_pb2_grpc.autofillactionconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionConfigService.GetSome", false]], "getsome() (arista.studio.v1.services.gen_pb2_grpc.autofillactionconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionConfigServiceServicer.GetSome", false]], "getsome() (arista.studio.v1.services.gen_pb2_grpc.autofillactionservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionService.GetSome", false]], "getsome() (arista.studio.v1.services.gen_pb2_grpc.autofillactionserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionServiceServicer.GetSome", false]], "getsome() (arista.studio.v1.services.gen_pb2_grpc.inputsconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsConfigService.GetSome", false]], "getsome() (arista.studio.v1.services.gen_pb2_grpc.inputsconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsConfigServiceServicer.GetSome", false]], "getsome() (arista.studio.v1.services.gen_pb2_grpc.inputsservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsService.GetSome", false]], "getsome() (arista.studio.v1.services.gen_pb2_grpc.inputsserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsServiceServicer.GetSome", false]], "getsome() (arista.studio.v1.services.gen_pb2_grpc.secretinputservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.SecretInputService.GetSome", false]], "getsome() (arista.studio.v1.services.gen_pb2_grpc.secretinputserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.SecretInputServiceServicer.GetSome", false]], "getsome() (arista.studio.v1.services.gen_pb2_grpc.studioconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioConfigService.GetSome", false]], "getsome() (arista.studio.v1.services.gen_pb2_grpc.studioconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioConfigServiceServicer.GetSome", false]], "getsome() (arista.studio.v1.services.gen_pb2_grpc.studioservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioService.GetSome", false]], "getsome() (arista.studio.v1.services.gen_pb2_grpc.studioserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioServiceServicer.GetSome", false]], "getsome() (arista.studio.v1.services.gen_pb2_grpc.studiosummaryservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioSummaryService.GetSome", false]], "getsome() (arista.studio.v1.services.gen_pb2_grpc.studiosummaryserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioSummaryServiceServicer.GetSome", false]], "getsome() (arista.tag.v2.services.gen_pb2_grpc.tagassignmentconfigservice static method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentConfigService.GetSome", false]], "getsome() (arista.tag.v2.services.gen_pb2_grpc.tagassignmentconfigserviceservicer method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentConfigServiceServicer.GetSome", false]], "getsome() (arista.tag.v2.services.gen_pb2_grpc.tagassignmentservice static method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentService.GetSome", false]], "getsome() (arista.tag.v2.services.gen_pb2_grpc.tagassignmentserviceservicer method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentServiceServicer.GetSome", false]], "getsome() (arista.tag.v2.services.gen_pb2_grpc.tagconfigservice static method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagConfigService.GetSome", false]], "getsome() (arista.tag.v2.services.gen_pb2_grpc.tagconfigserviceservicer method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagConfigServiceServicer.GetSome", false]], "getsome() (arista.tag.v2.services.gen_pb2_grpc.tagservice static method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagService.GetSome", false]], "getsome() (arista.tag.v2.services.gen_pb2_grpc.tagserviceservicer method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagServiceServicer.GetSome", false]], "getsome() (arista.workspace.v1.services.gen_pb2_grpc.workspacebuilddetailsservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildDetailsService.GetSome", false]], "getsome() (arista.workspace.v1.services.gen_pb2_grpc.workspacebuilddetailsserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildDetailsServiceServicer.GetSome", false]], "getsome() (arista.workspace.v1.services.gen_pb2_grpc.workspacebuildservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildService.GetSome", false]], "getsome() (arista.workspace.v1.services.gen_pb2_grpc.workspacebuildserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildServiceServicer.GetSome", false]], "getsome() (arista.workspace.v1.services.gen_pb2_grpc.workspaceconfigservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceConfigService.GetSome", false]], "getsome() (arista.workspace.v1.services.gen_pb2_grpc.workspaceconfigserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceConfigServiceServicer.GetSome", false]], "getsome() (arista.workspace.v1.services.gen_pb2_grpc.workspaceservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceService.GetSome", false]], "getsome() (arista.workspace.v1.services.gen_pb2_grpc.workspaceserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceServiceServicer.GetSome", false]], "getsome() (arista.workspace.v1.services.gen_pb2_grpc.workspacesyncconfigservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceSyncConfigService.GetSome", false]], "getsome() (arista.workspace.v1.services.gen_pb2_grpc.workspacesyncconfigserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceSyncConfigServiceServicer.GetSome", false]], "getstarttime() (cloudvision.cvlib.changecontrol.changecontrol method)": [[65, "cloudvision.cvlib.changecontrol.ChangeControl.getStartTime", false]], "getstudioinputs() (in module cloudvision.cvlib.studio)": [[65, "cloudvision.cvlib.studio.getStudioInputs", false]], "gettags() (cloudvision.cvlib.device.device method)": [[65, "cloudvision.cvlib.device.Device.getTags", false]], "gettags() (cloudvision.cvlib.device.interface method)": [[65, "cloudvision.cvlib.device.Interface.getTags", false]], "getworkspaceid() (cloudvision.cvlib.context.context method)": [[65, "cloudvision.cvlib.context.Context.getWorkspaceId", false]], "getworkspacelastsynced() (in module cloudvision.cvlib.workspace)": [[65, "cloudvision.cvlib.workspace.getWorkspaceLastSynced", false]], "globaldashboardconfig (class in arista.dashboard.v1.dashboard_pb2)": [[20, "arista.dashboard.v1.dashboard_pb2.GlobalDashboardConfig", false]], "globaldashboardconfigbatchedstreamrequest (class in arista.dashboard.v1.services.gen_pb2)": [[21, "arista.dashboard.v1.services.gen_pb2.GlobalDashboardConfigBatchedStreamRequest", false]], "globaldashboardconfigbatchedstreamresponse (class in arista.dashboard.v1.services.gen_pb2)": [[21, "arista.dashboard.v1.services.gen_pb2.GlobalDashboardConfigBatchedStreamResponse", false]], "globaldashboardconfigrequest (class in arista.dashboard.v1.services.gen_pb2)": [[21, "arista.dashboard.v1.services.gen_pb2.GlobalDashboardConfigRequest", false]], "globaldashboardconfigresponse (class in arista.dashboard.v1.services.gen_pb2)": [[21, "arista.dashboard.v1.services.gen_pb2.GlobalDashboardConfigResponse", false]], "globaldashboardconfigservice (class in arista.dashboard.v1.services.gen_pb2_grpc)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.GlobalDashboardConfigService", false]], "globaldashboardconfigserviceservicer (class in arista.dashboard.v1.services.gen_pb2_grpc)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.GlobalDashboardConfigServiceServicer", false]], "globaldashboardconfigservicestub (class in arista.dashboard.v1.services.gen_pb2_grpc)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.GlobalDashboardConfigServiceStub", false]], "globaldashboardconfigsetrequest (class in arista.dashboard.v1.services.gen_pb2)": [[21, "arista.dashboard.v1.services.gen_pb2.GlobalDashboardConfigSetRequest", false]], "globaldashboardconfigsetresponse (class in arista.dashboard.v1.services.gen_pb2)": [[21, "arista.dashboard.v1.services.gen_pb2.GlobalDashboardConfigSetResponse", false]], "globaldashboardconfigstreamrequest (class in arista.dashboard.v1.services.gen_pb2)": [[21, "arista.dashboard.v1.services.gen_pb2.GlobalDashboardConfigStreamRequest", false]], "globaldashboardconfigstreamresponse (class in arista.dashboard.v1.services.gen_pb2)": [[21, "arista.dashboard.v1.services.gen_pb2.GlobalDashboardConfigStreamResponse", false]], "googlechatendpoint (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.GoogleChatEndpoint", false]], "googlechatendpoints (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.GoogleChatEndpoints", false]], "googlechatsettings (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.GoogleChatSettings", false]], "groupinputfieldprops (class in arista.studio.v1.studio_pb2)": [[47, "arista.studio.v1.studio_pb2.GroupInputFieldProps", false]], "grpcclient (class in cloudvision.connector.grpc_client)": [[63, "cloudvision.Connector.grpc_client.GRPCClient", false]], "grpcclient (class in cloudvision.connector.grpc_client.grpcclient)": [[63, "cloudvision.Connector.grpc_client.grpcClient.GRPCClient", false]], "hardwarelifecyclesummary (class in arista.lifecycle.v1.lifecycle_pb2)": [[38, "arista.lifecycle.v1.lifecycle_pb2.HardwareLifecycleSummary", false]], "headervalues (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.HeaderValues", false]], "httpget() (cloudvision.cvlib.context.context method)": [[65, "cloudvision.cvlib.context.Context.httpGet", false]], "httpgetconfig() (cloudvision.cvlib.context.context method)": [[65, "cloudvision.cvlib.context.Context.httpGetConfig", false]], "httpheaders (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.HttpHeaders", false]], "httpheaders.valuesentry (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.HttpHeaders.ValuesEntry", false]], "httppost() (cloudvision.cvlib.context.context method)": [[65, "cloudvision.cvlib.context.Context.httpPost", false]], "httpsettings (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.HttpSettings", false]], "idallocator (class in cloudvision.cvlib.id_allocator)": [[65, "cloudvision.cvlib.id_allocator.IdAllocator", false]], "identifier (class in arista.endpointlocation.v1.endpointlocation_pb2)": [[23, "arista.endpointlocation.v1.endpointlocation_pb2.Identifier", false]], "identifierlist (class in arista.endpointlocation.v1.endpointlocation_pb2)": [[23, "arista.endpointlocation.v1.endpointlocation_pb2.IdentifierList", false]], "identifiersourcelist (class in arista.endpointlocation.v1.endpointlocation_pb2)": [[23, "arista.endpointlocation.v1.endpointlocation_pb2.IdentifierSourceList", false]], "imageerror (class in arista.imagestatus.v1.imagestatus_pb2)": [[32, "arista.imagestatus.v1.imagestatus_pb2.ImageError", false]], "imageerrors (class in arista.imagestatus.v1.imagestatus_pb2)": [[32, "arista.imagestatus.v1.imagestatus_pb2.ImageErrors", false]], "imageinfo (class in arista.imagestatus.v1.imagestatus_pb2)": [[32, "arista.imagestatus.v1.imagestatus_pb2.ImageInfo", false]], "imageinfos (class in arista.imagestatus.v1.imagestatus_pb2)": [[32, "arista.imagestatus.v1.imagestatus_pb2.ImageInfos", false]], "imagemetadata (class in arista.imagestatus.v1.imagestatus_pb2)": [[32, "arista.imagestatus.v1.imagestatus_pb2.ImageMetadata", false]], "imagesummary (class in arista.imagestatus.v1.imagestatus_pb2)": [[32, "arista.imagestatus.v1.imagestatus_pb2.ImageSummary", false]], "imagevalidationresult (class in arista.workspace.v1.workspace_pb2)": [[55, "arista.workspace.v1.workspace_pb2.ImageValidationResult", false]], "imagewarning (class in arista.imagestatus.v1.imagestatus_pb2)": [[32, "arista.imagestatus.v1.imagestatus_pb2.ImageWarning", false]], "imagewarnings (class in arista.imagestatus.v1.imagestatus_pb2)": [[32, "arista.imagestatus.v1.imagestatus_pb2.ImageWarnings", false]], "info (cloudvision.cvlib.context.logginglevel attribute)": [[65, "cloudvision.cvlib.context.LoggingLevel.Info", false]], "info() (cloudvision.cvlib.context.context method)": [[65, "cloudvision.cvlib.context.Context.info", false]], "inhibitionsettings (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.InhibitionSettings", false]], "inhibitionsettings.valuesentry (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.InhibitionSettings.ValuesEntry", false]], "initializestudioctxfromargs() (cloudvision.cvlib.context.context method)": [[65, "cloudvision.cvlib.context.Context.initializeStudioCtxFromArgs", false]], "inputemptyexception": [[65, "cloudvision.cvlib.exceptions.InputEmptyException", false]], "inputerror (class in arista.workspace.v1.workspace_pb2)": [[55, "arista.workspace.v1.workspace_pb2.InputError", false]], "inputerror (class in cloudvision.cvlib.exceptions)": [[65, "cloudvision.cvlib.exceptions.InputError", false]], "inputerrorexception": [[65, "cloudvision.cvlib.exceptions.InputErrorException", false]], "inputerrors (class in arista.workspace.v1.workspace_pb2)": [[55, "arista.workspace.v1.workspace_pb2.InputErrors", false]], "inputexception": [[65, "cloudvision.cvlib.exceptions.InputException", false]], "inputfield (class in arista.studio.v1.studio_pb2)": [[47, "arista.studio.v1.studio_pb2.InputField", false]], "inputfields (class in arista.studio.v1.studio_pb2)": [[47, "arista.studio.v1.studio_pb2.InputFields", false]], "inputfields.valuesentry (class in arista.studio.v1.studio_pb2)": [[47, "arista.studio.v1.studio_pb2.InputFields.ValuesEntry", false]], "inputnotfoundexception": [[65, "cloudvision.cvlib.exceptions.InputNotFoundException", false]], "inputrequestexception": [[65, "cloudvision.cvlib.exceptions.InputRequestException", false]], "inputs (class in arista.studio.v1.studio_pb2)": [[47, "arista.studio.v1.studio_pb2.Inputs", false]], "inputsbatchedstreamrequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.InputsBatchedStreamRequest", false]], "inputsbatchedstreamresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.InputsBatchedStreamResponse", false]], "inputschema (class in arista.studio.v1.studio_pb2)": [[47, "arista.studio.v1.studio_pb2.InputSchema", false]], "inputsconfig (class in arista.studio.v1.studio_pb2)": [[47, "arista.studio.v1.studio_pb2.InputsConfig", false]], "inputsconfigbatchedstreamrequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.InputsConfigBatchedStreamRequest", false]], "inputsconfigbatchedstreamresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.InputsConfigBatchedStreamResponse", false]], "inputsconfigdeleteallrequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.InputsConfigDeleteAllRequest", false]], "inputsconfigdeleteallresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.InputsConfigDeleteAllResponse", false]], "inputsconfigdeleterequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.InputsConfigDeleteRequest", false]], "inputsconfigdeleteresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.InputsConfigDeleteResponse", false]], "inputsconfigdeletesomerequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.InputsConfigDeleteSomeRequest", false]], "inputsconfigdeletesomeresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.InputsConfigDeleteSomeResponse", false]], "inputsconfigrequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.InputsConfigRequest", false]], "inputsconfigresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.InputsConfigResponse", false]], "inputsconfigservice (class in arista.studio.v1.services.gen_pb2_grpc)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsConfigService", false]], "inputsconfigserviceservicer (class in arista.studio.v1.services.gen_pb2_grpc)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsConfigServiceServicer", false]], "inputsconfigservicestub (class in arista.studio.v1.services.gen_pb2_grpc)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsConfigServiceStub", false]], "inputsconfigsetrequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.InputsConfigSetRequest", false]], "inputsconfigsetresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.InputsConfigSetResponse", false]], "inputsconfigsetsomerequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.InputsConfigSetSomeRequest", false]], "inputsconfigsetsomeresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.InputsConfigSetSomeResponse", false]], "inputsconfigsomerequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.InputsConfigSomeRequest", false]], "inputsconfigsomeresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.InputsConfigSomeResponse", false]], "inputsconfigstreamrequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.InputsConfigStreamRequest", false]], "inputsconfigstreamresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.InputsConfigStreamResponse", false]], "inputskey (class in arista.studio.v1.studio_pb2)": [[47, "arista.studio.v1.studio_pb2.InputsKey", false]], "inputsrequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.InputsRequest", false]], "inputsresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.InputsResponse", false]], "inputsservice (class in arista.studio.v1.services.gen_pb2_grpc)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsService", false]], "inputsserviceservicer (class in arista.studio.v1.services.gen_pb2_grpc)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsServiceServicer", false]], "inputsservicestub (class in arista.studio.v1.services.gen_pb2_grpc)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsServiceStub", false]], "inputssomerequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.InputsSomeRequest", false]], "inputssomeresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.InputsSomeResponse", false]], "inputsstreamrequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.InputsStreamRequest", false]], "inputsstreamresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.InputsStreamResponse", false]], "inputupdateexception": [[65, "cloudvision.cvlib.exceptions.InputUpdateException", false]], "inputvalidationresult (class in arista.workspace.v1.workspace_pb2)": [[55, "arista.workspace.v1.workspace_pb2.InputValidationResult", false]], "inputvalidationresults (class in arista.workspace.v1.workspace_pb2)": [[55, "arista.workspace.v1.workspace_pb2.InputValidationResults", false]], "inputvalidationresults.valuesentry (class in arista.workspace.v1.workspace_pb2)": [[55, "arista.workspace.v1.workspace_pb2.InputValidationResults.ValuesEntry", false]], "integerinputfieldprops (class in arista.studio.v1.studio_pb2)": [[47, "arista.studio.v1.studio_pb2.IntegerInputFieldProps", false]], "interface (class in cloudvision.cvlib.device)": [[65, "cloudvision.cvlib.device.Interface", false]], "invalidcontextexception": [[65, "cloudvision.cvlib.exceptions.InvalidContextException", false]], "invalidcredentials": [[65, "cloudvision.cvlib.exceptions.InvalidCredentials", false]], "invalidtopologyexception": [[65, "cloudvision.cvlib.exceptions.InvalidTopologyException", false]], "ipaddress (class in fmp.inet_pb2)": [[66, "fmp.inet_pb2.IPAddress", false]], "iperrorexception": [[65, "cloudvision.cvlib.exceptions.IpErrorException", false]], "iphostindexexception": [[65, "cloudvision.cvlib.exceptions.IpHostIndexException", false]], "ipnetworkoverlapexception": [[65, "cloudvision.cvlib.exceptions.IpNetworkOverlapException", false]], "ipprefix (class in fmp.inet_pb2)": [[66, "fmp.inet_pb2.IPPrefix", false]], "ipsubnetindexexception": [[65, "cloudvision.cvlib.exceptions.IpSubnetIndexException", false]], "ipv4address (class in fmp.inet_pb2)": [[66, "fmp.inet_pb2.IPv4Address", false]], "ipv4prefix (class in fmp.inet_pb2)": [[66, "fmp.inet_pb2.IPv4Prefix", false]], "ipv6address (class in fmp.inet_pb2)": [[66, "fmp.inet_pb2.IPv6Address", false]], "ipv6prefix (class in fmp.inet_pb2)": [[66, "fmp.inet_pb2.IPv6Prefix", false]], "is_ipv4() (in module cloudvision.cvlib.iputils)": [[65, "cloudvision.cvlib.iputils.is_ipv4", false]], "is_ipv6() (in module cloudvision.cvlib.iputils)": [[65, "cloudvision.cvlib.iputils.is_ipv6", false]], "keepblanklines() (cloudvision.cvlib.context.context method)": [[65, "cloudvision.cvlib.context.Context.keepBlankLines", false]], "key_from_pem() (in module cloudvision.connector.auth.cert)": [[59, "cloudvision.Connector.auth.cert.key_from_pem", false]], "label (cloudvision.cvlib.tags.tag property)": [[65, "cloudvision.cvlib.tags.Tag.label", false]], "last_usable_address() (in module cloudvision.cvlib.iputils)": [[65, "cloudvision.cvlib.iputils.last_usable_address", false]], "layout (class in arista.studio.v1.studio_pb2)": [[47, "arista.studio.v1.studio_pb2.Layout", false]], "load_cert() (in module cloudvision.connector.auth.cert)": [[59, "cloudvision.Connector.auth.cert.load_cert", false]], "load_key() (in module cloudvision.connector.auth.cert)": [[59, "cloudvision.Connector.auth.cert.load_key", false]], "load_key_cert_pair() (in module cloudvision.connector.auth.cert)": [[59, "cloudvision.Connector.auth.cert.load_key_cert_pair", false]], "location (class in arista.endpointlocation.v1.endpointlocation_pb2)": [[23, "arista.endpointlocation.v1.endpointlocation_pb2.Location", false]], "locationlist (class in arista.endpointlocation.v1.endpointlocation_pb2)": [[23, "arista.endpointlocation.v1.endpointlocation_pb2.LocationList", false]], "logger (class in cloudvision.cvlib.logger)": [[65, "cloudvision.cvlib.logger.Logger", false]], "loggingfailed": [[65, "cloudvision.cvlib.exceptions.LoggingFailed", false]], "logginglevel (class in cloudvision.cvlib.context)": [[65, "cloudvision.cvlib.context.LoggingLevel", false]], "macaddress (class in fmp.yang_pb2)": [[66, "fmp.yang_pb2.MACAddress", false]], "mapboolbool (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapBoolBool", false]], "mapboolbool.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapBoolBool.ValuesEntry", false]], "mapboolbytes (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapBoolBytes", false]], "mapboolbytes.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapBoolBytes.ValuesEntry", false]], "mapbooldouble (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapBoolDouble", false]], "mapbooldouble.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapBoolDouble.ValuesEntry", false]], "mapboolfloat (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapBoolFloat", false]], "mapboolfloat.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapBoolFloat.ValuesEntry", false]], "mapboolint32 (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapBoolInt32", false]], "mapboolint32.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapBoolInt32.ValuesEntry", false]], "mapboolint64 (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapBoolInt64", false]], "mapboolint64.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapBoolInt64.ValuesEntry", false]], "mapboolstring (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapBoolString", false]], "mapboolstring.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapBoolString.ValuesEntry", false]], "mapbooluint32 (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapBoolUInt32", false]], "mapbooluint32.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapBoolUInt32.ValuesEntry", false]], "mapbooluint64 (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapBoolUInt64", false]], "mapbooluint64.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapBoolUInt64.ValuesEntry", false]], "mapint32bool (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapInt32Bool", false]], "mapint32bool.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapInt32Bool.ValuesEntry", false]], "mapint32bytes (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapInt32Bytes", false]], "mapint32bytes.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapInt32Bytes.ValuesEntry", false]], "mapint32double (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapInt32Double", false]], "mapint32double.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapInt32Double.ValuesEntry", false]], "mapint32float (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapInt32Float", false]], "mapint32float.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapInt32Float.ValuesEntry", false]], "mapint32int32 (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapInt32Int32", false]], "mapint32int32.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapInt32Int32.ValuesEntry", false]], "mapint32int64 (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapInt32Int64", false]], "mapint32int64.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapInt32Int64.ValuesEntry", false]], "mapint32string (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapInt32String", false]], "mapint32string.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapInt32String.ValuesEntry", false]], "mapint32uint32 (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapInt32UInt32", false]], "mapint32uint32.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapInt32UInt32.ValuesEntry", false]], "mapint32uint64 (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapInt32UInt64", false]], "mapint32uint64.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapInt32UInt64.ValuesEntry", false]], "mapint64bool (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapInt64Bool", false]], "mapint64bool.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapInt64Bool.ValuesEntry", false]], "mapint64bytes (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapInt64Bytes", false]], "mapint64bytes.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapInt64Bytes.ValuesEntry", false]], "mapint64double (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapInt64Double", false]], "mapint64double.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapInt64Double.ValuesEntry", false]], "mapint64float (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapInt64Float", false]], "mapint64float.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapInt64Float.ValuesEntry", false]], "mapint64int32 (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapInt64Int32", false]], "mapint64int32.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapInt64Int32.ValuesEntry", false]], "mapint64int64 (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapInt64Int64", false]], "mapint64int64.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapInt64Int64.ValuesEntry", false]], "mapint64string (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapInt64String", false]], "mapint64string.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapInt64String.ValuesEntry", false]], "mapint64uint32 (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapInt64UInt32", false]], "mapint64uint32.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapInt64UInt32.ValuesEntry", false]], "mapint64uint64 (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapInt64UInt64", false]], "mapint64uint64.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapInt64UInt64.ValuesEntry", false]], "mapstringbool (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapStringBool", false]], "mapstringbool.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapStringBool.ValuesEntry", false]], "mapstringbytes (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapStringBytes", false]], "mapstringbytes.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapStringBytes.ValuesEntry", false]], "mapstringdouble (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapStringDouble", false]], "mapstringdouble.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapStringDouble.ValuesEntry", false]], "mapstringfloat (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapStringFloat", false]], "mapstringfloat.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapStringFloat.ValuesEntry", false]], "mapstringint32 (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapStringInt32", false]], "mapstringint32.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapStringInt32.ValuesEntry", false]], "mapstringint64 (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapStringInt64", false]], "mapstringint64.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapStringInt64.ValuesEntry", false]], "mapstringstring (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapStringString", false]], "mapstringstring.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapStringString.ValuesEntry", false]], "mapstringuint32 (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapStringUInt32", false]], "mapstringuint32.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapStringUInt32.ValuesEntry", false]], "mapstringuint64 (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapStringUInt64", false]], "mapstringuint64.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapStringUInt64.ValuesEntry", false]], "mapuint32bool (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapUInt32Bool", false]], "mapuint32bool.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapUInt32Bool.ValuesEntry", false]], "mapuint32bytes (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapUInt32Bytes", false]], "mapuint32bytes.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapUInt32Bytes.ValuesEntry", false]], "mapuint32double (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapUInt32Double", false]], "mapuint32double.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapUInt32Double.ValuesEntry", false]], "mapuint32float (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapUInt32Float", false]], "mapuint32float.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapUInt32Float.ValuesEntry", false]], "mapuint32int32 (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapUInt32Int32", false]], "mapuint32int32.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapUInt32Int32.ValuesEntry", false]], "mapuint32int64 (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapUInt32Int64", false]], "mapuint32int64.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapUInt32Int64.ValuesEntry", false]], "mapuint32string (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapUInt32String", false]], "mapuint32string.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapUInt32String.ValuesEntry", false]], "mapuint32uint32 (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapUInt32UInt32", false]], "mapuint32uint32.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapUInt32UInt32.ValuesEntry", false]], "mapuint32uint64 (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapUInt32UInt64", false]], "mapuint32uint64.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapUInt32UInt64.ValuesEntry", false]], "mapuint64bool (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapUInt64Bool", false]], "mapuint64bool.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapUInt64Bool.ValuesEntry", false]], "mapuint64bytes (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapUInt64Bytes", false]], "mapuint64bytes.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapUInt64Bytes.ValuesEntry", false]], "mapuint64double (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapUInt64Double", false]], "mapuint64double.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapUInt64Double.ValuesEntry", false]], "mapuint64float (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapUInt64Float", false]], "mapuint64float.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapUInt64Float.ValuesEntry", false]], "mapuint64int32 (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapUInt64Int32", false]], "mapuint64int32.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapUInt64Int32.ValuesEntry", false]], "mapuint64int64 (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapUInt64Int64", false]], "mapuint64int64.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapUInt64Int64.ValuesEntry", false]], "mapuint64string (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapUInt64String", false]], "mapuint64string.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapUInt64String.ValuesEntry", false]], "mapuint64uint32 (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapUInt64UInt32", false]], "mapuint64uint32.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapUInt64UInt32.ValuesEntry", false]], "mapuint64uint64 (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapUInt64UInt64", false]], "mapuint64uint64.valuesentry (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.MapUInt64UInt64.ValuesEntry", false]], "matches (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.Matches", false]], "mergestudioinputs() (in module cloudvision.cvlib.studio)": [[65, "cloudvision.cvlib.studio.mergeStudioInputs", false]], "metaresponse (class in arista.alert.v1.services.gen_pb2)": [[3, "arista.alert.v1.services.gen_pb2.MetaResponse", false]], "metaresponse (class in arista.bugexposure.v1.services.gen_pb2)": [[6, "arista.bugexposure.v1.services.gen_pb2.MetaResponse", false]], "metaresponse (class in arista.changecontrol.v1.services.gen_pb2)": [[9, "arista.changecontrol.v1.services.gen_pb2.MetaResponse", false]], "metaresponse (class in arista.configlet.v1.services.gen_pb2)": [[12, "arista.configlet.v1.services.gen_pb2.MetaResponse", false]], "metaresponse (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.MetaResponse", false]], "metaresponse (class in arista.connectivitymonitor.v1.services.gen_pb2)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2.MetaResponse", false]], "metaresponse (class in arista.dashboard.v1.services.gen_pb2)": [[21, "arista.dashboard.v1.services.gen_pb2.MetaResponse", false]], "metaresponse (class in arista.endpointlocation.v1.services.gen_pb2)": [[24, "arista.endpointlocation.v1.services.gen_pb2.MetaResponse", false]], "metaresponse (class in arista.event.v1.services.gen_pb2)": [[27, "arista.event.v1.services.gen_pb2.MetaResponse", false]], "metaresponse (class in arista.identityprovider.v1.services.gen_pb2)": [[30, "arista.identityprovider.v1.services.gen_pb2.MetaResponse", false]], "metaresponse (class in arista.imagestatus.v1.services.gen_pb2)": [[33, "arista.imagestatus.v1.services.gen_pb2.MetaResponse", false]], "metaresponse (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.MetaResponse", false]], "metaresponse (class in arista.lifecycle.v1.services.gen_pb2)": [[39, "arista.lifecycle.v1.services.gen_pb2.MetaResponse", false]], "metaresponse (class in arista.redirector.v1.services.gen_pb2)": [[42, "arista.redirector.v1.services.gen_pb2.MetaResponse", false]], "metaresponse (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.MetaResponse", false]], "metaresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.MetaResponse", false]], "metaresponse (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.MetaResponse", false]], "metaresponse (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.MetaResponse", false]], "module": [[0, "module-arista", false], [1, "module-arista.alert", false], [2, "module-arista.alert.v1", false], [2, "module-arista.alert.v1.alert_pb2", false], [2, "module-arista.alert.v1.alert_pb2_grpc", false], [3, "module-arista.alert.v1.services", false], [3, "module-arista.alert.v1.services.gen_pb2", false], [3, "module-arista.alert.v1.services.gen_pb2_grpc", false], [4, "module-arista.bugexposure", false], [5, "module-arista.bugexposure.v1", false], [5, "module-arista.bugexposure.v1.bugexposure_pb2", false], [5, "module-arista.bugexposure.v1.bugexposure_pb2_grpc", false], [6, "module-arista.bugexposure.v1.services", false], [6, "module-arista.bugexposure.v1.services.gen_pb2", false], [6, "module-arista.bugexposure.v1.services.gen_pb2_grpc", false], [7, "module-arista.changecontrol", false], [8, "module-arista.changecontrol.v1", false], [8, "module-arista.changecontrol.v1.changecontrol_pb2", false], [8, "module-arista.changecontrol.v1.changecontrol_pb2_grpc", false], [9, "module-arista.changecontrol.v1.services", false], [9, "module-arista.changecontrol.v1.services.gen_pb2", false], [9, "module-arista.changecontrol.v1.services.gen_pb2_grpc", false], [10, "module-arista.configlet", false], [11, "module-arista.configlet.v1", false], [11, "module-arista.configlet.v1.configlet_pb2", false], [11, "module-arista.configlet.v1.configlet_pb2_grpc", false], [12, "module-arista.configlet.v1.services", false], [12, "module-arista.configlet.v1.services.gen_pb2", false], [12, "module-arista.configlet.v1.services.gen_pb2_grpc", false], [13, "module-arista.configstatus", false], [14, "module-arista.configstatus.v1", false], [14, "module-arista.configstatus.v1.configstatus_pb2", false], [14, "module-arista.configstatus.v1.configstatus_pb2_grpc", false], [15, "module-arista.configstatus.v1.services", false], [15, "module-arista.configstatus.v1.services.gen_pb2", false], [15, "module-arista.configstatus.v1.services.gen_pb2_grpc", false], [16, "module-arista.connectivitymonitor", false], [17, "module-arista.connectivitymonitor.v1", false], [17, "module-arista.connectivitymonitor.v1.connectivitymonitor_pb2", false], [17, "module-arista.connectivitymonitor.v1.connectivitymonitor_pb2_grpc", false], [18, "module-arista.connectivitymonitor.v1.services", false], [18, "module-arista.connectivitymonitor.v1.services.gen_pb2", false], [18, "module-arista.connectivitymonitor.v1.services.gen_pb2_grpc", false], [19, "module-arista.dashboard", false], [20, "module-arista.dashboard.v1", false], [20, "module-arista.dashboard.v1.dashboard_pb2", false], [20, "module-arista.dashboard.v1.dashboard_pb2_grpc", false], [21, "module-arista.dashboard.v1.services", false], [21, "module-arista.dashboard.v1.services.gen_pb2", false], [21, "module-arista.dashboard.v1.services.gen_pb2_grpc", false], [22, "module-arista.endpointlocation", false], [23, "module-arista.endpointlocation.v1", false], [23, "module-arista.endpointlocation.v1.endpointlocation_pb2", false], [23, "module-arista.endpointlocation.v1.endpointlocation_pb2_grpc", false], [24, "module-arista.endpointlocation.v1.services", false], [24, "module-arista.endpointlocation.v1.services.gen_pb2", false], [24, "module-arista.endpointlocation.v1.services.gen_pb2_grpc", false], [25, "module-arista.event", false], [26, "module-arista.event.v1", false], [26, "module-arista.event.v1.event_pb2", false], [26, "module-arista.event.v1.event_pb2_grpc", false], [27, "module-arista.event.v1.services", false], [27, "module-arista.event.v1.services.gen_pb2", false], [27, "module-arista.event.v1.services.gen_pb2_grpc", false], [28, "module-arista.identityprovider", false], [29, "module-arista.identityprovider.v1", false], [29, "module-arista.identityprovider.v1.identityprovider_pb2", false], [29, "module-arista.identityprovider.v1.identityprovider_pb2_grpc", false], [30, "module-arista.identityprovider.v1.services", false], [30, "module-arista.identityprovider.v1.services.gen_pb2", false], [30, "module-arista.identityprovider.v1.services.gen_pb2_grpc", false], [31, "module-arista.imagestatus", false], [32, "module-arista.imagestatus.v1", false], [32, "module-arista.imagestatus.v1.imagestatus_pb2", false], [32, "module-arista.imagestatus.v1.imagestatus_pb2_grpc", false], [33, "module-arista.imagestatus.v1.services", false], [33, "module-arista.imagestatus.v1.services.gen_pb2", false], [33, "module-arista.imagestatus.v1.services.gen_pb2_grpc", false], [34, "module-arista.inventory", false], [35, "module-arista.inventory.v1", false], [35, "module-arista.inventory.v1.inventory_pb2", false], [35, "module-arista.inventory.v1.inventory_pb2_grpc", false], [36, "module-arista.inventory.v1.services", false], [36, "module-arista.inventory.v1.services.gen_pb2", false], [36, "module-arista.inventory.v1.services.gen_pb2_grpc", false], [37, "module-arista.lifecycle", false], [38, "module-arista.lifecycle.v1", false], [38, "module-arista.lifecycle.v1.lifecycle_pb2", false], [38, "module-arista.lifecycle.v1.lifecycle_pb2_grpc", false], [39, "module-arista.lifecycle.v1.services", false], [39, "module-arista.lifecycle.v1.services.gen_pb2", false], [39, "module-arista.lifecycle.v1.services.gen_pb2_grpc", false], [40, "module-arista.redirector", false], [41, "module-arista.redirector.v1", false], [41, "module-arista.redirector.v1.redirector_pb2", false], [41, "module-arista.redirector.v1.redirector_pb2_grpc", false], [42, "module-arista.redirector.v1.services", false], [42, "module-arista.redirector.v1.services.gen_pb2", false], [42, "module-arista.redirector.v1.services.gen_pb2_grpc", false], [43, "module-arista.serviceaccount", false], [44, "module-arista.serviceaccount.v1", false], [44, "module-arista.serviceaccount.v1.serviceaccount_pb2", false], [44, "module-arista.serviceaccount.v1.serviceaccount_pb2_grpc", false], [45, "module-arista.serviceaccount.v1.services", false], [45, "module-arista.serviceaccount.v1.services.gen_pb2", false], [45, "module-arista.serviceaccount.v1.services.gen_pb2_grpc", false], [46, "module-arista.studio", false], [47, "module-arista.studio.v1", false], [47, "module-arista.studio.v1.studio_pb2", false], [47, "module-arista.studio.v1.studio_pb2_grpc", false], [48, "module-arista.studio.v1.services", false], [48, "module-arista.studio.v1.services.gen_pb2", false], [48, "module-arista.studio.v1.services.gen_pb2_grpc", false], [49, "module-arista.subscriptions", false], [49, "module-arista.subscriptions.subscriptions_pb2", false], [49, "module-arista.subscriptions.subscriptions_pb2_grpc", false], [50, "module-arista.tag", false], [51, "module-arista.tag.v2", false], [51, "module-arista.tag.v2.tag_pb2", false], [51, "module-arista.tag.v2.tag_pb2_grpc", false], [52, "module-arista.tag.v2.services", false], [52, "module-arista.tag.v2.services.gen_pb2", false], [52, "module-arista.tag.v2.services.gen_pb2_grpc", false], [53, "module-arista.time", false], [53, "module-arista.time.time_pb2", false], [53, "module-arista.time.time_pb2_grpc", false], [54, "module-arista.workspace", false], [55, "module-arista.workspace.v1", false], [55, "module-arista.workspace.v1.workspace_pb2", false], [55, "module-arista.workspace.v1.workspace_pb2_grpc", false], [56, "module-arista.workspace.v1.services", false], [56, "module-arista.workspace.v1.services.gen_pb2", false], [56, "module-arista.workspace.v1.services.gen_pb2_grpc", false], [57, "module-cloudvision", false], [58, "module-cloudvision.Connector", false], [59, "module-cloudvision.Connector.auth", false], [59, "module-cloudvision.Connector.auth.cert", false], [60, "module-cloudvision.Connector.codec", false], [60, "module-cloudvision.Connector.codec.custom_types", false], [60, "module-cloudvision.Connector.codec.decoder", false], [60, "module-cloudvision.Connector.codec.encoder", false], [61, "module-cloudvision.Connector.core", false], [61, "module-cloudvision.Connector.core.utils", false], [62, "module-cloudvision.Connector.gen", false], [62, "module-cloudvision.Connector.gen.ca_pb2", false], [62, "module-cloudvision.Connector.gen.ca_pb2_grpc", false], [62, "module-cloudvision.Connector.gen.notification_pb2", false], [62, "module-cloudvision.Connector.gen.notification_pb2_grpc", false], [62, "module-cloudvision.Connector.gen.router_pb2", false], [62, "module-cloudvision.Connector.gen.router_pb2_grpc", false], [62, "module-cloudvision.Connector.gen.sharding_pb2", false], [62, "module-cloudvision.Connector.gen.sharding_pb2_grpc", false], [63, "module-cloudvision.Connector.grpc_client", false], [63, "module-cloudvision.Connector.grpc_client.grpcClient", false], [64, "module-cloudvision.Connector.protobuf", false], [65, "module-cloudvision.cvlib", false], [65, "module-cloudvision.cvlib.action", false], [65, "module-cloudvision.cvlib.changecontrol", false], [65, "module-cloudvision.cvlib.connections", false], [65, "module-cloudvision.cvlib.constants", false], [65, "module-cloudvision.cvlib.context", false], [65, "module-cloudvision.cvlib.device", false], [65, "module-cloudvision.cvlib.exceptions", false], [65, "module-cloudvision.cvlib.execution", false], [65, "module-cloudvision.cvlib.id_allocator", false], [65, "module-cloudvision.cvlib.iputils", false], [65, "module-cloudvision.cvlib.logger", false], [65, "module-cloudvision.cvlib.studio", false], [65, "module-cloudvision.cvlib.tags", false], [65, "module-cloudvision.cvlib.topology", false], [65, "module-cloudvision.cvlib.user", false], [65, "module-cloudvision.cvlib.utils", false], [65, "module-cloudvision.cvlib.workspace", false], [66, "module-fmp", false], [66, "module-fmp.deletes_pb2", false], [66, "module-fmp.deletes_pb2_grpc", false], [66, "module-fmp.extensions_pb2", false], [66, "module-fmp.extensions_pb2_grpc", false], [66, "module-fmp.inet_pb2", false], [66, "module-fmp.inet_pb2_grpc", false], [66, "module-fmp.pages_pb2", false], [66, "module-fmp.pages_pb2_grpc", false], [66, "module-fmp.wrappers_pb2", false], [66, "module-fmp.wrappers_pb2_grpc", false], [66, "module-fmp.yang_pb2", false], [66, "module-fmp.yang_pb2_grpc", false]], "msteamsendpoint (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.MsTeamsEndpoint", false]], "msteamsendpoints (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.MsTeamsEndpoints", false]], "msteamssettings (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.MsTeamsSettings", false]], "number_of_usable_addresses() (in module cloudvision.cvlib.iputils)": [[65, "cloudvision.cvlib.iputils.number_of_usable_addresses", false]], "oauthconfig (class in arista.identityprovider.v1.identityprovider_pb2)": [[29, "arista.identityprovider.v1.identityprovider_pb2.OAuthConfig", false]], "oauthconfigbatchedstreamrequest (class in arista.identityprovider.v1.services.gen_pb2)": [[30, "arista.identityprovider.v1.services.gen_pb2.OAuthConfigBatchedStreamRequest", false]], "oauthconfigbatchedstreamresponse (class in arista.identityprovider.v1.services.gen_pb2)": [[30, "arista.identityprovider.v1.services.gen_pb2.OAuthConfigBatchedStreamResponse", false]], "oauthconfigdeleteallrequest (class in arista.identityprovider.v1.services.gen_pb2)": [[30, "arista.identityprovider.v1.services.gen_pb2.OAuthConfigDeleteAllRequest", false]], "oauthconfigdeleteallresponse (class in arista.identityprovider.v1.services.gen_pb2)": [[30, "arista.identityprovider.v1.services.gen_pb2.OAuthConfigDeleteAllResponse", false]], "oauthconfigdeleterequest (class in arista.identityprovider.v1.services.gen_pb2)": [[30, "arista.identityprovider.v1.services.gen_pb2.OAuthConfigDeleteRequest", false]], "oauthconfigdeleteresponse (class in arista.identityprovider.v1.services.gen_pb2)": [[30, "arista.identityprovider.v1.services.gen_pb2.OAuthConfigDeleteResponse", false]], "oauthconfigdeletesomerequest (class in arista.identityprovider.v1.services.gen_pb2)": [[30, "arista.identityprovider.v1.services.gen_pb2.OAuthConfigDeleteSomeRequest", false]], "oauthconfigdeletesomeresponse (class in arista.identityprovider.v1.services.gen_pb2)": [[30, "arista.identityprovider.v1.services.gen_pb2.OAuthConfigDeleteSomeResponse", false]], "oauthconfigrequest (class in arista.identityprovider.v1.services.gen_pb2)": [[30, "arista.identityprovider.v1.services.gen_pb2.OAuthConfigRequest", false]], "oauthconfigresponse (class in arista.identityprovider.v1.services.gen_pb2)": [[30, "arista.identityprovider.v1.services.gen_pb2.OAuthConfigResponse", false]], "oauthconfigservice (class in arista.identityprovider.v1.services.gen_pb2_grpc)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.OAuthConfigService", false]], "oauthconfigserviceservicer (class in arista.identityprovider.v1.services.gen_pb2_grpc)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.OAuthConfigServiceServicer", false]], "oauthconfigservicestub (class in arista.identityprovider.v1.services.gen_pb2_grpc)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.OAuthConfigServiceStub", false]], "oauthconfigsetrequest (class in arista.identityprovider.v1.services.gen_pb2)": [[30, "arista.identityprovider.v1.services.gen_pb2.OAuthConfigSetRequest", false]], "oauthconfigsetresponse (class in arista.identityprovider.v1.services.gen_pb2)": [[30, "arista.identityprovider.v1.services.gen_pb2.OAuthConfigSetResponse", false]], "oauthconfigsetsomerequest (class in arista.identityprovider.v1.services.gen_pb2)": [[30, "arista.identityprovider.v1.services.gen_pb2.OAuthConfigSetSomeRequest", false]], "oauthconfigsetsomeresponse (class in arista.identityprovider.v1.services.gen_pb2)": [[30, "arista.identityprovider.v1.services.gen_pb2.OAuthConfigSetSomeResponse", false]], "oauthconfigsomerequest (class in arista.identityprovider.v1.services.gen_pb2)": [[30, "arista.identityprovider.v1.services.gen_pb2.OAuthConfigSomeRequest", false]], "oauthconfigsomeresponse (class in arista.identityprovider.v1.services.gen_pb2)": [[30, "arista.identityprovider.v1.services.gen_pb2.OAuthConfigSomeResponse", false]], "oauthconfigstreamrequest (class in arista.identityprovider.v1.services.gen_pb2)": [[30, "arista.identityprovider.v1.services.gen_pb2.OAuthConfigStreamRequest", false]], "oauthconfigstreamresponse (class in arista.identityprovider.v1.services.gen_pb2)": [[30, "arista.identityprovider.v1.services.gen_pb2.OAuthConfigStreamResponse", false]], "oauthkey (class in arista.identityprovider.v1.identityprovider_pb2)": [[29, "arista.identityprovider.v1.identityprovider_pb2.OAuthKey", false]], "opsgenieendpoint (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.OpsgenieEndpoint", false]], "opsgenieendpoints (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.OpsgenieEndpoints", false]], "opsgeniesettings (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.OpsgenieSettings", false]], "overlapping_networks_check() (in module cloudvision.cvlib.iputils)": [[65, "cloudvision.cvlib.iputils.overlapping_networks_check", false]], "pagerdutyendpoint (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.PagerdutyEndpoint", false]], "pagerdutyendpoints (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.PagerdutyEndpoints", false]], "pagerdutysettings (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.PagerdutySettings", false]], "path (class in cloudvision.connector.codec)": [[60, "cloudvision.Connector.codec.Path", false]], "path (class in cloudvision.connector.codec.custom_types)": [[60, "cloudvision.Connector.codec.custom_types.Path", false]], "port (class in fmp.inet_pb2)": [[66, "fmp.inet_pb2.Port", false]], "position (class in arista.dashboard.v1.dashboard_pb2)": [[20, "arista.dashboard.v1.dashboard_pb2.Position", false]], "priorities (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.Priorities", false]], "probe (class in arista.connectivitymonitor.v1.connectivitymonitor_pb2)": [[17, "arista.connectivitymonitor.v1.connectivitymonitor_pb2.Probe", false]], "probebatchedstreamrequest (class in arista.connectivitymonitor.v1.services.gen_pb2)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2.ProbeBatchedStreamRequest", false]], "probebatchedstreamresponse (class in arista.connectivitymonitor.v1.services.gen_pb2)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2.ProbeBatchedStreamResponse", false]], "probekey (class in arista.connectivitymonitor.v1.connectivitymonitor_pb2)": [[17, "arista.connectivitymonitor.v1.connectivitymonitor_pb2.ProbeKey", false]], "proberequest (class in arista.connectivitymonitor.v1.services.gen_pb2)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2.ProbeRequest", false]], "proberesponse (class in arista.connectivitymonitor.v1.services.gen_pb2)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2.ProbeResponse", false]], "probeservice (class in arista.connectivitymonitor.v1.services.gen_pb2_grpc)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeService", false]], "probeserviceservicer (class in arista.connectivitymonitor.v1.services.gen_pb2_grpc)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeServiceServicer", false]], "probeservicestub (class in arista.connectivitymonitor.v1.services.gen_pb2_grpc)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeServiceStub", false]], "probesomerequest (class in arista.connectivitymonitor.v1.services.gen_pb2)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2.ProbeSomeRequest", false]], "probesomeresponse (class in arista.connectivitymonitor.v1.services.gen_pb2)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2.ProbeSomeResponse", false]], "probestats (class in arista.connectivitymonitor.v1.connectivitymonitor_pb2)": [[17, "arista.connectivitymonitor.v1.connectivitymonitor_pb2.ProbeStats", false]], "probestatsbatchedstreamrequest (class in arista.connectivitymonitor.v1.services.gen_pb2)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2.ProbeStatsBatchedStreamRequest", false]], "probestatsbatchedstreamresponse (class in arista.connectivitymonitor.v1.services.gen_pb2)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2.ProbeStatsBatchedStreamResponse", false]], "probestatskey (class in arista.connectivitymonitor.v1.connectivitymonitor_pb2)": [[17, "arista.connectivitymonitor.v1.connectivitymonitor_pb2.ProbeStatsKey", false]], "probestatsrequest (class in arista.connectivitymonitor.v1.services.gen_pb2)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2.ProbeStatsRequest", false]], "probestatsresponse (class in arista.connectivitymonitor.v1.services.gen_pb2)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2.ProbeStatsResponse", false]], "probestatsservice (class in arista.connectivitymonitor.v1.services.gen_pb2_grpc)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeStatsService", false]], "probestatsserviceservicer (class in arista.connectivitymonitor.v1.services.gen_pb2_grpc)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeStatsServiceServicer", false]], "probestatsservicestub (class in arista.connectivitymonitor.v1.services.gen_pb2_grpc)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeStatsServiceStub", false]], "probestatssomerequest (class in arista.connectivitymonitor.v1.services.gen_pb2)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2.ProbeStatsSomeRequest", false]], "probestatssomeresponse (class in arista.connectivitymonitor.v1.services.gen_pb2)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2.ProbeStatsSomeResponse", false]], "probestatsstreamrequest (class in arista.connectivitymonitor.v1.services.gen_pb2)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2.ProbeStatsStreamRequest", false]], "probestatsstreamresponse (class in arista.connectivitymonitor.v1.services.gen_pb2)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2.ProbeStatsStreamResponse", false]], "probestreamrequest (class in arista.connectivitymonitor.v1.services.gen_pb2)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2.ProbeStreamRequest", false]], "probestreamresponse (class in arista.connectivitymonitor.v1.services.gen_pb2)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2.ProbeStreamResponse", false]], "process_notifs() (in module cloudvision.connector)": [[58, "cloudvision.Connector.process_notifs", false]], "provisioneddevice (class in arista.inventory.v1.inventory_pb2)": [[35, "arista.inventory.v1.inventory_pb2.ProvisionedDevice", false]], "provisioneddevicebatchedstreamrequest (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.ProvisionedDeviceBatchedStreamRequest", false]], "provisioneddevicebatchedstreamresponse (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.ProvisionedDeviceBatchedStreamResponse", false]], "provisioneddevicerequest (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.ProvisionedDeviceRequest", false]], "provisioneddeviceresponse (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.ProvisionedDeviceResponse", false]], "provisioneddeviceservice (class in arista.inventory.v1.services.gen_pb2_grpc)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.ProvisionedDeviceService", false]], "provisioneddeviceserviceservicer (class in arista.inventory.v1.services.gen_pb2_grpc)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.ProvisionedDeviceServiceServicer", false]], "provisioneddeviceservicestub (class in arista.inventory.v1.services.gen_pb2_grpc)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.ProvisionedDeviceServiceStub", false]], "provisioneddevicesomerequest (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.ProvisionedDeviceSomeRequest", false]], "provisioneddevicesomeresponse (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.ProvisionedDeviceSomeResponse", false]], "provisioneddevicestreamrequest (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.ProvisionedDeviceStreamRequest", false]], "provisioneddevicestreamresponse (class in arista.inventory.v1.services.gen_pb2)": [[36, "arista.inventory.v1.services.gen_pb2.ProvisionedDeviceStreamResponse", false]], "publish() (cloudvision.connector.gen.router_pb2_grpc.routerv1 static method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.RouterV1.Publish", false]], "publish() (cloudvision.connector.gen.router_pb2_grpc.routerv1servicer method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.RouterV1Servicer.Publish", false]], "publish() (cloudvision.connector.grpc_client.grpcclient method)": [[63, "cloudvision.Connector.grpc_client.GRPCClient.publish", false]], "publish() (cloudvision.connector.grpc_client.grpcclient.grpcclient method)": [[63, "cloudvision.Connector.grpc_client.grpcClient.GRPCClient.publish", false]], "pushoverendpoint (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.PushoverEndpoint", false]], "pushoverendpoints (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.PushoverEndpoints", false]], "querier (class in cloudvision.connector.gen.router_pb2_grpc)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.Querier", false]], "querierservicer (class in cloudvision.connector.gen.router_pb2_grpc)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.QuerierServicer", false]], "querierstub (class in cloudvision.connector.gen.router_pb2_grpc)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.QuerierStub", false]], "queryccstarttime() (in module cloudvision.cvlib.utils)": [[65, "cloudvision.cvlib.utils.queryCCStartTime", false]], "rebootrequired (class in arista.imagestatus.v1.imagestatus_pb2)": [[32, "arista.imagestatus.v1.imagestatus_pb2.RebootRequired", false]], "reenroll() (cloudvision.connector.gen.ca_pb2_grpc.certificateauthority static method)": [[62, "cloudvision.Connector.gen.ca_pb2_grpc.CertificateAuthority.Reenroll", false]], "reenroll() (cloudvision.connector.gen.ca_pb2_grpc.certificateauthorityservicer method)": [[62, "cloudvision.Connector.gen.ca_pb2_grpc.CertificateAuthorityServicer.Reenroll", false]], "reenroll() (cloudvision.connector.grpc_client.grpcclient method)": [[63, "cloudvision.Connector.grpc_client.GRPCClient.reenroll", false]], "reenroll() (cloudvision.connector.grpc_client.grpcclient.grpcclient method)": [[63, "cloudvision.Connector.grpc_client.grpcClient.GRPCClient.reenroll", false]], "repeatedbool (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.RepeatedBool", false]], "repeatedbytes (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.RepeatedBytes", false]], "repeateddouble (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.RepeatedDouble", false]], "repeatedfloat (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.RepeatedFloat", false]], "repeatedint32 (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.RepeatedInt32", false]], "repeatedint64 (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.RepeatedInt64", false]], "repeatedipaddress (class in fmp.inet_pb2)": [[66, "fmp.inet_pb2.RepeatedIPAddress", false]], "repeatedipv4address (class in fmp.inet_pb2)": [[66, "fmp.inet_pb2.RepeatedIPv4Address", false]], "repeatedipv6address (class in fmp.inet_pb2)": [[66, "fmp.inet_pb2.RepeatedIPv6Address", false]], "repeatedmacaddress (class in fmp.yang_pb2)": [[66, "fmp.yang_pb2.RepeatedMACAddress", false]], "repeatedrepeatedstring (class in arista.changecontrol.v1.changecontrol_pb2)": [[8, "arista.changecontrol.v1.changecontrol_pb2.RepeatedRepeatedString", false]], "repeatedstring (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.RepeatedString", false]], "repeateduint32 (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.RepeatedUInt32", false]], "repeateduint64 (class in fmp.wrappers_pb2)": [[66, "fmp.wrappers_pb2.RepeatedUInt64", false]], "requestparams (class in arista.workspace.v1.workspace_pb2)": [[55, "arista.workspace.v1.workspace_pb2.RequestParams", false]], "resolverinputfieldprops (class in arista.studio.v1.studio_pb2)": [[47, "arista.studio.v1.studio_pb2.ResolverInputFieldProps", false]], "response (class in arista.workspace.v1.workspace_pb2)": [[55, "arista.workspace.v1.workspace_pb2.Response", false]], "responses (class in arista.workspace.v1.workspace_pb2)": [[55, "arista.workspace.v1.workspace_pb2.Responses", false]], "responses.valuesentry (class in arista.workspace.v1.workspace_pb2)": [[55, "arista.workspace.v1.workspace_pb2.Responses.ValuesEntry", false]], "retrieve() (cloudvision.cvlib.context.context method)": [[65, "cloudvision.cvlib.context.Context.retrieve", false]], "retrieve() (cloudvision.cvlib.studio.studiocustomdata method)": [[65, "cloudvision.cvlib.studio.StudioCustomData.retrieve", false]], "routerv1 (class in cloudvision.connector.gen.router_pb2_grpc)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.RouterV1", false]], "routerv1servicer (class in cloudvision.connector.gen.router_pb2_grpc)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.RouterV1Servicer", false]], "routerv1stub (class in cloudvision.connector.gen.router_pb2_grpc)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.RouterV1Stub", false]], "rule (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.Rule", false]], "rules (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.Rules", false]], "rundevicecmds() (cloudvision.cvlib.context.context method)": [[65, "cloudvision.cvlib.context.Context.runDeviceCmds", false]], "samlconfig (class in arista.identityprovider.v1.identityprovider_pb2)": [[29, "arista.identityprovider.v1.identityprovider_pb2.SAMLConfig", false]], "samlconfigbatchedstreamrequest (class in arista.identityprovider.v1.services.gen_pb2)": [[30, "arista.identityprovider.v1.services.gen_pb2.SAMLConfigBatchedStreamRequest", false]], "samlconfigbatchedstreamresponse (class in arista.identityprovider.v1.services.gen_pb2)": [[30, "arista.identityprovider.v1.services.gen_pb2.SAMLConfigBatchedStreamResponse", false]], "samlconfigdeleteallrequest (class in arista.identityprovider.v1.services.gen_pb2)": [[30, "arista.identityprovider.v1.services.gen_pb2.SAMLConfigDeleteAllRequest", false]], "samlconfigdeleteallresponse (class in arista.identityprovider.v1.services.gen_pb2)": [[30, "arista.identityprovider.v1.services.gen_pb2.SAMLConfigDeleteAllResponse", false]], "samlconfigdeleterequest (class in arista.identityprovider.v1.services.gen_pb2)": [[30, "arista.identityprovider.v1.services.gen_pb2.SAMLConfigDeleteRequest", false]], "samlconfigdeleteresponse (class in arista.identityprovider.v1.services.gen_pb2)": [[30, "arista.identityprovider.v1.services.gen_pb2.SAMLConfigDeleteResponse", false]], "samlconfigdeletesomerequest (class in arista.identityprovider.v1.services.gen_pb2)": [[30, "arista.identityprovider.v1.services.gen_pb2.SAMLConfigDeleteSomeRequest", false]], "samlconfigdeletesomeresponse (class in arista.identityprovider.v1.services.gen_pb2)": [[30, "arista.identityprovider.v1.services.gen_pb2.SAMLConfigDeleteSomeResponse", false]], "samlconfigrequest (class in arista.identityprovider.v1.services.gen_pb2)": [[30, "arista.identityprovider.v1.services.gen_pb2.SAMLConfigRequest", false]], "samlconfigresponse (class in arista.identityprovider.v1.services.gen_pb2)": [[30, "arista.identityprovider.v1.services.gen_pb2.SAMLConfigResponse", false]], "samlconfigservice (class in arista.identityprovider.v1.services.gen_pb2_grpc)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.SAMLConfigService", false]], "samlconfigserviceservicer (class in arista.identityprovider.v1.services.gen_pb2_grpc)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.SAMLConfigServiceServicer", false]], "samlconfigservicestub (class in arista.identityprovider.v1.services.gen_pb2_grpc)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.SAMLConfigServiceStub", false]], "samlconfigsetrequest (class in arista.identityprovider.v1.services.gen_pb2)": [[30, "arista.identityprovider.v1.services.gen_pb2.SAMLConfigSetRequest", false]], "samlconfigsetresponse (class in arista.identityprovider.v1.services.gen_pb2)": [[30, "arista.identityprovider.v1.services.gen_pb2.SAMLConfigSetResponse", false]], "samlconfigsetsomerequest (class in arista.identityprovider.v1.services.gen_pb2)": [[30, "arista.identityprovider.v1.services.gen_pb2.SAMLConfigSetSomeRequest", false]], "samlconfigsetsomeresponse (class in arista.identityprovider.v1.services.gen_pb2)": [[30, "arista.identityprovider.v1.services.gen_pb2.SAMLConfigSetSomeResponse", false]], "samlconfigsomerequest (class in arista.identityprovider.v1.services.gen_pb2)": [[30, "arista.identityprovider.v1.services.gen_pb2.SAMLConfigSomeRequest", false]], "samlconfigsomeresponse (class in arista.identityprovider.v1.services.gen_pb2)": [[30, "arista.identityprovider.v1.services.gen_pb2.SAMLConfigSomeResponse", false]], "samlconfigstreamrequest (class in arista.identityprovider.v1.services.gen_pb2)": [[30, "arista.identityprovider.v1.services.gen_pb2.SAMLConfigStreamRequest", false]], "samlconfigstreamresponse (class in arista.identityprovider.v1.services.gen_pb2)": [[30, "arista.identityprovider.v1.services.gen_pb2.SAMLConfigStreamResponse", false]], "samlkey (class in arista.identityprovider.v1.identityprovider_pb2)": [[29, "arista.identityprovider.v1.identityprovider_pb2.SAMLKey", false]], "scriptexception": [[65, "cloudvision.cvlib.exceptions.ScriptException", false]], "search (class in cloudvision.connector.gen.router_pb2_grpc)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.Search", false]], "search() (cloudvision.connector.gen.router_pb2_grpc.alpha static method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.Alpha.Search", false]], "search() (cloudvision.connector.gen.router_pb2_grpc.alphaservicer method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.AlphaServicer.Search", false]], "search() (cloudvision.connector.gen.router_pb2_grpc.search static method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.Search.Search", false]], "search() (cloudvision.connector.gen.router_pb2_grpc.searchservicer method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.SearchServicer.Search", false]], "search() (cloudvision.connector.grpc_client.grpcclient method)": [[63, "cloudvision.Connector.grpc_client.GRPCClient.search", false]], "search() (cloudvision.connector.grpc_client.grpcclient.grpcclient method)": [[63, "cloudvision.Connector.grpc_client.grpcClient.GRPCClient.search", false]], "searchservicer (class in cloudvision.connector.gen.router_pb2_grpc)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.SearchServicer", false]], "searchstub (class in cloudvision.connector.gen.router_pb2_grpc)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.SearchStub", false]], "searchsubscribe() (cloudvision.connector.gen.router_pb2_grpc.alpha static method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.Alpha.SearchSubscribe", false]], "searchsubscribe() (cloudvision.connector.gen.router_pb2_grpc.alphaservicer method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.AlphaServicer.SearchSubscribe", false]], "searchsubscribe() (cloudvision.connector.gen.router_pb2_grpc.search static method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.Search.SearchSubscribe", false]], "searchsubscribe() (cloudvision.connector.gen.router_pb2_grpc.searchservicer method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.SearchServicer.SearchSubscribe", false]], "searchwithaggregation() (cloudvision.connector.gen.router_pb2_grpc.alpha static method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.Alpha.SearchWithAggregation", false]], "searchwithaggregation() (cloudvision.connector.gen.router_pb2_grpc.alphaservicer method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.AlphaServicer.SearchWithAggregation", false]], "searchwithaggregation() (cloudvision.connector.gen.router_pb2_grpc.search static method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.Search.SearchWithAggregation", false]], "searchwithaggregation() (cloudvision.connector.gen.router_pb2_grpc.searchservicer method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.SearchServicer.SearchWithAggregation", false]], "searchwithaggregationstream() (cloudvision.connector.gen.router_pb2_grpc.alpha static method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.Alpha.SearchWithAggregationStream", false]], "searchwithaggregationstream() (cloudvision.connector.gen.router_pb2_grpc.alphaservicer method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.AlphaServicer.SearchWithAggregationStream", false]], "searchwithaggregationstream() (cloudvision.connector.gen.router_pb2_grpc.search static method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.Search.SearchWithAggregationStream", false]], "searchwithaggregationstream() (cloudvision.connector.gen.router_pb2_grpc.searchservicer method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.SearchServicer.SearchWithAggregationStream", false]], "secretinput (class in arista.studio.v1.studio_pb2)": [[47, "arista.studio.v1.studio_pb2.SecretInput", false]], "secretinputbatchedstreamrequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.SecretInputBatchedStreamRequest", false]], "secretinputbatchedstreamresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.SecretInputBatchedStreamResponse", false]], "secretinputrequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.SecretInputRequest", false]], "secretinputresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.SecretInputResponse", false]], "secretinputservice (class in arista.studio.v1.services.gen_pb2_grpc)": [[48, "arista.studio.v1.services.gen_pb2_grpc.SecretInputService", false]], "secretinputserviceservicer (class in arista.studio.v1.services.gen_pb2_grpc)": [[48, "arista.studio.v1.services.gen_pb2_grpc.SecretInputServiceServicer", false]], "secretinputservicestub (class in arista.studio.v1.services.gen_pb2_grpc)": [[48, "arista.studio.v1.services.gen_pb2_grpc.SecretInputServiceStub", false]], "secretinputsomerequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.SecretInputSomeRequest", false]], "secretinputsomeresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.SecretInputSomeResponse", false]], "secretinputstreamrequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.SecretInputStreamRequest", false]], "secretinputstreamresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.SecretInputStreamResponse", false]], "securityprofile (class in arista.configstatus.v1.configstatus_pb2)": [[14, "arista.configstatus.v1.configstatus_pb2.SecurityProfile", false]], "securityprofilebatchedstreamrequest (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileBatchedStreamRequest", false]], "securityprofilebatchedstreamresponse (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileBatchedStreamResponse", false]], "securityprofilecompliancesummary (class in arista.configstatus.v1.configstatus_pb2)": [[14, "arista.configstatus.v1.configstatus_pb2.SecurityProfileComplianceSummary", false]], "securityprofilediff (class in arista.configstatus.v1.configstatus_pb2)": [[14, "arista.configstatus.v1.configstatus_pb2.SecurityProfileDiff", false]], "securityprofilediffbatchedstreamrequest (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffBatchedStreamRequest", false]], "securityprofilediffbatchedstreamresponse (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffBatchedStreamResponse", false]], "securityprofilediffrequest (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffRequest", false]], "securityprofilediffresponse (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffResponse", false]], "securityprofilediffservice (class in arista.configstatus.v1.services.gen_pb2_grpc)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffService", false]], "securityprofilediffserviceservicer (class in arista.configstatus.v1.services.gen_pb2_grpc)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffServiceServicer", false]], "securityprofilediffservicestub (class in arista.configstatus.v1.services.gen_pb2_grpc)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffServiceStub", false]], "securityprofilediffsomerequest (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffSomeRequest", false]], "securityprofilediffsomeresponse (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffSomeResponse", false]], "securityprofilediffstreamrequest (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffStreamRequest", false]], "securityprofilediffstreamresponse (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffStreamResponse", false]], "securityprofilediffsummary (class in arista.configstatus.v1.configstatus_pb2)": [[14, "arista.configstatus.v1.configstatus_pb2.SecurityProfileDiffSummary", false]], "securityprofilediffsummarybatchedstreamrequest (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffSummaryBatchedStreamRequest", false]], "securityprofilediffsummarybatchedstreamresponse (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffSummaryBatchedStreamResponse", false]], "securityprofilediffsummaryrequest (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffSummaryRequest", false]], "securityprofilediffsummaryresponse (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffSummaryResponse", false]], "securityprofilediffsummaryservice (class in arista.configstatus.v1.services.gen_pb2_grpc)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffSummaryService", false]], "securityprofilediffsummaryserviceservicer (class in arista.configstatus.v1.services.gen_pb2_grpc)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffSummaryServiceServicer", false]], "securityprofilediffsummaryservicestub (class in arista.configstatus.v1.services.gen_pb2_grpc)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffSummaryServiceStub", false]], "securityprofilediffsummarysomerequest (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffSummarySomeRequest", false]], "securityprofilediffsummarysomeresponse (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffSummarySomeResponse", false]], "securityprofilediffsummarystreamrequest (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffSummaryStreamRequest", false]], "securityprofilediffsummarystreamresponse (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffSummaryStreamResponse", false]], "securityprofilerequest (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileRequest", false]], "securityprofileresponse (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileResponse", false]], "securityprofileservice (class in arista.configstatus.v1.services.gen_pb2_grpc)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileService", false]], "securityprofileserviceservicer (class in arista.configstatus.v1.services.gen_pb2_grpc)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileServiceServicer", false]], "securityprofileservicestub (class in arista.configstatus.v1.services.gen_pb2_grpc)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileServiceStub", false]], "securityprofilesomerequest (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileSomeRequest", false]], "securityprofilesomeresponse (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileSomeResponse", false]], "securityprofilestreamrequest (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileStreamRequest", false]], "securityprofilestreamresponse (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.SecurityProfileStreamResponse", false]], "sendgridendpoint (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.SendgridEndpoint", false]], "sendgridendpoints (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.SendgridEndpoints", false]], "sendgridsettings (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.SendgridSettings", false]], "set() (arista.alert.v1.services.gen_pb2_grpc.alertconfigservice static method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.AlertConfigService.Set", false]], "set() (arista.alert.v1.services.gen_pb2_grpc.alertconfigserviceservicer method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.AlertConfigServiceServicer.Set", false]], "set() (arista.alert.v1.services.gen_pb2_grpc.templateconfigservice static method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.TemplateConfigService.Set", false]], "set() (arista.alert.v1.services.gen_pb2_grpc.templateconfigserviceservicer method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.TemplateConfigServiceServicer.Set", false]], "set() (arista.changecontrol.v1.services.gen_pb2_grpc.approveconfigservice static method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ApproveConfigService.Set", false]], "set() (arista.changecontrol.v1.services.gen_pb2_grpc.approveconfigserviceservicer method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ApproveConfigServiceServicer.Set", false]], "set() (arista.changecontrol.v1.services.gen_pb2_grpc.changecontrolconfigservice static method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlConfigService.Set", false]], "set() (arista.changecontrol.v1.services.gen_pb2_grpc.changecontrolconfigserviceservicer method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlConfigServiceServicer.Set", false]], "set() (arista.configlet.v1.services.gen_pb2_grpc.configletassignmentconfigservice static method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentConfigService.Set", false]], "set() (arista.configlet.v1.services.gen_pb2_grpc.configletassignmentconfigserviceservicer method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentConfigServiceServicer.Set", false]], "set() (arista.configlet.v1.services.gen_pb2_grpc.configletconfigservice static method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletConfigService.Set", false]], "set() (arista.configlet.v1.services.gen_pb2_grpc.configletconfigserviceservicer method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletConfigServiceServicer.Set", false]], "set() (arista.dashboard.v1.services.gen_pb2_grpc.dashboardconfigservice static method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardConfigService.Set", false]], "set() (arista.dashboard.v1.services.gen_pb2_grpc.dashboardconfigserviceservicer method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardConfigServiceServicer.Set", false]], "set() (arista.dashboard.v1.services.gen_pb2_grpc.globaldashboardconfigservice static method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.GlobalDashboardConfigService.Set", false]], "set() (arista.dashboard.v1.services.gen_pb2_grpc.globaldashboardconfigserviceservicer method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.GlobalDashboardConfigServiceServicer.Set", false]], "set() (arista.event.v1.services.gen_pb2_grpc.eventannotationconfigservice static method)": [[27, "arista.event.v1.services.gen_pb2_grpc.EventAnnotationConfigService.Set", false]], "set() (arista.event.v1.services.gen_pb2_grpc.eventannotationconfigserviceservicer method)": [[27, "arista.event.v1.services.gen_pb2_grpc.EventAnnotationConfigServiceServicer.Set", false]], "set() (arista.event.v1.services.gen_pb2_grpc.usereventcreationconfigservice static method)": [[27, "arista.event.v1.services.gen_pb2_grpc.UserEventCreationConfigService.Set", false]], "set() (arista.event.v1.services.gen_pb2_grpc.usereventcreationconfigserviceservicer method)": [[27, "arista.event.v1.services.gen_pb2_grpc.UserEventCreationConfigServiceServicer.Set", false]], "set() (arista.identityprovider.v1.services.gen_pb2_grpc.oauthconfigservice static method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.OAuthConfigService.Set", false]], "set() (arista.identityprovider.v1.services.gen_pb2_grpc.oauthconfigserviceservicer method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.OAuthConfigServiceServicer.Set", false]], "set() (arista.identityprovider.v1.services.gen_pb2_grpc.samlconfigservice static method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.SAMLConfigService.Set", false]], "set() (arista.identityprovider.v1.services.gen_pb2_grpc.samlconfigserviceservicer method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.SAMLConfigServiceServicer.Set", false]], "set() (arista.inventory.v1.services.gen_pb2_grpc.devicedecommissioningconfigservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningConfigService.Set", false]], "set() (arista.inventory.v1.services.gen_pb2_grpc.devicedecommissioningconfigserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningConfigServiceServicer.Set", false]], "set() (arista.inventory.v1.services.gen_pb2_grpc.deviceonboardingconfigservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingConfigService.Set", false]], "set() (arista.inventory.v1.services.gen_pb2_grpc.deviceonboardingconfigserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingConfigServiceServicer.Set", false]], "set() (arista.serviceaccount.v1.services.gen_pb2_grpc.accountconfigservice static method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.AccountConfigService.Set", false]], "set() (arista.serviceaccount.v1.services.gen_pb2_grpc.accountconfigserviceservicer method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.AccountConfigServiceServicer.Set", false]], "set() (arista.serviceaccount.v1.services.gen_pb2_grpc.tokenconfigservice static method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.TokenConfigService.Set", false]], "set() (arista.serviceaccount.v1.services.gen_pb2_grpc.tokenconfigserviceservicer method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.TokenConfigServiceServicer.Set", false]], "set() (arista.studio.v1.services.gen_pb2_grpc.assignedtagsconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsConfigService.Set", false]], "set() (arista.studio.v1.services.gen_pb2_grpc.assignedtagsconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsConfigServiceServicer.Set", false]], "set() (arista.studio.v1.services.gen_pb2_grpc.autofillactionconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionConfigService.Set", false]], "set() (arista.studio.v1.services.gen_pb2_grpc.autofillactionconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionConfigServiceServicer.Set", false]], "set() (arista.studio.v1.services.gen_pb2_grpc.inputsconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsConfigService.Set", false]], "set() (arista.studio.v1.services.gen_pb2_grpc.inputsconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsConfigServiceServicer.Set", false]], "set() (arista.studio.v1.services.gen_pb2_grpc.studioconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioConfigService.Set", false]], "set() (arista.studio.v1.services.gen_pb2_grpc.studioconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioConfigServiceServicer.Set", false]], "set() (arista.tag.v2.services.gen_pb2_grpc.tagassignmentconfigservice static method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentConfigService.Set", false]], "set() (arista.tag.v2.services.gen_pb2_grpc.tagassignmentconfigserviceservicer method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentConfigServiceServicer.Set", false]], "set() (arista.tag.v2.services.gen_pb2_grpc.tagconfigservice static method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagConfigService.Set", false]], "set() (arista.tag.v2.services.gen_pb2_grpc.tagconfigserviceservicer method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagConfigServiceServicer.Set", false]], "set() (arista.workspace.v1.services.gen_pb2_grpc.workspaceconfigservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceConfigService.Set", false]], "set() (arista.workspace.v1.services.gen_pb2_grpc.workspaceconfigserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceConfigServiceServicer.Set", false]], "set() (arista.workspace.v1.services.gen_pb2_grpc.workspacesyncconfigservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceSyncConfigService.Set", false]], "set() (arista.workspace.v1.services.gen_pb2_grpc.workspacesyncconfigserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceSyncConfigServiceServicer.Set", false]], "set_custom_schema() (cloudvision.connector.grpc_client.grpcclient method)": [[63, "cloudvision.Connector.grpc_client.GRPCClient.set_custom_schema", false]], "set_custom_schema() (cloudvision.connector.grpc_client.grpcclient.grpcclient method)": [[63, "cloudvision.Connector.grpc_client.grpcClient.GRPCClient.set_custom_schema", false]], "setcustomschema() (cloudvision.connector.gen.router_pb2_grpc.alpha static method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.Alpha.SetCustomSchema", false]], "setcustomschema() (cloudvision.connector.gen.router_pb2_grpc.alphaservicer method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.AlphaServicer.SetCustomSchema", false]], "setcustomschema() (cloudvision.connector.gen.router_pb2_grpc.search static method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.Search.SetCustomSchema", false]], "setcustomschema() (cloudvision.connector.gen.router_pb2_grpc.searchservicer method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.SearchServicer.SetCustomSchema", false]], "setlogger() (cloudvision.cvlib.topology.topology static method)": [[65, "cloudvision.cvlib.topology.Topology.setLogger", false]], "setlogginglevel() (cloudvision.cvlib.context.context method)": [[65, "cloudvision.cvlib.context.Context.setLoggingLevel", false]], "setpassword() (cloudvision.connector.gen.router_pb2_grpc.auth static method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.Auth.SetPassword", false]], "setpassword() (cloudvision.connector.gen.router_pb2_grpc.authservicer method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.AuthServicer.SetPassword", false]], "setpeerinfo() (cloudvision.cvlib.device.interface method)": [[65, "cloudvision.cvlib.device.Interface.setPeerInfo", false]], "setpermission() (cloudvision.connector.gen.router_pb2_grpc.auth static method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.Auth.SetPermission", false]], "setpermission() (cloudvision.connector.gen.router_pb2_grpc.authservicer method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.AuthServicer.SetPermission", false]], "setsome() (arista.alert.v1.services.gen_pb2_grpc.templateconfigservice static method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.TemplateConfigService.SetSome", false]], "setsome() (arista.alert.v1.services.gen_pb2_grpc.templateconfigserviceservicer method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.TemplateConfigServiceServicer.SetSome", false]], "setsome() (arista.changecontrol.v1.services.gen_pb2_grpc.approveconfigservice static method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ApproveConfigService.SetSome", false]], "setsome() (arista.changecontrol.v1.services.gen_pb2_grpc.approveconfigserviceservicer method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ApproveConfigServiceServicer.SetSome", false]], "setsome() (arista.changecontrol.v1.services.gen_pb2_grpc.changecontrolconfigservice static method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlConfigService.SetSome", false]], "setsome() (arista.changecontrol.v1.services.gen_pb2_grpc.changecontrolconfigserviceservicer method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlConfigServiceServicer.SetSome", false]], "setsome() (arista.configlet.v1.services.gen_pb2_grpc.configletassignmentconfigservice static method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentConfigService.SetSome", false]], "setsome() (arista.configlet.v1.services.gen_pb2_grpc.configletassignmentconfigserviceservicer method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentConfigServiceServicer.SetSome", false]], "setsome() (arista.configlet.v1.services.gen_pb2_grpc.configletconfigservice static method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletConfigService.SetSome", false]], "setsome() (arista.configlet.v1.services.gen_pb2_grpc.configletconfigserviceservicer method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletConfigServiceServicer.SetSome", false]], "setsome() (arista.dashboard.v1.services.gen_pb2_grpc.dashboardconfigservice static method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardConfigService.SetSome", false]], "setsome() (arista.dashboard.v1.services.gen_pb2_grpc.dashboardconfigserviceservicer method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardConfigServiceServicer.SetSome", false]], "setsome() (arista.event.v1.services.gen_pb2_grpc.eventannotationconfigservice static method)": [[27, "arista.event.v1.services.gen_pb2_grpc.EventAnnotationConfigService.SetSome", false]], "setsome() (arista.event.v1.services.gen_pb2_grpc.eventannotationconfigserviceservicer method)": [[27, "arista.event.v1.services.gen_pb2_grpc.EventAnnotationConfigServiceServicer.SetSome", false]], "setsome() (arista.event.v1.services.gen_pb2_grpc.usereventcreationconfigservice static method)": [[27, "arista.event.v1.services.gen_pb2_grpc.UserEventCreationConfigService.SetSome", false]], "setsome() (arista.event.v1.services.gen_pb2_grpc.usereventcreationconfigserviceservicer method)": [[27, "arista.event.v1.services.gen_pb2_grpc.UserEventCreationConfigServiceServicer.SetSome", false]], "setsome() (arista.identityprovider.v1.services.gen_pb2_grpc.oauthconfigservice static method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.OAuthConfigService.SetSome", false]], "setsome() (arista.identityprovider.v1.services.gen_pb2_grpc.oauthconfigserviceservicer method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.OAuthConfigServiceServicer.SetSome", false]], "setsome() (arista.identityprovider.v1.services.gen_pb2_grpc.samlconfigservice static method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.SAMLConfigService.SetSome", false]], "setsome() (arista.identityprovider.v1.services.gen_pb2_grpc.samlconfigserviceservicer method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.SAMLConfigServiceServicer.SetSome", false]], "setsome() (arista.inventory.v1.services.gen_pb2_grpc.devicedecommissioningconfigservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningConfigService.SetSome", false]], "setsome() (arista.inventory.v1.services.gen_pb2_grpc.devicedecommissioningconfigserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningConfigServiceServicer.SetSome", false]], "setsome() (arista.inventory.v1.services.gen_pb2_grpc.deviceonboardingconfigservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingConfigService.SetSome", false]], "setsome() (arista.inventory.v1.services.gen_pb2_grpc.deviceonboardingconfigserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingConfigServiceServicer.SetSome", false]], "setsome() (arista.serviceaccount.v1.services.gen_pb2_grpc.accountconfigservice static method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.AccountConfigService.SetSome", false]], "setsome() (arista.serviceaccount.v1.services.gen_pb2_grpc.accountconfigserviceservicer method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.AccountConfigServiceServicer.SetSome", false]], "setsome() (arista.serviceaccount.v1.services.gen_pb2_grpc.tokenconfigservice static method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.TokenConfigService.SetSome", false]], "setsome() (arista.serviceaccount.v1.services.gen_pb2_grpc.tokenconfigserviceservicer method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.TokenConfigServiceServicer.SetSome", false]], "setsome() (arista.studio.v1.services.gen_pb2_grpc.assignedtagsconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsConfigService.SetSome", false]], "setsome() (arista.studio.v1.services.gen_pb2_grpc.assignedtagsconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsConfigServiceServicer.SetSome", false]], "setsome() (arista.studio.v1.services.gen_pb2_grpc.autofillactionconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionConfigService.SetSome", false]], "setsome() (arista.studio.v1.services.gen_pb2_grpc.autofillactionconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionConfigServiceServicer.SetSome", false]], "setsome() (arista.studio.v1.services.gen_pb2_grpc.inputsconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsConfigService.SetSome", false]], "setsome() (arista.studio.v1.services.gen_pb2_grpc.inputsconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsConfigServiceServicer.SetSome", false]], "setsome() (arista.studio.v1.services.gen_pb2_grpc.studioconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioConfigService.SetSome", false]], "setsome() (arista.studio.v1.services.gen_pb2_grpc.studioconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioConfigServiceServicer.SetSome", false]], "setsome() (arista.tag.v2.services.gen_pb2_grpc.tagassignmentconfigservice static method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentConfigService.SetSome", false]], "setsome() (arista.tag.v2.services.gen_pb2_grpc.tagassignmentconfigserviceservicer method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentConfigServiceServicer.SetSome", false]], "setsome() (arista.tag.v2.services.gen_pb2_grpc.tagconfigservice static method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagConfigService.SetSome", false]], "setsome() (arista.tag.v2.services.gen_pb2_grpc.tagconfigserviceservicer method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagConfigServiceServicer.SetSome", false]], "setsome() (arista.workspace.v1.services.gen_pb2_grpc.workspaceconfigservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceConfigService.SetSome", false]], "setsome() (arista.workspace.v1.services.gen_pb2_grpc.workspaceconfigserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceConfigServiceServicer.SetSome", false]], "setsome() (arista.workspace.v1.services.gen_pb2_grpc.workspacesyncconfigservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceSyncConfigService.SetSome", false]], "setsome() (arista.workspace.v1.services.gen_pb2_grpc.workspacesyncconfigserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceSyncConfigServiceServicer.SetSome", false]], "setstudioinput() (in module cloudvision.cvlib.studio)": [[65, "cloudvision.cvlib.studio.setStudioInput", false]], "setstudioinputs() (in module cloudvision.cvlib.studio)": [[65, "cloudvision.cvlib.studio.setStudioInputs", false]], "settings (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.Settings", false]], "settopology() (cloudvision.cvlib.context.context method)": [[65, "cloudvision.cvlib.context.Context.setTopology", false]], "showif() (cloudvision.cvlib.context.context static method)": [[65, "cloudvision.cvlib.context.Context.showIf", false]], "slackendpoint (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.SlackEndpoint", false]], "slackendpoints (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.SlackEndpoints", false]], "slacksettings (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.SlackSettings", false]], "snmpauth (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.SNMPAuth", false]], "snmpendpoint (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.SNMPEndpoint", false]], "snmpendpoints (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.SNMPEndpoints", false]], "snmpsettings (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.SNMPSettings", false]], "softwareeol (class in arista.lifecycle.v1.lifecycle_pb2)": [[38, "arista.lifecycle.v1.lifecycle_pb2.SoftwareEOL", false]], "softwareimage (class in arista.imagestatus.v1.imagestatus_pb2)": [[32, "arista.imagestatus.v1.imagestatus_pb2.SoftwareImage", false]], "softwareimagediff (class in arista.imagestatus.v1.imagestatus_pb2)": [[32, "arista.imagestatus.v1.imagestatus_pb2.SoftwareImageDiff", false]], "softwareimagediffsbysup (class in arista.imagestatus.v1.imagestatus_pb2)": [[32, "arista.imagestatus.v1.imagestatus_pb2.SoftwareImageDiffsBySup", false]], "softwareimagediffsbysup.valuesentry (class in arista.imagestatus.v1.imagestatus_pb2)": [[32, "arista.imagestatus.v1.imagestatus_pb2.SoftwareImageDiffsBySup.ValuesEntry", false]], "sort_dict() (in module cloudvision.connector)": [[58, "cloudvision.Connector.sort_dict", false]], "sql() (cloudvision.connector.gen.router_pb2_grpc.querier static method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.Querier.SQL", false]], "sql() (cloudvision.connector.gen.router_pb2_grpc.querierservicer method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.QuerierServicer.SQL", false]], "stage (class in arista.changecontrol.v1.changecontrol_pb2)": [[8, "arista.changecontrol.v1.changecontrol_pb2.Stage", false]], "stageconfig (class in arista.changecontrol.v1.changecontrol_pb2)": [[8, "arista.changecontrol.v1.changecontrol_pb2.StageConfig", false]], "stageconfigmap (class in arista.changecontrol.v1.changecontrol_pb2)": [[8, "arista.changecontrol.v1.changecontrol_pb2.StageConfigMap", false]], "stageconfigmap.valuesentry (class in arista.changecontrol.v1.changecontrol_pb2)": [[8, "arista.changecontrol.v1.changecontrol_pb2.StageConfigMap.ValuesEntry", false]], "stagemap (class in arista.changecontrol.v1.changecontrol_pb2)": [[8, "arista.changecontrol.v1.changecontrol_pb2.StageMap", false]], "stagemap.valuesentry (class in arista.changecontrol.v1.changecontrol_pb2)": [[8, "arista.changecontrol.v1.changecontrol_pb2.StageMap.ValuesEntry", false]], "store() (cloudvision.cvlib.context.context method)": [[65, "cloudvision.cvlib.context.Context.store", false]], "store() (cloudvision.cvlib.studio.studiocustomdata method)": [[65, "cloudvision.cvlib.studio.StudioCustomData.store", false]], "stringinputfieldprops (class in arista.studio.v1.studio_pb2)": [[47, "arista.studio.v1.studio_pb2.StringInputFieldProps", false]], "studio (class in arista.studio.v1.studio_pb2)": [[47, "arista.studio.v1.studio_pb2.Studio", false]], "studio (class in cloudvision.cvlib.studio)": [[65, "cloudvision.cvlib.studio.Studio", false]], "studioautofill (cloudvision.cvlib.action.actioncontext attribute)": [[65, "cloudvision.cvlib.action.ActionContext.StudioAutofill", false]], "studiobatchedstreamrequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.StudioBatchedStreamRequest", false]], "studiobatchedstreamresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.StudioBatchedStreamResponse", false]], "studiobuilddetails (class in arista.workspace.v1.workspace_pb2)": [[55, "arista.workspace.v1.workspace_pb2.StudioBuildDetails", false]], "studiobuildhook (cloudvision.cvlib.action.actioncontext attribute)": [[65, "cloudvision.cvlib.action.ActionContext.StudioBuildHook", false]], "studioconfig (class in arista.studio.v1.studio_pb2)": [[47, "arista.studio.v1.studio_pb2.StudioConfig", false]], "studioconfigbatchedstreamrequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.StudioConfigBatchedStreamRequest", false]], "studioconfigbatchedstreamresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.StudioConfigBatchedStreamResponse", false]], "studioconfigdeleteallrequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.StudioConfigDeleteAllRequest", false]], "studioconfigdeleteallresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.StudioConfigDeleteAllResponse", false]], "studioconfigdeleterequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.StudioConfigDeleteRequest", false]], "studioconfigdeleteresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.StudioConfigDeleteResponse", false]], "studioconfigdeletesomerequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.StudioConfigDeleteSomeRequest", false]], "studioconfigdeletesomeresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.StudioConfigDeleteSomeResponse", false]], "studioconfigrequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.StudioConfigRequest", false]], "studioconfigresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.StudioConfigResponse", false]], "studioconfigservice (class in arista.studio.v1.services.gen_pb2_grpc)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioConfigService", false]], "studioconfigserviceservicer (class in arista.studio.v1.services.gen_pb2_grpc)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioConfigServiceServicer", false]], "studioconfigservicestub (class in arista.studio.v1.services.gen_pb2_grpc)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioConfigServiceStub", false]], "studioconfigsetrequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.StudioConfigSetRequest", false]], "studioconfigsetresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.StudioConfigSetResponse", false]], "studioconfigsetsomerequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.StudioConfigSetSomeRequest", false]], "studioconfigsetsomeresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.StudioConfigSetSomeResponse", false]], "studioconfigsomerequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.StudioConfigSomeRequest", false]], "studioconfigsomeresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.StudioConfigSomeResponse", false]], "studioconfigstreamrequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.StudioConfigStreamRequest", false]], "studioconfigstreamresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.StudioConfigStreamResponse", false]], "studiocustomdata (class in cloudvision.cvlib.studio)": [[65, "cloudvision.cvlib.studio.StudioCustomData", false]], "studiokey (class in arista.studio.v1.studio_pb2)": [[47, "arista.studio.v1.studio_pb2.StudioKey", false]], "studiorequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.StudioRequest", false]], "studioresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.StudioResponse", false]], "studioservice (class in arista.studio.v1.services.gen_pb2_grpc)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioService", false]], "studioserviceservicer (class in arista.studio.v1.services.gen_pb2_grpc)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioServiceServicer", false]], "studioservicestub (class in arista.studio.v1.services.gen_pb2_grpc)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioServiceStub", false]], "studiosomerequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.StudioSomeRequest", false]], "studiosomeresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.StudioSomeResponse", false]], "studiostreamrequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.StudioStreamRequest", false]], "studiostreamresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.StudioStreamResponse", false]], "studiosummary (class in arista.studio.v1.studio_pb2)": [[47, "arista.studio.v1.studio_pb2.StudioSummary", false]], "studiosummarybatchedstreamrequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.StudioSummaryBatchedStreamRequest", false]], "studiosummarybatchedstreamresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.StudioSummaryBatchedStreamResponse", false]], "studiosummaryrequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.StudioSummaryRequest", false]], "studiosummaryresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.StudioSummaryResponse", false]], "studiosummaryservice (class in arista.studio.v1.services.gen_pb2_grpc)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioSummaryService", false]], "studiosummaryserviceservicer (class in arista.studio.v1.services.gen_pb2_grpc)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioSummaryServiceServicer", false]], "studiosummaryservicestub (class in arista.studio.v1.services.gen_pb2_grpc)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioSummaryServiceStub", false]], "studiosummarysomerequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.StudioSummarySomeRequest", false]], "studiosummarysomeresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.StudioSummarySomeResponse", false]], "studiosummarystreamrequest (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.StudioSummaryStreamRequest", false]], "studiosummarystreamresponse (class in arista.studio.v1.services.gen_pb2)": [[48, "arista.studio.v1.services.gen_pb2.StudioSummaryStreamResponse", false]], "subscribe() (arista.alert.v1.services.gen_pb2_grpc.alertconfigservice static method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.AlertConfigService.Subscribe", false]], "subscribe() (arista.alert.v1.services.gen_pb2_grpc.alertconfigserviceservicer method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.AlertConfigServiceServicer.Subscribe", false]], "subscribe() (arista.alert.v1.services.gen_pb2_grpc.alertservice static method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.AlertService.Subscribe", false]], "subscribe() (arista.alert.v1.services.gen_pb2_grpc.alertserviceservicer method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.AlertServiceServicer.Subscribe", false]], "subscribe() (arista.alert.v1.services.gen_pb2_grpc.defaulttemplateservice static method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.DefaultTemplateService.Subscribe", false]], "subscribe() (arista.alert.v1.services.gen_pb2_grpc.defaulttemplateserviceservicer method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.DefaultTemplateServiceServicer.Subscribe", false]], "subscribe() (arista.alert.v1.services.gen_pb2_grpc.templateconfigservice static method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.TemplateConfigService.Subscribe", false]], "subscribe() (arista.alert.v1.services.gen_pb2_grpc.templateconfigserviceservicer method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.TemplateConfigServiceServicer.Subscribe", false]], "subscribe() (arista.bugexposure.v1.services.gen_pb2_grpc.bugexposureservice static method)": [[6, "arista.bugexposure.v1.services.gen_pb2_grpc.BugExposureService.Subscribe", false]], "subscribe() (arista.bugexposure.v1.services.gen_pb2_grpc.bugexposureserviceservicer method)": [[6, "arista.bugexposure.v1.services.gen_pb2_grpc.BugExposureServiceServicer.Subscribe", false]], "subscribe() (arista.changecontrol.v1.services.gen_pb2_grpc.approveconfigservice static method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ApproveConfigService.Subscribe", false]], "subscribe() (arista.changecontrol.v1.services.gen_pb2_grpc.approveconfigserviceservicer method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ApproveConfigServiceServicer.Subscribe", false]], "subscribe() (arista.changecontrol.v1.services.gen_pb2_grpc.changecontrolconfigservice static method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlConfigService.Subscribe", false]], "subscribe() (arista.changecontrol.v1.services.gen_pb2_grpc.changecontrolconfigserviceservicer method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlConfigServiceServicer.Subscribe", false]], "subscribe() (arista.changecontrol.v1.services.gen_pb2_grpc.changecontrolservice static method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlService.Subscribe", false]], "subscribe() (arista.changecontrol.v1.services.gen_pb2_grpc.changecontrolserviceservicer method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlServiceServicer.Subscribe", false]], "subscribe() (arista.configlet.v1.services.gen_pb2_grpc.configletassignmentconfigservice static method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentConfigService.Subscribe", false]], "subscribe() (arista.configlet.v1.services.gen_pb2_grpc.configletassignmentconfigserviceservicer method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentConfigServiceServicer.Subscribe", false]], "subscribe() (arista.configlet.v1.services.gen_pb2_grpc.configletassignmentservice static method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentService.Subscribe", false]], "subscribe() (arista.configlet.v1.services.gen_pb2_grpc.configletassignmentserviceservicer method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentServiceServicer.Subscribe", false]], "subscribe() (arista.configlet.v1.services.gen_pb2_grpc.configletconfigservice static method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletConfigService.Subscribe", false]], "subscribe() (arista.configlet.v1.services.gen_pb2_grpc.configletconfigserviceservicer method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletConfigServiceServicer.Subscribe", false]], "subscribe() (arista.configlet.v1.services.gen_pb2_grpc.configletservice static method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletService.Subscribe", false]], "subscribe() (arista.configlet.v1.services.gen_pb2_grpc.configletserviceservicer method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletServiceServicer.Subscribe", false]], "subscribe() (arista.configstatus.v1.services.gen_pb2_grpc.configdiffservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.ConfigDiffService.Subscribe", false]], "subscribe() (arista.configstatus.v1.services.gen_pb2_grpc.configdiffserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.ConfigDiffServiceServicer.Subscribe", false]], "subscribe() (arista.configstatus.v1.services.gen_pb2_grpc.configurationservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.ConfigurationService.Subscribe", false]], "subscribe() (arista.configstatus.v1.services.gen_pb2_grpc.configurationserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.ConfigurationServiceServicer.Subscribe", false]], "subscribe() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofilediffservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffService.Subscribe", false]], "subscribe() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofilediffserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffServiceServicer.Subscribe", false]], "subscribe() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofilediffsummaryservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffSummaryService.Subscribe", false]], "subscribe() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofilediffsummaryserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffSummaryServiceServicer.Subscribe", false]], "subscribe() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofileservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileService.Subscribe", false]], "subscribe() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofileserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileServiceServicer.Subscribe", false]], "subscribe() (arista.configstatus.v1.services.gen_pb2_grpc.summaryservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SummaryService.Subscribe", false]], "subscribe() (arista.configstatus.v1.services.gen_pb2_grpc.summaryserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SummaryServiceServicer.Subscribe", false]], "subscribe() (arista.connectivitymonitor.v1.services.gen_pb2_grpc.probeservice static method)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeService.Subscribe", false]], "subscribe() (arista.connectivitymonitor.v1.services.gen_pb2_grpc.probeserviceservicer method)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeServiceServicer.Subscribe", false]], "subscribe() (arista.connectivitymonitor.v1.services.gen_pb2_grpc.probestatsservice static method)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeStatsService.Subscribe", false]], "subscribe() (arista.connectivitymonitor.v1.services.gen_pb2_grpc.probestatsserviceservicer method)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeStatsServiceServicer.Subscribe", false]], "subscribe() (arista.dashboard.v1.services.gen_pb2_grpc.dashboardconfigservice static method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardConfigService.Subscribe", false]], "subscribe() (arista.dashboard.v1.services.gen_pb2_grpc.dashboardconfigserviceservicer method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardConfigServiceServicer.Subscribe", false]], "subscribe() (arista.dashboard.v1.services.gen_pb2_grpc.dashboardservice static method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardService.Subscribe", false]], "subscribe() (arista.dashboard.v1.services.gen_pb2_grpc.dashboardserviceservicer method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardServiceServicer.Subscribe", false]], "subscribe() (arista.dashboard.v1.services.gen_pb2_grpc.globaldashboardconfigservice static method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.GlobalDashboardConfigService.Subscribe", false]], "subscribe() (arista.dashboard.v1.services.gen_pb2_grpc.globaldashboardconfigserviceservicer method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.GlobalDashboardConfigServiceServicer.Subscribe", false]], "subscribe() (arista.endpointlocation.v1.services.gen_pb2_grpc.endpointlocationservice static method)": [[24, "arista.endpointlocation.v1.services.gen_pb2_grpc.EndpointLocationService.Subscribe", false]], "subscribe() (arista.endpointlocation.v1.services.gen_pb2_grpc.endpointlocationserviceservicer method)": [[24, "arista.endpointlocation.v1.services.gen_pb2_grpc.EndpointLocationServiceServicer.Subscribe", false]], "subscribe() (arista.event.v1.services.gen_pb2_grpc.eventannotationconfigservice static method)": [[27, "arista.event.v1.services.gen_pb2_grpc.EventAnnotationConfigService.Subscribe", false]], "subscribe() (arista.event.v1.services.gen_pb2_grpc.eventannotationconfigserviceservicer method)": [[27, "arista.event.v1.services.gen_pb2_grpc.EventAnnotationConfigServiceServicer.Subscribe", false]], "subscribe() (arista.event.v1.services.gen_pb2_grpc.eventservice static method)": [[27, "arista.event.v1.services.gen_pb2_grpc.EventService.Subscribe", false]], "subscribe() (arista.event.v1.services.gen_pb2_grpc.eventserviceservicer method)": [[27, "arista.event.v1.services.gen_pb2_grpc.EventServiceServicer.Subscribe", false]], "subscribe() (arista.event.v1.services.gen_pb2_grpc.usereventcreationconfigservice static method)": [[27, "arista.event.v1.services.gen_pb2_grpc.UserEventCreationConfigService.Subscribe", false]], "subscribe() (arista.event.v1.services.gen_pb2_grpc.usereventcreationconfigserviceservicer method)": [[27, "arista.event.v1.services.gen_pb2_grpc.UserEventCreationConfigServiceServicer.Subscribe", false]], "subscribe() (arista.identityprovider.v1.services.gen_pb2_grpc.oauthconfigservice static method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.OAuthConfigService.Subscribe", false]], "subscribe() (arista.identityprovider.v1.services.gen_pb2_grpc.oauthconfigserviceservicer method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.OAuthConfigServiceServicer.Subscribe", false]], "subscribe() (arista.identityprovider.v1.services.gen_pb2_grpc.samlconfigservice static method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.SAMLConfigService.Subscribe", false]], "subscribe() (arista.identityprovider.v1.services.gen_pb2_grpc.samlconfigserviceservicer method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.SAMLConfigServiceServicer.Subscribe", false]], "subscribe() (arista.imagestatus.v1.services.gen_pb2_grpc.summaryservice static method)": [[33, "arista.imagestatus.v1.services.gen_pb2_grpc.SummaryService.Subscribe", false]], "subscribe() (arista.imagestatus.v1.services.gen_pb2_grpc.summaryserviceservicer method)": [[33, "arista.imagestatus.v1.services.gen_pb2_grpc.SummaryServiceServicer.Subscribe", false]], "subscribe() (arista.inventory.v1.services.gen_pb2_grpc.devicedecommissioningconfigservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningConfigService.Subscribe", false]], "subscribe() (arista.inventory.v1.services.gen_pb2_grpc.devicedecommissioningconfigserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningConfigServiceServicer.Subscribe", false]], "subscribe() (arista.inventory.v1.services.gen_pb2_grpc.devicedecommissioningservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningService.Subscribe", false]], "subscribe() (arista.inventory.v1.services.gen_pb2_grpc.devicedecommissioningserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningServiceServicer.Subscribe", false]], "subscribe() (arista.inventory.v1.services.gen_pb2_grpc.deviceonboardingconfigservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingConfigService.Subscribe", false]], "subscribe() (arista.inventory.v1.services.gen_pb2_grpc.deviceonboardingconfigserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingConfigServiceServicer.Subscribe", false]], "subscribe() (arista.inventory.v1.services.gen_pb2_grpc.deviceonboardingservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingService.Subscribe", false]], "subscribe() (arista.inventory.v1.services.gen_pb2_grpc.deviceonboardingserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingServiceServicer.Subscribe", false]], "subscribe() (arista.inventory.v1.services.gen_pb2_grpc.deviceservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceService.Subscribe", false]], "subscribe() (arista.inventory.v1.services.gen_pb2_grpc.deviceserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceServiceServicer.Subscribe", false]], "subscribe() (arista.inventory.v1.services.gen_pb2_grpc.provisioneddeviceservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.ProvisionedDeviceService.Subscribe", false]], "subscribe() (arista.inventory.v1.services.gen_pb2_grpc.provisioneddeviceserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.ProvisionedDeviceServiceServicer.Subscribe", false]], "subscribe() (arista.lifecycle.v1.services.gen_pb2_grpc.devicelifecyclesummaryservice static method)": [[39, "arista.lifecycle.v1.services.gen_pb2_grpc.DeviceLifecycleSummaryService.Subscribe", false]], "subscribe() (arista.lifecycle.v1.services.gen_pb2_grpc.devicelifecyclesummaryserviceservicer method)": [[39, "arista.lifecycle.v1.services.gen_pb2_grpc.DeviceLifecycleSummaryServiceServicer.Subscribe", false]], "subscribe() (arista.redirector.v1.services.gen_pb2_grpc.assignmentservice static method)": [[42, "arista.redirector.v1.services.gen_pb2_grpc.AssignmentService.Subscribe", false]], "subscribe() (arista.redirector.v1.services.gen_pb2_grpc.assignmentserviceservicer method)": [[42, "arista.redirector.v1.services.gen_pb2_grpc.AssignmentServiceServicer.Subscribe", false]], "subscribe() (arista.serviceaccount.v1.services.gen_pb2_grpc.accountconfigservice static method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.AccountConfigService.Subscribe", false]], "subscribe() (arista.serviceaccount.v1.services.gen_pb2_grpc.accountconfigserviceservicer method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.AccountConfigServiceServicer.Subscribe", false]], "subscribe() (arista.serviceaccount.v1.services.gen_pb2_grpc.accountservice static method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.AccountService.Subscribe", false]], "subscribe() (arista.serviceaccount.v1.services.gen_pb2_grpc.accountserviceservicer method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.AccountServiceServicer.Subscribe", false]], "subscribe() (arista.serviceaccount.v1.services.gen_pb2_grpc.tokenconfigservice static method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.TokenConfigService.Subscribe", false]], "subscribe() (arista.serviceaccount.v1.services.gen_pb2_grpc.tokenconfigserviceservicer method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.TokenConfigServiceServicer.Subscribe", false]], "subscribe() (arista.serviceaccount.v1.services.gen_pb2_grpc.tokenservice static method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.TokenService.Subscribe", false]], "subscribe() (arista.serviceaccount.v1.services.gen_pb2_grpc.tokenserviceservicer method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.TokenServiceServicer.Subscribe", false]], "subscribe() (arista.studio.v1.services.gen_pb2_grpc.assignedtagsconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsConfigService.Subscribe", false]], "subscribe() (arista.studio.v1.services.gen_pb2_grpc.assignedtagsconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsConfigServiceServicer.Subscribe", false]], "subscribe() (arista.studio.v1.services.gen_pb2_grpc.assignedtagsservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsService.Subscribe", false]], "subscribe() (arista.studio.v1.services.gen_pb2_grpc.assignedtagsserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsServiceServicer.Subscribe", false]], "subscribe() (arista.studio.v1.services.gen_pb2_grpc.autofillactionconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionConfigService.Subscribe", false]], "subscribe() (arista.studio.v1.services.gen_pb2_grpc.autofillactionconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionConfigServiceServicer.Subscribe", false]], "subscribe() (arista.studio.v1.services.gen_pb2_grpc.autofillactionservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionService.Subscribe", false]], "subscribe() (arista.studio.v1.services.gen_pb2_grpc.autofillactionserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionServiceServicer.Subscribe", false]], "subscribe() (arista.studio.v1.services.gen_pb2_grpc.inputsconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsConfigService.Subscribe", false]], "subscribe() (arista.studio.v1.services.gen_pb2_grpc.inputsconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsConfigServiceServicer.Subscribe", false]], "subscribe() (arista.studio.v1.services.gen_pb2_grpc.inputsservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsService.Subscribe", false]], "subscribe() (arista.studio.v1.services.gen_pb2_grpc.inputsserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsServiceServicer.Subscribe", false]], "subscribe() (arista.studio.v1.services.gen_pb2_grpc.secretinputservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.SecretInputService.Subscribe", false]], "subscribe() (arista.studio.v1.services.gen_pb2_grpc.secretinputserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.SecretInputServiceServicer.Subscribe", false]], "subscribe() (arista.studio.v1.services.gen_pb2_grpc.studioconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioConfigService.Subscribe", false]], "subscribe() (arista.studio.v1.services.gen_pb2_grpc.studioconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioConfigServiceServicer.Subscribe", false]], "subscribe() (arista.studio.v1.services.gen_pb2_grpc.studioservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioService.Subscribe", false]], "subscribe() (arista.studio.v1.services.gen_pb2_grpc.studioserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioServiceServicer.Subscribe", false]], "subscribe() (arista.studio.v1.services.gen_pb2_grpc.studiosummaryservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioSummaryService.Subscribe", false]], "subscribe() (arista.studio.v1.services.gen_pb2_grpc.studiosummaryserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioSummaryServiceServicer.Subscribe", false]], "subscribe() (arista.tag.v2.services.gen_pb2_grpc.tagassignmentconfigservice static method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentConfigService.Subscribe", false]], "subscribe() (arista.tag.v2.services.gen_pb2_grpc.tagassignmentconfigserviceservicer method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentConfigServiceServicer.Subscribe", false]], "subscribe() (arista.tag.v2.services.gen_pb2_grpc.tagassignmentservice static method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentService.Subscribe", false]], "subscribe() (arista.tag.v2.services.gen_pb2_grpc.tagassignmentserviceservicer method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentServiceServicer.Subscribe", false]], "subscribe() (arista.tag.v2.services.gen_pb2_grpc.tagconfigservice static method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagConfigService.Subscribe", false]], "subscribe() (arista.tag.v2.services.gen_pb2_grpc.tagconfigserviceservicer method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagConfigServiceServicer.Subscribe", false]], "subscribe() (arista.tag.v2.services.gen_pb2_grpc.tagservice static method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagService.Subscribe", false]], "subscribe() (arista.tag.v2.services.gen_pb2_grpc.tagserviceservicer method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagServiceServicer.Subscribe", false]], "subscribe() (arista.workspace.v1.services.gen_pb2_grpc.workspacebuilddetailsservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildDetailsService.Subscribe", false]], "subscribe() (arista.workspace.v1.services.gen_pb2_grpc.workspacebuilddetailsserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildDetailsServiceServicer.Subscribe", false]], "subscribe() (arista.workspace.v1.services.gen_pb2_grpc.workspacebuildservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildService.Subscribe", false]], "subscribe() (arista.workspace.v1.services.gen_pb2_grpc.workspacebuildserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildServiceServicer.Subscribe", false]], "subscribe() (arista.workspace.v1.services.gen_pb2_grpc.workspaceconfigservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceConfigService.Subscribe", false]], "subscribe() (arista.workspace.v1.services.gen_pb2_grpc.workspaceconfigserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceConfigServiceServicer.Subscribe", false]], "subscribe() (arista.workspace.v1.services.gen_pb2_grpc.workspaceservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceService.Subscribe", false]], "subscribe() (arista.workspace.v1.services.gen_pb2_grpc.workspaceserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceServiceServicer.Subscribe", false]], "subscribe() (arista.workspace.v1.services.gen_pb2_grpc.workspacesyncconfigservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceSyncConfigService.Subscribe", false]], "subscribe() (arista.workspace.v1.services.gen_pb2_grpc.workspacesyncconfigserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceSyncConfigServiceServicer.Subscribe", false]], "subscribe() (cloudvision.connector.gen.router_pb2_grpc.routerv1 static method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.RouterV1.Subscribe", false]], "subscribe() (cloudvision.connector.gen.router_pb2_grpc.routerv1servicer method)": [[62, "cloudvision.Connector.gen.router_pb2_grpc.RouterV1Servicer.Subscribe", false]], "subscribe() (cloudvision.connector.grpc_client.grpcclient method)": [[63, "cloudvision.Connector.grpc_client.GRPCClient.subscribe", false]], "subscribe() (cloudvision.connector.grpc_client.grpcclient.grpcclient method)": [[63, "cloudvision.Connector.grpc_client.grpcClient.GRPCClient.subscribe", false]], "subscribebatched() (arista.alert.v1.services.gen_pb2_grpc.defaulttemplateservice static method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.DefaultTemplateService.SubscribeBatched", false]], "subscribebatched() (arista.alert.v1.services.gen_pb2_grpc.defaulttemplateserviceservicer method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.DefaultTemplateServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.alert.v1.services.gen_pb2_grpc.templateconfigservice static method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.TemplateConfigService.SubscribeBatched", false]], "subscribebatched() (arista.alert.v1.services.gen_pb2_grpc.templateconfigserviceservicer method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.TemplateConfigServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.changecontrol.v1.services.gen_pb2_grpc.approveconfigservice static method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ApproveConfigService.SubscribeBatched", false]], "subscribebatched() (arista.changecontrol.v1.services.gen_pb2_grpc.approveconfigserviceservicer method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ApproveConfigServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.changecontrol.v1.services.gen_pb2_grpc.changecontrolconfigservice static method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlConfigService.SubscribeBatched", false]], "subscribebatched() (arista.changecontrol.v1.services.gen_pb2_grpc.changecontrolconfigserviceservicer method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlConfigServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.changecontrol.v1.services.gen_pb2_grpc.changecontrolservice static method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlService.SubscribeBatched", false]], "subscribebatched() (arista.changecontrol.v1.services.gen_pb2_grpc.changecontrolserviceservicer method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.configlet.v1.services.gen_pb2_grpc.configletassignmentconfigservice static method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentConfigService.SubscribeBatched", false]], "subscribebatched() (arista.configlet.v1.services.gen_pb2_grpc.configletassignmentconfigserviceservicer method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentConfigServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.configlet.v1.services.gen_pb2_grpc.configletassignmentservice static method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentService.SubscribeBatched", false]], "subscribebatched() (arista.configlet.v1.services.gen_pb2_grpc.configletassignmentserviceservicer method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.configlet.v1.services.gen_pb2_grpc.configletconfigservice static method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletConfigService.SubscribeBatched", false]], "subscribebatched() (arista.configlet.v1.services.gen_pb2_grpc.configletconfigserviceservicer method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletConfigServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.configlet.v1.services.gen_pb2_grpc.configletservice static method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletService.SubscribeBatched", false]], "subscribebatched() (arista.configlet.v1.services.gen_pb2_grpc.configletserviceservicer method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.configstatus.v1.services.gen_pb2_grpc.configdiffservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.ConfigDiffService.SubscribeBatched", false]], "subscribebatched() (arista.configstatus.v1.services.gen_pb2_grpc.configdiffserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.ConfigDiffServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.configstatus.v1.services.gen_pb2_grpc.configurationservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.ConfigurationService.SubscribeBatched", false]], "subscribebatched() (arista.configstatus.v1.services.gen_pb2_grpc.configurationserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.ConfigurationServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofilediffservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffService.SubscribeBatched", false]], "subscribebatched() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofilediffserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofilediffsummaryservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffSummaryService.SubscribeBatched", false]], "subscribebatched() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofilediffsummaryserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffSummaryServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofileservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileService.SubscribeBatched", false]], "subscribebatched() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofileserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.configstatus.v1.services.gen_pb2_grpc.summaryservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SummaryService.SubscribeBatched", false]], "subscribebatched() (arista.configstatus.v1.services.gen_pb2_grpc.summaryserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SummaryServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.connectivitymonitor.v1.services.gen_pb2_grpc.probeservice static method)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeService.SubscribeBatched", false]], "subscribebatched() (arista.connectivitymonitor.v1.services.gen_pb2_grpc.probeserviceservicer method)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.connectivitymonitor.v1.services.gen_pb2_grpc.probestatsservice static method)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeStatsService.SubscribeBatched", false]], "subscribebatched() (arista.connectivitymonitor.v1.services.gen_pb2_grpc.probestatsserviceservicer method)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeStatsServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.dashboard.v1.services.gen_pb2_grpc.dashboardconfigservice static method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardConfigService.SubscribeBatched", false]], "subscribebatched() (arista.dashboard.v1.services.gen_pb2_grpc.dashboardconfigserviceservicer method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardConfigServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.dashboard.v1.services.gen_pb2_grpc.dashboardservice static method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardService.SubscribeBatched", false]], "subscribebatched() (arista.dashboard.v1.services.gen_pb2_grpc.dashboardserviceservicer method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.dashboard.v1.services.gen_pb2_grpc.globaldashboardconfigservice static method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.GlobalDashboardConfigService.SubscribeBatched", false]], "subscribebatched() (arista.dashboard.v1.services.gen_pb2_grpc.globaldashboardconfigserviceservicer method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.GlobalDashboardConfigServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.endpointlocation.v1.services.gen_pb2_grpc.endpointlocationservice static method)": [[24, "arista.endpointlocation.v1.services.gen_pb2_grpc.EndpointLocationService.SubscribeBatched", false]], "subscribebatched() (arista.endpointlocation.v1.services.gen_pb2_grpc.endpointlocationserviceservicer method)": [[24, "arista.endpointlocation.v1.services.gen_pb2_grpc.EndpointLocationServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.identityprovider.v1.services.gen_pb2_grpc.oauthconfigservice static method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.OAuthConfigService.SubscribeBatched", false]], "subscribebatched() (arista.identityprovider.v1.services.gen_pb2_grpc.oauthconfigserviceservicer method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.OAuthConfigServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.identityprovider.v1.services.gen_pb2_grpc.samlconfigservice static method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.SAMLConfigService.SubscribeBatched", false]], "subscribebatched() (arista.identityprovider.v1.services.gen_pb2_grpc.samlconfigserviceservicer method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.SAMLConfigServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.imagestatus.v1.services.gen_pb2_grpc.summaryservice static method)": [[33, "arista.imagestatus.v1.services.gen_pb2_grpc.SummaryService.SubscribeBatched", false]], "subscribebatched() (arista.imagestatus.v1.services.gen_pb2_grpc.summaryserviceservicer method)": [[33, "arista.imagestatus.v1.services.gen_pb2_grpc.SummaryServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.inventory.v1.services.gen_pb2_grpc.devicedecommissioningconfigservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningConfigService.SubscribeBatched", false]], "subscribebatched() (arista.inventory.v1.services.gen_pb2_grpc.devicedecommissioningconfigserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningConfigServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.inventory.v1.services.gen_pb2_grpc.devicedecommissioningservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningService.SubscribeBatched", false]], "subscribebatched() (arista.inventory.v1.services.gen_pb2_grpc.devicedecommissioningserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.inventory.v1.services.gen_pb2_grpc.deviceonboardingconfigservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingConfigService.SubscribeBatched", false]], "subscribebatched() (arista.inventory.v1.services.gen_pb2_grpc.deviceonboardingconfigserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingConfigServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.inventory.v1.services.gen_pb2_grpc.deviceonboardingservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingService.SubscribeBatched", false]], "subscribebatched() (arista.inventory.v1.services.gen_pb2_grpc.deviceonboardingserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.inventory.v1.services.gen_pb2_grpc.deviceservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceService.SubscribeBatched", false]], "subscribebatched() (arista.inventory.v1.services.gen_pb2_grpc.deviceserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.inventory.v1.services.gen_pb2_grpc.provisioneddeviceservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.ProvisionedDeviceService.SubscribeBatched", false]], "subscribebatched() (arista.inventory.v1.services.gen_pb2_grpc.provisioneddeviceserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.ProvisionedDeviceServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.redirector.v1.services.gen_pb2_grpc.assignmentservice static method)": [[42, "arista.redirector.v1.services.gen_pb2_grpc.AssignmentService.SubscribeBatched", false]], "subscribebatched() (arista.redirector.v1.services.gen_pb2_grpc.assignmentserviceservicer method)": [[42, "arista.redirector.v1.services.gen_pb2_grpc.AssignmentServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.studio.v1.services.gen_pb2_grpc.assignedtagsconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsConfigService.SubscribeBatched", false]], "subscribebatched() (arista.studio.v1.services.gen_pb2_grpc.assignedtagsconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsConfigServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.studio.v1.services.gen_pb2_grpc.assignedtagsservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsService.SubscribeBatched", false]], "subscribebatched() (arista.studio.v1.services.gen_pb2_grpc.assignedtagsserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.studio.v1.services.gen_pb2_grpc.autofillactionconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionConfigService.SubscribeBatched", false]], "subscribebatched() (arista.studio.v1.services.gen_pb2_grpc.autofillactionconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionConfigServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.studio.v1.services.gen_pb2_grpc.autofillactionservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionService.SubscribeBatched", false]], "subscribebatched() (arista.studio.v1.services.gen_pb2_grpc.autofillactionserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.studio.v1.services.gen_pb2_grpc.inputsconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsConfigService.SubscribeBatched", false]], "subscribebatched() (arista.studio.v1.services.gen_pb2_grpc.inputsconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsConfigServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.studio.v1.services.gen_pb2_grpc.inputsservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsService.SubscribeBatched", false]], "subscribebatched() (arista.studio.v1.services.gen_pb2_grpc.inputsserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.studio.v1.services.gen_pb2_grpc.secretinputservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.SecretInputService.SubscribeBatched", false]], "subscribebatched() (arista.studio.v1.services.gen_pb2_grpc.secretinputserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.SecretInputServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.studio.v1.services.gen_pb2_grpc.studioconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioConfigService.SubscribeBatched", false]], "subscribebatched() (arista.studio.v1.services.gen_pb2_grpc.studioconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioConfigServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.studio.v1.services.gen_pb2_grpc.studioservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioService.SubscribeBatched", false]], "subscribebatched() (arista.studio.v1.services.gen_pb2_grpc.studioserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.studio.v1.services.gen_pb2_grpc.studiosummaryservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioSummaryService.SubscribeBatched", false]], "subscribebatched() (arista.studio.v1.services.gen_pb2_grpc.studiosummaryserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioSummaryServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.tag.v2.services.gen_pb2_grpc.tagassignmentconfigservice static method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentConfigService.SubscribeBatched", false]], "subscribebatched() (arista.tag.v2.services.gen_pb2_grpc.tagassignmentconfigserviceservicer method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentConfigServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.tag.v2.services.gen_pb2_grpc.tagassignmentservice static method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentService.SubscribeBatched", false]], "subscribebatched() (arista.tag.v2.services.gen_pb2_grpc.tagassignmentserviceservicer method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.tag.v2.services.gen_pb2_grpc.tagconfigservice static method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagConfigService.SubscribeBatched", false]], "subscribebatched() (arista.tag.v2.services.gen_pb2_grpc.tagconfigserviceservicer method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagConfigServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.tag.v2.services.gen_pb2_grpc.tagservice static method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagService.SubscribeBatched", false]], "subscribebatched() (arista.tag.v2.services.gen_pb2_grpc.tagserviceservicer method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.workspace.v1.services.gen_pb2_grpc.workspacebuilddetailsservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildDetailsService.SubscribeBatched", false]], "subscribebatched() (arista.workspace.v1.services.gen_pb2_grpc.workspacebuilddetailsserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildDetailsServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.workspace.v1.services.gen_pb2_grpc.workspacebuildservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildService.SubscribeBatched", false]], "subscribebatched() (arista.workspace.v1.services.gen_pb2_grpc.workspacebuildserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.workspace.v1.services.gen_pb2_grpc.workspaceconfigservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceConfigService.SubscribeBatched", false]], "subscribebatched() (arista.workspace.v1.services.gen_pb2_grpc.workspaceconfigserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceConfigServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.workspace.v1.services.gen_pb2_grpc.workspaceservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceService.SubscribeBatched", false]], "subscribebatched() (arista.workspace.v1.services.gen_pb2_grpc.workspaceserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceServiceServicer.SubscribeBatched", false]], "subscribebatched() (arista.workspace.v1.services.gen_pb2_grpc.workspacesyncconfigservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceSyncConfigService.SubscribeBatched", false]], "subscribebatched() (arista.workspace.v1.services.gen_pb2_grpc.workspacesyncconfigserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceSyncConfigServiceServicer.SubscribeBatched", false]], "subscribemeta() (arista.alert.v1.services.gen_pb2_grpc.alertconfigservice static method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.AlertConfigService.SubscribeMeta", false]], "subscribemeta() (arista.alert.v1.services.gen_pb2_grpc.alertconfigserviceservicer method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.AlertConfigServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.alert.v1.services.gen_pb2_grpc.alertservice static method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.AlertService.SubscribeMeta", false]], "subscribemeta() (arista.alert.v1.services.gen_pb2_grpc.alertserviceservicer method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.AlertServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.alert.v1.services.gen_pb2_grpc.defaulttemplateservice static method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.DefaultTemplateService.SubscribeMeta", false]], "subscribemeta() (arista.alert.v1.services.gen_pb2_grpc.defaulttemplateserviceservicer method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.DefaultTemplateServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.alert.v1.services.gen_pb2_grpc.templateconfigservice static method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.TemplateConfigService.SubscribeMeta", false]], "subscribemeta() (arista.alert.v1.services.gen_pb2_grpc.templateconfigserviceservicer method)": [[3, "arista.alert.v1.services.gen_pb2_grpc.TemplateConfigServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.bugexposure.v1.services.gen_pb2_grpc.bugexposureservice static method)": [[6, "arista.bugexposure.v1.services.gen_pb2_grpc.BugExposureService.SubscribeMeta", false]], "subscribemeta() (arista.bugexposure.v1.services.gen_pb2_grpc.bugexposureserviceservicer method)": [[6, "arista.bugexposure.v1.services.gen_pb2_grpc.BugExposureServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.changecontrol.v1.services.gen_pb2_grpc.approveconfigservice static method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ApproveConfigService.SubscribeMeta", false]], "subscribemeta() (arista.changecontrol.v1.services.gen_pb2_grpc.approveconfigserviceservicer method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ApproveConfigServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.changecontrol.v1.services.gen_pb2_grpc.changecontrolconfigservice static method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlConfigService.SubscribeMeta", false]], "subscribemeta() (arista.changecontrol.v1.services.gen_pb2_grpc.changecontrolconfigserviceservicer method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlConfigServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.changecontrol.v1.services.gen_pb2_grpc.changecontrolservice static method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlService.SubscribeMeta", false]], "subscribemeta() (arista.changecontrol.v1.services.gen_pb2_grpc.changecontrolserviceservicer method)": [[9, "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.configlet.v1.services.gen_pb2_grpc.configletassignmentconfigservice static method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentConfigService.SubscribeMeta", false]], "subscribemeta() (arista.configlet.v1.services.gen_pb2_grpc.configletassignmentconfigserviceservicer method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentConfigServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.configlet.v1.services.gen_pb2_grpc.configletassignmentservice static method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentService.SubscribeMeta", false]], "subscribemeta() (arista.configlet.v1.services.gen_pb2_grpc.configletassignmentserviceservicer method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.configlet.v1.services.gen_pb2_grpc.configletconfigservice static method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletConfigService.SubscribeMeta", false]], "subscribemeta() (arista.configlet.v1.services.gen_pb2_grpc.configletconfigserviceservicer method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletConfigServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.configlet.v1.services.gen_pb2_grpc.configletservice static method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletService.SubscribeMeta", false]], "subscribemeta() (arista.configlet.v1.services.gen_pb2_grpc.configletserviceservicer method)": [[12, "arista.configlet.v1.services.gen_pb2_grpc.ConfigletServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.configstatus.v1.services.gen_pb2_grpc.configdiffservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.ConfigDiffService.SubscribeMeta", false]], "subscribemeta() (arista.configstatus.v1.services.gen_pb2_grpc.configdiffserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.ConfigDiffServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.configstatus.v1.services.gen_pb2_grpc.configurationservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.ConfigurationService.SubscribeMeta", false]], "subscribemeta() (arista.configstatus.v1.services.gen_pb2_grpc.configurationserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.ConfigurationServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofilediffservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffService.SubscribeMeta", false]], "subscribemeta() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofilediffserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofilediffsummaryservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffSummaryService.SubscribeMeta", false]], "subscribemeta() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofilediffsummaryserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffSummaryServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofileservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileService.SubscribeMeta", false]], "subscribemeta() (arista.configstatus.v1.services.gen_pb2_grpc.securityprofileserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.configstatus.v1.services.gen_pb2_grpc.summaryservice static method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SummaryService.SubscribeMeta", false]], "subscribemeta() (arista.configstatus.v1.services.gen_pb2_grpc.summaryserviceservicer method)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SummaryServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.connectivitymonitor.v1.services.gen_pb2_grpc.probeservice static method)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeService.SubscribeMeta", false]], "subscribemeta() (arista.connectivitymonitor.v1.services.gen_pb2_grpc.probeserviceservicer method)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.connectivitymonitor.v1.services.gen_pb2_grpc.probestatsservice static method)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeStatsService.SubscribeMeta", false]], "subscribemeta() (arista.connectivitymonitor.v1.services.gen_pb2_grpc.probestatsserviceservicer method)": [[18, "arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeStatsServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.dashboard.v1.services.gen_pb2_grpc.dashboardconfigservice static method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardConfigService.SubscribeMeta", false]], "subscribemeta() (arista.dashboard.v1.services.gen_pb2_grpc.dashboardconfigserviceservicer method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardConfigServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.dashboard.v1.services.gen_pb2_grpc.dashboardservice static method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardService.SubscribeMeta", false]], "subscribemeta() (arista.dashboard.v1.services.gen_pb2_grpc.dashboardserviceservicer method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.DashboardServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.dashboard.v1.services.gen_pb2_grpc.globaldashboardconfigservice static method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.GlobalDashboardConfigService.SubscribeMeta", false]], "subscribemeta() (arista.dashboard.v1.services.gen_pb2_grpc.globaldashboardconfigserviceservicer method)": [[21, "arista.dashboard.v1.services.gen_pb2_grpc.GlobalDashboardConfigServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.endpointlocation.v1.services.gen_pb2_grpc.endpointlocationservice static method)": [[24, "arista.endpointlocation.v1.services.gen_pb2_grpc.EndpointLocationService.SubscribeMeta", false]], "subscribemeta() (arista.endpointlocation.v1.services.gen_pb2_grpc.endpointlocationserviceservicer method)": [[24, "arista.endpointlocation.v1.services.gen_pb2_grpc.EndpointLocationServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.event.v1.services.gen_pb2_grpc.eventannotationconfigservice static method)": [[27, "arista.event.v1.services.gen_pb2_grpc.EventAnnotationConfigService.SubscribeMeta", false]], "subscribemeta() (arista.event.v1.services.gen_pb2_grpc.eventannotationconfigserviceservicer method)": [[27, "arista.event.v1.services.gen_pb2_grpc.EventAnnotationConfigServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.event.v1.services.gen_pb2_grpc.eventservice static method)": [[27, "arista.event.v1.services.gen_pb2_grpc.EventService.SubscribeMeta", false]], "subscribemeta() (arista.event.v1.services.gen_pb2_grpc.eventserviceservicer method)": [[27, "arista.event.v1.services.gen_pb2_grpc.EventServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.event.v1.services.gen_pb2_grpc.usereventcreationconfigservice static method)": [[27, "arista.event.v1.services.gen_pb2_grpc.UserEventCreationConfigService.SubscribeMeta", false]], "subscribemeta() (arista.event.v1.services.gen_pb2_grpc.usereventcreationconfigserviceservicer method)": [[27, "arista.event.v1.services.gen_pb2_grpc.UserEventCreationConfigServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.identityprovider.v1.services.gen_pb2_grpc.oauthconfigservice static method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.OAuthConfigService.SubscribeMeta", false]], "subscribemeta() (arista.identityprovider.v1.services.gen_pb2_grpc.oauthconfigserviceservicer method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.OAuthConfigServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.identityprovider.v1.services.gen_pb2_grpc.samlconfigservice static method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.SAMLConfigService.SubscribeMeta", false]], "subscribemeta() (arista.identityprovider.v1.services.gen_pb2_grpc.samlconfigserviceservicer method)": [[30, "arista.identityprovider.v1.services.gen_pb2_grpc.SAMLConfigServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.imagestatus.v1.services.gen_pb2_grpc.summaryservice static method)": [[33, "arista.imagestatus.v1.services.gen_pb2_grpc.SummaryService.SubscribeMeta", false]], "subscribemeta() (arista.imagestatus.v1.services.gen_pb2_grpc.summaryserviceservicer method)": [[33, "arista.imagestatus.v1.services.gen_pb2_grpc.SummaryServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.inventory.v1.services.gen_pb2_grpc.devicedecommissioningconfigservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningConfigService.SubscribeMeta", false]], "subscribemeta() (arista.inventory.v1.services.gen_pb2_grpc.devicedecommissioningconfigserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningConfigServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.inventory.v1.services.gen_pb2_grpc.devicedecommissioningservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningService.SubscribeMeta", false]], "subscribemeta() (arista.inventory.v1.services.gen_pb2_grpc.devicedecommissioningserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.inventory.v1.services.gen_pb2_grpc.deviceonboardingconfigservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingConfigService.SubscribeMeta", false]], "subscribemeta() (arista.inventory.v1.services.gen_pb2_grpc.deviceonboardingconfigserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingConfigServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.inventory.v1.services.gen_pb2_grpc.deviceonboardingservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingService.SubscribeMeta", false]], "subscribemeta() (arista.inventory.v1.services.gen_pb2_grpc.deviceonboardingserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.inventory.v1.services.gen_pb2_grpc.deviceservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceService.SubscribeMeta", false]], "subscribemeta() (arista.inventory.v1.services.gen_pb2_grpc.deviceserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.DeviceServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.inventory.v1.services.gen_pb2_grpc.provisioneddeviceservice static method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.ProvisionedDeviceService.SubscribeMeta", false]], "subscribemeta() (arista.inventory.v1.services.gen_pb2_grpc.provisioneddeviceserviceservicer method)": [[36, "arista.inventory.v1.services.gen_pb2_grpc.ProvisionedDeviceServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.lifecycle.v1.services.gen_pb2_grpc.devicelifecyclesummaryservice static method)": [[39, "arista.lifecycle.v1.services.gen_pb2_grpc.DeviceLifecycleSummaryService.SubscribeMeta", false]], "subscribemeta() (arista.lifecycle.v1.services.gen_pb2_grpc.devicelifecyclesummaryserviceservicer method)": [[39, "arista.lifecycle.v1.services.gen_pb2_grpc.DeviceLifecycleSummaryServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.redirector.v1.services.gen_pb2_grpc.assignmentservice static method)": [[42, "arista.redirector.v1.services.gen_pb2_grpc.AssignmentService.SubscribeMeta", false]], "subscribemeta() (arista.redirector.v1.services.gen_pb2_grpc.assignmentserviceservicer method)": [[42, "arista.redirector.v1.services.gen_pb2_grpc.AssignmentServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.serviceaccount.v1.services.gen_pb2_grpc.accountconfigservice static method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.AccountConfigService.SubscribeMeta", false]], "subscribemeta() (arista.serviceaccount.v1.services.gen_pb2_grpc.accountconfigserviceservicer method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.AccountConfigServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.serviceaccount.v1.services.gen_pb2_grpc.accountservice static method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.AccountService.SubscribeMeta", false]], "subscribemeta() (arista.serviceaccount.v1.services.gen_pb2_grpc.accountserviceservicer method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.AccountServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.serviceaccount.v1.services.gen_pb2_grpc.tokenconfigservice static method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.TokenConfigService.SubscribeMeta", false]], "subscribemeta() (arista.serviceaccount.v1.services.gen_pb2_grpc.tokenconfigserviceservicer method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.TokenConfigServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.serviceaccount.v1.services.gen_pb2_grpc.tokenservice static method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.TokenService.SubscribeMeta", false]], "subscribemeta() (arista.serviceaccount.v1.services.gen_pb2_grpc.tokenserviceservicer method)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.TokenServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.studio.v1.services.gen_pb2_grpc.assignedtagsconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsConfigService.SubscribeMeta", false]], "subscribemeta() (arista.studio.v1.services.gen_pb2_grpc.assignedtagsconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsConfigServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.studio.v1.services.gen_pb2_grpc.assignedtagsservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsService.SubscribeMeta", false]], "subscribemeta() (arista.studio.v1.services.gen_pb2_grpc.assignedtagsserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.studio.v1.services.gen_pb2_grpc.autofillactionconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionConfigService.SubscribeMeta", false]], "subscribemeta() (arista.studio.v1.services.gen_pb2_grpc.autofillactionconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionConfigServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.studio.v1.services.gen_pb2_grpc.autofillactionservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionService.SubscribeMeta", false]], "subscribemeta() (arista.studio.v1.services.gen_pb2_grpc.autofillactionserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.AutofillActionServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.studio.v1.services.gen_pb2_grpc.inputsconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsConfigService.SubscribeMeta", false]], "subscribemeta() (arista.studio.v1.services.gen_pb2_grpc.inputsconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsConfigServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.studio.v1.services.gen_pb2_grpc.inputsservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsService.SubscribeMeta", false]], "subscribemeta() (arista.studio.v1.services.gen_pb2_grpc.inputsserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.InputsServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.studio.v1.services.gen_pb2_grpc.secretinputservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.SecretInputService.SubscribeMeta", false]], "subscribemeta() (arista.studio.v1.services.gen_pb2_grpc.secretinputserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.SecretInputServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.studio.v1.services.gen_pb2_grpc.studioconfigservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioConfigService.SubscribeMeta", false]], "subscribemeta() (arista.studio.v1.services.gen_pb2_grpc.studioconfigserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioConfigServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.studio.v1.services.gen_pb2_grpc.studioservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioService.SubscribeMeta", false]], "subscribemeta() (arista.studio.v1.services.gen_pb2_grpc.studioserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.studio.v1.services.gen_pb2_grpc.studiosummaryservice static method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioSummaryService.SubscribeMeta", false]], "subscribemeta() (arista.studio.v1.services.gen_pb2_grpc.studiosummaryserviceservicer method)": [[48, "arista.studio.v1.services.gen_pb2_grpc.StudioSummaryServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.tag.v2.services.gen_pb2_grpc.tagassignmentconfigservice static method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentConfigService.SubscribeMeta", false]], "subscribemeta() (arista.tag.v2.services.gen_pb2_grpc.tagassignmentconfigserviceservicer method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentConfigServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.tag.v2.services.gen_pb2_grpc.tagassignmentservice static method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentService.SubscribeMeta", false]], "subscribemeta() (arista.tag.v2.services.gen_pb2_grpc.tagassignmentserviceservicer method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.tag.v2.services.gen_pb2_grpc.tagconfigservice static method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagConfigService.SubscribeMeta", false]], "subscribemeta() (arista.tag.v2.services.gen_pb2_grpc.tagconfigserviceservicer method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagConfigServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.tag.v2.services.gen_pb2_grpc.tagservice static method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagService.SubscribeMeta", false]], "subscribemeta() (arista.tag.v2.services.gen_pb2_grpc.tagserviceservicer method)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.workspace.v1.services.gen_pb2_grpc.workspacebuilddetailsservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildDetailsService.SubscribeMeta", false]], "subscribemeta() (arista.workspace.v1.services.gen_pb2_grpc.workspacebuilddetailsserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildDetailsServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.workspace.v1.services.gen_pb2_grpc.workspacebuildservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildService.SubscribeMeta", false]], "subscribemeta() (arista.workspace.v1.services.gen_pb2_grpc.workspacebuildserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.workspace.v1.services.gen_pb2_grpc.workspaceconfigservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceConfigService.SubscribeMeta", false]], "subscribemeta() (arista.workspace.v1.services.gen_pb2_grpc.workspaceconfigserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceConfigServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.workspace.v1.services.gen_pb2_grpc.workspaceservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceService.SubscribeMeta", false]], "subscribemeta() (arista.workspace.v1.services.gen_pb2_grpc.workspaceserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceServiceServicer.SubscribeMeta", false]], "subscribemeta() (arista.workspace.v1.services.gen_pb2_grpc.workspacesyncconfigservice static method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceSyncConfigService.SubscribeMeta", false]], "subscribemeta() (arista.workspace.v1.services.gen_pb2_grpc.workspacesyncconfigserviceservicer method)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceSyncConfigServiceServicer.SubscribeMeta", false]], "summary (class in arista.configstatus.v1.configstatus_pb2)": [[14, "arista.configstatus.v1.configstatus_pb2.Summary", false]], "summary (class in arista.imagestatus.v1.imagestatus_pb2)": [[32, "arista.imagestatus.v1.imagestatus_pb2.Summary", false]], "summarybatchedstreamrequest (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.SummaryBatchedStreamRequest", false]], "summarybatchedstreamrequest (class in arista.imagestatus.v1.services.gen_pb2)": [[33, "arista.imagestatus.v1.services.gen_pb2.SummaryBatchedStreamRequest", false]], "summarybatchedstreamresponse (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.SummaryBatchedStreamResponse", false]], "summarybatchedstreamresponse (class in arista.imagestatus.v1.services.gen_pb2)": [[33, "arista.imagestatus.v1.services.gen_pb2.SummaryBatchedStreamResponse", false]], "summarykey (class in arista.configstatus.v1.configstatus_pb2)": [[14, "arista.configstatus.v1.configstatus_pb2.SummaryKey", false]], "summarykey (class in arista.imagestatus.v1.imagestatus_pb2)": [[32, "arista.imagestatus.v1.imagestatus_pb2.SummaryKey", false]], "summaryrequest (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.SummaryRequest", false]], "summaryrequest (class in arista.imagestatus.v1.services.gen_pb2)": [[33, "arista.imagestatus.v1.services.gen_pb2.SummaryRequest", false]], "summaryresponse (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.SummaryResponse", false]], "summaryresponse (class in arista.imagestatus.v1.services.gen_pb2)": [[33, "arista.imagestatus.v1.services.gen_pb2.SummaryResponse", false]], "summaryservice (class in arista.configstatus.v1.services.gen_pb2_grpc)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SummaryService", false]], "summaryservice (class in arista.imagestatus.v1.services.gen_pb2_grpc)": [[33, "arista.imagestatus.v1.services.gen_pb2_grpc.SummaryService", false]], "summaryserviceservicer (class in arista.configstatus.v1.services.gen_pb2_grpc)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SummaryServiceServicer", false]], "summaryserviceservicer (class in arista.imagestatus.v1.services.gen_pb2_grpc)": [[33, "arista.imagestatus.v1.services.gen_pb2_grpc.SummaryServiceServicer", false]], "summaryservicestub (class in arista.configstatus.v1.services.gen_pb2_grpc)": [[15, "arista.configstatus.v1.services.gen_pb2_grpc.SummaryServiceStub", false]], "summaryservicestub (class in arista.imagestatus.v1.services.gen_pb2_grpc)": [[33, "arista.imagestatus.v1.services.gen_pb2_grpc.SummaryServiceStub", false]], "summarysomerequest (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.SummarySomeRequest", false]], "summarysomerequest (class in arista.imagestatus.v1.services.gen_pb2)": [[33, "arista.imagestatus.v1.services.gen_pb2.SummarySomeRequest", false]], "summarysomeresponse (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.SummarySomeResponse", false]], "summarysomeresponse (class in arista.imagestatus.v1.services.gen_pb2)": [[33, "arista.imagestatus.v1.services.gen_pb2.SummarySomeResponse", false]], "summarystreamrequest (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.SummaryStreamRequest", false]], "summarystreamrequest (class in arista.imagestatus.v1.services.gen_pb2)": [[33, "arista.imagestatus.v1.services.gen_pb2.SummaryStreamRequest", false]], "summarystreamresponse (class in arista.configstatus.v1.services.gen_pb2)": [[15, "arista.configstatus.v1.services.gen_pb2.SummaryStreamResponse", false]], "summarystreamresponse (class in arista.imagestatus.v1.services.gen_pb2)": [[33, "arista.imagestatus.v1.services.gen_pb2.SummaryStreamResponse", false]], "syslogendpoint (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.SyslogEndpoint", false]], "syslogendpoints (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.SyslogEndpoints", false]], "syslogsettings (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.SyslogSettings", false]], "tag (class in arista.tag.v2.tag_pb2)": [[51, "arista.tag.v2.tag_pb2.Tag", false]], "tag (class in cloudvision.cvlib.tags)": [[65, "cloudvision.cvlib.tags.Tag", false]], "tagassignment (class in arista.tag.v2.tag_pb2)": [[51, "arista.tag.v2.tag_pb2.TagAssignment", false]], "tagassignmentbatchedstreamrequest (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentBatchedStreamRequest", false]], "tagassignmentbatchedstreamresponse (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentBatchedStreamResponse", false]], "tagassignmentconfig (class in arista.tag.v2.tag_pb2)": [[51, "arista.tag.v2.tag_pb2.TagAssignmentConfig", false]], "tagassignmentconfigbatchedstreamrequest (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentConfigBatchedStreamRequest", false]], "tagassignmentconfigbatchedstreamresponse (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentConfigBatchedStreamResponse", false]], "tagassignmentconfigdeleteallrequest (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentConfigDeleteAllRequest", false]], "tagassignmentconfigdeleteallresponse (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentConfigDeleteAllResponse", false]], "tagassignmentconfigdeleterequest (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentConfigDeleteRequest", false]], "tagassignmentconfigdeleteresponse (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentConfigDeleteResponse", false]], "tagassignmentconfigdeletesomerequest (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentConfigDeleteSomeRequest", false]], "tagassignmentconfigdeletesomeresponse (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentConfigDeleteSomeResponse", false]], "tagassignmentconfigrequest (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentConfigRequest", false]], "tagassignmentconfigresponse (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentConfigResponse", false]], "tagassignmentconfigservice (class in arista.tag.v2.services.gen_pb2_grpc)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentConfigService", false]], "tagassignmentconfigserviceservicer (class in arista.tag.v2.services.gen_pb2_grpc)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentConfigServiceServicer", false]], "tagassignmentconfigservicestub (class in arista.tag.v2.services.gen_pb2_grpc)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentConfigServiceStub", false]], "tagassignmentconfigsetrequest (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentConfigSetRequest", false]], "tagassignmentconfigsetresponse (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentConfigSetResponse", false]], "tagassignmentconfigsetsomerequest (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentConfigSetSomeRequest", false]], "tagassignmentconfigsetsomeresponse (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentConfigSetSomeResponse", false]], "tagassignmentconfigsomerequest (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentConfigSomeRequest", false]], "tagassignmentconfigsomeresponse (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentConfigSomeResponse", false]], "tagassignmentconfigstreamrequest (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentConfigStreamRequest", false]], "tagassignmentconfigstreamresponse (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentConfigStreamResponse", false]], "tagassignmentkey (class in arista.tag.v2.tag_pb2)": [[51, "arista.tag.v2.tag_pb2.TagAssignmentKey", false]], "tagassignmentrequest (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentRequest", false]], "tagassignmentresponse (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentResponse", false]], "tagassignmentservice (class in arista.tag.v2.services.gen_pb2_grpc)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentService", false]], "tagassignmentserviceservicer (class in arista.tag.v2.services.gen_pb2_grpc)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentServiceServicer", false]], "tagassignmentservicestub (class in arista.tag.v2.services.gen_pb2_grpc)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentServiceStub", false]], "tagassignmentsomerequest (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentSomeRequest", false]], "tagassignmentsomeresponse (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentSomeResponse", false]], "tagassignmentstreamrequest (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentStreamRequest", false]], "tagassignmentstreamresponse (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagAssignmentStreamResponse", false]], "tagbatchedstreamrequest (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagBatchedStreamRequest", false]], "tagbatchedstreamresponse (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagBatchedStreamResponse", false]], "tagconfig (class in arista.tag.v2.tag_pb2)": [[51, "arista.tag.v2.tag_pb2.TagConfig", false]], "tagconfigbatchedstreamrequest (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagConfigBatchedStreamRequest", false]], "tagconfigbatchedstreamresponse (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagConfigBatchedStreamResponse", false]], "tagconfigdeleteallrequest (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagConfigDeleteAllRequest", false]], "tagconfigdeleteallresponse (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagConfigDeleteAllResponse", false]], "tagconfigdeleterequest (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagConfigDeleteRequest", false]], "tagconfigdeleteresponse (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagConfigDeleteResponse", false]], "tagconfigdeletesomerequest (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagConfigDeleteSomeRequest", false]], "tagconfigdeletesomeresponse (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagConfigDeleteSomeResponse", false]], "tagconfigrequest (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagConfigRequest", false]], "tagconfigresponse (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagConfigResponse", false]], "tagconfigservice (class in arista.tag.v2.services.gen_pb2_grpc)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagConfigService", false]], "tagconfigserviceservicer (class in arista.tag.v2.services.gen_pb2_grpc)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagConfigServiceServicer", false]], "tagconfigservicestub (class in arista.tag.v2.services.gen_pb2_grpc)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagConfigServiceStub", false]], "tagconfigsetrequest (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagConfigSetRequest", false]], "tagconfigsetresponse (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagConfigSetResponse", false]], "tagconfigsetsomerequest (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagConfigSetSomeRequest", false]], "tagconfigsetsomeresponse (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagConfigSetSomeResponse", false]], "tagconfigsomerequest (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagConfigSomeRequest", false]], "tagconfigsomeresponse (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagConfigSomeResponse", false]], "tagconfigstreamrequest (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagConfigStreamRequest", false]], "tagconfigstreamresponse (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagConfigStreamResponse", false]], "tagerrorexception": [[65, "cloudvision.cvlib.exceptions.TagErrorException", false]], "taginvalidtypeexception": [[65, "cloudvision.cvlib.exceptions.TagInvalidTypeException", false]], "taginvalidvaluesexception": [[65, "cloudvision.cvlib.exceptions.TagInvalidValuesException", false]], "tagkey (class in arista.tag.v2.tag_pb2)": [[51, "arista.tag.v2.tag_pb2.TagKey", false]], "tagmatcherinputfieldprops (class in arista.studio.v1.studio_pb2)": [[47, "arista.studio.v1.studio_pb2.TagMatcherInputFieldProps", false]], "tagmissingexception": [[65, "cloudvision.cvlib.exceptions.TagMissingException", false]], "tagoperationexception": [[65, "cloudvision.cvlib.exceptions.TagOperationException", false]], "tagrequest (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagRequest", false]], "tagresponse (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagResponse", false]], "tags (class in cloudvision.cvlib.tags)": [[65, "cloudvision.cvlib.tags.Tags", false]], "tagservice (class in arista.tag.v2.services.gen_pb2_grpc)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagService", false]], "tagserviceservicer (class in arista.tag.v2.services.gen_pb2_grpc)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagServiceServicer", false]], "tagservicestub (class in arista.tag.v2.services.gen_pb2_grpc)": [[52, "arista.tag.v2.services.gen_pb2_grpc.TagServiceStub", false]], "tagsomerequest (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagSomeRequest", false]], "tagsomeresponse (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagSomeResponse", false]], "tagstreamrequest (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagStreamRequest", false]], "tagstreamresponse (class in arista.tag.v2.services.gen_pb2)": [[52, "arista.tag.v2.services.gen_pb2.TagStreamResponse", false]], "tagtoomanyvaluesexception": [[65, "cloudvision.cvlib.exceptions.TagTooManyValuesException", false]], "template (class in arista.studio.v1.studio_pb2)": [[47, "arista.studio.v1.studio_pb2.Template", false]], "templateconfig (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.TemplateConfig", false]], "templateconfigbatchedstreamrequest (class in arista.alert.v1.services.gen_pb2)": [[3, "arista.alert.v1.services.gen_pb2.TemplateConfigBatchedStreamRequest", false]], "templateconfigbatchedstreamresponse (class in arista.alert.v1.services.gen_pb2)": [[3, "arista.alert.v1.services.gen_pb2.TemplateConfigBatchedStreamResponse", false]], "templateconfigdeleteallrequest (class in arista.alert.v1.services.gen_pb2)": [[3, "arista.alert.v1.services.gen_pb2.TemplateConfigDeleteAllRequest", false]], "templateconfigdeleteallresponse (class in arista.alert.v1.services.gen_pb2)": [[3, "arista.alert.v1.services.gen_pb2.TemplateConfigDeleteAllResponse", false]], "templateconfigdeleterequest (class in arista.alert.v1.services.gen_pb2)": [[3, "arista.alert.v1.services.gen_pb2.TemplateConfigDeleteRequest", false]], "templateconfigdeleteresponse (class in arista.alert.v1.services.gen_pb2)": [[3, "arista.alert.v1.services.gen_pb2.TemplateConfigDeleteResponse", false]], "templateconfigdeletesomerequest (class in arista.alert.v1.services.gen_pb2)": [[3, "arista.alert.v1.services.gen_pb2.TemplateConfigDeleteSomeRequest", false]], "templateconfigdeletesomeresponse (class in arista.alert.v1.services.gen_pb2)": [[3, "arista.alert.v1.services.gen_pb2.TemplateConfigDeleteSomeResponse", false]], "templateconfigrequest (class in arista.alert.v1.services.gen_pb2)": [[3, "arista.alert.v1.services.gen_pb2.TemplateConfigRequest", false]], "templateconfigresponse (class in arista.alert.v1.services.gen_pb2)": [[3, "arista.alert.v1.services.gen_pb2.TemplateConfigResponse", false]], "templateconfigservice (class in arista.alert.v1.services.gen_pb2_grpc)": [[3, "arista.alert.v1.services.gen_pb2_grpc.TemplateConfigService", false]], "templateconfigserviceservicer (class in arista.alert.v1.services.gen_pb2_grpc)": [[3, "arista.alert.v1.services.gen_pb2_grpc.TemplateConfigServiceServicer", false]], "templateconfigservicestub (class in arista.alert.v1.services.gen_pb2_grpc)": [[3, "arista.alert.v1.services.gen_pb2_grpc.TemplateConfigServiceStub", false]], "templateconfigsetrequest (class in arista.alert.v1.services.gen_pb2)": [[3, "arista.alert.v1.services.gen_pb2.TemplateConfigSetRequest", false]], "templateconfigsetresponse (class in arista.alert.v1.services.gen_pb2)": [[3, "arista.alert.v1.services.gen_pb2.TemplateConfigSetResponse", false]], "templateconfigsetsomerequest (class in arista.alert.v1.services.gen_pb2)": [[3, "arista.alert.v1.services.gen_pb2.TemplateConfigSetSomeRequest", false]], "templateconfigsetsomeresponse (class in arista.alert.v1.services.gen_pb2)": [[3, "arista.alert.v1.services.gen_pb2.TemplateConfigSetSomeResponse", false]], "templateconfigsomerequest (class in arista.alert.v1.services.gen_pb2)": [[3, "arista.alert.v1.services.gen_pb2.TemplateConfigSomeRequest", false]], "templateconfigsomeresponse (class in arista.alert.v1.services.gen_pb2)": [[3, "arista.alert.v1.services.gen_pb2.TemplateConfigSomeResponse", false]], "templateconfigstreamrequest (class in arista.alert.v1.services.gen_pb2)": [[3, "arista.alert.v1.services.gen_pb2.TemplateConfigStreamRequest", false]], "templateconfigstreamresponse (class in arista.alert.v1.services.gen_pb2)": [[3, "arista.alert.v1.services.gen_pb2.TemplateConfigStreamResponse", false]], "templateerror (class in arista.workspace.v1.workspace_pb2)": [[55, "arista.workspace.v1.workspace_pb2.TemplateError", false]], "templateerrors (class in arista.workspace.v1.workspace_pb2)": [[55, "arista.workspace.v1.workspace_pb2.TemplateErrors", false]], "templateexception": [[65, "cloudvision.cvlib.exceptions.TemplateException", false]], "templatekey (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.TemplateKey", false]], "templatetypenotsupported": [[65, "cloudvision.cvlib.exceptions.TemplateTypeNotSupported", false]], "terminattrdiffsbysup (class in arista.imagestatus.v1.imagestatus_pb2)": [[32, "arista.imagestatus.v1.imagestatus_pb2.TerminAttrDiffsBySup", false]], "terminattrdiffsbysup.valuesentry (class in arista.imagestatus.v1.imagestatus_pb2)": [[32, "arista.imagestatus.v1.imagestatus_pb2.TerminAttrDiffsBySup.ValuesEntry", false]], "timebounds (class in arista.time.time_pb2)": [[53, "arista.time.time_pb2.TimeBounds", false]], "timeoutexpiry": [[65, "cloudvision.cvlib.exceptions.TimeoutExpiry", false]], "timestampflag (class in arista.changecontrol.v1.changecontrol_pb2)": [[8, "arista.changecontrol.v1.changecontrol_pb2.TimestampFlag", false]], "timestampflagconfig (class in arista.changecontrol.v1.changecontrol_pb2)": [[8, "arista.changecontrol.v1.changecontrol_pb2.TimestampFlagConfig", false]], "to_pbts() (in module cloudvision.connector.grpc_client.grpcclient)": [[63, "cloudvision.Connector.grpc_client.grpcClient.to_pbts", false]], "token (class in arista.serviceaccount.v1.serviceaccount_pb2)": [[44, "arista.serviceaccount.v1.serviceaccount_pb2.Token", false]], "tokenconfig (class in arista.serviceaccount.v1.serviceaccount_pb2)": [[44, "arista.serviceaccount.v1.serviceaccount_pb2.TokenConfig", false]], "tokenconfigdeleteallrequest (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.TokenConfigDeleteAllRequest", false]], "tokenconfigdeleteallresponse (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.TokenConfigDeleteAllResponse", false]], "tokenconfigdeleterequest (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.TokenConfigDeleteRequest", false]], "tokenconfigdeleteresponse (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.TokenConfigDeleteResponse", false]], "tokenconfigdeletesomerequest (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.TokenConfigDeleteSomeRequest", false]], "tokenconfigdeletesomeresponse (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.TokenConfigDeleteSomeResponse", false]], "tokenconfigrequest (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.TokenConfigRequest", false]], "tokenconfigresponse (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.TokenConfigResponse", false]], "tokenconfigservice (class in arista.serviceaccount.v1.services.gen_pb2_grpc)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.TokenConfigService", false]], "tokenconfigserviceservicer (class in arista.serviceaccount.v1.services.gen_pb2_grpc)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.TokenConfigServiceServicer", false]], "tokenconfigservicestub (class in arista.serviceaccount.v1.services.gen_pb2_grpc)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.TokenConfigServiceStub", false]], "tokenconfigsetrequest (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.TokenConfigSetRequest", false]], "tokenconfigsetresponse (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.TokenConfigSetResponse", false]], "tokenconfigsetsomerequest (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.TokenConfigSetSomeRequest", false]], "tokenconfigsetsomeresponse (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.TokenConfigSetSomeResponse", false]], "tokenconfigsomerequest (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.TokenConfigSomeRequest", false]], "tokenconfigsomeresponse (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.TokenConfigSomeResponse", false]], "tokenconfigstreamrequest (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.TokenConfigStreamRequest", false]], "tokenconfigstreamresponse (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.TokenConfigStreamResponse", false]], "tokenkey (class in arista.serviceaccount.v1.serviceaccount_pb2)": [[44, "arista.serviceaccount.v1.serviceaccount_pb2.TokenKey", false]], "tokenrequest (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.TokenRequest", false]], "tokenresponse (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.TokenResponse", false]], "tokenservice (class in arista.serviceaccount.v1.services.gen_pb2_grpc)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.TokenService", false]], "tokenserviceservicer (class in arista.serviceaccount.v1.services.gen_pb2_grpc)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.TokenServiceServicer", false]], "tokenservicestub (class in arista.serviceaccount.v1.services.gen_pb2_grpc)": [[45, "arista.serviceaccount.v1.services.gen_pb2_grpc.TokenServiceStub", false]], "tokensomerequest (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.TokenSomeRequest", false]], "tokensomeresponse (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.TokenSomeResponse", false]], "tokenstreamrequest (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.TokenStreamRequest", false]], "tokenstreamresponse (class in arista.serviceaccount.v1.services.gen_pb2)": [[45, "arista.serviceaccount.v1.services.gen_pb2.TokenStreamResponse", false]], "topology (class in cloudvision.cvlib.topology)": [[65, "cloudvision.cvlib.topology.Topology", false]], "trace (cloudvision.cvlib.context.logginglevel attribute)": [[65, "cloudvision.cvlib.context.LoggingLevel.Trace", false]], "trace() (cloudvision.cvlib.context.context method)": [[65, "cloudvision.cvlib.context.Context.trace", false]], "unknown (cloudvision.cvlib.action.actioncontext attribute)": [[65, "cloudvision.cvlib.action.ActionContext.Unknown", false]], "user (class in cloudvision.cvlib.user)": [[65, "cloudvision.cvlib.user.User", false]], "usereventcreationconfig (class in arista.event.v1.event_pb2)": [[26, "arista.event.v1.event_pb2.UserEventCreationConfig", false]], "usereventcreationconfigdeleteallrequest (class in arista.event.v1.services.gen_pb2)": [[27, "arista.event.v1.services.gen_pb2.UserEventCreationConfigDeleteAllRequest", false]], "usereventcreationconfigdeleteallresponse (class in arista.event.v1.services.gen_pb2)": [[27, "arista.event.v1.services.gen_pb2.UserEventCreationConfigDeleteAllResponse", false]], "usereventcreationconfigdeleterequest (class in arista.event.v1.services.gen_pb2)": [[27, "arista.event.v1.services.gen_pb2.UserEventCreationConfigDeleteRequest", false]], "usereventcreationconfigdeleteresponse (class in arista.event.v1.services.gen_pb2)": [[27, "arista.event.v1.services.gen_pb2.UserEventCreationConfigDeleteResponse", false]], "usereventcreationconfigdeletesomerequest (class in arista.event.v1.services.gen_pb2)": [[27, "arista.event.v1.services.gen_pb2.UserEventCreationConfigDeleteSomeRequest", false]], "usereventcreationconfigdeletesomeresponse (class in arista.event.v1.services.gen_pb2)": [[27, "arista.event.v1.services.gen_pb2.UserEventCreationConfigDeleteSomeResponse", false]], "usereventcreationconfigrequest (class in arista.event.v1.services.gen_pb2)": [[27, "arista.event.v1.services.gen_pb2.UserEventCreationConfigRequest", false]], "usereventcreationconfigresponse (class in arista.event.v1.services.gen_pb2)": [[27, "arista.event.v1.services.gen_pb2.UserEventCreationConfigResponse", false]], "usereventcreationconfigservice (class in arista.event.v1.services.gen_pb2_grpc)": [[27, "arista.event.v1.services.gen_pb2_grpc.UserEventCreationConfigService", false]], "usereventcreationconfigserviceservicer (class in arista.event.v1.services.gen_pb2_grpc)": [[27, "arista.event.v1.services.gen_pb2_grpc.UserEventCreationConfigServiceServicer", false]], "usereventcreationconfigservicestub (class in arista.event.v1.services.gen_pb2_grpc)": [[27, "arista.event.v1.services.gen_pb2_grpc.UserEventCreationConfigServiceStub", false]], "usereventcreationconfigsetrequest (class in arista.event.v1.services.gen_pb2)": [[27, "arista.event.v1.services.gen_pb2.UserEventCreationConfigSetRequest", false]], "usereventcreationconfigsetresponse (class in arista.event.v1.services.gen_pb2)": [[27, "arista.event.v1.services.gen_pb2.UserEventCreationConfigSetResponse", false]], "usereventcreationconfigsetsomerequest (class in arista.event.v1.services.gen_pb2)": [[27, "arista.event.v1.services.gen_pb2.UserEventCreationConfigSetSomeRequest", false]], "usereventcreationconfigsetsomeresponse (class in arista.event.v1.services.gen_pb2)": [[27, "arista.event.v1.services.gen_pb2.UserEventCreationConfigSetSomeResponse", false]], "usereventcreationconfigsomerequest (class in arista.event.v1.services.gen_pb2)": [[27, "arista.event.v1.services.gen_pb2.UserEventCreationConfigSomeRequest", false]], "usereventcreationconfigsomeresponse (class in arista.event.v1.services.gen_pb2)": [[27, "arista.event.v1.services.gen_pb2.UserEventCreationConfigSomeResponse", false]], "usereventcreationconfigstreamrequest (class in arista.event.v1.services.gen_pb2)": [[27, "arista.event.v1.services.gen_pb2.UserEventCreationConfigStreamRequest", false]], "usereventcreationconfigstreamresponse (class in arista.event.v1.services.gen_pb2)": [[27, "arista.event.v1.services.gen_pb2.UserEventCreationConfigStreamResponse", false]], "usereventcreationkey (class in arista.event.v1.event_pb2)": [[26, "arista.event.v1.event_pb2.UserEventCreationKey", false]], "uuidkey (class in arista.inventory.v1.inventory_pb2)": [[35, "arista.inventory.v1.inventory_pb2.UUIDKey", false]], "value (cloudvision.cvlib.tags.tag property)": [[65, "cloudvision.cvlib.tags.Tag.value", false]], "victoropsendpoint (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.VictorOpsEndpoint", false]], "victoropsendpoints (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.VictorOpsEndpoints", false]], "victoropssettings (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.VictoropsSettings", false]], "warn (cloudvision.cvlib.context.logginglevel attribute)": [[65, "cloudvision.cvlib.context.LoggingLevel.Warn", false]], "warning() (cloudvision.cvlib.context.context method)": [[65, "cloudvision.cvlib.context.Context.warning", false]], "webhookendpoint (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.WebhookEndpoint", false]], "webhookendpoints (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.WebhookEndpoints", false]], "webhooksettings (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.WebhookSettings", false]], "widget (class in arista.dashboard.v1.dashboard_pb2)": [[20, "arista.dashboard.v1.dashboard_pb2.Widget", false]], "widgets (class in arista.dashboard.v1.dashboard_pb2)": [[20, "arista.dashboard.v1.dashboard_pb2.Widgets", false]], "widgetstyles (class in arista.dashboard.v1.dashboard_pb2)": [[20, "arista.dashboard.v1.dashboard_pb2.WidgetStyles", false]], "wildcard (class in cloudvision.connector.codec)": [[60, "cloudvision.Connector.codec.Wildcard", false]], "wildcard (class in cloudvision.connector.codec.custom_types)": [[60, "cloudvision.Connector.codec.custom_types.Wildcard", false]], "workspace (class in arista.workspace.v1.workspace_pb2)": [[55, "arista.workspace.v1.workspace_pb2.Workspace", false]], "workspace (class in cloudvision.cvlib.workspace)": [[65, "cloudvision.cvlib.workspace.Workspace", false]], "workspacebatchedstreamrequest (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceBatchedStreamRequest", false]], "workspacebatchedstreamresponse (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceBatchedStreamResponse", false]], "workspacebuild (class in arista.workspace.v1.workspace_pb2)": [[55, "arista.workspace.v1.workspace_pb2.WorkspaceBuild", false]], "workspacebuildbatchedstreamrequest (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceBuildBatchedStreamRequest", false]], "workspacebuildbatchedstreamresponse (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceBuildBatchedStreamResponse", false]], "workspacebuilddetails (class in arista.workspace.v1.workspace_pb2)": [[55, "arista.workspace.v1.workspace_pb2.WorkspaceBuildDetails", false]], "workspacebuilddetailsbatchedstreamrequest (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceBuildDetailsBatchedStreamRequest", false]], "workspacebuilddetailsbatchedstreamresponse (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceBuildDetailsBatchedStreamResponse", false]], "workspacebuilddetailskey (class in arista.workspace.v1.workspace_pb2)": [[55, "arista.workspace.v1.workspace_pb2.WorkspaceBuildDetailsKey", false]], "workspacebuilddetailsrequest (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceBuildDetailsRequest", false]], "workspacebuilddetailsresponse (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceBuildDetailsResponse", false]], "workspacebuilddetailsservice (class in arista.workspace.v1.services.gen_pb2_grpc)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildDetailsService", false]], "workspacebuilddetailsserviceservicer (class in arista.workspace.v1.services.gen_pb2_grpc)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildDetailsServiceServicer", false]], "workspacebuilddetailsservicestub (class in arista.workspace.v1.services.gen_pb2_grpc)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildDetailsServiceStub", false]], "workspacebuilddetailssomerequest (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceBuildDetailsSomeRequest", false]], "workspacebuilddetailssomeresponse (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceBuildDetailsSomeResponse", false]], "workspacebuilddetailsstreamrequest (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceBuildDetailsStreamRequest", false]], "workspacebuilddetailsstreamresponse (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceBuildDetailsStreamResponse", false]], "workspacebuildkey (class in arista.workspace.v1.workspace_pb2)": [[55, "arista.workspace.v1.workspace_pb2.WorkspaceBuildKey", false]], "workspacebuildrequest (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceBuildRequest", false]], "workspacebuildresponse (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceBuildResponse", false]], "workspacebuildservice (class in arista.workspace.v1.services.gen_pb2_grpc)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildService", false]], "workspacebuildserviceservicer (class in arista.workspace.v1.services.gen_pb2_grpc)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildServiceServicer", false]], "workspacebuildservicestub (class in arista.workspace.v1.services.gen_pb2_grpc)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildServiceStub", false]], "workspacebuildsomerequest (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceBuildSomeRequest", false]], "workspacebuildsomeresponse (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceBuildSomeResponse", false]], "workspacebuildstreamrequest (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceBuildStreamRequest", false]], "workspacebuildstreamresponse (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceBuildStreamResponse", false]], "workspaceconfig (class in arista.workspace.v1.workspace_pb2)": [[55, "arista.workspace.v1.workspace_pb2.WorkspaceConfig", false]], "workspaceconfigbatchedstreamrequest (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceConfigBatchedStreamRequest", false]], "workspaceconfigbatchedstreamresponse (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceConfigBatchedStreamResponse", false]], "workspaceconfigdeleteallrequest (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceConfigDeleteAllRequest", false]], "workspaceconfigdeleteallresponse (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceConfigDeleteAllResponse", false]], "workspaceconfigdeleterequest (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceConfigDeleteRequest", false]], "workspaceconfigdeleteresponse (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceConfigDeleteResponse", false]], "workspaceconfigdeletesomerequest (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceConfigDeleteSomeRequest", false]], "workspaceconfigdeletesomeresponse (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceConfigDeleteSomeResponse", false]], "workspaceconfigrequest (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceConfigRequest", false]], "workspaceconfigresponse (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceConfigResponse", false]], "workspaceconfigservice (class in arista.workspace.v1.services.gen_pb2_grpc)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceConfigService", false]], "workspaceconfigserviceservicer (class in arista.workspace.v1.services.gen_pb2_grpc)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceConfigServiceServicer", false]], "workspaceconfigservicestub (class in arista.workspace.v1.services.gen_pb2_grpc)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceConfigServiceStub", false]], "workspaceconfigsetrequest (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceConfigSetRequest", false]], "workspaceconfigsetresponse (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceConfigSetResponse", false]], "workspaceconfigsetsomerequest (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceConfigSetSomeRequest", false]], "workspaceconfigsetsomeresponse (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceConfigSetSomeResponse", false]], "workspaceconfigsomerequest (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceConfigSomeRequest", false]], "workspaceconfigsomeresponse (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceConfigSomeResponse", false]], "workspaceconfigstreamrequest (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceConfigStreamRequest", false]], "workspaceconfigstreamresponse (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceConfigStreamResponse", false]], "workspacekey (class in arista.workspace.v1.workspace_pb2)": [[55, "arista.workspace.v1.workspace_pb2.WorkspaceKey", false]], "workspacerequest (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceRequest", false]], "workspaceresponse (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceResponse", false]], "workspaceservice (class in arista.workspace.v1.services.gen_pb2_grpc)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceService", false]], "workspaceserviceservicer (class in arista.workspace.v1.services.gen_pb2_grpc)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceServiceServicer", false]], "workspaceservicestub (class in arista.workspace.v1.services.gen_pb2_grpc)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceServiceStub", false]], "workspacesomerequest (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceSomeRequest", false]], "workspacesomeresponse (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceSomeResponse", false]], "workspacestreamrequest (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceStreamRequest", false]], "workspacestreamresponse (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceStreamResponse", false]], "workspacesyncconfig (class in arista.workspace.v1.workspace_pb2)": [[55, "arista.workspace.v1.workspace_pb2.WorkspaceSyncConfig", false]], "workspacesyncconfigbatchedstreamrequest (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigBatchedStreamRequest", false]], "workspacesyncconfigbatchedstreamresponse (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigBatchedStreamResponse", false]], "workspacesyncconfigdeleteallrequest (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigDeleteAllRequest", false]], "workspacesyncconfigdeleteallresponse (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigDeleteAllResponse", false]], "workspacesyncconfigdeleterequest (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigDeleteRequest", false]], "workspacesyncconfigdeleteresponse (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigDeleteResponse", false]], "workspacesyncconfigdeletesomerequest (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigDeleteSomeRequest", false]], "workspacesyncconfigdeletesomeresponse (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigDeleteSomeResponse", false]], "workspacesyncconfigrequest (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigRequest", false]], "workspacesyncconfigresponse (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigResponse", false]], "workspacesyncconfigservice (class in arista.workspace.v1.services.gen_pb2_grpc)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceSyncConfigService", false]], "workspacesyncconfigserviceservicer (class in arista.workspace.v1.services.gen_pb2_grpc)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceSyncConfigServiceServicer", false]], "workspacesyncconfigservicestub (class in arista.workspace.v1.services.gen_pb2_grpc)": [[56, "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceSyncConfigServiceStub", false]], "workspacesyncconfigsetrequest (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigSetRequest", false]], "workspacesyncconfigsetresponse (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigSetResponse", false]], "workspacesyncconfigsetsomerequest (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigSetSomeRequest", false]], "workspacesyncconfigsetsomeresponse (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigSetSomeResponse", false]], "workspacesyncconfigsomerequest (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigSomeRequest", false]], "workspacesyncconfigsomeresponse (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigSomeResponse", false]], "workspacesyncconfigstreamrequest (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigStreamRequest", false]], "workspacesyncconfigstreamresponse (class in arista.workspace.v1.services.gen_pb2)": [[56, "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigStreamResponse", false]], "workspacesynckey (class in arista.workspace.v1.workspace_pb2)": [[55, "arista.workspace.v1.workspace_pb2.WorkspaceSyncKey", false]], "zoomendpoint (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.ZoomEndpoint", false]], "zoomendpoints (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.ZoomEndpoints", false]], "zoomsettings (class in arista.alert.v1.alert_pb2)": [[2, "arista.alert.v1.alert_pb2.ZoomSettings", false]]}, "objects": {"": [[0, 0, 0, "-", "arista"], [57, 0, 0, "-", "cloudvision"], [66, 0, 0, "-", "fmp"]], "arista": [[1, 0, 0, "-", "alert"], [4, 0, 0, "-", "bugexposure"], [7, 0, 0, "-", "changecontrol"], [10, 0, 0, "-", "configlet"], [13, 0, 0, "-", "configstatus"], [16, 0, 0, "-", "connectivitymonitor"], [19, 0, 0, "-", "dashboard"], [22, 0, 0, "-", "endpointlocation"], [25, 0, 0, "-", "event"], [28, 0, 0, "-", "identityprovider"], [31, 0, 0, "-", "imagestatus"], [34, 0, 0, "-", "inventory"], [37, 0, 0, "-", "lifecycle"], [40, 0, 0, "-", "redirector"], [43, 0, 0, "-", "serviceaccount"], [46, 0, 0, "-", "studio"], [49, 0, 0, "-", "subscriptions"], [50, 0, 0, "-", "tag"], [53, 0, 0, "-", "time"], [54, 0, 0, "-", "workspace"]], "arista.alert": [[2, 0, 0, "-", "v1"]], "arista.alert.v1": [[2, 0, 0, "-", "alert_pb2"], [2, 0, 0, "-", "alert_pb2_grpc"], [3, 0, 0, "-", "services"]], "arista.alert.v1.alert_pb2": [[2, 1, 1, "", "Alert"], [2, 1, 1, "", "AlertConfig"], [2, 1, 1, "", "AzureOAuth"], [2, 1, 1, "", "BroadcastGroup"], [2, 1, 1, "", "BroadcastGroups"], [2, 1, 1, "", "ConfigError"], [2, 1, 1, "", "ConfigErrors"], [2, 1, 1, "", "CueData"], [2, 1, 1, "", "CueSNMPAuth"], [2, 1, 1, "", "CueSNMPEndpoint"], [2, 1, 1, "", "CueSNMPSettings"], [2, 1, 1, "", "CueSendgridEndpoint"], [2, 1, 1, "", "CueSendgridEndpoints"], [2, 1, 1, "", "CueSendgridSettings"], [2, 1, 1, "", "CueSnmpEndpoints"], [2, 1, 1, "", "CueSyslogEndpoint"], [2, 1, 1, "", "CueSyslogEndpoints"], [2, 1, 1, "", "CueSyslogSettings"], [2, 1, 1, "", "DefaultTemplate"], [2, 1, 1, "", "EmailEndpoint"], [2, 1, 1, "", "EmailEndpoints"], [2, 1, 1, "", "EmailSettings"], [2, 1, 1, "", "EndpointError"], [2, 1, 1, "", "EndpointErrors"], [2, 1, 1, "", "EventList"], [2, 1, 1, "", "GoogleChatEndpoint"], [2, 1, 1, "", "GoogleChatEndpoints"], [2, 1, 1, "", "GoogleChatSettings"], [2, 1, 1, "", "HeaderValues"], [2, 1, 1, "", "HttpHeaders"], [2, 1, 1, "", "HttpSettings"], [2, 1, 1, "", "InhibitionSettings"], [2, 1, 1, "", "Matches"], [2, 1, 1, "", "MsTeamsEndpoint"], [2, 1, 1, "", "MsTeamsEndpoints"], [2, 1, 1, "", "MsTeamsSettings"], [2, 1, 1, "", "OpsgenieEndpoint"], [2, 1, 1, "", "OpsgenieEndpoints"], [2, 1, 1, "", "OpsgenieSettings"], [2, 1, 1, "", "PagerdutyEndpoint"], [2, 1, 1, "", "PagerdutyEndpoints"], [2, 1, 1, "", "PagerdutySettings"], [2, 1, 1, "", "Priorities"], [2, 1, 1, "", "PushoverEndpoint"], [2, 1, 1, "", "PushoverEndpoints"], [2, 1, 1, "", "Rule"], [2, 1, 1, "", "Rules"], [2, 1, 1, "", "SNMPAuth"], [2, 1, 1, "", "SNMPEndpoint"], [2, 1, 1, "", "SNMPEndpoints"], [2, 1, 1, "", "SNMPSettings"], [2, 1, 1, "", "SendgridEndpoint"], [2, 1, 1, "", "SendgridEndpoints"], [2, 1, 1, "", "SendgridSettings"], [2, 1, 1, "", "Settings"], [2, 1, 1, "", "SlackEndpoint"], [2, 1, 1, "", "SlackEndpoints"], [2, 1, 1, "", "SlackSettings"], [2, 1, 1, "", "SyslogEndpoint"], [2, 1, 1, "", "SyslogEndpoints"], [2, 1, 1, "", "SyslogSettings"], [2, 1, 1, "", "TemplateConfig"], [2, 1, 1, "", "TemplateKey"], [2, 1, 1, "", "VictorOpsEndpoint"], [2, 1, 1, "", "VictorOpsEndpoints"], [2, 1, 1, "", "VictoropsSettings"], [2, 1, 1, "", "WebhookEndpoint"], [2, 1, 1, "", "WebhookEndpoints"], [2, 1, 1, "", "WebhookSettings"], [2, 1, 1, "", "ZoomEndpoint"], [2, 1, 1, "", "ZoomEndpoints"], [2, 1, 1, "", "ZoomSettings"]], "arista.alert.v1.alert_pb2.Alert": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.AlertConfig": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.AzureOAuth": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.BroadcastGroup": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.BroadcastGroups": [[2, 2, 1, "", "DESCRIPTOR"], [2, 1, 1, "", "ValuesEntry"]], "arista.alert.v1.alert_pb2.BroadcastGroups.ValuesEntry": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.ConfigError": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.ConfigErrors": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.CueData": [[2, 2, 1, "", "DESCRIPTOR"], [2, 1, 1, "", "ValuesEntry"]], "arista.alert.v1.alert_pb2.CueData.ValuesEntry": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.CueSNMPAuth": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.CueSNMPEndpoint": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.CueSNMPSettings": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.CueSendgridEndpoint": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.CueSendgridEndpoints": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.CueSendgridSettings": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.CueSnmpEndpoints": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.CueSyslogEndpoint": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.CueSyslogEndpoints": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.CueSyslogSettings": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.DefaultTemplate": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.EmailEndpoint": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.EmailEndpoints": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.EmailSettings": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.EndpointError": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.EndpointErrors": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.EventList": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.GoogleChatEndpoint": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.GoogleChatEndpoints": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.GoogleChatSettings": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.HeaderValues": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.HttpHeaders": [[2, 2, 1, "", "DESCRIPTOR"], [2, 1, 1, "", "ValuesEntry"]], "arista.alert.v1.alert_pb2.HttpHeaders.ValuesEntry": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.HttpSettings": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.InhibitionSettings": [[2, 2, 1, "", "DESCRIPTOR"], [2, 1, 1, "", "ValuesEntry"]], "arista.alert.v1.alert_pb2.InhibitionSettings.ValuesEntry": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.Matches": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.MsTeamsEndpoint": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.MsTeamsEndpoints": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.MsTeamsSettings": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.OpsgenieEndpoint": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.OpsgenieEndpoints": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.OpsgenieSettings": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.PagerdutyEndpoint": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.PagerdutyEndpoints": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.PagerdutySettings": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.Priorities": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.PushoverEndpoint": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.PushoverEndpoints": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.Rule": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.Rules": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.SNMPAuth": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.SNMPEndpoint": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.SNMPEndpoints": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.SNMPSettings": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.SendgridEndpoint": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.SendgridEndpoints": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.SendgridSettings": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.Settings": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.SlackEndpoint": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.SlackEndpoints": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.SlackSettings": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.SyslogEndpoint": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.SyslogEndpoints": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.SyslogSettings": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.TemplateConfig": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.TemplateKey": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.VictorOpsEndpoint": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.VictorOpsEndpoints": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.VictoropsSettings": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.WebhookEndpoint": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.WebhookEndpoints": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.WebhookSettings": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.ZoomEndpoint": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.ZoomEndpoints": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.alert_pb2.ZoomSettings": [[2, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.services": [[3, 0, 0, "-", "gen_pb2"], [3, 0, 0, "-", "gen_pb2_grpc"]], "arista.alert.v1.services.gen_pb2": [[3, 1, 1, "", "AlertConfigRequest"], [3, 1, 1, "", "AlertConfigResponse"], [3, 1, 1, "", "AlertConfigSetRequest"], [3, 1, 1, "", "AlertConfigSetResponse"], [3, 1, 1, "", "AlertConfigStreamRequest"], [3, 1, 1, "", "AlertConfigStreamResponse"], [3, 1, 1, "", "AlertRequest"], [3, 1, 1, "", "AlertResponse"], [3, 1, 1, "", "AlertStreamRequest"], [3, 1, 1, "", "AlertStreamResponse"], [3, 1, 1, "", "DefaultTemplateBatchedStreamRequest"], [3, 1, 1, "", "DefaultTemplateBatchedStreamResponse"], [3, 1, 1, "", "DefaultTemplateRequest"], [3, 1, 1, "", "DefaultTemplateResponse"], [3, 1, 1, "", "DefaultTemplateSomeRequest"], [3, 1, 1, "", "DefaultTemplateSomeResponse"], [3, 1, 1, "", "DefaultTemplateStreamRequest"], [3, 1, 1, "", "DefaultTemplateStreamResponse"], [3, 1, 1, "", "MetaResponse"], [3, 1, 1, "", "TemplateConfigBatchedStreamRequest"], [3, 1, 1, "", "TemplateConfigBatchedStreamResponse"], [3, 1, 1, "", "TemplateConfigDeleteAllRequest"], [3, 1, 1, "", "TemplateConfigDeleteAllResponse"], [3, 1, 1, "", "TemplateConfigDeleteRequest"], [3, 1, 1, "", "TemplateConfigDeleteResponse"], [3, 1, 1, "", "TemplateConfigDeleteSomeRequest"], [3, 1, 1, "", "TemplateConfigDeleteSomeResponse"], [3, 1, 1, "", "TemplateConfigRequest"], [3, 1, 1, "", "TemplateConfigResponse"], [3, 1, 1, "", "TemplateConfigSetRequest"], [3, 1, 1, "", "TemplateConfigSetResponse"], [3, 1, 1, "", "TemplateConfigSetSomeRequest"], [3, 1, 1, "", "TemplateConfigSetSomeResponse"], [3, 1, 1, "", "TemplateConfigSomeRequest"], [3, 1, 1, "", "TemplateConfigSomeResponse"], [3, 1, 1, "", "TemplateConfigStreamRequest"], [3, 1, 1, "", "TemplateConfigStreamResponse"]], "arista.alert.v1.services.gen_pb2.AlertConfigRequest": [[3, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.services.gen_pb2.AlertConfigResponse": [[3, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.services.gen_pb2.AlertConfigSetRequest": [[3, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.services.gen_pb2.AlertConfigSetResponse": [[3, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.services.gen_pb2.AlertConfigStreamRequest": [[3, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.services.gen_pb2.AlertConfigStreamResponse": [[3, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.services.gen_pb2.AlertRequest": [[3, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.services.gen_pb2.AlertResponse": [[3, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.services.gen_pb2.AlertStreamRequest": [[3, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.services.gen_pb2.AlertStreamResponse": [[3, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.services.gen_pb2.DefaultTemplateBatchedStreamRequest": [[3, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.services.gen_pb2.DefaultTemplateBatchedStreamResponse": [[3, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.services.gen_pb2.DefaultTemplateRequest": [[3, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.services.gen_pb2.DefaultTemplateResponse": [[3, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.services.gen_pb2.DefaultTemplateSomeRequest": [[3, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.services.gen_pb2.DefaultTemplateSomeResponse": [[3, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.services.gen_pb2.DefaultTemplateStreamRequest": [[3, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.services.gen_pb2.DefaultTemplateStreamResponse": [[3, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.services.gen_pb2.MetaResponse": [[3, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.services.gen_pb2.TemplateConfigBatchedStreamRequest": [[3, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.services.gen_pb2.TemplateConfigBatchedStreamResponse": [[3, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.services.gen_pb2.TemplateConfigDeleteAllRequest": [[3, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.services.gen_pb2.TemplateConfigDeleteAllResponse": [[3, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.services.gen_pb2.TemplateConfigDeleteRequest": [[3, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.services.gen_pb2.TemplateConfigDeleteResponse": [[3, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.services.gen_pb2.TemplateConfigDeleteSomeRequest": [[3, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.services.gen_pb2.TemplateConfigDeleteSomeResponse": [[3, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.services.gen_pb2.TemplateConfigRequest": [[3, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.services.gen_pb2.TemplateConfigResponse": [[3, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.services.gen_pb2.TemplateConfigSetRequest": [[3, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.services.gen_pb2.TemplateConfigSetResponse": [[3, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.services.gen_pb2.TemplateConfigSetSomeRequest": [[3, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.services.gen_pb2.TemplateConfigSetSomeResponse": [[3, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.services.gen_pb2.TemplateConfigSomeRequest": [[3, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.services.gen_pb2.TemplateConfigSomeResponse": [[3, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.services.gen_pb2.TemplateConfigStreamRequest": [[3, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.services.gen_pb2.TemplateConfigStreamResponse": [[3, 2, 1, "", "DESCRIPTOR"]], "arista.alert.v1.services.gen_pb2_grpc": [[3, 1, 1, "", "AlertConfigService"], [3, 1, 1, "", "AlertConfigServiceServicer"], [3, 1, 1, "", "AlertConfigServiceStub"], [3, 1, 1, "", "AlertService"], [3, 1, 1, "", "AlertServiceServicer"], [3, 1, 1, "", "AlertServiceStub"], [3, 1, 1, "", "DefaultTemplateService"], [3, 1, 1, "", "DefaultTemplateServiceServicer"], [3, 1, 1, "", "DefaultTemplateServiceStub"], [3, 1, 1, "", "TemplateConfigService"], [3, 1, 1, "", "TemplateConfigServiceServicer"], [3, 1, 1, "", "TemplateConfigServiceStub"], [3, 4, 1, "", "add_AlertConfigServiceServicer_to_server"], [3, 4, 1, "", "add_AlertServiceServicer_to_server"], [3, 4, 1, "", "add_DefaultTemplateServiceServicer_to_server"], [3, 4, 1, "", "add_TemplateConfigServiceServicer_to_server"]], "arista.alert.v1.services.gen_pb2_grpc.AlertConfigService": [[3, 3, 1, "", "GetAll"], [3, 3, 1, "", "GetOne"], [3, 3, 1, "", "Set"], [3, 3, 1, "", "Subscribe"], [3, 3, 1, "", "SubscribeMeta"]], "arista.alert.v1.services.gen_pb2_grpc.AlertConfigServiceServicer": [[3, 3, 1, "", "GetAll"], [3, 3, 1, "", "GetOne"], [3, 3, 1, "", "Set"], [3, 3, 1, "", "Subscribe"], [3, 3, 1, "", "SubscribeMeta"]], "arista.alert.v1.services.gen_pb2_grpc.AlertService": [[3, 3, 1, "", "GetAll"], [3, 3, 1, "", "GetOne"], [3, 3, 1, "", "Subscribe"], [3, 3, 1, "", "SubscribeMeta"]], "arista.alert.v1.services.gen_pb2_grpc.AlertServiceServicer": [[3, 3, 1, "", "GetAll"], [3, 3, 1, "", "GetOne"], [3, 3, 1, "", "Subscribe"], [3, 3, 1, "", "SubscribeMeta"]], "arista.alert.v1.services.gen_pb2_grpc.DefaultTemplateService": [[3, 3, 1, "", "GetAll"], [3, 3, 1, "", "GetAllBatched"], [3, 3, 1, "", "GetMeta"], [3, 3, 1, "", "GetOne"], [3, 3, 1, "", "GetSome"], [3, 3, 1, "", "Subscribe"], [3, 3, 1, "", "SubscribeBatched"], [3, 3, 1, "", "SubscribeMeta"]], "arista.alert.v1.services.gen_pb2_grpc.DefaultTemplateServiceServicer": [[3, 3, 1, "", "GetAll"], [3, 3, 1, "", "GetAllBatched"], [3, 3, 1, "", "GetMeta"], [3, 3, 1, "", "GetOne"], [3, 3, 1, "", "GetSome"], [3, 3, 1, "", "Subscribe"], [3, 3, 1, "", "SubscribeBatched"], [3, 3, 1, "", "SubscribeMeta"]], "arista.alert.v1.services.gen_pb2_grpc.TemplateConfigService": [[3, 3, 1, "", "Delete"], [3, 3, 1, "", "DeleteAll"], [3, 3, 1, "", "DeleteSome"], [3, 3, 1, "", "GetAll"], [3, 3, 1, "", "GetAllBatched"], [3, 3, 1, "", "GetMeta"], [3, 3, 1, "", "GetOne"], [3, 3, 1, "", "GetSome"], [3, 3, 1, "", "Set"], [3, 3, 1, "", "SetSome"], [3, 3, 1, "", "Subscribe"], [3, 3, 1, "", "SubscribeBatched"], [3, 3, 1, "", "SubscribeMeta"]], "arista.alert.v1.services.gen_pb2_grpc.TemplateConfigServiceServicer": [[3, 3, 1, "", "Delete"], [3, 3, 1, "", "DeleteAll"], [3, 3, 1, "", "DeleteSome"], [3, 3, 1, "", "GetAll"], [3, 3, 1, "", "GetAllBatched"], [3, 3, 1, "", "GetMeta"], [3, 3, 1, "", "GetOne"], [3, 3, 1, "", "GetSome"], [3, 3, 1, "", "Set"], [3, 3, 1, "", "SetSome"], [3, 3, 1, "", "Subscribe"], [3, 3, 1, "", "SubscribeBatched"], [3, 3, 1, "", "SubscribeMeta"]], "arista.bugexposure": [[5, 0, 0, "-", "v1"]], "arista.bugexposure.v1": [[5, 0, 0, "-", "bugexposure_pb2"], [5, 0, 0, "-", "bugexposure_pb2_grpc"], [6, 0, 0, "-", "services"]], "arista.bugexposure.v1.bugexposure_pb2": [[5, 1, 1, "", "BugExposure"], [5, 1, 1, "", "BugExposureKey"]], "arista.bugexposure.v1.bugexposure_pb2.BugExposure": [[5, 2, 1, "", "DESCRIPTOR"]], "arista.bugexposure.v1.bugexposure_pb2.BugExposureKey": [[5, 2, 1, "", "DESCRIPTOR"]], "arista.bugexposure.v1.services": [[6, 0, 0, "-", "gen_pb2"], [6, 0, 0, "-", "gen_pb2_grpc"]], "arista.bugexposure.v1.services.gen_pb2": [[6, 1, 1, "", "BugExposureRequest"], [6, 1, 1, "", "BugExposureResponse"], [6, 1, 1, "", "BugExposureStreamRequest"], [6, 1, 1, "", "BugExposureStreamResponse"], [6, 1, 1, "", "MetaResponse"]], "arista.bugexposure.v1.services.gen_pb2.BugExposureRequest": [[6, 2, 1, "", "DESCRIPTOR"]], "arista.bugexposure.v1.services.gen_pb2.BugExposureResponse": [[6, 2, 1, "", "DESCRIPTOR"]], "arista.bugexposure.v1.services.gen_pb2.BugExposureStreamRequest": [[6, 2, 1, "", "DESCRIPTOR"]], "arista.bugexposure.v1.services.gen_pb2.BugExposureStreamResponse": [[6, 2, 1, "", "DESCRIPTOR"]], "arista.bugexposure.v1.services.gen_pb2.MetaResponse": [[6, 2, 1, "", "DESCRIPTOR"]], "arista.bugexposure.v1.services.gen_pb2_grpc": [[6, 1, 1, "", "BugExposureService"], [6, 1, 1, "", "BugExposureServiceServicer"], [6, 1, 1, "", "BugExposureServiceStub"], [6, 4, 1, "", "add_BugExposureServiceServicer_to_server"]], "arista.bugexposure.v1.services.gen_pb2_grpc.BugExposureService": [[6, 3, 1, "", "GetAll"], [6, 3, 1, "", "GetMeta"], [6, 3, 1, "", "GetOne"], [6, 3, 1, "", "Subscribe"], [6, 3, 1, "", "SubscribeMeta"]], "arista.bugexposure.v1.services.gen_pb2_grpc.BugExposureServiceServicer": [[6, 3, 1, "", "GetAll"], [6, 3, 1, "", "GetMeta"], [6, 3, 1, "", "GetOne"], [6, 3, 1, "", "Subscribe"], [6, 3, 1, "", "SubscribeMeta"]], "arista.changecontrol": [[8, 0, 0, "-", "v1"]], "arista.changecontrol.v1": [[8, 0, 0, "-", "changecontrol_pb2"], [8, 0, 0, "-", "changecontrol_pb2_grpc"], [9, 0, 0, "-", "services"]], "arista.changecontrol.v1.changecontrol_pb2": [[8, 1, 1, "", "Action"], [8, 1, 1, "", "ApproveConfig"], [8, 1, 1, "", "Change"], [8, 1, 1, "", "ChangeConfig"], [8, 1, 1, "", "ChangeControl"], [8, 1, 1, "", "ChangeControlConfig"], [8, 1, 1, "", "ChangeControlKey"], [8, 1, 1, "", "DeviceToStageMap"], [8, 1, 1, "", "Filter"], [8, 1, 1, "", "Flag"], [8, 1, 1, "", "FlagConfig"], [8, 1, 1, "", "RepeatedRepeatedString"], [8, 1, 1, "", "Stage"], [8, 1, 1, "", "StageConfig"], [8, 1, 1, "", "StageConfigMap"], [8, 1, 1, "", "StageMap"], [8, 1, 1, "", "TimestampFlag"], [8, 1, 1, "", "TimestampFlagConfig"]], "arista.changecontrol.v1.changecontrol_pb2.Action": [[8, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.changecontrol_pb2.ApproveConfig": [[8, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.changecontrol_pb2.Change": [[8, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.changecontrol_pb2.ChangeConfig": [[8, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.changecontrol_pb2.ChangeControl": [[8, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.changecontrol_pb2.ChangeControlConfig": [[8, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.changecontrol_pb2.ChangeControlKey": [[8, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.changecontrol_pb2.DeviceToStageMap": [[8, 2, 1, "", "DESCRIPTOR"], [8, 1, 1, "", "ValuesEntry"]], "arista.changecontrol.v1.changecontrol_pb2.DeviceToStageMap.ValuesEntry": [[8, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.changecontrol_pb2.Filter": [[8, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.changecontrol_pb2.Flag": [[8, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.changecontrol_pb2.FlagConfig": [[8, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.changecontrol_pb2.RepeatedRepeatedString": [[8, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.changecontrol_pb2.Stage": [[8, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.changecontrol_pb2.StageConfig": [[8, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.changecontrol_pb2.StageConfigMap": [[8, 2, 1, "", "DESCRIPTOR"], [8, 1, 1, "", "ValuesEntry"]], "arista.changecontrol.v1.changecontrol_pb2.StageConfigMap.ValuesEntry": [[8, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.changecontrol_pb2.StageMap": [[8, 2, 1, "", "DESCRIPTOR"], [8, 1, 1, "", "ValuesEntry"]], "arista.changecontrol.v1.changecontrol_pb2.StageMap.ValuesEntry": [[8, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.changecontrol_pb2.TimestampFlag": [[8, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.changecontrol_pb2.TimestampFlagConfig": [[8, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services": [[9, 0, 0, "-", "gen_pb2"], [9, 0, 0, "-", "gen_pb2_grpc"]], "arista.changecontrol.v1.services.gen_pb2": [[9, 1, 1, "", "ApproveConfigBatchedStreamRequest"], [9, 1, 1, "", "ApproveConfigBatchedStreamResponse"], [9, 1, 1, "", "ApproveConfigDeleteAllRequest"], [9, 1, 1, "", "ApproveConfigDeleteAllResponse"], [9, 1, 1, "", "ApproveConfigDeleteRequest"], [9, 1, 1, "", "ApproveConfigDeleteResponse"], [9, 1, 1, "", "ApproveConfigDeleteSomeRequest"], [9, 1, 1, "", "ApproveConfigDeleteSomeResponse"], [9, 1, 1, "", "ApproveConfigRequest"], [9, 1, 1, "", "ApproveConfigResponse"], [9, 1, 1, "", "ApproveConfigSetRequest"], [9, 1, 1, "", "ApproveConfigSetResponse"], [9, 1, 1, "", "ApproveConfigSetSomeRequest"], [9, 1, 1, "", "ApproveConfigSetSomeResponse"], [9, 1, 1, "", "ApproveConfigSomeRequest"], [9, 1, 1, "", "ApproveConfigSomeResponse"], [9, 1, 1, "", "ApproveConfigStreamRequest"], [9, 1, 1, "", "ApproveConfigStreamResponse"], [9, 1, 1, "", "ChangeControlBatchedStreamRequest"], [9, 1, 1, "", "ChangeControlBatchedStreamResponse"], [9, 1, 1, "", "ChangeControlConfigBatchedStreamRequest"], [9, 1, 1, "", "ChangeControlConfigBatchedStreamResponse"], [9, 1, 1, "", "ChangeControlConfigDeleteAllRequest"], [9, 1, 1, "", "ChangeControlConfigDeleteAllResponse"], [9, 1, 1, "", "ChangeControlConfigDeleteRequest"], [9, 1, 1, "", "ChangeControlConfigDeleteResponse"], [9, 1, 1, "", "ChangeControlConfigDeleteSomeRequest"], [9, 1, 1, "", "ChangeControlConfigDeleteSomeResponse"], [9, 1, 1, "", "ChangeControlConfigRequest"], [9, 1, 1, "", "ChangeControlConfigResponse"], [9, 1, 1, "", "ChangeControlConfigSetRequest"], [9, 1, 1, "", "ChangeControlConfigSetResponse"], [9, 1, 1, "", "ChangeControlConfigSetSomeRequest"], [9, 1, 1, "", "ChangeControlConfigSetSomeResponse"], [9, 1, 1, "", "ChangeControlConfigSomeRequest"], [9, 1, 1, "", "ChangeControlConfigSomeResponse"], [9, 1, 1, "", "ChangeControlConfigStreamRequest"], [9, 1, 1, "", "ChangeControlConfigStreamResponse"], [9, 1, 1, "", "ChangeControlRequest"], [9, 1, 1, "", "ChangeControlResponse"], [9, 1, 1, "", "ChangeControlSomeRequest"], [9, 1, 1, "", "ChangeControlSomeResponse"], [9, 1, 1, "", "ChangeControlStreamRequest"], [9, 1, 1, "", "ChangeControlStreamResponse"], [9, 1, 1, "", "MetaResponse"]], "arista.changecontrol.v1.services.gen_pb2.ApproveConfigBatchedStreamRequest": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2.ApproveConfigBatchedStreamResponse": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2.ApproveConfigDeleteAllRequest": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2.ApproveConfigDeleteAllResponse": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2.ApproveConfigDeleteRequest": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2.ApproveConfigDeleteResponse": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2.ApproveConfigDeleteSomeRequest": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2.ApproveConfigDeleteSomeResponse": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2.ApproveConfigRequest": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2.ApproveConfigResponse": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2.ApproveConfigSetRequest": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2.ApproveConfigSetResponse": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2.ApproveConfigSetSomeRequest": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2.ApproveConfigSetSomeResponse": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2.ApproveConfigSomeRequest": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2.ApproveConfigSomeResponse": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2.ApproveConfigStreamRequest": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2.ApproveConfigStreamResponse": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2.ChangeControlBatchedStreamRequest": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2.ChangeControlBatchedStreamResponse": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigBatchedStreamRequest": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigBatchedStreamResponse": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigDeleteAllRequest": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigDeleteAllResponse": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigDeleteRequest": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigDeleteResponse": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigDeleteSomeRequest": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigDeleteSomeResponse": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigRequest": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigResponse": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigSetRequest": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigSetResponse": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigSetSomeRequest": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigSetSomeResponse": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigSomeRequest": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigSomeResponse": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigStreamRequest": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2.ChangeControlConfigStreamResponse": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2.ChangeControlRequest": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2.ChangeControlResponse": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2.ChangeControlSomeRequest": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2.ChangeControlSomeResponse": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2.ChangeControlStreamRequest": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2.ChangeControlStreamResponse": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2.MetaResponse": [[9, 2, 1, "", "DESCRIPTOR"]], "arista.changecontrol.v1.services.gen_pb2_grpc": [[9, 1, 1, "", "ApproveConfigService"], [9, 1, 1, "", "ApproveConfigServiceServicer"], [9, 1, 1, "", "ApproveConfigServiceStub"], [9, 1, 1, "", "ChangeControlConfigService"], [9, 1, 1, "", "ChangeControlConfigServiceServicer"], [9, 1, 1, "", "ChangeControlConfigServiceStub"], [9, 1, 1, "", "ChangeControlService"], [9, 1, 1, "", "ChangeControlServiceServicer"], [9, 1, 1, "", "ChangeControlServiceStub"], [9, 4, 1, "", "add_ApproveConfigServiceServicer_to_server"], [9, 4, 1, "", "add_ChangeControlConfigServiceServicer_to_server"], [9, 4, 1, "", "add_ChangeControlServiceServicer_to_server"]], "arista.changecontrol.v1.services.gen_pb2_grpc.ApproveConfigService": [[9, 3, 1, "", "Delete"], [9, 3, 1, "", "DeleteAll"], [9, 3, 1, "", "DeleteSome"], [9, 3, 1, "", "GetAll"], [9, 3, 1, "", "GetAllBatched"], [9, 3, 1, "", "GetMeta"], [9, 3, 1, "", "GetOne"], [9, 3, 1, "", "GetSome"], [9, 3, 1, "", "Set"], [9, 3, 1, "", "SetSome"], [9, 3, 1, "", "Subscribe"], [9, 3, 1, "", "SubscribeBatched"], [9, 3, 1, "", "SubscribeMeta"]], "arista.changecontrol.v1.services.gen_pb2_grpc.ApproveConfigServiceServicer": [[9, 3, 1, "", "Delete"], [9, 3, 1, "", "DeleteAll"], [9, 3, 1, "", "DeleteSome"], [9, 3, 1, "", "GetAll"], [9, 3, 1, "", "GetAllBatched"], [9, 3, 1, "", "GetMeta"], [9, 3, 1, "", "GetOne"], [9, 3, 1, "", "GetSome"], [9, 3, 1, "", "Set"], [9, 3, 1, "", "SetSome"], [9, 3, 1, "", "Subscribe"], [9, 3, 1, "", "SubscribeBatched"], [9, 3, 1, "", "SubscribeMeta"]], "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlConfigService": [[9, 3, 1, "", "Delete"], [9, 3, 1, "", "DeleteAll"], [9, 3, 1, "", "DeleteSome"], [9, 3, 1, "", "GetAll"], [9, 3, 1, "", "GetAllBatched"], [9, 3, 1, "", "GetMeta"], [9, 3, 1, "", "GetOne"], [9, 3, 1, "", "GetSome"], [9, 3, 1, "", "Set"], [9, 3, 1, "", "SetSome"], [9, 3, 1, "", "Subscribe"], [9, 3, 1, "", "SubscribeBatched"], [9, 3, 1, "", "SubscribeMeta"]], "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlConfigServiceServicer": [[9, 3, 1, "", "Delete"], [9, 3, 1, "", "DeleteAll"], [9, 3, 1, "", "DeleteSome"], [9, 3, 1, "", "GetAll"], [9, 3, 1, "", "GetAllBatched"], [9, 3, 1, "", "GetMeta"], [9, 3, 1, "", "GetOne"], [9, 3, 1, "", "GetSome"], [9, 3, 1, "", "Set"], [9, 3, 1, "", "SetSome"], [9, 3, 1, "", "Subscribe"], [9, 3, 1, "", "SubscribeBatched"], [9, 3, 1, "", "SubscribeMeta"]], "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlService": [[9, 3, 1, "", "GetAll"], [9, 3, 1, "", "GetAllBatched"], [9, 3, 1, "", "GetMeta"], [9, 3, 1, "", "GetOne"], [9, 3, 1, "", "GetSome"], [9, 3, 1, "", "Subscribe"], [9, 3, 1, "", "SubscribeBatched"], [9, 3, 1, "", "SubscribeMeta"]], "arista.changecontrol.v1.services.gen_pb2_grpc.ChangeControlServiceServicer": [[9, 3, 1, "", "GetAll"], [9, 3, 1, "", "GetAllBatched"], [9, 3, 1, "", "GetMeta"], [9, 3, 1, "", "GetOne"], [9, 3, 1, "", "GetSome"], [9, 3, 1, "", "Subscribe"], [9, 3, 1, "", "SubscribeBatched"], [9, 3, 1, "", "SubscribeMeta"]], "arista.configlet": [[11, 0, 0, "-", "v1"]], "arista.configlet.v1": [[11, 0, 0, "-", "configlet_pb2"], [11, 0, 0, "-", "configlet_pb2_grpc"], [12, 0, 0, "-", "services"]], "arista.configlet.v1.configlet_pb2": [[11, 1, 1, "", "Configlet"], [11, 1, 1, "", "ConfigletAssignment"], [11, 1, 1, "", "ConfigletAssignmentConfig"], [11, 1, 1, "", "ConfigletAssignmentKey"], [11, 1, 1, "", "ConfigletConfig"], [11, 1, 1, "", "ConfigletKey"], [11, 1, 1, "", "Filter"]], "arista.configlet.v1.configlet_pb2.Configlet": [[11, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.configlet_pb2.ConfigletAssignment": [[11, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.configlet_pb2.ConfigletAssignmentConfig": [[11, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.configlet_pb2.ConfigletAssignmentKey": [[11, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.configlet_pb2.ConfigletConfig": [[11, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.configlet_pb2.ConfigletKey": [[11, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.configlet_pb2.Filter": [[11, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services": [[12, 0, 0, "-", "gen_pb2"], [12, 0, 0, "-", "gen_pb2_grpc"]], "arista.configlet.v1.services.gen_pb2": [[12, 1, 1, "", "ConfigletAssignmentBatchedStreamRequest"], [12, 1, 1, "", "ConfigletAssignmentBatchedStreamResponse"], [12, 1, 1, "", "ConfigletAssignmentConfigBatchedStreamRequest"], [12, 1, 1, "", "ConfigletAssignmentConfigBatchedStreamResponse"], [12, 1, 1, "", "ConfigletAssignmentConfigDeleteAllRequest"], [12, 1, 1, "", "ConfigletAssignmentConfigDeleteAllResponse"], [12, 1, 1, "", "ConfigletAssignmentConfigDeleteRequest"], [12, 1, 1, "", "ConfigletAssignmentConfigDeleteResponse"], [12, 1, 1, "", "ConfigletAssignmentConfigDeleteSomeRequest"], [12, 1, 1, "", "ConfigletAssignmentConfigDeleteSomeResponse"], [12, 1, 1, "", "ConfigletAssignmentConfigRequest"], [12, 1, 1, "", "ConfigletAssignmentConfigResponse"], [12, 1, 1, "", "ConfigletAssignmentConfigSetRequest"], [12, 1, 1, "", "ConfigletAssignmentConfigSetResponse"], [12, 1, 1, "", "ConfigletAssignmentConfigSetSomeRequest"], [12, 1, 1, "", "ConfigletAssignmentConfigSetSomeResponse"], [12, 1, 1, "", "ConfigletAssignmentConfigSomeRequest"], [12, 1, 1, "", "ConfigletAssignmentConfigSomeResponse"], [12, 1, 1, "", "ConfigletAssignmentConfigStreamRequest"], [12, 1, 1, "", "ConfigletAssignmentConfigStreamResponse"], [12, 1, 1, "", "ConfigletAssignmentRequest"], [12, 1, 1, "", "ConfigletAssignmentResponse"], [12, 1, 1, "", "ConfigletAssignmentSomeRequest"], [12, 1, 1, "", "ConfigletAssignmentSomeResponse"], [12, 1, 1, "", "ConfigletAssignmentStreamRequest"], [12, 1, 1, "", "ConfigletAssignmentStreamResponse"], [12, 1, 1, "", "ConfigletBatchedStreamRequest"], [12, 1, 1, "", "ConfigletBatchedStreamResponse"], [12, 1, 1, "", "ConfigletConfigBatchedStreamRequest"], [12, 1, 1, "", "ConfigletConfigBatchedStreamResponse"], [12, 1, 1, "", "ConfigletConfigDeleteAllRequest"], [12, 1, 1, "", "ConfigletConfigDeleteAllResponse"], [12, 1, 1, "", "ConfigletConfigDeleteRequest"], [12, 1, 1, "", "ConfigletConfigDeleteResponse"], [12, 1, 1, "", "ConfigletConfigDeleteSomeRequest"], [12, 1, 1, "", "ConfigletConfigDeleteSomeResponse"], [12, 1, 1, "", "ConfigletConfigRequest"], [12, 1, 1, "", "ConfigletConfigResponse"], [12, 1, 1, "", "ConfigletConfigSetRequest"], [12, 1, 1, "", "ConfigletConfigSetResponse"], [12, 1, 1, "", "ConfigletConfigSetSomeRequest"], [12, 1, 1, "", "ConfigletConfigSetSomeResponse"], [12, 1, 1, "", "ConfigletConfigSomeRequest"], [12, 1, 1, "", "ConfigletConfigSomeResponse"], [12, 1, 1, "", "ConfigletConfigStreamRequest"], [12, 1, 1, "", "ConfigletConfigStreamResponse"], [12, 1, 1, "", "ConfigletRequest"], [12, 1, 1, "", "ConfigletResponse"], [12, 1, 1, "", "ConfigletSomeRequest"], [12, 1, 1, "", "ConfigletSomeResponse"], [12, 1, 1, "", "ConfigletStreamRequest"], [12, 1, 1, "", "ConfigletStreamResponse"], [12, 1, 1, "", "MetaResponse"]], "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentBatchedStreamRequest": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentBatchedStreamResponse": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigBatchedStreamRequest": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigBatchedStreamResponse": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigDeleteAllRequest": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigDeleteAllResponse": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigDeleteRequest": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigDeleteResponse": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigDeleteSomeRequest": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigDeleteSomeResponse": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigRequest": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigResponse": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigSetRequest": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigSetResponse": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigSetSomeRequest": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigSetSomeResponse": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigSomeRequest": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigSomeResponse": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigStreamRequest": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentConfigStreamResponse": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentRequest": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentResponse": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentSomeRequest": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentSomeResponse": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentStreamRequest": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletAssignmentStreamResponse": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletBatchedStreamRequest": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletBatchedStreamResponse": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletConfigBatchedStreamRequest": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletConfigBatchedStreamResponse": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletConfigDeleteAllRequest": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletConfigDeleteAllResponse": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletConfigDeleteRequest": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletConfigDeleteResponse": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletConfigDeleteSomeRequest": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletConfigDeleteSomeResponse": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletConfigRequest": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletConfigResponse": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletConfigSetRequest": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletConfigSetResponse": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletConfigSetSomeRequest": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletConfigSetSomeResponse": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletConfigSomeRequest": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletConfigSomeResponse": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletConfigStreamRequest": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletConfigStreamResponse": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletRequest": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletResponse": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletSomeRequest": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletSomeResponse": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletStreamRequest": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.ConfigletStreamResponse": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2.MetaResponse": [[12, 2, 1, "", "DESCRIPTOR"]], "arista.configlet.v1.services.gen_pb2_grpc": [[12, 1, 1, "", "ConfigletAssignmentConfigService"], [12, 1, 1, "", "ConfigletAssignmentConfigServiceServicer"], [12, 1, 1, "", "ConfigletAssignmentConfigServiceStub"], [12, 1, 1, "", "ConfigletAssignmentService"], [12, 1, 1, "", "ConfigletAssignmentServiceServicer"], [12, 1, 1, "", "ConfigletAssignmentServiceStub"], [12, 1, 1, "", "ConfigletConfigService"], [12, 1, 1, "", "ConfigletConfigServiceServicer"], [12, 1, 1, "", "ConfigletConfigServiceStub"], [12, 1, 1, "", "ConfigletService"], [12, 1, 1, "", "ConfigletServiceServicer"], [12, 1, 1, "", "ConfigletServiceStub"], [12, 4, 1, "", "add_ConfigletAssignmentConfigServiceServicer_to_server"], [12, 4, 1, "", "add_ConfigletAssignmentServiceServicer_to_server"], [12, 4, 1, "", "add_ConfigletConfigServiceServicer_to_server"], [12, 4, 1, "", "add_ConfigletServiceServicer_to_server"]], "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentConfigService": [[12, 3, 1, "", "Delete"], [12, 3, 1, "", "DeleteAll"], [12, 3, 1, "", "DeleteSome"], [12, 3, 1, "", "GetAll"], [12, 3, 1, "", "GetAllBatched"], [12, 3, 1, "", "GetMeta"], [12, 3, 1, "", "GetOne"], [12, 3, 1, "", "GetSome"], [12, 3, 1, "", "Set"], [12, 3, 1, "", "SetSome"], [12, 3, 1, "", "Subscribe"], [12, 3, 1, "", "SubscribeBatched"], [12, 3, 1, "", "SubscribeMeta"]], "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentConfigServiceServicer": [[12, 3, 1, "", "Delete"], [12, 3, 1, "", "DeleteAll"], [12, 3, 1, "", "DeleteSome"], [12, 3, 1, "", "GetAll"], [12, 3, 1, "", "GetAllBatched"], [12, 3, 1, "", "GetMeta"], [12, 3, 1, "", "GetOne"], [12, 3, 1, "", "GetSome"], [12, 3, 1, "", "Set"], [12, 3, 1, "", "SetSome"], [12, 3, 1, "", "Subscribe"], [12, 3, 1, "", "SubscribeBatched"], [12, 3, 1, "", "SubscribeMeta"]], "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentService": [[12, 3, 1, "", "GetAll"], [12, 3, 1, "", "GetAllBatched"], [12, 3, 1, "", "GetMeta"], [12, 3, 1, "", "GetOne"], [12, 3, 1, "", "GetSome"], [12, 3, 1, "", "Subscribe"], [12, 3, 1, "", "SubscribeBatched"], [12, 3, 1, "", "SubscribeMeta"]], "arista.configlet.v1.services.gen_pb2_grpc.ConfigletAssignmentServiceServicer": [[12, 3, 1, "", "GetAll"], [12, 3, 1, "", "GetAllBatched"], [12, 3, 1, "", "GetMeta"], [12, 3, 1, "", "GetOne"], [12, 3, 1, "", "GetSome"], [12, 3, 1, "", "Subscribe"], [12, 3, 1, "", "SubscribeBatched"], [12, 3, 1, "", "SubscribeMeta"]], "arista.configlet.v1.services.gen_pb2_grpc.ConfigletConfigService": [[12, 3, 1, "", "Delete"], [12, 3, 1, "", "DeleteAll"], [12, 3, 1, "", "DeleteSome"], [12, 3, 1, "", "GetAll"], [12, 3, 1, "", "GetAllBatched"], [12, 3, 1, "", "GetMeta"], [12, 3, 1, "", "GetOne"], [12, 3, 1, "", "GetSome"], [12, 3, 1, "", "Set"], [12, 3, 1, "", "SetSome"], [12, 3, 1, "", "Subscribe"], [12, 3, 1, "", "SubscribeBatched"], [12, 3, 1, "", "SubscribeMeta"]], "arista.configlet.v1.services.gen_pb2_grpc.ConfigletConfigServiceServicer": [[12, 3, 1, "", "Delete"], [12, 3, 1, "", "DeleteAll"], [12, 3, 1, "", "DeleteSome"], [12, 3, 1, "", "GetAll"], [12, 3, 1, "", "GetAllBatched"], [12, 3, 1, "", "GetMeta"], [12, 3, 1, "", "GetOne"], [12, 3, 1, "", "GetSome"], [12, 3, 1, "", "Set"], [12, 3, 1, "", "SetSome"], [12, 3, 1, "", "Subscribe"], [12, 3, 1, "", "SubscribeBatched"], [12, 3, 1, "", "SubscribeMeta"]], "arista.configlet.v1.services.gen_pb2_grpc.ConfigletService": [[12, 3, 1, "", "GetAll"], [12, 3, 1, "", "GetAllBatched"], [12, 3, 1, "", "GetMeta"], [12, 3, 1, "", "GetOne"], [12, 3, 1, "", "GetSome"], [12, 3, 1, "", "Subscribe"], [12, 3, 1, "", "SubscribeBatched"], [12, 3, 1, "", "SubscribeMeta"]], "arista.configlet.v1.services.gen_pb2_grpc.ConfigletServiceServicer": [[12, 3, 1, "", "GetAll"], [12, 3, 1, "", "GetAllBatched"], [12, 3, 1, "", "GetMeta"], [12, 3, 1, "", "GetOne"], [12, 3, 1, "", "GetSome"], [12, 3, 1, "", "Subscribe"], [12, 3, 1, "", "SubscribeBatched"], [12, 3, 1, "", "SubscribeMeta"]], "arista.configstatus": [[14, 0, 0, "-", "v1"]], "arista.configstatus.v1": [[14, 0, 0, "-", "configstatus_pb2"], [14, 0, 0, "-", "configstatus_pb2_grpc"], [15, 0, 0, "-", "services"]], "arista.configstatus.v1.configstatus_pb2": [[14, 1, 1, "", "ConfigDiff"], [14, 1, 1, "", "ConfigDiffKey"], [14, 1, 1, "", "ConfigError"], [14, 1, 1, "", "ConfigErrors"], [14, 1, 1, "", "ConfigKey"], [14, 1, 1, "", "ConfigSource"], [14, 1, 1, "", "ConfigSources"], [14, 1, 1, "", "ConfigSummary"], [14, 1, 1, "", "Configuration"], [14, 1, 1, "", "DiffEntries"], [14, 1, 1, "", "DiffEntry"], [14, 1, 1, "", "SecurityProfile"], [14, 1, 1, "", "SecurityProfileComplianceSummary"], [14, 1, 1, "", "SecurityProfileDiff"], [14, 1, 1, "", "SecurityProfileDiffSummary"], [14, 1, 1, "", "Summary"], [14, 1, 1, "", "SummaryKey"]], "arista.configstatus.v1.configstatus_pb2.ConfigDiff": [[14, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.configstatus_pb2.ConfigDiffKey": [[14, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.configstatus_pb2.ConfigError": [[14, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.configstatus_pb2.ConfigErrors": [[14, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.configstatus_pb2.ConfigKey": [[14, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.configstatus_pb2.ConfigSource": [[14, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.configstatus_pb2.ConfigSources": [[14, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.configstatus_pb2.ConfigSummary": [[14, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.configstatus_pb2.Configuration": [[14, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.configstatus_pb2.DiffEntries": [[14, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.configstatus_pb2.DiffEntry": [[14, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.configstatus_pb2.SecurityProfile": [[14, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.configstatus_pb2.SecurityProfileComplianceSummary": [[14, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.configstatus_pb2.SecurityProfileDiff": [[14, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.configstatus_pb2.SecurityProfileDiffSummary": [[14, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.configstatus_pb2.Summary": [[14, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.configstatus_pb2.SummaryKey": [[14, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services": [[15, 0, 0, "-", "gen_pb2"], [15, 0, 0, "-", "gen_pb2_grpc"]], "arista.configstatus.v1.services.gen_pb2": [[15, 1, 1, "", "ConfigDiffBatchedStreamRequest"], [15, 1, 1, "", "ConfigDiffBatchedStreamResponse"], [15, 1, 1, "", "ConfigDiffRequest"], [15, 1, 1, "", "ConfigDiffResponse"], [15, 1, 1, "", "ConfigDiffSomeRequest"], [15, 1, 1, "", "ConfigDiffSomeResponse"], [15, 1, 1, "", "ConfigDiffStreamRequest"], [15, 1, 1, "", "ConfigDiffStreamResponse"], [15, 1, 1, "", "ConfigurationBatchedStreamRequest"], [15, 1, 1, "", "ConfigurationBatchedStreamResponse"], [15, 1, 1, "", "ConfigurationRequest"], [15, 1, 1, "", "ConfigurationResponse"], [15, 1, 1, "", "ConfigurationSomeRequest"], [15, 1, 1, "", "ConfigurationSomeResponse"], [15, 1, 1, "", "ConfigurationStreamRequest"], [15, 1, 1, "", "ConfigurationStreamResponse"], [15, 1, 1, "", "MetaResponse"], [15, 1, 1, "", "SecurityProfileBatchedStreamRequest"], [15, 1, 1, "", "SecurityProfileBatchedStreamResponse"], [15, 1, 1, "", "SecurityProfileDiffBatchedStreamRequest"], [15, 1, 1, "", "SecurityProfileDiffBatchedStreamResponse"], [15, 1, 1, "", "SecurityProfileDiffRequest"], [15, 1, 1, "", "SecurityProfileDiffResponse"], [15, 1, 1, "", "SecurityProfileDiffSomeRequest"], [15, 1, 1, "", "SecurityProfileDiffSomeResponse"], [15, 1, 1, "", "SecurityProfileDiffStreamRequest"], [15, 1, 1, "", "SecurityProfileDiffStreamResponse"], [15, 1, 1, "", "SecurityProfileDiffSummaryBatchedStreamRequest"], [15, 1, 1, "", "SecurityProfileDiffSummaryBatchedStreamResponse"], [15, 1, 1, "", "SecurityProfileDiffSummaryRequest"], [15, 1, 1, "", "SecurityProfileDiffSummaryResponse"], [15, 1, 1, "", "SecurityProfileDiffSummarySomeRequest"], [15, 1, 1, "", "SecurityProfileDiffSummarySomeResponse"], [15, 1, 1, "", "SecurityProfileDiffSummaryStreamRequest"], [15, 1, 1, "", "SecurityProfileDiffSummaryStreamResponse"], [15, 1, 1, "", "SecurityProfileRequest"], [15, 1, 1, "", "SecurityProfileResponse"], [15, 1, 1, "", "SecurityProfileSomeRequest"], [15, 1, 1, "", "SecurityProfileSomeResponse"], [15, 1, 1, "", "SecurityProfileStreamRequest"], [15, 1, 1, "", "SecurityProfileStreamResponse"], [15, 1, 1, "", "SummaryBatchedStreamRequest"], [15, 1, 1, "", "SummaryBatchedStreamResponse"], [15, 1, 1, "", "SummaryRequest"], [15, 1, 1, "", "SummaryResponse"], [15, 1, 1, "", "SummarySomeRequest"], [15, 1, 1, "", "SummarySomeResponse"], [15, 1, 1, "", "SummaryStreamRequest"], [15, 1, 1, "", "SummaryStreamResponse"]], "arista.configstatus.v1.services.gen_pb2.ConfigDiffBatchedStreamRequest": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.ConfigDiffBatchedStreamResponse": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.ConfigDiffRequest": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.ConfigDiffResponse": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.ConfigDiffSomeRequest": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.ConfigDiffSomeResponse": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.ConfigDiffStreamRequest": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.ConfigDiffStreamResponse": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.ConfigurationBatchedStreamRequest": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.ConfigurationBatchedStreamResponse": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.ConfigurationRequest": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.ConfigurationResponse": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.ConfigurationSomeRequest": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.ConfigurationSomeResponse": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.ConfigurationStreamRequest": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.ConfigurationStreamResponse": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.MetaResponse": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.SecurityProfileBatchedStreamRequest": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.SecurityProfileBatchedStreamResponse": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffBatchedStreamRequest": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffBatchedStreamResponse": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffRequest": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffResponse": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffSomeRequest": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffSomeResponse": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffStreamRequest": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffStreamResponse": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffSummaryBatchedStreamRequest": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffSummaryBatchedStreamResponse": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffSummaryRequest": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffSummaryResponse": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffSummarySomeRequest": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffSummarySomeResponse": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffSummaryStreamRequest": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.SecurityProfileDiffSummaryStreamResponse": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.SecurityProfileRequest": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.SecurityProfileResponse": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.SecurityProfileSomeRequest": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.SecurityProfileSomeResponse": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.SecurityProfileStreamRequest": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.SecurityProfileStreamResponse": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.SummaryBatchedStreamRequest": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.SummaryBatchedStreamResponse": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.SummaryRequest": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.SummaryResponse": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.SummarySomeRequest": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.SummarySomeResponse": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.SummaryStreamRequest": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2.SummaryStreamResponse": [[15, 2, 1, "", "DESCRIPTOR"]], "arista.configstatus.v1.services.gen_pb2_grpc": [[15, 1, 1, "", "ConfigDiffService"], [15, 1, 1, "", "ConfigDiffServiceServicer"], [15, 1, 1, "", "ConfigDiffServiceStub"], [15, 1, 1, "", "ConfigurationService"], [15, 1, 1, "", "ConfigurationServiceServicer"], [15, 1, 1, "", "ConfigurationServiceStub"], [15, 1, 1, "", "SecurityProfileDiffService"], [15, 1, 1, "", "SecurityProfileDiffServiceServicer"], [15, 1, 1, "", "SecurityProfileDiffServiceStub"], [15, 1, 1, "", "SecurityProfileDiffSummaryService"], [15, 1, 1, "", "SecurityProfileDiffSummaryServiceServicer"], [15, 1, 1, "", "SecurityProfileDiffSummaryServiceStub"], [15, 1, 1, "", "SecurityProfileService"], [15, 1, 1, "", "SecurityProfileServiceServicer"], [15, 1, 1, "", "SecurityProfileServiceStub"], [15, 1, 1, "", "SummaryService"], [15, 1, 1, "", "SummaryServiceServicer"], [15, 1, 1, "", "SummaryServiceStub"], [15, 4, 1, "", "add_ConfigDiffServiceServicer_to_server"], [15, 4, 1, "", "add_ConfigurationServiceServicer_to_server"], [15, 4, 1, "", "add_SecurityProfileDiffServiceServicer_to_server"], [15, 4, 1, "", "add_SecurityProfileDiffSummaryServiceServicer_to_server"], [15, 4, 1, "", "add_SecurityProfileServiceServicer_to_server"], [15, 4, 1, "", "add_SummaryServiceServicer_to_server"]], "arista.configstatus.v1.services.gen_pb2_grpc.ConfigDiffService": [[15, 3, 1, "", "GetAll"], [15, 3, 1, "", "GetAllBatched"], [15, 3, 1, "", "GetMeta"], [15, 3, 1, "", "GetOne"], [15, 3, 1, "", "GetSome"], [15, 3, 1, "", "Subscribe"], [15, 3, 1, "", "SubscribeBatched"], [15, 3, 1, "", "SubscribeMeta"]], "arista.configstatus.v1.services.gen_pb2_grpc.ConfigDiffServiceServicer": [[15, 3, 1, "", "GetAll"], [15, 3, 1, "", "GetAllBatched"], [15, 3, 1, "", "GetMeta"], [15, 3, 1, "", "GetOne"], [15, 3, 1, "", "GetSome"], [15, 3, 1, "", "Subscribe"], [15, 3, 1, "", "SubscribeBatched"], [15, 3, 1, "", "SubscribeMeta"]], "arista.configstatus.v1.services.gen_pb2_grpc.ConfigurationService": [[15, 3, 1, "", "GetAll"], [15, 3, 1, "", "GetAllBatched"], [15, 3, 1, "", "GetMeta"], [15, 3, 1, "", "GetOne"], [15, 3, 1, "", "GetSome"], [15, 3, 1, "", "Subscribe"], [15, 3, 1, "", "SubscribeBatched"], [15, 3, 1, "", "SubscribeMeta"]], "arista.configstatus.v1.services.gen_pb2_grpc.ConfigurationServiceServicer": [[15, 3, 1, "", "GetAll"], [15, 3, 1, "", "GetAllBatched"], [15, 3, 1, "", "GetMeta"], [15, 3, 1, "", "GetOne"], [15, 3, 1, "", "GetSome"], [15, 3, 1, "", "Subscribe"], [15, 3, 1, "", "SubscribeBatched"], [15, 3, 1, "", "SubscribeMeta"]], "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffService": [[15, 3, 1, "", "GetAll"], [15, 3, 1, "", "GetAllBatched"], [15, 3, 1, "", "GetMeta"], [15, 3, 1, "", "GetOne"], [15, 3, 1, "", "GetSome"], [15, 3, 1, "", "Subscribe"], [15, 3, 1, "", "SubscribeBatched"], [15, 3, 1, "", "SubscribeMeta"]], "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffServiceServicer": [[15, 3, 1, "", "GetAll"], [15, 3, 1, "", "GetAllBatched"], [15, 3, 1, "", "GetMeta"], [15, 3, 1, "", "GetOne"], [15, 3, 1, "", "GetSome"], [15, 3, 1, "", "Subscribe"], [15, 3, 1, "", "SubscribeBatched"], [15, 3, 1, "", "SubscribeMeta"]], "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffSummaryService": [[15, 3, 1, "", "GetAll"], [15, 3, 1, "", "GetAllBatched"], [15, 3, 1, "", "GetMeta"], [15, 3, 1, "", "GetOne"], [15, 3, 1, "", "GetSome"], [15, 3, 1, "", "Subscribe"], [15, 3, 1, "", "SubscribeBatched"], [15, 3, 1, "", "SubscribeMeta"]], "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileDiffSummaryServiceServicer": [[15, 3, 1, "", "GetAll"], [15, 3, 1, "", "GetAllBatched"], [15, 3, 1, "", "GetMeta"], [15, 3, 1, "", "GetOne"], [15, 3, 1, "", "GetSome"], [15, 3, 1, "", "Subscribe"], [15, 3, 1, "", "SubscribeBatched"], [15, 3, 1, "", "SubscribeMeta"]], "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileService": [[15, 3, 1, "", "GetAll"], [15, 3, 1, "", "GetAllBatched"], [15, 3, 1, "", "GetMeta"], [15, 3, 1, "", "GetOne"], [15, 3, 1, "", "GetSome"], [15, 3, 1, "", "Subscribe"], [15, 3, 1, "", "SubscribeBatched"], [15, 3, 1, "", "SubscribeMeta"]], "arista.configstatus.v1.services.gen_pb2_grpc.SecurityProfileServiceServicer": [[15, 3, 1, "", "GetAll"], [15, 3, 1, "", "GetAllBatched"], [15, 3, 1, "", "GetMeta"], [15, 3, 1, "", "GetOne"], [15, 3, 1, "", "GetSome"], [15, 3, 1, "", "Subscribe"], [15, 3, 1, "", "SubscribeBatched"], [15, 3, 1, "", "SubscribeMeta"]], "arista.configstatus.v1.services.gen_pb2_grpc.SummaryService": [[15, 3, 1, "", "GetAll"], [15, 3, 1, "", "GetAllBatched"], [15, 3, 1, "", "GetMeta"], [15, 3, 1, "", "GetOne"], [15, 3, 1, "", "GetSome"], [15, 3, 1, "", "Subscribe"], [15, 3, 1, "", "SubscribeBatched"], [15, 3, 1, "", "SubscribeMeta"]], "arista.configstatus.v1.services.gen_pb2_grpc.SummaryServiceServicer": [[15, 3, 1, "", "GetAll"], [15, 3, 1, "", "GetAllBatched"], [15, 3, 1, "", "GetMeta"], [15, 3, 1, "", "GetOne"], [15, 3, 1, "", "GetSome"], [15, 3, 1, "", "Subscribe"], [15, 3, 1, "", "SubscribeBatched"], [15, 3, 1, "", "SubscribeMeta"]], "arista.connectivitymonitor": [[17, 0, 0, "-", "v1"]], "arista.connectivitymonitor.v1": [[17, 0, 0, "-", "connectivitymonitor_pb2"], [17, 0, 0, "-", "connectivitymonitor_pb2_grpc"], [18, 0, 0, "-", "services"]], "arista.connectivitymonitor.v1.connectivitymonitor_pb2": [[17, 1, 1, "", "Probe"], [17, 1, 1, "", "ProbeKey"], [17, 1, 1, "", "ProbeStats"], [17, 1, 1, "", "ProbeStatsKey"]], "arista.connectivitymonitor.v1.connectivitymonitor_pb2.Probe": [[17, 2, 1, "", "DESCRIPTOR"]], "arista.connectivitymonitor.v1.connectivitymonitor_pb2.ProbeKey": [[17, 2, 1, "", "DESCRIPTOR"]], "arista.connectivitymonitor.v1.connectivitymonitor_pb2.ProbeStats": [[17, 2, 1, "", "DESCRIPTOR"]], "arista.connectivitymonitor.v1.connectivitymonitor_pb2.ProbeStatsKey": [[17, 2, 1, "", "DESCRIPTOR"]], "arista.connectivitymonitor.v1.services": [[18, 0, 0, "-", "gen_pb2"], [18, 0, 0, "-", "gen_pb2_grpc"]], "arista.connectivitymonitor.v1.services.gen_pb2": [[18, 1, 1, "", "MetaResponse"], [18, 1, 1, "", "ProbeBatchedStreamRequest"], [18, 1, 1, "", "ProbeBatchedStreamResponse"], [18, 1, 1, "", "ProbeRequest"], [18, 1, 1, "", "ProbeResponse"], [18, 1, 1, "", "ProbeSomeRequest"], [18, 1, 1, "", "ProbeSomeResponse"], [18, 1, 1, "", "ProbeStatsBatchedStreamRequest"], [18, 1, 1, "", "ProbeStatsBatchedStreamResponse"], [18, 1, 1, "", "ProbeStatsRequest"], [18, 1, 1, "", "ProbeStatsResponse"], [18, 1, 1, "", "ProbeStatsSomeRequest"], [18, 1, 1, "", "ProbeStatsSomeResponse"], [18, 1, 1, "", "ProbeStatsStreamRequest"], [18, 1, 1, "", "ProbeStatsStreamResponse"], [18, 1, 1, "", "ProbeStreamRequest"], [18, 1, 1, "", "ProbeStreamResponse"]], "arista.connectivitymonitor.v1.services.gen_pb2.MetaResponse": [[18, 2, 1, "", "DESCRIPTOR"]], "arista.connectivitymonitor.v1.services.gen_pb2.ProbeBatchedStreamRequest": [[18, 2, 1, "", "DESCRIPTOR"]], "arista.connectivitymonitor.v1.services.gen_pb2.ProbeBatchedStreamResponse": [[18, 2, 1, "", "DESCRIPTOR"]], "arista.connectivitymonitor.v1.services.gen_pb2.ProbeRequest": [[18, 2, 1, "", "DESCRIPTOR"]], "arista.connectivitymonitor.v1.services.gen_pb2.ProbeResponse": [[18, 2, 1, "", "DESCRIPTOR"]], "arista.connectivitymonitor.v1.services.gen_pb2.ProbeSomeRequest": [[18, 2, 1, "", "DESCRIPTOR"]], "arista.connectivitymonitor.v1.services.gen_pb2.ProbeSomeResponse": [[18, 2, 1, "", "DESCRIPTOR"]], "arista.connectivitymonitor.v1.services.gen_pb2.ProbeStatsBatchedStreamRequest": [[18, 2, 1, "", "DESCRIPTOR"]], "arista.connectivitymonitor.v1.services.gen_pb2.ProbeStatsBatchedStreamResponse": [[18, 2, 1, "", "DESCRIPTOR"]], "arista.connectivitymonitor.v1.services.gen_pb2.ProbeStatsRequest": [[18, 2, 1, "", "DESCRIPTOR"]], "arista.connectivitymonitor.v1.services.gen_pb2.ProbeStatsResponse": [[18, 2, 1, "", "DESCRIPTOR"]], "arista.connectivitymonitor.v1.services.gen_pb2.ProbeStatsSomeRequest": [[18, 2, 1, "", "DESCRIPTOR"]], "arista.connectivitymonitor.v1.services.gen_pb2.ProbeStatsSomeResponse": [[18, 2, 1, "", "DESCRIPTOR"]], "arista.connectivitymonitor.v1.services.gen_pb2.ProbeStatsStreamRequest": [[18, 2, 1, "", "DESCRIPTOR"]], "arista.connectivitymonitor.v1.services.gen_pb2.ProbeStatsStreamResponse": [[18, 2, 1, "", "DESCRIPTOR"]], "arista.connectivitymonitor.v1.services.gen_pb2.ProbeStreamRequest": [[18, 2, 1, "", "DESCRIPTOR"]], "arista.connectivitymonitor.v1.services.gen_pb2.ProbeStreamResponse": [[18, 2, 1, "", "DESCRIPTOR"]], "arista.connectivitymonitor.v1.services.gen_pb2_grpc": [[18, 1, 1, "", "ProbeService"], [18, 1, 1, "", "ProbeServiceServicer"], [18, 1, 1, "", "ProbeServiceStub"], [18, 1, 1, "", "ProbeStatsService"], [18, 1, 1, "", "ProbeStatsServiceServicer"], [18, 1, 1, "", "ProbeStatsServiceStub"], [18, 4, 1, "", "add_ProbeServiceServicer_to_server"], [18, 4, 1, "", "add_ProbeStatsServiceServicer_to_server"]], "arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeService": [[18, 3, 1, "", "GetAll"], [18, 3, 1, "", "GetAllBatched"], [18, 3, 1, "", "GetMeta"], [18, 3, 1, "", "GetOne"], [18, 3, 1, "", "GetSome"], [18, 3, 1, "", "Subscribe"], [18, 3, 1, "", "SubscribeBatched"], [18, 3, 1, "", "SubscribeMeta"]], "arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeServiceServicer": [[18, 3, 1, "", "GetAll"], [18, 3, 1, "", "GetAllBatched"], [18, 3, 1, "", "GetMeta"], [18, 3, 1, "", "GetOne"], [18, 3, 1, "", "GetSome"], [18, 3, 1, "", "Subscribe"], [18, 3, 1, "", "SubscribeBatched"], [18, 3, 1, "", "SubscribeMeta"]], "arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeStatsService": [[18, 3, 1, "", "GetAll"], [18, 3, 1, "", "GetAllBatched"], [18, 3, 1, "", "GetMeta"], [18, 3, 1, "", "GetOne"], [18, 3, 1, "", "GetSome"], [18, 3, 1, "", "Subscribe"], [18, 3, 1, "", "SubscribeBatched"], [18, 3, 1, "", "SubscribeMeta"]], "arista.connectivitymonitor.v1.services.gen_pb2_grpc.ProbeStatsServiceServicer": [[18, 3, 1, "", "GetAll"], [18, 3, 1, "", "GetAllBatched"], [18, 3, 1, "", "GetMeta"], [18, 3, 1, "", "GetOne"], [18, 3, 1, "", "GetSome"], [18, 3, 1, "", "Subscribe"], [18, 3, 1, "", "SubscribeBatched"], [18, 3, 1, "", "SubscribeMeta"]], "arista.dashboard": [[20, 0, 0, "-", "v1"]], "arista.dashboard.v1": [[20, 0, 0, "-", "dashboard_pb2"], [20, 0, 0, "-", "dashboard_pb2_grpc"], [21, 0, 0, "-", "services"]], "arista.dashboard.v1.dashboard_pb2": [[20, 1, 1, "", "Dashboard"], [20, 1, 1, "", "DashboardConfig"], [20, 1, 1, "", "DashboardKey"], [20, 1, 1, "", "DashboardMetadata"], [20, 1, 1, "", "Dimensions"], [20, 1, 1, "", "Filter"], [20, 1, 1, "", "GlobalDashboardConfig"], [20, 1, 1, "", "Position"], [20, 1, 1, "", "Widget"], [20, 1, 1, "", "WidgetStyles"], [20, 1, 1, "", "Widgets"]], "arista.dashboard.v1.dashboard_pb2.Dashboard": [[20, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.dashboard_pb2.DashboardConfig": [[20, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.dashboard_pb2.DashboardKey": [[20, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.dashboard_pb2.DashboardMetadata": [[20, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.dashboard_pb2.Dimensions": [[20, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.dashboard_pb2.Filter": [[20, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.dashboard_pb2.GlobalDashboardConfig": [[20, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.dashboard_pb2.Position": [[20, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.dashboard_pb2.Widget": [[20, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.dashboard_pb2.WidgetStyles": [[20, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.dashboard_pb2.Widgets": [[20, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.services": [[21, 0, 0, "-", "gen_pb2"], [21, 0, 0, "-", "gen_pb2_grpc"]], "arista.dashboard.v1.services.gen_pb2": [[21, 1, 1, "", "DashboardBatchedStreamRequest"], [21, 1, 1, "", "DashboardBatchedStreamResponse"], [21, 1, 1, "", "DashboardConfigBatchedStreamRequest"], [21, 1, 1, "", "DashboardConfigBatchedStreamResponse"], [21, 1, 1, "", "DashboardConfigDeleteAllRequest"], [21, 1, 1, "", "DashboardConfigDeleteAllResponse"], [21, 1, 1, "", "DashboardConfigDeleteRequest"], [21, 1, 1, "", "DashboardConfigDeleteResponse"], [21, 1, 1, "", "DashboardConfigDeleteSomeRequest"], [21, 1, 1, "", "DashboardConfigDeleteSomeResponse"], [21, 1, 1, "", "DashboardConfigRequest"], [21, 1, 1, "", "DashboardConfigResponse"], [21, 1, 1, "", "DashboardConfigSetRequest"], [21, 1, 1, "", "DashboardConfigSetResponse"], [21, 1, 1, "", "DashboardConfigSetSomeRequest"], [21, 1, 1, "", "DashboardConfigSetSomeResponse"], [21, 1, 1, "", "DashboardConfigSomeRequest"], [21, 1, 1, "", "DashboardConfigSomeResponse"], [21, 1, 1, "", "DashboardConfigStreamRequest"], [21, 1, 1, "", "DashboardConfigStreamResponse"], [21, 1, 1, "", "DashboardRequest"], [21, 1, 1, "", "DashboardResponse"], [21, 1, 1, "", "DashboardSomeRequest"], [21, 1, 1, "", "DashboardSomeResponse"], [21, 1, 1, "", "DashboardStreamRequest"], [21, 1, 1, "", "DashboardStreamResponse"], [21, 1, 1, "", "GlobalDashboardConfigBatchedStreamRequest"], [21, 1, 1, "", "GlobalDashboardConfigBatchedStreamResponse"], [21, 1, 1, "", "GlobalDashboardConfigRequest"], [21, 1, 1, "", "GlobalDashboardConfigResponse"], [21, 1, 1, "", "GlobalDashboardConfigSetRequest"], [21, 1, 1, "", "GlobalDashboardConfigSetResponse"], [21, 1, 1, "", "GlobalDashboardConfigStreamRequest"], [21, 1, 1, "", "GlobalDashboardConfigStreamResponse"], [21, 1, 1, "", "MetaResponse"]], "arista.dashboard.v1.services.gen_pb2.DashboardBatchedStreamRequest": [[21, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.services.gen_pb2.DashboardBatchedStreamResponse": [[21, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.services.gen_pb2.DashboardConfigBatchedStreamRequest": [[21, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.services.gen_pb2.DashboardConfigBatchedStreamResponse": [[21, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.services.gen_pb2.DashboardConfigDeleteAllRequest": [[21, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.services.gen_pb2.DashboardConfigDeleteAllResponse": [[21, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.services.gen_pb2.DashboardConfigDeleteRequest": [[21, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.services.gen_pb2.DashboardConfigDeleteResponse": [[21, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.services.gen_pb2.DashboardConfigDeleteSomeRequest": [[21, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.services.gen_pb2.DashboardConfigDeleteSomeResponse": [[21, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.services.gen_pb2.DashboardConfigRequest": [[21, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.services.gen_pb2.DashboardConfigResponse": [[21, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.services.gen_pb2.DashboardConfigSetRequest": [[21, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.services.gen_pb2.DashboardConfigSetResponse": [[21, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.services.gen_pb2.DashboardConfigSetSomeRequest": [[21, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.services.gen_pb2.DashboardConfigSetSomeResponse": [[21, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.services.gen_pb2.DashboardConfigSomeRequest": [[21, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.services.gen_pb2.DashboardConfigSomeResponse": [[21, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.services.gen_pb2.DashboardConfigStreamRequest": [[21, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.services.gen_pb2.DashboardConfigStreamResponse": [[21, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.services.gen_pb2.DashboardRequest": [[21, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.services.gen_pb2.DashboardResponse": [[21, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.services.gen_pb2.DashboardSomeRequest": [[21, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.services.gen_pb2.DashboardSomeResponse": [[21, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.services.gen_pb2.DashboardStreamRequest": [[21, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.services.gen_pb2.DashboardStreamResponse": [[21, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.services.gen_pb2.GlobalDashboardConfigBatchedStreamRequest": [[21, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.services.gen_pb2.GlobalDashboardConfigBatchedStreamResponse": [[21, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.services.gen_pb2.GlobalDashboardConfigRequest": [[21, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.services.gen_pb2.GlobalDashboardConfigResponse": [[21, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.services.gen_pb2.GlobalDashboardConfigSetRequest": [[21, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.services.gen_pb2.GlobalDashboardConfigSetResponse": [[21, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.services.gen_pb2.GlobalDashboardConfigStreamRequest": [[21, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.services.gen_pb2.GlobalDashboardConfigStreamResponse": [[21, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.services.gen_pb2.MetaResponse": [[21, 2, 1, "", "DESCRIPTOR"]], "arista.dashboard.v1.services.gen_pb2_grpc": [[21, 1, 1, "", "DashboardConfigService"], [21, 1, 1, "", "DashboardConfigServiceServicer"], [21, 1, 1, "", "DashboardConfigServiceStub"], [21, 1, 1, "", "DashboardService"], [21, 1, 1, "", "DashboardServiceServicer"], [21, 1, 1, "", "DashboardServiceStub"], [21, 1, 1, "", "GlobalDashboardConfigService"], [21, 1, 1, "", "GlobalDashboardConfigServiceServicer"], [21, 1, 1, "", "GlobalDashboardConfigServiceStub"], [21, 4, 1, "", "add_DashboardConfigServiceServicer_to_server"], [21, 4, 1, "", "add_DashboardServiceServicer_to_server"], [21, 4, 1, "", "add_GlobalDashboardConfigServiceServicer_to_server"]], "arista.dashboard.v1.services.gen_pb2_grpc.DashboardConfigService": [[21, 3, 1, "", "Delete"], [21, 3, 1, "", "DeleteAll"], [21, 3, 1, "", "DeleteSome"], [21, 3, 1, "", "GetAll"], [21, 3, 1, "", "GetAllBatched"], [21, 3, 1, "", "GetMeta"], [21, 3, 1, "", "GetOne"], [21, 3, 1, "", "GetSome"], [21, 3, 1, "", "Set"], [21, 3, 1, "", "SetSome"], [21, 3, 1, "", "Subscribe"], [21, 3, 1, "", "SubscribeBatched"], [21, 3, 1, "", "SubscribeMeta"]], "arista.dashboard.v1.services.gen_pb2_grpc.DashboardConfigServiceServicer": [[21, 3, 1, "", "Delete"], [21, 3, 1, "", "DeleteAll"], [21, 3, 1, "", "DeleteSome"], [21, 3, 1, "", "GetAll"], [21, 3, 1, "", "GetAllBatched"], [21, 3, 1, "", "GetMeta"], [21, 3, 1, "", "GetOne"], [21, 3, 1, "", "GetSome"], [21, 3, 1, "", "Set"], [21, 3, 1, "", "SetSome"], [21, 3, 1, "", "Subscribe"], [21, 3, 1, "", "SubscribeBatched"], [21, 3, 1, "", "SubscribeMeta"]], "arista.dashboard.v1.services.gen_pb2_grpc.DashboardService": [[21, 3, 1, "", "GetAll"], [21, 3, 1, "", "GetAllBatched"], [21, 3, 1, "", "GetMeta"], [21, 3, 1, "", "GetOne"], [21, 3, 1, "", "GetSome"], [21, 3, 1, "", "Subscribe"], [21, 3, 1, "", "SubscribeBatched"], [21, 3, 1, "", "SubscribeMeta"]], "arista.dashboard.v1.services.gen_pb2_grpc.DashboardServiceServicer": [[21, 3, 1, "", "GetAll"], [21, 3, 1, "", "GetAllBatched"], [21, 3, 1, "", "GetMeta"], [21, 3, 1, "", "GetOne"], [21, 3, 1, "", "GetSome"], [21, 3, 1, "", "Subscribe"], [21, 3, 1, "", "SubscribeBatched"], [21, 3, 1, "", "SubscribeMeta"]], "arista.dashboard.v1.services.gen_pb2_grpc.GlobalDashboardConfigService": [[21, 3, 1, "", "GetAll"], [21, 3, 1, "", "GetAllBatched"], [21, 3, 1, "", "GetOne"], [21, 3, 1, "", "Set"], [21, 3, 1, "", "Subscribe"], [21, 3, 1, "", "SubscribeBatched"], [21, 3, 1, "", "SubscribeMeta"]], "arista.dashboard.v1.services.gen_pb2_grpc.GlobalDashboardConfigServiceServicer": [[21, 3, 1, "", "GetAll"], [21, 3, 1, "", "GetAllBatched"], [21, 3, 1, "", "GetOne"], [21, 3, 1, "", "Set"], [21, 3, 1, "", "Subscribe"], [21, 3, 1, "", "SubscribeBatched"], [21, 3, 1, "", "SubscribeMeta"]], "arista.endpointlocation": [[23, 0, 0, "-", "v1"]], "arista.endpointlocation.v1": [[23, 0, 0, "-", "endpointlocation_pb2"], [23, 0, 0, "-", "endpointlocation_pb2_grpc"], [24, 0, 0, "-", "services"]], "arista.endpointlocation.v1.endpointlocation_pb2": [[23, 1, 1, "", "Device"], [23, 1, 1, "", "DeviceInfo"], [23, 1, 1, "", "DeviceMap"], [23, 1, 1, "", "EndpointLocation"], [23, 1, 1, "", "EndpointLocationKey"], [23, 1, 1, "", "ExplanationList"], [23, 1, 1, "", "Identifier"], [23, 1, 1, "", "IdentifierList"], [23, 1, 1, "", "IdentifierSourceList"], [23, 1, 1, "", "Location"], [23, 1, 1, "", "LocationList"]], "arista.endpointlocation.v1.endpointlocation_pb2.Device": [[23, 2, 1, "", "DESCRIPTOR"]], "arista.endpointlocation.v1.endpointlocation_pb2.DeviceInfo": [[23, 2, 1, "", "DESCRIPTOR"]], "arista.endpointlocation.v1.endpointlocation_pb2.DeviceMap": [[23, 2, 1, "", "DESCRIPTOR"], [23, 1, 1, "", "ValuesEntry"]], "arista.endpointlocation.v1.endpointlocation_pb2.DeviceMap.ValuesEntry": [[23, 2, 1, "", "DESCRIPTOR"]], "arista.endpointlocation.v1.endpointlocation_pb2.EndpointLocation": [[23, 2, 1, "", "DESCRIPTOR"]], "arista.endpointlocation.v1.endpointlocation_pb2.EndpointLocationKey": [[23, 2, 1, "", "DESCRIPTOR"]], "arista.endpointlocation.v1.endpointlocation_pb2.ExplanationList": [[23, 2, 1, "", "DESCRIPTOR"]], "arista.endpointlocation.v1.endpointlocation_pb2.Identifier": [[23, 2, 1, "", "DESCRIPTOR"]], "arista.endpointlocation.v1.endpointlocation_pb2.IdentifierList": [[23, 2, 1, "", "DESCRIPTOR"]], "arista.endpointlocation.v1.endpointlocation_pb2.IdentifierSourceList": [[23, 2, 1, "", "DESCRIPTOR"]], "arista.endpointlocation.v1.endpointlocation_pb2.Location": [[23, 2, 1, "", "DESCRIPTOR"]], "arista.endpointlocation.v1.endpointlocation_pb2.LocationList": [[23, 2, 1, "", "DESCRIPTOR"]], "arista.endpointlocation.v1.services": [[24, 0, 0, "-", "gen_pb2"], [24, 0, 0, "-", "gen_pb2_grpc"]], "arista.endpointlocation.v1.services.gen_pb2": [[24, 1, 1, "", "EndpointLocationBatchedStreamRequest"], [24, 1, 1, "", "EndpointLocationBatchedStreamResponse"], [24, 1, 1, "", "EndpointLocationRequest"], [24, 1, 1, "", "EndpointLocationResponse"], [24, 1, 1, "", "EndpointLocationSomeRequest"], [24, 1, 1, "", "EndpointLocationSomeResponse"], [24, 1, 1, "", "EndpointLocationStreamRequest"], [24, 1, 1, "", "EndpointLocationStreamResponse"], [24, 1, 1, "", "MetaResponse"]], "arista.endpointlocation.v1.services.gen_pb2.EndpointLocationBatchedStreamRequest": [[24, 2, 1, "", "DESCRIPTOR"]], "arista.endpointlocation.v1.services.gen_pb2.EndpointLocationBatchedStreamResponse": [[24, 2, 1, "", "DESCRIPTOR"]], "arista.endpointlocation.v1.services.gen_pb2.EndpointLocationRequest": [[24, 2, 1, "", "DESCRIPTOR"]], "arista.endpointlocation.v1.services.gen_pb2.EndpointLocationResponse": [[24, 2, 1, "", "DESCRIPTOR"]], "arista.endpointlocation.v1.services.gen_pb2.EndpointLocationSomeRequest": [[24, 2, 1, "", "DESCRIPTOR"]], "arista.endpointlocation.v1.services.gen_pb2.EndpointLocationSomeResponse": [[24, 2, 1, "", "DESCRIPTOR"]], "arista.endpointlocation.v1.services.gen_pb2.EndpointLocationStreamRequest": [[24, 2, 1, "", "DESCRIPTOR"]], "arista.endpointlocation.v1.services.gen_pb2.EndpointLocationStreamResponse": [[24, 2, 1, "", "DESCRIPTOR"]], "arista.endpointlocation.v1.services.gen_pb2.MetaResponse": [[24, 2, 1, "", "DESCRIPTOR"]], "arista.endpointlocation.v1.services.gen_pb2_grpc": [[24, 1, 1, "", "EndpointLocationService"], [24, 1, 1, "", "EndpointLocationServiceServicer"], [24, 1, 1, "", "EndpointLocationServiceStub"], [24, 4, 1, "", "add_EndpointLocationServiceServicer_to_server"]], "arista.endpointlocation.v1.services.gen_pb2_grpc.EndpointLocationService": [[24, 3, 1, "", "GetAll"], [24, 3, 1, "", "GetAllBatched"], [24, 3, 1, "", "GetMeta"], [24, 3, 1, "", "GetOne"], [24, 3, 1, "", "GetSome"], [24, 3, 1, "", "Subscribe"], [24, 3, 1, "", "SubscribeBatched"], [24, 3, 1, "", "SubscribeMeta"]], "arista.endpointlocation.v1.services.gen_pb2_grpc.EndpointLocationServiceServicer": [[24, 3, 1, "", "GetAll"], [24, 3, 1, "", "GetAllBatched"], [24, 3, 1, "", "GetMeta"], [24, 3, 1, "", "GetOne"], [24, 3, 1, "", "GetSome"], [24, 3, 1, "", "Subscribe"], [24, 3, 1, "", "SubscribeBatched"], [24, 3, 1, "", "SubscribeMeta"]], "arista.event": [[26, 0, 0, "-", "v1"]], "arista.event.v1": [[26, 0, 0, "-", "event_pb2"], [26, 0, 0, "-", "event_pb2_grpc"], [27, 0, 0, "-", "services"]], "arista.event.v1.event_pb2": [[26, 1, 1, "", "Event"], [26, 1, 1, "", "EventAck"], [26, 1, 1, "", "EventAnnotationConfig"], [26, 1, 1, "", "EventComponent"], [26, 1, 1, "", "EventComponents"], [26, 1, 1, "", "EventData"], [26, 1, 1, "", "EventKey"], [26, 1, 1, "", "EventNote"], [26, 1, 1, "", "EventNoteConfig"], [26, 1, 1, "", "EventNotes"], [26, 1, 1, "", "EventNotesConfig"], [26, 1, 1, "", "EventRead"], [26, 1, 1, "", "UserEventCreationConfig"], [26, 1, 1, "", "UserEventCreationKey"]], "arista.event.v1.event_pb2.Event": [[26, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.event_pb2.EventAck": [[26, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.event_pb2.EventAnnotationConfig": [[26, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.event_pb2.EventComponent": [[26, 1, 1, "", "ComponentsEntry"], [26, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.event_pb2.EventComponent.ComponentsEntry": [[26, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.event_pb2.EventComponents": [[26, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.event_pb2.EventData": [[26, 2, 1, "", "DESCRIPTOR"], [26, 1, 1, "", "DataEntry"]], "arista.event.v1.event_pb2.EventData.DataEntry": [[26, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.event_pb2.EventKey": [[26, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.event_pb2.EventNote": [[26, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.event_pb2.EventNoteConfig": [[26, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.event_pb2.EventNotes": [[26, 2, 1, "", "DESCRIPTOR"], [26, 1, 1, "", "NotesEntry"]], "arista.event.v1.event_pb2.EventNotes.NotesEntry": [[26, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.event_pb2.EventNotesConfig": [[26, 2, 1, "", "DESCRIPTOR"], [26, 1, 1, "", "NotesEntry"]], "arista.event.v1.event_pb2.EventNotesConfig.NotesEntry": [[26, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.event_pb2.EventRead": [[26, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.event_pb2.UserEventCreationConfig": [[26, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.event_pb2.UserEventCreationKey": [[26, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.services": [[27, 0, 0, "-", "gen_pb2"], [27, 0, 0, "-", "gen_pb2_grpc"]], "arista.event.v1.services.gen_pb2": [[27, 1, 1, "", "EventAnnotationConfigDeleteAllRequest"], [27, 1, 1, "", "EventAnnotationConfigDeleteAllResponse"], [27, 1, 1, "", "EventAnnotationConfigDeleteRequest"], [27, 1, 1, "", "EventAnnotationConfigDeleteResponse"], [27, 1, 1, "", "EventAnnotationConfigDeleteSomeRequest"], [27, 1, 1, "", "EventAnnotationConfigDeleteSomeResponse"], [27, 1, 1, "", "EventAnnotationConfigRequest"], [27, 1, 1, "", "EventAnnotationConfigResponse"], [27, 1, 1, "", "EventAnnotationConfigSetRequest"], [27, 1, 1, "", "EventAnnotationConfigSetResponse"], [27, 1, 1, "", "EventAnnotationConfigSetSomeRequest"], [27, 1, 1, "", "EventAnnotationConfigSetSomeResponse"], [27, 1, 1, "", "EventAnnotationConfigSomeRequest"], [27, 1, 1, "", "EventAnnotationConfigSomeResponse"], [27, 1, 1, "", "EventAnnotationConfigStreamRequest"], [27, 1, 1, "", "EventAnnotationConfigStreamResponse"], [27, 1, 1, "", "EventRequest"], [27, 1, 1, "", "EventResponse"], [27, 1, 1, "", "EventSomeRequest"], [27, 1, 1, "", "EventSomeResponse"], [27, 1, 1, "", "EventStreamRequest"], [27, 1, 1, "", "EventStreamResponse"], [27, 1, 1, "", "MetaResponse"], [27, 1, 1, "", "UserEventCreationConfigDeleteAllRequest"], [27, 1, 1, "", "UserEventCreationConfigDeleteAllResponse"], [27, 1, 1, "", "UserEventCreationConfigDeleteRequest"], [27, 1, 1, "", "UserEventCreationConfigDeleteResponse"], [27, 1, 1, "", "UserEventCreationConfigDeleteSomeRequest"], [27, 1, 1, "", "UserEventCreationConfigDeleteSomeResponse"], [27, 1, 1, "", "UserEventCreationConfigRequest"], [27, 1, 1, "", "UserEventCreationConfigResponse"], [27, 1, 1, "", "UserEventCreationConfigSetRequest"], [27, 1, 1, "", "UserEventCreationConfigSetResponse"], [27, 1, 1, "", "UserEventCreationConfigSetSomeRequest"], [27, 1, 1, "", "UserEventCreationConfigSetSomeResponse"], [27, 1, 1, "", "UserEventCreationConfigSomeRequest"], [27, 1, 1, "", "UserEventCreationConfigSomeResponse"], [27, 1, 1, "", "UserEventCreationConfigStreamRequest"], [27, 1, 1, "", "UserEventCreationConfigStreamResponse"]], "arista.event.v1.services.gen_pb2.EventAnnotationConfigDeleteAllRequest": [[27, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.services.gen_pb2.EventAnnotationConfigDeleteAllResponse": [[27, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.services.gen_pb2.EventAnnotationConfigDeleteRequest": [[27, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.services.gen_pb2.EventAnnotationConfigDeleteResponse": [[27, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.services.gen_pb2.EventAnnotationConfigDeleteSomeRequest": [[27, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.services.gen_pb2.EventAnnotationConfigDeleteSomeResponse": [[27, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.services.gen_pb2.EventAnnotationConfigRequest": [[27, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.services.gen_pb2.EventAnnotationConfigResponse": [[27, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.services.gen_pb2.EventAnnotationConfigSetRequest": [[27, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.services.gen_pb2.EventAnnotationConfigSetResponse": [[27, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.services.gen_pb2.EventAnnotationConfigSetSomeRequest": [[27, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.services.gen_pb2.EventAnnotationConfigSetSomeResponse": [[27, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.services.gen_pb2.EventAnnotationConfigSomeRequest": [[27, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.services.gen_pb2.EventAnnotationConfigSomeResponse": [[27, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.services.gen_pb2.EventAnnotationConfigStreamRequest": [[27, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.services.gen_pb2.EventAnnotationConfigStreamResponse": [[27, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.services.gen_pb2.EventRequest": [[27, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.services.gen_pb2.EventResponse": [[27, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.services.gen_pb2.EventSomeRequest": [[27, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.services.gen_pb2.EventSomeResponse": [[27, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.services.gen_pb2.EventStreamRequest": [[27, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.services.gen_pb2.EventStreamResponse": [[27, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.services.gen_pb2.MetaResponse": [[27, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.services.gen_pb2.UserEventCreationConfigDeleteAllRequest": [[27, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.services.gen_pb2.UserEventCreationConfigDeleteAllResponse": [[27, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.services.gen_pb2.UserEventCreationConfigDeleteRequest": [[27, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.services.gen_pb2.UserEventCreationConfigDeleteResponse": [[27, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.services.gen_pb2.UserEventCreationConfigDeleteSomeRequest": [[27, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.services.gen_pb2.UserEventCreationConfigDeleteSomeResponse": [[27, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.services.gen_pb2.UserEventCreationConfigRequest": [[27, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.services.gen_pb2.UserEventCreationConfigResponse": [[27, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.services.gen_pb2.UserEventCreationConfigSetRequest": [[27, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.services.gen_pb2.UserEventCreationConfigSetResponse": [[27, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.services.gen_pb2.UserEventCreationConfigSetSomeRequest": [[27, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.services.gen_pb2.UserEventCreationConfigSetSomeResponse": [[27, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.services.gen_pb2.UserEventCreationConfigSomeRequest": [[27, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.services.gen_pb2.UserEventCreationConfigSomeResponse": [[27, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.services.gen_pb2.UserEventCreationConfigStreamRequest": [[27, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.services.gen_pb2.UserEventCreationConfigStreamResponse": [[27, 2, 1, "", "DESCRIPTOR"]], "arista.event.v1.services.gen_pb2_grpc": [[27, 1, 1, "", "EventAnnotationConfigService"], [27, 1, 1, "", "EventAnnotationConfigServiceServicer"], [27, 1, 1, "", "EventAnnotationConfigServiceStub"], [27, 1, 1, "", "EventService"], [27, 1, 1, "", "EventServiceServicer"], [27, 1, 1, "", "EventServiceStub"], [27, 1, 1, "", "UserEventCreationConfigService"], [27, 1, 1, "", "UserEventCreationConfigServiceServicer"], [27, 1, 1, "", "UserEventCreationConfigServiceStub"], [27, 4, 1, "", "add_EventAnnotationConfigServiceServicer_to_server"], [27, 4, 1, "", "add_EventServiceServicer_to_server"], [27, 4, 1, "", "add_UserEventCreationConfigServiceServicer_to_server"]], "arista.event.v1.services.gen_pb2_grpc.EventAnnotationConfigService": [[27, 3, 1, "", "Delete"], [27, 3, 1, "", "DeleteAll"], [27, 3, 1, "", "DeleteSome"], [27, 3, 1, "", "GetAll"], [27, 3, 1, "", "GetMeta"], [27, 3, 1, "", "GetOne"], [27, 3, 1, "", "GetSome"], [27, 3, 1, "", "Set"], [27, 3, 1, "", "SetSome"], [27, 3, 1, "", "Subscribe"], [27, 3, 1, "", "SubscribeMeta"]], "arista.event.v1.services.gen_pb2_grpc.EventAnnotationConfigServiceServicer": [[27, 3, 1, "", "Delete"], [27, 3, 1, "", "DeleteAll"], [27, 3, 1, "", "DeleteSome"], [27, 3, 1, "", "GetAll"], [27, 3, 1, "", "GetMeta"], [27, 3, 1, "", "GetOne"], [27, 3, 1, "", "GetSome"], [27, 3, 1, "", "Set"], [27, 3, 1, "", "SetSome"], [27, 3, 1, "", "Subscribe"], [27, 3, 1, "", "SubscribeMeta"]], "arista.event.v1.services.gen_pb2_grpc.EventService": [[27, 3, 1, "", "GetAll"], [27, 3, 1, "", "GetMeta"], [27, 3, 1, "", "GetOne"], [27, 3, 1, "", "GetSome"], [27, 3, 1, "", "Subscribe"], [27, 3, 1, "", "SubscribeMeta"]], "arista.event.v1.services.gen_pb2_grpc.EventServiceServicer": [[27, 3, 1, "", "GetAll"], [27, 3, 1, "", "GetMeta"], [27, 3, 1, "", "GetOne"], [27, 3, 1, "", "GetSome"], [27, 3, 1, "", "Subscribe"], [27, 3, 1, "", "SubscribeMeta"]], "arista.event.v1.services.gen_pb2_grpc.UserEventCreationConfigService": [[27, 3, 1, "", "Delete"], [27, 3, 1, "", "DeleteAll"], [27, 3, 1, "", "DeleteSome"], [27, 3, 1, "", "GetAll"], [27, 3, 1, "", "GetMeta"], [27, 3, 1, "", "GetOne"], [27, 3, 1, "", "GetSome"], [27, 3, 1, "", "Set"], [27, 3, 1, "", "SetSome"], [27, 3, 1, "", "Subscribe"], [27, 3, 1, "", "SubscribeMeta"]], "arista.event.v1.services.gen_pb2_grpc.UserEventCreationConfigServiceServicer": [[27, 3, 1, "", "Delete"], [27, 3, 1, "", "DeleteAll"], [27, 3, 1, "", "DeleteSome"], [27, 3, 1, "", "GetAll"], [27, 3, 1, "", "GetMeta"], [27, 3, 1, "", "GetOne"], [27, 3, 1, "", "GetSome"], [27, 3, 1, "", "Set"], [27, 3, 1, "", "SetSome"], [27, 3, 1, "", "Subscribe"], [27, 3, 1, "", "SubscribeMeta"]], "arista.identityprovider": [[29, 0, 0, "-", "v1"]], "arista.identityprovider.v1": [[29, 0, 0, "-", "identityprovider_pb2"], [29, 0, 0, "-", "identityprovider_pb2_grpc"], [30, 0, 0, "-", "services"]], "arista.identityprovider.v1.identityprovider_pb2": [[29, 1, 1, "", "OAuthConfig"], [29, 1, 1, "", "OAuthKey"], [29, 1, 1, "", "SAMLConfig"], [29, 1, 1, "", "SAMLKey"]], "arista.identityprovider.v1.identityprovider_pb2.OAuthConfig": [[29, 2, 1, "", "DESCRIPTOR"]], "arista.identityprovider.v1.identityprovider_pb2.OAuthKey": [[29, 2, 1, "", "DESCRIPTOR"]], "arista.identityprovider.v1.identityprovider_pb2.SAMLConfig": [[29, 2, 1, "", "DESCRIPTOR"]], "arista.identityprovider.v1.identityprovider_pb2.SAMLKey": [[29, 2, 1, "", "DESCRIPTOR"]], "arista.identityprovider.v1.services": [[30, 0, 0, "-", "gen_pb2"], [30, 0, 0, "-", "gen_pb2_grpc"]], "arista.identityprovider.v1.services.gen_pb2": [[30, 1, 1, "", "MetaResponse"], [30, 1, 1, "", "OAuthConfigBatchedStreamRequest"], [30, 1, 1, "", "OAuthConfigBatchedStreamResponse"], [30, 1, 1, "", "OAuthConfigDeleteAllRequest"], [30, 1, 1, "", "OAuthConfigDeleteAllResponse"], [30, 1, 1, "", "OAuthConfigDeleteRequest"], [30, 1, 1, "", "OAuthConfigDeleteResponse"], [30, 1, 1, "", "OAuthConfigDeleteSomeRequest"], [30, 1, 1, "", "OAuthConfigDeleteSomeResponse"], [30, 1, 1, "", "OAuthConfigRequest"], [30, 1, 1, "", "OAuthConfigResponse"], [30, 1, 1, "", "OAuthConfigSetRequest"], [30, 1, 1, "", "OAuthConfigSetResponse"], [30, 1, 1, "", "OAuthConfigSetSomeRequest"], [30, 1, 1, "", "OAuthConfigSetSomeResponse"], [30, 1, 1, "", "OAuthConfigSomeRequest"], [30, 1, 1, "", "OAuthConfigSomeResponse"], [30, 1, 1, "", "OAuthConfigStreamRequest"], [30, 1, 1, "", "OAuthConfigStreamResponse"], [30, 1, 1, "", "SAMLConfigBatchedStreamRequest"], [30, 1, 1, "", "SAMLConfigBatchedStreamResponse"], [30, 1, 1, "", "SAMLConfigDeleteAllRequest"], [30, 1, 1, "", "SAMLConfigDeleteAllResponse"], [30, 1, 1, "", "SAMLConfigDeleteRequest"], [30, 1, 1, "", "SAMLConfigDeleteResponse"], [30, 1, 1, "", "SAMLConfigDeleteSomeRequest"], [30, 1, 1, "", "SAMLConfigDeleteSomeResponse"], [30, 1, 1, "", "SAMLConfigRequest"], [30, 1, 1, "", "SAMLConfigResponse"], [30, 1, 1, "", "SAMLConfigSetRequest"], [30, 1, 1, "", "SAMLConfigSetResponse"], [30, 1, 1, "", "SAMLConfigSetSomeRequest"], [30, 1, 1, "", "SAMLConfigSetSomeResponse"], [30, 1, 1, "", "SAMLConfigSomeRequest"], [30, 1, 1, "", "SAMLConfigSomeResponse"], [30, 1, 1, "", "SAMLConfigStreamRequest"], [30, 1, 1, "", "SAMLConfigStreamResponse"]], "arista.identityprovider.v1.services.gen_pb2.MetaResponse": [[30, 2, 1, "", "DESCRIPTOR"]], "arista.identityprovider.v1.services.gen_pb2.OAuthConfigBatchedStreamRequest": [[30, 2, 1, "", "DESCRIPTOR"]], "arista.identityprovider.v1.services.gen_pb2.OAuthConfigBatchedStreamResponse": [[30, 2, 1, "", "DESCRIPTOR"]], "arista.identityprovider.v1.services.gen_pb2.OAuthConfigDeleteAllRequest": [[30, 2, 1, "", "DESCRIPTOR"]], "arista.identityprovider.v1.services.gen_pb2.OAuthConfigDeleteAllResponse": [[30, 2, 1, "", "DESCRIPTOR"]], "arista.identityprovider.v1.services.gen_pb2.OAuthConfigDeleteRequest": [[30, 2, 1, "", "DESCRIPTOR"]], "arista.identityprovider.v1.services.gen_pb2.OAuthConfigDeleteResponse": [[30, 2, 1, "", "DESCRIPTOR"]], "arista.identityprovider.v1.services.gen_pb2.OAuthConfigDeleteSomeRequest": [[30, 2, 1, "", "DESCRIPTOR"]], "arista.identityprovider.v1.services.gen_pb2.OAuthConfigDeleteSomeResponse": [[30, 2, 1, "", "DESCRIPTOR"]], "arista.identityprovider.v1.services.gen_pb2.OAuthConfigRequest": [[30, 2, 1, "", "DESCRIPTOR"]], "arista.identityprovider.v1.services.gen_pb2.OAuthConfigResponse": [[30, 2, 1, "", "DESCRIPTOR"]], "arista.identityprovider.v1.services.gen_pb2.OAuthConfigSetRequest": [[30, 2, 1, "", "DESCRIPTOR"]], "arista.identityprovider.v1.services.gen_pb2.OAuthConfigSetResponse": [[30, 2, 1, "", "DESCRIPTOR"]], "arista.identityprovider.v1.services.gen_pb2.OAuthConfigSetSomeRequest": [[30, 2, 1, "", "DESCRIPTOR"]], "arista.identityprovider.v1.services.gen_pb2.OAuthConfigSetSomeResponse": [[30, 2, 1, "", "DESCRIPTOR"]], "arista.identityprovider.v1.services.gen_pb2.OAuthConfigSomeRequest": [[30, 2, 1, "", "DESCRIPTOR"]], "arista.identityprovider.v1.services.gen_pb2.OAuthConfigSomeResponse": [[30, 2, 1, "", "DESCRIPTOR"]], "arista.identityprovider.v1.services.gen_pb2.OAuthConfigStreamRequest": [[30, 2, 1, "", "DESCRIPTOR"]], "arista.identityprovider.v1.services.gen_pb2.OAuthConfigStreamResponse": [[30, 2, 1, "", "DESCRIPTOR"]], "arista.identityprovider.v1.services.gen_pb2.SAMLConfigBatchedStreamRequest": [[30, 2, 1, "", "DESCRIPTOR"]], "arista.identityprovider.v1.services.gen_pb2.SAMLConfigBatchedStreamResponse": [[30, 2, 1, "", "DESCRIPTOR"]], "arista.identityprovider.v1.services.gen_pb2.SAMLConfigDeleteAllRequest": [[30, 2, 1, "", "DESCRIPTOR"]], "arista.identityprovider.v1.services.gen_pb2.SAMLConfigDeleteAllResponse": [[30, 2, 1, "", "DESCRIPTOR"]], "arista.identityprovider.v1.services.gen_pb2.SAMLConfigDeleteRequest": [[30, 2, 1, "", "DESCRIPTOR"]], "arista.identityprovider.v1.services.gen_pb2.SAMLConfigDeleteResponse": [[30, 2, 1, "", "DESCRIPTOR"]], "arista.identityprovider.v1.services.gen_pb2.SAMLConfigDeleteSomeRequest": [[30, 2, 1, "", "DESCRIPTOR"]], "arista.identityprovider.v1.services.gen_pb2.SAMLConfigDeleteSomeResponse": [[30, 2, 1, "", "DESCRIPTOR"]], "arista.identityprovider.v1.services.gen_pb2.SAMLConfigRequest": [[30, 2, 1, "", "DESCRIPTOR"]], "arista.identityprovider.v1.services.gen_pb2.SAMLConfigResponse": [[30, 2, 1, "", "DESCRIPTOR"]], "arista.identityprovider.v1.services.gen_pb2.SAMLConfigSetRequest": [[30, 2, 1, "", "DESCRIPTOR"]], "arista.identityprovider.v1.services.gen_pb2.SAMLConfigSetResponse": [[30, 2, 1, "", "DESCRIPTOR"]], "arista.identityprovider.v1.services.gen_pb2.SAMLConfigSetSomeRequest": [[30, 2, 1, "", "DESCRIPTOR"]], "arista.identityprovider.v1.services.gen_pb2.SAMLConfigSetSomeResponse": [[30, 2, 1, "", "DESCRIPTOR"]], "arista.identityprovider.v1.services.gen_pb2.SAMLConfigSomeRequest": [[30, 2, 1, "", "DESCRIPTOR"]], "arista.identityprovider.v1.services.gen_pb2.SAMLConfigSomeResponse": [[30, 2, 1, "", "DESCRIPTOR"]], "arista.identityprovider.v1.services.gen_pb2.SAMLConfigStreamRequest": [[30, 2, 1, "", "DESCRIPTOR"]], "arista.identityprovider.v1.services.gen_pb2.SAMLConfigStreamResponse": [[30, 2, 1, "", "DESCRIPTOR"]], "arista.identityprovider.v1.services.gen_pb2_grpc": [[30, 1, 1, "", "OAuthConfigService"], [30, 1, 1, "", "OAuthConfigServiceServicer"], [30, 1, 1, "", "OAuthConfigServiceStub"], [30, 1, 1, "", "SAMLConfigService"], [30, 1, 1, "", "SAMLConfigServiceServicer"], [30, 1, 1, "", "SAMLConfigServiceStub"], [30, 4, 1, "", "add_OAuthConfigServiceServicer_to_server"], [30, 4, 1, "", "add_SAMLConfigServiceServicer_to_server"]], "arista.identityprovider.v1.services.gen_pb2_grpc.OAuthConfigService": [[30, 3, 1, "", "Delete"], [30, 3, 1, "", "DeleteAll"], [30, 3, 1, "", "DeleteSome"], [30, 3, 1, "", "GetAll"], [30, 3, 1, "", "GetAllBatched"], [30, 3, 1, "", "GetMeta"], [30, 3, 1, "", "GetOne"], [30, 3, 1, "", "GetSome"], [30, 3, 1, "", "Set"], [30, 3, 1, "", "SetSome"], [30, 3, 1, "", "Subscribe"], [30, 3, 1, "", "SubscribeBatched"], [30, 3, 1, "", "SubscribeMeta"]], "arista.identityprovider.v1.services.gen_pb2_grpc.OAuthConfigServiceServicer": [[30, 3, 1, "", "Delete"], [30, 3, 1, "", "DeleteAll"], [30, 3, 1, "", "DeleteSome"], [30, 3, 1, "", "GetAll"], [30, 3, 1, "", "GetAllBatched"], [30, 3, 1, "", "GetMeta"], [30, 3, 1, "", "GetOne"], [30, 3, 1, "", "GetSome"], [30, 3, 1, "", "Set"], [30, 3, 1, "", "SetSome"], [30, 3, 1, "", "Subscribe"], [30, 3, 1, "", "SubscribeBatched"], [30, 3, 1, "", "SubscribeMeta"]], "arista.identityprovider.v1.services.gen_pb2_grpc.SAMLConfigService": [[30, 3, 1, "", "Delete"], [30, 3, 1, "", "DeleteAll"], [30, 3, 1, "", "DeleteSome"], [30, 3, 1, "", "GetAll"], [30, 3, 1, "", "GetAllBatched"], [30, 3, 1, "", "GetMeta"], [30, 3, 1, "", "GetOne"], [30, 3, 1, "", "GetSome"], [30, 3, 1, "", "Set"], [30, 3, 1, "", "SetSome"], [30, 3, 1, "", "Subscribe"], [30, 3, 1, "", "SubscribeBatched"], [30, 3, 1, "", "SubscribeMeta"]], "arista.identityprovider.v1.services.gen_pb2_grpc.SAMLConfigServiceServicer": [[30, 3, 1, "", "Delete"], [30, 3, 1, "", "DeleteAll"], [30, 3, 1, "", "DeleteSome"], [30, 3, 1, "", "GetAll"], [30, 3, 1, "", "GetAllBatched"], [30, 3, 1, "", "GetMeta"], [30, 3, 1, "", "GetOne"], [30, 3, 1, "", "GetSome"], [30, 3, 1, "", "Set"], [30, 3, 1, "", "SetSome"], [30, 3, 1, "", "Subscribe"], [30, 3, 1, "", "SubscribeBatched"], [30, 3, 1, "", "SubscribeMeta"]], "arista.imagestatus": [[32, 0, 0, "-", "v1"]], "arista.imagestatus.v1": [[32, 0, 0, "-", "imagestatus_pb2"], [32, 0, 0, "-", "imagestatus_pb2_grpc"], [33, 0, 0, "-", "services"]], "arista.imagestatus.v1.imagestatus_pb2": [[32, 1, 1, "", "ComplianceStatus"], [32, 1, 1, "", "ComplianceStatusBySup"], [32, 1, 1, "", "Extension"], [32, 1, 1, "", "ExtensionDiff"], [32, 1, 1, "", "ExtensionDiffs"], [32, 1, 1, "", "ExtensionDiffsBySup"], [32, 1, 1, "", "Extensions"], [32, 1, 1, "", "ImageError"], [32, 1, 1, "", "ImageErrors"], [32, 1, 1, "", "ImageInfo"], [32, 1, 1, "", "ImageInfos"], [32, 1, 1, "", "ImageMetadata"], [32, 1, 1, "", "ImageSummary"], [32, 1, 1, "", "ImageWarning"], [32, 1, 1, "", "ImageWarnings"], [32, 1, 1, "", "RebootRequired"], [32, 1, 1, "", "SoftwareImage"], [32, 1, 1, "", "SoftwareImageDiff"], [32, 1, 1, "", "SoftwareImageDiffsBySup"], [32, 1, 1, "", "Summary"], [32, 1, 1, "", "SummaryKey"], [32, 1, 1, "", "TerminAttrDiffsBySup"]], "arista.imagestatus.v1.imagestatus_pb2.ComplianceStatus": [[32, 2, 1, "", "DESCRIPTOR"]], "arista.imagestatus.v1.imagestatus_pb2.ComplianceStatusBySup": [[32, 2, 1, "", "DESCRIPTOR"], [32, 1, 1, "", "ValuesEntry"]], "arista.imagestatus.v1.imagestatus_pb2.ComplianceStatusBySup.ValuesEntry": [[32, 2, 1, "", "DESCRIPTOR"]], "arista.imagestatus.v1.imagestatus_pb2.Extension": [[32, 2, 1, "", "DESCRIPTOR"]], "arista.imagestatus.v1.imagestatus_pb2.ExtensionDiff": [[32, 2, 1, "", "DESCRIPTOR"]], "arista.imagestatus.v1.imagestatus_pb2.ExtensionDiffs": [[32, 2, 1, "", "DESCRIPTOR"]], "arista.imagestatus.v1.imagestatus_pb2.ExtensionDiffsBySup": [[32, 2, 1, "", "DESCRIPTOR"], [32, 1, 1, "", "ValuesEntry"]], "arista.imagestatus.v1.imagestatus_pb2.ExtensionDiffsBySup.ValuesEntry": [[32, 2, 1, "", "DESCRIPTOR"]], "arista.imagestatus.v1.imagestatus_pb2.Extensions": [[32, 2, 1, "", "DESCRIPTOR"]], "arista.imagestatus.v1.imagestatus_pb2.ImageError": [[32, 2, 1, "", "DESCRIPTOR"]], "arista.imagestatus.v1.imagestatus_pb2.ImageErrors": [[32, 2, 1, "", "DESCRIPTOR"]], "arista.imagestatus.v1.imagestatus_pb2.ImageInfo": [[32, 2, 1, "", "DESCRIPTOR"]], "arista.imagestatus.v1.imagestatus_pb2.ImageInfos": [[32, 2, 1, "", "DESCRIPTOR"]], "arista.imagestatus.v1.imagestatus_pb2.ImageMetadata": [[32, 2, 1, "", "DESCRIPTOR"]], "arista.imagestatus.v1.imagestatus_pb2.ImageSummary": [[32, 2, 1, "", "DESCRIPTOR"]], "arista.imagestatus.v1.imagestatus_pb2.ImageWarning": [[32, 2, 1, "", "DESCRIPTOR"]], "arista.imagestatus.v1.imagestatus_pb2.ImageWarnings": [[32, 2, 1, "", "DESCRIPTOR"]], "arista.imagestatus.v1.imagestatus_pb2.RebootRequired": [[32, 2, 1, "", "DESCRIPTOR"]], "arista.imagestatus.v1.imagestatus_pb2.SoftwareImage": [[32, 2, 1, "", "DESCRIPTOR"]], "arista.imagestatus.v1.imagestatus_pb2.SoftwareImageDiff": [[32, 2, 1, "", "DESCRIPTOR"]], "arista.imagestatus.v1.imagestatus_pb2.SoftwareImageDiffsBySup": [[32, 2, 1, "", "DESCRIPTOR"], [32, 1, 1, "", "ValuesEntry"]], "arista.imagestatus.v1.imagestatus_pb2.SoftwareImageDiffsBySup.ValuesEntry": [[32, 2, 1, "", "DESCRIPTOR"]], "arista.imagestatus.v1.imagestatus_pb2.Summary": [[32, 2, 1, "", "DESCRIPTOR"]], "arista.imagestatus.v1.imagestatus_pb2.SummaryKey": [[32, 2, 1, "", "DESCRIPTOR"]], "arista.imagestatus.v1.imagestatus_pb2.TerminAttrDiffsBySup": [[32, 2, 1, "", "DESCRIPTOR"], [32, 1, 1, "", "ValuesEntry"]], "arista.imagestatus.v1.imagestatus_pb2.TerminAttrDiffsBySup.ValuesEntry": [[32, 2, 1, "", "DESCRIPTOR"]], "arista.imagestatus.v1.services": [[33, 0, 0, "-", "gen_pb2"], [33, 0, 0, "-", "gen_pb2_grpc"]], "arista.imagestatus.v1.services.gen_pb2": [[33, 1, 1, "", "MetaResponse"], [33, 1, 1, "", "SummaryBatchedStreamRequest"], [33, 1, 1, "", "SummaryBatchedStreamResponse"], [33, 1, 1, "", "SummaryRequest"], [33, 1, 1, "", "SummaryResponse"], [33, 1, 1, "", "SummarySomeRequest"], [33, 1, 1, "", "SummarySomeResponse"], [33, 1, 1, "", "SummaryStreamRequest"], [33, 1, 1, "", "SummaryStreamResponse"]], "arista.imagestatus.v1.services.gen_pb2.MetaResponse": [[33, 2, 1, "", "DESCRIPTOR"]], "arista.imagestatus.v1.services.gen_pb2.SummaryBatchedStreamRequest": [[33, 2, 1, "", "DESCRIPTOR"]], "arista.imagestatus.v1.services.gen_pb2.SummaryBatchedStreamResponse": [[33, 2, 1, "", "DESCRIPTOR"]], "arista.imagestatus.v1.services.gen_pb2.SummaryRequest": [[33, 2, 1, "", "DESCRIPTOR"]], "arista.imagestatus.v1.services.gen_pb2.SummaryResponse": [[33, 2, 1, "", "DESCRIPTOR"]], "arista.imagestatus.v1.services.gen_pb2.SummarySomeRequest": [[33, 2, 1, "", "DESCRIPTOR"]], "arista.imagestatus.v1.services.gen_pb2.SummarySomeResponse": [[33, 2, 1, "", "DESCRIPTOR"]], "arista.imagestatus.v1.services.gen_pb2.SummaryStreamRequest": [[33, 2, 1, "", "DESCRIPTOR"]], "arista.imagestatus.v1.services.gen_pb2.SummaryStreamResponse": [[33, 2, 1, "", "DESCRIPTOR"]], "arista.imagestatus.v1.services.gen_pb2_grpc": [[33, 1, 1, "", "SummaryService"], [33, 1, 1, "", "SummaryServiceServicer"], [33, 1, 1, "", "SummaryServiceStub"], [33, 4, 1, "", "add_SummaryServiceServicer_to_server"]], "arista.imagestatus.v1.services.gen_pb2_grpc.SummaryService": [[33, 3, 1, "", "GetAll"], [33, 3, 1, "", "GetAllBatched"], [33, 3, 1, "", "GetMeta"], [33, 3, 1, "", "GetOne"], [33, 3, 1, "", "GetSome"], [33, 3, 1, "", "Subscribe"], [33, 3, 1, "", "SubscribeBatched"], [33, 3, 1, "", "SubscribeMeta"]], "arista.imagestatus.v1.services.gen_pb2_grpc.SummaryServiceServicer": [[33, 3, 1, "", "GetAll"], [33, 3, 1, "", "GetAllBatched"], [33, 3, 1, "", "GetMeta"], [33, 3, 1, "", "GetOne"], [33, 3, 1, "", "GetSome"], [33, 3, 1, "", "Subscribe"], [33, 3, 1, "", "SubscribeBatched"], [33, 3, 1, "", "SubscribeMeta"]], "arista.inventory": [[35, 0, 0, "-", "v1"]], "arista.inventory.v1": [[35, 0, 0, "-", "inventory_pb2"], [35, 0, 0, "-", "inventory_pb2_grpc"], [36, 0, 0, "-", "services"]], "arista.inventory.v1.inventory_pb2": [[35, 1, 1, "", "Device"], [35, 1, 1, "", "DeviceConfiguration"], [35, 1, 1, "", "DeviceDecommissioning"], [35, 1, 1, "", "DeviceDecommissioningConfig"], [35, 1, 1, "", "DeviceKey"], [35, 1, 1, "", "DeviceOnboarding"], [35, 1, 1, "", "DeviceOnboardingConfig"], [35, 1, 1, "", "ExtendedAttributes"], [35, 1, 1, "", "ProvisionedDevice"], [35, 1, 1, "", "UUIDKey"]], "arista.inventory.v1.inventory_pb2.Device": [[35, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.inventory_pb2.DeviceConfiguration": [[35, 2, 1, "", "DESCRIPTOR"], [35, 1, 1, "", "OptionsEntry"]], "arista.inventory.v1.inventory_pb2.DeviceConfiguration.OptionsEntry": [[35, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.inventory_pb2.DeviceDecommissioning": [[35, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.inventory_pb2.DeviceDecommissioningConfig": [[35, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.inventory_pb2.DeviceKey": [[35, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.inventory_pb2.DeviceOnboarding": [[35, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.inventory_pb2.DeviceOnboardingConfig": [[35, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.inventory_pb2.ExtendedAttributes": [[35, 2, 1, "", "DESCRIPTOR"], [35, 1, 1, "", "FeatureEnabledEntry"]], "arista.inventory.v1.inventory_pb2.ExtendedAttributes.FeatureEnabledEntry": [[35, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.inventory_pb2.ProvisionedDevice": [[35, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.inventory_pb2.UUIDKey": [[35, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services": [[36, 0, 0, "-", "gen_pb2"], [36, 0, 0, "-", "gen_pb2_grpc"]], "arista.inventory.v1.services.gen_pb2": [[36, 1, 1, "", "DeviceBatchedStreamRequest"], [36, 1, 1, "", "DeviceBatchedStreamResponse"], [36, 1, 1, "", "DeviceDecommissioningBatchedStreamRequest"], [36, 1, 1, "", "DeviceDecommissioningBatchedStreamResponse"], [36, 1, 1, "", "DeviceDecommissioningConfigBatchedStreamRequest"], [36, 1, 1, "", "DeviceDecommissioningConfigBatchedStreamResponse"], [36, 1, 1, "", "DeviceDecommissioningConfigDeleteAllRequest"], [36, 1, 1, "", "DeviceDecommissioningConfigDeleteAllResponse"], [36, 1, 1, "", "DeviceDecommissioningConfigDeleteRequest"], [36, 1, 1, "", "DeviceDecommissioningConfigDeleteResponse"], [36, 1, 1, "", "DeviceDecommissioningConfigDeleteSomeRequest"], [36, 1, 1, "", "DeviceDecommissioningConfigDeleteSomeResponse"], [36, 1, 1, "", "DeviceDecommissioningConfigRequest"], [36, 1, 1, "", "DeviceDecommissioningConfigResponse"], [36, 1, 1, "", "DeviceDecommissioningConfigSetRequest"], [36, 1, 1, "", "DeviceDecommissioningConfigSetResponse"], [36, 1, 1, "", "DeviceDecommissioningConfigSetSomeRequest"], [36, 1, 1, "", "DeviceDecommissioningConfigSetSomeResponse"], [36, 1, 1, "", "DeviceDecommissioningConfigSomeRequest"], [36, 1, 1, "", "DeviceDecommissioningConfigSomeResponse"], [36, 1, 1, "", "DeviceDecommissioningConfigStreamRequest"], [36, 1, 1, "", "DeviceDecommissioningConfigStreamResponse"], [36, 1, 1, "", "DeviceDecommissioningRequest"], [36, 1, 1, "", "DeviceDecommissioningResponse"], [36, 1, 1, "", "DeviceDecommissioningSomeRequest"], [36, 1, 1, "", "DeviceDecommissioningSomeResponse"], [36, 1, 1, "", "DeviceDecommissioningStreamRequest"], [36, 1, 1, "", "DeviceDecommissioningStreamResponse"], [36, 1, 1, "", "DeviceOnboardingBatchedStreamRequest"], [36, 1, 1, "", "DeviceOnboardingBatchedStreamResponse"], [36, 1, 1, "", "DeviceOnboardingConfigBatchedStreamRequest"], [36, 1, 1, "", "DeviceOnboardingConfigBatchedStreamResponse"], [36, 1, 1, "", "DeviceOnboardingConfigDeleteAllRequest"], [36, 1, 1, "", "DeviceOnboardingConfigDeleteAllResponse"], [36, 1, 1, "", "DeviceOnboardingConfigDeleteRequest"], [36, 1, 1, "", "DeviceOnboardingConfigDeleteResponse"], [36, 1, 1, "", "DeviceOnboardingConfigDeleteSomeRequest"], [36, 1, 1, "", "DeviceOnboardingConfigDeleteSomeResponse"], [36, 1, 1, "", "DeviceOnboardingConfigRequest"], [36, 1, 1, "", "DeviceOnboardingConfigResponse"], [36, 1, 1, "", "DeviceOnboardingConfigSetRequest"], [36, 1, 1, "", "DeviceOnboardingConfigSetResponse"], [36, 1, 1, "", "DeviceOnboardingConfigSetSomeRequest"], [36, 1, 1, "", "DeviceOnboardingConfigSetSomeResponse"], [36, 1, 1, "", "DeviceOnboardingConfigSomeRequest"], [36, 1, 1, "", "DeviceOnboardingConfigSomeResponse"], [36, 1, 1, "", "DeviceOnboardingConfigStreamRequest"], [36, 1, 1, "", "DeviceOnboardingConfigStreamResponse"], [36, 1, 1, "", "DeviceOnboardingRequest"], [36, 1, 1, "", "DeviceOnboardingResponse"], [36, 1, 1, "", "DeviceOnboardingSomeRequest"], [36, 1, 1, "", "DeviceOnboardingSomeResponse"], [36, 1, 1, "", "DeviceOnboardingStreamRequest"], [36, 1, 1, "", "DeviceOnboardingStreamResponse"], [36, 1, 1, "", "DeviceRequest"], [36, 1, 1, "", "DeviceResponse"], [36, 1, 1, "", "DeviceSomeRequest"], [36, 1, 1, "", "DeviceSomeResponse"], [36, 1, 1, "", "DeviceStreamRequest"], [36, 1, 1, "", "DeviceStreamResponse"], [36, 1, 1, "", "MetaResponse"], [36, 1, 1, "", "ProvisionedDeviceBatchedStreamRequest"], [36, 1, 1, "", "ProvisionedDeviceBatchedStreamResponse"], [36, 1, 1, "", "ProvisionedDeviceRequest"], [36, 1, 1, "", "ProvisionedDeviceResponse"], [36, 1, 1, "", "ProvisionedDeviceSomeRequest"], [36, 1, 1, "", "ProvisionedDeviceSomeResponse"], [36, 1, 1, "", "ProvisionedDeviceStreamRequest"], [36, 1, 1, "", "ProvisionedDeviceStreamResponse"]], "arista.inventory.v1.services.gen_pb2.DeviceBatchedStreamRequest": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceBatchedStreamResponse": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningBatchedStreamRequest": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningBatchedStreamResponse": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigBatchedStreamRequest": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigBatchedStreamResponse": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigDeleteAllRequest": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigDeleteAllResponse": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigDeleteRequest": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigDeleteResponse": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigDeleteSomeRequest": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigDeleteSomeResponse": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigRequest": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigResponse": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigSetRequest": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigSetResponse": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigSetSomeRequest": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigSetSomeResponse": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigSomeRequest": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigSomeResponse": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigStreamRequest": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningConfigStreamResponse": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningRequest": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningResponse": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningSomeRequest": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningSomeResponse": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningStreamRequest": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceDecommissioningStreamResponse": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceOnboardingBatchedStreamRequest": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceOnboardingBatchedStreamResponse": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigBatchedStreamRequest": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigBatchedStreamResponse": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigDeleteAllRequest": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigDeleteAllResponse": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigDeleteRequest": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigDeleteResponse": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigDeleteSomeRequest": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigDeleteSomeResponse": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigRequest": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigResponse": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigSetRequest": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigSetResponse": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigSetSomeRequest": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigSetSomeResponse": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigSomeRequest": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigSomeResponse": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigStreamRequest": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceOnboardingConfigStreamResponse": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceOnboardingRequest": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceOnboardingResponse": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceOnboardingSomeRequest": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceOnboardingSomeResponse": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceOnboardingStreamRequest": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceOnboardingStreamResponse": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceRequest": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceResponse": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceSomeRequest": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceSomeResponse": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceStreamRequest": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.DeviceStreamResponse": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.MetaResponse": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.ProvisionedDeviceBatchedStreamRequest": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.ProvisionedDeviceBatchedStreamResponse": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.ProvisionedDeviceRequest": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.ProvisionedDeviceResponse": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.ProvisionedDeviceSomeRequest": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.ProvisionedDeviceSomeResponse": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.ProvisionedDeviceStreamRequest": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2.ProvisionedDeviceStreamResponse": [[36, 2, 1, "", "DESCRIPTOR"]], "arista.inventory.v1.services.gen_pb2_grpc": [[36, 1, 1, "", "DeviceDecommissioningConfigService"], [36, 1, 1, "", "DeviceDecommissioningConfigServiceServicer"], [36, 1, 1, "", "DeviceDecommissioningConfigServiceStub"], [36, 1, 1, "", "DeviceDecommissioningService"], [36, 1, 1, "", "DeviceDecommissioningServiceServicer"], [36, 1, 1, "", "DeviceDecommissioningServiceStub"], [36, 1, 1, "", "DeviceOnboardingConfigService"], [36, 1, 1, "", "DeviceOnboardingConfigServiceServicer"], [36, 1, 1, "", "DeviceOnboardingConfigServiceStub"], [36, 1, 1, "", "DeviceOnboardingService"], [36, 1, 1, "", "DeviceOnboardingServiceServicer"], [36, 1, 1, "", "DeviceOnboardingServiceStub"], [36, 1, 1, "", "DeviceService"], [36, 1, 1, "", "DeviceServiceServicer"], [36, 1, 1, "", "DeviceServiceStub"], [36, 1, 1, "", "ProvisionedDeviceService"], [36, 1, 1, "", "ProvisionedDeviceServiceServicer"], [36, 1, 1, "", "ProvisionedDeviceServiceStub"], [36, 4, 1, "", "add_DeviceDecommissioningConfigServiceServicer_to_server"], [36, 4, 1, "", "add_DeviceDecommissioningServiceServicer_to_server"], [36, 4, 1, "", "add_DeviceOnboardingConfigServiceServicer_to_server"], [36, 4, 1, "", "add_DeviceOnboardingServiceServicer_to_server"], [36, 4, 1, "", "add_DeviceServiceServicer_to_server"], [36, 4, 1, "", "add_ProvisionedDeviceServiceServicer_to_server"]], "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningConfigService": [[36, 3, 1, "", "Delete"], [36, 3, 1, "", "DeleteAll"], [36, 3, 1, "", "DeleteSome"], [36, 3, 1, "", "GetAll"], [36, 3, 1, "", "GetAllBatched"], [36, 3, 1, "", "GetMeta"], [36, 3, 1, "", "GetOne"], [36, 3, 1, "", "GetSome"], [36, 3, 1, "", "Set"], [36, 3, 1, "", "SetSome"], [36, 3, 1, "", "Subscribe"], [36, 3, 1, "", "SubscribeBatched"], [36, 3, 1, "", "SubscribeMeta"]], "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningConfigServiceServicer": [[36, 3, 1, "", "Delete"], [36, 3, 1, "", "DeleteAll"], [36, 3, 1, "", "DeleteSome"], [36, 3, 1, "", "GetAll"], [36, 3, 1, "", "GetAllBatched"], [36, 3, 1, "", "GetMeta"], [36, 3, 1, "", "GetOne"], [36, 3, 1, "", "GetSome"], [36, 3, 1, "", "Set"], [36, 3, 1, "", "SetSome"], [36, 3, 1, "", "Subscribe"], [36, 3, 1, "", "SubscribeBatched"], [36, 3, 1, "", "SubscribeMeta"]], "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningService": [[36, 3, 1, "", "GetAll"], [36, 3, 1, "", "GetAllBatched"], [36, 3, 1, "", "GetMeta"], [36, 3, 1, "", "GetOne"], [36, 3, 1, "", "GetSome"], [36, 3, 1, "", "Subscribe"], [36, 3, 1, "", "SubscribeBatched"], [36, 3, 1, "", "SubscribeMeta"]], "arista.inventory.v1.services.gen_pb2_grpc.DeviceDecommissioningServiceServicer": [[36, 3, 1, "", "GetAll"], [36, 3, 1, "", "GetAllBatched"], [36, 3, 1, "", "GetMeta"], [36, 3, 1, "", "GetOne"], [36, 3, 1, "", "GetSome"], [36, 3, 1, "", "Subscribe"], [36, 3, 1, "", "SubscribeBatched"], [36, 3, 1, "", "SubscribeMeta"]], "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingConfigService": [[36, 3, 1, "", "Delete"], [36, 3, 1, "", "DeleteAll"], [36, 3, 1, "", "DeleteSome"], [36, 3, 1, "", "GetAll"], [36, 3, 1, "", "GetAllBatched"], [36, 3, 1, "", "GetMeta"], [36, 3, 1, "", "GetOne"], [36, 3, 1, "", "GetSome"], [36, 3, 1, "", "Set"], [36, 3, 1, "", "SetSome"], [36, 3, 1, "", "Subscribe"], [36, 3, 1, "", "SubscribeBatched"], [36, 3, 1, "", "SubscribeMeta"]], "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingConfigServiceServicer": [[36, 3, 1, "", "Delete"], [36, 3, 1, "", "DeleteAll"], [36, 3, 1, "", "DeleteSome"], [36, 3, 1, "", "GetAll"], [36, 3, 1, "", "GetAllBatched"], [36, 3, 1, "", "GetMeta"], [36, 3, 1, "", "GetOne"], [36, 3, 1, "", "GetSome"], [36, 3, 1, "", "Set"], [36, 3, 1, "", "SetSome"], [36, 3, 1, "", "Subscribe"], [36, 3, 1, "", "SubscribeBatched"], [36, 3, 1, "", "SubscribeMeta"]], "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingService": [[36, 3, 1, "", "GetAll"], [36, 3, 1, "", "GetAllBatched"], [36, 3, 1, "", "GetMeta"], [36, 3, 1, "", "GetOne"], [36, 3, 1, "", "GetSome"], [36, 3, 1, "", "Subscribe"], [36, 3, 1, "", "SubscribeBatched"], [36, 3, 1, "", "SubscribeMeta"]], "arista.inventory.v1.services.gen_pb2_grpc.DeviceOnboardingServiceServicer": [[36, 3, 1, "", "GetAll"], [36, 3, 1, "", "GetAllBatched"], [36, 3, 1, "", "GetMeta"], [36, 3, 1, "", "GetOne"], [36, 3, 1, "", "GetSome"], [36, 3, 1, "", "Subscribe"], [36, 3, 1, "", "SubscribeBatched"], [36, 3, 1, "", "SubscribeMeta"]], "arista.inventory.v1.services.gen_pb2_grpc.DeviceService": [[36, 3, 1, "", "GetAll"], [36, 3, 1, "", "GetAllBatched"], [36, 3, 1, "", "GetMeta"], [36, 3, 1, "", "GetOne"], [36, 3, 1, "", "GetSome"], [36, 3, 1, "", "Subscribe"], [36, 3, 1, "", "SubscribeBatched"], [36, 3, 1, "", "SubscribeMeta"]], "arista.inventory.v1.services.gen_pb2_grpc.DeviceServiceServicer": [[36, 3, 1, "", "GetAll"], [36, 3, 1, "", "GetAllBatched"], [36, 3, 1, "", "GetMeta"], [36, 3, 1, "", "GetOne"], [36, 3, 1, "", "GetSome"], [36, 3, 1, "", "Subscribe"], [36, 3, 1, "", "SubscribeBatched"], [36, 3, 1, "", "SubscribeMeta"]], "arista.inventory.v1.services.gen_pb2_grpc.ProvisionedDeviceService": [[36, 3, 1, "", "GetAll"], [36, 3, 1, "", "GetAllBatched"], [36, 3, 1, "", "GetMeta"], [36, 3, 1, "", "GetOne"], [36, 3, 1, "", "GetSome"], [36, 3, 1, "", "Subscribe"], [36, 3, 1, "", "SubscribeBatched"], [36, 3, 1, "", "SubscribeMeta"]], "arista.inventory.v1.services.gen_pb2_grpc.ProvisionedDeviceServiceServicer": [[36, 3, 1, "", "GetAll"], [36, 3, 1, "", "GetAllBatched"], [36, 3, 1, "", "GetMeta"], [36, 3, 1, "", "GetOne"], [36, 3, 1, "", "GetSome"], [36, 3, 1, "", "Subscribe"], [36, 3, 1, "", "SubscribeBatched"], [36, 3, 1, "", "SubscribeMeta"]], "arista.lifecycle": [[38, 0, 0, "-", "v1"]], "arista.lifecycle.v1": [[38, 0, 0, "-", "lifecycle_pb2"], [38, 0, 0, "-", "lifecycle_pb2_grpc"], [39, 0, 0, "-", "services"]], "arista.lifecycle.v1.lifecycle_pb2": [[38, 1, 1, "", "DateAndModels"], [38, 1, 1, "", "DeviceLifecycleSummary"], [38, 1, 1, "", "DeviceLifecycleSummaryKey"], [38, 1, 1, "", "HardwareLifecycleSummary"], [38, 1, 1, "", "SoftwareEOL"]], "arista.lifecycle.v1.lifecycle_pb2.DateAndModels": [[38, 2, 1, "", "DESCRIPTOR"]], "arista.lifecycle.v1.lifecycle_pb2.DeviceLifecycleSummary": [[38, 2, 1, "", "DESCRIPTOR"]], "arista.lifecycle.v1.lifecycle_pb2.DeviceLifecycleSummaryKey": [[38, 2, 1, "", "DESCRIPTOR"]], "arista.lifecycle.v1.lifecycle_pb2.HardwareLifecycleSummary": [[38, 2, 1, "", "DESCRIPTOR"]], "arista.lifecycle.v1.lifecycle_pb2.SoftwareEOL": [[38, 2, 1, "", "DESCRIPTOR"]], "arista.lifecycle.v1.services": [[39, 0, 0, "-", "gen_pb2"], [39, 0, 0, "-", "gen_pb2_grpc"]], "arista.lifecycle.v1.services.gen_pb2": [[39, 1, 1, "", "DeviceLifecycleSummaryRequest"], [39, 1, 1, "", "DeviceLifecycleSummaryResponse"], [39, 1, 1, "", "DeviceLifecycleSummaryStreamRequest"], [39, 1, 1, "", "DeviceLifecycleSummaryStreamResponse"], [39, 1, 1, "", "MetaResponse"]], "arista.lifecycle.v1.services.gen_pb2.DeviceLifecycleSummaryRequest": [[39, 2, 1, "", "DESCRIPTOR"]], "arista.lifecycle.v1.services.gen_pb2.DeviceLifecycleSummaryResponse": [[39, 2, 1, "", "DESCRIPTOR"]], "arista.lifecycle.v1.services.gen_pb2.DeviceLifecycleSummaryStreamRequest": [[39, 2, 1, "", "DESCRIPTOR"]], "arista.lifecycle.v1.services.gen_pb2.DeviceLifecycleSummaryStreamResponse": [[39, 2, 1, "", "DESCRIPTOR"]], "arista.lifecycle.v1.services.gen_pb2.MetaResponse": [[39, 2, 1, "", "DESCRIPTOR"]], "arista.lifecycle.v1.services.gen_pb2_grpc": [[39, 1, 1, "", "DeviceLifecycleSummaryService"], [39, 1, 1, "", "DeviceLifecycleSummaryServiceServicer"], [39, 1, 1, "", "DeviceLifecycleSummaryServiceStub"], [39, 4, 1, "", "add_DeviceLifecycleSummaryServiceServicer_to_server"]], "arista.lifecycle.v1.services.gen_pb2_grpc.DeviceLifecycleSummaryService": [[39, 3, 1, "", "GetAll"], [39, 3, 1, "", "GetMeta"], [39, 3, 1, "", "GetOne"], [39, 3, 1, "", "Subscribe"], [39, 3, 1, "", "SubscribeMeta"]], "arista.lifecycle.v1.services.gen_pb2_grpc.DeviceLifecycleSummaryServiceServicer": [[39, 3, 1, "", "GetAll"], [39, 3, 1, "", "GetMeta"], [39, 3, 1, "", "GetOne"], [39, 3, 1, "", "Subscribe"], [39, 3, 1, "", "SubscribeMeta"]], "arista.redirector": [[41, 0, 0, "-", "v1"]], "arista.redirector.v1": [[41, 0, 0, "-", "redirector_pb2"], [41, 0, 0, "-", "redirector_pb2_grpc"], [42, 0, 0, "-", "services"]], "arista.redirector.v1.redirector_pb2": [[41, 1, 1, "", "Assignment"], [41, 1, 1, "", "AssignmentKey"], [41, 1, 1, "", "Cluster"], [41, 1, 1, "", "Clusters"]], "arista.redirector.v1.redirector_pb2.Assignment": [[41, 2, 1, "", "DESCRIPTOR"]], "arista.redirector.v1.redirector_pb2.AssignmentKey": [[41, 2, 1, "", "DESCRIPTOR"]], "arista.redirector.v1.redirector_pb2.Cluster": [[41, 2, 1, "", "DESCRIPTOR"]], "arista.redirector.v1.redirector_pb2.Clusters": [[41, 2, 1, "", "DESCRIPTOR"]], "arista.redirector.v1.services": [[42, 0, 0, "-", "gen_pb2"], [42, 0, 0, "-", "gen_pb2_grpc"]], "arista.redirector.v1.services.gen_pb2": [[42, 1, 1, "", "AssignmentBatchedStreamRequest"], [42, 1, 1, "", "AssignmentBatchedStreamResponse"], [42, 1, 1, "", "AssignmentRequest"], [42, 1, 1, "", "AssignmentResponse"], [42, 1, 1, "", "AssignmentSomeRequest"], [42, 1, 1, "", "AssignmentSomeResponse"], [42, 1, 1, "", "AssignmentStreamRequest"], [42, 1, 1, "", "AssignmentStreamResponse"], [42, 1, 1, "", "MetaResponse"]], "arista.redirector.v1.services.gen_pb2.AssignmentBatchedStreamRequest": [[42, 2, 1, "", "DESCRIPTOR"]], "arista.redirector.v1.services.gen_pb2.AssignmentBatchedStreamResponse": [[42, 2, 1, "", "DESCRIPTOR"]], "arista.redirector.v1.services.gen_pb2.AssignmentRequest": [[42, 2, 1, "", "DESCRIPTOR"]], "arista.redirector.v1.services.gen_pb2.AssignmentResponse": [[42, 2, 1, "", "DESCRIPTOR"]], "arista.redirector.v1.services.gen_pb2.AssignmentSomeRequest": [[42, 2, 1, "", "DESCRIPTOR"]], "arista.redirector.v1.services.gen_pb2.AssignmentSomeResponse": [[42, 2, 1, "", "DESCRIPTOR"]], "arista.redirector.v1.services.gen_pb2.AssignmentStreamRequest": [[42, 2, 1, "", "DESCRIPTOR"]], "arista.redirector.v1.services.gen_pb2.AssignmentStreamResponse": [[42, 2, 1, "", "DESCRIPTOR"]], "arista.redirector.v1.services.gen_pb2.MetaResponse": [[42, 2, 1, "", "DESCRIPTOR"]], "arista.redirector.v1.services.gen_pb2_grpc": [[42, 1, 1, "", "AssignmentService"], [42, 1, 1, "", "AssignmentServiceServicer"], [42, 1, 1, "", "AssignmentServiceStub"], [42, 4, 1, "", "add_AssignmentServiceServicer_to_server"]], "arista.redirector.v1.services.gen_pb2_grpc.AssignmentService": [[42, 3, 1, "", "GetAll"], [42, 3, 1, "", "GetAllBatched"], [42, 3, 1, "", "GetMeta"], [42, 3, 1, "", "GetOne"], [42, 3, 1, "", "GetSome"], [42, 3, 1, "", "Subscribe"], [42, 3, 1, "", "SubscribeBatched"], [42, 3, 1, "", "SubscribeMeta"]], "arista.redirector.v1.services.gen_pb2_grpc.AssignmentServiceServicer": [[42, 3, 1, "", "GetAll"], [42, 3, 1, "", "GetAllBatched"], [42, 3, 1, "", "GetMeta"], [42, 3, 1, "", "GetOne"], [42, 3, 1, "", "GetSome"], [42, 3, 1, "", "Subscribe"], [42, 3, 1, "", "SubscribeBatched"], [42, 3, 1, "", "SubscribeMeta"]], "arista.serviceaccount": [[44, 0, 0, "-", "v1"]], "arista.serviceaccount.v1": [[44, 0, 0, "-", "serviceaccount_pb2"], [44, 0, 0, "-", "serviceaccount_pb2_grpc"], [45, 0, 0, "-", "services"]], "arista.serviceaccount.v1.serviceaccount_pb2": [[44, 1, 1, "", "Account"], [44, 1, 1, "", "AccountConfig"], [44, 1, 1, "", "AccountKey"], [44, 1, 1, "", "Token"], [44, 1, 1, "", "TokenConfig"], [44, 1, 1, "", "TokenKey"]], "arista.serviceaccount.v1.serviceaccount_pb2.Account": [[44, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.serviceaccount_pb2.AccountConfig": [[44, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.serviceaccount_pb2.AccountKey": [[44, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.serviceaccount_pb2.Token": [[44, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.serviceaccount_pb2.TokenConfig": [[44, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.serviceaccount_pb2.TokenKey": [[44, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services": [[45, 0, 0, "-", "gen_pb2"], [45, 0, 0, "-", "gen_pb2_grpc"]], "arista.serviceaccount.v1.services.gen_pb2": [[45, 1, 1, "", "AccountConfigDeleteAllRequest"], [45, 1, 1, "", "AccountConfigDeleteAllResponse"], [45, 1, 1, "", "AccountConfigDeleteRequest"], [45, 1, 1, "", "AccountConfigDeleteResponse"], [45, 1, 1, "", "AccountConfigDeleteSomeRequest"], [45, 1, 1, "", "AccountConfigDeleteSomeResponse"], [45, 1, 1, "", "AccountConfigRequest"], [45, 1, 1, "", "AccountConfigResponse"], [45, 1, 1, "", "AccountConfigSetRequest"], [45, 1, 1, "", "AccountConfigSetResponse"], [45, 1, 1, "", "AccountConfigSetSomeRequest"], [45, 1, 1, "", "AccountConfigSetSomeResponse"], [45, 1, 1, "", "AccountConfigSomeRequest"], [45, 1, 1, "", "AccountConfigSomeResponse"], [45, 1, 1, "", "AccountConfigStreamRequest"], [45, 1, 1, "", "AccountConfigStreamResponse"], [45, 1, 1, "", "AccountRequest"], [45, 1, 1, "", "AccountResponse"], [45, 1, 1, "", "AccountSomeRequest"], [45, 1, 1, "", "AccountSomeResponse"], [45, 1, 1, "", "AccountStreamRequest"], [45, 1, 1, "", "AccountStreamResponse"], [45, 1, 1, "", "MetaResponse"], [45, 1, 1, "", "TokenConfigDeleteAllRequest"], [45, 1, 1, "", "TokenConfigDeleteAllResponse"], [45, 1, 1, "", "TokenConfigDeleteRequest"], [45, 1, 1, "", "TokenConfigDeleteResponse"], [45, 1, 1, "", "TokenConfigDeleteSomeRequest"], [45, 1, 1, "", "TokenConfigDeleteSomeResponse"], [45, 1, 1, "", "TokenConfigRequest"], [45, 1, 1, "", "TokenConfigResponse"], [45, 1, 1, "", "TokenConfigSetRequest"], [45, 1, 1, "", "TokenConfigSetResponse"], [45, 1, 1, "", "TokenConfigSetSomeRequest"], [45, 1, 1, "", "TokenConfigSetSomeResponse"], [45, 1, 1, "", "TokenConfigSomeRequest"], [45, 1, 1, "", "TokenConfigSomeResponse"], [45, 1, 1, "", "TokenConfigStreamRequest"], [45, 1, 1, "", "TokenConfigStreamResponse"], [45, 1, 1, "", "TokenRequest"], [45, 1, 1, "", "TokenResponse"], [45, 1, 1, "", "TokenSomeRequest"], [45, 1, 1, "", "TokenSomeResponse"], [45, 1, 1, "", "TokenStreamRequest"], [45, 1, 1, "", "TokenStreamResponse"]], "arista.serviceaccount.v1.services.gen_pb2.AccountConfigDeleteAllRequest": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2.AccountConfigDeleteAllResponse": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2.AccountConfigDeleteRequest": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2.AccountConfigDeleteResponse": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2.AccountConfigDeleteSomeRequest": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2.AccountConfigDeleteSomeResponse": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2.AccountConfigRequest": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2.AccountConfigResponse": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2.AccountConfigSetRequest": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2.AccountConfigSetResponse": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2.AccountConfigSetSomeRequest": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2.AccountConfigSetSomeResponse": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2.AccountConfigSomeRequest": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2.AccountConfigSomeResponse": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2.AccountConfigStreamRequest": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2.AccountConfigStreamResponse": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2.AccountRequest": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2.AccountResponse": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2.AccountSomeRequest": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2.AccountSomeResponse": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2.AccountStreamRequest": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2.AccountStreamResponse": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2.MetaResponse": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2.TokenConfigDeleteAllRequest": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2.TokenConfigDeleteAllResponse": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2.TokenConfigDeleteRequest": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2.TokenConfigDeleteResponse": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2.TokenConfigDeleteSomeRequest": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2.TokenConfigDeleteSomeResponse": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2.TokenConfigRequest": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2.TokenConfigResponse": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2.TokenConfigSetRequest": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2.TokenConfigSetResponse": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2.TokenConfigSetSomeRequest": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2.TokenConfigSetSomeResponse": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2.TokenConfigSomeRequest": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2.TokenConfigSomeResponse": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2.TokenConfigStreamRequest": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2.TokenConfigStreamResponse": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2.TokenRequest": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2.TokenResponse": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2.TokenSomeRequest": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2.TokenSomeResponse": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2.TokenStreamRequest": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2.TokenStreamResponse": [[45, 2, 1, "", "DESCRIPTOR"]], "arista.serviceaccount.v1.services.gen_pb2_grpc": [[45, 1, 1, "", "AccountConfigService"], [45, 1, 1, "", "AccountConfigServiceServicer"], [45, 1, 1, "", "AccountConfigServiceStub"], [45, 1, 1, "", "AccountService"], [45, 1, 1, "", "AccountServiceServicer"], [45, 1, 1, "", "AccountServiceStub"], [45, 1, 1, "", "TokenConfigService"], [45, 1, 1, "", "TokenConfigServiceServicer"], [45, 1, 1, "", "TokenConfigServiceStub"], [45, 1, 1, "", "TokenService"], [45, 1, 1, "", "TokenServiceServicer"], [45, 1, 1, "", "TokenServiceStub"], [45, 4, 1, "", "add_AccountConfigServiceServicer_to_server"], [45, 4, 1, "", "add_AccountServiceServicer_to_server"], [45, 4, 1, "", "add_TokenConfigServiceServicer_to_server"], [45, 4, 1, "", "add_TokenServiceServicer_to_server"]], "arista.serviceaccount.v1.services.gen_pb2_grpc.AccountConfigService": [[45, 3, 1, "", "Delete"], [45, 3, 1, "", "DeleteAll"], [45, 3, 1, "", "DeleteSome"], [45, 3, 1, "", "GetAll"], [45, 3, 1, "", "GetMeta"], [45, 3, 1, "", "GetOne"], [45, 3, 1, "", "GetSome"], [45, 3, 1, "", "Set"], [45, 3, 1, "", "SetSome"], [45, 3, 1, "", "Subscribe"], [45, 3, 1, "", "SubscribeMeta"]], "arista.serviceaccount.v1.services.gen_pb2_grpc.AccountConfigServiceServicer": [[45, 3, 1, "", "Delete"], [45, 3, 1, "", "DeleteAll"], [45, 3, 1, "", "DeleteSome"], [45, 3, 1, "", "GetAll"], [45, 3, 1, "", "GetMeta"], [45, 3, 1, "", "GetOne"], [45, 3, 1, "", "GetSome"], [45, 3, 1, "", "Set"], [45, 3, 1, "", "SetSome"], [45, 3, 1, "", "Subscribe"], [45, 3, 1, "", "SubscribeMeta"]], "arista.serviceaccount.v1.services.gen_pb2_grpc.AccountService": [[45, 3, 1, "", "GetAll"], [45, 3, 1, "", "GetMeta"], [45, 3, 1, "", "GetOne"], [45, 3, 1, "", "GetSome"], [45, 3, 1, "", "Subscribe"], [45, 3, 1, "", "SubscribeMeta"]], "arista.serviceaccount.v1.services.gen_pb2_grpc.AccountServiceServicer": [[45, 3, 1, "", "GetAll"], [45, 3, 1, "", "GetMeta"], [45, 3, 1, "", "GetOne"], [45, 3, 1, "", "GetSome"], [45, 3, 1, "", "Subscribe"], [45, 3, 1, "", "SubscribeMeta"]], "arista.serviceaccount.v1.services.gen_pb2_grpc.TokenConfigService": [[45, 3, 1, "", "Delete"], [45, 3, 1, "", "DeleteAll"], [45, 3, 1, "", "DeleteSome"], [45, 3, 1, "", "GetAll"], [45, 3, 1, "", "GetMeta"], [45, 3, 1, "", "GetOne"], [45, 3, 1, "", "GetSome"], [45, 3, 1, "", "Set"], [45, 3, 1, "", "SetSome"], [45, 3, 1, "", "Subscribe"], [45, 3, 1, "", "SubscribeMeta"]], "arista.serviceaccount.v1.services.gen_pb2_grpc.TokenConfigServiceServicer": [[45, 3, 1, "", "Delete"], [45, 3, 1, "", "DeleteAll"], [45, 3, 1, "", "DeleteSome"], [45, 3, 1, "", "GetAll"], [45, 3, 1, "", "GetMeta"], [45, 3, 1, "", "GetOne"], [45, 3, 1, "", "GetSome"], [45, 3, 1, "", "Set"], [45, 3, 1, "", "SetSome"], [45, 3, 1, "", "Subscribe"], [45, 3, 1, "", "SubscribeMeta"]], "arista.serviceaccount.v1.services.gen_pb2_grpc.TokenService": [[45, 3, 1, "", "GetAll"], [45, 3, 1, "", "GetMeta"], [45, 3, 1, "", "GetOne"], [45, 3, 1, "", "GetSome"], [45, 3, 1, "", "Subscribe"], [45, 3, 1, "", "SubscribeMeta"]], "arista.serviceaccount.v1.services.gen_pb2_grpc.TokenServiceServicer": [[45, 3, 1, "", "GetAll"], [45, 3, 1, "", "GetMeta"], [45, 3, 1, "", "GetOne"], [45, 3, 1, "", "GetSome"], [45, 3, 1, "", "Subscribe"], [45, 3, 1, "", "SubscribeMeta"]], "arista.studio": [[47, 0, 0, "-", "v1"]], "arista.studio.v1": [[48, 0, 0, "-", "services"], [47, 0, 0, "-", "studio_pb2"], [47, 0, 0, "-", "studio_pb2_grpc"]], "arista.studio.v1.services": [[48, 0, 0, "-", "gen_pb2"], [48, 0, 0, "-", "gen_pb2_grpc"]], "arista.studio.v1.services.gen_pb2": [[48, 1, 1, "", "AssignedTagsBatchedStreamRequest"], [48, 1, 1, "", "AssignedTagsBatchedStreamResponse"], [48, 1, 1, "", "AssignedTagsConfigBatchedStreamRequest"], [48, 1, 1, "", "AssignedTagsConfigBatchedStreamResponse"], [48, 1, 1, "", "AssignedTagsConfigDeleteAllRequest"], [48, 1, 1, "", "AssignedTagsConfigDeleteAllResponse"], [48, 1, 1, "", "AssignedTagsConfigDeleteRequest"], [48, 1, 1, "", "AssignedTagsConfigDeleteResponse"], [48, 1, 1, "", "AssignedTagsConfigDeleteSomeRequest"], [48, 1, 1, "", "AssignedTagsConfigDeleteSomeResponse"], [48, 1, 1, "", "AssignedTagsConfigRequest"], [48, 1, 1, "", "AssignedTagsConfigResponse"], [48, 1, 1, "", "AssignedTagsConfigSetRequest"], [48, 1, 1, "", "AssignedTagsConfigSetResponse"], [48, 1, 1, "", "AssignedTagsConfigSetSomeRequest"], [48, 1, 1, "", "AssignedTagsConfigSetSomeResponse"], [48, 1, 1, "", "AssignedTagsConfigSomeRequest"], [48, 1, 1, "", "AssignedTagsConfigSomeResponse"], [48, 1, 1, "", "AssignedTagsConfigStreamRequest"], [48, 1, 1, "", "AssignedTagsConfigStreamResponse"], [48, 1, 1, "", "AssignedTagsRequest"], [48, 1, 1, "", "AssignedTagsResponse"], [48, 1, 1, "", "AssignedTagsSomeRequest"], [48, 1, 1, "", "AssignedTagsSomeResponse"], [48, 1, 1, "", "AssignedTagsStreamRequest"], [48, 1, 1, "", "AssignedTagsStreamResponse"], [48, 1, 1, "", "AutofillActionBatchedStreamRequest"], [48, 1, 1, "", "AutofillActionBatchedStreamResponse"], [48, 1, 1, "", "AutofillActionConfigBatchedStreamRequest"], [48, 1, 1, "", "AutofillActionConfigBatchedStreamResponse"], [48, 1, 1, "", "AutofillActionConfigDeleteAllRequest"], [48, 1, 1, "", "AutofillActionConfigDeleteAllResponse"], [48, 1, 1, "", "AutofillActionConfigDeleteRequest"], [48, 1, 1, "", "AutofillActionConfigDeleteResponse"], [48, 1, 1, "", "AutofillActionConfigDeleteSomeRequest"], [48, 1, 1, "", "AutofillActionConfigDeleteSomeResponse"], [48, 1, 1, "", "AutofillActionConfigRequest"], [48, 1, 1, "", "AutofillActionConfigResponse"], [48, 1, 1, "", "AutofillActionConfigSetRequest"], [48, 1, 1, "", "AutofillActionConfigSetResponse"], [48, 1, 1, "", "AutofillActionConfigSetSomeRequest"], [48, 1, 1, "", "AutofillActionConfigSetSomeResponse"], [48, 1, 1, "", "AutofillActionConfigSomeRequest"], [48, 1, 1, "", "AutofillActionConfigSomeResponse"], [48, 1, 1, "", "AutofillActionConfigStreamRequest"], [48, 1, 1, "", "AutofillActionConfigStreamResponse"], [48, 1, 1, "", "AutofillActionRequest"], [48, 1, 1, "", "AutofillActionResponse"], [48, 1, 1, "", "AutofillActionSomeRequest"], [48, 1, 1, "", "AutofillActionSomeResponse"], [48, 1, 1, "", "AutofillActionStreamRequest"], [48, 1, 1, "", "AutofillActionStreamResponse"], [48, 1, 1, "", "InputsBatchedStreamRequest"], [48, 1, 1, "", "InputsBatchedStreamResponse"], [48, 1, 1, "", "InputsConfigBatchedStreamRequest"], [48, 1, 1, "", "InputsConfigBatchedStreamResponse"], [48, 1, 1, "", "InputsConfigDeleteAllRequest"], [48, 1, 1, "", "InputsConfigDeleteAllResponse"], [48, 1, 1, "", "InputsConfigDeleteRequest"], [48, 1, 1, "", "InputsConfigDeleteResponse"], [48, 1, 1, "", "InputsConfigDeleteSomeRequest"], [48, 1, 1, "", "InputsConfigDeleteSomeResponse"], [48, 1, 1, "", "InputsConfigRequest"], [48, 1, 1, "", "InputsConfigResponse"], [48, 1, 1, "", "InputsConfigSetRequest"], [48, 1, 1, "", "InputsConfigSetResponse"], [48, 1, 1, "", "InputsConfigSetSomeRequest"], [48, 1, 1, "", "InputsConfigSetSomeResponse"], [48, 1, 1, "", "InputsConfigSomeRequest"], [48, 1, 1, "", "InputsConfigSomeResponse"], [48, 1, 1, "", "InputsConfigStreamRequest"], [48, 1, 1, "", "InputsConfigStreamResponse"], [48, 1, 1, "", "InputsRequest"], [48, 1, 1, "", "InputsResponse"], [48, 1, 1, "", "InputsSomeRequest"], [48, 1, 1, "", "InputsSomeResponse"], [48, 1, 1, "", "InputsStreamRequest"], [48, 1, 1, "", "InputsStreamResponse"], [48, 1, 1, "", "MetaResponse"], [48, 1, 1, "", "SecretInputBatchedStreamRequest"], [48, 1, 1, "", "SecretInputBatchedStreamResponse"], [48, 1, 1, "", "SecretInputRequest"], [48, 1, 1, "", "SecretInputResponse"], [48, 1, 1, "", "SecretInputSomeRequest"], [48, 1, 1, "", "SecretInputSomeResponse"], [48, 1, 1, "", "SecretInputStreamRequest"], [48, 1, 1, "", "SecretInputStreamResponse"], [48, 1, 1, "", "StudioBatchedStreamRequest"], [48, 1, 1, "", "StudioBatchedStreamResponse"], [48, 1, 1, "", "StudioConfigBatchedStreamRequest"], [48, 1, 1, "", "StudioConfigBatchedStreamResponse"], [48, 1, 1, "", "StudioConfigDeleteAllRequest"], [48, 1, 1, "", "StudioConfigDeleteAllResponse"], [48, 1, 1, "", "StudioConfigDeleteRequest"], [48, 1, 1, "", "StudioConfigDeleteResponse"], [48, 1, 1, "", "StudioConfigDeleteSomeRequest"], [48, 1, 1, "", "StudioConfigDeleteSomeResponse"], [48, 1, 1, "", "StudioConfigRequest"], [48, 1, 1, "", "StudioConfigResponse"], [48, 1, 1, "", "StudioConfigSetRequest"], [48, 1, 1, "", "StudioConfigSetResponse"], [48, 1, 1, "", "StudioConfigSetSomeRequest"], [48, 1, 1, "", "StudioConfigSetSomeResponse"], [48, 1, 1, "", "StudioConfigSomeRequest"], [48, 1, 1, "", "StudioConfigSomeResponse"], [48, 1, 1, "", "StudioConfigStreamRequest"], [48, 1, 1, "", "StudioConfigStreamResponse"], [48, 1, 1, "", "StudioRequest"], [48, 1, 1, "", "StudioResponse"], [48, 1, 1, "", "StudioSomeRequest"], [48, 1, 1, "", "StudioSomeResponse"], [48, 1, 1, "", "StudioStreamRequest"], [48, 1, 1, "", "StudioStreamResponse"], [48, 1, 1, "", "StudioSummaryBatchedStreamRequest"], [48, 1, 1, "", "StudioSummaryBatchedStreamResponse"], [48, 1, 1, "", "StudioSummaryRequest"], [48, 1, 1, "", "StudioSummaryResponse"], [48, 1, 1, "", "StudioSummarySomeRequest"], [48, 1, 1, "", "StudioSummarySomeResponse"], [48, 1, 1, "", "StudioSummaryStreamRequest"], [48, 1, 1, "", "StudioSummaryStreamResponse"]], "arista.studio.v1.services.gen_pb2.AssignedTagsBatchedStreamRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AssignedTagsBatchedStreamResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AssignedTagsConfigBatchedStreamRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AssignedTagsConfigBatchedStreamResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AssignedTagsConfigDeleteAllRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AssignedTagsConfigDeleteAllResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AssignedTagsConfigDeleteRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AssignedTagsConfigDeleteResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AssignedTagsConfigDeleteSomeRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AssignedTagsConfigDeleteSomeResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AssignedTagsConfigRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AssignedTagsConfigResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AssignedTagsConfigSetRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AssignedTagsConfigSetResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AssignedTagsConfigSetSomeRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AssignedTagsConfigSetSomeResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AssignedTagsConfigSomeRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AssignedTagsConfigSomeResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AssignedTagsConfigStreamRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AssignedTagsConfigStreamResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AssignedTagsRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AssignedTagsResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AssignedTagsSomeRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AssignedTagsSomeResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AssignedTagsStreamRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AssignedTagsStreamResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AutofillActionBatchedStreamRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AutofillActionBatchedStreamResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AutofillActionConfigBatchedStreamRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AutofillActionConfigBatchedStreamResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AutofillActionConfigDeleteAllRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AutofillActionConfigDeleteAllResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AutofillActionConfigDeleteRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AutofillActionConfigDeleteResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AutofillActionConfigDeleteSomeRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AutofillActionConfigDeleteSomeResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AutofillActionConfigRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AutofillActionConfigResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AutofillActionConfigSetRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AutofillActionConfigSetResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AutofillActionConfigSetSomeRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AutofillActionConfigSetSomeResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AutofillActionConfigSomeRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AutofillActionConfigSomeResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AutofillActionConfigStreamRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AutofillActionConfigStreamResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AutofillActionRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AutofillActionResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AutofillActionSomeRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AutofillActionSomeResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AutofillActionStreamRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.AutofillActionStreamResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.InputsBatchedStreamRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.InputsBatchedStreamResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.InputsConfigBatchedStreamRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.InputsConfigBatchedStreamResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.InputsConfigDeleteAllRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.InputsConfigDeleteAllResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.InputsConfigDeleteRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.InputsConfigDeleteResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.InputsConfigDeleteSomeRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.InputsConfigDeleteSomeResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.InputsConfigRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.InputsConfigResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.InputsConfigSetRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.InputsConfigSetResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.InputsConfigSetSomeRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.InputsConfigSetSomeResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.InputsConfigSomeRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.InputsConfigSomeResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.InputsConfigStreamRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.InputsConfigStreamResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.InputsRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.InputsResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.InputsSomeRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.InputsSomeResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.InputsStreamRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.InputsStreamResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.MetaResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.SecretInputBatchedStreamRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.SecretInputBatchedStreamResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.SecretInputRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.SecretInputResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.SecretInputSomeRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.SecretInputSomeResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.SecretInputStreamRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.SecretInputStreamResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.StudioBatchedStreamRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.StudioBatchedStreamResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.StudioConfigBatchedStreamRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.StudioConfigBatchedStreamResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.StudioConfigDeleteAllRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.StudioConfigDeleteAllResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.StudioConfigDeleteRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.StudioConfigDeleteResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.StudioConfigDeleteSomeRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.StudioConfigDeleteSomeResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.StudioConfigRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.StudioConfigResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.StudioConfigSetRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.StudioConfigSetResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.StudioConfigSetSomeRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.StudioConfigSetSomeResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.StudioConfigSomeRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.StudioConfigSomeResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.StudioConfigStreamRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.StudioConfigStreamResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.StudioRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.StudioResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.StudioSomeRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.StudioSomeResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.StudioStreamRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.StudioStreamResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.StudioSummaryBatchedStreamRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.StudioSummaryBatchedStreamResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.StudioSummaryRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.StudioSummaryResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.StudioSummarySomeRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.StudioSummarySomeResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.StudioSummaryStreamRequest": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2.StudioSummaryStreamResponse": [[48, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.services.gen_pb2_grpc": [[48, 1, 1, "", "AssignedTagsConfigService"], [48, 1, 1, "", "AssignedTagsConfigServiceServicer"], [48, 1, 1, "", "AssignedTagsConfigServiceStub"], [48, 1, 1, "", "AssignedTagsService"], [48, 1, 1, "", "AssignedTagsServiceServicer"], [48, 1, 1, "", "AssignedTagsServiceStub"], [48, 1, 1, "", "AutofillActionConfigService"], [48, 1, 1, "", "AutofillActionConfigServiceServicer"], [48, 1, 1, "", "AutofillActionConfigServiceStub"], [48, 1, 1, "", "AutofillActionService"], [48, 1, 1, "", "AutofillActionServiceServicer"], [48, 1, 1, "", "AutofillActionServiceStub"], [48, 1, 1, "", "InputsConfigService"], [48, 1, 1, "", "InputsConfigServiceServicer"], [48, 1, 1, "", "InputsConfigServiceStub"], [48, 1, 1, "", "InputsService"], [48, 1, 1, "", "InputsServiceServicer"], [48, 1, 1, "", "InputsServiceStub"], [48, 1, 1, "", "SecretInputService"], [48, 1, 1, "", "SecretInputServiceServicer"], [48, 1, 1, "", "SecretInputServiceStub"], [48, 1, 1, "", "StudioConfigService"], [48, 1, 1, "", "StudioConfigServiceServicer"], [48, 1, 1, "", "StudioConfigServiceStub"], [48, 1, 1, "", "StudioService"], [48, 1, 1, "", "StudioServiceServicer"], [48, 1, 1, "", "StudioServiceStub"], [48, 1, 1, "", "StudioSummaryService"], [48, 1, 1, "", "StudioSummaryServiceServicer"], [48, 1, 1, "", "StudioSummaryServiceStub"], [48, 4, 1, "", "add_AssignedTagsConfigServiceServicer_to_server"], [48, 4, 1, "", "add_AssignedTagsServiceServicer_to_server"], [48, 4, 1, "", "add_AutofillActionConfigServiceServicer_to_server"], [48, 4, 1, "", "add_AutofillActionServiceServicer_to_server"], [48, 4, 1, "", "add_InputsConfigServiceServicer_to_server"], [48, 4, 1, "", "add_InputsServiceServicer_to_server"], [48, 4, 1, "", "add_SecretInputServiceServicer_to_server"], [48, 4, 1, "", "add_StudioConfigServiceServicer_to_server"], [48, 4, 1, "", "add_StudioServiceServicer_to_server"], [48, 4, 1, "", "add_StudioSummaryServiceServicer_to_server"]], "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsConfigService": [[48, 3, 1, "", "Delete"], [48, 3, 1, "", "DeleteAll"], [48, 3, 1, "", "DeleteSome"], [48, 3, 1, "", "GetAll"], [48, 3, 1, "", "GetAllBatched"], [48, 3, 1, "", "GetMeta"], [48, 3, 1, "", "GetOne"], [48, 3, 1, "", "GetSome"], [48, 3, 1, "", "Set"], [48, 3, 1, "", "SetSome"], [48, 3, 1, "", "Subscribe"], [48, 3, 1, "", "SubscribeBatched"], [48, 3, 1, "", "SubscribeMeta"]], "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsConfigServiceServicer": [[48, 3, 1, "", "Delete"], [48, 3, 1, "", "DeleteAll"], [48, 3, 1, "", "DeleteSome"], [48, 3, 1, "", "GetAll"], [48, 3, 1, "", "GetAllBatched"], [48, 3, 1, "", "GetMeta"], [48, 3, 1, "", "GetOne"], [48, 3, 1, "", "GetSome"], [48, 3, 1, "", "Set"], [48, 3, 1, "", "SetSome"], [48, 3, 1, "", "Subscribe"], [48, 3, 1, "", "SubscribeBatched"], [48, 3, 1, "", "SubscribeMeta"]], "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsService": [[48, 3, 1, "", "GetAll"], [48, 3, 1, "", "GetAllBatched"], [48, 3, 1, "", "GetMeta"], [48, 3, 1, "", "GetOne"], [48, 3, 1, "", "GetSome"], [48, 3, 1, "", "Subscribe"], [48, 3, 1, "", "SubscribeBatched"], [48, 3, 1, "", "SubscribeMeta"]], "arista.studio.v1.services.gen_pb2_grpc.AssignedTagsServiceServicer": [[48, 3, 1, "", "GetAll"], [48, 3, 1, "", "GetAllBatched"], [48, 3, 1, "", "GetMeta"], [48, 3, 1, "", "GetOne"], [48, 3, 1, "", "GetSome"], [48, 3, 1, "", "Subscribe"], [48, 3, 1, "", "SubscribeBatched"], [48, 3, 1, "", "SubscribeMeta"]], "arista.studio.v1.services.gen_pb2_grpc.AutofillActionConfigService": [[48, 3, 1, "", "Delete"], [48, 3, 1, "", "DeleteAll"], [48, 3, 1, "", "DeleteSome"], [48, 3, 1, "", "GetAll"], [48, 3, 1, "", "GetAllBatched"], [48, 3, 1, "", "GetMeta"], [48, 3, 1, "", "GetOne"], [48, 3, 1, "", "GetSome"], [48, 3, 1, "", "Set"], [48, 3, 1, "", "SetSome"], [48, 3, 1, "", "Subscribe"], [48, 3, 1, "", "SubscribeBatched"], [48, 3, 1, "", "SubscribeMeta"]], "arista.studio.v1.services.gen_pb2_grpc.AutofillActionConfigServiceServicer": [[48, 3, 1, "", "Delete"], [48, 3, 1, "", "DeleteAll"], [48, 3, 1, "", "DeleteSome"], [48, 3, 1, "", "GetAll"], [48, 3, 1, "", "GetAllBatched"], [48, 3, 1, "", "GetMeta"], [48, 3, 1, "", "GetOne"], [48, 3, 1, "", "GetSome"], [48, 3, 1, "", "Set"], [48, 3, 1, "", "SetSome"], [48, 3, 1, "", "Subscribe"], [48, 3, 1, "", "SubscribeBatched"], [48, 3, 1, "", "SubscribeMeta"]], "arista.studio.v1.services.gen_pb2_grpc.AutofillActionService": [[48, 3, 1, "", "GetAll"], [48, 3, 1, "", "GetAllBatched"], [48, 3, 1, "", "GetMeta"], [48, 3, 1, "", "GetOne"], [48, 3, 1, "", "GetSome"], [48, 3, 1, "", "Subscribe"], [48, 3, 1, "", "SubscribeBatched"], [48, 3, 1, "", "SubscribeMeta"]], "arista.studio.v1.services.gen_pb2_grpc.AutofillActionServiceServicer": [[48, 3, 1, "", "GetAll"], [48, 3, 1, "", "GetAllBatched"], [48, 3, 1, "", "GetMeta"], [48, 3, 1, "", "GetOne"], [48, 3, 1, "", "GetSome"], [48, 3, 1, "", "Subscribe"], [48, 3, 1, "", "SubscribeBatched"], [48, 3, 1, "", "SubscribeMeta"]], "arista.studio.v1.services.gen_pb2_grpc.InputsConfigService": [[48, 3, 1, "", "Delete"], [48, 3, 1, "", "DeleteAll"], [48, 3, 1, "", "DeleteSome"], [48, 3, 1, "", "GetAll"], [48, 3, 1, "", "GetAllBatched"], [48, 3, 1, "", "GetMeta"], [48, 3, 1, "", "GetOne"], [48, 3, 1, "", "GetSome"], [48, 3, 1, "", "Set"], [48, 3, 1, "", "SetSome"], [48, 3, 1, "", "Subscribe"], [48, 3, 1, "", "SubscribeBatched"], [48, 3, 1, "", "SubscribeMeta"]], "arista.studio.v1.services.gen_pb2_grpc.InputsConfigServiceServicer": [[48, 3, 1, "", "Delete"], [48, 3, 1, "", "DeleteAll"], [48, 3, 1, "", "DeleteSome"], [48, 3, 1, "", "GetAll"], [48, 3, 1, "", "GetAllBatched"], [48, 3, 1, "", "GetMeta"], [48, 3, 1, "", "GetOne"], [48, 3, 1, "", "GetSome"], [48, 3, 1, "", "Set"], [48, 3, 1, "", "SetSome"], [48, 3, 1, "", "Subscribe"], [48, 3, 1, "", "SubscribeBatched"], [48, 3, 1, "", "SubscribeMeta"]], "arista.studio.v1.services.gen_pb2_grpc.InputsService": [[48, 3, 1, "", "GetAll"], [48, 3, 1, "", "GetAllBatched"], [48, 3, 1, "", "GetMeta"], [48, 3, 1, "", "GetOne"], [48, 3, 1, "", "GetSome"], [48, 3, 1, "", "Subscribe"], [48, 3, 1, "", "SubscribeBatched"], [48, 3, 1, "", "SubscribeMeta"]], "arista.studio.v1.services.gen_pb2_grpc.InputsServiceServicer": [[48, 3, 1, "", "GetAll"], [48, 3, 1, "", "GetAllBatched"], [48, 3, 1, "", "GetMeta"], [48, 3, 1, "", "GetOne"], [48, 3, 1, "", "GetSome"], [48, 3, 1, "", "Subscribe"], [48, 3, 1, "", "SubscribeBatched"], [48, 3, 1, "", "SubscribeMeta"]], "arista.studio.v1.services.gen_pb2_grpc.SecretInputService": [[48, 3, 1, "", "GetAll"], [48, 3, 1, "", "GetAllBatched"], [48, 3, 1, "", "GetMeta"], [48, 3, 1, "", "GetOne"], [48, 3, 1, "", "GetSome"], [48, 3, 1, "", "Subscribe"], [48, 3, 1, "", "SubscribeBatched"], [48, 3, 1, "", "SubscribeMeta"]], "arista.studio.v1.services.gen_pb2_grpc.SecretInputServiceServicer": [[48, 3, 1, "", "GetAll"], [48, 3, 1, "", "GetAllBatched"], [48, 3, 1, "", "GetMeta"], [48, 3, 1, "", "GetOne"], [48, 3, 1, "", "GetSome"], [48, 3, 1, "", "Subscribe"], [48, 3, 1, "", "SubscribeBatched"], [48, 3, 1, "", "SubscribeMeta"]], "arista.studio.v1.services.gen_pb2_grpc.StudioConfigService": [[48, 3, 1, "", "Delete"], [48, 3, 1, "", "DeleteAll"], [48, 3, 1, "", "DeleteSome"], [48, 3, 1, "", "GetAll"], [48, 3, 1, "", "GetAllBatched"], [48, 3, 1, "", "GetMeta"], [48, 3, 1, "", "GetOne"], [48, 3, 1, "", "GetSome"], [48, 3, 1, "", "Set"], [48, 3, 1, "", "SetSome"], [48, 3, 1, "", "Subscribe"], [48, 3, 1, "", "SubscribeBatched"], [48, 3, 1, "", "SubscribeMeta"]], "arista.studio.v1.services.gen_pb2_grpc.StudioConfigServiceServicer": [[48, 3, 1, "", "Delete"], [48, 3, 1, "", "DeleteAll"], [48, 3, 1, "", "DeleteSome"], [48, 3, 1, "", "GetAll"], [48, 3, 1, "", "GetAllBatched"], [48, 3, 1, "", "GetMeta"], [48, 3, 1, "", "GetOne"], [48, 3, 1, "", "GetSome"], [48, 3, 1, "", "Set"], [48, 3, 1, "", "SetSome"], [48, 3, 1, "", "Subscribe"], [48, 3, 1, "", "SubscribeBatched"], [48, 3, 1, "", "SubscribeMeta"]], "arista.studio.v1.services.gen_pb2_grpc.StudioService": [[48, 3, 1, "", "GetAll"], [48, 3, 1, "", "GetAllBatched"], [48, 3, 1, "", "GetMeta"], [48, 3, 1, "", "GetOne"], [48, 3, 1, "", "GetSome"], [48, 3, 1, "", "Subscribe"], [48, 3, 1, "", "SubscribeBatched"], [48, 3, 1, "", "SubscribeMeta"]], "arista.studio.v1.services.gen_pb2_grpc.StudioServiceServicer": [[48, 3, 1, "", "GetAll"], [48, 3, 1, "", "GetAllBatched"], [48, 3, 1, "", "GetMeta"], [48, 3, 1, "", "GetOne"], [48, 3, 1, "", "GetSome"], [48, 3, 1, "", "Subscribe"], [48, 3, 1, "", "SubscribeBatched"], [48, 3, 1, "", "SubscribeMeta"]], "arista.studio.v1.services.gen_pb2_grpc.StudioSummaryService": [[48, 3, 1, "", "GetAll"], [48, 3, 1, "", "GetAllBatched"], [48, 3, 1, "", "GetMeta"], [48, 3, 1, "", "GetOne"], [48, 3, 1, "", "GetSome"], [48, 3, 1, "", "Subscribe"], [48, 3, 1, "", "SubscribeBatched"], [48, 3, 1, "", "SubscribeMeta"]], "arista.studio.v1.services.gen_pb2_grpc.StudioSummaryServiceServicer": [[48, 3, 1, "", "GetAll"], [48, 3, 1, "", "GetAllBatched"], [48, 3, 1, "", "GetMeta"], [48, 3, 1, "", "GetOne"], [48, 3, 1, "", "GetSome"], [48, 3, 1, "", "Subscribe"], [48, 3, 1, "", "SubscribeBatched"], [48, 3, 1, "", "SubscribeMeta"]], "arista.studio.v1.studio_pb2": [[47, 1, 1, "", "AssignedTags"], [47, 1, 1, "", "AssignedTagsConfig"], [47, 1, 1, "", "AutofillAction"], [47, 1, 1, "", "AutofillActionConfig"], [47, 1, 1, "", "AutofillActionKey"], [47, 1, 1, "", "AutofillArgumentProvider"], [47, 1, 1, "", "AutofillArgumentProviders"], [47, 1, 1, "", "BooleanInputFieldProps"], [47, 1, 1, "", "CollectionInputFieldProps"], [47, 1, 1, "", "Entities"], [47, 1, 1, "", "Entity"], [47, 1, 1, "", "FloatInputFieldProps"], [47, 1, 1, "", "GroupInputFieldProps"], [47, 1, 1, "", "InputField"], [47, 1, 1, "", "InputFields"], [47, 1, 1, "", "InputSchema"], [47, 1, 1, "", "Inputs"], [47, 1, 1, "", "InputsConfig"], [47, 1, 1, "", "InputsKey"], [47, 1, 1, "", "IntegerInputFieldProps"], [47, 1, 1, "", "Layout"], [47, 1, 1, "", "ResolverInputFieldProps"], [47, 1, 1, "", "SecretInput"], [47, 1, 1, "", "StringInputFieldProps"], [47, 1, 1, "", "Studio"], [47, 1, 1, "", "StudioConfig"], [47, 1, 1, "", "StudioKey"], [47, 1, 1, "", "StudioSummary"], [47, 1, 1, "", "TagMatcherInputFieldProps"], [47, 1, 1, "", "Template"]], "arista.studio.v1.studio_pb2.AssignedTags": [[47, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.studio_pb2.AssignedTagsConfig": [[47, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.studio_pb2.AutofillAction": [[47, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.studio_pb2.AutofillActionConfig": [[47, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.studio_pb2.AutofillActionKey": [[47, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.studio_pb2.AutofillArgumentProvider": [[47, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.studio_pb2.AutofillArgumentProviders": [[47, 2, 1, "", "DESCRIPTOR"], [47, 1, 1, "", "ValuesEntry"]], "arista.studio.v1.studio_pb2.AutofillArgumentProviders.ValuesEntry": [[47, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.studio_pb2.BooleanInputFieldProps": [[47, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.studio_pb2.CollectionInputFieldProps": [[47, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.studio_pb2.Entities": [[47, 2, 1, "", "DESCRIPTOR"], [47, 1, 1, "", "ValuesEntry"]], "arista.studio.v1.studio_pb2.Entities.ValuesEntry": [[47, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.studio_pb2.Entity": [[47, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.studio_pb2.FloatInputFieldProps": [[47, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.studio_pb2.GroupInputFieldProps": [[47, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.studio_pb2.InputField": [[47, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.studio_pb2.InputFields": [[47, 2, 1, "", "DESCRIPTOR"], [47, 1, 1, "", "ValuesEntry"]], "arista.studio.v1.studio_pb2.InputFields.ValuesEntry": [[47, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.studio_pb2.InputSchema": [[47, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.studio_pb2.Inputs": [[47, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.studio_pb2.InputsConfig": [[47, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.studio_pb2.InputsKey": [[47, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.studio_pb2.IntegerInputFieldProps": [[47, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.studio_pb2.Layout": [[47, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.studio_pb2.ResolverInputFieldProps": [[47, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.studio_pb2.SecretInput": [[47, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.studio_pb2.StringInputFieldProps": [[47, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.studio_pb2.Studio": [[47, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.studio_pb2.StudioConfig": [[47, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.studio_pb2.StudioKey": [[47, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.studio_pb2.StudioSummary": [[47, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.studio_pb2.TagMatcherInputFieldProps": [[47, 2, 1, "", "DESCRIPTOR"]], "arista.studio.v1.studio_pb2.Template": [[47, 2, 1, "", "DESCRIPTOR"]], "arista.subscriptions": [[49, 0, 0, "-", "subscriptions_pb2"], [49, 0, 0, "-", "subscriptions_pb2_grpc"]], "arista.tag": [[51, 0, 0, "-", "v2"]], "arista.tag.v2": [[52, 0, 0, "-", "services"], [51, 0, 0, "-", "tag_pb2"], [51, 0, 0, "-", "tag_pb2_grpc"]], "arista.tag.v2.services": [[52, 0, 0, "-", "gen_pb2"], [52, 0, 0, "-", "gen_pb2_grpc"]], "arista.tag.v2.services.gen_pb2": [[52, 1, 1, "", "MetaResponse"], [52, 1, 1, "", "TagAssignmentBatchedStreamRequest"], [52, 1, 1, "", "TagAssignmentBatchedStreamResponse"], [52, 1, 1, "", "TagAssignmentConfigBatchedStreamRequest"], [52, 1, 1, "", "TagAssignmentConfigBatchedStreamResponse"], [52, 1, 1, "", "TagAssignmentConfigDeleteAllRequest"], [52, 1, 1, "", "TagAssignmentConfigDeleteAllResponse"], [52, 1, 1, "", "TagAssignmentConfigDeleteRequest"], [52, 1, 1, "", "TagAssignmentConfigDeleteResponse"], [52, 1, 1, "", "TagAssignmentConfigDeleteSomeRequest"], [52, 1, 1, "", "TagAssignmentConfigDeleteSomeResponse"], [52, 1, 1, "", "TagAssignmentConfigRequest"], [52, 1, 1, "", "TagAssignmentConfigResponse"], [52, 1, 1, "", "TagAssignmentConfigSetRequest"], [52, 1, 1, "", "TagAssignmentConfigSetResponse"], [52, 1, 1, "", "TagAssignmentConfigSetSomeRequest"], [52, 1, 1, "", "TagAssignmentConfigSetSomeResponse"], [52, 1, 1, "", "TagAssignmentConfigSomeRequest"], [52, 1, 1, "", "TagAssignmentConfigSomeResponse"], [52, 1, 1, "", "TagAssignmentConfigStreamRequest"], [52, 1, 1, "", "TagAssignmentConfigStreamResponse"], [52, 1, 1, "", "TagAssignmentRequest"], [52, 1, 1, "", "TagAssignmentResponse"], [52, 1, 1, "", "TagAssignmentSomeRequest"], [52, 1, 1, "", "TagAssignmentSomeResponse"], [52, 1, 1, "", "TagAssignmentStreamRequest"], [52, 1, 1, "", "TagAssignmentStreamResponse"], [52, 1, 1, "", "TagBatchedStreamRequest"], [52, 1, 1, "", "TagBatchedStreamResponse"], [52, 1, 1, "", "TagConfigBatchedStreamRequest"], [52, 1, 1, "", "TagConfigBatchedStreamResponse"], [52, 1, 1, "", "TagConfigDeleteAllRequest"], [52, 1, 1, "", "TagConfigDeleteAllResponse"], [52, 1, 1, "", "TagConfigDeleteRequest"], [52, 1, 1, "", "TagConfigDeleteResponse"], [52, 1, 1, "", "TagConfigDeleteSomeRequest"], [52, 1, 1, "", "TagConfigDeleteSomeResponse"], [52, 1, 1, "", "TagConfigRequest"], [52, 1, 1, "", "TagConfigResponse"], [52, 1, 1, "", "TagConfigSetRequest"], [52, 1, 1, "", "TagConfigSetResponse"], [52, 1, 1, "", "TagConfigSetSomeRequest"], [52, 1, 1, "", "TagConfigSetSomeResponse"], [52, 1, 1, "", "TagConfigSomeRequest"], [52, 1, 1, "", "TagConfigSomeResponse"], [52, 1, 1, "", "TagConfigStreamRequest"], [52, 1, 1, "", "TagConfigStreamResponse"], [52, 1, 1, "", "TagRequest"], [52, 1, 1, "", "TagResponse"], [52, 1, 1, "", "TagSomeRequest"], [52, 1, 1, "", "TagSomeResponse"], [52, 1, 1, "", "TagStreamRequest"], [52, 1, 1, "", "TagStreamResponse"]], "arista.tag.v2.services.gen_pb2.MetaResponse": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagAssignmentBatchedStreamRequest": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagAssignmentBatchedStreamResponse": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagAssignmentConfigBatchedStreamRequest": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagAssignmentConfigBatchedStreamResponse": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagAssignmentConfigDeleteAllRequest": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagAssignmentConfigDeleteAllResponse": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagAssignmentConfigDeleteRequest": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagAssignmentConfigDeleteResponse": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagAssignmentConfigDeleteSomeRequest": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagAssignmentConfigDeleteSomeResponse": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagAssignmentConfigRequest": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagAssignmentConfigResponse": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagAssignmentConfigSetRequest": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagAssignmentConfigSetResponse": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagAssignmentConfigSetSomeRequest": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagAssignmentConfigSetSomeResponse": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagAssignmentConfigSomeRequest": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagAssignmentConfigSomeResponse": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagAssignmentConfigStreamRequest": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagAssignmentConfigStreamResponse": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagAssignmentRequest": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagAssignmentResponse": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagAssignmentSomeRequest": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagAssignmentSomeResponse": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagAssignmentStreamRequest": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagAssignmentStreamResponse": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagBatchedStreamRequest": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagBatchedStreamResponse": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagConfigBatchedStreamRequest": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagConfigBatchedStreamResponse": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagConfigDeleteAllRequest": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagConfigDeleteAllResponse": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagConfigDeleteRequest": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagConfigDeleteResponse": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagConfigDeleteSomeRequest": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagConfigDeleteSomeResponse": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagConfigRequest": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagConfigResponse": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagConfigSetRequest": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagConfigSetResponse": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagConfigSetSomeRequest": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagConfigSetSomeResponse": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagConfigSomeRequest": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagConfigSomeResponse": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagConfigStreamRequest": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagConfigStreamResponse": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagRequest": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagResponse": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagSomeRequest": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagSomeResponse": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagStreamRequest": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2.TagStreamResponse": [[52, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.services.gen_pb2_grpc": [[52, 1, 1, "", "TagAssignmentConfigService"], [52, 1, 1, "", "TagAssignmentConfigServiceServicer"], [52, 1, 1, "", "TagAssignmentConfigServiceStub"], [52, 1, 1, "", "TagAssignmentService"], [52, 1, 1, "", "TagAssignmentServiceServicer"], [52, 1, 1, "", "TagAssignmentServiceStub"], [52, 1, 1, "", "TagConfigService"], [52, 1, 1, "", "TagConfigServiceServicer"], [52, 1, 1, "", "TagConfigServiceStub"], [52, 1, 1, "", "TagService"], [52, 1, 1, "", "TagServiceServicer"], [52, 1, 1, "", "TagServiceStub"], [52, 4, 1, "", "add_TagAssignmentConfigServiceServicer_to_server"], [52, 4, 1, "", "add_TagAssignmentServiceServicer_to_server"], [52, 4, 1, "", "add_TagConfigServiceServicer_to_server"], [52, 4, 1, "", "add_TagServiceServicer_to_server"]], "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentConfigService": [[52, 3, 1, "", "Delete"], [52, 3, 1, "", "DeleteAll"], [52, 3, 1, "", "DeleteSome"], [52, 3, 1, "", "GetAll"], [52, 3, 1, "", "GetAllBatched"], [52, 3, 1, "", "GetMeta"], [52, 3, 1, "", "GetOne"], [52, 3, 1, "", "GetSome"], [52, 3, 1, "", "Set"], [52, 3, 1, "", "SetSome"], [52, 3, 1, "", "Subscribe"], [52, 3, 1, "", "SubscribeBatched"], [52, 3, 1, "", "SubscribeMeta"]], "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentConfigServiceServicer": [[52, 3, 1, "", "Delete"], [52, 3, 1, "", "DeleteAll"], [52, 3, 1, "", "DeleteSome"], [52, 3, 1, "", "GetAll"], [52, 3, 1, "", "GetAllBatched"], [52, 3, 1, "", "GetMeta"], [52, 3, 1, "", "GetOne"], [52, 3, 1, "", "GetSome"], [52, 3, 1, "", "Set"], [52, 3, 1, "", "SetSome"], [52, 3, 1, "", "Subscribe"], [52, 3, 1, "", "SubscribeBatched"], [52, 3, 1, "", "SubscribeMeta"]], "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentService": [[52, 3, 1, "", "GetAll"], [52, 3, 1, "", "GetAllBatched"], [52, 3, 1, "", "GetMeta"], [52, 3, 1, "", "GetOne"], [52, 3, 1, "", "GetSome"], [52, 3, 1, "", "Subscribe"], [52, 3, 1, "", "SubscribeBatched"], [52, 3, 1, "", "SubscribeMeta"]], "arista.tag.v2.services.gen_pb2_grpc.TagAssignmentServiceServicer": [[52, 3, 1, "", "GetAll"], [52, 3, 1, "", "GetAllBatched"], [52, 3, 1, "", "GetMeta"], [52, 3, 1, "", "GetOne"], [52, 3, 1, "", "GetSome"], [52, 3, 1, "", "Subscribe"], [52, 3, 1, "", "SubscribeBatched"], [52, 3, 1, "", "SubscribeMeta"]], "arista.tag.v2.services.gen_pb2_grpc.TagConfigService": [[52, 3, 1, "", "Delete"], [52, 3, 1, "", "DeleteAll"], [52, 3, 1, "", "DeleteSome"], [52, 3, 1, "", "GetAll"], [52, 3, 1, "", "GetAllBatched"], [52, 3, 1, "", "GetMeta"], [52, 3, 1, "", "GetOne"], [52, 3, 1, "", "GetSome"], [52, 3, 1, "", "Set"], [52, 3, 1, "", "SetSome"], [52, 3, 1, "", "Subscribe"], [52, 3, 1, "", "SubscribeBatched"], [52, 3, 1, "", "SubscribeMeta"]], "arista.tag.v2.services.gen_pb2_grpc.TagConfigServiceServicer": [[52, 3, 1, "", "Delete"], [52, 3, 1, "", "DeleteAll"], [52, 3, 1, "", "DeleteSome"], [52, 3, 1, "", "GetAll"], [52, 3, 1, "", "GetAllBatched"], [52, 3, 1, "", "GetMeta"], [52, 3, 1, "", "GetOne"], [52, 3, 1, "", "GetSome"], [52, 3, 1, "", "Set"], [52, 3, 1, "", "SetSome"], [52, 3, 1, "", "Subscribe"], [52, 3, 1, "", "SubscribeBatched"], [52, 3, 1, "", "SubscribeMeta"]], "arista.tag.v2.services.gen_pb2_grpc.TagService": [[52, 3, 1, "", "GetAll"], [52, 3, 1, "", "GetAllBatched"], [52, 3, 1, "", "GetMeta"], [52, 3, 1, "", "GetOne"], [52, 3, 1, "", "GetSome"], [52, 3, 1, "", "Subscribe"], [52, 3, 1, "", "SubscribeBatched"], [52, 3, 1, "", "SubscribeMeta"]], "arista.tag.v2.services.gen_pb2_grpc.TagServiceServicer": [[52, 3, 1, "", "GetAll"], [52, 3, 1, "", "GetAllBatched"], [52, 3, 1, "", "GetMeta"], [52, 3, 1, "", "GetOne"], [52, 3, 1, "", "GetSome"], [52, 3, 1, "", "Subscribe"], [52, 3, 1, "", "SubscribeBatched"], [52, 3, 1, "", "SubscribeMeta"]], "arista.tag.v2.tag_pb2": [[51, 1, 1, "", "Tag"], [51, 1, 1, "", "TagAssignment"], [51, 1, 1, "", "TagAssignmentConfig"], [51, 1, 1, "", "TagAssignmentKey"], [51, 1, 1, "", "TagConfig"], [51, 1, 1, "", "TagKey"]], "arista.tag.v2.tag_pb2.Tag": [[51, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.tag_pb2.TagAssignment": [[51, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.tag_pb2.TagAssignmentConfig": [[51, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.tag_pb2.TagAssignmentKey": [[51, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.tag_pb2.TagConfig": [[51, 2, 1, "", "DESCRIPTOR"]], "arista.tag.v2.tag_pb2.TagKey": [[51, 2, 1, "", "DESCRIPTOR"]], "arista.time": [[53, 0, 0, "-", "time_pb2"], [53, 0, 0, "-", "time_pb2_grpc"]], "arista.time.time_pb2": [[53, 1, 1, "", "TimeBounds"]], "arista.time.time_pb2.TimeBounds": [[53, 2, 1, "", "DESCRIPTOR"]], "arista.workspace": [[55, 0, 0, "-", "v1"]], "arista.workspace.v1": [[56, 0, 0, "-", "services"], [55, 0, 0, "-", "workspace_pb2"], [55, 0, 0, "-", "workspace_pb2_grpc"]], "arista.workspace.v1.services": [[56, 0, 0, "-", "gen_pb2"], [56, 0, 0, "-", "gen_pb2_grpc"]], "arista.workspace.v1.services.gen_pb2": [[56, 1, 1, "", "MetaResponse"], [56, 1, 1, "", "WorkspaceBatchedStreamRequest"], [56, 1, 1, "", "WorkspaceBatchedStreamResponse"], [56, 1, 1, "", "WorkspaceBuildBatchedStreamRequest"], [56, 1, 1, "", "WorkspaceBuildBatchedStreamResponse"], [56, 1, 1, "", "WorkspaceBuildDetailsBatchedStreamRequest"], [56, 1, 1, "", "WorkspaceBuildDetailsBatchedStreamResponse"], [56, 1, 1, "", "WorkspaceBuildDetailsRequest"], [56, 1, 1, "", "WorkspaceBuildDetailsResponse"], [56, 1, 1, "", "WorkspaceBuildDetailsSomeRequest"], [56, 1, 1, "", "WorkspaceBuildDetailsSomeResponse"], [56, 1, 1, "", "WorkspaceBuildDetailsStreamRequest"], [56, 1, 1, "", "WorkspaceBuildDetailsStreamResponse"], [56, 1, 1, "", "WorkspaceBuildRequest"], [56, 1, 1, "", "WorkspaceBuildResponse"], [56, 1, 1, "", "WorkspaceBuildSomeRequest"], [56, 1, 1, "", "WorkspaceBuildSomeResponse"], [56, 1, 1, "", "WorkspaceBuildStreamRequest"], [56, 1, 1, "", "WorkspaceBuildStreamResponse"], [56, 1, 1, "", "WorkspaceConfigBatchedStreamRequest"], [56, 1, 1, "", "WorkspaceConfigBatchedStreamResponse"], [56, 1, 1, "", "WorkspaceConfigDeleteAllRequest"], [56, 1, 1, "", "WorkspaceConfigDeleteAllResponse"], [56, 1, 1, "", "WorkspaceConfigDeleteRequest"], [56, 1, 1, "", "WorkspaceConfigDeleteResponse"], [56, 1, 1, "", "WorkspaceConfigDeleteSomeRequest"], [56, 1, 1, "", "WorkspaceConfigDeleteSomeResponse"], [56, 1, 1, "", "WorkspaceConfigRequest"], [56, 1, 1, "", "WorkspaceConfigResponse"], [56, 1, 1, "", "WorkspaceConfigSetRequest"], [56, 1, 1, "", "WorkspaceConfigSetResponse"], [56, 1, 1, "", "WorkspaceConfigSetSomeRequest"], [56, 1, 1, "", "WorkspaceConfigSetSomeResponse"], [56, 1, 1, "", "WorkspaceConfigSomeRequest"], [56, 1, 1, "", "WorkspaceConfigSomeResponse"], [56, 1, 1, "", "WorkspaceConfigStreamRequest"], [56, 1, 1, "", "WorkspaceConfigStreamResponse"], [56, 1, 1, "", "WorkspaceRequest"], [56, 1, 1, "", "WorkspaceResponse"], [56, 1, 1, "", "WorkspaceSomeRequest"], [56, 1, 1, "", "WorkspaceSomeResponse"], [56, 1, 1, "", "WorkspaceStreamRequest"], [56, 1, 1, "", "WorkspaceStreamResponse"], [56, 1, 1, "", "WorkspaceSyncConfigBatchedStreamRequest"], [56, 1, 1, "", "WorkspaceSyncConfigBatchedStreamResponse"], [56, 1, 1, "", "WorkspaceSyncConfigDeleteAllRequest"], [56, 1, 1, "", "WorkspaceSyncConfigDeleteAllResponse"], [56, 1, 1, "", "WorkspaceSyncConfigDeleteRequest"], [56, 1, 1, "", "WorkspaceSyncConfigDeleteResponse"], [56, 1, 1, "", "WorkspaceSyncConfigDeleteSomeRequest"], [56, 1, 1, "", "WorkspaceSyncConfigDeleteSomeResponse"], [56, 1, 1, "", "WorkspaceSyncConfigRequest"], [56, 1, 1, "", "WorkspaceSyncConfigResponse"], [56, 1, 1, "", "WorkspaceSyncConfigSetRequest"], [56, 1, 1, "", "WorkspaceSyncConfigSetResponse"], [56, 1, 1, "", "WorkspaceSyncConfigSetSomeRequest"], [56, 1, 1, "", "WorkspaceSyncConfigSetSomeResponse"], [56, 1, 1, "", "WorkspaceSyncConfigSomeRequest"], [56, 1, 1, "", "WorkspaceSyncConfigSomeResponse"], [56, 1, 1, "", "WorkspaceSyncConfigStreamRequest"], [56, 1, 1, "", "WorkspaceSyncConfigStreamResponse"]], "arista.workspace.v1.services.gen_pb2.MetaResponse": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceBatchedStreamRequest": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceBatchedStreamResponse": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceBuildBatchedStreamRequest": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceBuildBatchedStreamResponse": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceBuildDetailsBatchedStreamRequest": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceBuildDetailsBatchedStreamResponse": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceBuildDetailsRequest": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceBuildDetailsResponse": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceBuildDetailsSomeRequest": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceBuildDetailsSomeResponse": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceBuildDetailsStreamRequest": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceBuildDetailsStreamResponse": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceBuildRequest": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceBuildResponse": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceBuildSomeRequest": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceBuildSomeResponse": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceBuildStreamRequest": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceBuildStreamResponse": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceConfigBatchedStreamRequest": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceConfigBatchedStreamResponse": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceConfigDeleteAllRequest": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceConfigDeleteAllResponse": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceConfigDeleteRequest": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceConfigDeleteResponse": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceConfigDeleteSomeRequest": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceConfigDeleteSomeResponse": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceConfigRequest": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceConfigResponse": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceConfigSetRequest": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceConfigSetResponse": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceConfigSetSomeRequest": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceConfigSetSomeResponse": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceConfigSomeRequest": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceConfigSomeResponse": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceConfigStreamRequest": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceConfigStreamResponse": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceRequest": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceResponse": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceSomeRequest": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceSomeResponse": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceStreamRequest": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceStreamResponse": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigBatchedStreamRequest": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigBatchedStreamResponse": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigDeleteAllRequest": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigDeleteAllResponse": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigDeleteRequest": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigDeleteResponse": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigDeleteSomeRequest": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigDeleteSomeResponse": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigRequest": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigResponse": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigSetRequest": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigSetResponse": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigSetSomeRequest": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigSetSomeResponse": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigSomeRequest": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigSomeResponse": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigStreamRequest": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2.WorkspaceSyncConfigStreamResponse": [[56, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.services.gen_pb2_grpc": [[56, 1, 1, "", "WorkspaceBuildDetailsService"], [56, 1, 1, "", "WorkspaceBuildDetailsServiceServicer"], [56, 1, 1, "", "WorkspaceBuildDetailsServiceStub"], [56, 1, 1, "", "WorkspaceBuildService"], [56, 1, 1, "", "WorkspaceBuildServiceServicer"], [56, 1, 1, "", "WorkspaceBuildServiceStub"], [56, 1, 1, "", "WorkspaceConfigService"], [56, 1, 1, "", "WorkspaceConfigServiceServicer"], [56, 1, 1, "", "WorkspaceConfigServiceStub"], [56, 1, 1, "", "WorkspaceService"], [56, 1, 1, "", "WorkspaceServiceServicer"], [56, 1, 1, "", "WorkspaceServiceStub"], [56, 1, 1, "", "WorkspaceSyncConfigService"], [56, 1, 1, "", "WorkspaceSyncConfigServiceServicer"], [56, 1, 1, "", "WorkspaceSyncConfigServiceStub"], [56, 4, 1, "", "add_WorkspaceBuildDetailsServiceServicer_to_server"], [56, 4, 1, "", "add_WorkspaceBuildServiceServicer_to_server"], [56, 4, 1, "", "add_WorkspaceConfigServiceServicer_to_server"], [56, 4, 1, "", "add_WorkspaceServiceServicer_to_server"], [56, 4, 1, "", "add_WorkspaceSyncConfigServiceServicer_to_server"]], "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildDetailsService": [[56, 3, 1, "", "GetAll"], [56, 3, 1, "", "GetAllBatched"], [56, 3, 1, "", "GetMeta"], [56, 3, 1, "", "GetOne"], [56, 3, 1, "", "GetSome"], [56, 3, 1, "", "Subscribe"], [56, 3, 1, "", "SubscribeBatched"], [56, 3, 1, "", "SubscribeMeta"]], "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildDetailsServiceServicer": [[56, 3, 1, "", "GetAll"], [56, 3, 1, "", "GetAllBatched"], [56, 3, 1, "", "GetMeta"], [56, 3, 1, "", "GetOne"], [56, 3, 1, "", "GetSome"], [56, 3, 1, "", "Subscribe"], [56, 3, 1, "", "SubscribeBatched"], [56, 3, 1, "", "SubscribeMeta"]], "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildService": [[56, 3, 1, "", "GetAll"], [56, 3, 1, "", "GetAllBatched"], [56, 3, 1, "", "GetMeta"], [56, 3, 1, "", "GetOne"], [56, 3, 1, "", "GetSome"], [56, 3, 1, "", "Subscribe"], [56, 3, 1, "", "SubscribeBatched"], [56, 3, 1, "", "SubscribeMeta"]], "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceBuildServiceServicer": [[56, 3, 1, "", "GetAll"], [56, 3, 1, "", "GetAllBatched"], [56, 3, 1, "", "GetMeta"], [56, 3, 1, "", "GetOne"], [56, 3, 1, "", "GetSome"], [56, 3, 1, "", "Subscribe"], [56, 3, 1, "", "SubscribeBatched"], [56, 3, 1, "", "SubscribeMeta"]], "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceConfigService": [[56, 3, 1, "", "Delete"], [56, 3, 1, "", "DeleteAll"], [56, 3, 1, "", "DeleteSome"], [56, 3, 1, "", "GetAll"], [56, 3, 1, "", "GetAllBatched"], [56, 3, 1, "", "GetMeta"], [56, 3, 1, "", "GetOne"], [56, 3, 1, "", "GetSome"], [56, 3, 1, "", "Set"], [56, 3, 1, "", "SetSome"], [56, 3, 1, "", "Subscribe"], [56, 3, 1, "", "SubscribeBatched"], [56, 3, 1, "", "SubscribeMeta"]], "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceConfigServiceServicer": [[56, 3, 1, "", "Delete"], [56, 3, 1, "", "DeleteAll"], [56, 3, 1, "", "DeleteSome"], [56, 3, 1, "", "GetAll"], [56, 3, 1, "", "GetAllBatched"], [56, 3, 1, "", "GetMeta"], [56, 3, 1, "", "GetOne"], [56, 3, 1, "", "GetSome"], [56, 3, 1, "", "Set"], [56, 3, 1, "", "SetSome"], [56, 3, 1, "", "Subscribe"], [56, 3, 1, "", "SubscribeBatched"], [56, 3, 1, "", "SubscribeMeta"]], "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceService": [[56, 3, 1, "", "GetAll"], [56, 3, 1, "", "GetAllBatched"], [56, 3, 1, "", "GetMeta"], [56, 3, 1, "", "GetOne"], [56, 3, 1, "", "GetSome"], [56, 3, 1, "", "Subscribe"], [56, 3, 1, "", "SubscribeBatched"], [56, 3, 1, "", "SubscribeMeta"]], "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceServiceServicer": [[56, 3, 1, "", "GetAll"], [56, 3, 1, "", "GetAllBatched"], [56, 3, 1, "", "GetMeta"], [56, 3, 1, "", "GetOne"], [56, 3, 1, "", "GetSome"], [56, 3, 1, "", "Subscribe"], [56, 3, 1, "", "SubscribeBatched"], [56, 3, 1, "", "SubscribeMeta"]], "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceSyncConfigService": [[56, 3, 1, "", "Delete"], [56, 3, 1, "", "DeleteAll"], [56, 3, 1, "", "DeleteSome"], [56, 3, 1, "", "GetAll"], [56, 3, 1, "", "GetAllBatched"], [56, 3, 1, "", "GetMeta"], [56, 3, 1, "", "GetOne"], [56, 3, 1, "", "GetSome"], [56, 3, 1, "", "Set"], [56, 3, 1, "", "SetSome"], [56, 3, 1, "", "Subscribe"], [56, 3, 1, "", "SubscribeBatched"], [56, 3, 1, "", "SubscribeMeta"]], "arista.workspace.v1.services.gen_pb2_grpc.WorkspaceSyncConfigServiceServicer": [[56, 3, 1, "", "Delete"], [56, 3, 1, "", "DeleteAll"], [56, 3, 1, "", "DeleteSome"], [56, 3, 1, "", "GetAll"], [56, 3, 1, "", "GetAllBatched"], [56, 3, 1, "", "GetMeta"], [56, 3, 1, "", "GetOne"], [56, 3, 1, "", "GetSome"], [56, 3, 1, "", "Set"], [56, 3, 1, "", "SetSome"], [56, 3, 1, "", "Subscribe"], [56, 3, 1, "", "SubscribeBatched"], [56, 3, 1, "", "SubscribeMeta"]], "arista.workspace.v1.workspace_pb2": [[55, 1, 1, "", "AuthzResult"], [55, 1, 1, "", "BuildStageState"], [55, 1, 1, "", "ConfigSyncResult"], [55, 1, 1, "", "ConfigValidationResult"], [55, 1, 1, "", "ConfigletBuildResult"], [55, 1, 1, "", "ConfigletBuildResults"], [55, 1, 1, "", "ImageValidationResult"], [55, 1, 1, "", "InputError"], [55, 1, 1, "", "InputErrors"], [55, 1, 1, "", "InputValidationResult"], [55, 1, 1, "", "InputValidationResults"], [55, 1, 1, "", "RequestParams"], [55, 1, 1, "", "Response"], [55, 1, 1, "", "Responses"], [55, 1, 1, "", "StudioBuildDetails"], [55, 1, 1, "", "TemplateError"], [55, 1, 1, "", "TemplateErrors"], [55, 1, 1, "", "Workspace"], [55, 1, 1, "", "WorkspaceBuild"], [55, 1, 1, "", "WorkspaceBuildDetails"], [55, 1, 1, "", "WorkspaceBuildDetailsKey"], [55, 1, 1, "", "WorkspaceBuildKey"], [55, 1, 1, "", "WorkspaceConfig"], [55, 1, 1, "", "WorkspaceKey"], [55, 1, 1, "", "WorkspaceSyncConfig"], [55, 1, 1, "", "WorkspaceSyncKey"]], "arista.workspace.v1.workspace_pb2.AuthzResult": [[55, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.workspace_pb2.BuildStageState": [[55, 2, 1, "", "DESCRIPTOR"], [55, 1, 1, "", "ValuesEntry"]], "arista.workspace.v1.workspace_pb2.BuildStageState.ValuesEntry": [[55, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.workspace_pb2.ConfigSyncResult": [[55, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.workspace_pb2.ConfigValidationResult": [[55, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.workspace_pb2.ConfigletBuildResult": [[55, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.workspace_pb2.ConfigletBuildResults": [[55, 2, 1, "", "DESCRIPTOR"], [55, 1, 1, "", "ValuesEntry"]], "arista.workspace.v1.workspace_pb2.ConfigletBuildResults.ValuesEntry": [[55, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.workspace_pb2.ImageValidationResult": [[55, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.workspace_pb2.InputError": [[55, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.workspace_pb2.InputErrors": [[55, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.workspace_pb2.InputValidationResult": [[55, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.workspace_pb2.InputValidationResults": [[55, 2, 1, "", "DESCRIPTOR"], [55, 1, 1, "", "ValuesEntry"]], "arista.workspace.v1.workspace_pb2.InputValidationResults.ValuesEntry": [[55, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.workspace_pb2.RequestParams": [[55, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.workspace_pb2.Response": [[55, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.workspace_pb2.Responses": [[55, 2, 1, "", "DESCRIPTOR"], [55, 1, 1, "", "ValuesEntry"]], "arista.workspace.v1.workspace_pb2.Responses.ValuesEntry": [[55, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.workspace_pb2.StudioBuildDetails": [[55, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.workspace_pb2.TemplateError": [[55, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.workspace_pb2.TemplateErrors": [[55, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.workspace_pb2.Workspace": [[55, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.workspace_pb2.WorkspaceBuild": [[55, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.workspace_pb2.WorkspaceBuildDetails": [[55, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.workspace_pb2.WorkspaceBuildDetailsKey": [[55, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.workspace_pb2.WorkspaceBuildKey": [[55, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.workspace_pb2.WorkspaceConfig": [[55, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.workspace_pb2.WorkspaceKey": [[55, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.workspace_pb2.WorkspaceSyncConfig": [[55, 2, 1, "", "DESCRIPTOR"]], "arista.workspace.v1.workspace_pb2.WorkspaceSyncKey": [[55, 2, 1, "", "DESCRIPTOR"]], "cloudvision": [[58, 0, 0, "-", "Connector"], [65, 0, 0, "-", "cvlib"]], "cloudvision.Connector": [[59, 0, 0, "-", "auth"], [60, 0, 0, "-", "codec"], [61, 0, 0, "-", "core"], [62, 0, 0, "-", "gen"], [63, 0, 0, "-", "grpc_client"], [58, 4, 1, "", "process_notifs"], [64, 0, 0, "-", "protobuf"], [58, 4, 1, "", "sort_dict"]], "cloudvision.Connector.auth": [[59, 0, 0, "-", "cert"]], "cloudvision.Connector.auth.cert": [[59, 4, 1, "", "cert_from_pem"], [59, 4, 1, "", "create_csr"], [59, 4, 1, "", "gen_csr_der"], [59, 4, 1, "", "key_from_pem"], [59, 4, 1, "", "load_cert"], [59, 4, 1, "", "load_key"], [59, 4, 1, "", "load_key_cert_pair"]], "cloudvision.Connector.codec": [[60, 1, 1, "", "Decoder"], [60, 1, 1, "", "Encoder"], [60, 1, 1, "", "Float32"], [60, 1, 1, "", "FrozenDict"], [60, 1, 1, "", "Path"], [60, 1, 1, "", "Wildcard"], [60, 0, 0, "-", "custom_types"], [60, 0, 0, "-", "decoder"], [60, 0, 0, "-", "encoder"]], "cloudvision.Connector.codec.Decoder": [[60, 3, 1, "", "decode"], [60, 3, 1, "", "decode_array"], [60, 3, 1, "", "decode_map"]], "cloudvision.Connector.codec.Encoder": [[60, 3, 1, "", "encode"], [60, 3, 1, "", "encode_array"], [60, 3, 1, "", "encode_map"], [60, 3, 1, "", "encode_string"]], "cloudvision.Connector.codec.FrozenDict": [[60, 3, 1, "", "copy"], [60, 2, 1, "", "dict_cls"]], "cloudvision.Connector.codec.custom_types": [[60, 1, 1, "", "Float32"], [60, 1, 1, "", "FrozenDict"], [60, 1, 1, "", "Path"], [60, 1, 1, "", "Wildcard"]], "cloudvision.Connector.codec.custom_types.FrozenDict": [[60, 3, 1, "", "copy"], [60, 2, 1, "", "dict_cls"]], "cloudvision.Connector.codec.decoder": [[60, 1, 1, "", "Decoder"]], "cloudvision.Connector.codec.decoder.Decoder": [[60, 3, 1, "", "decode"], [60, 3, 1, "", "decode_array"], [60, 3, 1, "", "decode_map"]], "cloudvision.Connector.codec.encoder": [[60, 1, 1, "", "Encoder"]], "cloudvision.Connector.codec.encoder.Encoder": [[60, 3, 1, "", "encode"], [60, 3, 1, "", "encode_array"], [60, 3, 1, "", "encode_map"], [60, 3, 1, "", "encode_string"]], "cloudvision.Connector.core": [[61, 0, 0, "-", "utils"]], "cloudvision.Connector.core.utils": [[61, 4, 1, "", "get_dict"]], "cloudvision.Connector.gen": [[62, 0, 0, "-", "ca_pb2"], [62, 0, 0, "-", "ca_pb2_grpc"], [62, 0, 0, "-", "notification_pb2"], [62, 0, 0, "-", "notification_pb2_grpc"], [62, 0, 0, "-", "router_pb2"], [62, 0, 0, "-", "router_pb2_grpc"], [62, 0, 0, "-", "sharding_pb2"], [62, 0, 0, "-", "sharding_pb2_grpc"]], "cloudvision.Connector.gen.ca_pb2_grpc": [[62, 1, 1, "", "CertificateAuthority"], [62, 1, 1, "", "CertificateAuthorityServicer"], [62, 1, 1, "", "CertificateAuthorityStub"], [62, 4, 1, "", "add_CertificateAuthorityServicer_to_server"]], "cloudvision.Connector.gen.ca_pb2_grpc.CertificateAuthority": [[62, 3, 1, "", "Enroll"], [62, 3, 1, "", "Reenroll"]], "cloudvision.Connector.gen.ca_pb2_grpc.CertificateAuthorityServicer": [[62, 3, 1, "", "Enroll"], [62, 3, 1, "", "Reenroll"]], "cloudvision.Connector.gen.router_pb2_grpc": [[62, 1, 1, "", "Alpha"], [62, 1, 1, "", "AlphaServicer"], [62, 1, 1, "", "AlphaStub"], [62, 1, 1, "", "Auth"], [62, 1, 1, "", "AuthServicer"], [62, 1, 1, "", "AuthStub"], [62, 1, 1, "", "Cluster"], [62, 1, 1, "", "ClusterServicer"], [62, 1, 1, "", "ClusterStub"], [62, 1, 1, "", "Querier"], [62, 1, 1, "", "QuerierServicer"], [62, 1, 1, "", "QuerierStub"], [62, 1, 1, "", "RouterV1"], [62, 1, 1, "", "RouterV1Servicer"], [62, 1, 1, "", "RouterV1Stub"], [62, 1, 1, "", "Search"], [62, 1, 1, "", "SearchServicer"], [62, 1, 1, "", "SearchStub"], [62, 4, 1, "", "add_AlphaServicer_to_server"], [62, 4, 1, "", "add_AuthServicer_to_server"], [62, 4, 1, "", "add_ClusterServicer_to_server"], [62, 4, 1, "", "add_QuerierServicer_to_server"], [62, 4, 1, "", "add_RouterV1Servicer_to_server"], [62, 4, 1, "", "add_SearchServicer_to_server"]], "cloudvision.Connector.gen.router_pb2_grpc.Alpha": [[62, 3, 1, "", "DeleteCustomSchema"], [62, 3, 1, "", "Search"], [62, 3, 1, "", "SearchSubscribe"], [62, 3, 1, "", "SearchWithAggregation"], [62, 3, 1, "", "SearchWithAggregationStream"], [62, 3, 1, "", "SetCustomSchema"]], "cloudvision.Connector.gen.router_pb2_grpc.AlphaServicer": [[62, 3, 1, "", "DeleteCustomSchema"], [62, 3, 1, "", "Search"], [62, 3, 1, "", "SearchSubscribe"], [62, 3, 1, "", "SearchWithAggregation"], [62, 3, 1, "", "SearchWithAggregationStream"], [62, 3, 1, "", "SetCustomSchema"]], "cloudvision.Connector.gen.router_pb2_grpc.Auth": [[62, 3, 1, "", "CreateDataset"], [62, 3, 1, "", "CreateSession"], [62, 3, 1, "", "GetPermissionSet"], [62, 3, 1, "", "SetPassword"], [62, 3, 1, "", "SetPermission"]], "cloudvision.Connector.gen.router_pb2_grpc.AuthServicer": [[62, 3, 1, "", "CreateDataset"], [62, 3, 1, "", "CreateSession"], [62, 3, 1, "", "GetPermissionSet"], [62, 3, 1, "", "SetPassword"], [62, 3, 1, "", "SetPermission"]], "cloudvision.Connector.gen.router_pb2_grpc.Cluster": [[62, 3, 1, "", "ClusterInfo"]], "cloudvision.Connector.gen.router_pb2_grpc.ClusterServicer": [[62, 3, 1, "", "ClusterInfo"]], "cloudvision.Connector.gen.router_pb2_grpc.Querier": [[62, 3, 1, "", "SQL"]], "cloudvision.Connector.gen.router_pb2_grpc.QuerierServicer": [[62, 3, 1, "", "SQL"]], "cloudvision.Connector.gen.router_pb2_grpc.RouterV1": [[62, 3, 1, "", "Get"], [62, 3, 1, "", "GetAndSubscribe"], [62, 3, 1, "", "GetDatasets"], [62, 3, 1, "", "Publish"], [62, 3, 1, "", "Subscribe"]], "cloudvision.Connector.gen.router_pb2_grpc.RouterV1Servicer": [[62, 3, 1, "", "Get"], [62, 3, 1, "", "GetAndSubscribe"], [62, 3, 1, "", "GetDatasets"], [62, 3, 1, "", "Publish"], [62, 3, 1, "", "Subscribe"]], "cloudvision.Connector.gen.router_pb2_grpc.Search": [[62, 3, 1, "", "DeleteCustomSchema"], [62, 3, 1, "", "Search"], [62, 3, 1, "", "SearchSubscribe"], [62, 3, 1, "", "SearchWithAggregation"], [62, 3, 1, "", "SearchWithAggregationStream"], [62, 3, 1, "", "SetCustomSchema"]], "cloudvision.Connector.gen.router_pb2_grpc.SearchServicer": [[62, 3, 1, "", "DeleteCustomSchema"], [62, 3, 1, "", "Search"], [62, 3, 1, "", "SearchSubscribe"], [62, 3, 1, "", "SearchWithAggregation"], [62, 3, 1, "", "SearchWithAggregationStream"], [62, 3, 1, "", "SetCustomSchema"]], "cloudvision.Connector.grpc_client": [[63, 1, 1, "", "GRPCClient"], [63, 4, 1, "", "create_notification"], [63, 4, 1, "", "create_query"], [63, 0, 0, "-", "grpcClient"]], "cloudvision.Connector.grpc_client.GRPCClient": [[63, 2, 1, "", "AUTH_KEY_PATH"], [63, 2, 1, "", "DEFAULT_CHANNEL_OPTIONS"], [63, 3, 1, "", "close"], [63, 3, 1, "", "create_custom_schema_index_request"], [63, 3, 1, "", "create_dataset"], [63, 3, 1, "", "decode_batch"], [63, 3, 1, "", "decode_notification"], [63, 3, 1, "", "get"], [63, 3, 1, "", "get_datasets"], [63, 3, 1, "", "publish"], [63, 3, 1, "", "reenroll"], [63, 3, 1, "", "search"], [63, 3, 1, "", "set_custom_schema"], [63, 3, 1, "", "subscribe"]], "cloudvision.Connector.grpc_client.grpcClient": [[63, 1, 1, "", "GRPCClient"], [63, 4, 1, "", "create_notification"], [63, 4, 1, "", "create_query"], [63, 4, 1, "", "to_pbts"]], "cloudvision.Connector.grpc_client.grpcClient.GRPCClient": [[63, 2, 1, "", "AUTH_KEY_PATH"], [63, 2, 1, "", "DEFAULT_CHANNEL_OPTIONS"], [63, 3, 1, "", "close"], [63, 3, 1, "", "create_custom_schema_index_request"], [63, 3, 1, "", "create_dataset"], [63, 3, 1, "", "decode_batch"], [63, 3, 1, "", "decode_notification"], [63, 3, 1, "", "get"], [63, 3, 1, "", "get_datasets"], [63, 3, 1, "", "publish"], [63, 3, 1, "", "reenroll"], [63, 3, 1, "", "search"], [63, 3, 1, "", "set_custom_schema"], [63, 3, 1, "", "subscribe"]], "cloudvision.cvlib": [[65, 0, 0, "-", "action"], [65, 0, 0, "-", "changecontrol"], [65, 0, 0, "-", "connections"], [65, 0, 0, "-", "constants"], [65, 0, 0, "-", "context"], [65, 0, 0, "-", "device"], [65, 0, 0, "-", "exceptions"], [65, 0, 0, "-", "execution"], [65, 0, 0, "-", "id_allocator"], [65, 0, 0, "-", "iputils"], [65, 0, 0, "-", "logger"], [65, 0, 0, "-", "studio"], [65, 0, 0, "-", "tags"], [65, 0, 0, "-", "topology"], [65, 0, 0, "-", "user"], [65, 0, 0, "-", "utils"], [65, 0, 0, "-", "workspace"]], "cloudvision.cvlib.action": [[65, 1, 1, "", "Action"], [65, 1, 1, "", "ActionContext"]], "cloudvision.cvlib.action.Action": [[65, 3, 1, "", "getCCStartTime"]], "cloudvision.cvlib.action.ActionContext": [[65, 2, 1, "", "ChangeControl"], [65, 2, 1, "", "StudioAutofill"], [65, 2, 1, "", "StudioBuildHook"], [65, 2, 1, "", "Unknown"]], "cloudvision.cvlib.changecontrol": [[65, 1, 1, "", "ChangeControl"]], "cloudvision.cvlib.changecontrol.ChangeControl": [[65, 3, 1, "", "getStartTime"]], "cloudvision.cvlib.connections": [[65, 1, 1, "", "AuthAndEndpoints"], [65, 4, 1, "", "addHeaderInterceptor"], [65, 4, 1, "", "create"]], "cloudvision.cvlib.context": [[65, 1, 1, "", "Context"], [65, 1, 1, "", "LoggingLevel"]], "cloudvision.cvlib.context.Context": [[65, 3, 1, "", "Get"], [65, 3, 1, "", "activateDebugMode"], [65, 3, 1, "", "alog"], [65, 3, 1, "", "benchmark"], [65, 3, 1, "", "benchmarkDump"], [65, 3, 1, "", "benchmarkingOff"], [65, 3, 1, "", "benchmarkingOn"], [65, 3, 1, "", "clear"], [65, 3, 1, "", "critical"], [65, 3, 1, "", "deactivateDebugMode"], [65, 3, 1, "", "debug"], [65, 3, 1, "", "doWithTimeout"], [65, 3, 1, "", "error"], [65, 3, 1, "", "getApiClient"], [65, 3, 1, "", "getCvClient"], [65, 3, 1, "", "getDevice"], [65, 3, 1, "", "getDeviceHostname"], [65, 3, 1, "", "getDevicesByTag"], [65, 3, 1, "", "getInterfacesByTag"], [65, 3, 1, "", "getLoggingLevel"], [65, 3, 1, "", "getWorkspaceId"], [65, 3, 1, "", "httpGet"], [65, 3, 1, "", "httpGetConfig"], [65, 3, 1, "", "httpPost"], [65, 3, 1, "", "info"], [65, 3, 1, "", "initializeStudioCtxFromArgs"], [65, 3, 1, "", "keepBlankLines"], [65, 3, 1, "", "retrieve"], [65, 3, 1, "", "runDeviceCmds"], [65, 3, 1, "", "setLoggingLevel"], [65, 3, 1, "", "setTopology"], [65, 3, 1, "", "showIf"], [65, 3, 1, "", "store"], [65, 3, 1, "", "trace"], [65, 3, 1, "", "warning"]], "cloudvision.cvlib.context.LoggingLevel": [[65, 2, 1, "", "Critical"], [65, 2, 1, "", "Debug"], [65, 2, 1, "", "Error"], [65, 2, 1, "", "Info"], [65, 2, 1, "", "Trace"], [65, 2, 1, "", "Warn"]], "cloudvision.cvlib.device": [[65, 1, 1, "", "Device"], [65, 1, 1, "", "Interface"]], "cloudvision.cvlib.device.Device": [[65, 3, 1, "", "addInterface"], [65, 3, 1, "", "getInterface"], [65, 3, 1, "", "getInterfaces"], [65, 3, 1, "", "getInterfacesByTag"], [65, 3, 1, "", "getSingleTag"], [65, 3, 1, "", "getTags"]], "cloudvision.cvlib.device.Interface": [[65, 3, 1, "", "getDevice"], [65, 3, 1, "", "getPeerDevice"], [65, 3, 1, "", "getPeerInfo"], [65, 3, 1, "", "getPeerInterface"], [65, 3, 1, "", "getSingleTag"], [65, 3, 1, "", "getTags"], [65, 3, 1, "", "setPeerInfo"]], "cloudvision.cvlib.exceptions": [[65, 5, 1, "", "ActionFailed"], [65, 5, 1, "", "AutofillActionException"], [65, 5, 1, "", "BatchException"], [65, 5, 1, "", "CVException"], [65, 5, 1, "", "ConnectionFailed"], [65, 5, 1, "", "DeviceCommandsFailed"], [65, 5, 1, "", "InputEmptyException"], [65, 1, 1, "", "InputError"], [65, 5, 1, "", "InputErrorException"], [65, 5, 1, "", "InputException"], [65, 5, 1, "", "InputNotFoundException"], [65, 5, 1, "", "InputRequestException"], [65, 5, 1, "", "InputUpdateException"], [65, 5, 1, "", "InvalidContextException"], [65, 5, 1, "", "InvalidCredentials"], [65, 5, 1, "", "InvalidTopologyException"], [65, 5, 1, "", "IpErrorException"], [65, 5, 1, "", "IpHostIndexException"], [65, 5, 1, "", "IpNetworkOverlapException"], [65, 5, 1, "", "IpSubnetIndexException"], [65, 5, 1, "", "LoggingFailed"], [65, 5, 1, "", "ScriptException"], [65, 5, 1, "", "TagErrorException"], [65, 5, 1, "", "TagInvalidTypeException"], [65, 5, 1, "", "TagInvalidValuesException"], [65, 5, 1, "", "TagMissingException"], [65, 5, 1, "", "TagOperationException"], [65, 5, 1, "", "TagTooManyValuesException"], [65, 5, 1, "", "TemplateException"], [65, 5, 1, "", "TemplateTypeNotSupported"], [65, 5, 1, "", "TimeoutExpiry"]], "cloudvision.cvlib.exceptions.IpErrorException": [[65, 3, 1, "", "expTagField"]], "cloudvision.cvlib.exceptions.TagErrorException": [[65, 3, 1, "", "expTagField"]], "cloudvision.cvlib.execution": [[65, 1, 1, "", "Execution"]], "cloudvision.cvlib.id_allocator": [[65, 1, 1, "", "IdAllocator"]], "cloudvision.cvlib.id_allocator.IdAllocator": [[65, 3, 1, "", "allocate"], [65, 3, 1, "", "free"], [65, 3, 1, "", "getAllocated"], [65, 3, 1, "", "getAvailable"], [65, 3, 1, "", "getIdNames"]], "cloudvision.cvlib.iputils": [[65, 4, 1, "", "first_usable_address"], [65, 4, 1, "", "get_ip_from_subnet"], [65, 4, 1, "", "get_number_subnets"], [65, 4, 1, "", "get_subnet_by_index"], [65, 4, 1, "", "is_ipv4"], [65, 4, 1, "", "is_ipv6"], [65, 4, 1, "", "last_usable_address"], [65, 4, 1, "", "number_of_usable_addresses"], [65, 4, 1, "", "overlapping_networks_check"]], "cloudvision.cvlib.logger": [[65, 1, 1, "", "Logger"]], "cloudvision.cvlib.studio": [[65, 4, 1, "", "GetOneWithWS"], [65, 1, 1, "", "Studio"], [65, 1, 1, "", "StudioCustomData"], [65, 4, 1, "", "extractInputElems"], [65, 4, 1, "", "extractStudioInfoFromArgs"], [65, 4, 1, "", "getSimpleResolverQueryValue"], [65, 4, 1, "", "getStudioInputs"], [65, 4, 1, "", "mergeStudioInputs"], [65, 4, 1, "", "setStudioInput"], [65, 4, 1, "", "setStudioInputs"]], "cloudvision.cvlib.studio.StudioCustomData": [[65, 3, 1, "", "retrieve"], [65, 3, 1, "", "store"]], "cloudvision.cvlib.tags": [[65, 1, 1, "", "Tag"], [65, 1, 1, "", "Tags"]], "cloudvision.cvlib.tags.Tag": [[65, 6, 1, "", "label"], [65, 6, 1, "", "value"]], "cloudvision.cvlib.topology": [[65, 1, 1, "", "Connection"], [65, 1, 1, "", "Topology"]], "cloudvision.cvlib.topology.Topology": [[65, 3, 1, "", "getDevices"], [65, 3, 1, "", "setLogger"]], "cloudvision.cvlib.user": [[65, 1, 1, "", "User"]], "cloudvision.cvlib.utils": [[65, 4, 1, "", "extractJSONEncodedListArg"], [65, 4, 1, "", "queryCCStartTime"]], "cloudvision.cvlib.workspace": [[65, 1, 1, "", "Workspace"], [65, 4, 1, "", "getWorkspaceLastSynced"]], "fmp": [[66, 0, 0, "-", "deletes_pb2"], [66, 0, 0, "-", "deletes_pb2_grpc"], [66, 0, 0, "-", "extensions_pb2"], [66, 0, 0, "-", "extensions_pb2_grpc"], [66, 0, 0, "-", "inet_pb2"], [66, 0, 0, "-", "inet_pb2_grpc"], [66, 0, 0, "-", "pages_pb2"], [66, 0, 0, "-", "pages_pb2_grpc"], [66, 0, 0, "-", "wrappers_pb2"], [66, 0, 0, "-", "wrappers_pb2_grpc"], [66, 0, 0, "-", "yang_pb2"], [66, 0, 0, "-", "yang_pb2_grpc"]], "fmp.inet_pb2": [[66, 1, 1, "", "IPAddress"], [66, 1, 1, "", "IPPrefix"], [66, 1, 1, "", "IPv4Address"], [66, 1, 1, "", "IPv4Prefix"], [66, 1, 1, "", "IPv6Address"], [66, 1, 1, "", "IPv6Prefix"], [66, 1, 1, "", "Port"], [66, 1, 1, "", "RepeatedIPAddress"], [66, 1, 1, "", "RepeatedIPv4Address"], [66, 1, 1, "", "RepeatedIPv6Address"]], "fmp.inet_pb2.IPAddress": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.inet_pb2.IPPrefix": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.inet_pb2.IPv4Address": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.inet_pb2.IPv4Prefix": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.inet_pb2.IPv6Address": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.inet_pb2.IPv6Prefix": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.inet_pb2.Port": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.inet_pb2.RepeatedIPAddress": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.inet_pb2.RepeatedIPv4Address": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.inet_pb2.RepeatedIPv6Address": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2": [[66, 1, 1, "", "MapBoolBool"], [66, 1, 1, "", "MapBoolBytes"], [66, 1, 1, "", "MapBoolDouble"], [66, 1, 1, "", "MapBoolFloat"], [66, 1, 1, "", "MapBoolInt32"], [66, 1, 1, "", "MapBoolInt64"], [66, 1, 1, "", "MapBoolString"], [66, 1, 1, "", "MapBoolUInt32"], [66, 1, 1, "", "MapBoolUInt64"], [66, 1, 1, "", "MapInt32Bool"], [66, 1, 1, "", "MapInt32Bytes"], [66, 1, 1, "", "MapInt32Double"], [66, 1, 1, "", "MapInt32Float"], [66, 1, 1, "", "MapInt32Int32"], [66, 1, 1, "", "MapInt32Int64"], [66, 1, 1, "", "MapInt32String"], [66, 1, 1, "", "MapInt32UInt32"], [66, 1, 1, "", "MapInt32UInt64"], [66, 1, 1, "", "MapInt64Bool"], [66, 1, 1, "", "MapInt64Bytes"], [66, 1, 1, "", "MapInt64Double"], [66, 1, 1, "", "MapInt64Float"], [66, 1, 1, "", "MapInt64Int32"], [66, 1, 1, "", "MapInt64Int64"], [66, 1, 1, "", "MapInt64String"], [66, 1, 1, "", "MapInt64UInt32"], [66, 1, 1, "", "MapInt64UInt64"], [66, 1, 1, "", "MapStringBool"], [66, 1, 1, "", "MapStringBytes"], [66, 1, 1, "", "MapStringDouble"], [66, 1, 1, "", "MapStringFloat"], [66, 1, 1, "", "MapStringInt32"], [66, 1, 1, "", "MapStringInt64"], [66, 1, 1, "", "MapStringString"], [66, 1, 1, "", "MapStringUInt32"], [66, 1, 1, "", "MapStringUInt64"], [66, 1, 1, "", "MapUInt32Bool"], [66, 1, 1, "", "MapUInt32Bytes"], [66, 1, 1, "", "MapUInt32Double"], [66, 1, 1, "", "MapUInt32Float"], [66, 1, 1, "", "MapUInt32Int32"], [66, 1, 1, "", "MapUInt32Int64"], [66, 1, 1, "", "MapUInt32String"], [66, 1, 1, "", "MapUInt32UInt32"], [66, 1, 1, "", "MapUInt32UInt64"], [66, 1, 1, "", "MapUInt64Bool"], [66, 1, 1, "", "MapUInt64Bytes"], [66, 1, 1, "", "MapUInt64Double"], [66, 1, 1, "", "MapUInt64Float"], [66, 1, 1, "", "MapUInt64Int32"], [66, 1, 1, "", "MapUInt64Int64"], [66, 1, 1, "", "MapUInt64String"], [66, 1, 1, "", "MapUInt64UInt32"], [66, 1, 1, "", "MapUInt64UInt64"], [66, 1, 1, "", "RepeatedBool"], [66, 1, 1, "", "RepeatedBytes"], [66, 1, 1, "", "RepeatedDouble"], [66, 1, 1, "", "RepeatedFloat"], [66, 1, 1, "", "RepeatedInt32"], [66, 1, 1, "", "RepeatedInt64"], [66, 1, 1, "", "RepeatedString"], [66, 1, 1, "", "RepeatedUInt32"], [66, 1, 1, "", "RepeatedUInt64"]], "fmp.wrappers_pb2.MapBoolBool": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapBoolBool.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapBoolBytes": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapBoolBytes.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapBoolDouble": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapBoolDouble.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapBoolFloat": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapBoolFloat.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapBoolInt32": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapBoolInt32.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapBoolInt64": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapBoolInt64.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapBoolString": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapBoolString.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapBoolUInt32": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapBoolUInt32.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapBoolUInt64": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapBoolUInt64.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapInt32Bool": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapInt32Bool.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapInt32Bytes": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapInt32Bytes.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapInt32Double": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapInt32Double.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapInt32Float": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapInt32Float.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapInt32Int32": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapInt32Int32.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapInt32Int64": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapInt32Int64.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapInt32String": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapInt32String.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapInt32UInt32": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapInt32UInt32.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapInt32UInt64": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapInt32UInt64.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapInt64Bool": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapInt64Bool.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapInt64Bytes": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapInt64Bytes.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapInt64Double": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapInt64Double.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapInt64Float": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapInt64Float.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapInt64Int32": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapInt64Int32.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapInt64Int64": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapInt64Int64.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapInt64String": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapInt64String.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapInt64UInt32": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapInt64UInt32.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapInt64UInt64": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapInt64UInt64.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapStringBool": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapStringBool.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapStringBytes": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapStringBytes.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapStringDouble": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapStringDouble.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapStringFloat": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapStringFloat.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapStringInt32": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapStringInt32.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapStringInt64": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapStringInt64.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapStringString": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapStringString.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapStringUInt32": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapStringUInt32.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapStringUInt64": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapStringUInt64.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapUInt32Bool": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapUInt32Bool.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapUInt32Bytes": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapUInt32Bytes.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapUInt32Double": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapUInt32Double.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapUInt32Float": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapUInt32Float.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapUInt32Int32": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapUInt32Int32.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapUInt32Int64": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapUInt32Int64.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapUInt32String": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapUInt32String.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapUInt32UInt32": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapUInt32UInt32.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapUInt32UInt64": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapUInt32UInt64.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapUInt64Bool": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapUInt64Bool.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapUInt64Bytes": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapUInt64Bytes.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapUInt64Double": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapUInt64Double.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapUInt64Float": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapUInt64Float.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapUInt64Int32": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapUInt64Int32.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapUInt64Int64": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapUInt64Int64.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapUInt64String": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapUInt64String.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapUInt64UInt32": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapUInt64UInt32.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.MapUInt64UInt64": [[66, 2, 1, "", "DESCRIPTOR"], [66, 1, 1, "", "ValuesEntry"]], "fmp.wrappers_pb2.MapUInt64UInt64.ValuesEntry": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.RepeatedBool": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.RepeatedBytes": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.RepeatedDouble": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.RepeatedFloat": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.RepeatedInt32": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.RepeatedInt64": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.RepeatedString": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.RepeatedUInt32": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.wrappers_pb2.RepeatedUInt64": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.yang_pb2": [[66, 1, 1, "", "MACAddress"], [66, 1, 1, "", "RepeatedMACAddress"]], "fmp.yang_pb2.MACAddress": [[66, 2, 1, "", "DESCRIPTOR"]], "fmp.yang_pb2.RepeatedMACAddress": [[66, 2, 1, "", "DESCRIPTOR"]]}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "class", "Python class"], "2": ["py", "attribute", "Python attribute"], "3": ["py", "method", "Python method"], "4": ["py", "function", "Python function"], "5": ["py", "exception", "Python exception"], "6": ["py", "property", "Python property"]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:attribute", "3": "py:method", "4": "py:function", "5": "py:exception", "6": "py:property"}, "terms": {"": [60, 62, 65], "0": [60, 63, 65], "1": [59, 62, 63, 65], "124": 63, "1mb": 65, "2": 65, "200": 65, "21": 63, "250": 65, "3": 65, "34": 63, "4": [63, 65], "5": [62, 65], "60000": 63, "65000": 65, "90": 63, "A": [61, 62, 65], "AND": 62, "As": 65, "By": 65, "For": [62, 65], "If": [62, 65], "In": [62, 65], "It": [60, 62, 65], "NOT": 65, "OR": [62, 65], "The": [62, 63, 65], "Then": 62, "There": 62, "These": 65, "To": 65, "Will": 65, "_messag": [2, 3, 5, 6, 8, 9, 11, 12, 14, 15, 17, 18, 20, 21, 23, 24, 26, 27, 29, 30, 32, 33, 35, 36, 38, 39, 41, 42, 44, 45, 47, 48, 51, 52, 53, 55, 56, 66], "_upb": [2, 3, 5, 6, 8, 9, 11, 12, 14, 15, 17, 18, 20, 21, 23, 24, 26, 27, 29, 30, 32, 33, 35, 36, 38, 39, 41, 42, 44, 45, 47, 48, 51, 52, 53, 55, 56, 66], "about": [62, 65], "abov": 65, "accept": 65, "access": [58, 63, 65], "access_token": 63, "account": [43, 44, 62, 65], "accountconfig": [43, 44], "accountconfigdeleteallrequest": [44, 45], "accountconfigdeleteallrespons": [44, 45], "accountconfigdeleterequest": [44, 45], "accountconfigdeleterespons": [44, 45], "accountconfigdeletesomerequest": [44, 45], "accountconfigdeletesomerespons": [44, 45], "accountconfigrequest": [44, 45], "accountconfigrespons": [44, 45], "accountconfigservic": [44, 45], "accountconfigserviceservic": [44, 45], "accountconfigservicestub": [44, 45], "accountconfigsetrequest": [44, 45], "accountconfigsetrespons": [44, 45], "accountconfigsetsomerequest": [44, 45], "accountconfigsetsomerespons": [44, 45], "accountconfigsomerequest": [44, 45], "accountconfigsomerespons": [44, 45], "accountconfigstreamrequest": [44, 45], "accountconfigstreamrespons": [44, 45], "accountkei": [43, 44], "accountrequest": [44, 45], "accountrespons": [44, 45], "accountservic": [44, 45], "accountserviceservic": [44, 45], "accountservicestub": [44, 45], "accountsomerequest": [44, 45], "accountsomerespons": [44, 45], "accountstreamrequest": [44, 45], "accountstreamrespons": [44, 45], "accur": 65, "across": 62, "act": 65, "action": [7, 8, 57, 68], "actioncontext": [57, 65], "actionfail": [57, 65], "actionid": 65, "activ": 65, "activatedebugmod": [57, 65], "actual": 63, "ad": 65, "add": 65, "add_accountconfigserviceservicer_to_serv": [44, 45], "add_accountserviceservicer_to_serv": [44, 45], "add_alertconfigserviceservicer_to_serv": [2, 3], "add_alertserviceservicer_to_serv": [2, 3], "add_alphaservicer_to_serv": [58, 62], "add_approveconfigserviceservicer_to_serv": [8, 9], "add_assignedtagsconfigserviceservicer_to_serv": [47, 48], "add_assignedtagsserviceservicer_to_serv": [47, 48], "add_assignmentserviceservicer_to_serv": [41, 42], "add_authservicer_to_serv": [58, 62], "add_autofillactionconfigserviceservicer_to_serv": [47, 48], "add_autofillactionserviceservicer_to_serv": [47, 48], "add_bugexposureserviceservicer_to_serv": [5, 6], "add_certificateauthorityservicer_to_serv": [58, 62], "add_changecontrolconfigserviceservicer_to_serv": [8, 9], "add_changecontrolserviceservicer_to_serv": [8, 9], "add_clusterservicer_to_serv": [58, 62], "add_configdiffserviceservicer_to_serv": [14, 15], "add_configletassignmentconfigserviceservicer_to_serv": [11, 12], "add_configletassignmentserviceservicer_to_serv": [11, 12], "add_configletconfigserviceservicer_to_serv": [11, 12], "add_configletserviceservicer_to_serv": [11, 12], "add_configurationserviceservicer_to_serv": [14, 15], "add_dashboardconfigserviceservicer_to_serv": [20, 21], "add_dashboardserviceservicer_to_serv": [20, 21], "add_defaulttemplateserviceservicer_to_serv": [2, 3], "add_devicedecommissioningconfigserviceservicer_to_serv": [35, 36], "add_devicedecommissioningserviceservicer_to_serv": [35, 36], "add_devicelifecyclesummaryserviceservicer_to_serv": [38, 39], "add_deviceonboardingconfigserviceservicer_to_serv": [35, 36], "add_deviceonboardingserviceservicer_to_serv": [35, 36], "add_deviceserviceservicer_to_serv": [35, 36], "add_endpointlocationserviceservicer_to_serv": [23, 24], "add_eventannotationconfigserviceservicer_to_serv": [26, 27], "add_eventserviceservicer_to_serv": [26, 27], "add_globaldashboardconfigserviceservicer_to_serv": [20, 21], "add_inputsconfigserviceservicer_to_serv": [47, 48], "add_inputsserviceservicer_to_serv": [47, 48], "add_oauthconfigserviceservicer_to_serv": [29, 30], "add_or_replac": 60, "add_probeserviceservicer_to_serv": [17, 18], "add_probestatsserviceservicer_to_serv": [17, 18], "add_provisioneddeviceserviceservicer_to_serv": [35, 36], "add_querierservicer_to_serv": [58, 62], "add_routerv1servicer_to_serv": [58, 62], "add_samlconfigserviceservicer_to_serv": [29, 30], "add_searchservicer_to_serv": [58, 62], "add_secretinputserviceservicer_to_serv": [47, 48], "add_securityprofilediffserviceservicer_to_serv": [14, 15], "add_securityprofilediffsummaryserviceservicer_to_serv": [14, 15], "add_securityprofileserviceservicer_to_serv": [14, 15], "add_studioconfigserviceservicer_to_serv": [47, 48], "add_studioserviceservicer_to_serv": [47, 48], "add_studiosummaryserviceservicer_to_serv": [47, 48], "add_summaryserviceservicer_to_serv": [14, 15, 32, 33], "add_tagassignmentconfigserviceservicer_to_serv": [51, 52], "add_tagassignmentserviceservicer_to_serv": [51, 52], "add_tagconfigserviceservicer_to_serv": [51, 52], "add_tagserviceservicer_to_serv": [51, 52], "add_templateconfigserviceservicer_to_serv": [2, 3], "add_tokenconfigserviceservicer_to_serv": [44, 45], "add_tokenserviceservicer_to_serv": [44, 45], "add_usereventcreationconfigserviceservicer_to_serv": [26, 27], "add_workspacebuilddetailsserviceservicer_to_serv": [55, 56], "add_workspacebuildserviceservicer_to_serv": [55, 56], "add_workspaceconfigserviceservicer_to_serv": [55, 56], "add_workspaceserviceservicer_to_serv": [55, 56], "add_workspacesyncconfigserviceservicer_to_serv": [55, 56], "addheaderinterceptor": [57, 65], "addinterfac": [57, 65], "addit": 65, "address": [63, 65], "advis": 65, "aeri": 63, "aeriscacert": 65, "affect": 65, "after": [62, 63, 65], "aggreg": 62, "aggrrespons": 62, "alarm": 65, "alert": [0, 68], "alert_pb2": [0, 1], "alert_pb2_grpc": [0, 1], "alertconfig": [1, 2], "alertconfigrequest": [2, 3], "alertconfigrespons": [2, 3], "alertconfigservic": [2, 3], "alertconfigserviceservic": [2, 3], "alertconfigservicestub": [2, 3], "alertconfigsetrequest": [2, 3], "alertconfigsetrespons": [2, 3], "alertconfigstreamrequest": [2, 3], "alertconfigstreamrespons": [2, 3], "alertrequest": [2, 3], "alertrespons": [2, 3], "alertservic": [2, 3], "alertserviceservic": [2, 3], "alertservicestub": [2, 3], "alertstreamrequest": [2, 3], "alertstreamrespons": [2, 3], "alia": [60, 65], "all": [60, 62, 63, 65], "alloc": [57, 65], "allocid": 65, "allow": [58, 62, 65], "allowedv": 65, "alog": [57, 65], "alpha": [58, 62], "alphaservic": [58, 62], "alphastub": [58, 62], "alreadi": 65, "also": [62, 65], "alwai": 65, "ambassador": 65, "an": [60, 62, 65], "analyt": 65, "ani": [59, 61, 62, 63, 65], "anoth": 65, "anyth": 65, "api": [62, 65], "apiclientgett": 65, "apiserv": [62, 63, 65], "apiserveraddr": 65, "append": 62, "appli": 65, "applic": 65, "approveconfig": [7, 8], "approveconfigbatchedstreamrequest": [8, 9], "approveconfigbatchedstreamrespons": [8, 9], "approveconfigdeleteallrequest": [8, 9], "approveconfigdeleteallrespons": [8, 9], "approveconfigdeleterequest": [8, 9], "approveconfigdeleterespons": [8, 9], "approveconfigdeletesomerequest": [8, 9], "approveconfigdeletesomerespons": [8, 9], "approveconfigrequest": [8, 9], "approveconfigrespons": [8, 9], "approveconfigservic": [8, 9], "approveconfigserviceservic": [8, 9], "approveconfigservicestub": [8, 9], "approveconfigsetrequest": [8, 9], "approveconfigsetrespons": [8, 9], "approveconfigsetsomerequest": [8, 9], "approveconfigsetsomerespons": [8, 9], "approveconfigsomerequest": [8, 9], "approveconfigsomerespons": [8, 9], "approveconfigstreamrequest": [8, 9], "approveconfigstreamrespons": [8, 9], "ar": [62, 63, 65], "arg": [60, 65], "argument": 65, "arista": [67, 68], "around": 60, "arr": 60, "arrai": 65, "asn": [59, 63], "assign": [40, 41, 65], "assignedtag": [46, 47], "assignedtagsbatchedstreamrequest": [47, 48], "assignedtagsbatchedstreamrespons": [47, 48], "assignedtagsconfig": [46, 47], "assignedtagsconfigbatchedstreamrequest": [47, 48], "assignedtagsconfigbatchedstreamrespons": [47, 48], "assignedtagsconfigdeleteallrequest": [47, 48], "assignedtagsconfigdeleteallrespons": [47, 48], "assignedtagsconfigdeleterequest": [47, 48], "assignedtagsconfigdeleterespons": [47, 48], "assignedtagsconfigdeletesomerequest": [47, 48], "assignedtagsconfigdeletesomerespons": [47, 48], "assignedtagsconfigrequest": [47, 48], "assignedtagsconfigrespons": [47, 48], "assignedtagsconfigservic": [47, 48], "assignedtagsconfigserviceservic": [47, 48], "assignedtagsconfigservicestub": [47, 48], "assignedtagsconfigsetrequest": [47, 48], "assignedtagsconfigsetrespons": [47, 48], "assignedtagsconfigsetsomerequest": [47, 48], "assignedtagsconfigsetsomerespons": [47, 48], "assignedtagsconfigsomerequest": [47, 48], "assignedtagsconfigsomerespons": [47, 48], "assignedtagsconfigstreamrequest": [47, 48], "assignedtagsconfigstreamrespons": [47, 48], "assignedtagsrequest": [47, 48], "assignedtagsrespons": [47, 48], "assignedtagsservic": [47, 48], "assignedtagsserviceservic": [47, 48], "assignedtagsservicestub": [47, 48], "assignedtagssomerequest": [47, 48], "assignedtagssomerespons": [47, 48], "assignedtagsstreamrequest": [47, 48], "assignedtagsstreamrespons": [47, 48], "assignmentbatchedstreamrequest": [41, 42], "assignmentbatchedstreamrespons": [41, 42], "assignmentkei": [40, 41], "assignmentrequest": [41, 42], "assignmentrespons": [41, 42], "assignmentservic": [41, 42], "assignmentserviceservic": [41, 42], "assignmentservicestub": [41, 42], "assignmentsomerequest": [41, 42], "assignmentsomerespons": [41, 42], "assignmentstreamrequest": [41, 42], "assignmentstreamrespons": [41, 42], "associ": [3, 6, 9, 12, 15, 18, 21, 24, 27, 30, 33, 36, 39, 42, 45, 48, 52, 56, 62, 65], "assum": 65, "assumpt": 65, "asynchron": 62, "atom": 62, "attempt": 65, "attribut": 65, "audit": 65, "auth": [57, 58, 62, 65], "auth_key_path": [58, 63], "authandendpoint": [57, 65], "authent": 62, "author": [63, 65], "authservic": [58, 62], "authstub": [58, 62], "authzresult": [54, 55], "autofil": 65, "autofillact": [46, 47], "autofillactionbatchedstreamrequest": [47, 48], "autofillactionbatchedstreamrespons": [47, 48], "autofillactionconfig": [46, 47], "autofillactionconfigbatchedstreamrequest": [47, 48], "autofillactionconfigbatchedstreamrespons": [47, 48], "autofillactionconfigdeleteallrequest": [47, 48], "autofillactionconfigdeleteallrespons": [47, 48], "autofillactionconfigdeleterequest": [47, 48], "autofillactionconfigdeleterespons": [47, 48], "autofillactionconfigdeletesomerequest": [47, 48], "autofillactionconfigdeletesomerespons": [47, 48], "autofillactionconfigrequest": [47, 48], "autofillactionconfigrespons": [47, 48], "autofillactionconfigservic": [47, 48], "autofillactionconfigserviceservic": [47, 48], "autofillactionconfigservicestub": [47, 48], "autofillactionconfigsetrequest": [47, 48], "autofillactionconfigsetrespons": [47, 48], "autofillactionconfigsetsomerequest": [47, 48], "autofillactionconfigsetsomerespons": [47, 48], "autofillactionconfigsomerequest": [47, 48], "autofillactionconfigsomerespons": [47, 48], "autofillactionconfigstreamrequest": [47, 48], "autofillactionconfigstreamrespons": [47, 48], "autofillactionexcept": [57, 65], "autofillactionkei": [46, 47], "autofillactionrequest": [47, 48], "autofillactionrespons": [47, 48], "autofillactionservic": [47, 48], "autofillactionserviceservic": [47, 48], "autofillactionservicestub": [47, 48], "autofillactionsomerequest": [47, 48], "autofillactionsomerespons": [47, 48], "autofillactionstreamrequest": [47, 48], "autofillactionstreamrespons": [47, 48], "autofillargumentprovid": [46, 47], "avail": 65, "avoid": 65, "awar": 65, "azureoauth": [1, 2], "b": 62, "back": [62, 65], "backend": [62, 65], "base": [2, 3, 5, 6, 8, 9, 11, 12, 14, 15, 17, 18, 20, 21, 23, 24, 26, 27, 29, 30, 32, 33, 35, 36, 38, 39, 41, 42, 44, 45, 47, 48, 51, 52, 53, 55, 56, 60, 62, 63, 65, 66], "batch": [58, 62, 63], "batchexcept": [57, 65], "becaus": 65, "been": [62, 65], "befor": 62, "begin": 62, "being": [63, 65], "below": 65, "benchmark": [57, 65], "benchmarkdump": [57, 65], "benchmarkingoff": [57, 65], "benchmarkingon": [57, 65], "between": 62, "block": 65, "bodi": 65, "bool": [63, 65], "boolean": 65, "booleaninputfieldprop": [46, 47], "both": [62, 65], "bound": 65, "boundari": 65, "broadcastgroup": [1, 2], "buf": 60, "buffer": [2, 3, 5, 6, 8, 9, 11, 12, 14, 15, 17, 18, 20, 21, 23, 24, 26, 27, 29, 30, 32, 33, 35, 36, 38, 39, 41, 42, 44, 45, 47, 48, 49, 51, 52, 53, 55, 56, 62, 66], "bugexposur": [0, 68], "bugexposure_pb2": [0, 4], "bugexposure_pb2_grpc": [0, 4], "bugexposurekei": [4, 5], "bugexposurerequest": [5, 6], "bugexposurerespons": [5, 6], "bugexposureservic": [5, 6], "bugexposureserviceservic": [5, 6], "bugexposureservicestub": [5, 6], "bugexposurestreamrequest": [5, 6], "bugexposurestreamrespons": [5, 6], "build": 65, "buildid": 65, "buildstagest": [54, 55], "button": 65, "byte": [59, 63], "bytearrai": 62, "ca": [63, 65], "ca_pb2": [57, 58], "ca_pb2_grpc": [57, 58], "cacert": 65, "cach": 65, "call": [62, 65], "call_credenti": [3, 6, 9, 12, 15, 18, 21, 24, 27, 30, 33, 36, 39, 42, 45, 48, 52, 56, 62], "callabl": 65, "caller": 63, "can": [60, 62, 63, 65], "cannot": [63, 65], "case": [62, 65], "catch": 65, "caus": 65, "caution": 65, "cavalu": 63, "cca": 65, "ccid": 65, "cert": [57, 58, 63, 65], "cert_from_pem": [58, 59], "cert_path": [59, 63], "cert_pem": 59, "certain": 65, "certif": [59, 62, 63], "certificateauthor": [58, 62], "certificateauthorityservic": [58, 62], "certificateauthoritystub": [58, 62], "certificatesigningrequest": 59, "certsvalu": 63, "chang": [7, 8, 63, 65], "changeconfig": [7, 8], "changecontrol": [0, 57, 68], "changecontrol_pb2": [0, 7], "changecontrol_pb2_grpc": [0, 7], "changecontrolbatchedstreamrequest": [8, 9], "changecontrolbatchedstreamrespons": [8, 9], "changecontrolconfig": [7, 8], "changecontrolconfigbatchedstreamrequest": [8, 9], "changecontrolconfigbatchedstreamrespons": [8, 9], "changecontrolconfigdeleteallrequest": [8, 9], "changecontrolconfigdeleteallrespons": [8, 9], "changecontrolconfigdeleterequest": [8, 9], "changecontrolconfigdeleterespons": [8, 9], "changecontrolconfigdeletesomerequest": [8, 9], "changecontrolconfigdeletesomerespons": [8, 9], "changecontrolconfigrequest": [8, 9], "changecontrolconfigrespons": [8, 9], "changecontrolconfigservic": [8, 9], "changecontrolconfigserviceservic": [8, 9], "changecontrolconfigservicestub": [8, 9], "changecontrolconfigsetrequest": [8, 9], "changecontrolconfigsetrespons": [8, 9], "changecontrolconfigsetsomerequest": [8, 9], "changecontrolconfigsetsomerespons": [8, 9], "changecontrolconfigsomerequest": [8, 9], "changecontrolconfigsomerespons": [8, 9], "changecontrolconfigstreamrequest": [8, 9], "changecontrolconfigstreamrespons": [8, 9], "changecontrolkei": [7, 8], "changecontrolrequest": [8, 9], "changecontrolrespons": [8, 9], "changecontrolservic": [8, 9], "changecontrolserviceservic": [8, 9], "changecontrolservicestub": [8, 9], "changecontrolsomerequest": [8, 9], "changecontrolsomerespons": [8, 9], "changecontrolstreamrequest": [8, 9], "changecontrolstreamrespons": [8, 9], "channel": [3, 6, 9, 12, 15, 18, 21, 24, 27, 30, 33, 36, 39, 42, 45, 48, 52, 56, 62], "channel_credenti": [3, 6, 9, 12, 15, 18, 21, 24, 27, 30, 33, 36, 39, 42, 45, 48, 52, 56, 62], "channel_opt": 63, "check": 65, "chunk": 65, "chunk_siz": 65, "clash": 65, "class": [2, 3, 5, 6, 8, 9, 11, 12, 14, 15, 17, 18, 20, 21, 23, 24, 26, 27, 29, 30, 32, 33, 35, 36, 38, 39, 41, 42, 44, 45, 47, 48, 49, 51, 52, 53, 55, 56, 60, 62, 63, 65, 66], "clean": 65, "cleanup": 65, "clear": [57, 65], "cli": 65, "client": [2, 3, 5, 6, 8, 9, 11, 12, 14, 15, 17, 18, 20, 21, 23, 24, 26, 27, 29, 30, 32, 33, 35, 36, 38, 39, 41, 42, 44, 45, 47, 48, 49, 51, 52, 53, 55, 56, 62, 63, 65, 66], "clientgett": 65, "clitimeout": 65, "close": [58, 63, 65], "cluster": [40, 41, 58, 62], "clusterinfo": [58, 62], "clusterservic": [58, 62], "clusterstub": [58, 62], "code": [2, 3, 5, 6, 8, 9, 11, 12, 14, 15, 17, 18, 20, 21, 23, 24, 26, 27, 29, 30, 32, 33, 35, 36, 38, 39, 41, 42, 44, 45, 47, 48, 49, 51, 52, 53, 55, 56, 62, 65, 66], "codec": [57, 58], "coexist": 65, "cohes": 65, "collect": [60, 65], "collectioninputfieldprop": [46, 47], "combin": [62, 65], "combo": 65, "come": 58, "command": 65, "commandendpoint": 65, "commandslist": 65, "comment": [3, 6, 9, 12, 15, 18, 21, 24, 27, 30, 33, 36, 39, 42, 45, 48, 52, 56, 62], "common": 65, "compar": 63, "complet": [60, 65], "complex": [60, 65], "compliancestatu": [31, 32], "compliancestatusbysup": [31, 32], "componentsentri": [25, 26], "compress": [3, 6, 9, 12, 15, 18, 21, 24, 27, 30, 33, 36, 39, 42, 45, 48, 52, 56, 62], "condit": 65, "confgetreq": 65, "config": 65, "configdiff": [13, 14], "configdiffbatchedstreamrequest": [14, 15], "configdiffbatchedstreamrespons": [14, 15], "configdiffkei": [13, 14], "configdiffrequest": [14, 15], "configdiffrespons": [14, 15], "configdiffservic": [14, 15], "configdiffserviceservic": [14, 15], "configdiffservicestub": [14, 15], "configdiffsomerequest": [14, 15], "configdiffsomerespons": [14, 15], "configdiffstreamrequest": [14, 15], "configdiffstreamrespons": [14, 15], "configerror": [1, 2, 13, 14], "configkei": [13, 14], "configlet": [0, 68], "configlet_pb2": [0, 10], "configlet_pb2_grpc": [0, 10], "configletassign": [10, 11], "configletassignmentbatchedstreamrequest": [11, 12], "configletassignmentbatchedstreamrespons": [11, 12], "configletassignmentconfig": [10, 11], "configletassignmentconfigbatchedstreamrequest": [11, 12], "configletassignmentconfigbatchedstreamrespons": [11, 12], "configletassignmentconfigdeleteallrequest": [11, 12], "configletassignmentconfigdeleteallrespons": [11, 12], "configletassignmentconfigdeleterequest": [11, 12], "configletassignmentconfigdeleterespons": [11, 12], "configletassignmentconfigdeletesomerequest": [11, 12], "configletassignmentconfigdeletesomerespons": [11, 12], "configletassignmentconfigrequest": [11, 12], "configletassignmentconfigrespons": [11, 12], "configletassignmentconfigservic": [11, 12], "configletassignmentconfigserviceservic": [11, 12], "configletassignmentconfigservicestub": [11, 12], "configletassignmentconfigsetrequest": [11, 12], "configletassignmentconfigsetrespons": [11, 12], "configletassignmentconfigsetsomerequest": [11, 12], "configletassignmentconfigsetsomerespons": [11, 12], "configletassignmentconfigsomerequest": [11, 12], "configletassignmentconfigsomerespons": [11, 12], "configletassignmentconfigstreamrequest": [11, 12], "configletassignmentconfigstreamrespons": [11, 12], "configletassignmentkei": [10, 11], "configletassignmentrequest": [11, 12], "configletassignmentrespons": [11, 12], "configletassignmentservic": [11, 12], "configletassignmentserviceservic": [11, 12], "configletassignmentservicestub": [11, 12], "configletassignmentsomerequest": [11, 12], "configletassignmentsomerespons": [11, 12], "configletassignmentstreamrequest": [11, 12], "configletassignmentstreamrespons": [11, 12], "configletbatchedstreamrequest": [11, 12], "configletbatchedstreamrespons": [11, 12], "configletbuildresult": [54, 55], "configletconfig": [10, 11], "configletconfigbatchedstreamrequest": [11, 12], "configletconfigbatchedstreamrespons": [11, 12], "configletconfigdeleteallrequest": [11, 12], "configletconfigdeleteallrespons": [11, 12], "configletconfigdeleterequest": [11, 12], "configletconfigdeleterespons": [11, 12], "configletconfigdeletesomerequest": [11, 12], "configletconfigdeletesomerespons": [11, 12], "configletconfigrequest": [11, 12], "configletconfigrespons": [11, 12], "configletconfigservic": [11, 12], "configletconfigserviceservic": [11, 12], "configletconfigservicestub": [11, 12], "configletconfigsetrequest": [11, 12], "configletconfigsetrespons": [11, 12], "configletconfigsetsomerequest": [11, 12], "configletconfigsetsomerespons": [11, 12], "configletconfigsomerequest": [11, 12], "configletconfigsomerespons": [11, 12], "configletconfigstreamrequest": [11, 12], "configletconfigstreamrespons": [11, 12], "configletkei": [10, 11], "configletrequest": [11, 12], "configletrespons": [11, 12], "configletservic": [11, 12], "configletserviceservic": [11, 12], "configletservicestub": [11, 12], "configletsomerequest": [11, 12], "configletsomerespons": [11, 12], "configletstreamrequest": [11, 12], "configletstreamrespons": [11, 12], "configsourc": [13, 14], "configstatu": [0, 68], "configstatus_pb2": [0, 13], "configstatus_pb2_grpc": [0, 13], "configstub": 65, "configsummari": [13, 14], "configsyncresult": [54, 55], "configur": [13, 14, 62, 65], "configurationbatchedstreamrequest": [14, 15], "configurationbatchedstreamrespons": [14, 15], "configurationrequest": [14, 15], "configurationrespons": [14, 15], "configurationservic": [14, 15], "configurationserviceservic": [14, 15], "configurationservicestub": [14, 15], "configurationsomerequest": [14, 15], "configurationsomerespons": [14, 15], "configurationstreamrequest": [14, 15], "configurationstreamrespons": [14, 15], "configvalidationresult": [54, 55], "conflict": 65, "conjunct": 65, "connect": [57, 68], "connectionerror": 65, "connectionfail": [57, 65], "connectiontimeout": 65, "connectivitymonitor": [0, 68], "connectivitymonitor_pb2": [0, 16], "connectivitymonitor_pb2_grpc": [0, 16], "connector": [57, 65, 68], "constant": [57, 68], "consum": [58, 65], "contain": [62, 65], "content": 68, "context": [3, 6, 9, 12, 15, 18, 21, 24, 27, 30, 33, 36, 39, 42, 45, 48, 52, 56, 57, 62, 68], "control": 65, "convert": 65, "copi": [58, 60], "core": [57, 58], "correct": 65, "correctli": 62, "correspond": [2, 3, 5, 6, 8, 9, 11, 12, 14, 15, 17, 18, 20, 21, 23, 24, 26, 27, 29, 30, 32, 33, 35, 36, 38, 39, 41, 42, 44, 45, 47, 48, 49, 51, 52, 53, 55, 56, 62, 66], "corrupt": 62, "could": 65, "count_onli": 63, "cours": 62, "creat": [57, 59, 62, 63, 65], "create_csr": [58, 59], "create_custom_schema_index_request": [58, 63], "create_dataset": [58, 63], "create_notif": [58, 63], "create_queri": [58, 63], "createdat": 65, "createdataset": [58, 62], "createdatasetrequest": 62, "createsess": [58, 62], "creation": 65, "credenti": 65, "critic": [57, 65], "crt": 62, "csr": [59, 62], "ctx": 65, "cuedata": [1, 2], "cuesendgridendpoint": [1, 2], "cuesendgridset": [1, 2], "cuesnmpauth": [1, 2], "cuesnmpendpoint": [1, 2], "cuesnmpset": [1, 2], "cuesyslogendpoint": [1, 2], "cuesyslogset": [1, 2], "current": [62, 63, 65], "currval": 65, "custom": [62, 63, 65], "custom_typ": [57, 58], "customdata": 65, "customindexschema": 63, "customkei": 65, "cv": 65, "cvclient": 65, "cverror": 65, "cvexcept": [57, 65], "cvlib": [57, 68], "cvp": 65, "cyclic": 65, "d": 65, "d_name": 63, "d_type": 63, "dai": 63, "dashboard": [0, 68], "dashboard_pb2": [0, 19], "dashboard_pb2_grpc": [0, 19], "dashboardbatchedstreamrequest": [20, 21], "dashboardbatchedstreamrespons": [20, 21], "dashboardconfig": [19, 20], "dashboardconfigbatchedstreamrequest": [20, 21], "dashboardconfigbatchedstreamrespons": [20, 21], "dashboardconfigdeleteallrequest": [20, 21], "dashboardconfigdeleteallrespons": [20, 21], "dashboardconfigdeleterequest": [20, 21], "dashboardconfigdeleterespons": [20, 21], "dashboardconfigdeletesomerequest": [20, 21], "dashboardconfigdeletesomerespons": [20, 21], "dashboardconfigrequest": [20, 21], "dashboardconfigrespons": [20, 21], "dashboardconfigservic": [20, 21], "dashboardconfigserviceservic": [20, 21], "dashboardconfigservicestub": [20, 21], "dashboardconfigsetrequest": [20, 21], "dashboardconfigsetrespons": [20, 21], "dashboardconfigsetsomerequest": [20, 21], "dashboardconfigsetsomerespons": [20, 21], "dashboardconfigsomerequest": [20, 21], "dashboardconfigsomerespons": [20, 21], "dashboardconfigstreamrequest": [20, 21], "dashboardconfigstreamrespons": [20, 21], "dashboardkei": [19, 20], "dashboardmetadata": [19, 20], "dashboardrequest": [20, 21], "dashboardrespons": [20, 21], "dashboardservic": [20, 21], "dashboardserviceservic": [20, 21], "dashboardservicestub": [20, 21], "dashboardsomerequest": [20, 21], "dashboardsomerespons": [20, 21], "dashboardstreamrequest": [20, 21], "dashboardstreamrespons": [20, 21], "data": [59, 62, 63, 65], "databas": 65, "dataentri": [25, 26], "dataset": [58, 62, 63, 65], "dateandmodel": [37, 38], "datetim": 63, "deactiv": 65, "deactivatedebugmod": [57, 65], "debug": [57, 65], "decid": 62, "declar": 65, "decod": [57, 58], "decode_arrai": [58, 60], "decode_batch": [58, 63], "decode_map": [58, 60], "decode_notif": [58, 63], "decor": 65, "decrypt": 59, "deep": 65, "default": [61, 62, 63, 65], "default_channel_opt": [58, 63], "defaulttempl": [1, 2], "defaulttemplatebatchedstreamrequest": [2, 3], "defaulttemplatebatchedstreamrespons": [2, 3], "defaulttemplaterequest": [2, 3], "defaulttemplaterespons": [2, 3], "defaulttemplateservic": [2, 3], "defaulttemplateserviceservic": [2, 3], "defaulttemplateservicestub": [2, 3], "defaulttemplatesomerequest": [2, 3], "defaulttemplatesomerespons": [2, 3], "defaulttemplatestreamrequest": [2, 3], "defaulttemplatestreamrespons": [2, 3], "defin": [2, 3, 5, 6, 8, 9, 11, 12, 14, 15, 17, 18, 20, 21, 23, 24, 26, 27, 29, 30, 32, 33, 35, 36, 38, 39, 41, 42, 44, 45, 47, 48, 49, 51, 52, 53, 55, 56, 62, 65, 66], "delet": [2, 3, 8, 9, 11, 12, 20, 21, 26, 27, 29, 30, 35, 36, 44, 45, 47, 48, 51, 52, 55, 56, 62, 63, 65], "delete_after_dai": 63, "deleteal": [2, 3, 8, 9, 11, 12, 20, 21, 26, 27, 29, 30, 35, 36, 44, 45, 47, 48, 51, 52, 55, 56], "deletecustomschema": [58, 62], "deletes_pb2": 68, "deletes_pb2_grpc": 68, "deletesom": [2, 3, 8, 9, 11, 12, 20, 21, 26, 27, 29, 30, 35, 36, 44, 45, 47, 48, 51, 52, 55, 56], "denot": 65, "deprec": [62, 65], "der": [59, 63], "describ": 65, "descript": 62, "descriptor": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 66, 68], "deseri": 62, "design": 65, "desir": [60, 65], "destdevic": 65, "destinterfac": 65, "determin": 65, "devic": [22, 23, 34, 35, 57, 62, 63, 68], "devicebatchedstreamrequest": [35, 36], "devicebatchedstreamrespons": [35, 36], "devicecommandsfail": [57, 65], "deviceconfigur": [34, 35], "devicedecommiss": [34, 35], "devicedecommissioningbatchedstreamrequest": [35, 36], "devicedecommissioningbatchedstreamrespons": [35, 36], "devicedecommissioningconfig": [34, 35], "devicedecommissioningconfigbatchedstreamrequest": [35, 36], "devicedecommissioningconfigbatchedstreamrespons": [35, 36], "devicedecommissioningconfigdeleteallrequest": [35, 36], "devicedecommissioningconfigdeleteallrespons": [35, 36], "devicedecommissioningconfigdeleterequest": [35, 36], "devicedecommissioningconfigdeleterespons": [35, 36], "devicedecommissioningconfigdeletesomerequest": [35, 36], "devicedecommissioningconfigdeletesomerespons": [35, 36], "devicedecommissioningconfigrequest": [35, 36], "devicedecommissioningconfigrespons": [35, 36], "devicedecommissioningconfigservic": [35, 36], "devicedecommissioningconfigserviceservic": [35, 36], "devicedecommissioningconfigservicestub": [35, 36], "devicedecommissioningconfigsetrequest": [35, 36], "devicedecommissioningconfigsetrespons": [35, 36], "devicedecommissioningconfigsetsomerequest": [35, 36], "devicedecommissioningconfigsetsomerespons": [35, 36], "devicedecommissioningconfigsomerequest": [35, 36], "devicedecommissioningconfigsomerespons": [35, 36], "devicedecommissioningconfigstreamrequest": [35, 36], "devicedecommissioningconfigstreamrespons": [35, 36], "devicedecommissioningrequest": [35, 36], "devicedecommissioningrespons": [35, 36], "devicedecommissioningservic": [35, 36], "devicedecommissioningserviceservic": [35, 36], "devicedecommissioningservicestub": [35, 36], "devicedecommissioningsomerequest": [35, 36], "devicedecommissioningsomerespons": [35, 36], "devicedecommissioningstreamrequest": [35, 36], "devicedecommissioningstreamrespons": [35, 36], "deviceid": 65, "deviceinfo": [22, 23], "devicekei": [34, 35], "devicelifecyclesummari": [37, 38], "devicelifecyclesummarykei": [37, 38], "devicelifecyclesummaryrequest": [38, 39], "devicelifecyclesummaryrespons": [38, 39], "devicelifecyclesummaryservic": [38, 39], "devicelifecyclesummaryserviceservic": [38, 39], "devicelifecyclesummaryservicestub": [38, 39], "devicelifecyclesummarystreamrequest": [38, 39], "devicelifecyclesummarystreamrespons": [38, 39], "devicemac": 65, "devicemap": [22, 23, 65], "deviceonboard": [34, 35], "deviceonboardingbatchedstreamrequest": [35, 36], "deviceonboardingbatchedstreamrespons": [35, 36], "deviceonboardingconfig": [34, 35], "deviceonboardingconfigbatchedstreamrequest": [35, 36], "deviceonboardingconfigbatchedstreamrespons": [35, 36], "deviceonboardingconfigdeleteallrequest": [35, 36], "deviceonboardingconfigdeleteallrespons": [35, 36], "deviceonboardingconfigdeleterequest": [35, 36], "deviceonboardingconfigdeleterespons": [35, 36], "deviceonboardingconfigdeletesomerequest": [35, 36], "deviceonboardingconfigdeletesomerespons": [35, 36], "deviceonboardingconfigrequest": [35, 36], "deviceonboardingconfigrespons": [35, 36], "deviceonboardingconfigservic": [35, 36], "deviceonboardingconfigserviceservic": [35, 36], "deviceonboardingconfigservicestub": [35, 36], "deviceonboardingconfigsetrequest": [35, 36], "deviceonboardingconfigsetrespons": [35, 36], "deviceonboardingconfigsetsomerequest": [35, 36], "deviceonboardingconfigsetsomerespons": [35, 36], "deviceonboardingconfigsomerequest": [35, 36], "deviceonboardingconfigsomerespons": [35, 36], "deviceonboardingconfigstreamrequest": [35, 36], "deviceonboardingconfigstreamrespons": [35, 36], "deviceonboardingrequest": [35, 36], "deviceonboardingrespons": [35, 36], "deviceonboardingservic": [35, 36], "deviceonboardingserviceservic": [35, 36], "deviceonboardingservicestub": [35, 36], "deviceonboardingsomerequest": [35, 36], "deviceonboardingsomerespons": [35, 36], "deviceonboardingstreamrequest": [35, 36], "deviceonboardingstreamrespons": [35, 36], "devicerequest": [35, 36], "devicerespons": [35, 36], "deviceservic": [35, 36], "deviceserviceservic": [35, 36], "deviceservicestub": [35, 36], "devicesomerequest": [35, 36], "devicesomerespons": [35, 36], "devicestreamrequest": [35, 36], "devicestreamrespons": [35, 36], "devicetostagemap": [7, 8], "devid": 65, "di": 65, "dict": [60, 61, 63, 65], "dict_cl": [58, 60], "dictionari": [60, 61, 65], "did": [63, 65], "diffentri": [13, 14], "differ": 62, "difficult": 65, "dimens": [19, 20], "discard": 65, "displai": 65, "distinct": 62, "do": [62, 65], "document": [3, 6, 9, 12, 15, 18, 21, 24, 27, 30, 33, 36, 39, 42, 45, 48, 52, 56, 62], "doe": [62, 65], "doesn": [62, 65], "don": 65, "done": [62, 65], "dowithtimeout": [57, 65], "drop": 60, "dtype": 63, "due": 65, "duplic": [62, 65], "dure": [62, 65], "e": [62, 65], "each": [62, 65], "easili": 65, "edit": 65, "eg": 65, "either": [62, 65], "elem": 65, "element": [63, 65], "els": 62, "emailendpoint": [1, 2], "emailset": [1, 2], "empti": [61, 62, 63], "encod": [57, 58, 59, 65], "encode_arrai": [58, 60], "encode_map": [58, 60], "encode_str": [58, 60], "encount": 65, "end": [62, 63, 65], "endpoint": 65, "endpointerror": [1, 2], "endpointloc": [0, 68], "endpointlocation_pb2": [0, 22], "endpointlocation_pb2_grpc": [0, 22], "endpointlocationbatchedstreamrequest": [23, 24], "endpointlocationbatchedstreamrespons": [23, 24], "endpointlocationkei": [22, 23], "endpointlocationrequest": [23, 24], "endpointlocationrespons": [23, 24], "endpointlocationservic": [23, 24], "endpointlocationserviceservic": [23, 24], "endpointlocationservicestub": [23, 24], "endpointlocationsomerequest": [23, 24], "endpointlocationsomerespons": [23, 24], "endpointlocationstreamrequest": [23, 24], "endpointlocationstreamrespons": [23, 24], "enough": 65, "enrol": [58, 62], "ensur": [62, 65], "enter": 65, "entir": 62, "entiti": [46, 47], "entri": 65, "enum": 65, "eof": 62, "err": 65, "errcod": 65, "errmsg": 65, "error": [57, 62, 65], "establish": 65, "event": [0, 68], "event_pb2": [0, 25], "event_pb2_grpc": [0, 25], "eventack": [25, 26], "eventannotationconfig": [25, 26], "eventannotationconfigdeleteallrequest": [26, 27], "eventannotationconfigdeleteallrespons": [26, 27], "eventannotationconfigdeleterequest": [26, 27], "eventannotationconfigdeleterespons": [26, 27], "eventannotationconfigdeletesomerequest": [26, 27], "eventannotationconfigdeletesomerespons": [26, 27], "eventannotationconfigrequest": [26, 27], "eventannotationconfigrespons": [26, 27], "eventannotationconfigservic": [26, 27], "eventannotationconfigserviceservic": [26, 27], "eventannotationconfigservicestub": [26, 27], "eventannotationconfigsetrequest": [26, 27], "eventannotationconfigsetrespons": [26, 27], "eventannotationconfigsetsomerequest": [26, 27], "eventannotationconfigsetsomerespons": [26, 27], "eventannotationconfigsomerequest": [26, 27], "eventannotationconfigsomerespons": [26, 27], "eventannotationconfigstreamrequest": [26, 27], "eventannotationconfigstreamrespons": [26, 27], "eventcompon": [25, 26], "eventdata": [25, 26], "eventkei": [25, 26], "eventlist": [1, 2], "eventnot": [25, 26], "eventnoteconfig": [25, 26], "eventnotesconfig": [25, 26], "eventread": [25, 26], "eventrequest": [26, 27], "eventrespons": [26, 27], "eventservic": [26, 27], "eventserviceservic": [26, 27], "eventservicestub": [26, 27], "eventsomerequest": [26, 27], "eventsomerespons": [26, 27], "eventstreamrequest": [26, 27], "eventstreamrespons": [26, 27], "everi": 58, "exact": 62, "exact_rang": 63, "exact_term": 63, "exampl": 65, "exceed": 62, "except": [57, 68], "execid": 65, "execut": [57, 63, 68], "executionid": 65, "exhaust": 65, "exist": [63, 65], "expect": 65, "explanationlist": [22, 23], "explicitli": 65, "export": 60, "exptagfield": [57, 65], "extendedattribut": [34, 35], "extens": [31, 32], "extensiondiff": [31, 32], "extensiondiffsbysup": [31, 32], "extensions_pb2": 68, "extensions_pb2_grpc": 68, "extract": 65, "extractinputelem": [57, 65], "extractjsonencodedlistarg": [57, 65], "extractstudioinfofromarg": [57, 65], "f": 65, "face": 65, "fail": 65, "fall": 65, "fals": [3, 6, 9, 12, 15, 18, 21, 24, 27, 30, 33, 36, 39, 42, 45, 48, 52, 56, 62, 63, 65], "faster": 58, "featureenabledentri": [34, 35], "field": [62, 65], "fieldid": 65, "file": [3, 6, 9, 12, 15, 18, 21, 24, 27, 30, 33, 36, 39, 42, 45, 48, 52, 56, 59, 62, 63], "fill": 65, "filter": [7, 8, 10, 11, 19, 20, 63], "finish": 62, "first": [62, 65], "first_usable_address": [57, 65], "fix": 65, "flag": [7, 8, 65], "flagconfig": [7, 8], "float": 60, "float32": [58, 60], "floatinputfieldprop": [46, 47], "fmp": [67, 68], "fmt": 65, "follow": 65, "form": [62, 63, 65], "format": [63, 65], "free": [57, 65], "freeid": 65, "friendli": 65, "from": [58, 59, 62, 63, 65], "frozendict": [58, 60], "full": 65, "fullpathonli": 65, "func": 65, "function": 65, "g": 65, "gather": 65, "gen": [57, 58], "gen_csr_der": [58, 59], "gen_pb2": [1, 2, 4, 5, 7, 8, 10, 11, 13, 14, 16, 17, 19, 20, 22, 23, 25, 26, 28, 29, 31, 32, 34, 35, 37, 38, 40, 41, 43, 44, 46, 47, 50, 51, 54, 55], "gen_pb2_grpc": [1, 2, 4, 5, 7, 8, 10, 11, 13, 14, 16, 17, 19, 20, 22, 23, 25, 26, 28, 29, 31, 32, 34, 35, 37, 38, 40, 41, 43, 44, 46, 47, 50, 51, 54, 55], "gener": [2, 3, 5, 6, 8, 9, 11, 12, 14, 15, 17, 18, 20, 21, 23, 24, 26, 27, 29, 30, 32, 33, 35, 36, 38, 39, 41, 42, 44, 45, 47, 48, 49, 51, 52, 53, 55, 56, 59, 62, 65, 66], "get": [57, 58, 61, 62, 63, 65], "get_dataset": [58, 63], "get_dict": [58, 61], "get_ip_from_subnet": [57, 65], "get_number_subnet": [57, 65], "get_subnet_by_index": [57, 65], "getal": [2, 3, 5, 6, 8, 9, 11, 12, 14, 15, 17, 18, 20, 21, 23, 24, 26, 27, 29, 30, 32, 33, 35, 36, 38, 39, 41, 42, 44, 45, 47, 48, 51, 52, 55, 56, 65], "getallbatch": [2, 3, 8, 9, 11, 12, 14, 15, 17, 18, 20, 21, 23, 24, 29, 30, 32, 33, 35, 36, 41, 42, 47, 48, 51, 52, 55, 56], "getalloc": [57, 65], "getandsubscrib": [58, 62], "getapicli": [57, 65], "getavail": [57, 65], "getccstarttim": [57, 65], "getcvclient": [57, 65], "getdataset": [58, 62, 63], "getdevic": [57, 65], "getdevicehostnam": [57, 65], "getdevicesbytag": [57, 65], "getidnam": [57, 65], "getinterfac": [57, 65], "getinterfacesbytag": [57, 65], "getlogginglevel": [57, 65], "getmeta": [2, 3, 5, 6, 8, 9, 11, 12, 14, 15, 17, 18, 20, 21, 23, 24, 26, 27, 29, 30, 32, 33, 35, 36, 38, 39, 41, 42, 44, 45, 47, 48, 51, 52, 55, 56], "geton": [2, 3, 5, 6, 8, 9, 11, 12, 14, 15, 17, 18, 20, 21, 23, 24, 26, 27, 29, 30, 32, 33, 35, 36, 38, 39, 41, 42, 44, 45, 47, 48, 51, 52, 55, 56], "getonewithw": [57, 65], "getpeerdevic": [57, 65], "getpeerinfo": [57, 65], "getpeerinterfac": [57, 65], "getpermissionset": [58, 62], "getrequest": 62, "getsimpleresolverqueryvalu": [57, 65], "getsingletag": [57, 65], "getsom": [2, 3, 8, 9, 11, 12, 14, 15, 17, 18, 20, 21, 23, 24, 26, 27, 29, 30, 32, 33, 35, 36, 41, 42, 44, 45, 47, 48, 51, 52, 55, 56], "getstarttim": [57, 65], "getstudioinput": [57, 65], "gettag": [57, 65], "getter": 65, "getworkspaceid": [57, 65], "getworkspacelastsync": [57, 65], "give": 62, "given": [58, 59, 61, 62, 63, 65], "globaldashboardconfig": [19, 20], "globaldashboardconfigbatchedstreamrequest": [20, 21], "globaldashboardconfigbatchedstreamrespons": [20, 21], "globaldashboardconfigrequest": [20, 21], "globaldashboardconfigrespons": [20, 21], "globaldashboardconfigservic": [20, 21], "globaldashboardconfigserviceservic": [20, 21], "globaldashboardconfigservicestub": [20, 21], "globaldashboardconfigsetrequest": [20, 21], "globaldashboardconfigsetrespons": [20, 21], "globaldashboardconfigstreamrequest": [20, 21], "globaldashboardconfigstreamrespons": [20, 21], "googl": [2, 3, 5, 6, 8, 9, 11, 12, 14, 15, 17, 18, 20, 21, 23, 24, 26, 27, 29, 30, 32, 33, 35, 36, 38, 39, 41, 42, 44, 45, 47, 48, 51, 52, 53, 55, 56, 63, 66], "googlechatendpoint": [1, 2], "googlechatset": [1, 2], "grant": 65, "group": 65, "groupinputfieldprop": [46, 47], "grouplabel": 65, "grpc": [62, 63, 65], "grpc_client": [57, 58], "grpcaddr": 63, "grpcclient": [57, 58, 65], "guarante": 62, "guid": 65, "ha": [62, 65], "handler": 65, "hardwarelifecyclesummari": [37, 38], "have": [62, 65], "hbase": 62, "header": 65, "headervalu": [1, 2], "heartbeat": 65, "helper": 65, "hierarchi": 58, "higher": 65, "hit": 65, "hook": 65, "host": 65, "hostnam": 65, "http": 65, "http2": 63, "httperror": 65, "httpget": [57, 65], "httpgetconfig": [57, 65], "httpheader": [1, 2], "httppost": [57, 65], "httpset": [1, 2], "i": [60, 61, 62, 63, 65], "id": [63, 65], "id_alloc": [57, 68], "idalloc": [57, 65], "identifi": [22, 23], "identifierlist": [22, 23], "identifiersourcelist": [22, 23], "identityprovid": [0, 68], "identityprovider_pb2": [0, 28], "identityprovider_pb2_grpc": [0, 28], "idlabel": 65, "idnam": 65, "ignorefailur": 65, "imageerror": [31, 32], "imageinfo": [31, 32], "imagemetadata": [31, 32], "imagestatu": [0, 68], "imagestatus_pb2": [0, 31], "imagestatus_pb2_grpc": [0, 31], "imagesummari": [31, 32], "imagevalidationresult": [54, 55], "imagewarn": [31, 32], "immut": 60, "impact": 65, "implement": [60, 63, 65], "import": 65, "imput": 63, "index": [63, 65, 67], "indexfield": 63, "indic": 65, "inet_pb2": 68, "inet_pb2_grpc": 68, "info": [57, 65], "inform": [62, 65], "ingestgatewai": 62, "inhibitionset": [1, 2], "init": 65, "initialis": 65, "initializestudioctxfromarg": [57, 65], "input": [46, 47, 65], "inputa": 65, "inputb": 65, "inputemptyexcept": [57, 65], "inputerror": [54, 55, 57, 65], "inputerrorexcept": [57, 65], "inputexcept": [57, 65], "inputfield": [46, 47], "inputnotfoundexcept": [57, 65], "inputpath": 65, "inputrequestexcept": [57, 65], "inputsbatchedstreamrequest": [47, 48], "inputsbatchedstreamrespons": [47, 48], "inputschema": [46, 47], "inputsconfig": [46, 47, 65], "inputsconfigbatchedstreamrequest": [47, 48], "inputsconfigbatchedstreamrespons": [47, 48], "inputsconfigdeleteallrequest": [47, 48], "inputsconfigdeleteallrespons": [47, 48], "inputsconfigdeleterequest": [47, 48], "inputsconfigdeleterespons": [47, 48], "inputsconfigdeletesomerequest": [47, 48], "inputsconfigdeletesomerespons": [47, 48], "inputsconfigrequest": [47, 48], "inputsconfigrespons": [47, 48], "inputsconfigservic": [47, 48], "inputsconfigserviceservic": [47, 48], "inputsconfigservicestub": [47, 48], "inputsconfigsetrequest": [47, 48], "inputsconfigsetrespons": [47, 48], "inputsconfigsetsomerequest": [47, 48], "inputsconfigsetsomerespons": [47, 48], "inputsconfigsomerequest": [47, 48], "inputsconfigsomerespons": [47, 48], "inputsconfigstreamrequest": [47, 48], "inputsconfigstreamrespons": [47, 48], "inputskei": [46, 47], "inputsrequest": [47, 48], "inputsrespons": [47, 48], "inputsservic": [47, 48], "inputsserviceservic": [47, 48], "inputsservicestub": [47, 48], "inputssomerequest": [47, 48], "inputssomerespons": [47, 48], "inputsstreamrequest": [47, 48], "inputsstreamrespons": [47, 48], "inputstoinsert": 65, "inputupdateexcept": [57, 65], "inputvalidationresult": [54, 55], "insecur": [3, 6, 9, 12, 15, 18, 21, 24, 27, 30, 33, 36, 39, 42, 45, 48, 52, 56, 62], "insert": 65, "instanc": [60, 62], "instanti": 65, "instead": 65, "int": [63, 65], "integ": 65, "integerinputfieldprop": [46, 47], "intend": 62, "intenum": 65, "intercept_cal": 65, "interfac": [57, 60, 65], "intern": 65, "intfid": 65, "intopologi": 65, "invalid": 65, "invalidcontextexcept": [57, 65], "invalidcredenti": [57, 65], "invalidli": 65, "invalidtopologyexcept": [57, 65], "invari": 65, "inventori": [0, 65, 68], "inventory_pb2": [0, 34], "inventory_pb2_grpc": [0, 34], "invok": 65, "ip": 65, "ipaddress": [66, 68], "ipam": 65, "iperrorexcept": [57, 65], "iphostindexexcept": [57, 65], "ipnetworkoverlapexcept": [57, 65], "ipprefix": [66, 68], "ipsubnetindexexcept": [57, 65], "iputil": [57, 68], "ipv4address": [66, 68], "ipv4prefix": [66, 68], "ipv6address": [66, 68], "ipv6prefix": [66, 68], "is_ipv4": [57, 65], "is_ipv6": [57, 65], "issu": [62, 65], "iter": [63, 65], "its": [58, 62, 63], "json": 65, "just": 62, "keepalive_time_m": 63, "keepblanklin": [57, 65], "kei": [58, 59, 60, 62, 63, 65], "key_filt": 63, "key_from_pem": [58, 59], "key_path": [59, 63], "key_pem": 59, "keyvalu": 63, "know": 62, "kwarg": 60, "label": [57, 65], "larg": 65, "last": [62, 65], "last_usable_address": [57, 65], "lastrebasedat": 65, "layout": [46, 47], "lead": 65, "length": 65, "let": 65, "level": 65, "librari": [60, 65], "lifecycl": [0, 68], "lifecycle_pb2": [0, 37], "lifecycle_pb2_grpc": [0, 37], "like": 65, "limit": [62, 65], "line": 65, "linefmt": 65, "list": [63, 65], "listarg": 65, "live": 62, "load": 59, "load_cert": [58, 59], "load_kei": [58, 59], "load_key_cert_pair": [58, 59], "local": 65, "locat": [22, 23], "locationlist": [22, 23], "log": 65, "logendpoint": 65, "logger": [57, 68], "loggertous": 65, "loggingfail": [57, 65], "logginglevel": [57, 65], "longer": 65, "look": 65, "m": 60, "mac": 65, "macaddress": [66, 68], "made": 65, "mai": [62, 65], "mainlin": 65, "make": 65, "mani": 65, "manual": 65, "map": 60, "mapboolbool": [66, 68], "mapboolbyt": [66, 68], "mapbooldoubl": [66, 68], "mapboolfloat": [66, 68], "mapboolint32": [66, 68], "mapboolint64": [66, 68], "mapboolstr": [66, 68], "mapbooluint32": [66, 68], "mapbooluint64": [66, 68], "mapint32bool": [66, 68], "mapint32byt": [66, 68], "mapint32doubl": [66, 68], "mapint32float": [66, 68], "mapint32int32": [66, 68], "mapint32int64": [66, 68], "mapint32str": [66, 68], "mapint32uint32": [66, 68], "mapint32uint64": [66, 68], "mapint64bool": [66, 68], "mapint64byt": [66, 68], "mapint64doubl": [66, 68], "mapint64float": [66, 68], "mapint64int32": [66, 68], "mapint64int64": [66, 68], "mapint64str": [66, 68], "mapint64uint32": [66, 68], "mapint64uint64": [66, 68], "mapstringbool": [66, 68], "mapstringbyt": [66, 68], "mapstringdoubl": [66, 68], "mapstringfloat": [66, 68], "mapstringint32": [66, 68], "mapstringint64": [66, 68], "mapstringstr": [66, 68], "mapstringuint32": [66, 68], "mapstringuint64": [66, 68], "mapuint32bool": [66, 68], "mapuint32byt": [66, 68], "mapuint32doubl": [66, 68], "mapuint32float": [66, 68], "mapuint32int32": [66, 68], "mapuint32int64": [66, 68], "mapuint32str": [66, 68], "mapuint32uint32": [66, 68], "mapuint32uint64": [66, 68], "mapuint64bool": [66, 68], "mapuint64byt": [66, 68], "mapuint64doubl": [66, 68], "mapuint64float": [66, 68], "mapuint64int32": [66, 68], "mapuint64int64": [66, 68], "mapuint64str": [66, 68], "mapuint64uint32": [66, 68], "mapuint64uint64": [66, 68], "mark": 65, "match": [1, 2, 62, 65], "matter": 65, "max_pings_without_data": 63, "mean": [62, 65], "meant": 65, "member": 65, "merg": 65, "mergestudioinput": [57, 65], "messag": [2, 3, 5, 6, 8, 9, 11, 12, 14, 15, 17, 18, 20, 21, 23, 24, 26, 27, 29, 30, 32, 33, 35, 36, 38, 39, 41, 42, 44, 45, 47, 48, 51, 52, 53, 55, 56, 62, 63, 65, 66], "met": 65, "metadata": [3, 6, 9, 12, 15, 18, 21, 24, 27, 30, 33, 36, 39, 42, 45, 48, 52, 56, 62, 65], "metarespons": [2, 3, 5, 6, 8, 9, 11, 12, 14, 15, 17, 18, 20, 21, 23, 24, 26, 27, 29, 30, 32, 33, 35, 36, 38, 39, 41, 42, 44, 45, 47, 48, 51, 52, 55, 56], "method": [62, 63, 65], "might": 62, "minimum": 65, "miss": [3, 6, 9, 12, 15, 18, 21, 24, 27, 30, 33, 36, 39, 42, 45, 48, 52, 56, 62, 65], "mix": [62, 65], "model": 65, "modelnam": 65, "modul": [67, 68], "monitoredhost": 65, "more": [62, 65], "most": 65, "msg": 65, "msteamsendpoint": [1, 2], "msteamsset": [1, 2], "multipl": [62, 65], "must": [62, 63, 65], "name": [63, 65], "nanosecond": [63, 65], "need": [62, 63, 65], "network": 65, "network1": 65, "network2": 65, "networkconfig": 65, "new": [62, 65], "next": 65, "node": 62, "nodeid": 65, "nominalkei": 58, "non": 65, "none": [3, 6, 9, 12, 15, 18, 21, 24, 27, 30, 33, 36, 39, 42, 45, 48, 52, 56, 58, 59, 60, 62, 63, 65], "normal": 65, "note": 65, "notesentri": [25, 26], "notif": [62, 63], "notification_pb2": [57, 58], "notification_pb2_grpc": [57, 58], "notificationbatch": [62, 63], "null": [62, 65], "num_host": 65, "num_subnet": 65, "number": [63, 65], "number_of_usable_address": [57, 65], "oauthconfig": [28, 29], "oauthconfigbatchedstreamrequest": [29, 30], "oauthconfigbatchedstreamrespons": [29, 30], "oauthconfigdeleteallrequest": [29, 30], "oauthconfigdeleteallrespons": [29, 30], "oauthconfigdeleterequest": [29, 30], "oauthconfigdeleterespons": [29, 30], "oauthconfigdeletesomerequest": [29, 30], "oauthconfigdeletesomerespons": [29, 30], "oauthconfigrequest": [29, 30], "oauthconfigrespons": [29, 30], "oauthconfigservic": [29, 30], "oauthconfigserviceservic": [29, 30], "oauthconfigservicestub": [29, 30], "oauthconfigsetrequest": [29, 30], "oauthconfigsetrespons": [29, 30], "oauthconfigsetsomerequest": [29, 30], "oauthconfigsetsomerespons": [29, 30], "oauthconfigsomerequest": [29, 30], "oauthconfigsomerespons": [29, 30], "oauthconfigstreamrequest": [29, 30], "oauthconfigstreamrespons": [29, 30], "oauthkei": [28, 29], "object": [2, 3, 5, 6, 8, 9, 11, 12, 14, 15, 17, 18, 20, 21, 23, 24, 26, 27, 29, 30, 32, 33, 35, 36, 38, 39, 41, 42, 44, 45, 47, 48, 51, 52, 53, 55, 56, 59, 60, 61, 62, 63, 65, 66], "obtain": 62, "occur": 65, "offer": 65, "offset": 63, "omit": 65, "onc": [62, 65], "one": [62, 65], "onli": [62, 65], "op": 65, "oper": 65, "opsgenieendpoint": [1, 2], "opsgenieset": [1, 2], "option": [3, 6, 9, 12, 15, 18, 21, 24, 27, 30, 33, 36, 39, 42, 45, 48, 52, 56, 62, 65], "optionsentri": [34, 35], "order": [58, 62, 65], "other": [60, 62, 65], "out": [62, 65], "output": 65, "over": [62, 65], "overarch": 65, "overlap": 65, "overlapping_networks_check": [57, 65], "overwrit": 65, "own": 65, "packag": [67, 68], "page": 67, "pagerdutyendpoint": [1, 2], "pagerdutyset": [1, 2], "pages_pb2": 68, "pages_pb2_grpc": 68, "pair": 62, "param": 65, "paramet": [59, 61, 63, 65], "parsabl": 65, "part": 60, "particular": 65, "pass": [62, 63, 65], "passphras": 59, "password": 62, "path": [58, 59, 60, 62, 63, 65], "path_el": 63, "pathelt": 63, "pathkei": 63, "pem": [59, 63], "per": 62, "permiss": [62, 65], "person": 62, "pickl": 65, "place": 65, "pleas": [62, 65], "pointer": 62, "pool": 65, "poolnam": 65, "popul": [62, 65], "port": [63, 66, 68], "posit": [19, 20], "post": 65, "prebuilt": 65, "presenc": 65, "present": [62, 63, 65], "preserv": 65, "press": 65, "prevent": 65, "primari": 65, "primary_user_ag": 63, "prioriti": [1, 2], "privat": [59, 63], "probe": [16, 17], "probebatchedstreamrequest": [17, 18], "probebatchedstreamrespons": [17, 18], "probekei": [16, 17], "proberequest": [17, 18], "proberespons": [17, 18], "probeservic": [17, 18], "probeserviceservic": [17, 18], "probeservicestub": [17, 18], "probesomerequest": [17, 18], "probesomerespons": [17, 18], "probestat": [16, 17], "probestatsbatchedstreamrequest": [17, 18], "probestatsbatchedstreamrespons": [17, 18], "probestatskei": [16, 17], "probestatsrequest": [17, 18], "probestatsrespons": [17, 18], "probestatsservic": [17, 18], "probestatsserviceservic": [17, 18], "probestatsservicestub": [17, 18], "probestatssomerequest": [17, 18], "probestatssomerespons": [17, 18], "probestatsstreamrequest": [17, 18], "probestatsstreamrespons": [17, 18], "probestreamrequest": [17, 18], "probestreamrespons": [17, 18], "problem": 65, "process": 62, "process_notif": [57, 58], "properti": 65, "proto": [3, 6, 9, 12, 15, 18, 21, 24, 27, 30, 33, 36, 39, 42, 45, 48, 52, 56, 62, 63], "protobuf": [2, 3, 5, 6, 8, 9, 11, 12, 14, 15, 17, 18, 20, 21, 23, 24, 26, 27, 29, 30, 32, 33, 35, 36, 38, 39, 41, 42, 44, 45, 47, 48, 49, 51, 52, 53, 55, 56, 57, 58, 62, 63, 66], "protocol": [2, 3, 5, 6, 8, 9, 11, 12, 14, 15, 17, 18, 20, 21, 23, 24, 26, 27, 29, 30, 32, 33, 35, 36, 38, 39, 41, 42, 44, 45, 47, 48, 49, 51, 52, 53, 55, 56, 62, 66], "provid": [62, 65], "provisioneddevic": [34, 35], "provisioneddevicebatchedstreamrequest": [35, 36], "provisioneddevicebatchedstreamrespons": [35, 36], "provisioneddevicerequest": [35, 36], "provisioneddevicerespons": [35, 36], "provisioneddeviceservic": [35, 36], "provisioneddeviceserviceservic": [35, 36], "provisioneddeviceservicestub": [35, 36], "provisioneddevicesomerequest": [35, 36], "provisioneddevicesomerespons": [35, 36], "provisioneddevicestreamrequest": [35, 36], "provisioneddevicestreamrespons": [35, 36], "proxi": 65, "publish": [58, 62, 63], "publishrequest": 62, "purg": 65, "pushoverendpoint": [1, 2], "put": 65, "python": [63, 65], "qualnam": 65, "queri": [62, 63, 65], "querier": [58, 62], "querierservic": [58, 62], "querierstub": [58, 62], "querri": 63, "queryccstarttim": [57, 65], "rais": 65, "ran": 65, "randomli": 62, "rang": [62, 65], "rapi": 65, "raw": 65, "reach": 65, "read": 65, "real": 65, "reason": 65, "rebas": 65, "reboot": 65, "rebootrequir": [31, 32], "rebuild": 65, "receiv": [62, 63, 65], "recent": [62, 65], "redirector": [0, 68], "redirector_pb2": [0, 40], "redirector_pb2_grpc": [0, 40], "reenrol": [58, 62, 63], "refer": [63, 65], "reflect": 63, "regexp": 62, "relat": 65, "relev": 65, "relevantintftagassign": 65, "relevanttagassign": 65, "remot": 65, "remov": 65, "renew": [62, 63], "reorder": 62, "repeat": 65, "repeatedbool": [66, 68], "repeatedbyt": [66, 68], "repeateddoubl": [66, 68], "repeatedfloat": [66, 68], "repeatedint32": [66, 68], "repeatedint64": [66, 68], "repeatedipaddress": [66, 68], "repeatedipv4address": [66, 68], "repeatedipv6address": [66, 68], "repeatedmacaddress": [66, 68], "repeatedrepeatedstr": [7, 8], "repeatedstr": [66, 68], "repeateduint32": [66, 68], "repeateduint64": [66, 68], "replac": 60, "report": 65, "repres": 65, "request": [3, 6, 9, 12, 15, 18, 21, 24, 27, 30, 33, 36, 39, 42, 45, 48, 52, 56, 62, 63, 65], "requestparam": [54, 55], "requir": 65, "resdict": 58, "resolut": 62, "resolv": [62, 65], "resolverinputfieldprop": [46, 47], "resourc": 65, "respons": [54, 55, 65], "restart": 62, "result": [62, 65], "result_s": 63, "retract": 63, "retreiv": 65, "retriev": [57, 63, 65], "return": [58, 59, 61, 62, 63, 65], "right": [62, 65], "root": [63, 65], "rootinput": 65, "router": [62, 63], "router_pb2": [57, 58], "router_pb2_grpc": [57, 58], "routerv1": [58, 62], "routerv1servic": [58, 62], "routerv1stub": [58, 62], "routin": 65, "rule": [1, 2], "run": [62, 65], "rundevicecmd": [57, 65], "same": [62, 65], "samlconfig": [28, 29], "samlconfigbatchedstreamrequest": [29, 30], "samlconfigbatchedstreamrespons": [29, 30], "samlconfigdeleteallrequest": [29, 30], "samlconfigdeleteallrespons": [29, 30], "samlconfigdeleterequest": [29, 30], "samlconfigdeleterespons": [29, 30], "samlconfigdeletesomerequest": [29, 30], "samlconfigdeletesomerespons": [29, 30], "samlconfigrequest": [29, 30], "samlconfigrespons": [29, 30], "samlconfigservic": [29, 30], "samlconfigserviceservic": [29, 30], "samlconfigservicestub": [29, 30], "samlconfigsetrequest": [29, 30], "samlconfigsetrespons": [29, 30], "samlconfigsetsomerequest": [29, 30], "samlconfigsetsomerespons": [29, 30], "samlconfigsomerequest": [29, 30], "samlconfigsomerespons": [29, 30], "samlconfigstreamrequest": [29, 30], "samlconfigstreamrespons": [29, 30], "samlkei": [28, 29], "save": 62, "schema": [62, 63, 65], "script": 65, "scriptexcept": [57, 65], "search": [58, 62, 63, 67], "search_typ": 63, "searchkei": 65, "searchservic": [58, 62], "searchstub": [58, 62], "searchsubscrib": [58, 62], "searchv1": 62, "searchwithaggreg": [58, 62], "searchwithaggregationstream": [58, 62], "second": [62, 65], "secretinput": [46, 47], "secretinputbatchedstreamrequest": [47, 48], "secretinputbatchedstreamrespons": [47, 48], "secretinputrequest": [47, 48], "secretinputrespons": [47, 48], "secretinputservic": [47, 48], "secretinputserviceservic": [47, 48], "secretinputservicestub": [47, 48], "secretinputsomerequest": [47, 48], "secretinputsomerespons": [47, 48], "secretinputstreamrequest": [47, 48], "secretinputstreamrespons": [47, 48], "section": 65, "securityprofil": [13, 14], "securityprofilebatchedstreamrequest": [14, 15], "securityprofilebatchedstreamrespons": [14, 15], "securityprofilecompliancesummari": [13, 14], "securityprofilediff": [13, 14], "securityprofilediffbatchedstreamrequest": [14, 15], "securityprofilediffbatchedstreamrespons": [14, 15], "securityprofilediffrequest": [14, 15], "securityprofilediffrespons": [14, 15], "securityprofilediffservic": [14, 15], "securityprofilediffserviceservic": [14, 15], "securityprofilediffservicestub": [14, 15], "securityprofilediffsomerequest": [14, 15], "securityprofilediffsomerespons": [14, 15], "securityprofilediffstreamrequest": [14, 15], "securityprofilediffstreamrespons": [14, 15], "securityprofilediffsummari": [13, 14], "securityprofilediffsummarybatchedstreamrequest": [14, 15], "securityprofilediffsummarybatchedstreamrespons": [14, 15], "securityprofilediffsummaryrequest": [14, 15], "securityprofilediffsummaryrespons": [14, 15], "securityprofilediffsummaryservic": [14, 15], "securityprofilediffsummaryserviceservic": [14, 15], "securityprofilediffsummaryservicestub": [14, 15], "securityprofilediffsummarysomerequest": [14, 15], "securityprofilediffsummarysomerespons": [14, 15], "securityprofilediffsummarystreamrequest": [14, 15], "securityprofilediffsummarystreamrespons": [14, 15], "securityprofilerequest": [14, 15], "securityprofilerespons": [14, 15], "securityprofileservic": [14, 15], "securityprofileserviceservic": [14, 15], "securityprofileservicestub": [14, 15], "securityprofilesomerequest": [14, 15], "securityprofilesomerespons": [14, 15], "securityprofilestreamrequest": [14, 15], "securityprofilestreamrespons": [14, 15], "see": 65, "seen": 65, "send": [62, 65], "sendgridendpoint": [1, 2], "sendgridset": [1, 2], "sens": 65, "sent": [62, 65], "separ": 65, "seri": 58, "serial": 62, "server": [2, 3, 5, 6, 8, 9, 11, 12, 14, 15, 17, 18, 20, 21, 23, 24, 26, 27, 29, 30, 32, 33, 35, 36, 38, 39, 41, 42, 44, 45, 47, 48, 49, 51, 52, 53, 55, 56, 62, 65, 66], "servic": [1, 2, 4, 5, 7, 8, 10, 11, 13, 14, 16, 17, 19, 20, 22, 23, 25, 26, 28, 29, 31, 32, 34, 35, 37, 38, 40, 41, 43, 44, 46, 47, 49, 50, 51, 53, 54, 55, 62, 65, 66], "serviceaccount": [0, 68], "serviceaccount_pb2": [0, 43], "serviceaccount_pb2_grpc": [0, 43], "serviceaddr": 65, "servicecacert": 65, "session": 62, "set": [1, 2, 3, 8, 9, 11, 12, 20, 21, 26, 27, 29, 30, 35, 36, 44, 45, 47, 48, 51, 52, 55, 56, 62, 63, 65], "set_custom_schema": [58, 63], "setcustomschema": [58, 62], "setlogg": [57, 65], "setlogginglevel": [57, 65], "setpassword": [58, 62], "setpeerinfo": [57, 65], "setpermiss": [58, 62], "setpermissionrequest": 62, "setsom": [2, 3, 8, 9, 11, 12, 20, 21, 26, 27, 29, 30, 35, 36, 44, 45, 47, 48, 51, 52, 55, 56, 65], "setstudioinput": [57, 65], "settopologi": [57, 65], "shard": 63, "sharding_pb2": [57, 58], "sharding_pb2_grpc": [57, 58], "should": 65, "show": 65, "showif": [57, 65], "side": 62, "sign": 62, "signal": [62, 65], "signatur": 65, "simpl": 65, "singl": [62, 65], "situat": 65, "size": [62, 65], "slackendpoint": [1, 2], "slackset": [1, 2], "snmpauth": [1, 2], "snmpendpoint": [1, 2], "snmpset": [1, 2], "so": [62, 63, 65], "softwareeol": [37, 38], "softwareimag": [31, 32], "softwareimagediff": [31, 32], "softwareimagediffsbysup": [31, 32], "some": [62, 65], "someon": 62, "someth": 65, "sort": 63, "sort_dict": [57, 58], "sourc": [3, 6, 9, 12, 15, 18, 21, 24, 27, 30, 33, 36, 39, 42, 45, 48, 52, 56, 58, 59, 60, 61, 62, 63, 65], "sourcedevic": 65, "sourceinterfac": 65, "specif": 65, "specifi": [62, 65], "splice": 65, "split": 62, "sql": [58, 62], "stage": [7, 8, 65], "stageconfig": [7, 8], "stageconfigmap": [7, 8], "stageid": 65, "stagemap": [7, 8], "standalon": 65, "start": [62, 63, 65], "stat": 65, "state": 65, "stategetreq": 65, "statestub": 65, "static": [3, 6, 9, 12, 15, 18, 21, 24, 27, 30, 33, 36, 39, 42, 45, 48, 52, 56, 62, 65], "statu": 65, "storag": [62, 65], "store": [57, 62, 65], "str": [59, 63, 65], "stream": [58, 62, 63], "string": [63, 65], "stringifi": 65, "stringinputfieldprop": [46, 47], "structur": 65, "stub": 65, "studio": [0, 57, 68], "studio_pb2": [0, 46], "studio_pb2_grpc": [0, 46], "studioautofil": [57, 65], "studiobatchedstreamrequest": [47, 48], "studiobatchedstreamrespons": [47, 48], "studiobuilddetail": [54, 55], "studiobuildhook": [57, 65], "studioconfig": [46, 47], "studioconfigbatchedstreamrequest": [47, 48], "studioconfigbatchedstreamrespons": [47, 48], "studioconfigdeleteallrequest": [47, 48], "studioconfigdeleteallrespons": [47, 48], "studioconfigdeleterequest": [47, 48], "studioconfigdeleterespons": [47, 48], "studioconfigdeletesomerequest": [47, 48], "studioconfigdeletesomerespons": [47, 48], "studioconfigrequest": [47, 48], "studioconfigrespons": [47, 48], "studioconfigservic": [47, 48], "studioconfigserviceservic": [47, 48], "studioconfigservicestub": [47, 48], "studioconfigsetrequest": [47, 48], "studioconfigsetrespons": [47, 48], "studioconfigsetsomerequest": [47, 48], "studioconfigsetsomerespons": [47, 48], "studioconfigsomerequest": [47, 48], "studioconfigsomerespons": [47, 48], "studioconfigstreamrequest": [47, 48], "studioconfigstreamrespons": [47, 48], "studiocustomdata": [57, 65], "studioid": 65, "studiokei": [46, 47], "studiorequest": [47, 48], "studiorespons": [47, 48], "studioservic": [47, 48], "studioserviceservic": [47, 48], "studioservicestub": [47, 48], "studiosomerequest": [47, 48], "studiosomerespons": [47, 48], "studiostreamrequest": [47, 48], "studiostreamrespons": [47, 48], "studiosummari": [46, 47], "studiosummarybatchedstreamrequest": [47, 48], "studiosummarybatchedstreamrespons": [47, 48], "studiosummaryrequest": [47, 48], "studiosummaryrespons": [47, 48], "studiosummaryservic": [47, 48], "studiosummaryserviceservic": [47, 48], "studiosummaryservicestub": [47, 48], "studiosummarysomerequest": [47, 48], "studiosummarysomerespons": [47, 48], "studiosummarystreamrequest": [47, 48], "studiosummarystreamrespons": [47, 48], "sub": 65, "submodul": [0, 1, 4, 7, 10, 13, 16, 19, 22, 25, 28, 31, 34, 37, 40, 43, 46, 50, 54, 57, 58, 68], "subnet": 65, "subnet_mask": 65, "subpackag": 68, "subscrib": [2, 3, 5, 6, 8, 9, 11, 12, 14, 15, 17, 18, 20, 21, 23, 24, 26, 27, 29, 30, 32, 33, 35, 36, 38, 39, 41, 42, 44, 45, 47, 48, 51, 52, 55, 56, 58, 62, 63], "subscribebatch": [2, 3, 8, 9, 11, 12, 14, 15, 17, 18, 20, 21, 23, 24, 29, 30, 32, 33, 35, 36, 41, 42, 47, 48, 51, 52, 55, 56], "subscribemeta": [2, 3, 5, 6, 8, 9, 11, 12, 14, 15, 17, 18, 20, 21, 23, 24, 26, 27, 29, 30, 32, 33, 35, 36, 38, 39, 41, 42, 44, 45, 47, 48, 51, 52, 55, 56], "subscript": [0, 68], "subscriptions_pb2": [0, 68], "subscriptions_pb2_grpc": [0, 68], "successfulli": 65, "suggest": 65, "suitabl": 65, "summari": [13, 14, 31, 32], "summarybatchedstreamrequest": [14, 15, 32, 33], "summarybatchedstreamrespons": [14, 15, 32, 33], "summarykei": [13, 14, 31, 32], "summaryrequest": [14, 15, 32, 33], "summaryrespons": [14, 15, 32, 33], "summaryservic": [14, 15, 32, 33], "summaryserviceservic": [14, 15, 32, 33], "summaryservicestub": [14, 15, 32, 33], "summarysomerequest": [14, 15, 32, 33], "summarysomerespons": [14, 15, 32, 33], "summarystreamrequest": [14, 15, 32, 33], "summarystreamrespons": [14, 15, 32, 33], "superclass": 65, "support": [62, 65], "sure": 65, "sync": [62, 63], "synchron": 62, "syslogendpoint": [1, 2], "syslogset": [1, 2], "system": 65, "t": [62, 63, 65], "tag": [0, 57, 68], "tag_pb2": [0, 50], "tag_pb2_grpc": [0, 50], "tagassign": [50, 51], "tagassignmentbatchedstreamrequest": [51, 52], "tagassignmentbatchedstreamrespons": [51, 52], "tagassignmentconfig": [50, 51], "tagassignmentconfigbatchedstreamrequest": [51, 52], "tagassignmentconfigbatchedstreamrespons": [51, 52], "tagassignmentconfigdeleteallrequest": [51, 52], "tagassignmentconfigdeleteallrespons": [51, 52], "tagassignmentconfigdeleterequest": [51, 52], "tagassignmentconfigdeleterespons": [51, 52], "tagassignmentconfigdeletesomerequest": [51, 52], "tagassignmentconfigdeletesomerespons": [51, 52], "tagassignmentconfigrequest": [51, 52], "tagassignmentconfigrespons": [51, 52], "tagassignmentconfigservic": [51, 52], "tagassignmentconfigserviceservic": [51, 52], "tagassignmentconfigservicestub": [51, 52], "tagassignmentconfigsetrequest": [51, 52], "tagassignmentconfigsetrespons": [51, 52], "tagassignmentconfigsetsomerequest": [51, 52], "tagassignmentconfigsetsomerespons": [51, 52], "tagassignmentconfigsomerequest": [51, 52], "tagassignmentconfigsomerespons": [51, 52], "tagassignmentconfigstreamrequest": [51, 52], "tagassignmentconfigstreamrespons": [51, 52], "tagassignmentkei": [50, 51], "tagassignmentrequest": [51, 52], "tagassignmentrespons": [51, 52], "tagassignmentservic": [51, 52], "tagassignmentserviceservic": [51, 52], "tagassignmentservicestub": [51, 52], "tagassignmentsomerequest": [51, 52], "tagassignmentsomerespons": [51, 52], "tagassignmentstreamrequest": [51, 52], "tagassignmentstreamrespons": [51, 52], "tagbatchedstreamrequest": [51, 52], "tagbatchedstreamrespons": [51, 52], "tagconfig": [50, 51], "tagconfigbatchedstreamrequest": [51, 52], "tagconfigbatchedstreamrespons": [51, 52], "tagconfigdeleteallrequest": [51, 52], "tagconfigdeleteallrespons": [51, 52], "tagconfigdeleterequest": [51, 52], "tagconfigdeleterespons": [51, 52], "tagconfigdeletesomerequest": [51, 52], "tagconfigdeletesomerespons": [51, 52], "tagconfigrequest": [51, 52], "tagconfigrespons": [51, 52], "tagconfigservic": [51, 52], "tagconfigserviceservic": [51, 52], "tagconfigservicestub": [51, 52], "tagconfigsetrequest": [51, 52], "tagconfigsetrespons": [51, 52], "tagconfigsetsomerequest": [51, 52], "tagconfigsetsomerespons": [51, 52], "tagconfigsomerequest": [51, 52], "tagconfigsomerespons": [51, 52], "tagconfigstreamrequest": [51, 52], "tagconfigstreamrespons": [51, 52], "tagelem": 65, "tagerrorexcept": [57, 65], "taginvalidtypeexcept": [57, 65], "taginvalidvaluesexcept": [57, 65], "tagkei": [50, 51], "tagmatcherinputfieldprop": [46, 47], "tagmissingexcept": [57, 65], "tagoperationexcept": [57, 65], "tagrequest": [51, 52], "tagrespons": [51, 52], "tagservic": [51, 52], "tagserviceservic": [51, 52], "tagservicestub": [51, 52], "tagsomerequest": [51, 52], "tagsomerespons": [51, 52], "tagstreamrequest": [51, 52], "tagstreamrespons": [51, 52], "tagtoomanyvaluesexcept": [57, 65], "take": 65, "target": [3, 6, 9, 12, 15, 18, 21, 24, 27, 30, 33, 36, 39, 42, 45, 48, 52, 56, 62], "tell": 65, "templat": [46, 47, 65], "templateconfig": [1, 2], "templateconfigbatchedstreamrequest": [2, 3], "templateconfigbatchedstreamrespons": [2, 3], "templateconfigdeleteallrequest": [2, 3], "templateconfigdeleteallrespons": [2, 3], "templateconfigdeleterequest": [2, 3], "templateconfigdeleterespons": [2, 3], "templateconfigdeletesomerequest": [2, 3], "templateconfigdeletesomerespons": [2, 3], "templateconfigrequest": [2, 3], "templateconfigrespons": [2, 3], "templateconfigservic": [2, 3], "templateconfigserviceservic": [2, 3], "templateconfigservicestub": [2, 3], "templateconfigsetrequest": [2, 3], "templateconfigsetrespons": [2, 3], "templateconfigsetsomerequest": [2, 3], "templateconfigsetsomerespons": [2, 3], "templateconfigsomerequest": [2, 3], "templateconfigsomerespons": [2, 3], "templateconfigstreamrequest": [2, 3], "templateconfigstreamrespons": [2, 3], "templateerror": [54, 55], "templateexcept": [57, 65], "templatekei": [1, 2], "templatetyp": 65, "templatetypenotsupport": [57, 65], "terminattrdiffsbysup": [31, 32], "test": 65, "testaddress": 65, "text": 65, "than": 65, "thei": [62, 65], "them": [58, 65], "themselv": 65, "thi": [62, 65], "those": 65, "though": 65, "through": 65, "time": [0, 58, 62, 65, 68], "time_pb2": [0, 68], "time_pb2_grpc": [0, 68], "timebound": [0, 53], "timeout": [3, 6, 9, 12, 15, 18, 21, 24, 27, 30, 33, 36, 39, 42, 45, 48, 52, 56, 62, 65], "timeoutexpiri": [57, 65], "timer": 65, "timeseri": 58, "timestamp": [58, 62, 63, 65], "timestamp_pb2": 63, "timestampflag": [7, 8], "timestampflagconfig": [7, 8], "tmp": 65, "to_pbt": [58, 63], "togeth": 65, "tok": 63, "token": [43, 44, 63, 65], "tokenconfig": [43, 44], "tokenconfigdeleteallrequest": [44, 45], "tokenconfigdeleteallrespons": [44, 45], "tokenconfigdeleterequest": [44, 45], "tokenconfigdeleterespons": [44, 45], "tokenconfigdeletesomerequest": [44, 45], "tokenconfigdeletesomerespons": [44, 45], "tokenconfigrequest": [44, 45], "tokenconfigrespons": [44, 45], "tokenconfigservic": [44, 45], "tokenconfigserviceservic": [44, 45], "tokenconfigservicestub": [44, 45], "tokenconfigsetrequest": [44, 45], "tokenconfigsetrespons": [44, 45], "tokenconfigsetsomerequest": [44, 45], "tokenconfigsetsomerespons": [44, 45], "tokenconfigsomerequest": [44, 45], "tokenconfigsomerespons": [44, 45], "tokenconfigstreamrequest": [44, 45], "tokenconfigstreamrespons": [44, 45], "tokenkei": [43, 44], "tokenrequest": [44, 45], "tokenrespons": [44, 45], "tokenservic": [44, 45], "tokenserviceservic": [44, 45], "tokenservicestub": [44, 45], "tokensomerequest": [44, 45], "tokensomerespons": [44, 45], "tokenstreamrequest": [44, 45], "tokenstreamrespons": [44, 45], "tokenvalu": 63, "too": 65, "topologi": [57, 68], "toward": 65, "trace": [57, 65], "travers": 65, "tree": 65, "tri": 65, "true": [62, 63, 65], "try": 65, "tupl": [59, 63, 65], "turn": 65, "two": [62, 65], "type": [60, 63, 65], "ui": 65, "uint64": 63, "undefin": 62, "under": 65, "unexpect": 65, "unexpectedli": 65, "uniqu": 65, "unknown": [57, 65], "unless": 62, "unpopul": 65, "unspecifi": 65, "unsupport": 65, "until": 65, "up": 65, "updat": [62, 63, 65], "upward": 65, "url": 65, "us": [59, 60, 62, 65], "usabl": 65, "user": [57, 62, 63, 68], "usereventcreationconfig": [25, 26], "usereventcreationconfigdeleteallrequest": [26, 27], "usereventcreationconfigdeleteallrespons": [26, 27], "usereventcreationconfigdeleterequest": [26, 27], "usereventcreationconfigdeleterespons": [26, 27], "usereventcreationconfigdeletesomerequest": [26, 27], "usereventcreationconfigdeletesomerespons": [26, 27], "usereventcreationconfigrequest": [26, 27], "usereventcreationconfigrespons": [26, 27], "usereventcreationconfigservic": [26, 27], "usereventcreationconfigserviceservic": [26, 27], "usereventcreationconfigservicestub": [26, 27], "usereventcreationconfigsetrequest": [26, 27], "usereventcreationconfigsetrespons": [26, 27], "usereventcreationconfigsetsomerequest": [26, 27], "usereventcreationconfigsetsomerespons": [26, 27], "usereventcreationconfigsomerequest": [26, 27], "usereventcreationconfigsomerespons": [26, 27], "usereventcreationconfigstreamrequest": [26, 27], "usereventcreationconfigstreamrespons": [26, 27], "usereventcreationkei": [25, 26], "usernam": 65, "util": [57, 58, 68], "uuidkei": [34, 35], "v1": [0, 1, 4, 7, 10, 13, 16, 19, 22, 25, 28, 31, 34, 37, 40, 43, 46, 54, 62], "v2": [0, 50, 62], "val": 60, "valid": [63, 65], "validaterespons": 65, "valtyp": 65, "valu": [57, 61, 62, 63, 65], "value1": 65, "value2": 65, "value_filt": 63, "valuea": 65, "valueb": 65, "valuesentri": [1, 2, 7, 8, 22, 23, 31, 32, 46, 47, 54, 55, 66, 68], "vari": 62, "variou": 65, "ve": 65, "verifi": 65, "version": [62, 63], "victoropsendpoint": [1, 2], "victoropsset": [1, 2], "violat": 65, "wa": 65, "wait_for_readi": [3, 6, 9, 12, 15, 18, 21, 24, 27, 30, 33, 36, 39, 42, 45, 48, 52, 56, 62], "walk": 65, "want": [62, 65], "warn": [57, 65], "wasn": 65, "we": 65, "webhookendpoint": [1, 2], "webhookset": [1, 2], "well": 63, "were": [62, 65], "what": 65, "whatev": 61, "when": [62, 65], "where": [60, 62, 65], "whether": 65, "which": [62, 63, 65], "while": 65, "widget": [19, 20], "widgetstyl": [19, 20], "wildcard": [58, 60, 62, 65], "wish": 65, "within": [62, 65], "without": [62, 65], "work": 65, "workspac": [0, 57, 68], "workspace_id": 65, "workspace_pb2": [0, 54], "workspace_pb2_grpc": [0, 54], "workspacebatchedstreamrequest": [55, 56], "workspacebatchedstreamrespons": [55, 56], "workspacebuild": [54, 55], "workspacebuildbatchedstreamrequest": [55, 56], "workspacebuildbatchedstreamrespons": [55, 56], "workspacebuilddetail": [54, 55], "workspacebuilddetailsbatchedstreamrequest": [55, 56], "workspacebuilddetailsbatchedstreamrespons": [55, 56], "workspacebuilddetailskei": [54, 55], "workspacebuilddetailsrequest": [55, 56], "workspacebuilddetailsrespons": [55, 56], "workspacebuilddetailsservic": [55, 56], "workspacebuilddetailsserviceservic": [55, 56], "workspacebuilddetailsservicestub": [55, 56], "workspacebuilddetailssomerequest": [55, 56], "workspacebuilddetailssomerespons": [55, 56], "workspacebuilddetailsstreamrequest": [55, 56], "workspacebuilddetailsstreamrespons": [55, 56], "workspacebuildkei": [54, 55], "workspacebuildrequest": [55, 56], "workspacebuildrespons": [55, 56], "workspacebuildservic": [55, 56], "workspacebuildserviceservic": [55, 56], "workspacebuildservicestub": [55, 56], "workspacebuildsomerequest": [55, 56], "workspacebuildsomerespons": [55, 56], "workspacebuildstreamrequest": [55, 56], "workspacebuildstreamrespons": [55, 56], "workspaceconfig": [54, 55], "workspaceconfigbatchedstreamrequest": [55, 56], "workspaceconfigbatchedstreamrespons": [55, 56], "workspaceconfigdeleteallrequest": [55, 56], "workspaceconfigdeleteallrespons": [55, 56], "workspaceconfigdeleterequest": [55, 56], "workspaceconfigdeleterespons": [55, 56], "workspaceconfigdeletesomerequest": [55, 56], "workspaceconfigdeletesomerespons": [55, 56], "workspaceconfigrequest": [55, 56], "workspaceconfigrespons": [55, 56], "workspaceconfigservic": [55, 56], "workspaceconfigserviceservic": [55, 56], "workspaceconfigservicestub": [55, 56], "workspaceconfigsetrequest": [55, 56], "workspaceconfigsetrespons": [55, 56], "workspaceconfigsetsomerequest": [55, 56], "workspaceconfigsetsomerespons": [55, 56], "workspaceconfigsomerequest": [55, 56], "workspaceconfigsomerespons": [55, 56], "workspaceconfigstreamrequest": [55, 56], "workspaceconfigstreamrespons": [55, 56], "workspaceid": 65, "workspacekei": [54, 55], "workspacerequest": [55, 56], "workspacerespons": [55, 56], "workspaceservic": [55, 56], "workspaceserviceservic": [55, 56], "workspaceservicestub": [55, 56], "workspacesomerequest": [55, 56], "workspacesomerespons": [55, 56], "workspacestreamrequest": [55, 56], "workspacestreamrespons": [55, 56], "workspacesyncconfig": [54, 55], "workspacesyncconfigbatchedstreamrequest": [55, 56], "workspacesyncconfigbatchedstreamrespons": [55, 56], "workspacesyncconfigdeleteallrequest": [55, 56], "workspacesyncconfigdeleteallrespons": [55, 56], "workspacesyncconfigdeleterequest": [55, 56], "workspacesyncconfigdeleterespons": [55, 56], "workspacesyncconfigdeletesomerequest": [55, 56], "workspacesyncconfigdeletesomerespons": [55, 56], "workspacesyncconfigrequest": [55, 56], "workspacesyncconfigrespons": [55, 56], "workspacesyncconfigservic": [55, 56], "workspacesyncconfigserviceservic": [55, 56], "workspacesyncconfigservicestub": [55, 56], "workspacesyncconfigsetrequest": [55, 56], "workspacesyncconfigsetrespons": [55, 56], "workspacesyncconfigsetsomerequest": [55, 56], "workspacesyncconfigsetsomerespons": [55, 56], "workspacesyncconfigsomerequest": [55, 56], "workspacesyncconfigsomerespons": [55, 56], "workspacesyncconfigstreamrequest": [55, 56], "workspacesyncconfigstreamrespons": [55, 56], "workspacesynckei": [54, 55], "would": [63, 65], "wrap": 62, "wrapper": 60, "wrappers_pb2": 68, "wrappers_pb2_grpc": 68, "write": [62, 65], "writer": 65, "written": 65, "wsid": 65, "x": [60, 65], "yang_pb2": 68, "yang_pb2_grpc": 68, "yet": [62, 65], "you": [62, 65], "zoomendpoint": [1, 2], "zoomset": [1, 2]}, "titles": ["arista package", "arista.alert package", "arista.alert.v1 package", "arista.alert.v1.services package", "arista.bugexposure package", "arista.bugexposure.v1 package", "arista.bugexposure.v1.services package", "arista.changecontrol package", "arista.changecontrol.v1 package", "arista.changecontrol.v1.services package", "arista.configlet package", "arista.configlet.v1 package", "arista.configlet.v1.services package", "arista.configstatus package", "arista.configstatus.v1 package", "arista.configstatus.v1.services package", "arista.connectivitymonitor package", "arista.connectivitymonitor.v1 package", "arista.connectivitymonitor.v1.services package", "arista.dashboard package", "arista.dashboard.v1 package", "arista.dashboard.v1.services package", "arista.endpointlocation package", "arista.endpointlocation.v1 package", "arista.endpointlocation.v1.services package", "arista.event package", "arista.event.v1 package", "arista.event.v1.services package", "arista.identityprovider package", "arista.identityprovider.v1 package", "arista.identityprovider.v1.services package", "arista.imagestatus package", "arista.imagestatus.v1 package", "arista.imagestatus.v1.services package", "arista.inventory package", "arista.inventory.v1 package", "arista.inventory.v1.services package", "arista.lifecycle package", "arista.lifecycle.v1 package", "arista.lifecycle.v1.services package", "arista.redirector package", "arista.redirector.v1 package", "arista.redirector.v1.services package", "arista.serviceaccount package", "arista.serviceaccount.v1 package", "arista.serviceaccount.v1.services package", "arista.studio package", "arista.studio.v1 package", "arista.studio.v1.services package", "arista.subscriptions package", "arista.tag package", "arista.tag.v2 package", "arista.tag.v2.services package", "arista.time package", "arista.workspace package", "arista.workspace.v1 package", "arista.workspace.v1.services package", "cloudvision package", "cloudvision.Connector package", "cloudvision.Connector.auth package", "cloudvision.Connector.codec package", "cloudvision.Connector.core package", "cloudvision.Connector.gen package", "cloudvision.Connector.grpc_client package", "cloudvision.Connector.protobuf package", "cloudvision.cvlib package", "fmp package", "Welcome to CloudVision Python\u2019s documentation!", "cloudvision"], "titleterms": {"": 67, "action": 65, "alert": [1, 2, 3], "alert_pb2": 2, "alert_pb2_grpc": 2, "arista": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56], "auth": 59, "bugexposur": [4, 5, 6], "bugexposure_pb2": 5, "bugexposure_pb2_grpc": 5, "ca_pb2": 62, "ca_pb2_grpc": 62, "cert": 59, "changecontrol": [7, 8, 9, 65], "changecontrol_pb2": 8, "changecontrol_pb2_grpc": 8, "cloudvis": [57, 58, 59, 60, 61, 62, 63, 64, 65, 67, 68], "codec": 60, "configlet": [10, 11, 12], "configlet_pb2": 11, "configlet_pb2_grpc": 11, "configstatu": [13, 14, 15], "configstatus_pb2": 14, "configstatus_pb2_grpc": 14, "connect": 65, "connectivitymonitor": [16, 17, 18], "connectivitymonitor_pb2": 17, "connectivitymonitor_pb2_grpc": 17, "connector": [58, 59, 60, 61, 62, 63, 64], "constant": 65, "content": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67], "context": 65, "core": 61, "custom_typ": 60, "cvlib": 65, "dashboard": [19, 20, 21], "dashboard_pb2": 20, "dashboard_pb2_grpc": 20, "decod": 60, "deletes_pb2": 66, "deletes_pb2_grpc": 66, "devic": 65, "document": 67, "encod": 60, "endpointloc": [22, 23, 24], "endpointlocation_pb2": 23, "endpointlocation_pb2_grpc": 23, "event": [25, 26, 27], "event_pb2": 26, "event_pb2_grpc": 26, "except": 65, "execut": 65, "extensions_pb2": 66, "extensions_pb2_grpc": 66, "fmp": 66, "gen": 62, "gen_pb2": [3, 6, 9, 12, 15, 18, 21, 24, 27, 30, 33, 36, 39, 42, 45, 48, 52, 56], "gen_pb2_grpc": [3, 6, 9, 12, 15, 18, 21, 24, 27, 30, 33, 36, 39, 42, 45, 48, 52, 56], "grpc_client": 63, "grpcclient": 63, "id_alloc": 65, "identityprovid": [28, 29, 30], "identityprovider_pb2": 29, "identityprovider_pb2_grpc": 29, "imagestatu": [31, 32, 33], "imagestatus_pb2": 32, "imagestatus_pb2_grpc": 32, "indic": 67, "inet_pb2": 66, "inet_pb2_grpc": 66, "inventori": [34, 35, 36], "inventory_pb2": 35, "inventory_pb2_grpc": 35, "iputil": 65, "lifecycl": [37, 38, 39], "lifecycle_pb2": 38, "lifecycle_pb2_grpc": 38, "logger": 65, "modul": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66], "notification_pb2": 62, "notification_pb2_grpc": 62, "packag": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66], "pages_pb2": 66, "pages_pb2_grpc": 66, "protobuf": 64, "python": 67, "redirector": [40, 41, 42], "redirector_pb2": 41, "redirector_pb2_grpc": 41, "router_pb2": 62, "router_pb2_grpc": 62, "servic": [3, 6, 9, 12, 15, 18, 21, 24, 27, 30, 33, 36, 39, 42, 45, 48, 52, 56], "serviceaccount": [43, 44, 45], "serviceaccount_pb2": 44, "serviceaccount_pb2_grpc": 44, "sharding_pb2": 62, "sharding_pb2_grpc": 62, "studio": [46, 47, 48, 65], "studio_pb2": 47, "studio_pb2_grpc": 47, "submodul": [2, 3, 5, 6, 8, 9, 11, 12, 14, 15, 17, 18, 20, 21, 23, 24, 26, 27, 29, 30, 32, 33, 35, 36, 38, 39, 41, 42, 44, 45, 47, 48, 49, 51, 52, 53, 55, 56, 59, 60, 61, 62, 63, 65, 66], "subpackag": [0, 1, 2, 4, 5, 7, 8, 10, 11, 13, 14, 16, 17, 19, 20, 22, 23, 25, 26, 28, 29, 31, 32, 34, 35, 37, 38, 40, 41, 43, 44, 46, 47, 50, 51, 54, 55, 57, 58], "subscript": 49, "subscriptions_pb2": 49, "subscriptions_pb2_grpc": 49, "tabl": 67, "tag": [50, 51, 52, 65], "tag_pb2": 51, "tag_pb2_grpc": 51, "time": 53, "time_pb2": 53, "time_pb2_grpc": 53, "topologi": 65, "user": 65, "util": [61, 65], "v1": [2, 3, 5, 6, 8, 9, 11, 12, 14, 15, 17, 18, 20, 21, 23, 24, 26, 27, 29, 30, 32, 33, 35, 36, 38, 39, 41, 42, 44, 45, 47, 48, 55, 56], "v2": [51, 52], "welcom": 67, "workspac": [54, 55, 56, 65], "workspace_pb2": 55, "workspace_pb2_grpc": 55, "wrappers_pb2": 66, "wrappers_pb2_grpc": 66, "yang_pb2": 66, "yang_pb2_grpc": 66}}) \ No newline at end of file