task

package
v0.1.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 2, 2024 License: GPL-3.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the task type in the database.
	Label = "task"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldCreatedAt holds the string denoting the created_at field in the database.
	FieldCreatedAt = "created_at"
	// FieldLastModifiedAt holds the string denoting the last_modified_at field in the database.
	FieldLastModifiedAt = "last_modified_at"
	// FieldClaimedAt holds the string denoting the claimed_at field in the database.
	FieldClaimedAt = "claimed_at"
	// FieldExecStartedAt holds the string denoting the exec_started_at field in the database.
	FieldExecStartedAt = "exec_started_at"
	// FieldExecFinishedAt holds the string denoting the exec_finished_at field in the database.
	FieldExecFinishedAt = "exec_finished_at"
	// FieldOutput holds the string denoting the output field in the database.
	FieldOutput = "output"
	// FieldOutputSize holds the string denoting the output_size field in the database.
	FieldOutputSize = "output_size"
	// FieldError holds the string denoting the error field in the database.
	FieldError = "error"
	// EdgeQuest holds the string denoting the quest edge name in mutations.
	EdgeQuest = "quest"
	// EdgeBeacon holds the string denoting the beacon edge name in mutations.
	EdgeBeacon = "beacon"
	// EdgeReportedFiles holds the string denoting the reported_files edge name in mutations.
	EdgeReportedFiles = "reported_files"
	// EdgeReportedProcesses holds the string denoting the reported_processes edge name in mutations.
	EdgeReportedProcesses = "reported_processes"
	// EdgeReportedCredentials holds the string denoting the reported_credentials edge name in mutations.
	EdgeReportedCredentials = "reported_credentials"
	// Table holds the table name of the task in the database.
	Table = "tasks"
	// QuestTable is the table that holds the quest relation/edge.
	QuestTable = "tasks"
	// QuestInverseTable is the table name for the Quest entity.
	// It exists in this package in order to avoid circular dependency with the "quest" package.
	QuestInverseTable = "quests"
	// QuestColumn is the table column denoting the quest relation/edge.
	QuestColumn = "quest_tasks"
	// BeaconTable is the table that holds the beacon relation/edge.
	BeaconTable = "tasks"
	// BeaconInverseTable is the table name for the Beacon entity.
	// It exists in this package in order to avoid circular dependency with the "beacon" package.
	BeaconInverseTable = "beacons"
	// BeaconColumn is the table column denoting the beacon relation/edge.
	BeaconColumn = "task_beacon"
	// ReportedFilesTable is the table that holds the reported_files relation/edge.
	ReportedFilesTable = "host_files"
	// ReportedFilesInverseTable is the table name for the HostFile entity.
	// It exists in this package in order to avoid circular dependency with the "hostfile" package.
	ReportedFilesInverseTable = "host_files"
	// ReportedFilesColumn is the table column denoting the reported_files relation/edge.
	ReportedFilesColumn = "task_reported_files"
	// ReportedProcessesTable is the table that holds the reported_processes relation/edge.
	ReportedProcessesTable = "host_processes"
	// ReportedProcessesInverseTable is the table name for the HostProcess entity.
	// It exists in this package in order to avoid circular dependency with the "hostprocess" package.
	ReportedProcessesInverseTable = "host_processes"
	// ReportedProcessesColumn is the table column denoting the reported_processes relation/edge.
	ReportedProcessesColumn = "task_reported_processes"
	// ReportedCredentialsTable is the table that holds the reported_credentials relation/edge.
	ReportedCredentialsTable = "host_credentials"
	// ReportedCredentialsInverseTable is the table name for the HostCredential entity.
	// It exists in this package in order to avoid circular dependency with the "hostcredential" package.
	ReportedCredentialsInverseTable = "host_credentials"
	// ReportedCredentialsColumn is the table column denoting the reported_credentials relation/edge.
	ReportedCredentialsColumn = "task_reported_credentials"
)

Variables

