mirror of https://github.com/apache/cloudstack.git
UpdateUserCmd: apiSecretKey refers to itself (#2597)
* UpdateUserCmd: apiSecretKey refers to itself * typo: hasing -> hashing
This commit is contained in:
parent
5ff2f172cb
commit
28e6ea721a
|
|
@ -61,12 +61,12 @@ public class UpdateUserCmd extends BaseCmd {
|
|||
|
||||
@Parameter(name = ApiConstants.PASSWORD,
|
||||
type = CommandType.STRING,
|
||||
description = "Clear text password (default hashed to SHA256SALT). If you wish to use any other hasing algorithm, you would need to write a custom authentication adapter. Can't be passed when command is executed via integration.api.port",
|
||||
description = "Clear text password (default hashed to SHA256SALT). If you wish to use any other hashing algorithm, you would need to write a custom authentication adapter. Can't be passed when command is executed via integration.api.port",
|
||||
acceptedOnAdminPort = false)
|
||||
private String password;
|
||||
|
||||
|
||||
@Parameter(name = ApiConstants.SECRET_KEY, type = CommandType.STRING, description = "The secret key for the user. Must be specified with userSecretKey")
|
||||
@Parameter(name = ApiConstants.SECRET_KEY, type = CommandType.STRING, description = "The secret key for the user. Must be specified with userApiKey")
|
||||
private String secretKey;
|
||||
|
||||
@Parameter(name = ApiConstants.TIMEZONE,
|
||||
|
|
|
|||
Loading…
Reference in New Issue