2021-05-08 18:00:33 +08:00
|
|
|
package form
|
|
|
|
|
|
2024-04-09 12:55:51 +08:00
|
|
|
import tagentity "mayfly-go/internal/tag/domain/entity"
|
|
|
|
|
|
2021-05-08 18:00:33 +08:00
|
|
|
type MachineForm struct {
|
2024-04-06 04:03:38 +00:00
|
|
|
Id uint64 `json:"id"`
|
|
|
|
|
Protocol int `json:"protocol" binding:"required"`
|
2024-04-12 13:24:20 +08:00
|
|
|
Code string `json:"code" binding:"pattern=resource_code"`
|
2024-04-06 04:03:38 +00:00
|
|
|
Name string `json:"name" binding:"required"`
|
|
|
|
|
Ip string `json:"ip" binding:"required"` // IP地址
|
|
|
|
|
Port int `json:"port" binding:"required"` // 端口号
|
2023-03-06 16:59:57 +08:00
|
|
|
|
2024-04-17 21:28:28 +08:00
|
|
|
TagCodePaths []string `json:"tagCodePaths" binding:"required"`
|
|
|
|
|
AuthCerts []*tagentity.ResourceAuthCert `json:"authCerts" binding:"required"` // 资产授权凭证信息列表
|
2023-03-06 16:59:57 +08:00
|
|
|
|
2022-07-23 16:41:04 +08:00
|
|
|
Remark string `json:"remark"`
|
2023-03-06 16:59:57 +08:00
|
|
|
SshTunnelMachineId int `json:"sshTunnelMachineId"` // ssh隧道机器id
|
2022-08-29 21:43:24 +08:00
|
|
|
EnableRecorder int8 `json:"enableRecorder"` // 是否启用终端回放记录
|
2021-05-08 18:00:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type MachineRunForm struct {
|
2023-06-11 19:59:35 +08:00
|
|
|
MachineId int64 `json:"machineId" binding:"required"`
|
|
|
|
|
Cmd string `json:"cmd" binding:"required"`
|
2021-05-08 18:00:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type MachineScriptForm struct {
|
2023-06-11 19:59:35 +08:00
|
|
|
Id uint64 `json:"id"`
|
|
|
|
|
Name string `json:"name" binding:"required"`
|
|
|
|
|
MachineId uint64 `json:"machineId" binding:"required"`
|
|
|
|
|
Type int `json:"type" binding:"required"`
|
|
|
|
|
Description string `json:"description" binding:"required"`
|
|
|
|
|
Params string `json:"params"`
|
|
|
|
|
Script string `json:"script" binding:"required"`
|
2021-05-08 18:00:33 +08:00
|
|
|
}
|
|
|
|
|
|
2023-07-20 22:41:13 +08:00
|
|
|
// 机器记录任务
|
|
|
|
|
type MachineCronJobForm struct {
|
|
|
|
|
Id uint64 `json:"id"`
|
|
|
|
|
Name string `json:"name" binding:"required"`
|
|
|
|
|
Cron string `json:"cron" binding:"required"` // cron
|
|
|
|
|
Script string `json:"script" binding:"required"`
|
|
|
|
|
Status int `json:"status" binding:"required"`
|
|
|
|
|
SaveExecResType int `json:"saveExecResType" binding:"required"`
|
|
|
|
|
MachineIds []uint64 `json:"machineIds"`
|
|
|
|
|
Remark string `json:"remark"`
|
2023-03-06 16:59:57 +08:00
|
|
|
}
|
2024-04-27 01:35:21 +08:00
|
|
|
|
|
|
|
|
type MachineCmdConfForm struct {
|
|
|
|
|
Id uint64 `json:"id"`
|
|
|
|
|
Name string `json:"name"`
|
|
|
|
|
Cmds []string `json:"cmds"` // 命令配置
|
|
|
|
|
Status int8 `json:"execCmds"` // 状态
|
|
|
|
|
Stratege string `json:"stratege"` // 策略,空禁用
|
|
|
|
|
Remark string `json:"remark"` // 备注
|
|
|
|
|
|
|
|
|
|
CodePaths []string `json:"codePaths"`
|
|
|
|
|
}
|