View Source
var (
	Hooks [1]ent.Hook
	// DefaultCreatedAt holds the default value on creation for the "created_at" field.
	DefaultCreatedAt func() time.Time
	// DefaultLastModifiedAt holds the default value on creation for the "last_modified_at" field.
	DefaultLastModifiedAt func() time.Time
	// UpdateDefaultLastModifiedAt holds the default value on update for the "last_modified_at" field.
	UpdateDefaultLastModifiedAt func() time.Time
	// DefaultOutputSize holds the default value on creation for the "output_size" field.
	DefaultOutputSize int
	// OutputSizeValidator is a validator for the "output_size" field. It is called by the builders before save.
	OutputSizeValidator func(int) error
)

Note that the variables below are initialized by the runtime package on the initialization of the application. Therefore, it should be imported in the main as follows:

import _ "realm.pub/tavern/internal/ent/runtime"

Columns holds all SQL columns for task fields.

View Source
var ForeignKeys = []string{
	"quest_tasks",
	"task_beacon",
}

ForeignKeys holds the SQL foreign-keys that are owned by the "tasks" table and are not defined as standalone fields in the schema.

Functions

func And

func And(predicates ...predicate.Task) predicate.Task

And groups predicates with the AND operator between them.

func ClaimedAt

func ClaimedAt(v time.Time) predicate.Task

ClaimedAt applies equality check predicate on the "claimed_at" field. It's identical to ClaimedAtEQ.

func ClaimedAtEQ

func ClaimedAtEQ(v time.Time) predicate.Task

ClaimedAtEQ applies the EQ predicate on the "claimed_at" field.

func ClaimedAtGT

func ClaimedAtGT(v time.Time) predicate.Task

ClaimedAtGT applies the GT predicate on the "claimed_at" field.

func ClaimedAtGTE

func ClaimedAtGTE(v time.Time) predicate.Task

ClaimedAtGTE applies the GTE predicate on the "claimed_at" field.

func ClaimedAtIn

func ClaimedAtIn(vs ...time.Time) predicate.Task

ClaimedAtIn applies the In predicate on the "claimed_at" field.

func ClaimedAtIsNil

func ClaimedAtIsNil() predicate.Task

ClaimedAtIsNil applies the IsNil predicate on the "claimed_at" field.

func ClaimedAtLT

func ClaimedAtLT(v time.Time) predicate.Task

ClaimedAtLT applies the LT predicate on the "claimed_at" field.

func ClaimedAtLTE

func ClaimedAtLTE(v time.Time) predicate.Task

ClaimedAtLTE applies the LTE predicate on the "claimed_at" field.

func ClaimedAtNEQ

func ClaimedAtNEQ(v time.Time) predicate.Task

ClaimedAtNEQ applies the NEQ predicate on the "claimed_at" field.

func ClaimedAtNotIn

func ClaimedAtNotIn(vs ...time.Time) predicate.Task

ClaimedAtNotIn applies the NotIn predicate on the "claimed_at" field.

func ClaimedAtNotNil

func ClaimedAtNotNil() predicate.Task

ClaimedAtNotNil applies the NotNil predicate on the "claimed_at" field.

func CreatedAt

func CreatedAt(v time.Time) predicate.Task

CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.Task

CreatedAtEQ applies the EQ predicate on the "created_at" field.

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.Task

CreatedAtGT applies the GT predicate on the "created_at" field.

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.Task

CreatedAtGTE applies the GTE predicate on the "created_at" field.

func CreatedAtIn

func CreatedAtIn(vs ...time.Time) predicate.Task

CreatedAtIn applies the In predicate on the "created_at" field.

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.Task

CreatedAtLT applies the LT predicate on the "created_at" field.

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.Task

CreatedAtLTE applies the LTE predicate on the "created_at" field.

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.Task

CreatedAtNEQ applies the NEQ predicate on the "created_at" field.

func CreatedAtNotIn

func CreatedAtNotIn(vs ...time.Time) predicate.Task

CreatedAtNotIn applies the NotIn predicate on the "created_at" field.

func Error

func Error(v string) predicate.Task

Error applies equality check predicate on the "error" field. It's identical to ErrorEQ.

func ErrorContains

func ErrorContains(v string) predicate.Task

ErrorContains applies the Contains predicate on the "error" field.

func ErrorContainsFold

