port

package
v0.3.1 Latest Latest
Warning

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

Go to latest
Published: May 30, 2024 License: Apache-2.0 Imports: 6 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the port type in the database.
	Label = "port"
	// 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"
	// FieldDeletedAt holds the string denoting the deleted_at field in the database.
	FieldDeletedAt = "deleted_at"
	// FieldDeletedBy holds the string denoting the deleted_by field in the database.
	FieldDeletedBy = "deleted_by"
	// FieldCreatedBy holds the string denoting the created_by field in the database.
	FieldCreatedBy = "created_by"
	// FieldUpdatedBy holds the string denoting the updated_by field in the database.
	FieldUpdatedBy = "updated_by"
	// FieldNumber holds the string denoting the number field in the database.
	FieldNumber = "number"
	// FieldName holds the string denoting the name field in the database.
	FieldName = "name"
	// FieldLoadBalancerID holds the string denoting the load_balancer_id field in the database.
	FieldLoadBalancerID = "load_balancer_id"
	// EdgePools holds the string denoting the pools edge name in mutations.
	EdgePools = "pools"
	// EdgeLoadBalancer holds the string denoting the load_balancer edge name in mutations.
	EdgeLoadBalancer = "load_balancer"
	// Table holds the table name of the port in the database.
	Table = "ports"
	// PoolsTable is the table that holds the pools relation/edge. The primary key declared below.
	PoolsTable = "pool_ports"
	// PoolsInverseTable is the table name for the Pool entity.
	// It exists in this package in order to avoid circular dependency with the "pool" package.
	PoolsInverseTable = "pools"
	// LoadBalancerTable is the table that holds the load_balancer relation/edge.
	LoadBalancerTable = "ports"
	// LoadBalancerInverseTable is the table name for the LoadBalancer entity.
	// It exists in this package in order to avoid circular dependency with the "loadbalancer" package.
	LoadBalancerInverseTable = "load_balancers"
	// LoadBalancerColumn is the table column denoting the load_balancer relation/edge.
	LoadBalancerColumn = "load_balancer_id"
)

Variables

View Source
var (
	Hooks        [2]ent.Hook
	Interceptors [1]ent.Interceptor
	// 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
	// NumberValidator is a validator for the "number" field. It is called by the builders before save.
	NumberValidator func(int) error
	// LoadBalancerIDValidator is a validator for the "load_balancer_id" field. It is called by the builders before save.
	LoadBalancerIDValidator func(string) error
	// DefaultID holds the default value on creation for the "id" field.
	DefaultID func() gidx.PrefixedID
)

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 _ "go.infratographer.com/load-balancer-api/internal/ent/generated/runtime"

Columns holds all SQL columns for port fields.

View Source
var (
	// PoolsPrimaryKey and PoolsColumn2 are the table columns denoting the
	// primary key for the pools relation (M2M).
	PoolsPrimaryKey = []string{"pool_id", "port_id"}
)

Functions

func And

func And(predicates ...predicate.Port) predicate.Port

And groups predicates with the AND operator between them.

func CreatedAt

func CreatedAt(v time.Time) predicate.Port

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.Port

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.Port

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.Port

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

func CreatedAtIn

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

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.Port

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.Port

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.Port

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

func CreatedAtNotIn

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

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

func CreatedBy added in v0.2.0

func CreatedBy(v string) predicate.Port

CreatedBy applies equality check predicate on the "created_by" field. It's identical to CreatedByEQ.

func CreatedByContains added in v0.2.0

func CreatedByContains(v string) predicate.Port

CreatedByContains applies the Contains predicate on the "created_by" field.

func CreatedByContainsFold added in v0.2.0

func CreatedByContainsFold(v string) predicate.Port

CreatedByContainsFold applies the ContainsFold predicate on the "created_by" field.

func CreatedByEQ added in v0.2.0

func CreatedByEQ(v string) predicate.Port

CreatedByEQ applies the EQ predicate on the "created_by" field.

func CreatedByEqualFold added in v0.2.0

func CreatedByEqualFold(v string) predicate.Port

CreatedByEqualFold applies the EqualFold predicate on the "created_by" field.

func CreatedByGT added in v0.2.0

func CreatedByGT(v string) predicate.Port

CreatedByGT applies the GT predicate on the "created_by" field.

func CreatedByGTE added in v0.2.0

func CreatedByGTE(v string) predicate.Port

CreatedByGTE applies the GTE predicate on the "created_by" field.

func CreatedByHasPrefix added in v0.2.0

func CreatedByHasPrefix(v string) predicate.Port

CreatedByHasPrefix applies the HasPrefix predicate on the "created_by" field.

