You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package dto
|
|
|
|
|
|
|
|
type SSHInfo struct {
|
|
|
|
Port string `json:"port" validate:"required,number,max=65535,min=1"`
|
|
|
|
ListenAddress string `json:"listenAddress"`
|
|
|
|
PasswordAuthentication string `json:"passwordAuthentication" validate:"required,oneof=yes no"`
|
|
|
|
PubkeyAuthentication string `json:"pubkeyAuthentication" validate:"required,oneof=yes no"`
|
|
|
|
PermitRootLogin string `json:"permitRootLogin" validate:"required,oneof=yes no without-password forced-commands-only"`
|
|
|
|
UseDNS string `json:"useDNS" validate:"required,oneof=yes no"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type GenerateSSH struct {
|
|
|
|
EncryptionMode string `json:"encryptionMode" validate:"required,oneof=rsa ed25519 ecdsa dsa"`
|
|
|
|
Password string `json:"password"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type GenerateLoad struct {
|
|
|
|
EncryptionMode string `json:"encryptionMode" validate:"required,oneof=rsa ed25519 ecdsa dsa"`
|
|
|
|
}
|