app

package
v0.0.0-...-f17293a Latest Latest
Warning

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

Go to latest
Published: Nov 21, 2022 License: Apache-2.0 Imports: 3 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the app type in the database.
	Label = "app"
	// 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"
	// FieldDeleteAt holds the string denoting the delete_at field in the database.
	FieldDeleteAt = "delete_at"
	// FieldOperatorID holds the string denoting the operator_id field in the database.
	FieldOperatorID = "operator_id"
	// FieldEncryptedOperatorRsaPublicKey holds the string denoting the encrypted_operator_rsa_public_key field in the database.
	FieldEncryptedOperatorRsaPublicKey = "encrypted_operator_rsa_public_key"
	// FieldEncryptedAppPrivateKey holds the string denoting the encrypted_app_private_key field in the database.
	FieldEncryptedAppPrivateKey = "encrypted_app_private_key"
	// FieldEncryptedAppPublicKey holds the string denoting the encrypted_app_public_key field in the database.
	FieldEncryptedAppPublicKey = "encrypted_app_public_key"
	// FieldTitle holds the string denoting the title field in the database.
	FieldTitle = "title"
	// FieldDescription holds the string denoting the description field in the database.
	FieldDescription = "description"
	// FieldConf holds the string denoting the conf field in the database.
	FieldConf = "conf"
	// FieldAppID holds the string denoting the app_id field in the database.
	FieldAppID = "app_id"
	// FieldAppSecret holds the string denoting the app_secret field in the database.
	FieldAppSecret = "app_secret"
	// FieldStatus holds the string denoting the status field in the database.
	FieldStatus = "status"
	// FieldIPWhitelist holds the string denoting the ip_whitelist field in the database.
	FieldIPWhitelist = "ip_whitelist"
	// Table holds the table name of the app in the database.
	Table = "apps"
)

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
	// DefaultConf holds the default value on creation for the "conf" field.
	DefaultConf string
	// DefaultStatus holds the default value on creation for the "status" field.
	DefaultStatus int
)

Columns holds all SQL columns for app fields.

Functions

func And

func And(predicates ...predicate.App) predicate.App

And groups predicates with the AND operator between them.

func AppID

func AppID(v string) predicate.App

AppID applies equality check predicate on the "app_id" field. It's identical to AppIDEQ.

func AppIDContains

func AppIDContains(v string) predicate.App

AppIDContains applies the Contains predicate on the "app_id" field.

func AppIDContainsFold

func AppIDContainsFold(v string) predicate.App

AppIDContainsFold applies the ContainsFold predicate on the "app_id" field.

func AppIDEQ

func AppIDEQ(v string) predicate.App

AppIDEQ applies the EQ predicate on the "app_id" field.

func AppIDEqualFold

func AppIDEqualFold(v string) predicate.App

AppIDEqualFold applies the EqualFold predicate on the "app_id" field.

func AppIDGT

func AppIDGT(v string) predicate.App

AppIDGT applies the GT predicate on the "app_id" field.

func AppIDGTE

func AppIDGTE(v string) predicate.App

AppIDGTE applies the GTE predicate on the "app_id" field.

func AppIDHasPrefix

func AppIDHasPrefix(v string) predicate.App

AppIDHasPrefix applies the HasPrefix predicate on the "app_id" field.

func AppIDHasSuffix

func AppIDHasSuffix(v string) predicate.App

AppIDHasSuffix applies the HasSuffix predicate on the "app_id" field.

func AppIDIn

func AppIDIn(vs ...string) predicate.App

AppIDIn applies the In predicate on the "app_id" field.

func AppIDIsNil

func AppIDIsNil() predicate.App

AppIDIsNil applies the IsNil predicate on the "app_id" field.

func AppIDLT

func AppIDLT(v string) predicate.App

AppIDLT applies the LT predicate on the "app_id" field.

func AppIDLTE

func AppIDLTE(v string) predicate.App

AppIDLTE applies the LTE predicate on the "app_id" field.

