mirror of
https://github.com/datarhei/core.git
synced 2025-09-28 12:52:29 +08:00
30 lines
970 B
Go
30 lines
970 B
Go
package api
|
|
|
|
// FileInfo represents information about a file on a filesystem
|
|
type FileInfo struct {
|
|
Name string `json:"name" jsonschema:"minLength=1"`
|
|
Size int64 `json:"size_bytes" jsonschema:"minimum=0" format:"int64"`
|
|
LastMod int64 `json:"last_modified" jsonschema:"minimum=0" format:"int64"`
|
|
CoreID string `json:"core_id,omitempty"`
|
|
}
|
|
|
|
// FilesystemInfo represents information about a filesystem
|
|
type FilesystemInfo struct {
|
|
Name string `json:"name"`
|
|
Type string `json:"type"`
|
|
Mount string `json:"mount"`
|
|
}
|
|
|
|
// FilesystemOperation represents a file operation on one or more filesystems
|
|
type FilesystemOperation struct {
|
|
Operation string `json:"operation" validate:"required" enums:"copy,move" jsonschema:"enum=copy,enum=move"`
|
|
Source string `json:"source"`
|
|
Target string `json:"target"`
|
|
RateLimit uint64 `json:"bandwidth_limit_kbit"` // kbit/s
|
|
}
|
|
|
|
type FilesystemEvent struct {
|
|
Action string `json:"action"`
|
|
Name string `json:"name"`
|
|
}
|