func ErrorContainsFold(v string) predicate.Task

ErrorContainsFold applies the ContainsFold predicate on the "error" field.

func ErrorEQ

func ErrorEQ(v string) predicate.Task

ErrorEQ applies the EQ predicate on the "error" field.

func ErrorEqualFold

func ErrorEqualFold(v string) predicate.Task

ErrorEqualFold applies the EqualFold predicate on the "error" field.

func ErrorGT

func ErrorGT(v string) predicate.Task

ErrorGT applies the GT predicate on the "error" field.

func ErrorGTE

func ErrorGTE(v string) predicate.Task

ErrorGTE applies the GTE predicate on the "error" field.

func ErrorHasPrefix

func ErrorHasPrefix(v string) predicate.Task

ErrorHasPrefix applies the HasPrefix predicate on the "error" field.

func ErrorHasSuffix

func ErrorHasSuffix(v string) predicate.Task

ErrorHasSuffix applies the HasSuffix predicate on the "error" field.

func ErrorIn

func ErrorIn(vs ...string) predicate.Task

ErrorIn applies the In predicate on the "error" field.

func ErrorIsNil

func ErrorIsNil() predicate.Task

ErrorIsNil applies the IsNil predicate on the "error" field.

func ErrorLT

func ErrorLT(v string) predicate.Task

ErrorLT applies the LT predicate on the "error" field.

func ErrorLTE

func ErrorLTE(v string) predicate.Task

ErrorLTE applies the LTE predicate on the "error" field.

func ErrorNEQ

func ErrorNEQ(v string) predicate.Task

ErrorNEQ applies the NEQ predicate on the "error" field.

func ErrorNotIn

func ErrorNotIn(vs ...string) predicate.Task

ErrorNotIn applies the NotIn predicate on the "error" field.

func ErrorNotNil

func ErrorNotNil() predicate.Task

ErrorNotNil applies the NotNil predicate on the "error" field.

func ExecFinishedAt

func ExecFinishedAt(v time.Time) predicate.Task

ExecFinishedAt applies equality check predicate on the "exec_finished_at" field. It's identical to ExecFinishedAtEQ.

func ExecFinishedAtEQ

func ExecFinishedAtEQ(v time.Time) predicate.Task

ExecFinishedAtEQ applies the EQ predicate on the "exec_finished_at" field.

func ExecFinishedAtGT

func ExecFinishedAtGT(v time.Time) predicate.Task

ExecFinishedAtGT applies the GT predicate on the "exec_finished_at" field.

func ExecFinishedAtGTE

func ExecFinishedAtGTE(v time.Time) predicate.Task

ExecFinishedAtGTE applies the GTE predicate on the "exec_finished_at" field.

func ExecFinishedAtIn

func ExecFinishedAtIn(vs ...time.Time) predicate.Task

ExecFinishedAtIn applies the In predicate on the "exec_finished_at" field.

func ExecFinishedAtIsNil

func ExecFinishedAtIsNil() predicate.Task

ExecFinishedAtIsNil applies the IsNil predicate on the "exec_finished_at" field.

func ExecFinishedAtLT

func ExecFinishedAtLT(v time.Time) predicate.Task

ExecFinishedAtLT applies the LT predicate on the "exec_finished_at" field.

func ExecFinishedAtLTE

func ExecFinishedAtLTE(v time.Time) predicate.Task

ExecFinishedAtLTE applies the LTE predicate on the "exec_finished_at" field.

func ExecFinishedAtNEQ

func ExecFinishedAtNEQ(v time.Time) predicate.Task

ExecFinishedAtNEQ applies the NEQ predicate on the "exec_finished_at" field.

func ExecFinishedAtNotIn

func ExecFinishedAtNotIn(vs ...time.Time) predicate.Task

ExecFinishedAtNotIn applies the NotIn predicate on the "exec_finished_at" field.

func ExecFinishedAtNotNil

func ExecFinishedAtNotNil() predicate.Task

ExecFinishedAtNotNil applies the NotNil predicate on the "exec_finished_at" field.

func ExecStartedAt

func ExecStartedAt(v time.Time) predicate.Task

