instanceruntime

package
v0.7.0 Latest Latest
Warning

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

Go to latest
Published: Oct 16, 2022 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the instanceruntime type in the database.
	Label = "instance_runtime"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "oid"
	// FieldInput holds the string denoting the input field in the database.
	FieldInput = "input"
	// FieldData holds the string denoting the data field in the database.
	FieldData = "data"
	// FieldController holds the string denoting the controller field in the database.
	FieldController = "controller"
	// FieldMemory holds the string denoting the memory field in the database.
	FieldMemory = "memory"
	// FieldFlow holds the string denoting the flow field in the database.
	FieldFlow = "flow"
	// FieldOutput holds the string denoting the output field in the database.
	FieldOutput = "output"
	// FieldStateBeginTime holds the string denoting the statebegintime field in the database.
	FieldStateBeginTime = "state_begin_time"
	// FieldDeadline holds the string denoting the deadline field in the database.
	FieldDeadline = "deadline"
	// FieldAttempts holds the string denoting the attempts field in the database.
	FieldAttempts = "attempts"
	// FieldCallerData holds the string denoting the caller_data field in the database.
	FieldCallerData = "caller_data"
	// FieldInstanceContext holds the string denoting the instancecontext field in the database.
	FieldInstanceContext = "instance_context"
	// FieldStateContext holds the string denoting the statecontext field in the database.
	FieldStateContext = "state_context"
	// FieldMetadata holds the string denoting the metadata field in the database.
	FieldMetadata = "metadata"
	// EdgeInstance holds the string denoting the instance edge name in mutations.
	EdgeInstance = "instance"
	// EdgeCaller holds the string denoting the caller edge name in mutations.
	EdgeCaller = "caller"
	// Table holds the table name of the instanceruntime in the database.
	Table = "instance_runtimes"
	// InstanceTable is the table that holds the instance relation/edge.
	InstanceTable = "instance_runtimes"
	// InstanceInverseTable is the table name for the Instance entity.
	// It exists in this package in order to avoid circular dependency with the "instance" package.
	InstanceInverseTable = "instances"
	// InstanceColumn is the table column denoting the instance relation/edge.
	InstanceColumn = "instance_runtime"
	// CallerTable is the table that holds the caller relation/edge.
	CallerTable = "instance_runtimes"
	// CallerInverseTable is the table name for the Instance entity.
	// It exists in this package in order to avoid circular dependency with the "instance" package.
	CallerInverseTable = "instances"
	// CallerColumn is the table column denoting the caller relation/edge.
	CallerColumn = "instance_children"
)

Variables

Columns holds all SQL columns for instanceruntime fields.

View Source
var (
	// DefaultID holds the default value on creation for the "id" field.
	DefaultID func() uuid.UUID
)
View Source
var ForeignKeys = []string{
	"instance_runtime",
	"instance_children",
}

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

Functions

func And

And groups predicates with the AND operator between them.

func Attempts

func Attempts(v int) predicate.InstanceRuntime

Attempts applies equality check predicate on the "attempts" field. It's identical to AttemptsEQ.

func AttemptsEQ

func AttemptsEQ(v int) predicate.InstanceRuntime

AttemptsEQ applies the EQ predicate on the "attempts" field.

func AttemptsGT

func AttemptsGT(v int) predicate.InstanceRuntime

AttemptsGT applies the GT predicate on the "attempts" field.

func AttemptsGTE

func AttemptsGTE(v int) predicate.InstanceRuntime

AttemptsGTE applies the GTE predicate on the "attempts" field.

func AttemptsIn

func AttemptsIn(vs ...int) predicate.InstanceRuntime

AttemptsIn applies the In predicate on the "attempts" field.

func AttemptsIsNil

func AttemptsIsNil() predicate.InstanceRuntime

AttemptsIsNil applies the IsNil predicate on the "attempts" field.

func AttemptsLT

func AttemptsLT(v int) predicate.InstanceRuntime

AttemptsLT applies the LT predicate on the "attempts" field.

func AttemptsLTE

func AttemptsLTE(v int) predicate.InstanceRuntime

AttemptsLTE applies the LTE predicate on the "attempts" field.

func AttemptsNEQ

func AttemptsNEQ(v int) predicate.InstanceRuntime

AttemptsNEQ applies the NEQ predicate on the "attempts" field.

