Extend the action for the command spo group user add with additional validation and wait in performing the operation until all the values in --userName is valid. If some of the values are invalid, operation should be exited with proper message
More Details
The command spo group user add has the option --userName which supports multiple values in comma separated way.
Currently, even if some of the values in --userName option is invalid, execution will be progressed further with the the valid values.
Based on discussion, #2638 it was decided that even if some of the values in --userName option is invalid execution should be made as faulty and NOT successful.
Since we may not be able to validate this during the validation phase, this has to be handled during the execution phase.
Extend the action for the command
spo group user addwith additional validation and wait in performing the operation until all the values in--userNameis valid. If some of the values are invalid, operation should be exited with proper messageMore Details
The command
spo group user addhas the option--userNamewhich supports multiple values in comma separated way.Currently, even if some of the values in
--userNameoption is invalid, execution will be progressed further with the the valid values.Based on discussion, #2638 it was decided that even if some of the values in
--userNameoption is invalid execution should be made as faulty and NOT successful.Since we may not be able to validate this during the validation phase, this has to be handled during the execution phase.