[VOL-4157] Added error reasons in StartManagingDeviceResponse for authentication and incompatibility
Change-Id: Ie96b91cd0075c1d1d3e1fd0a385e4c260e808e7b
diff --git a/protos/dmi/hw_management_service.proto b/protos/dmi/hw_management_service.proto
index a4375c3..7b24925 100644
--- a/protos/dmi/hw_management_service.proto
+++ b/protos/dmi/hw_management_service.proto
@@ -81,6 +81,12 @@
OPERATION_ALREADY_IN_PROGRESS = 2;
INVALID_PARAMS = 3;
INTERNAL_ERROR = 4;
+ // AUTHENTICATION_FAILURE is returned when the device management software/server is not able to connect to the underlying
+ // hardware because of authentication failures
+ AUTHENTICATION_FAILURE = 5;
+ // INCOMPATIBLE_DEVICE is returned when there is a mismatch between the device management software/server and the underlying
+ // hardware
+ INCOMPATIBLE_DEVICE = 6;
}
Status status = 1;
Reason reason = 2;