func AttemptsNotIn

func AttemptsNotIn(vs ...int) predicate.InstanceRuntime

AttemptsNotIn applies the NotIn predicate on the "attempts" field.

func AttemptsNotNil

func AttemptsNotNil() predicate.InstanceRuntime

AttemptsNotNil applies the NotNil predicate on the "attempts" field.

func CallerData

func CallerData(v string) predicate.InstanceRuntime

CallerData applies equality check predicate on the "caller_data" field. It's identical to CallerDataEQ.

func CallerDataContains

func CallerDataContains(v string) predicate.InstanceRuntime

CallerDataContains applies the Contains predicate on the "caller_data" field.

func CallerDataContainsFold

func CallerDataContainsFold(v string) predicate.InstanceRuntime

CallerDataContainsFold applies the ContainsFold predicate on the "caller_data" field.

func CallerDataEQ

func CallerDataEQ(v string) predicate.InstanceRuntime

CallerDataEQ applies the EQ predicate on the "caller_data" field.

func CallerDataEqualFold

func CallerDataEqualFold(v string) predicate.InstanceRuntime

CallerDataEqualFold applies the EqualFold predicate on the "caller_data" field.

func CallerDataGT

func CallerDataGT(v string) predicate.InstanceRuntime

CallerDataGT applies the GT predicate on the "caller_data" field.

func CallerDataGTE

func CallerDataGTE(v string) predicate.InstanceRuntime

CallerDataGTE applies the GTE predicate on the "caller_data" field.

func CallerDataHasPrefix

func CallerDataHasPrefix(v string) predicate.InstanceRuntime

CallerDataHasPrefix applies the HasPrefix predicate on the "caller_data" field.

func CallerDataHasSuffix

func CallerDataHasSuffix(v string) predicate.InstanceRuntime

CallerDataHasSuffix applies the HasSuffix predicate on the "caller_data" field.

func CallerDataIn

func CallerDataIn(vs ...string) predicate.InstanceRuntime

CallerDataIn applies the In predicate on the "caller_data" field.

func CallerDataIsNil

func CallerDataIsNil() predicate.InstanceRuntime

CallerDataIsNil applies the IsNil predicate on the "caller_data" field.

func CallerDataLT

func CallerDataLT(v string) predicate.InstanceRuntime

CallerDataLT applies the LT predicate on the "caller_data" field.

func CallerDataLTE

func CallerDataLTE(v string) predicate.InstanceRuntime

CallerDataLTE applies the LTE predicate on the "caller_data" field.

func CallerDataNEQ

func CallerDataNEQ(v string) predicate.InstanceRuntime

CallerDataNEQ applies the NEQ predicate on the "caller_data" field.

func CallerDataNotIn

func CallerDataNotIn(vs ...string) predicate.InstanceRuntime

CallerDataNotIn applies the NotIn predicate on the "caller_data" field.

func CallerDataNotNil

func CallerDataNotNil() predicate.InstanceRuntime

CallerDataNotNil applies the NotNil predicate on the "caller_data" field.

func Controller

func Controller(v string) predicate.InstanceRuntime

Controller applies equality check predicate on the "controller" field. It's identical to ControllerEQ.

func ControllerContains

func ControllerContains(v string) predicate.InstanceRuntime

ControllerContains applies the Contains predicate on the "controller" field.

func ControllerContainsFold

func ControllerContainsFold(v string) predicate.InstanceRuntime

ControllerContainsFold applies the ContainsFold predicate on the "controller" field.

func ControllerEQ

func ControllerEQ(v string) predicate.InstanceRuntime

ControllerEQ applies the EQ predicate on the "controller" field.

func ControllerEqualFold

func ControllerEqualFold(v string) predicate.InstanceRuntime

ControllerEqualFold applies the EqualFold predicate on the "controller" field.

func ControllerGT

func ControllerGT(v string) predicate.InstanceRuntime

ControllerGT applies the GT predicate on the "controller" field.

func ControllerGTE

func ControllerGTE(v string) predicate.InstanceRuntime

ControllerGTE applies the GTE predicate on the "controller" field.

func ControllerHasPrefix

func ControllerHasPrefix(v string) predicate.InstanceRuntime

ControllerHasPrefix applies the HasPrefix predicate on the "controller" field.

func ControllerHasSuffix