func AppIDNEQ

func AppIDNEQ(v string) predicate.App

AppIDNEQ applies the NEQ predicate on the "app_id" field.

func AppIDNotIn

func AppIDNotIn(vs ...string) predicate.App

AppIDNotIn applies the NotIn predicate on the "app_id" field.

func AppIDNotNil

func AppIDNotNil() predicate.App

AppIDNotNil applies the NotNil predicate on the "app_id" field.

func AppSecret

func AppSecret(v string) predicate.App

AppSecret applies equality check predicate on the "app_secret" field. It's identical to AppSecretEQ.

func AppSecretContains

func AppSecretContains(v string) predicate.App

AppSecretContains applies the Contains predicate on the "app_secret" field.

func AppSecretContainsFold

func AppSecretContainsFold(v string) predicate.App

AppSecretContainsFold applies the ContainsFold predicate on the "app_secret" field.

func AppSecretEQ

func AppSecretEQ(v string) predicate.App

AppSecretEQ applies the EQ predicate on the "app_secret" field.

func AppSecretEqualFold

func AppSecretEqualFold(v string) predicate.App

AppSecretEqualFold applies the EqualFold predicate on the "app_secret" field.

func AppSecretGT

func AppSecretGT(v string) predicate.App

AppSecretGT applies the GT predicate on the "app_secret" field.

func AppSecretGTE

func AppSecretGTE(v string) predicate.App

AppSecretGTE applies the GTE predicate on the "app_secret" field.

func AppSecretHasPrefix

func AppSecretHasPrefix(v string) predicate.App

AppSecretHasPrefix applies the HasPrefix predicate on the "app_secret" field.

func AppSecretHasSuffix

func AppSecretHasSuffix(v string) predicate.App

AppSecretHasSuffix applies the HasSuffix predicate on the "app_secret" field.

func AppSecretIn

func AppSecretIn(vs ...string) predicate.App

AppSecretIn applies the In predicate on the "app_secret" field.

func AppSecretIsNil

func AppSecretIsNil() predicate.App

AppSecretIsNil applies the IsNil predicate on the "app_secret" field.

func AppSecretLT

func AppSecretLT(v string) predicate.App

AppSecretLT applies the LT predicate on the "app_secret" field.

func AppSecretLTE

func AppSecretLTE(v string) predicate.App

AppSecretLTE applies the LTE predicate on the "app_secret" field.

func AppSecretNEQ

func AppSecretNEQ(v string) predicate.App

AppSecretNEQ applies the NEQ predicate on the "app_secret" field.

func AppSecretNotIn

func AppSecretNotIn(vs ...string) predicate.App

AppSecretNotIn applies the NotIn predicate on the "app_secret" field.

func AppSecretNotNil

func AppSecretNotNil() predicate.App

AppSecretNotNil applies the NotNil predicate on the "app_secret" field.

func Conf

func Conf(v string) predicate.App

Conf applies equality check predicate on the "conf" field. It's identical to ConfEQ.

func ConfContains

func ConfContains(v string) predicate.App

ConfContains applies the Contains predicate on the "conf" field.

func ConfContainsFold

func ConfContainsFold(v string) predicate.App

ConfContainsFold applies the ContainsFold predicate on the "conf" field.

func ConfEQ

func ConfEQ(v string) predicate.App

ConfEQ applies the EQ predicate on the "conf" field.

func ConfEqualFold

func ConfEqualFold(v string) predicate.App

ConfEqualFold applies the EqualFold predicate on the "conf" field.

func ConfGT

func ConfGT(v string) predicate.App

ConfGT applies the GT predicate on the "conf" field.

func ConfGTE

func ConfGTE(v string) predicate.App

ConfGTE applies the GTE predicate on the "conf" field.

func ConfHasPrefix

func ConfHasPrefix(v string) predicate.App

ConfHasPrefix applies the HasPrefix predicate on the "conf" field.

func ConfHasSuffix

func ConfHasSuffix(v string) predicate.App

