proxyroutingoutbound

package
v1.0.11 Latest Latest
Warning

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

Go to latest
Published: Jun 28, 2026 License: MIT Imports: 3 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the proxyroutingoutbound type in the database.
	Label = "proxy_routing_outbound"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldTag holds the string denoting the tag field in the database.
	FieldTag = "tag"
	// FieldName holds the string denoting the name field in the database.
	FieldName = "name"
	// FieldType holds the string denoting the type field in the database.
	FieldType = "type"
	// FieldRegion holds the string denoting the region field in the database.
	FieldRegion = "region"
	// FieldEnabled holds the string denoting the enabled field in the database.
	FieldEnabled = "enabled"
	// FieldOutboundJSON holds the string denoting the outbound_json field in the database.
	FieldOutboundJSON = "outbound_json"
	// 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"
	// Table holds the table name of the proxyroutingoutbound in the database.
	Table = "routing_outbound"
)

Variables

View Source
var (
	// TagValidator is a validator for the "tag" field. It is called by the builders before save.
	TagValidator func(string) error
	// NameValidator is a validator for the "name" field. It is called by the builders before save.
	NameValidator func(string) error
	// DefaultType holds the default value on creation for the "type" field.
	DefaultType string
	// TypeValidator is a validator for the "type" field. It is called by the builders before save.
	TypeValidator func(string) error
	// DefaultRegion holds the default value on creation for the "region" field.
	DefaultRegion string
	// RegionValidator is a validator for the "region" field. It is called by the builders before save.
	RegionValidator func(string) error
	// DefaultEnabled holds the default value on creation for the "enabled" field.
	DefaultEnabled bool
	// DefaultOutboundJSON holds the default value on creation for the "outbound_json" field.
	DefaultOutboundJSON string
	// 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
)

Columns holds all SQL columns for proxyroutingoutbound fields.

Functions

func And

And groups predicates with the AND operator between them.

func CreatedAt

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.ProxyRoutingOutbound

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.ProxyRoutingOutbound

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.ProxyRoutingOutbound

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

func CreatedAtIn

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

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.ProxyRoutingOutbound

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.ProxyRoutingOutbound

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.ProxyRoutingOutbound

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

func CreatedAtNotIn

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

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

func Enabled

Enabled applies equality check predicate on the "enabled" field. It's identical to EnabledEQ.

func EnabledEQ

func EnabledEQ(v bool) predicate.ProxyRoutingOutbound

EnabledEQ applies the EQ predicate on the "enabled" field.

func EnabledNEQ

func EnabledNEQ(v bool) predicate.ProxyRoutingOutbound

EnabledNEQ applies the NEQ predicate on the "enabled" field.

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

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 ...int64) predicate.ProxyRoutingOutbound

IDNotIn applies the NotIn predicate on the ID field.

func Name

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

func NameContains

func NameContains(v string) predicate.ProxyRoutingOutbound

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

func NameContainsFold

func NameContainsFold(v string) predicate.ProxyRoutingOutbound

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

func NameEQ

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

func NameEqualFold

func NameEqualFold(v string) predicate.ProxyRoutingOutbound

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

func NameGT

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

func NameGTE

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

func NameHasPrefix

func NameHasPrefix(v string) predicate.ProxyRoutingOutbound

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

func NameHasSuffix

func NameHasSuffix(v string) predicate.ProxyRoutingOutbound

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

func NameIn

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

func NameLT

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

func NameLTE

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

func NameNEQ

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

func NameNotIn

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

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

func Not

Not applies the not operator on the given predicate.

func Or

Or groups predicates with the OR operator between them.

func OutboundJSON

func OutboundJSON(v string) predicate.ProxyRoutingOutbound

OutboundJSON applies equality check predicate on the "outbound_json" field. It's identical to OutboundJSONEQ.

func OutboundJSONContains

func OutboundJSONContains(v string) predicate.ProxyRoutingOutbound

OutboundJSONContains applies the Contains predicate on the "outbound_json" field.

func OutboundJSONContainsFold

