2022-10-08 18:32:02 +08:00
|
|
|
package dto
|
|
|
|
|
2022-10-11 14:20:51 +08:00
|
|
|
import "time"
|
|
|
|
|
2022-10-08 18:32:02 +08:00
|
|
|
type PageContainer struct {
|
|
|
|
PageInfo
|
2023-02-07 18:48:32 +08:00
|
|
|
Name string `json:"name"`
|
2023-10-18 10:14:26 +08:00
|
|
|
State string `json:"state" validate:"required,oneof=all created running paused restarting removing exited dead"`
|
2023-06-29 18:40:12 +08:00
|
|
|
OrderBy string `json:"orderBy"`
|
|
|
|
Order string `json:"order"`
|
2022-10-17 16:04:39 +08:00
|
|
|
Filters string `json:"filters"`
|
2022-10-08 18:32:02 +08:00
|
|
|
}
|
|
|
|
|
2022-10-11 19:47:16 +08:00
|
|
|
type InspectReq struct {
|
|
|
|
ID string `json:"id"`
|
|
|
|
Type string `json:"type"`
|
|
|
|
}
|
|
|
|
|
2022-10-08 18:32:02 +08:00
|
|
|
type ContainerInfo struct {
|
|
|
|
ContainerID string `json:"containerID"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
ImageId string `json:"imageID"`
|
|
|
|
ImageName string `json:"imageName"`
|
|
|
|
CreateTime string `json:"createTime"`
|
|
|
|
State string `json:"state"`
|
|
|
|
RunTime string `json:"runTime"`
|
2023-02-17 17:59:45 +08:00
|
|
|
|
2023-09-04 15:51:10 +08:00
|
|
|
Network []string `json:"network"`
|
|
|
|
Ports []string `json:"ports"`
|
2023-04-25 22:06:17 +08:00
|
|
|
|
2023-03-15 16:48:26 +08:00
|
|
|
IsFromApp bool `json:"isFromApp"`
|
2023-02-17 17:59:45 +08:00
|
|
|
IsFromCompose bool `json:"isFromCompose"`
|
2022-10-08 18:32:02 +08:00
|
|
|
}
|
|
|
|
|
2023-06-15 20:44:13 +08:00
|
|
|
type ResourceLimit struct {
|
|
|
|
CPU int `json:"cpu"`
|
|
|
|
Memory int `json:"memory"`
|
|
|
|
}
|
|
|
|
|
2023-06-15 11:00:11 +08:00
|
|
|
type ContainerOperate struct {
|
2023-07-05 16:48:25 +08:00
|
|
|
ContainerID string `json:"containerID"`
|
2023-07-10 22:45:08 +08:00
|
|
|
ForcePull bool `json:"forcePull"`
|
2022-10-12 18:55:47 +08:00
|
|
|
Name string `json:"name"`
|
|
|
|
Image string `json:"image"`
|
2023-07-07 23:17:05 +08:00
|
|
|
Network string `json:"network"`
|
2022-10-12 18:55:47 +08:00
|
|
|
PublishAllPorts bool `json:"publishAllPorts"`
|
|
|
|
ExposedPorts []PortHelper `json:"exposedPorts"`
|
2023-10-07 14:30:46 +08:00
|
|
|
Tty bool `json:"tty"`
|
|
|
|
OpenStdin bool `json:"openStdin"`
|
2022-10-12 18:55:47 +08:00
|
|
|
Cmd []string `json:"cmd"`
|
2023-09-07 16:24:10 +08:00
|
|
|
Entrypoint []string `json:"entrypoint"`
|
2023-06-16 17:54:11 +08:00
|
|
|
CPUShares int64 `json:"cpuShares"`
|
2023-07-10 14:45:08 +08:00
|
|
|
NanoCPUs float64 `json:"nanoCPUs"`
|
|
|
|
Memory float64 `json:"memory"`
|
2022-10-12 18:55:47 +08:00
|
|
|
AutoRemove bool `json:"autoRemove"`
|
|
|
|
Volumes []VolumeHelper `json:"volumes"`
|
|
|
|
Labels []string `json:"labels"`
|
|
|
|
Env []string `json:"env"`
|
|
|
|
RestartPolicy string `json:"restartPolicy"`
|
|
|
|
}
|
|
|
|
|
2023-06-16 17:54:11 +08:00
|
|
|
type ContainerUpgrade struct {
|
2023-07-10 22:45:08 +08:00
|
|
|
Name string `json:"name" validate:"required"`
|
|
|
|
Image string `json:"image" validate:"required"`
|
|
|
|
ForcePull bool `json:"forcePull"`
|
2023-06-16 17:54:11 +08:00
|
|
|
}
|
|
|
|
|
2023-07-06 18:04:22 +08:00
|
|
|
type ContainerListStats struct {
|
2023-09-21 17:34:22 +08:00
|
|
|
ContainerID string `json:"containerID"`
|
|
|
|
|
|
|
|
CPUTotalUsage uint64 `json:"cpuTotalUsage"`
|
|
|
|
SystemUsage uint64 `json:"systemUsage"`
|
2023-07-06 18:04:22 +08:00
|
|
|
CPUPercent float64 `json:"cpuPercent"`
|
2023-09-21 17:34:22 +08:00
|
|
|
PercpuUsage int `json:"percpuUsage"`
|
|
|
|
|
2023-10-07 14:30:46 +08:00
|
|
|
MemoryCache uint64 `json:"memoryCache"`
|
2023-09-21 17:34:22 +08:00
|
|
|
MemoryUsage uint64 `json:"memoryUsage"`
|
|
|
|
MemoryLimit uint64 `json:"memoryLimit"`
|
2023-07-06 18:04:22 +08:00
|
|
|
MemoryPercent float64 `json:"memoryPercent"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type ContainerStats struct {
|
2022-10-13 18:24:24 +08:00
|
|
|
CPUPercent float64 `json:"cpuPercent"`
|
|
|
|
Memory float64 `json:"memory"`
|
|
|
|
Cache float64 `json:"cache"`
|
|
|
|
IORead float64 `json:"ioRead"`
|
|
|
|
IOWrite float64 `json:"ioWrite"`
|
|
|
|
NetworkRX float64 `json:"networkRX"`
|
|
|
|
NetworkTX float64 `json:"networkTX"`
|
|
|
|
|
|
|
|
ShotTime time.Time `json:"shotTime"`
|
|
|
|
}
|
|
|
|
|
2022-10-12 18:55:47 +08:00
|
|
|
type VolumeHelper struct {
|
|
|
|
SourceDir string `json:"sourceDir"`
|
|
|
|
ContainerDir string `json:"containerDir"`
|
|
|
|
Mode string `json:"mode"`
|
|
|
|
}
|
|
|
|
type PortHelper struct {
|
2023-04-26 15:18:13 +08:00
|
|
|
HostIP string `json:"hostIP"`
|
|
|
|
HostPort string `json:"hostPort"`
|
|
|
|
ContainerPort string `json:"containerPort"`
|
|
|
|
Protocol string `json:"protocol"`
|
2022-10-12 18:55:47 +08:00
|
|
|
}
|
|
|
|
|
2022-10-08 18:32:02 +08:00
|
|
|
type ContainerOperation struct {
|
2022-12-13 18:54:28 +08:00
|
|
|
Name string `json:"name" validate:"required"`
|
|
|
|
Operation string `json:"operation" validate:"required,oneof=start stop restart kill pause unpause rename remove"`
|
|
|
|
NewName string `json:"newName"`
|
2022-10-08 18:32:02 +08:00
|
|
|
}
|
2022-10-11 14:20:51 +08:00
|
|
|
|
2023-05-23 19:00:06 +08:00
|
|
|
type ContainerPrune struct {
|
|
|
|
PruneType string `json:"pruneType" validate:"required,oneof=container image volume network"`
|
2023-06-16 17:54:11 +08:00
|
|
|
WithTagAll bool `json:"withTagAll"`
|
2023-05-23 19:00:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
type ContainerPruneReport struct {
|
|
|
|
DeletedNumber int `json:"deletedNumber"`
|
|
|
|
SpaceReclaimed int `json:"spaceReclaimed"`
|
|
|
|
}
|
|
|
|
|
2022-10-11 14:20:51 +08:00
|
|
|
type Network struct {
|
2022-10-11 17:46:52 +08:00
|
|
|
ID string `json:"id"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
Labels []string `json:"labels"`
|
|
|
|
Driver string `json:"driver"`
|
|
|
|
IPAMDriver string `json:"ipamDriver"`
|
|
|
|
Subnet string `json:"subnet"`
|
|
|
|
Gateway string `json:"gateway"`
|
|
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
|
|
Attachable bool `json:"attachable"`
|
2022-10-11 14:20:51 +08:00
|
|
|
}
|
2023-05-30 15:30:57 +08:00
|
|
|
type NetworkCreate struct {
|
2022-10-11 17:46:52 +08:00
|
|
|
Name string `json:"name"`
|
|
|
|
Driver string `json:"driver"`
|
|
|
|
Options []string `json:"options"`
|
|
|
|
Subnet string `json:"subnet"`
|
|
|
|
Gateway string `json:"gateway"`
|
|
|
|
IPRange string `json:"ipRange"`
|
|
|
|
Labels []string `json:"labels"`
|
2022-10-11 14:20:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
type Volume struct {
|
|
|
|
Name string `json:"name"`
|
|
|
|
Labels []string `json:"labels"`
|
|
|
|
Driver string `json:"driver"`
|
|
|
|
Mountpoint string `json:"mountpoint"`
|
|
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
|
|
}
|
2023-05-30 15:30:57 +08:00
|
|
|
type VolumeCreate struct {
|
2022-10-11 14:20:51 +08:00
|
|
|
Name string `json:"name"`
|
|
|
|
Driver string `json:"driver"`
|
|
|
|
Options []string `json:"options"`
|
|
|
|
Labels []string `json:"labels"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type BatchDelete struct {
|
2022-12-13 18:54:28 +08:00
|
|
|
Names []string `json:"names" validate:"required"`
|
2022-10-11 14:20:51 +08:00
|
|
|
}
|
2022-10-17 16:04:39 +08:00
|
|
|
|
|
|
|
type ComposeInfo struct {
|
|
|
|
Name string `json:"name"`
|
|
|
|
CreatedAt string `json:"createdAt"`
|
2022-10-18 18:39:45 +08:00
|
|
|
CreatedBy string `json:"createdBy"`
|
2022-10-17 16:04:39 +08:00
|
|
|
ContainerNumber int `json:"containerNumber"`
|
|
|
|
ConfigFile string `json:"configFile"`
|
|
|
|
Workdir string `json:"workdir"`
|
|
|
|
Path string `json:"path"`
|
|
|
|
Containers []ComposeContainer `json:"containers"`
|
|
|
|
}
|
|
|
|
type ComposeContainer struct {
|
|
|
|
ContainerID string `json:"containerID"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
CreateTime string `json:"createTime"`
|
|
|
|
State string `json:"state"`
|
|
|
|
}
|
|
|
|
type ComposeCreate struct {
|
2023-03-13 18:36:47 +08:00
|
|
|
Name string `json:"name"`
|
2022-10-17 16:04:39 +08:00
|
|
|
From string `json:"from" validate:"required,oneof=edit path template"`
|
|
|
|
File string `json:"file"`
|
|
|
|
Path string `json:"path"`
|
|
|
|
Template uint `json:"template"`
|
|
|
|
}
|
|
|
|
type ComposeOperation struct {
|
2022-12-06 15:05:13 +08:00
|
|
|
Name string `json:"name" validate:"required"`
|
2022-10-17 16:04:39 +08:00
|
|
|
Path string `json:"path" validate:"required"`
|
2022-12-06 17:24:01 +08:00
|
|
|
Operation string `json:"operation" validate:"required,oneof=start stop down"`
|
2023-04-27 12:44:18 +08:00
|
|
|
WithFile bool `json:"withFile"`
|
2022-12-06 15:05:13 +08:00
|
|
|
}
|
|
|
|
type ComposeUpdate struct {
|
2022-12-13 18:54:28 +08:00
|
|
|
Name string `json:"name" validate:"required"`
|
2022-12-06 15:05:13 +08:00
|
|
|
Path string `json:"path" validate:"required"`
|
|
|
|
Content string `json:"content" validate:"required"`
|
2022-10-17 16:04:39 +08:00
|
|
|
}
|