func CreatedByHasSuffix added in v0.2.0

func CreatedByHasSuffix(v string) predicate.Port

CreatedByHasSuffix applies the HasSuffix predicate on the "created_by" field.

func CreatedByIn added in v0.2.0

func CreatedByIn(vs ...string) predicate.Port

CreatedByIn applies the In predicate on the "created_by" field.

func CreatedByIsNil added in v0.2.0

func CreatedByIsNil() predicate.Port

CreatedByIsNil applies the IsNil predicate on the "created_by" field.

func CreatedByLT added in v0.2.0

func CreatedByLT(v string) predicate.Port

CreatedByLT applies the LT predicate on the "created_by" field.

func CreatedByLTE added in v0.2.0

func CreatedByLTE(v string) predicate.Port

CreatedByLTE applies the LTE predicate on the "created_by" field.

func CreatedByNEQ added in v0.2.0

func CreatedByNEQ(v string) predicate.Port

CreatedByNEQ applies the NEQ predicate on the "created_by" field.

func CreatedByNotIn added in v0.2.0

func CreatedByNotIn(vs ...string) predicate.Port

CreatedByNotIn applies the NotIn predicate on the "created_by" field.

func CreatedByNotNil added in v0.2.0

func CreatedByNotNil() predicate.Port

CreatedByNotNil applies the NotNil predicate on the "created_by" field.

func DeletedAt added in v0.2.0

func DeletedAt(v time.Time) predicate.Port

DeletedAt applies equality check predicate on the "deleted_at" field. It's identical to DeletedAtEQ.

func DeletedAtEQ added in v0.2.0

func DeletedAtEQ(v time.Time) predicate.Port

DeletedAtEQ applies the EQ predicate on the "deleted_at" field.

func DeletedAtGT added in v0.2.0

func DeletedAtGT(v time.Time) predicate.Port

DeletedAtGT applies the GT predicate on the "deleted_at" field.

func DeletedAtGTE added in v0.2.0

func DeletedAtGTE(v time.Time) predicate.Port

DeletedAtGTE applies the GTE predicate on the "deleted_at" field.

func DeletedAtIn added in v0.2.0

func DeletedAtIn(vs ...time.Time) predicate.Port

DeletedAtIn applies the In predicate on the "deleted_at" field.

func DeletedAtIsNil added in v0.2.0

func DeletedAtIsNil() predicate.Port

DeletedAtIsNil applies the IsNil predicate on the "deleted_at" field.

func DeletedAtLT added in v0.2.0

func DeletedAtLT(v time.Time) predicate.Port

DeletedAtLT applies the LT predicate on the "deleted_at" field.

func DeletedAtLTE added in v0.2.0

func DeletedAtLTE(v time.Time) predicate.Port

DeletedAtLTE applies the LTE predicate on the "deleted_at" field.

func DeletedAtNEQ added in v0.2.0

func DeletedAtNEQ(v time.Time) predicate.Port

DeletedAtNEQ applies the NEQ predicate on the "deleted_at" field.

func DeletedAtNotIn added in v0.2.0

func DeletedAtNotIn(vs ...time.Time) predicate.Port

DeletedAtNotIn applies the NotIn predicate on the "deleted_at" field.

func DeletedAtNotNil added in v0.2.0

func DeletedAtNotNil() predicate.Port

DeletedAtNotNil applies the NotNil predicate on the "deleted_at" field.

func DeletedBy added in v0.2.0

func DeletedBy(v string) predicate.Port

DeletedBy applies equality check predicate on the "deleted_by" field. It's identical to DeletedByEQ.

func DeletedByContains added in v0.2.0

func DeletedByContains(v string) predicate.Port

DeletedByContains applies the Contains predicate on the "deleted_by" field.

func DeletedByContainsFold added in v0.2.0

func DeletedByContainsFold(v string) predicate.Port

DeletedByContainsFold applies the ContainsFold predicate on the "deleted_by" field.

func DeletedByEQ added in v0.2.0

func DeletedByEQ(v string) predicate.Port

DeletedByEQ applies the EQ predicate on the "deleted_by" field.

func DeletedByEqualFold added in v0.2.0

func DeletedByEqualFold(v string) predicate.Port

DeletedByEqualFold applies the EqualFold predicate on the "deleted_by" field.

func DeletedByGT added in v0.2.0

func DeletedByGT(v string) predicate.Port

DeletedByGT applies the GT predicate on the "deleted_by" field.

func DeletedByGTE added in v0.2.0

func DeletedByGTE(v string) predicate.Port

DeletedByGTE applies the GTE predicate on the "deleted_by" field.

