You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.7 KiB
Go
61 lines
1.7 KiB
Go
package dto
|
|
|
|
import "time"
|
|
|
|
type PageImage struct {
|
|
PageInfo
|
|
Name string `json:"name"`
|
|
OrderBy string `json:"orderBy" validate:"required,oneof=size tags createdAt isUsed"`
|
|
Order string `json:"order" validate:"required,oneof=null ascending descending"`
|
|
}
|
|
|
|
type ImageInfo struct {
|
|
ID string `json:"id"`
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
IsUsed bool `json:"isUsed"`
|
|
Tags []string `json:"tags"`
|
|
Size int64 `json:"size"`
|
|
|
|
IsPinned bool `json:"isPinned"`
|
|
Description string `json:"description"`
|
|
}
|
|
|
|
type ImageLoad struct {
|
|
TaskID string `json:"taskID"`
|
|
Paths []string `json:"paths" validate:"required,dive,required"`
|
|
}
|
|
|
|
type ImageBuild struct {
|
|
TaskID string `json:"taskID"`
|
|
From string `json:"from" validate:"required"`
|
|
Name string `json:"name" validate:"required"`
|
|
Dockerfile string `json:"dockerfile" validate:"required"`
|
|
Tags []string `json:"tags"`
|
|
Args []string `json:"args"`
|
|
}
|
|
|
|
type ImagePull struct {
|
|
TaskID string `json:"taskID"`
|
|
RepoID uint `json:"repoID"`
|
|
ImageName []string `json:"imageName" validate:"required"`
|
|
}
|
|
|
|
type ImageTag struct {
|
|
SourceID string `json:"sourceID" validate:"required"`
|
|
Tags []string `json:"tags" validate:"required"`
|
|
}
|
|
|
|
type ImagePush struct {
|
|
TaskID string `json:"taskID"`
|
|
RepoID uint `json:"repoID" validate:"required"`
|
|
TagName string `json:"tagName" validate:"required"`
|
|
Name string `json:"name" validate:"required"`
|
|
}
|
|
|
|
type ImageSave struct {
|
|
TaskID string `json:"taskID"`
|
|
TagName string `json:"tagName" validate:"required"`
|
|
Path string `json:"path" validate:"required"`
|
|
Name string `json:"name" validate:"required"`
|
|
}
|