func ControllerHasSuffix(v string) predicate.InstanceRuntime

ControllerHasSuffix applies the HasSuffix predicate on the "controller" field.

func ControllerIn

func ControllerIn(vs ...string) predicate.InstanceRuntime

ControllerIn applies the In predicate on the "controller" field.

func ControllerIsNil

func ControllerIsNil() predicate.InstanceRuntime

ControllerIsNil applies the IsNil predicate on the "controller" field.

func ControllerLT

func ControllerLT(v string) predicate.InstanceRuntime

ControllerLT applies the LT predicate on the "controller" field.

func ControllerLTE

func ControllerLTE(v string) predicate.InstanceRuntime

ControllerLTE applies the LTE predicate on the "controller" field.

func ControllerNEQ

func ControllerNEQ(v string) predicate.InstanceRuntime

ControllerNEQ applies the NEQ predicate on the "controller" field.

func ControllerNotIn

func ControllerNotIn(vs ...string) predicate.InstanceRuntime

ControllerNotIn applies the NotIn predicate on the "controller" field.

func ControllerNotNil

func ControllerNotNil() predicate.InstanceRuntime

ControllerNotNil applies the NotNil predicate on the "controller" field.

func Data

Data applies equality check predicate on the "data" field. It's identical to DataEQ.

func DataContains

func DataContains(v string) predicate.InstanceRuntime

DataContains applies the Contains predicate on the "data" field.

func DataContainsFold

func DataContainsFold(v string) predicate.InstanceRuntime

DataContainsFold applies the ContainsFold predicate on the "data" field.

func DataEQ

DataEQ applies the EQ predicate on the "data" field.

func DataEqualFold

func DataEqualFold(v string) predicate.InstanceRuntime

DataEqualFold applies the EqualFold predicate on the "data" field.

func DataGT

DataGT applies the GT predicate on the "data" field.

func DataGTE

func DataGTE(v string) predicate.InstanceRuntime

DataGTE applies the GTE predicate on the "data" field.

func DataHasPrefix

func DataHasPrefix(v string) predicate.InstanceRuntime

DataHasPrefix applies the HasPrefix predicate on the "data" field.

func DataHasSuffix

func DataHasSuffix(v string) predicate.InstanceRuntime

DataHasSuffix applies the HasSuffix predicate on the "data" field.

func DataIn

func DataIn(vs ...string) predicate.InstanceRuntime

DataIn applies the In predicate on the "data" field.

func DataLT

DataLT applies the LT predicate on the "data" field.

func DataLTE

func DataLTE(v string) predicate.InstanceRuntime

DataLTE applies the LTE predicate on the "data" field.

func DataNEQ

func DataNEQ(v string) predicate.InstanceRuntime

DataNEQ applies the NEQ predicate on the "data" field.

func DataNotIn

func DataNotIn(vs ...string) predicate.InstanceRuntime

DataNotIn applies the NotIn predicate on the "data" field.

func Deadline

func Deadline(v time.Time) predicate.InstanceRuntime

Deadline applies equality check predicate on the "deadline" field. It's identical to DeadlineEQ.

func DeadlineEQ

func DeadlineEQ(v time.Time) predicate.InstanceRuntime

DeadlineEQ applies the EQ predicate on the "deadline" field.

func DeadlineGT

func DeadlineGT(v time.Time) predicate.InstanceRuntime

DeadlineGT applies the GT predicate on the "deadline" field.

func DeadlineGTE

func DeadlineGTE(v time.Time) predicate.InstanceRuntime

DeadlineGTE applies the GTE predicate on the "deadline" field.

func DeadlineIn

func DeadlineIn(vs ...time.Time) predicate.InstanceRuntime

DeadlineIn applies the In predicate on the "deadline" field.

func DeadlineIsNil

func DeadlineIsNil() predicate.InstanceRuntime

DeadlineIsNil applies the IsNil predicate on the "deadline" field.

func DeadlineLT

func DeadlineLT(v time.Time) predicate.InstanceRuntime

DeadlineLT applies the LT predicate on the "deadline" field.

func DeadlineLTE

func DeadlineLTE(v time.Time) predicate.InstanceRuntime

DeadlineLTE applies the LTE predicate on the "deadline" field.

func DeadlineNEQ

func DeadlineNEQ(v time.Time) predicate.InstanceRuntime