func DeletedByHasPrefix added in v0.2.0

func DeletedByHasPrefix(v string) predicate.Port

DeletedByHasPrefix applies the HasPrefix predicate on the "deleted_by" field.

func DeletedByHasSuffix added in v0.2.0

func DeletedByHasSuffix(v string) predicate.Port

DeletedByHasSuffix applies the HasSuffix predicate on the "deleted_by" field.

func DeletedByIn added in v0.2.0

func DeletedByIn(vs ...string) predicate.Port

DeletedByIn applies the In predicate on the "deleted_by" field.

func DeletedByIsNil added in v0.2.0

func DeletedByIsNil() predicate.Port

DeletedByIsNil applies the IsNil predicate on the "deleted_by" field.

func DeletedByLT added in v0.2.0

func DeletedByLT(v string) predicate.Port

DeletedByLT applies the LT predicate on the "deleted_by" field.

func DeletedByLTE added in v0.2.0

func DeletedByLTE(v string) predicate.Port

DeletedByLTE applies the LTE predicate on the "deleted_by" field.

func DeletedByNEQ added in v0.2.0

func DeletedByNEQ(v string) predicate.Port

DeletedByNEQ applies the NEQ predicate on the "deleted_by" field.

func DeletedByNotIn added in v0.2.0

func DeletedByNotIn(vs ...string) predicate.Port

DeletedByNotIn applies the NotIn predicate on the "deleted_by" field.

func DeletedByNotNil added in v0.2.0

func DeletedByNotNil() predicate.Port

DeletedByNotNil applies the NotNil predicate on the "deleted_by" field.

func HasLoadBalancer

func HasLoadBalancer() predicate.Port

HasLoadBalancer applies the HasEdge predicate on the "load_balancer" edge.

func HasLoadBalancerWith

func HasLoadBalancerWith(preds ...predicate.LoadBalancer) predicate.Port

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

func HasPools

func HasPools() predicate.Port

HasPools applies the HasEdge predicate on the "pools" edge.

func HasPoolsWith

func HasPoolsWith(preds ...predicate.Pool) predicate.Port

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

func ID

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id gidx.PrefixedID) predicate.Port

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id gidx.PrefixedID) predicate.Port

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id gidx.PrefixedID) predicate.Port

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...gidx.PrefixedID) predicate.Port

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id gidx.PrefixedID) predicate.Port

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id gidx.PrefixedID) predicate.Port

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id gidx.PrefixedID) predicate.Port

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...gidx.PrefixedID) predicate.Port

IDNotIn applies the NotIn predicate on the ID field.

func LoadBalancerID

func LoadBalancerID(v gidx.PrefixedID) predicate.Port

LoadBalancerID applies equality check predicate on the "load_balancer_id" field. It's identical to LoadBalancerIDEQ.

func LoadBalancerIDContains

func LoadBalancerIDContains(v gidx.PrefixedID) predicate.Port

LoadBalancerIDContains applies the Contains predicate on the "load_balancer_id" field.

func LoadBalancerIDContainsFold

func LoadBalancerIDContainsFold(v gidx.PrefixedID) predicate.Port

LoadBalancerIDContainsFold applies the ContainsFold predicate on the "load_balancer_id" field.

func LoadBalancerIDEQ

func LoadBalancerIDEQ(v gidx.PrefixedID) predicate.Port

LoadBalancerIDEQ applies the EQ predicate on the "load_balancer_id" field.

func LoadBalancerIDEqualFold

func LoadBalancerIDEqualFold(v gidx.PrefixedID) predicate.Port

LoadBalancerIDEqualFold applies the EqualFold predicate on the "load_balancer_id" field.

func LoadBalancerIDGT

func LoadBalancerIDGT(v gidx.PrefixedID) predicate.Port

LoadBalancerIDGT applies the GT predicate on the "load_balancer_id" field.

func LoadBalancerIDGTE

func LoadBalancerIDGTE(v gidx.PrefixedID) predicate.Port

LoadBalancerIDGTE applies the GTE predicate on the "load_balancer_id" field.

func LoadBalancerIDHasPrefix

func LoadBalancerIDHasPrefix(v gidx.PrefixedID) predicate.Port

LoadBalancerIDHasPrefix applies the HasPrefix predicate on the "load_balancer_id" field.

func LoadBalancerIDHasSuffix

func LoadBalancerIDHasSuffix(v gidx.PrefixedID) predicate.Port

LoadBalancerIDHasSuffix applies the HasSuffix predicate on the "load_balancer_id" field.

func LoadBalancerIDIn

func LoadBalancerIDIn(vs ...gidx.PrefixedID) predicate.Port