func OutboundJSONContainsFold(v string) predicate.ProxyRoutingOutbound

OutboundJSONContainsFold applies the ContainsFold predicate on the "outbound_json" field.

func OutboundJSONEQ

func OutboundJSONEQ(v string) predicate.ProxyRoutingOutbound

OutboundJSONEQ applies the EQ predicate on the "outbound_json" field.

func OutboundJSONEqualFold

func OutboundJSONEqualFold(v string) predicate.ProxyRoutingOutbound

OutboundJSONEqualFold applies the EqualFold predicate on the "outbound_json" field.

func OutboundJSONGT

func OutboundJSONGT(v string) predicate.ProxyRoutingOutbound

OutboundJSONGT applies the GT predicate on the "outbound_json" field.

func OutboundJSONGTE

func OutboundJSONGTE(v string) predicate.ProxyRoutingOutbound

OutboundJSONGTE applies the GTE predicate on the "outbound_json" field.

func OutboundJSONHasPrefix

func OutboundJSONHasPrefix(v string) predicate.ProxyRoutingOutbound

OutboundJSONHasPrefix applies the HasPrefix predicate on the "outbound_json" field.

func OutboundJSONHasSuffix

func OutboundJSONHasSuffix(v string) predicate.ProxyRoutingOutbound

OutboundJSONHasSuffix applies the HasSuffix predicate on the "outbound_json" field.

func OutboundJSONIn

func OutboundJSONIn(vs ...string) predicate.ProxyRoutingOutbound

OutboundJSONIn applies the In predicate on the "outbound_json" field.

func OutboundJSONLT

func OutboundJSONLT(v string) predicate.ProxyRoutingOutbound

OutboundJSONLT applies the LT predicate on the "outbound_json" field.

func OutboundJSONLTE

func OutboundJSONLTE(v string) predicate.ProxyRoutingOutbound

OutboundJSONLTE applies the LTE predicate on the "outbound_json" field.

func OutboundJSONNEQ

func OutboundJSONNEQ(v string) predicate.ProxyRoutingOutbound

OutboundJSONNEQ applies the NEQ predicate on the "outbound_json" field.

func OutboundJSONNotIn

func OutboundJSONNotIn(vs ...string) predicate.ProxyRoutingOutbound

OutboundJSONNotIn applies the NotIn predicate on the "outbound_json" field.

func Region

Region applies equality check predicate on the "region" field. It's identical to RegionEQ.

func RegionContains

func RegionContains(v string) predicate.ProxyRoutingOutbound

RegionContains applies the Contains predicate on the "region" field.

func RegionContainsFold

func RegionContainsFold(v string) predicate.ProxyRoutingOutbound

RegionContainsFold applies the ContainsFold predicate on the "region" field.

func RegionEQ

RegionEQ applies the EQ predicate on the "region" field.

func RegionEqualFold

func RegionEqualFold(v string) predicate.ProxyRoutingOutbound

RegionEqualFold applies the EqualFold predicate on the "region" field.

func RegionGT

RegionGT applies the GT predicate on the "region" field.

func RegionGTE

RegionGTE applies the GTE predicate on the "region" field.

func RegionHasPrefix

func RegionHasPrefix(v string) predicate.ProxyRoutingOutbound

RegionHasPrefix applies the HasPrefix predicate on the "region" field.

func RegionHasSuffix

func RegionHasSuffix(v string) predicate.ProxyRoutingOutbound

RegionHasSuffix applies the HasSuffix predicate on the "region" field.

func RegionIn

func RegionIn(vs ...string) predicate.ProxyRoutingOutbound

RegionIn applies the In predicate on the "region" field.

func RegionLT

RegionLT applies the LT predicate on the "region" field.

func RegionLTE

RegionLTE applies the LTE predicate on the "region" field.

func RegionNEQ

RegionNEQ applies the NEQ predicate on the "region" field.

func RegionNotIn

func RegionNotIn(vs ...string) predicate.ProxyRoutingOutbound

RegionNotIn applies the NotIn predicate on the "region" field.

func Tag