ExecStartedAt applies equality check predicate on the "exec_started_at" field. It's identical to ExecStartedAtEQ.

func ExecStartedAtEQ

func ExecStartedAtEQ(v time.Time) predicate.Task

ExecStartedAtEQ applies the EQ predicate on the "exec_started_at" field.

func ExecStartedAtGT

func ExecStartedAtGT(v time.Time) predicate.Task

ExecStartedAtGT applies the GT predicate on the "exec_started_at" field.

func ExecStartedAtGTE

func ExecStartedAtGTE(v time.Time) predicate.Task

ExecStartedAtGTE applies the GTE predicate on the "exec_started_at" field.

func ExecStartedAtIn

func ExecStartedAtIn(vs ...time.Time) predicate.Task

ExecStartedAtIn applies the In predicate on the "exec_started_at" field.

func ExecStartedAtIsNil

func ExecStartedAtIsNil() predicate.Task

ExecStartedAtIsNil applies the IsNil predicate on the "exec_started_at" field.

func ExecStartedAtLT

func ExecStartedAtLT(v time.Time) predicate.Task

ExecStartedAtLT applies the LT predicate on the "exec_started_at" field.

func ExecStartedAtLTE

func ExecStartedAtLTE(v time.Time) predicate.Task

ExecStartedAtLTE applies the LTE predicate on the "exec_started_at" field.

func ExecStartedAtNEQ

func ExecStartedAtNEQ(v time.Time) predicate.Task

ExecStartedAtNEQ applies the NEQ predicate on the "exec_started_at" field.

func ExecStartedAtNotIn

func ExecStartedAtNotIn(vs ...time.Time) predicate.Task

ExecStartedAtNotIn applies the NotIn predicate on the "exec_started_at" field.

func ExecStartedAtNotNil

func ExecStartedAtNotNil() predicate.Task

ExecStartedAtNotNil applies the NotNil predicate on the "exec_started_at" field.

func HasBeacon

func HasBeacon() predicate.Task

HasBeacon applies the HasEdge predicate on the "beacon" edge.

func HasBeaconWith

func HasBeaconWith(preds ...predicate.Beacon) predicate.Task

HasBeaconWith applies the HasEdge predicate on the "beacon" edge with a given conditions (other predicates).

func HasQuest

func HasQuest() predicate.Task

HasQuest applies the HasEdge predicate on the "quest" edge.

func HasQuestWith

func HasQuestWith(preds ...predicate.Quest) predicate.Task

HasQuestWith applies the HasEdge predicate on the "quest" edge with a given conditions (other predicates).

func HasReportedCredentials added in v0.0.7

func HasReportedCredentials() predicate.Task

HasReportedCredentials applies the HasEdge predicate on the "reported_credentials" edge.

func HasReportedCredentialsWith added in v0.0.7

func HasReportedCredentialsWith(preds ...predicate.HostCredential) predicate.Task

HasReportedCredentialsWith applies the HasEdge predicate on the "reported_credentials" edge with a given conditions (other predicates).

func HasReportedFiles added in v0.0.5

func HasReportedFiles() predicate.Task

HasReportedFiles applies the HasEdge predicate on the "reported_files" edge.

func HasReportedFilesWith added in v0.0.5

func HasReportedFilesWith(preds ...predicate.HostFile) predicate.Task

HasReportedFilesWith applies the HasEdge predicate on the "reported_files" edge with a given conditions (other predicates).

func HasReportedProcesses added in v0.0.5

func HasReportedProcesses() predicate.Task

HasReportedProcesses applies the HasEdge predicate on the "reported_processes" edge.

func HasReportedProcessesWith added in v0.0.5

func HasReportedProcessesWith(preds ...predicate.HostProcess) predicate.Task

HasReportedProcessesWith applies the HasEdge predicate on the "reported_processes" edge with a given conditions (other predicates).

func ID

func ID(id int) predicate.Task

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id int) predicate.Task

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id int) predicate.Task

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id int) predicate.Task

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...int) predicate.Task

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id int) predicate.Task

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id int) predicate.Task

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id int) predicate.Task

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...int) predicate.Task