LoadBalancerIDIn applies the In predicate on the "load_balancer_id" field.

func LoadBalancerIDLT

func LoadBalancerIDLT(v gidx.PrefixedID) predicate.Port

LoadBalancerIDLT applies the LT predicate on the "load_balancer_id" field.

func LoadBalancerIDLTE

func LoadBalancerIDLTE(v gidx.PrefixedID) predicate.Port

LoadBalancerIDLTE applies the LTE predicate on the "load_balancer_id" field.

func LoadBalancerIDNEQ

func LoadBalancerIDNEQ(v gidx.PrefixedID) predicate.Port

LoadBalancerIDNEQ applies the NEQ predicate on the "load_balancer_id" field.

func LoadBalancerIDNotIn

func LoadBalancerIDNotIn(vs ...gidx.PrefixedID) predicate.Port

LoadBalancerIDNotIn applies the NotIn predicate on the "load_balancer_id" field.

func Name

func Name(v string) predicate.Port

Name applies equality check predicate on the "name" field. It's identical to NameEQ.

func NameContains

func NameContains(v string) predicate.Port

NameContains applies the Contains predicate on the "name" field.

func NameContainsFold

func NameContainsFold(v string) predicate.Port

NameContainsFold applies the ContainsFold predicate on the "name" field.

func NameEQ

func NameEQ(v string) predicate.Port

NameEQ applies the EQ predicate on the "name" field.

func NameEqualFold

func NameEqualFold(v string) predicate.Port

NameEqualFold applies the EqualFold predicate on the "name" field.

func NameGT

func NameGT(v string) predicate.Port

NameGT applies the GT predicate on the "name" field.

func NameGTE

func NameGTE(v string) predicate.Port

NameGTE applies the GTE predicate on the "name" field.

func NameHasPrefix

func NameHasPrefix(v string) predicate.Port

NameHasPrefix applies the HasPrefix predicate on the "name" field.

func NameHasSuffix

func NameHasSuffix(v string) predicate.Port

NameHasSuffix applies the HasSuffix predicate on the "name" field.

func NameIn

func NameIn(vs ...string) predicate.Port

NameIn applies the In predicate on the "name" field.

func NameIsNil added in v0.2.1

func NameIsNil() predicate.Port

NameIsNil applies the IsNil predicate on the "name" field.

func NameLT

func NameLT(v string) predicate.Port

NameLT applies the LT predicate on the "name" field.

func NameLTE

func NameLTE(v string) predicate.Port

NameLTE applies the LTE predicate on the "name" field.

func NameNEQ

func NameNEQ(v string) predicate.Port

NameNEQ applies the NEQ predicate on the "name" field.

func NameNotIn

func NameNotIn(vs ...string) predicate.Port

NameNotIn applies the NotIn predicate on the "name" field.

func NameNotNil added in v0.2.1

func NameNotNil() predicate.Port

NameNotNil applies the NotNil predicate on the "name" field.

func Not

Not applies the not operator on the given predicate.

func Number

func Number(v int) predicate.Port

Number applies equality check predicate on the "number" field. It's identical to NumberEQ.

func NumberEQ

func NumberEQ(v int) predicate.Port

NumberEQ applies the EQ predicate on the "number" field.

func NumberGT

func NumberGT(v int) predicate.Port

NumberGT applies the GT predicate on the "number" field.

func NumberGTE

func NumberGTE(v int) predicate.Port

NumberGTE applies the GTE predicate on the "number" field.

func NumberIn

func NumberIn(vs ...int) predicate.Port

NumberIn applies the In predicate on the "number" field.

func NumberLT

func NumberLT(v int) predicate.Port

NumberLT applies the LT predicate on the "number" field.

func NumberLTE

func NumberLTE(v int) predicate.Port

NumberLTE applies the LTE predicate on the "number" field.

func NumberNEQ

func NumberNEQ(v int) predicate.Port

NumberNEQ applies the NEQ predicate on the "number" field.

func NumberNotIn

func NumberNotIn(vs ...int) predicate.Port

NumberNotIn applies the NotIn predicate on the "number" field.

func Or

func Or(predicates ...predicate.Port) predicate.Port

Or groups predicates with the OR operator between them.

func UpdatedAt

func UpdatedAt(v time.Time) predicate.Port

UpdatedAt applies equality check predicate on the "updated_at" field. It's identical to UpdatedAtEQ.

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.Port

UpdatedAtEQ applies the EQ predicate on the "updated_at" field.

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.Port

UpdatedAtGT applies the GT predicate on the "updated_at" field.

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.Port

UpdatedAtGTE applies the GTE predicate on the "updated_at" field.

func UpdatedAtIn