ConfHasSuffix applies the HasSuffix predicate on the "conf" field.

func ConfIn

func ConfIn(vs ...string) predicate.App

ConfIn applies the In predicate on the "conf" field.

func ConfIsNil

func ConfIsNil() predicate.App

ConfIsNil applies the IsNil predicate on the "conf" field.

func ConfLT

func ConfLT(v string) predicate.App

ConfLT applies the LT predicate on the "conf" field.

func ConfLTE

func ConfLTE(v string) predicate.App

ConfLTE applies the LTE predicate on the "conf" field.

func ConfNEQ

func ConfNEQ(v string) predicate.App

ConfNEQ applies the NEQ predicate on the "conf" field.

func ConfNotIn

func ConfNotIn(vs ...string) predicate.App

ConfNotIn applies the NotIn predicate on the "conf" field.

func ConfNotNil

func ConfNotNil() predicate.App

ConfNotNil applies the NotNil predicate on the "conf" field.

func CreatedAt

func CreatedAt(v time.Time) predicate.App

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.App

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.App

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.App

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

func CreatedAtIn

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

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

func CreatedAtIsNil

func CreatedAtIsNil() predicate.App

CreatedAtIsNil applies the IsNil predicate on the "created_at" field.

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.App

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.App

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.App

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

func CreatedAtNotIn

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

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

func CreatedAtNotNil

func CreatedAtNotNil() predicate.App

CreatedAtNotNil applies the NotNil predicate on the "created_at" field.

func DeleteAt

func DeleteAt(v time.Time) predicate.App

DeleteAt applies equality check predicate on the "delete_at" field. It's identical to DeleteAtEQ.

func DeleteAtEQ

func DeleteAtEQ(v time.Time) predicate.App

DeleteAtEQ applies the EQ predicate on the "delete_at" field.

func DeleteAtGT

func DeleteAtGT(v time.Time) predicate.App

DeleteAtGT applies the GT predicate on the "delete_at" field.

func DeleteAtGTE

func DeleteAtGTE(v time.Time) predicate.App

DeleteAtGTE applies the GTE predicate on the "delete_at" field.

func DeleteAtIn

func DeleteAtIn(vs ...time.Time) predicate.App

DeleteAtIn applies the In predicate on the "delete_at" field.

func DeleteAtIsNil

func DeleteAtIsNil() predicate.App

DeleteAtIsNil applies the IsNil predicate on the "delete_at" field.

func DeleteAtLT

func DeleteAtLT(v time.Time) predicate.App

DeleteAtLT applies the LT predicate on the "delete_at" field.

func DeleteAtLTE

func DeleteAtLTE(v time.Time) predicate.App

DeleteAtLTE applies the LTE predicate on the "delete_at" field.

func DeleteAtNEQ

func DeleteAtNEQ(v time.Time) predicate.App

DeleteAtNEQ applies the NEQ predicate on the "delete_at" field.

func DeleteAtNotIn

func DeleteAtNotIn(vs ...time.Time) predicate.App

DeleteAtNotIn applies the NotIn predicate on the "delete_at" field.

func DeleteAtNotNil

func DeleteAtNotNil() predicate.App

DeleteAtNotNil applies the NotNil predicate on the "delete_at" field.

func Description

func Description(v string) predicate.App

Description applies equality check predicate on the "description" field. It's identical to DescriptionEQ.

func DescriptionContains

func DescriptionContains(v string) predicate.App

DescriptionContains applies the Contains predicate on the "description" field.

func DescriptionContainsFold

func DescriptionContainsFold(v string) predicate.App

DescriptionContainsFold applies the ContainsFold predicate on the "description" field.

func DescriptionEQ

func DescriptionEQ(v string) predicate.App

DescriptionEQ applies the EQ predicate on the "description" field.

func DescriptionEqualFold

func DescriptionEqualFold(v string) predicate.App

DescriptionEqualFold applies the EqualFold predicate on the "description" field.

func DescriptionGT

func DescriptionGT(v string) predicate.App