IDNotIn applies the NotIn predicate on the ID field.

func LastModifiedAt

func LastModifiedAt(v time.Time) predicate.Task

LastModifiedAt applies equality check predicate on the "last_modified_at" field. It's identical to LastModifiedAtEQ.

func LastModifiedAtEQ

func LastModifiedAtEQ(v time.Time) predicate.Task

LastModifiedAtEQ applies the EQ predicate on the "last_modified_at" field.

func LastModifiedAtGT

func LastModifiedAtGT(v time.Time) predicate.Task

LastModifiedAtGT applies the GT predicate on the "last_modified_at" field.

func LastModifiedAtGTE

func LastModifiedAtGTE(v time.Time) predicate.Task

LastModifiedAtGTE applies the GTE predicate on the "last_modified_at" field.

func LastModifiedAtIn

func LastModifiedAtIn(vs ...time.Time) predicate.Task

LastModifiedAtIn applies the In predicate on the "last_modified_at" field.

func LastModifiedAtLT

func LastModifiedAtLT(v time.Time) predicate.Task

LastModifiedAtLT applies the LT predicate on the "last_modified_at" field.

func LastModifiedAtLTE

func LastModifiedAtLTE(v time.Time) predicate.Task

LastModifiedAtLTE applies the LTE predicate on the "last_modified_at" field.

func LastModifiedAtNEQ

func LastModifiedAtNEQ(v time.Time) predicate.Task

LastModifiedAtNEQ applies the NEQ predicate on the "last_modified_at" field.

func LastModifiedAtNotIn

func LastModifiedAtNotIn(vs ...time.Time) predicate.Task

LastModifiedAtNotIn applies the NotIn predicate on the "last_modified_at" field.

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.Task) predicate.Task

Or groups predicates with the OR operator between them.

func Output

func Output(v string) predicate.Task

Output applies equality check predicate on the "output" field. It's identical to OutputEQ.

func OutputContains

func OutputContains(v string) predicate.Task

OutputContains applies the Contains predicate on the "output" field.

func OutputContainsFold

func OutputContainsFold(v string) predicate.Task

OutputContainsFold applies the ContainsFold predicate on the "output" field.

func OutputEQ

func OutputEQ(v string) predicate.Task

OutputEQ applies the EQ predicate on the "output" field.

func OutputEqualFold

func OutputEqualFold(v string) predicate.Task

OutputEqualFold applies the EqualFold predicate on the "output" field.

func OutputGT

func OutputGT(v string) predicate.Task

OutputGT applies the GT predicate on the "output" field.

func OutputGTE

func OutputGTE(v string) predicate.Task

OutputGTE applies the GTE predicate on the "output" field.

func OutputHasPrefix

func OutputHasPrefix(v string) predicate.Task

OutputHasPrefix applies the HasPrefix predicate on the "output" field.

func OutputHasSuffix

func OutputHasSuffix(v string) predicate.Task

OutputHasSuffix applies the HasSuffix predicate on the "output" field.

func OutputIn

func OutputIn(vs ...string) predicate.Task

OutputIn applies the In predicate on the "output" field.

func OutputIsNil

func OutputIsNil() predicate.Task

OutputIsNil applies the IsNil predicate on the "output" field.

func OutputLT

func OutputLT(v string) predicate.Task

OutputLT applies the LT predicate on the "output" field.

func OutputLTE

func OutputLTE(v string) predicate.Task

OutputLTE applies the LTE predicate on the "output" field.

func OutputNEQ

func OutputNEQ(v string) predicate.Task

OutputNEQ applies the NEQ predicate on the "output" field.

func OutputNotIn

func OutputNotIn(vs ...string) predicate.Task

OutputNotIn applies the NotIn predicate on the "output" field.

func OutputNotNil

func OutputNotNil() predicate.Task

OutputNotNil applies the NotNil predicate on the "output" field.

func OutputSize added in v0.0.5

func OutputSize(v int) predicate.Task

OutputSize applies equality check predicate on the "output_size" field. It's identical to OutputSizeEQ.

func OutputSizeEQ added in v0.0.5