func UpdatedAtIn(vs ...time.Time) predicate.Port

UpdatedAtIn applies the In predicate on the "updated_at" field.

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.Port

UpdatedAtLT applies the LT predicate on the "updated_at" field.

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.Port

UpdatedAtLTE applies the LTE predicate on the "updated_at" field.

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.Port

UpdatedAtNEQ applies the NEQ predicate on the "updated_at" field.

func UpdatedAtNotIn

func UpdatedAtNotIn(vs ...time.Time) predicate.Port

UpdatedAtNotIn applies the NotIn predicate on the "updated_at" field.

func UpdatedBy added in v0.2.0

func UpdatedBy(v string) predicate.Port

UpdatedBy applies equality check predicate on the "updated_by" field. It's identical to UpdatedByEQ.

func UpdatedByContains added in v0.2.0

func UpdatedByContains(v string) predicate.Port

UpdatedByContains applies the Contains predicate on the "updated_by" field.

func UpdatedByContainsFold added in v0.2.0

func UpdatedByContainsFold(v string) predicate.Port

UpdatedByContainsFold applies the ContainsFold predicate on the "updated_by" field.

func UpdatedByEQ added in v0.2.0

func UpdatedByEQ(v string) predicate.Port

UpdatedByEQ applies the EQ predicate on the "updated_by" field.

func UpdatedByEqualFold added in v0.2.0

func UpdatedByEqualFold(v string) predicate.Port

UpdatedByEqualFold applies the EqualFold predicate on the "updated_by" field.

func UpdatedByGT added in v0.2.0

func UpdatedByGT(v string) predicate.Port

UpdatedByGT applies the GT predicate on the "updated_by" field.

func UpdatedByGTE added in v0.2.0

func UpdatedByGTE(v string) predicate.Port

UpdatedByGTE applies the GTE predicate on the "updated_by" field.

func UpdatedByHasPrefix added in v0.2.0

func UpdatedByHasPrefix(v string) predicate.Port

UpdatedByHasPrefix applies the HasPrefix predicate on the "updated_by" field.

func UpdatedByHasSuffix added in v0.2.0

func UpdatedByHasSuffix(v string) predicate.Port

UpdatedByHasSuffix applies the HasSuffix predicate on the "updated_by" field.

func UpdatedByIn added in v0.2.0

func UpdatedByIn(vs ...string) predicate.Port

UpdatedByIn applies the In predicate on the "updated_by" field.

func UpdatedByIsNil added in v0.2.0

func UpdatedByIsNil() predicate.Port

UpdatedByIsNil applies the IsNil predicate on the "updated_by" field.

func UpdatedByLT added in v0.2.0

func UpdatedByLT(v string) predicate.Port

UpdatedByLT applies the LT predicate on the "updated_by" field.

func UpdatedByLTE added in v0.2.0

func UpdatedByLTE(v string) predicate.Port

UpdatedByLTE applies the LTE predicate on the "updated_by" field.

func UpdatedByNEQ added in v0.2.0

func UpdatedByNEQ(v string) predicate.Port

UpdatedByNEQ applies the NEQ predicate on the "updated_by" field.

func UpdatedByNotIn added in v0.2.0

func UpdatedByNotIn(vs ...string) predicate.Port

UpdatedByNotIn applies the NotIn predicate on the "updated_by" field.

func UpdatedByNotNil added in v0.2.0

func UpdatedByNotNil() predicate.Port

UpdatedByNotNil applies the NotNil predicate on the "updated_by" 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 Port queries.

func ByCreatedAt

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

ByCreatedAt orders the results by the created_at field.

func ByCreatedBy added in v0.2.0

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

ByCreatedBy orders the results by the created_by field.

func ByDeletedAt added in v0.2.0

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

ByDeletedAt orders the results by the deleted_at field.

func ByDeletedBy added in v0.2.0

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

ByDeletedBy orders the results by the deleted_by field.

func ByID

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

ByID orders the results by the id field.

func ByLoadBalancerField

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

ByLoadBalancerField orders the results by load_balancer field.

func ByLoadBalancerID

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

ByLoadBalancerID orders the results by the load_balancer_id field.

func ByName

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

ByName orders the results by the name field.

func ByNumber

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

ByNumber orders the results by the number field.

func ByPools

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

ByPools orders the results by pools terms.

func ByPoolsCount

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

ByPoolsCount orders the results by pools count.

func ByUpdatedAt

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

ByUpdatedAt orders the results by the updated_at field.

func ByUpdatedBy added in v0.2.0

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

ByUpdatedBy orders the results by the updated_by field.

Jump to

Keyboard shortcuts

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