DeadlineNEQ applies the NEQ predicate on the "deadline" field.

func DeadlineNotIn

func DeadlineNotIn(vs ...time.Time) predicate.InstanceRuntime

DeadlineNotIn applies the NotIn predicate on the "deadline" field.

func DeadlineNotNil

func DeadlineNotNil() predicate.InstanceRuntime

DeadlineNotNil applies the NotNil predicate on the "deadline" field.

func FlowIsNil

func FlowIsNil() predicate.InstanceRuntime

FlowIsNil applies the IsNil predicate on the "flow" field.

func FlowNotNil

func FlowNotNil() predicate.InstanceRuntime

FlowNotNil applies the NotNil predicate on the "flow" field.

func HasCaller

func HasCaller() predicate.InstanceRuntime

HasCaller applies the HasEdge predicate on the "caller" edge.

func HasCallerWith

func HasCallerWith(preds ...predicate.Instance) predicate.InstanceRuntime

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

func HasInstance

func HasInstance() predicate.InstanceRuntime

HasInstance applies the HasEdge predicate on the "instance" edge.

func HasInstanceWith

func HasInstanceWith(preds ...predicate.Instance) predicate.InstanceRuntime

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

func ID

ID filters vertices based on their ID field.

func IDEQ

IDEQ applies the EQ predicate on the ID field.

func IDGT

IDGT applies the GT predicate on the ID field.

func IDGTE

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...uuid.UUID) predicate.InstanceRuntime

IDIn applies the In predicate on the ID field.

func IDLT

IDLT applies the LT predicate on the ID field.

func IDLTE

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...uuid.UUID) predicate.InstanceRuntime

IDNotIn applies the NotIn predicate on the ID field.

func Input

func Input(v []byte) predicate.InstanceRuntime

Input applies equality check predicate on the "input" field. It's identical to InputEQ.

func InputEQ

func InputEQ(v []byte) predicate.InstanceRuntime

InputEQ applies the EQ predicate on the "input" field.

func InputGT

func InputGT(v []byte) predicate.InstanceRuntime

InputGT applies the GT predicate on the "input" field.

func InputGTE

func InputGTE(v []byte) predicate.InstanceRuntime

InputGTE applies the GTE predicate on the "input" field.

func InputIn

func InputIn(vs ...[]byte) predicate.InstanceRuntime

InputIn applies the In predicate on the "input" field.

func InputLT

func InputLT(v []byte) predicate.InstanceRuntime

InputLT applies the LT predicate on the "input" field.

func InputLTE

func InputLTE(v []byte) predicate.InstanceRuntime

InputLTE applies the LTE predicate on the "input" field.

func InputNEQ

func InputNEQ(v []byte) predicate.InstanceRuntime

InputNEQ applies the NEQ predicate on the "input" field.

func InputNotIn

func InputNotIn(vs ...[]byte) predicate.InstanceRuntime

InputNotIn applies the NotIn predicate on the "input" field.

func InstanceContext

func InstanceContext(v string) predicate.InstanceRuntime

InstanceContext applies equality check predicate on the "instanceContext" field. It's identical to InstanceContextEQ.

func InstanceContextContains

func InstanceContextContains(v string) predicate.InstanceRuntime

InstanceContextContains applies the Contains predicate on the "instanceContext" field.

func InstanceContextContainsFold

func InstanceContextContainsFold(v string) predicate.InstanceRuntime

InstanceContextContainsFold applies the ContainsFold predicate on the "instanceContext" field.

func InstanceContextEQ

func InstanceContextEQ(v string) predicate.InstanceRuntime

InstanceContextEQ applies the EQ predicate on the "instanceContext" field.

func InstanceContextEqualFold

func InstanceContextEqualFold(v string) predicate.InstanceRuntime

InstanceContextEqualFold applies the EqualFold predicate on the "instanceContext" field.

func InstanceContextGT

func InstanceContextGT(v string) predicate.InstanceRuntime

InstanceContextGT applies the GT predicate on the "instanceContext" field.

func InstanceContextGTE

func InstanceContextGTE(v string) predicate.InstanceRuntime

InstanceContextGTE applies the GTE predicate on the "instanceContext" field.

func InstanceContextHasPrefix

func InstanceContextHasPrefix(v string) predicate.InstanceRuntime

InstanceContextHasPrefix applies the HasPrefix predicate on the "instanceContext" field.

