Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type WebFTPLogAttributes ¶
type WebFTPLogAttributes struct {
Server string `json:"server"`
FileName string `json:"file_name" table:"File Name"`
Action string `json:"action"`
Size int64 `json:"size"`
Success bool `json:"success"`
User string `json:"user"`
RemoteIP string `json:"remote_ip" table:"Remote IP"`
AddedAt string `json:"added_at" table:"Added At"`
}
func GetWebFTPLogList ¶
func GetWebFTPLogList(ac *client.AlpaconClient, pageSize int, serverName string, userName string, action string) ([]WebFTPLogAttributes, error)
type WebFTPLogEntry ¶
type WebFTPLogEntry struct {
AddedAt time.Time `json:"added_at"`
FileName string `json:"file_name"`
Action string `json:"action"`
Size int64 `json:"size"`
Success bool `json:"success"`
User *types.UserSummary `json:"user"`
Server *types.ServerSummary `json:"server"`
RemoteIP string `json:"remote_ip"`
Message string `json:"message"`
}
Click to show internal directories.
Click to hide internal directories.