Documentation
¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.AuroraHealthCheck) predicate.AuroraHealthCheck
- func ID(id int) predicate.AuroraHealthCheck
- func IDEQ(id int) predicate.AuroraHealthCheck
- func IDGT(id int) predicate.AuroraHealthCheck
- func IDGTE(id int) predicate.AuroraHealthCheck
- func IDIn(ids ...int) predicate.AuroraHealthCheck
- func IDLT(id int) predicate.AuroraHealthCheck
- func IDLTE(id int) predicate.AuroraHealthCheck
- func IDNEQ(id int) predicate.AuroraHealthCheck
- func IDNotIn(ids ...int) predicate.AuroraHealthCheck
- func Not(p predicate.AuroraHealthCheck) predicate.AuroraHealthCheck
- func Or(predicates ...predicate.AuroraHealthCheck) predicate.AuroraHealthCheck
- func Ts(v time.Time) predicate.AuroraHealthCheck
- func TsEQ(v time.Time) predicate.AuroraHealthCheck
- func TsGT(v time.Time) predicate.AuroraHealthCheck
- func TsGTE(v time.Time) predicate.AuroraHealthCheck
- func TsIn(vs ...time.Time) predicate.AuroraHealthCheck
- func TsLT(v time.Time) predicate.AuroraHealthCheck
- func TsLTE(v time.Time) predicate.AuroraHealthCheck
- func TsNEQ(v time.Time) predicate.AuroraHealthCheck
- func TsNotIn(vs ...time.Time) predicate.AuroraHealthCheck
- func ValidColumn(column string) bool
Constants ¶
const ( // Label holds the string label denoting the aurorahealthcheck type in the database. Label = "aurora_health_check" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldTs holds the string denoting the ts field in the database. FieldTs = "ts" // Table holds the table name of the aurorahealthcheck in the database. Table = "aurora_health_check" )
Variables ¶
var Columns = []string{ FieldID, FieldTs, }
Columns holds all SQL columns for aurorahealthcheck fields.
var ( // DefaultTs holds the default value on creation for the "ts" field. DefaultTs func() time.Time )
Functions ¶
func And ¶
func And(predicates ...predicate.AuroraHealthCheck) predicate.AuroraHealthCheck
And groups predicates with the AND operator between them.
func IDEQ ¶
func IDEQ(id int) predicate.AuroraHealthCheck
IDEQ applies the EQ predicate on the ID field.
func IDGT ¶
func IDGT(id int) predicate.AuroraHealthCheck
IDGT applies the GT predicate on the ID field.
func IDGTE ¶
func IDGTE(id int) predicate.AuroraHealthCheck
IDGTE applies the GTE predicate on the ID field.
func IDIn ¶
func IDIn(ids ...int) predicate.AuroraHealthCheck
IDIn applies the In predicate on the ID field.
func IDLT ¶
func IDLT(id int) predicate.AuroraHealthCheck
IDLT applies the LT predicate on the ID field.
func IDLTE ¶
func IDLTE(id int) predicate.AuroraHealthCheck
IDLTE applies the LTE predicate on the ID field.
func IDNEQ ¶
func IDNEQ(id int) predicate.AuroraHealthCheck
IDNEQ applies the NEQ predicate on the ID field.
func IDNotIn ¶
func IDNotIn(ids ...int) predicate.AuroraHealthCheck
IDNotIn applies the NotIn predicate on the ID field.
func Not ¶
func Not(p predicate.AuroraHealthCheck) predicate.AuroraHealthCheck
Not applies the not operator on the given predicate.
func Or ¶
func Or(predicates ...predicate.AuroraHealthCheck) predicate.AuroraHealthCheck
Or groups predicates with the OR operator between them.
func Ts ¶
func Ts(v time.Time) predicate.AuroraHealthCheck
Ts applies equality check predicate on the "ts" field. It's identical to TsEQ.
func TsEQ ¶
func TsEQ(v time.Time) predicate.AuroraHealthCheck
TsEQ applies the EQ predicate on the "ts" field.
func TsGT ¶
func TsGT(v time.Time) predicate.AuroraHealthCheck
TsGT applies the GT predicate on the "ts" field.
func TsGTE ¶
func TsGTE(v time.Time) predicate.AuroraHealthCheck
TsGTE applies the GTE predicate on the "ts" field.
func TsIn ¶
func TsIn(vs ...time.Time) predicate.AuroraHealthCheck
TsIn applies the In predicate on the "ts" field.
func TsLT ¶
func TsLT(v time.Time) predicate.AuroraHealthCheck
TsLT applies the LT predicate on the "ts" field.
func TsLTE ¶
func TsLTE(v time.Time) predicate.AuroraHealthCheck
TsLTE applies the LTE predicate on the "ts" field.
func TsNEQ ¶
func TsNEQ(v time.Time) predicate.AuroraHealthCheck
TsNEQ applies the NEQ predicate on the "ts" field.
func TsNotIn ¶
func TsNotIn(vs ...time.Time) predicate.AuroraHealthCheck
TsNotIn applies the NotIn predicate on the "ts" field.
func ValidColumn ¶
ValidColumn reports if the column name is valid (part of the table columns).
Types ¶
This section is empty.