Documentation ¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.Provider) predicate.Provider
- func CreatedAt(v time.Time) predicate.Provider
- func CreatedAtEQ(v time.Time) predicate.Provider
- func CreatedAtGT(v time.Time) predicate.Provider
- func CreatedAtGTE(v time.Time) predicate.Provider
- func CreatedAtIn(vs ...time.Time) predicate.Provider
- func CreatedAtLT(v time.Time) predicate.Provider
- func CreatedAtLTE(v time.Time) predicate.Provider
- func CreatedAtNEQ(v time.Time) predicate.Provider
- func CreatedAtNotIn(vs ...time.Time) predicate.Provider
- func HasLoadBalancers() predicate.Provider
- func HasLoadBalancersWith(preds ...predicate.LoadBalancer) predicate.Provider
- func ID(id gidx.PrefixedID) predicate.Provider
- func IDEQ(id gidx.PrefixedID) predicate.Provider
- func IDGT(id gidx.PrefixedID) predicate.Provider
- func IDGTE(id gidx.PrefixedID) predicate.Provider
- func IDIn(ids ...gidx.PrefixedID) predicate.Provider
- func IDLT(id gidx.PrefixedID) predicate.Provider
- func IDLTE(id gidx.PrefixedID) predicate.Provider
- func IDNEQ(id gidx.PrefixedID) predicate.Provider
- func IDNotIn(ids ...gidx.PrefixedID) predicate.Provider
- func Name(v string) predicate.Provider
- func NameContains(v string) predicate.Provider
- func NameContainsFold(v string) predicate.Provider
- func NameEQ(v string) predicate.Provider
- func NameEqualFold(v string) predicate.Provider
- func NameGT(v string) predicate.Provider
- func NameGTE(v string) predicate.Provider
- func NameHasPrefix(v string) predicate.Provider
- func NameHasSuffix(v string) predicate.Provider
- func NameIn(vs ...string) predicate.Provider
- func NameLT(v string) predicate.Provider
- func NameLTE(v string) predicate.Provider
- func NameNEQ(v string) predicate.Provider
- func NameNotIn(vs ...string) predicate.Provider
- func Not(p predicate.Provider) predicate.Provider
- func Or(predicates ...predicate.Provider) predicate.Provider
- func OwnerID(v gidx.PrefixedID) predicate.Provider
- func OwnerIDContains(v gidx.PrefixedID) predicate.Provider
- func OwnerIDContainsFold(v gidx.PrefixedID) predicate.Provider
- func OwnerIDEQ(v gidx.PrefixedID) predicate.Provider
- func OwnerIDEqualFold(v gidx.PrefixedID) predicate.Provider
- func OwnerIDGT(v gidx.PrefixedID) predicate.Provider
- func OwnerIDGTE(v gidx.PrefixedID) predicate.Provider
- func OwnerIDHasPrefix(v gidx.PrefixedID) predicate.Provider
- func OwnerIDHasSuffix(v gidx.PrefixedID) predicate.Provider
- func OwnerIDIn(vs ...gidx.PrefixedID) predicate.Provider
- func OwnerIDLT(v gidx.PrefixedID) predicate.Provider
- func OwnerIDLTE(v gidx.PrefixedID) predicate.Provider
- func OwnerIDNEQ(v gidx.PrefixedID) predicate.Provider
- func OwnerIDNotIn(vs ...gidx.PrefixedID) predicate.Provider
- func UpdatedAt(v time.Time) predicate.Provider
- func UpdatedAtEQ(v time.Time) predicate.Provider
- func UpdatedAtGT(v time.Time) predicate.Provider
- func UpdatedAtGTE(v time.Time) predicate.Provider
- func UpdatedAtIn(vs ...time.Time) predicate.Provider
- func UpdatedAtLT(v time.Time) predicate.Provider
- func UpdatedAtLTE(v time.Time) predicate.Provider
- func UpdatedAtNEQ(v time.Time) predicate.Provider
- func UpdatedAtNotIn(vs ...time.Time) predicate.Provider
- func ValidColumn(column string) bool
- type OrderOption
- func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption
- func ByID(opts ...sql.OrderTermOption) OrderOption
- func ByLoadBalancers(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption
- func ByLoadBalancersCount(opts ...sql.OrderTermOption) OrderOption
- func ByName(opts ...sql.OrderTermOption) OrderOption
- func ByOwnerID(opts ...sql.OrderTermOption) OrderOption
- func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption
Constants ¶
const ( // Label holds the string label denoting the provider type in the database. Label = "provider" // 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" // FieldUpdatedAt holds the string denoting the updated_at field in the database. FieldUpdatedAt = "updated_at" // FieldName holds the string denoting the name field in the database. FieldName = "name" // FieldOwnerID holds the string denoting the owner_id field in the database. FieldOwnerID = "owner_id" // EdgeLoadBalancers holds the string denoting the load_balancers edge name in mutations. EdgeLoadBalancers = "load_balancers" // Table holds the table name of the provider in the database. Table = "providers" // LoadBalancersTable is the table that holds the load_balancers relation/edge. LoadBalancersTable = "load_balancers" // LoadBalancersInverseTable is the table name for the LoadBalancer entity. // It exists in this package in order to avoid circular dependency with the "loadbalancer" package. LoadBalancersInverseTable = "load_balancers" // LoadBalancersColumn is the table column denoting the load_balancers relation/edge. LoadBalancersColumn = "provider_id" )
Variables ¶
var ( // DefaultCreatedAt holds the default value on creation for the "created_at" field. DefaultCreatedAt func() time.Time // DefaultUpdatedAt holds the default value on creation for the "updated_at" field. DefaultUpdatedAt func() time.Time // UpdateDefaultUpdatedAt holds the default value on update for the "updated_at" field. UpdateDefaultUpdatedAt func() time.Time // NameValidator is a validator for the "name" field. It is called by the builders before save. NameValidator func(string) error // OwnerIDValidator is a validator for the "owner_id" field. It is called by the builders before save. OwnerIDValidator func(string) error // DefaultID holds the default value on creation for the "id" field. DefaultID func() gidx.PrefixedID )
var Columns = []string{ FieldID, FieldCreatedAt, FieldUpdatedAt, FieldName, FieldOwnerID, }
Columns holds all SQL columns for provider fields.
Functions ¶
func CreatedAt ¶
CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.
func CreatedAtEQ ¶
CreatedAtEQ applies the EQ predicate on the "created_at" field.
func CreatedAtGT ¶
CreatedAtGT applies the GT predicate on the "created_at" field.
func CreatedAtGTE ¶
CreatedAtGTE applies the GTE predicate on the "created_at" field.
func CreatedAtIn ¶
CreatedAtIn applies the In predicate on the "created_at" field.
func CreatedAtLT ¶
CreatedAtLT applies the LT predicate on the "created_at" field.
func CreatedAtLTE ¶
CreatedAtLTE applies the LTE predicate on the "created_at" field.
func CreatedAtNEQ ¶
CreatedAtNEQ applies the NEQ predicate on the "created_at" field.
func CreatedAtNotIn ¶
CreatedAtNotIn applies the NotIn predicate on the "created_at" field.
func HasLoadBalancers ¶
HasLoadBalancers applies the HasEdge predicate on the "load_balancers" edge.
func HasLoadBalancersWith ¶
func HasLoadBalancersWith(preds ...predicate.LoadBalancer) predicate.Provider
HasLoadBalancersWith applies the HasEdge predicate on the "load_balancers" edge with a given conditions (other predicates).
func ID ¶
func ID(id gidx.PrefixedID) predicate.Provider
ID filters vertices based on their ID field.
func IDEQ ¶
func IDEQ(id gidx.PrefixedID) predicate.Provider
IDEQ applies the EQ predicate on the ID field.
func IDGT ¶
func IDGT(id gidx.PrefixedID) predicate.Provider
IDGT applies the GT predicate on the ID field.
func IDGTE ¶
func IDGTE(id gidx.PrefixedID) predicate.Provider
IDGTE applies the GTE predicate on the ID field.
func IDIn ¶
func IDIn(ids ...gidx.PrefixedID) predicate.Provider
IDIn applies the In predicate on the ID field.
func IDLT ¶
func IDLT(id gidx.PrefixedID) predicate.Provider
IDLT applies the LT predicate on the ID field.
func IDLTE ¶
func IDLTE(id gidx.PrefixedID) predicate.Provider
IDLTE applies the LTE predicate on the ID field.
func IDNEQ ¶
func IDNEQ(id gidx.PrefixedID) predicate.Provider
IDNEQ applies the NEQ predicate on the ID field.
func IDNotIn ¶
func IDNotIn(ids ...gidx.PrefixedID) predicate.Provider
IDNotIn applies the NotIn predicate on the ID field.
func NameContains ¶
NameContains applies the Contains predicate on the "name" field.
func NameContainsFold ¶
NameContainsFold applies the ContainsFold predicate on the "name" field.
func NameEqualFold ¶
NameEqualFold applies the EqualFold predicate on the "name" field.
func NameHasPrefix ¶
NameHasPrefix applies the HasPrefix predicate on the "name" field.
func NameHasSuffix ¶
NameHasSuffix applies the HasSuffix predicate on the "name" field.
func OwnerID ¶ added in v0.0.18
func OwnerID(v gidx.PrefixedID) predicate.Provider
OwnerID applies equality check predicate on the "owner_id" field. It's identical to OwnerIDEQ.
func OwnerIDContains ¶ added in v0.0.18
func OwnerIDContains(v gidx.PrefixedID) predicate.Provider
OwnerIDContains applies the Contains predicate on the "owner_id" field.
func OwnerIDContainsFold ¶ added in v0.0.18
func OwnerIDContainsFold(v gidx.PrefixedID) predicate.Provider
OwnerIDContainsFold applies the ContainsFold predicate on the "owner_id" field.
func OwnerIDEQ ¶ added in v0.0.18
func OwnerIDEQ(v gidx.PrefixedID) predicate.Provider
OwnerIDEQ applies the EQ predicate on the "owner_id" field.
func OwnerIDEqualFold ¶ added in v0.0.18
func OwnerIDEqualFold(v gidx.PrefixedID) predicate.Provider
OwnerIDEqualFold applies the EqualFold predicate on the "owner_id" field.
func OwnerIDGT ¶ added in v0.0.18
func OwnerIDGT(v gidx.PrefixedID) predicate.Provider
OwnerIDGT applies the GT predicate on the "owner_id" field.
func OwnerIDGTE ¶ added in v0.0.18
func OwnerIDGTE(v gidx.PrefixedID) predicate.Provider
OwnerIDGTE applies the GTE predicate on the "owner_id" field.
func OwnerIDHasPrefix ¶ added in v0.0.18
func OwnerIDHasPrefix(v gidx.PrefixedID) predicate.Provider
OwnerIDHasPrefix applies the HasPrefix predicate on the "owner_id" field.
func OwnerIDHasSuffix ¶ added in v0.0.18
func OwnerIDHasSuffix(v gidx.PrefixedID) predicate.Provider
OwnerIDHasSuffix applies the HasSuffix predicate on the "owner_id" field.
func OwnerIDIn ¶ added in v0.0.18
func OwnerIDIn(vs ...gidx.PrefixedID) predicate.Provider
OwnerIDIn applies the In predicate on the "owner_id" field.
func OwnerIDLT ¶ added in v0.0.18
func OwnerIDLT(v gidx.PrefixedID) predicate.Provider
OwnerIDLT applies the LT predicate on the "owner_id" field.
func OwnerIDLTE ¶ added in v0.0.18
func OwnerIDLTE(v gidx.PrefixedID) predicate.Provider
OwnerIDLTE applies the LTE predicate on the "owner_id" field.
func OwnerIDNEQ ¶ added in v0.0.18
func OwnerIDNEQ(v gidx.PrefixedID) predicate.Provider
OwnerIDNEQ applies the NEQ predicate on the "owner_id" field.
func OwnerIDNotIn ¶ added in v0.0.18
func OwnerIDNotIn(vs ...gidx.PrefixedID) predicate.Provider
OwnerIDNotIn applies the NotIn predicate on the "owner_id" field.
func UpdatedAt ¶
UpdatedAt applies equality check predicate on the "updated_at" field. It's identical to UpdatedAtEQ.
func UpdatedAtEQ ¶
UpdatedAtEQ applies the EQ predicate on the "updated_at" field.
func UpdatedAtGT ¶
UpdatedAtGT applies the GT predicate on the "updated_at" field.
func UpdatedAtGTE ¶
UpdatedAtGTE applies the GTE predicate on the "updated_at" field.
func UpdatedAtIn ¶
UpdatedAtIn applies the In predicate on the "updated_at" field.
func UpdatedAtLT ¶
UpdatedAtLT applies the LT predicate on the "updated_at" field.
func UpdatedAtLTE ¶
UpdatedAtLTE applies the LTE predicate on the "updated_at" field.
func UpdatedAtNEQ ¶
UpdatedAtNEQ applies the NEQ predicate on the "updated_at" field.
func UpdatedAtNotIn ¶
UpdatedAtNotIn applies the NotIn predicate on the "updated_at" field.
func ValidColumn ¶
ValidColumn reports if the column name is valid (part of the table columns).
Types ¶
type OrderOption ¶
OrderOption defines the ordering options for the Provider queries.
func ByCreatedAt ¶
func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption
ByCreatedAt orders the results by the created_at field.
func ByID ¶
func ByID(opts ...sql.OrderTermOption) OrderOption
ByID orders the results by the id field.
func ByLoadBalancers ¶
func ByLoadBalancers(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption
ByLoadBalancers orders the results by load_balancers terms.
func ByLoadBalancersCount ¶
func ByLoadBalancersCount(opts ...sql.OrderTermOption) OrderOption
ByLoadBalancersCount orders the results by load_balancers count.
func ByName ¶
func ByName(opts ...sql.OrderTermOption) OrderOption
ByName orders the results by the name field.
func ByOwnerID ¶ added in v0.0.18
func ByOwnerID(opts ...sql.OrderTermOption) OrderOption
ByOwnerID orders the results by the owner_id field.
func ByUpdatedAt ¶
func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption
ByUpdatedAt orders the results by the updated_at field.