func InstanceContextHasSuffix

func InstanceContextHasSuffix(v string) predicate.InstanceRuntime

InstanceContextHasSuffix applies the HasSuffix predicate on the "instanceContext" field.

func InstanceContextIn

func InstanceContextIn(vs ...string) predicate.InstanceRuntime

InstanceContextIn applies the In predicate on the "instanceContext" field.

func InstanceContextIsNil

func InstanceContextIsNil() predicate.InstanceRuntime

InstanceContextIsNil applies the IsNil predicate on the "instanceContext" field.

func InstanceContextLT

func InstanceContextLT(v string) predicate.InstanceRuntime

InstanceContextLT applies the LT predicate on the "instanceContext" field.

func InstanceContextLTE

func InstanceContextLTE(v string) predicate.InstanceRuntime

InstanceContextLTE applies the LTE predicate on the "instanceContext" field.

func InstanceContextNEQ

func InstanceContextNEQ(v string) predicate.InstanceRuntime

InstanceContextNEQ applies the NEQ predicate on the "instanceContext" field.

func InstanceContextNotIn

func InstanceContextNotIn(vs ...string) predicate.InstanceRuntime

InstanceContextNotIn applies the NotIn predicate on the "instanceContext" field.

func InstanceContextNotNil

func InstanceContextNotNil() predicate.InstanceRuntime

InstanceContextNotNil applies the NotNil predicate on the "instanceContext" field.

func Memory

Memory applies equality check predicate on the "memory" field. It's identical to MemoryEQ.

func MemoryContains

func MemoryContains(v string) predicate.InstanceRuntime

MemoryContains applies the Contains predicate on the "memory" field.

func MemoryContainsFold

func MemoryContainsFold(v string) predicate.InstanceRuntime

MemoryContainsFold applies the ContainsFold predicate on the "memory" field.

func MemoryEQ

func MemoryEQ(v string) predicate.InstanceRuntime

MemoryEQ applies the EQ predicate on the "memory" field.

func MemoryEqualFold

func MemoryEqualFold(v string) predicate.InstanceRuntime

MemoryEqualFold applies the EqualFold predicate on the "memory" field.

func MemoryGT

func MemoryGT(v string) predicate.InstanceRuntime

MemoryGT applies the GT predicate on the "memory" field.

func MemoryGTE

func MemoryGTE(v string) predicate.InstanceRuntime

MemoryGTE applies the GTE predicate on the "memory" field.

func MemoryHasPrefix

func MemoryHasPrefix(v string) predicate.InstanceRuntime

MemoryHasPrefix applies the HasPrefix predicate on the "memory" field.

func MemoryHasSuffix

func MemoryHasSuffix(v string) predicate.InstanceRuntime

MemoryHasSuffix applies the HasSuffix predicate on the "memory" field.

func MemoryIn

func MemoryIn(vs ...string) predicate.InstanceRuntime

MemoryIn applies the In predicate on the "memory" field.

func MemoryIsNil

func MemoryIsNil() predicate.InstanceRuntime

MemoryIsNil applies the IsNil predicate on the "memory" field.

func MemoryLT

func MemoryLT(v string) predicate.InstanceRuntime

MemoryLT applies the LT predicate on the "memory" field.

func MemoryLTE

func MemoryLTE(v string) predicate.InstanceRuntime

MemoryLTE applies the LTE predicate on the "memory" field.

func MemoryNEQ

func MemoryNEQ(v string) predicate.InstanceRuntime

MemoryNEQ applies the NEQ predicate on the "memory" field.

func MemoryNotIn

func MemoryNotIn(vs ...string) predicate.InstanceRuntime

MemoryNotIn applies the NotIn predicate on the "memory" field.

func MemoryNotNil

func MemoryNotNil() predicate.InstanceRuntime

MemoryNotNil applies the NotNil predicate on the "memory" field.

func Metadata added in v0.6.1

func Metadata(v string) predicate.InstanceRuntime

Metadata applies equality check predicate on the "metadata" field. It's identical to MetadataEQ.

func MetadataContains added in v0.6.1

func MetadataContains(v string) predicate.InstanceRuntime

MetadataContains applies the Contains predicate on the "metadata" field.

func MetadataContainsFold added in v0.6.1

func MetadataContainsFold(v string) predicate.InstanceRuntime