DescriptionGT applies the GT predicate on the "description" field.

func DescriptionGTE

func DescriptionGTE(v string) predicate.App

DescriptionGTE applies the GTE predicate on the "description" field.

func DescriptionHasPrefix

func DescriptionHasPrefix(v string) predicate.App

DescriptionHasPrefix applies the HasPrefix predicate on the "description" field.

func DescriptionHasSuffix

func DescriptionHasSuffix(v string) predicate.App

DescriptionHasSuffix applies the HasSuffix predicate on the "description" field.

func DescriptionIn

func DescriptionIn(vs ...string) predicate.App

DescriptionIn applies the In predicate on the "description" field.

func DescriptionIsNil

func DescriptionIsNil() predicate.App

DescriptionIsNil applies the IsNil predicate on the "description" field.

func DescriptionLT

func DescriptionLT(v string) predicate.App

DescriptionLT applies the LT predicate on the "description" field.

func DescriptionLTE

func DescriptionLTE(v string) predicate.App

DescriptionLTE applies the LTE predicate on the "description" field.

func DescriptionNEQ

func DescriptionNEQ(v string) predicate.App

DescriptionNEQ applies the NEQ predicate on the "description" field.

func DescriptionNotIn

func DescriptionNotIn(vs ...string) predicate.App

DescriptionNotIn applies the NotIn predicate on the "description" field.

func DescriptionNotNil

func DescriptionNotNil() predicate.App

DescriptionNotNil applies the NotNil predicate on the "description" field.

func EncryptedAppPrivateKey

func EncryptedAppPrivateKey(v string) predicate.App

EncryptedAppPrivateKey applies equality check predicate on the "encrypted_app_private_key" field. It's identical to EncryptedAppPrivateKeyEQ.

func EncryptedAppPrivateKeyContains

func EncryptedAppPrivateKeyContains(v string) predicate.App

EncryptedAppPrivateKeyContains applies the Contains predicate on the "encrypted_app_private_key" field.

func EncryptedAppPrivateKeyContainsFold

func EncryptedAppPrivateKeyContainsFold(v string) predicate.App

EncryptedAppPrivateKeyContainsFold applies the ContainsFold predicate on the "encrypted_app_private_key" field.

func EncryptedAppPrivateKeyEQ

func EncryptedAppPrivateKeyEQ(v string) predicate.App

EncryptedAppPrivateKeyEQ applies the EQ predicate on the "encrypted_app_private_key" field.

func EncryptedAppPrivateKeyEqualFold

func EncryptedAppPrivateKeyEqualFold(v string) predicate.App

EncryptedAppPrivateKeyEqualFold applies the EqualFold predicate on the "encrypted_app_private_key" field.

func EncryptedAppPrivateKeyGT

func EncryptedAppPrivateKeyGT(v string) predicate.App

EncryptedAppPrivateKeyGT applies the GT predicate on the "encrypted_app_private_key" field.

func EncryptedAppPrivateKeyGTE

func EncryptedAppPrivateKeyGTE(v string) predicate.App

EncryptedAppPrivateKeyGTE applies the GTE predicate on the "encrypted_app_private_key" field.

func EncryptedAppPrivateKeyHasPrefix

func EncryptedAppPrivateKeyHasPrefix(v string) predicate.App

EncryptedAppPrivateKeyHasPrefix applies the HasPrefix predicate on the "encrypted_app_private_key" field.

func EncryptedAppPrivateKeyHasSuffix

func EncryptedAppPrivateKeyHasSuffix(v string) predicate.App

EncryptedAppPrivateKeyHasSuffix applies the HasSuffix predicate on the "encrypted_app_private_key" field.

func EncryptedAppPrivateKeyIn

func EncryptedAppPrivateKeyIn(vs ...string) predicate.App

EncryptedAppPrivateKeyIn applies the In predicate on the "encrypted_app_private_key" field.

func EncryptedAppPrivateKeyIsNil

