mirror of https://github.com/1Panel-dev/1Panel
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.
40 lines
1.2 KiB
40 lines
1.2 KiB
2 years ago
|
package dto
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type HostCreate struct {
|
||
|
Name string `json:"name" validate:"required,name"`
|
||
|
Addr string `json:"addr" validate:"required,ip"`
|
||
|
Port uint `json:"port" validate:"required,number,max=65535,min=1"`
|
||
|
User string `json:"user" validate:"required"`
|
||
|
AuthMode string `json:"authMode" validate:"oneof=password key"`
|
||
|
PrivateKey string `json:"privateKey"`
|
||
|
Password string `json:"password"`
|
||
|
|
||
|
Description string `json:"description"`
|
||
|
}
|
||
|
|
||
|
type HostInfo struct {
|
||
|
ID uint `json:"id"`
|
||
|
CreatedAt time.Time `json:"createdAt"`
|
||
|
Name string `json:"name"`
|
||
|
Addr string `json:"addr"`
|
||
|
Port uint `json:"port"`
|
||
|
User string `json:"user"`
|
||
|
AuthMode string `json:"authMode"`
|
||
|
|
||
|
Description string `json:"description"`
|
||
|
}
|
||
|
|
||
|
type HostUpdate struct {
|
||
|
Name string `json:"name" validate:"required,name"`
|
||
|
Addr string `json:"addr" validate:"required,ip"`
|
||
|
Port uint `json:"port" validate:"required,number,max=65535,min=1"`
|
||
|
User string `json:"user" validate:"required"`
|
||
|
AuthMode string `json:"authMode" validate:"oneof=password key"`
|
||
|
PrivateKey string `json:"privateKey"`
|
||
|
Password string `json:"password"`
|
||
|
|
||
|
Description string `json:"description"`
|
||
|
}
|