proxyroutingunlockservice

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 proxyroutingunlockservice type in the database.
	Label = "proxy_routing_unlock_service"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldCode holds the string denoting the code field in the database.
	FieldCode = "code"
	// FieldName holds the string denoting the name field in the database.
	FieldName = "name"
	// FieldCategory holds the string denoting the category field in the database.
	FieldCategory = "category"
	// FieldEnabled holds the string denoting the enabled field in the database.
	FieldEnabled = "enabled"
	// FieldServiceJSON holds the string denoting the service_json field in the database.
	FieldServiceJSON = "service_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 proxyroutingunlockservice in the database.
	Table = "routing_unlock_service"
)

Variables

View Source
var (
	// CodeValidator is a validator for the "code" field. It is called by the builders before save.
	CodeValidator func(string) error
	// NameValidator is a validator for the "name" field. It is called by the builders before save.
	NameValidator func(string) error
	// DefaultCategory holds the default value on creation for the "category" field.
	DefaultCategory string
	// CategoryValidator is a validator for the "category" field. It is called by the builders before save.
	CategoryValidator func(string) error
	// DefaultEnabled holds the default value on creation for the "enabled" field.
	DefaultEnabled bool
	// DefaultServiceJSON holds the default value on creation for the "service_json" field.
	DefaultServiceJSON 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 proxyroutingunlockservice fields.

Functions

func And

And groups predicates with the AND operator between them.

func Category

Category applies equality check predicate on the "category" field. It's identical to CategoryEQ.

func CategoryContains

func CategoryContains(v string) predicate.ProxyRoutingUnlockService

CategoryContains applies the Contains predicate on the "category" field.

func CategoryContainsFold

func CategoryContainsFold(v string) predicate.ProxyRoutingUnlockService

CategoryContainsFold applies the ContainsFold predicate on the "category" field.

func CategoryEQ

CategoryEQ applies the EQ predicate on the "category" field.

func CategoryEqualFold

func CategoryEqualFold(v string) predicate.ProxyRoutingUnlockService

CategoryEqualFold applies the EqualFold predicate on the "category" field.

func CategoryGT

CategoryGT applies the GT predicate on the "category" field.

func CategoryGTE

CategoryGTE applies the GTE predicate on the "category" field.

func CategoryHasPrefix

func CategoryHasPrefix(v string) predicate.ProxyRoutingUnlockService

CategoryHasPrefix applies the HasPrefix predicate on the "category" field.

func CategoryHasSuffix

func CategoryHasSuffix(v string) predicate.ProxyRoutingUnlockService

CategoryHasSuffix applies the HasSuffix predicate on the "category" field.

func CategoryIn

func CategoryIn(vs ...string) predicate.ProxyRoutingUnlockService

CategoryIn applies the In predicate on the "category" field.

func CategoryLT

CategoryLT applies the LT predicate on the "category" field.

func CategoryLTE

CategoryLTE applies the LTE predicate on the "category" field.

func CategoryNEQ

CategoryNEQ applies the NEQ predicate on the "category" field.

func CategoryNotIn

func CategoryNotIn(vs ...string) predicate.ProxyRoutingUnlockService

CategoryNotIn applies the NotIn predicate on the "category" field.

func Code

Code applies equality check predicate on the "code" field. It's identical to CodeEQ.

func CodeContains

CodeContains applies the Contains predicate on the "code" field.

func CodeContainsFold

func CodeContainsFold(v string) predicate.ProxyRoutingUnlockService

CodeContainsFold applies the ContainsFold predicate on the "code" field.

func CodeEQ

CodeEQ applies the EQ predicate on the "code" field.

func CodeEqualFold

CodeEqualFold applies the EqualFold predicate on the "code" field.

func CodeGT

CodeGT applies the GT predicate on the "code" field.

func CodeGTE

CodeGTE applies the GTE predicate on the "code" field.

func CodeHasPrefix

CodeHasPrefix applies the HasPrefix predicate on the "code" field.

func CodeHasSuffix

CodeHasSuffix applies the HasSuffix predicate on the "code" field.

func CodeIn

CodeIn applies the In predicate on the "code" field.

func CodeLT

CodeLT applies the LT predicate on the "code" field.

func CodeLTE

CodeLTE applies the LTE predicate on the "code" field.

func CodeNEQ

CodeNEQ applies the NEQ predicate on the "code" field.

func CodeNotIn

CodeNotIn applies the NotIn predicate on the "code" field.

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

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

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

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

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

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

func EnabledNEQ

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

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

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

func NameContainsFold

func NameContainsFold(v string) predicate.ProxyRoutingUnlockService

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

func NameEQ

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

func NameEqualFold

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

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

func NameHasSuffix

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

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 ServiceJSON

ServiceJSON applies equality check predicate on the "service_json" field. It's identical to ServiceJSONEQ.

func ServiceJSONContains

func ServiceJSONContains(v string) predicate.ProxyRoutingUnlockService

ServiceJSONContains applies the Contains predicate on the "service_json" field.

func ServiceJSONContainsFold

func ServiceJSONContainsFold(v string) predicate.ProxyRoutingUnlockService

ServiceJSONContainsFold applies the ContainsFold predicate on the "service_json" field.

func ServiceJSONEQ

ServiceJSONEQ applies the EQ predicate on the "service_json" field.

func ServiceJSONEqualFold

func ServiceJSONEqualFold(v string) predicate.ProxyRoutingUnlockService

ServiceJSONEqualFold applies the EqualFold predicate on the "service_json" field.

func ServiceJSONGT

ServiceJSONGT applies the GT predicate on the "service_json" field.

func ServiceJSONGTE

func ServiceJSONGTE(v string) predicate.ProxyRoutingUnlockService

ServiceJSONGTE applies the GTE predicate on the "service_json" field.

func ServiceJSONHasPrefix

func ServiceJSONHasPrefix(v string) predicate.ProxyRoutingUnlockService

ServiceJSONHasPrefix applies the HasPrefix predicate on the "service_json" field.

func ServiceJSONHasSuffix

func ServiceJSONHasSuffix(v string) predicate.ProxyRoutingUnlockService

ServiceJSONHasSuffix applies the HasSuffix predicate on the "service_json" field.

func ServiceJSONIn

func ServiceJSONIn(vs ...string) predicate.ProxyRoutingUnlockService

ServiceJSONIn applies the In predicate on the "service_json" field.

func ServiceJSONLT

ServiceJSONLT applies the LT predicate on the "service_json" field.

func ServiceJSONLTE

func ServiceJSONLTE(v string) predicate.ProxyRoutingUnlockService

ServiceJSONLTE applies the LTE predicate on the "service_json" field.

func ServiceJSONNEQ

func ServiceJSONNEQ(v string) predicate.ProxyRoutingUnlockService

ServiceJSONNEQ applies the NEQ predicate on the "service_json" field.

func ServiceJSONNotIn

func ServiceJSONNotIn(vs ...string) predicate.ProxyRoutingUnlockService

ServiceJSONNotIn applies the NotIn predicate on the "service_json" 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

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

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

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

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

func ByCategory

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

ByCategory orders the results by the category field.

func ByCode

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

ByCode orders the results by the code field.

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 ByServiceJSON

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

ByServiceJSON orders the results by the service_json 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