MetadataContainsFold applies the ContainsFold predicate on the "metadata" field.

func MetadataEQ added in v0.6.1

func MetadataEQ(v string) predicate.InstanceRuntime

MetadataEQ applies the EQ predicate on the "metadata" field.

func MetadataEqualFold added in v0.6.1

func MetadataEqualFold(v string) predicate.InstanceRuntime

MetadataEqualFold applies the EqualFold predicate on the "metadata" field.

func MetadataGT added in v0.6.1

func MetadataGT(v string) predicate.InstanceRuntime

MetadataGT applies the GT predicate on the "metadata" field.

func MetadataGTE added in v0.6.1

func MetadataGTE(v string) predicate.InstanceRuntime

MetadataGTE applies the GTE predicate on the "metadata" field.

func MetadataHasPrefix added in v0.6.1

func MetadataHasPrefix(v string) predicate.InstanceRuntime

MetadataHasPrefix applies the HasPrefix predicate on the "metadata" field.

func MetadataHasSuffix added in v0.6.1

func MetadataHasSuffix(v string) predicate.InstanceRuntime

MetadataHasSuffix applies the HasSuffix predicate on the "metadata" field.

func MetadataIn added in v0.6.1

func MetadataIn(vs ...string) predicate.InstanceRuntime

MetadataIn applies the In predicate on the "metadata" field.

func MetadataIsNil added in v0.6.1

func MetadataIsNil() predicate.InstanceRuntime

MetadataIsNil applies the IsNil predicate on the "metadata" field.

func MetadataLT added in v0.6.1

func MetadataLT(v string) predicate.InstanceRuntime

MetadataLT applies the LT predicate on the "metadata" field.

func MetadataLTE added in v0.6.1

func MetadataLTE(v string) predicate.InstanceRuntime

MetadataLTE applies the LTE predicate on the "metadata" field.

func MetadataNEQ added in v0.6.1

func MetadataNEQ(v string) predicate.InstanceRuntime

MetadataNEQ applies the NEQ predicate on the "metadata" field.

func MetadataNotIn added in v0.6.1

func MetadataNotIn(vs ...string) predicate.InstanceRuntime

MetadataNotIn applies the NotIn predicate on the "metadata" field.

func MetadataNotNil added in v0.6.1

func MetadataNotNil() predicate.InstanceRuntime

MetadataNotNil applies the NotNil predicate on the "metadata" field.

func Not

Not applies the not operator on the given predicate.

func Or

Or groups predicates with the OR operator between them.

func Output

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

func OutputContains

func OutputContains(v string) predicate.InstanceRuntime

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

func OutputContainsFold

func OutputContainsFold(v string) predicate.InstanceRuntime

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

func OutputEQ

func OutputEQ(v string) predicate.InstanceRuntime

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

func OutputEqualFold

func OutputEqualFold(v string) predicate.InstanceRuntime

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

func OutputGT

func OutputGT(v string) predicate.InstanceRuntime

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

func OutputGTE

func OutputGTE(v string) predicate.InstanceRuntime

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

func OutputHasPrefix

func OutputHasPrefix(v string) predicate.InstanceRuntime

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

func OutputHasSuffix

func OutputHasSuffix(v string) predicate.InstanceRuntime

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

func OutputIn

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

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

func OutputIsNil

func OutputIsNil() predicate.InstanceRuntime

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

func OutputLT

func OutputLT(v string) predicate.InstanceRuntime

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

func OutputLTE

func OutputLTE(v string) predicate.InstanceRuntime

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

func OutputNEQ

func OutputNEQ(v string) predicate.InstanceRuntime

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

func OutputNotIn

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

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

func OutputNotNil

func OutputNotNil() predicate.InstanceRuntime

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

func StateBeginTime

func StateBeginTime(v time.Time) predicate.InstanceRuntime

StateBeginTime applies equality check predicate on the "stateBeginTime" field. It's identical to StateBeginTimeEQ.

func StateBeginTimeEQ

func StateBeginTimeEQ(v time.Time) predicate.InstanceRuntime

StateBeginTimeEQ applies the EQ predicate on the "stateBeginTime" field.

func StateBeginTimeGT

func StateBeginTimeGT(v time.Time) predicate.InstanceRuntime

StateBeginTimeGT applies the GT predicate on the "stateBeginTime" field.