func EncryptedAppPrivateKeyIsNil() predicate.App

EncryptedAppPrivateKeyIsNil applies the IsNil predicate on the "encrypted_app_private_key" field.

func EncryptedAppPrivateKeyLT

func EncryptedAppPrivateKeyLT(v string) predicate.App

EncryptedAppPrivateKeyLT applies the LT predicate on the "encrypted_app_private_key" field.

func EncryptedAppPrivateKeyLTE

func EncryptedAppPrivateKeyLTE(v string) predicate.App

EncryptedAppPrivateKeyLTE applies the LTE predicate on the "encrypted_app_private_key" field.

func EncryptedAppPrivateKeyNEQ

func EncryptedAppPrivateKeyNEQ(v string) predicate.App

EncryptedAppPrivateKeyNEQ applies the NEQ predicate on the "encrypted_app_private_key" field.

func EncryptedAppPrivateKeyNotIn

func EncryptedAppPrivateKeyNotIn(vs ...string) predicate.App

EncryptedAppPrivateKeyNotIn applies the NotIn predicate on the "encrypted_app_private_key" field.

func EncryptedAppPrivateKeyNotNil

func EncryptedAppPrivateKeyNotNil() predicate.App

EncryptedAppPrivateKeyNotNil applies the NotNil predicate on the "encrypted_app_private_key" field.

func EncryptedAppPublicKey

func EncryptedAppPublicKey(v string) predicate.App

EncryptedAppPublicKey applies equality check predicate on the "encrypted_app_public_key" field. It's identical to EncryptedAppPublicKeyEQ.

func EncryptedAppPublicKeyContains

func EncryptedAppPublicKeyContains(v string) predicate.App

EncryptedAppPublicKeyContains applies the Contains predicate on the "encrypted_app_public_key" field.

func EncryptedAppPublicKeyContainsFold

func EncryptedAppPublicKeyContainsFold(v string) predicate.App

EncryptedAppPublicKeyContainsFold applies the ContainsFold predicate on the "encrypted_app_public_key" field.

func EncryptedAppPublicKeyEQ

func EncryptedAppPublicKeyEQ(v string) predicate.App

EncryptedAppPublicKeyEQ applies the EQ predicate on the "encrypted_app_public_key" field.

func EncryptedAppPublicKeyEqualFold

func EncryptedAppPublicKeyEqualFold(v string) predicate.App

EncryptedAppPublicKeyEqualFold applies the EqualFold predicate on the "encrypted_app_public_key" field.

func EncryptedAppPublicKeyGT

func EncryptedAppPublicKeyGT(v string) predicate.App

EncryptedAppPublicKeyGT applies the GT predicate on the "encrypted_app_public_key" field.

func EncryptedAppPublicKeyGTE

func EncryptedAppPublicKeyGTE(v string) predicate.App

EncryptedAppPublicKeyGTE applies the GTE predicate on the "encrypted_app_public_key" field.

func EncryptedAppPublicKeyHasPrefix

func EncryptedAppPublicKeyHasPrefix(v string) predicate.App

EncryptedAppPublicKeyHasPrefix applies the HasPrefix predicate on the "encrypted_app_public_key" field.

func EncryptedAppPublicKeyHasSuffix

func EncryptedAppPublicKeyHasSuffix(v string) predicate.App

EncryptedAppPublicKeyHasSuffix applies the HasSuffix predicate on the "encrypted_app_public_key" field.

func EncryptedAppPublicKeyIn

func EncryptedAppPublicKeyIn(vs ...string) predicate.App

EncryptedAppPublicKeyIn applies the In predicate on the "encrypted_app_public_key" field.

func EncryptedAppPublicKeyIsNil

func EncryptedAppPublicKeyIsNil() predicate.App

EncryptedAppPublicKeyIsNil applies the IsNil predicate on the "encrypted_app_public_key" field.

func EncryptedAppPublicKeyLT

func EncryptedAppPublicKeyLT(v string) predicate.App

EncryptedAppPublicKeyLT applies the LT predicate on the "encrypted_app_public_key" field.

func EncryptedAppPublicKeyLTE

func EncryptedAppPublicKeyLTE(v string) predicate.App

EncryptedAppPublicKeyLTE applies the LTE predicate on the "encrypted_app_public_key" field.

func EncryptedAppPublicKeyNEQ

func EncryptedAppPublicKeyNEQ(v string) predicate.App

EncryptedAppPublicKeyNEQ applies the NEQ predicate on the "encrypted_app_public_key" field.

func EncryptedAppPublicKeyNotIn

func EncryptedAppPublicKeyNotIn(vs ...string) predicate.App

EncryptedAppPublicKeyNotIn applies the NotIn predicate on the "encrypted_app_public_key" field.

func EncryptedAppPublicKeyNotNil

func EncryptedAppPublicKeyNotNil() predicate.App

EncryptedAppPublicKeyNotNil applies the NotNil predicate on the "encrypted_app_public_key" field.

func EncryptedOperatorRsaPublicKey

func EncryptedOperatorRsaPublicKey(v string) predicate.App

EncryptedOperatorRsaPublicKey applies equality check predicate on the "encrypted_operator_rsa_public_key" field. It's identical to EncryptedOperatorRsaPublicKeyEQ.

func EncryptedOperatorRsaPublicKeyContains

func EncryptedOperatorRsaPublicKeyContains(v string) predicate.App

EncryptedOperatorRsaPublicKeyContains applies the Contains predicate on the "encrypted_operator_rsa_public_key" field.

func EncryptedOperatorRsaPublicKeyContainsFold

func EncryptedOperatorRsaPublicKeyContainsFold(v string) predicate.App

EncryptedOperatorRsaPublicKeyContainsFold applies the ContainsFold predicate on the "encrypted_operator_rsa_public_key" field.

func EncryptedOperatorRsaPublicKeyEQ

func EncryptedOperatorRsaPublicKeyEQ(v string) predicate.App

EncryptedOperatorRsaPublicKeyEQ applies the EQ predicate on the "encrypted_operator_rsa_public_key" field.

func EncryptedOperatorRsaPublicKeyEqualFold

func EncryptedOperatorRsaPublicKeyEqualFold(v string) predicate.App

EncryptedOperatorRsaPublicKeyEqualFold applies the EqualFold predicate on the "encrypted_operator_rsa_public_key" field.

func EncryptedOperatorRsaPublicKeyGT

func EncryptedOperatorRsaPublicKeyGT(v string) predicate.App

EncryptedOperatorRsaPublicKeyGT applies the GT predicate on the "encrypted_operator_rsa_public_key" field.

func EncryptedOperatorRsaPublicKeyGTE

func EncryptedOperatorRsaPublicKeyGTE(v string) predicate.App

EncryptedOperatorRsaPublicKeyGTE applies the GTE predicate on the "encrypted_operator_rsa_public_key" field.

func EncryptedOperatorRsaPublicKeyHasPrefix

func EncryptedOperatorRsaPublicKeyHasPrefix(v string) predicate.App

EncryptedOperatorRsaPublicKeyHasPrefix applies the HasPrefix predicate on the "encrypted_operator_rsa_public_key" field.

func EncryptedOperatorRsaPublicKeyHasSuffix

func EncryptedOperatorRsaPublicKeyHasSuffix(v string) predicate.App

EncryptedOperatorRsaPublicKeyHasSuffix applies the HasSuffix predicate on the "encrypted_operator_rsa_public_key" field.

func EncryptedOperatorRsaPublicKeyIn

func EncryptedOperatorRsaPublicKeyIn(vs ...string) predicate.App

EncryptedOperatorRsaPublicKeyIn applies the In predicate on the "encrypted_operator_rsa_public_key" field.

func EncryptedOperatorRsaPublicKeyIsNil

func EncryptedOperatorRsaPublicKeyIsNil() predicate.App