func OutputSizeEQ(v int) predicate.Task

OutputSizeEQ applies the EQ predicate on the "output_size" field.

func OutputSizeGT added in v0.0.5

func OutputSizeGT(v int) predicate.Task

OutputSizeGT applies the GT predicate on the "output_size" field.

func OutputSizeGTE added in v0.0.5

func OutputSizeGTE(v int) predicate.Task

OutputSizeGTE applies the GTE predicate on the "output_size" field.

func OutputSizeIn added in v0.0.5

func OutputSizeIn(vs ...int) predicate.Task

OutputSizeIn applies the In predicate on the "output_size" field.

func OutputSizeLT added in v0.0.5

func OutputSizeLT(v int) predicate.Task

OutputSizeLT applies the LT predicate on the "output_size" field.

func OutputSizeLTE added in v0.0.5

func OutputSizeLTE(v int) predicate.Task

OutputSizeLTE applies the LTE predicate on the "output_size" field.

func OutputSizeNEQ added in v0.0.5

func OutputSizeNEQ(v int) predicate.Task

OutputSizeNEQ applies the NEQ predicate on the "output_size" field.

func OutputSizeNotIn added in v0.0.5

func OutputSizeNotIn(vs ...int) predicate.Task

OutputSizeNotIn applies the NotIn predicate on the "output_size" field.

func ValidColumn

func ValidColumn(column string) bool

ValidColumn reports if the column name is valid (part of the table columns).

Types

type OrderOption

type OrderOption func(*sql.Selector)

OrderOption defines the ordering options for the Task queries.

func ByBeaconField

func ByBeaconField(field string, opts ...sql.OrderTermOption) OrderOption

ByBeaconField orders the results by beacon field.

func ByClaimedAt

func ByClaimedAt(opts ...sql.OrderTermOption) OrderOption

ByClaimedAt orders the results by the claimed_at field.

func ByCreatedAt

func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption

ByCreatedAt orders the results by the created_at field.

func ByError

func ByError(opts ...sql.OrderTermOption) OrderOption

ByError orders the results by the error field.

func ByExecFinishedAt

func ByExecFinishedAt(opts ...sql.OrderTermOption) OrderOption

ByExecFinishedAt orders the results by the exec_finished_at field.

func ByExecStartedAt

func ByExecStartedAt(opts ...sql.OrderTermOption) OrderOption

ByExecStartedAt orders the results by the exec_started_at field.

func ByID

func ByID(opts ...sql.OrderTermOption) OrderOption

ByID orders the results by the id field.

func ByLastModifiedAt

func ByLastModifiedAt(opts ...sql.OrderTermOption) OrderOption

ByLastModifiedAt orders the results by the last_modified_at field.

func ByOutput

func ByOutput(opts ...sql.OrderTermOption) OrderOption

ByOutput orders the results by the output field.

func ByOutputSize added in v0.0.5

func ByOutputSize(opts ...sql.OrderTermOption) OrderOption

ByOutputSize orders the results by the output_size field.

func ByQuestField

func ByQuestField(field string, opts ...sql.OrderTermOption) OrderOption

ByQuestField orders the results by quest field.

func ByReportedCredentials added in v0.0.7

func ByReportedCredentials(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByReportedCredentials orders the results by reported_credentials terms.

func ByReportedCredentialsCount added in v0.0.7

func ByReportedCredentialsCount(opts ...sql.OrderTermOption) OrderOption

ByReportedCredentialsCount orders the results by reported_credentials count.

func ByReportedFiles added in v0.0.5

func ByReportedFiles(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByReportedFiles orders the results by reported_files terms.

func ByReportedFilesCount added in v0.0.5

func ByReportedFilesCount(opts ...sql.OrderTermOption) OrderOption

ByReportedFilesCount orders the results by reported_files count.

func ByReportedProcesses added in v0.0.5

func ByReportedProcesses(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByReportedProcesses orders the results by reported_processes terms.

func ByReportedProcessesCount added in v0.0.5

func ByReportedProcessesCount(opts ...sql.OrderTermOption) OrderOption

ByReportedProcessesCount orders the results by reported_processes count.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL