port

package
v0.1.1 Latest Latest
Warning

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

Go to latest
Published: Dec 18, 2023 License: Apache-2.0 Imports: 5 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"
	// 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 (
	// 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
)

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 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 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 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 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 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.

Jump to

Keyboard shortcuts

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