EncryptedOperatorRsaPublicKeyIsNil applies the IsNil predicate on the "encrypted_operator_rsa_public_key" field.

func EncryptedOperatorRsaPublicKeyLT

func EncryptedOperatorRsaPublicKeyLT(v string) predicate.App

EncryptedOperatorRsaPublicKeyLT applies the LT predicate on the "encrypted_operator_rsa_public_key" field.

func EncryptedOperatorRsaPublicKeyLTE

func EncryptedOperatorRsaPublicKeyLTE(v string) predicate.App

EncryptedOperatorRsaPublicKeyLTE applies the LTE predicate on the "encrypted_operator_rsa_public_key" field.

func EncryptedOperatorRsaPublicKeyNEQ

func EncryptedOperatorRsaPublicKeyNEQ(v string) predicate.App

EncryptedOperatorRsaPublicKeyNEQ applies the NEQ predicate on the "encrypted_operator_rsa_public_key" field.

func EncryptedOperatorRsaPublicKeyNotIn

func EncryptedOperatorRsaPublicKeyNotIn(vs ...string) predicate.App

EncryptedOperatorRsaPublicKeyNotIn applies the NotIn predicate on the "encrypted_operator_rsa_public_key" field.

func EncryptedOperatorRsaPublicKeyNotNil

func EncryptedOperatorRsaPublicKeyNotNil() predicate.App

EncryptedOperatorRsaPublicKeyNotNil applies the NotNil predicate on the "encrypted_operator_rsa_public_key" field.

func ID

func ID(id int) predicate.App

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id int) predicate.App

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id int) predicate.App

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id int) predicate.App

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...int) predicate.App

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id int) predicate.App

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id int) predicate.App

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id int) predicate.App

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...int) predicate.App

IDNotIn applies the NotIn predicate on the ID field.

func IPWhitelistIsNil

func IPWhitelistIsNil() predicate.App

IPWhitelistIsNil applies the IsNil predicate on the "ip_whitelist" field.

func IPWhitelistNotNil

func IPWhitelistNotNil() predicate.App

IPWhitelistNotNil applies the NotNil predicate on the "ip_whitelist" field.

func Not

func Not(p predicate.App) predicate.App

Not applies the not operator on the given predicate.

func OperatorID

func OperatorID(v int) predicate.App

OperatorID applies equality check predicate on the "operator_id" field. It's identical to OperatorIDEQ.

func OperatorIDEQ

func OperatorIDEQ(v int) predicate.App

OperatorIDEQ applies the EQ predicate on the "operator_id" field.

func OperatorIDGT

func OperatorIDGT(v int) predicate.App

OperatorIDGT applies the GT predicate on the "operator_id" field.

func OperatorIDGTE

func OperatorIDGTE(v int) predicate.App

OperatorIDGTE applies the GTE predicate on the "operator_id" field.

func OperatorIDIn

func OperatorIDIn(vs ...int) predicate.App

OperatorIDIn applies the In predicate on the "operator_id" field.

func OperatorIDIsNil

func OperatorIDIsNil() predicate.App

OperatorIDIsNil applies the IsNil predicate on the "operator_id" field.

func OperatorIDLT

func OperatorIDLT(v int) predicate.App

OperatorIDLT applies the LT predicate on the "operator_id" field.

func OperatorIDLTE

func OperatorIDLTE(v int) predicate.App

OperatorIDLTE applies the LTE predicate on the "operator_id" field.

func OperatorIDNEQ

func OperatorIDNEQ(v int) predicate.App

OperatorIDNEQ applies the NEQ predicate on the "operator_id" field.

func OperatorIDNotIn

func OperatorIDNotIn(vs ...int) predicate.App

OperatorIDNotIn applies the NotIn predicate on the "operator_id" field.

func OperatorIDNotNil

func OperatorIDNotNil() predicate.App

OperatorIDNotNil applies the NotNil predicate on the "operator_id" field.

func Or

func Or(predicates ...predicate.App) predicate.App

Or groups predicates with the OR operator between them.

func Status