Tag applies equality check predicate on the "tag" field. It's identical to TagEQ.

func TagContains

func TagContains(v string) predicate.ProxyRoutingOutbound

TagContains applies the Contains predicate on the "tag" field.

func TagContainsFold

func TagContainsFold(v string) predicate.ProxyRoutingOutbound

TagContainsFold applies the ContainsFold predicate on the "tag" field.

func TagEQ

TagEQ applies the EQ predicate on the "tag" field.

func TagEqualFold

func TagEqualFold(v string) predicate.ProxyRoutingOutbound

TagEqualFold applies the EqualFold predicate on the "tag" field.

func TagGT

TagGT applies the GT predicate on the "tag" field.

func TagGTE

TagGTE applies the GTE predicate on the "tag" field.

func TagHasPrefix

func TagHasPrefix(v string) predicate.ProxyRoutingOutbound

TagHasPrefix applies the HasPrefix predicate on the "tag" field.

func TagHasSuffix

func TagHasSuffix(v string) predicate.ProxyRoutingOutbound

TagHasSuffix applies the HasSuffix predicate on the "tag" field.

func TagIn

TagIn applies the In predicate on the "tag" field.

func TagLT

TagLT applies the LT predicate on the "tag" field.

func TagLTE

TagLTE applies the LTE predicate on the "tag" field.

func TagNEQ

TagNEQ applies the NEQ predicate on the "tag" field.

func TagNotIn

func TagNotIn(vs ...string) predicate.ProxyRoutingOutbound

TagNotIn applies the NotIn predicate on the "tag" field.

func Type

Type applies equality check predicate on the "type" field. It's identical to TypeEQ.

func TypeContains

func TypeContains(v string) predicate.ProxyRoutingOutbound

TypeContains applies the Contains predicate on the "type" field.

func TypeContainsFold

func TypeContainsFold(v string) predicate.ProxyRoutingOutbound

TypeContainsFold applies the ContainsFold predicate on the "type" field.

func TypeEQ

TypeEQ applies the EQ predicate on the "type" field.

func TypeEqualFold

func TypeEqualFold(v string) predicate.ProxyRoutingOutbound

TypeEqualFold applies the EqualFold predicate on the "type" field.

func TypeGT

TypeGT applies the GT predicate on the "type" field.

func TypeGTE

TypeGTE applies the GTE predicate on the "type" field.

func TypeHasPrefix

func TypeHasPrefix(v string) predicate.ProxyRoutingOutbound

TypeHasPrefix applies the HasPrefix predicate on the "type" field.

func TypeHasSuffix

func TypeHasSuffix(v string) predicate.ProxyRoutingOutbound

TypeHasSuffix applies the HasSuffix predicate on the "type" field.

func TypeIn

TypeIn applies the In predicate on the "type" field.

func TypeLT

TypeLT applies the LT predicate on the "type" field.

func TypeLTE

TypeLTE applies the LTE predicate on the "type" field.

func TypeNEQ

TypeNEQ applies the NEQ predicate on the "type" field.

func TypeNotIn

func TypeNotIn(vs ...string) predicate.ProxyRoutingOutbound

TypeNotIn applies the NotIn predicate on the "type" field.

func UpdatedAt

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

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.ProxyRoutingOutbound

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

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.ProxyRoutingOutbound

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

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.ProxyRoutingOutbound

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

func UpdatedAtIn

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

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

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.ProxyRoutingOutbound

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

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.ProxyRoutingOutbound

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

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.ProxyRoutingOutbound

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

func UpdatedAtNotIn

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

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

func ByCreatedAt

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

ByCreatedAt orders the results by the created_at field.

func ByEnabled

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

ByEnabled orders the results by the enabled field.

func ByID

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

ByID orders the results by the id field.

func ByName

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

ByName orders the results by the name field.

func ByOutboundJSON

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

ByOutboundJSON orders the results by the outbound_json field.

func ByRegion

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

ByRegion orders the results by the region field.

func ByTag

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

ByTag orders the results by the tag field.

func ByType

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

ByType orders the results by the type field.

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