Loading proto/automation.proto +0 −6 Original line number Diff line number Diff line Loading @@ -22,7 +22,6 @@ import "analytics_frontend.proto"; // Automation service RPCs service AutomationService { rpc ZSMCreate (ZSMCreateRequest ) returns (ZSMService ) {} rpc ZSMUpdate (ZSMCreateUpdate ) returns (ZSMService ) {} rpc ZSMDelete (ZSMServiceID ) returns (ZSMServiceState) {} rpc ZSMGetById (ZSMServiceID ) returns (ZSMService ) {} rpc ZSMGetByService (context.ServiceId) returns (ZSMService ) {} Loading @@ -49,11 +48,6 @@ message ZSMCreateRequest { policy.PolicyRuleService policy = 4; } message ZSMCreateUpdate { context.Uuid ZSMServiceID = 1; policy.PolicyRuleList policyList = 2; } // A unique identifier per ZSM service message ZSMServiceID { context.Uuid uuid = 1; Loading src/automation/service/AutomationServiceServicerImpl.py +0 −5 Original line number Diff line number Diff line Loading @@ -59,11 +59,6 @@ class AutomationServiceServicerImpl(AutomationServiceServicer): return response @safe_and_metered_rpc_method(METRICS_POOL,LOGGER) def ZSMUpdate(self, request : ZSMCreateUpdate, context : grpc.ServicerContext) -> ZSMService: LOGGER.info('NOT IMPLEMENTED ZSMUpdate') return ZSMService() @safe_and_metered_rpc_method(METRICS_POOL,LOGGER) def ZSMDelete(self, request : ZSMServiceID, context : grpc.ServicerContext) -> ZSMServiceState: LOGGER.info("Received gRPC message object: {:}".format(request)) Loading Loading
proto/automation.proto +0 −6 Original line number Diff line number Diff line Loading @@ -22,7 +22,6 @@ import "analytics_frontend.proto"; // Automation service RPCs service AutomationService { rpc ZSMCreate (ZSMCreateRequest ) returns (ZSMService ) {} rpc ZSMUpdate (ZSMCreateUpdate ) returns (ZSMService ) {} rpc ZSMDelete (ZSMServiceID ) returns (ZSMServiceState) {} rpc ZSMGetById (ZSMServiceID ) returns (ZSMService ) {} rpc ZSMGetByService (context.ServiceId) returns (ZSMService ) {} Loading @@ -49,11 +48,6 @@ message ZSMCreateRequest { policy.PolicyRuleService policy = 4; } message ZSMCreateUpdate { context.Uuid ZSMServiceID = 1; policy.PolicyRuleList policyList = 2; } // A unique identifier per ZSM service message ZSMServiceID { context.Uuid uuid = 1; Loading
src/automation/service/AutomationServiceServicerImpl.py +0 −5 Original line number Diff line number Diff line Loading @@ -59,11 +59,6 @@ class AutomationServiceServicerImpl(AutomationServiceServicer): return response @safe_and_metered_rpc_method(METRICS_POOL,LOGGER) def ZSMUpdate(self, request : ZSMCreateUpdate, context : grpc.ServicerContext) -> ZSMService: LOGGER.info('NOT IMPLEMENTED ZSMUpdate') return ZSMService() @safe_and_metered_rpc_method(METRICS_POOL,LOGGER) def ZSMDelete(self, request : ZSMServiceID, context : grpc.ServicerContext) -> ZSMServiceState: LOGGER.info("Received gRPC message object: {:}".format(request)) Loading