func Status(v int) predicate.App

Status applies equality check predicate on the "status" field. It's identical to StatusEQ.

func StatusEQ

func StatusEQ(v int) predicate.App

StatusEQ applies the EQ predicate on the "status" field.

func StatusGT

func StatusGT(v int) predicate.App

StatusGT applies the GT predicate on the "status" field.

func StatusGTE

func StatusGTE(v int) predicate.App

StatusGTE applies the GTE predicate on the "status" field.

func StatusIn

func StatusIn(vs ...int) predicate.App

StatusIn applies the In predicate on the "status" field.

func StatusIsNil

func StatusIsNil() predicate.App

StatusIsNil applies the IsNil predicate on the "status" field.

func StatusLT

func StatusLT(v int) predicate.App

StatusLT applies the LT predicate on the "status" field.

func StatusLTE

func StatusLTE(v int) predicate.App

StatusLTE applies the LTE predicate on the "status" field.

func StatusNEQ

func StatusNEQ(v int) predicate.App

StatusNEQ applies the NEQ predicate on the "status" field.

func StatusNotIn

func StatusNotIn(vs ...int) predicate.App

StatusNotIn applies the NotIn predicate on the "status" field.

func StatusNotNil

func StatusNotNil() predicate.App

StatusNotNil applies the NotNil predicate on the "status" field.

func Title

func Title(v string) predicate.App

Title applies equality check predicate on the "title" field. It's identical to TitleEQ.

func TitleContains

func TitleContains(v string) predicate.App

TitleContains applies the Contains predicate on the "title" field.

func TitleContainsFold

func TitleContainsFold(v string) predicate.App

TitleContainsFold applies the ContainsFold predicate on the "title" field.

func TitleEQ

func TitleEQ(v string) predicate.App

TitleEQ applies the EQ predicate on the "title" field.

func TitleEqualFold

func TitleEqualFold(v string) predicate.App

TitleEqualFold applies the EqualFold predicate on the "title" field.

func TitleGT

func TitleGT(v string) predicate.App

TitleGT applies the GT predicate on the "title" field.

func TitleGTE

func TitleGTE(v string) predicate.App

TitleGTE applies the GTE predicate on the "title" field.

func TitleHasPrefix

func TitleHasPrefix(v string) predicate.App

TitleHasPrefix applies the HasPrefix predicate on the "title" field.

func TitleHasSuffix

func TitleHasSuffix(v string) predicate.App

TitleHasSuffix applies the HasSuffix predicate on the "title" field.

func TitleIn

func TitleIn(vs ...string) predicate.App

TitleIn applies the In predicate on the "title" field.

func TitleIsNil

func TitleIsNil() predicate.App

TitleIsNil applies the IsNil predicate on the "title" field.

func TitleLT

func TitleLT(v string) predicate.App

TitleLT applies the LT predicate on the "title" field.

func TitleLTE

func TitleLTE(v string) predicate.App

TitleLTE applies the LTE predicate on the "title" field.

func TitleNEQ

func TitleNEQ(v string) predicate.App

TitleNEQ applies the NEQ predicate on the "title" field.

func TitleNotIn

func TitleNotIn(vs ...string) predicate.App

TitleNotIn applies the NotIn predicate on the "title" field.

func TitleNotNil

func TitleNotNil() predicate.App

TitleNotNil applies the NotNil predicate on the "title" field.

func UpdatedAt

func UpdatedAt(v time.Time) predicate.App

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

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.App

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

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.App

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

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.App

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

func UpdatedAtIn

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

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

func UpdatedAtIsNil

func UpdatedAtIsNil() predicate.App

UpdatedAtIsNil applies the IsNil predicate on the "updated_at" field.

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.App

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

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.App

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

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.App

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

func UpdatedAtNotIn

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

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

func UpdatedAtNotNil

func UpdatedAtNotNil() predicate.App

UpdatedAtNotNil applies the NotNil 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

This section is empty.

Jump to

Keyboard shortcuts

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