mirror of https://github.com/apache/cloudstack.git
bug CS-14965: RegisterSSHKeypair API. allow public key length upto 5120
status CS-14965: resolved fixed reviewed-by: Nitin
This commit is contained in:
parent
09dd71d056
commit
bb7109b4b6
|
|
@ -36,7 +36,7 @@ public class RegisterSSHKeyPairCmd extends BaseCmd {
|
|||
@Parameter(name=ApiConstants.NAME, type=CommandType.STRING, required=true, description="Name of the keypair")
|
||||
private String name;
|
||||
|
||||
@Parameter(name="publickey", type=CommandType.STRING, required=true, description="Public key material of the keypair")
|
||||
@Parameter(name="publickey", type=CommandType.STRING, required=true, description="Public key material of the keypair", length=5120)
|
||||
private String publicKey;
|
||||
|
||||
//Owner information
|
||||
|
|
|
|||
Loading…
Reference in New Issue