func StateBeginTimeGTE

func StateBeginTimeGTE(v time.Time) predicate.InstanceRuntime

StateBeginTimeGTE applies the GTE predicate on the "stateBeginTime" field.

func StateBeginTimeIn

func StateBeginTimeIn(vs ...time.Time) predicate.InstanceRuntime

StateBeginTimeIn applies the In predicate on the "stateBeginTime" field.

func StateBeginTimeIsNil

func StateBeginTimeIsNil() predicate.InstanceRuntime

StateBeginTimeIsNil applies the IsNil predicate on the "stateBeginTime" field.

func StateBeginTimeLT

func StateBeginTimeLT(v time.Time) predicate.InstanceRuntime

StateBeginTimeLT applies the LT predicate on the "stateBeginTime" field.

func StateBeginTimeLTE

func StateBeginTimeLTE(v time.Time) predicate.InstanceRuntime

StateBeginTimeLTE applies the LTE predicate on the "stateBeginTime" field.

func StateBeginTimeNEQ

func StateBeginTimeNEQ(v time.Time) predicate.InstanceRuntime

StateBeginTimeNEQ applies the NEQ predicate on the "stateBeginTime" field.

func StateBeginTimeNotIn

func StateBeginTimeNotIn(vs ...time.Time) predicate.InstanceRuntime

StateBeginTimeNotIn applies the NotIn predicate on the "stateBeginTime" field.

func StateBeginTimeNotNil

func StateBeginTimeNotNil() predicate.InstanceRuntime

StateBeginTimeNotNil applies the NotNil predicate on the "stateBeginTime" field.

func StateContext

func StateContext(v string) predicate.InstanceRuntime

StateContext applies equality check predicate on the "stateContext" field. It's identical to StateContextEQ.

func StateContextContains

func StateContextContains(v string) predicate.InstanceRuntime

StateContextContains applies the Contains predicate on the "stateContext" field.

func StateContextContainsFold

func StateContextContainsFold(v string) predicate.InstanceRuntime

StateContextContainsFold applies the ContainsFold predicate on the "stateContext" field.

func StateContextEQ

func StateContextEQ(v string) predicate.InstanceRuntime

StateContextEQ applies the EQ predicate on the "stateContext" field.

func StateContextEqualFold

func StateContextEqualFold(v string) predicate.InstanceRuntime

StateContextEqualFold applies the EqualFold predicate on the "stateContext" field.

func StateContextGT

func StateContextGT(v string) predicate.InstanceRuntime

StateContextGT applies the GT predicate on the "stateContext" field.

func StateContextGTE

func StateContextGTE(v string) predicate.InstanceRuntime

StateContextGTE applies the GTE predicate on the "stateContext" field.

func StateContextHasPrefix

func StateContextHasPrefix(v string) predicate.InstanceRuntime

StateContextHasPrefix applies the HasPrefix predicate on the "stateContext" field.

func StateContextHasSuffix

func StateContextHasSuffix(v string) predicate.InstanceRuntime

StateContextHasSuffix applies the HasSuffix predicate on the "stateContext" field.

func StateContextIn

func StateContextIn(vs ...string) predicate.InstanceRuntime

StateContextIn applies the In predicate on the "stateContext" field.

func StateContextIsNil

func StateContextIsNil() predicate.InstanceRuntime

StateContextIsNil applies the IsNil predicate on the "stateContext" field.

func StateContextLT

func StateContextLT(v string) predicate.InstanceRuntime

StateContextLT applies the LT predicate on the "stateContext" field.

func StateContextLTE

func StateContextLTE(v string) predicate.InstanceRuntime

StateContextLTE applies the LTE predicate on the "stateContext" field.

func StateContextNEQ

func StateContextNEQ(v string) predicate.InstanceRuntime

StateContextNEQ applies the NEQ predicate on the "stateContext" field.

func StateContextNotIn

func StateContextNotIn(vs ...string) predicate.InstanceRuntime

StateContextNotIn applies the NotIn predicate on the "stateContext" field.

func StateContextNotNil

func StateContextNotNil() predicate.InstanceRuntime

StateContextNotNil applies the NotNil predicate on the "stateContext" field.

func ValidColumn

func ValidColumn(column string) bool

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

Types

This section is empty.

Jump to

Keyboard shortcuts

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