settings

package
v0.0.0-...-33a8a84 Latest Latest
Warning

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

Go to latest
Published: Feb 14, 2025 License: Apache-2.0 Imports: 3 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the settings type in the database.
	Label = "settings"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldLanguage holds the string denoting the language field in the database.
	FieldLanguage = "language"
	// FieldOrganization holds the string denoting the organization field in the database.
	FieldOrganization = "organization"
	// FieldPostalAddress holds the string denoting the postal_address field in the database.
	FieldPostalAddress = "postal_address"
	// FieldPostalCode holds the string denoting the postal_code field in the database.
	FieldPostalCode = "postal_code"
	// FieldLocality holds the string denoting the locality field in the database.
	FieldLocality = "locality"
	// FieldProvince holds the string denoting the province field in the database.
	FieldProvince = "province"
	// FieldState holds the string denoting the state field in the database.
	FieldState = "state"
	// FieldCountry holds the string denoting the country field in the database.
	FieldCountry = "country"
	// FieldSMTPServer holds the string denoting the smtp_server field in the database.
	FieldSMTPServer = "smtp_server"
	// FieldSMTPPort holds the string denoting the smtp_port field in the database.
	FieldSMTPPort = "smtp_port"
	// FieldSMTPUser holds the string denoting the smtp_user field in the database.
	FieldSMTPUser = "smtp_user"
	// FieldSMTPPassword holds the string denoting the smtp_password field in the database.
	FieldSMTPPassword = "smtp_password"
	// FieldSMTPAuth holds the string denoting the smtp_auth field in the database.
	FieldSMTPAuth = "smtp_auth"
	// FieldSMTPTLS holds the string denoting the smtp_tls field in the database.
	FieldSMTPTLS = "smtp_tls"
	// FieldSMTPStarttls holds the string denoting the smtp_starttls field in the database.
	FieldSMTPStarttls = "smtp_starttls"
	// FieldNatsServer holds the string denoting the nats_server field in the database.
	FieldNatsServer = "nats_server"
	// FieldNatsPort holds the string denoting the nats_port field in the database.
	FieldNatsPort = "nats_port"
	// FieldMessageFrom holds the string denoting the message_from field in the database.
	FieldMessageFrom = "message_from"
	// FieldMaxUploadSize holds the string denoting the max_upload_size field in the database.
	FieldMaxUploadSize = "max_upload_size"
	// FieldUserCertYearsValid holds the string denoting the user_cert_years_valid field in the database.
	FieldUserCertYearsValid = "user_cert_years_valid"
	// FieldNatsRequestTimeoutSeconds holds the string denoting the nats_request_timeout_seconds field in the database.
	FieldNatsRequestTimeoutSeconds = "nats_request_timeout_seconds"
	// FieldRefreshTimeInMinutes holds the string denoting the refresh_time_in_minutes field in the database.
	FieldRefreshTimeInMinutes = "refresh_time_in_minutes"
	// FieldSessionLifetimeInMinutes holds the string denoting the session_lifetime_in_minutes field in the database.
	FieldSessionLifetimeInMinutes = "session_lifetime_in_minutes"
	// FieldUpdateChannel holds the string denoting the update_channel field in the database.
	FieldUpdateChannel = "update_channel"
	// FieldCreated holds the string denoting the created field in the database.
	FieldCreated = "created"
	// FieldModified holds the string denoting the modified field in the database.
	FieldModified = "modified"
	// FieldAgentReportFrequenceInMinutes holds the string denoting the agent_report_frequence_in_minutes field in the database.
	FieldAgentReportFrequenceInMinutes = "agent_report_frequence_in_minutes"
	// FieldRequestVncPin holds the string denoting the request_vnc_pin field in the database.
	FieldRequestVncPin = "request_vnc_pin"
	// Table holds the table name of the settings in the database.
	Table = "settings"
)

Variables

View Source
var (
	// DefaultCountry holds the default value on creation for the "country" field.
	DefaultCountry string
	// DefaultSMTPPort holds the default value on creation for the "smtp_port" field.
	DefaultSMTPPort int
	// DefaultSMTPAuth holds the default value on creation for the "smtp_auth" field.
	DefaultSMTPAuth string
	// DefaultSMTPTLS holds the default value on creation for the "smtp_tls" field.
	DefaultSMTPTLS bool
	// DefaultSMTPStarttls holds the default value on creation for the "smtp_starttls" field.
	DefaultSMTPStarttls bool
	// DefaultMaxUploadSize holds the default value on creation for the "max_upload_size" field.
	DefaultMaxUploadSize string
	// DefaultUserCertYearsValid holds the default value on creation for the "user_cert_years_valid" field.
	DefaultUserCertYearsValid int
	// DefaultNatsRequestTimeoutSeconds holds the default value on creation for the "nats_request_timeout_seconds" field.
	DefaultNatsRequestTimeoutSeconds int
	// DefaultRefreshTimeInMinutes holds the default value on creation for the "refresh_time_in_minutes" field.
	DefaultRefreshTimeInMinutes int
	// DefaultSessionLifetimeInMinutes holds the default value on creation for the "session_lifetime_in_minutes" field.
	DefaultSessionLifetimeInMinutes int
	// DefaultUpdateChannel holds the default value on creation for the "update_channel" field.
	DefaultUpdateChannel string
	// DefaultCreated holds the default value on creation for the "created" field.
	DefaultCreated func() time.Time
	// DefaultModified holds the default value on creation for the "modified" field.
	DefaultModified func() time.Time
	// UpdateDefaultModified holds the default value on update for the "modified" field.
	UpdateDefaultModified func() time.Time
	// DefaultAgentReportFrequenceInMinutes holds the default value on creation for the "agent_report_frequence_in_minutes" field.
	DefaultAgentReportFrequenceInMinutes int
	// DefaultRequestVncPin holds the default value on creation for the "request_vnc_pin" field.
	DefaultRequestVncPin bool
)

Columns holds all SQL columns for settings fields.

Functions

func AgentReportFrequenceInMinutes

func AgentReportFrequenceInMinutes(v int) predicate.Settings

AgentReportFrequenceInMinutes applies equality check predicate on the "agent_report_frequence_in_minutes" field. It's identical to AgentReportFrequenceInMinutesEQ.

func AgentReportFrequenceInMinutesEQ

func AgentReportFrequenceInMinutesEQ(v int) predicate.Settings

AgentReportFrequenceInMinutesEQ applies the EQ predicate on the "agent_report_frequence_in_minutes" field.

func AgentReportFrequenceInMinutesGT

func AgentReportFrequenceInMinutesGT(v int) predicate.Settings

AgentReportFrequenceInMinutesGT applies the GT predicate on the "agent_report_frequence_in_minutes" field.

func AgentReportFrequenceInMinutesGTE

func AgentReportFrequenceInMinutesGTE(v int) predicate.Settings

AgentReportFrequenceInMinutesGTE applies the GTE predicate on the "agent_report_frequence_in_minutes" field.

func AgentReportFrequenceInMinutesIn

func AgentReportFrequenceInMinutesIn(vs ...int) predicate.Settings

AgentReportFrequenceInMinutesIn applies the In predicate on the "agent_report_frequence_in_minutes" field.

func AgentReportFrequenceInMinutesIsNil

func AgentReportFrequenceInMinutesIsNil() predicate.Settings

AgentReportFrequenceInMinutesIsNil applies the IsNil predicate on the "agent_report_frequence_in_minutes" field.

func AgentReportFrequenceInMinutesLT

func AgentReportFrequenceInMinutesLT(v int) predicate.Settings

AgentReportFrequenceInMinutesLT applies the LT predicate on the "agent_report_frequence_in_minutes" field.

func AgentReportFrequenceInMinutesLTE

func AgentReportFrequenceInMinutesLTE(v int) predicate.Settings

AgentReportFrequenceInMinutesLTE applies the LTE predicate on the "agent_report_frequence_in_minutes" field.

func AgentReportFrequenceInMinutesNEQ

func AgentReportFrequenceInMinutesNEQ(v int) predicate.Settings

AgentReportFrequenceInMinutesNEQ applies the NEQ predicate on the "agent_report_frequence_in_minutes" field.

func AgentReportFrequenceInMinutesNotIn

func AgentReportFrequenceInMinutesNotIn(vs ...int) predicate.Settings

AgentReportFrequenceInMinutesNotIn applies the NotIn predicate on the "agent_report_frequence_in_minutes" field.

func AgentReportFrequenceInMinutesNotNil

func AgentReportFrequenceInMinutesNotNil() predicate.Settings

AgentReportFrequenceInMinutesNotNil applies the NotNil predicate on the "agent_report_frequence_in_minutes" field.

func And

func And(predicates ...predicate.Settings) predicate.Settings

And groups predicates with the AND operator between them.

func Country

func Country(v string) predicate.Settings

Country applies equality check predicate on the "country" field. It's identical to CountryEQ.

func CountryContains

func CountryContains(v string) predicate.Settings

CountryContains applies the Contains predicate on the "country" field.

func CountryContainsFold

func CountryContainsFold(v string) predicate.Settings

CountryContainsFold applies the ContainsFold predicate on the "country" field.

func CountryEQ

func CountryEQ(v string) predicate.Settings

CountryEQ applies the EQ predicate on the "country" field.

func CountryEqualFold

func CountryEqualFold(v string) predicate.Settings

CountryEqualFold applies the EqualFold predicate on the "country" field.

func CountryGT

func CountryGT(v string) predicate.Settings

CountryGT applies the GT predicate on the "country" field.

func CountryGTE

func CountryGTE(v string) predicate.Settings

CountryGTE applies the GTE predicate on the "country" field.

func CountryHasPrefix

func CountryHasPrefix(v string) predicate.Settings

CountryHasPrefix applies the HasPrefix predicate on the "country" field.

func CountryHasSuffix

func CountryHasSuffix(v string) predicate.Settings

CountryHasSuffix applies the HasSuffix predicate on the "country" field.

func CountryIn

func CountryIn(vs ...string) predicate.Settings

CountryIn applies the In predicate on the "country" field.

func CountryIsNil

func CountryIsNil() predicate.Settings

CountryIsNil applies the IsNil predicate on the "country" field.

func CountryLT

func CountryLT(v string) predicate.Settings

CountryLT applies the LT predicate on the "country" field.

func CountryLTE

func CountryLTE(v string) predicate.Settings

CountryLTE applies the LTE predicate on the "country" field.

func CountryNEQ

func CountryNEQ(v string) predicate.Settings

CountryNEQ applies the NEQ predicate on the "country" field.

func CountryNotIn

func CountryNotIn(vs ...string) predicate.Settings

CountryNotIn applies the NotIn predicate on the "country" field.

func CountryNotNil

func CountryNotNil() predicate.Settings

CountryNotNil applies the NotNil predicate on the "country" field.

func Created

func Created(v time.Time) predicate.Settings

Created applies equality check predicate on the "created" field. It's identical to CreatedEQ.

func CreatedEQ

func CreatedEQ(v time.Time) predicate.Settings

CreatedEQ applies the EQ predicate on the "created" field.

func CreatedGT

func CreatedGT(v time.Time) predicate.Settings

CreatedGT applies the GT predicate on the "created" field.

func CreatedGTE

func CreatedGTE(v time.Time) predicate.Settings

CreatedGTE applies the GTE predicate on the "created" field.

func CreatedIn

func CreatedIn(vs ...time.Time) predicate.Settings

CreatedIn applies the In predicate on the "created" field.

func CreatedIsNil

func CreatedIsNil() predicate.Settings

CreatedIsNil applies the IsNil predicate on the "created" field.

func CreatedLT

func CreatedLT(v time.Time) predicate.Settings

CreatedLT applies the LT predicate on the "created" field.

func CreatedLTE

func CreatedLTE(v time.Time) predicate.Settings

CreatedLTE applies the LTE predicate on the "created" field.

func CreatedNEQ

func CreatedNEQ(v time.Time) predicate.Settings

CreatedNEQ applies the NEQ predicate on the "created" field.

func CreatedNotIn

func CreatedNotIn(vs ...time.Time) predicate.Settings

CreatedNotIn applies the NotIn predicate on the "created" field.

func CreatedNotNil

func CreatedNotNil() predicate.Settings

CreatedNotNil applies the NotNil predicate on the "created" field.

func ID

func ID(id int) predicate.Settings

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id int) predicate.Settings

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id int) predicate.Settings

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id int) predicate.Settings

IDGTE applies the GTE predicate on the ID field.

func IDIn

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

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id int) predicate.Settings

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id int) predicate.Settings

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id int) predicate.Settings

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

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

IDNotIn applies the NotIn predicate on the ID field.

func Language

func Language(v string) predicate.Settings

Language applies equality check predicate on the "language" field. It's identical to LanguageEQ.

func LanguageContains

func LanguageContains(v string) predicate.Settings

LanguageContains applies the Contains predicate on the "language" field.

func LanguageContainsFold

func LanguageContainsFold(v string) predicate.Settings

LanguageContainsFold applies the ContainsFold predicate on the "language" field.

func LanguageEQ

func LanguageEQ(v string) predicate.Settings

LanguageEQ applies the EQ predicate on the "language" field.

func LanguageEqualFold

func LanguageEqualFold(v string) predicate.Settings

LanguageEqualFold applies the EqualFold predicate on the "language" field.

func LanguageGT

func LanguageGT(v string) predicate.Settings

LanguageGT applies the GT predicate on the "language" field.

func LanguageGTE

func LanguageGTE(v string) predicate.Settings

LanguageGTE applies the GTE predicate on the "language" field.

func LanguageHasPrefix

func LanguageHasPrefix(v string) predicate.Settings

LanguageHasPrefix applies the HasPrefix predicate on the "language" field.

func LanguageHasSuffix

func LanguageHasSuffix(v string) predicate.Settings

LanguageHasSuffix applies the HasSuffix predicate on the "language" field.

func LanguageIn

func LanguageIn(vs ...string) predicate.Settings

LanguageIn applies the In predicate on the "language" field.

func LanguageIsNil

func LanguageIsNil() predicate.Settings

LanguageIsNil applies the IsNil predicate on the "language" field.

func LanguageLT

func LanguageLT(v string) predicate.Settings

LanguageLT applies the LT predicate on the "language" field.

func LanguageLTE

func LanguageLTE(v string) predicate.Settings

LanguageLTE applies the LTE predicate on the "language" field.

func LanguageNEQ

func LanguageNEQ(v string) predicate.Settings

LanguageNEQ applies the NEQ predicate on the "language" field.

func LanguageNotIn

func LanguageNotIn(vs ...string) predicate.Settings

LanguageNotIn applies the NotIn predicate on the "language" field.

func LanguageNotNil

func LanguageNotNil() predicate.Settings

LanguageNotNil applies the NotNil predicate on the "language" field.

func Locality

func Locality(v string) predicate.Settings

Locality applies equality check predicate on the "locality" field. It's identical to LocalityEQ.

func LocalityContains

func LocalityContains(v string) predicate.Settings

LocalityContains applies the Contains predicate on the "locality" field.

func LocalityContainsFold

func LocalityContainsFold(v string) predicate.Settings

LocalityContainsFold applies the ContainsFold predicate on the "locality" field.

func LocalityEQ

func LocalityEQ(v string) predicate.Settings

LocalityEQ applies the EQ predicate on the "locality" field.

func LocalityEqualFold

func LocalityEqualFold(v string) predicate.Settings

LocalityEqualFold applies the EqualFold predicate on the "locality" field.

func LocalityGT

func LocalityGT(v string) predicate.Settings

LocalityGT applies the GT predicate on the "locality" field.

func LocalityGTE

func LocalityGTE(v string) predicate.Settings

LocalityGTE applies the GTE predicate on the "locality" field.

func LocalityHasPrefix

func LocalityHasPrefix(v string) predicate.Settings

LocalityHasPrefix applies the HasPrefix predicate on the "locality" field.

func LocalityHasSuffix

func LocalityHasSuffix(v string) predicate.Settings

LocalityHasSuffix applies the HasSuffix predicate on the "locality" field.

func LocalityIn

func LocalityIn(vs ...string) predicate.Settings

LocalityIn applies the In predicate on the "locality" field.

func LocalityIsNil

func LocalityIsNil() predicate.Settings

LocalityIsNil applies the IsNil predicate on the "locality" field.

func LocalityLT

func LocalityLT(v string) predicate.Settings

LocalityLT applies the LT predicate on the "locality" field.

func LocalityLTE

func LocalityLTE(v string) predicate.Settings

LocalityLTE applies the LTE predicate on the "locality" field.

func LocalityNEQ

func LocalityNEQ(v string) predicate.Settings

LocalityNEQ applies the NEQ predicate on the "locality" field.

func LocalityNotIn

func LocalityNotIn(vs ...string) predicate.Settings

LocalityNotIn applies the NotIn predicate on the "locality" field.

func LocalityNotNil

func LocalityNotNil() predicate.Settings

LocalityNotNil applies the NotNil predicate on the "locality" field.

func MaxUploadSize

func MaxUploadSize(v string) predicate.Settings

MaxUploadSize applies equality check predicate on the "max_upload_size" field. It's identical to MaxUploadSizeEQ.

func MaxUploadSizeContains

func MaxUploadSizeContains(v string) predicate.Settings

MaxUploadSizeContains applies the Contains predicate on the "max_upload_size" field.

func MaxUploadSizeContainsFold

func MaxUploadSizeContainsFold(v string) predicate.Settings

MaxUploadSizeContainsFold applies the ContainsFold predicate on the "max_upload_size" field.

func MaxUploadSizeEQ

func MaxUploadSizeEQ(v string) predicate.Settings

MaxUploadSizeEQ applies the EQ predicate on the "max_upload_size" field.

func MaxUploadSizeEqualFold

func MaxUploadSizeEqualFold(v string) predicate.Settings

MaxUploadSizeEqualFold applies the EqualFold predicate on the "max_upload_size" field.

func MaxUploadSizeGT

func MaxUploadSizeGT(v string) predicate.Settings

MaxUploadSizeGT applies the GT predicate on the "max_upload_size" field.

func MaxUploadSizeGTE

func MaxUploadSizeGTE(v string) predicate.Settings

MaxUploadSizeGTE applies the GTE predicate on the "max_upload_size" field.

func MaxUploadSizeHasPrefix

func MaxUploadSizeHasPrefix(v string) predicate.Settings

MaxUploadSizeHasPrefix applies the HasPrefix predicate on the "max_upload_size" field.

func MaxUploadSizeHasSuffix

func MaxUploadSizeHasSuffix(v string) predicate.Settings

MaxUploadSizeHasSuffix applies the HasSuffix predicate on the "max_upload_size" field.

func MaxUploadSizeIn

func MaxUploadSizeIn(vs ...string) predicate.Settings

MaxUploadSizeIn applies the In predicate on the "max_upload_size" field.

func MaxUploadSizeIsNil

func MaxUploadSizeIsNil() predicate.Settings

MaxUploadSizeIsNil applies the IsNil predicate on the "max_upload_size" field.

func MaxUploadSizeLT

func MaxUploadSizeLT(v string) predicate.Settings

MaxUploadSizeLT applies the LT predicate on the "max_upload_size" field.

func MaxUploadSizeLTE

func MaxUploadSizeLTE(v string) predicate.Settings

MaxUploadSizeLTE applies the LTE predicate on the "max_upload_size" field.

func MaxUploadSizeNEQ

func MaxUploadSizeNEQ(v string) predicate.Settings

MaxUploadSizeNEQ applies the NEQ predicate on the "max_upload_size" field.

func MaxUploadSizeNotIn

func MaxUploadSizeNotIn(vs ...string) predicate.Settings

MaxUploadSizeNotIn applies the NotIn predicate on the "max_upload_size" field.

func MaxUploadSizeNotNil

func MaxUploadSizeNotNil() predicate.Settings

MaxUploadSizeNotNil applies the NotNil predicate on the "max_upload_size" field.

func MessageFrom

func MessageFrom(v string) predicate.Settings

MessageFrom applies equality check predicate on the "message_from" field. It's identical to MessageFromEQ.

func MessageFromContains

func MessageFromContains(v string) predicate.Settings

MessageFromContains applies the Contains predicate on the "message_from" field.

func MessageFromContainsFold

func MessageFromContainsFold(v string) predicate.Settings

MessageFromContainsFold applies the ContainsFold predicate on the "message_from" field.

func MessageFromEQ

func MessageFromEQ(v string) predicate.Settings

MessageFromEQ applies the EQ predicate on the "message_from" field.

func MessageFromEqualFold

func MessageFromEqualFold(v string) predicate.Settings

MessageFromEqualFold applies the EqualFold predicate on the "message_from" field.

func MessageFromGT

func MessageFromGT(v string) predicate.Settings

MessageFromGT applies the GT predicate on the "message_from" field.

func MessageFromGTE

func MessageFromGTE(v string) predicate.Settings

MessageFromGTE applies the GTE predicate on the "message_from" field.

func MessageFromHasPrefix

func MessageFromHasPrefix(v string) predicate.Settings

MessageFromHasPrefix applies the HasPrefix predicate on the "message_from" field.

func MessageFromHasSuffix

func MessageFromHasSuffix(v string) predicate.Settings

MessageFromHasSuffix applies the HasSuffix predicate on the "message_from" field.

func MessageFromIn

func MessageFromIn(vs ...string) predicate.Settings

MessageFromIn applies the In predicate on the "message_from" field.

func MessageFromIsNil

func MessageFromIsNil() predicate.Settings

MessageFromIsNil applies the IsNil predicate on the "message_from" field.

func MessageFromLT

func MessageFromLT(v string) predicate.Settings

MessageFromLT applies the LT predicate on the "message_from" field.

func MessageFromLTE

func MessageFromLTE(v string) predicate.Settings

MessageFromLTE applies the LTE predicate on the "message_from" field.

func MessageFromNEQ

func MessageFromNEQ(v string) predicate.Settings

MessageFromNEQ applies the NEQ predicate on the "message_from" field.

func MessageFromNotIn

func MessageFromNotIn(vs ...string) predicate.Settings

MessageFromNotIn applies the NotIn predicate on the "message_from" field.

func MessageFromNotNil

func MessageFromNotNil() predicate.Settings

MessageFromNotNil applies the NotNil predicate on the "message_from" field.

func Modified

func Modified(v time.Time) predicate.Settings

Modified applies equality check predicate on the "modified" field. It's identical to ModifiedEQ.

func ModifiedEQ

func ModifiedEQ(v time.Time) predicate.Settings

ModifiedEQ applies the EQ predicate on the "modified" field.

func ModifiedGT

func ModifiedGT(v time.Time) predicate.Settings

ModifiedGT applies the GT predicate on the "modified" field.

func ModifiedGTE

func ModifiedGTE(v time.Time) predicate.Settings

ModifiedGTE applies the GTE predicate on the "modified" field.

func ModifiedIn

func ModifiedIn(vs ...time.Time) predicate.Settings

ModifiedIn applies the In predicate on the "modified" field.

func ModifiedIsNil

func ModifiedIsNil() predicate.Settings

ModifiedIsNil applies the IsNil predicate on the "modified" field.

func ModifiedLT

func ModifiedLT(v time.Time) predicate.Settings

ModifiedLT applies the LT predicate on the "modified" field.

func ModifiedLTE

func ModifiedLTE(v time.Time) predicate.Settings

ModifiedLTE applies the LTE predicate on the "modified" field.

func ModifiedNEQ

func ModifiedNEQ(v time.Time) predicate.Settings

ModifiedNEQ applies the NEQ predicate on the "modified" field.

func ModifiedNotIn

func ModifiedNotIn(vs ...time.Time) predicate.Settings

ModifiedNotIn applies the NotIn predicate on the "modified" field.

func ModifiedNotNil

func ModifiedNotNil() predicate.Settings

ModifiedNotNil applies the NotNil predicate on the "modified" field.

func NatsPort

func NatsPort(v string) predicate.Settings

NatsPort applies equality check predicate on the "nats_port" field. It's identical to NatsPortEQ.

func NatsPortContains

func NatsPortContains(v string) predicate.Settings

NatsPortContains applies the Contains predicate on the "nats_port" field.

func NatsPortContainsFold

func NatsPortContainsFold(v string) predicate.Settings

NatsPortContainsFold applies the ContainsFold predicate on the "nats_port" field.

func NatsPortEQ

func NatsPortEQ(v string) predicate.Settings

NatsPortEQ applies the EQ predicate on the "nats_port" field.

func NatsPortEqualFold

func NatsPortEqualFold(v string) predicate.Settings

NatsPortEqualFold applies the EqualFold predicate on the "nats_port" field.

func NatsPortGT

func NatsPortGT(v string) predicate.Settings

NatsPortGT applies the GT predicate on the "nats_port" field.

func NatsPortGTE

func NatsPortGTE(v string) predicate.Settings

NatsPortGTE applies the GTE predicate on the "nats_port" field.

func NatsPortHasPrefix

func NatsPortHasPrefix(v string) predicate.Settings

NatsPortHasPrefix applies the HasPrefix predicate on the "nats_port" field.

func NatsPortHasSuffix

func NatsPortHasSuffix(v string) predicate.Settings

NatsPortHasSuffix applies the HasSuffix predicate on the "nats_port" field.

func NatsPortIn

func NatsPortIn(vs ...string) predicate.Settings

NatsPortIn applies the In predicate on the "nats_port" field.

func NatsPortIsNil

func NatsPortIsNil() predicate.Settings

NatsPortIsNil applies the IsNil predicate on the "nats_port" field.

func NatsPortLT

func NatsPortLT(v string) predicate.Settings

NatsPortLT applies the LT predicate on the "nats_port" field.

func NatsPortLTE

func NatsPortLTE(v string) predicate.Settings

NatsPortLTE applies the LTE predicate on the "nats_port" field.

func NatsPortNEQ

func NatsPortNEQ(v string) predicate.Settings

NatsPortNEQ applies the NEQ predicate on the "nats_port" field.

func NatsPortNotIn

func NatsPortNotIn(vs ...string) predicate.Settings

NatsPortNotIn applies the NotIn predicate on the "nats_port" field.

func NatsPortNotNil

func NatsPortNotNil() predicate.Settings

NatsPortNotNil applies the NotNil predicate on the "nats_port" field.

func NatsRequestTimeoutSeconds

func NatsRequestTimeoutSeconds(v int) predicate.Settings

NatsRequestTimeoutSeconds applies equality check predicate on the "nats_request_timeout_seconds" field. It's identical to NatsRequestTimeoutSecondsEQ.

func NatsRequestTimeoutSecondsEQ

func NatsRequestTimeoutSecondsEQ(v int) predicate.Settings

NatsRequestTimeoutSecondsEQ applies the EQ predicate on the "nats_request_timeout_seconds" field.

func NatsRequestTimeoutSecondsGT

func NatsRequestTimeoutSecondsGT(v int) predicate.Settings

NatsRequestTimeoutSecondsGT applies the GT predicate on the "nats_request_timeout_seconds" field.

func NatsRequestTimeoutSecondsGTE

func NatsRequestTimeoutSecondsGTE(v int) predicate.Settings

NatsRequestTimeoutSecondsGTE applies the GTE predicate on the "nats_request_timeout_seconds" field.

func NatsRequestTimeoutSecondsIn

func NatsRequestTimeoutSecondsIn(vs ...int) predicate.Settings

NatsRequestTimeoutSecondsIn applies the In predicate on the "nats_request_timeout_seconds" field.

func NatsRequestTimeoutSecondsIsNil

func NatsRequestTimeoutSecondsIsNil() predicate.Settings

NatsRequestTimeoutSecondsIsNil applies the IsNil predicate on the "nats_request_timeout_seconds" field.

func NatsRequestTimeoutSecondsLT

func NatsRequestTimeoutSecondsLT(v int) predicate.Settings

NatsRequestTimeoutSecondsLT applies the LT predicate on the "nats_request_timeout_seconds" field.

func NatsRequestTimeoutSecondsLTE

func NatsRequestTimeoutSecondsLTE(v int) predicate.Settings

NatsRequestTimeoutSecondsLTE applies the LTE predicate on the "nats_request_timeout_seconds" field.

func NatsRequestTimeoutSecondsNEQ

func NatsRequestTimeoutSecondsNEQ(v int) predicate.Settings

NatsRequestTimeoutSecondsNEQ applies the NEQ predicate on the "nats_request_timeout_seconds" field.

func NatsRequestTimeoutSecondsNotIn

func NatsRequestTimeoutSecondsNotIn(vs ...int) predicate.Settings

NatsRequestTimeoutSecondsNotIn applies the NotIn predicate on the "nats_request_timeout_seconds" field.

func NatsRequestTimeoutSecondsNotNil

func NatsRequestTimeoutSecondsNotNil() predicate.Settings

NatsRequestTimeoutSecondsNotNil applies the NotNil predicate on the "nats_request_timeout_seconds" field.

func NatsServer

func NatsServer(v string) predicate.Settings

NatsServer applies equality check predicate on the "nats_server" field. It's identical to NatsServerEQ.

func NatsServerContains

func NatsServerContains(v string) predicate.Settings

NatsServerContains applies the Contains predicate on the "nats_server" field.

func NatsServerContainsFold

func NatsServerContainsFold(v string) predicate.Settings

NatsServerContainsFold applies the ContainsFold predicate on the "nats_server" field.

func NatsServerEQ

func NatsServerEQ(v string) predicate.Settings

NatsServerEQ applies the EQ predicate on the "nats_server" field.

func NatsServerEqualFold

func NatsServerEqualFold(v string) predicate.Settings

NatsServerEqualFold applies the EqualFold predicate on the "nats_server" field.

func NatsServerGT

func NatsServerGT(v string) predicate.Settings

NatsServerGT applies the GT predicate on the "nats_server" field.

func NatsServerGTE

func NatsServerGTE(v string) predicate.Settings

NatsServerGTE applies the GTE predicate on the "nats_server" field.

func NatsServerHasPrefix

func NatsServerHasPrefix(v string) predicate.Settings

NatsServerHasPrefix applies the HasPrefix predicate on the "nats_server" field.

func NatsServerHasSuffix

func NatsServerHasSuffix(v string) predicate.Settings

NatsServerHasSuffix applies the HasSuffix predicate on the "nats_server" field.

func NatsServerIn

func NatsServerIn(vs ...string) predicate.Settings

NatsServerIn applies the In predicate on the "nats_server" field.

func NatsServerIsNil

func NatsServerIsNil() predicate.Settings

NatsServerIsNil applies the IsNil predicate on the "nats_server" field.

func NatsServerLT

func NatsServerLT(v string) predicate.Settings

NatsServerLT applies the LT predicate on the "nats_server" field.

func NatsServerLTE

func NatsServerLTE(v string) predicate.Settings

NatsServerLTE applies the LTE predicate on the "nats_server" field.

func NatsServerNEQ

func NatsServerNEQ(v string) predicate.Settings

NatsServerNEQ applies the NEQ predicate on the "nats_server" field.

func NatsServerNotIn

func NatsServerNotIn(vs ...string) predicate.Settings

NatsServerNotIn applies the NotIn predicate on the "nats_server" field.

func NatsServerNotNil

func NatsServerNotNil() predicate.Settings

NatsServerNotNil applies the NotNil predicate on the "nats_server" field.

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.Settings) predicate.Settings

Or groups predicates with the OR operator between them.

func Organization

func Organization(v string) predicate.Settings

Organization applies equality check predicate on the "organization" field. It's identical to OrganizationEQ.

func OrganizationContains

func OrganizationContains(v string) predicate.Settings

OrganizationContains applies the Contains predicate on the "organization" field.

func OrganizationContainsFold

func OrganizationContainsFold(v string) predicate.Settings

OrganizationContainsFold applies the ContainsFold predicate on the "organization" field.

func OrganizationEQ

func OrganizationEQ(v string) predicate.Settings

OrganizationEQ applies the EQ predicate on the "organization" field.

func OrganizationEqualFold

func OrganizationEqualFold(v string) predicate.Settings

OrganizationEqualFold applies the EqualFold predicate on the "organization" field.

func OrganizationGT

func OrganizationGT(v string) predicate.Settings

OrganizationGT applies the GT predicate on the "organization" field.

func OrganizationGTE

func OrganizationGTE(v string) predicate.Settings

OrganizationGTE applies the GTE predicate on the "organization" field.

func OrganizationHasPrefix

func OrganizationHasPrefix(v string) predicate.Settings

OrganizationHasPrefix applies the HasPrefix predicate on the "organization" field.

func OrganizationHasSuffix

func OrganizationHasSuffix(v string) predicate.Settings

OrganizationHasSuffix applies the HasSuffix predicate on the "organization" field.

func OrganizationIn

func OrganizationIn(vs ...string) predicate.Settings

OrganizationIn applies the In predicate on the "organization" field.

func OrganizationIsNil

func OrganizationIsNil() predicate.Settings

OrganizationIsNil applies the IsNil predicate on the "organization" field.

func OrganizationLT

func OrganizationLT(v string) predicate.Settings

OrganizationLT applies the LT predicate on the "organization" field.

func OrganizationLTE

func OrganizationLTE(v string) predicate.Settings

OrganizationLTE applies the LTE predicate on the "organization" field.

func OrganizationNEQ

func OrganizationNEQ(v string) predicate.Settings

OrganizationNEQ applies the NEQ predicate on the "organization" field.

func OrganizationNotIn

func OrganizationNotIn(vs ...string) predicate.Settings

OrganizationNotIn applies the NotIn predicate on the "organization" field.

func OrganizationNotNil

func OrganizationNotNil() predicate.Settings

OrganizationNotNil applies the NotNil predicate on the "organization" field.

func PostalAddress

func PostalAddress(v string) predicate.Settings

PostalAddress applies equality check predicate on the "postal_address" field. It's identical to PostalAddressEQ.

func PostalAddressContains

func PostalAddressContains(v string) predicate.Settings

PostalAddressContains applies the Contains predicate on the "postal_address" field.

func PostalAddressContainsFold

func PostalAddressContainsFold(v string) predicate.Settings

PostalAddressContainsFold applies the ContainsFold predicate on the "postal_address" field.

func PostalAddressEQ

func PostalAddressEQ(v string) predicate.Settings

PostalAddressEQ applies the EQ predicate on the "postal_address" field.

func PostalAddressEqualFold

func PostalAddressEqualFold(v string) predicate.Settings

PostalAddressEqualFold applies the EqualFold predicate on the "postal_address" field.

func PostalAddressGT

func PostalAddressGT(v string) predicate.Settings

PostalAddressGT applies the GT predicate on the "postal_address" field.

func PostalAddressGTE

func PostalAddressGTE(v string) predicate.Settings

PostalAddressGTE applies the GTE predicate on the "postal_address" field.

func PostalAddressHasPrefix

func PostalAddressHasPrefix(v string) predicate.Settings

PostalAddressHasPrefix applies the HasPrefix predicate on the "postal_address" field.

func PostalAddressHasSuffix

func PostalAddressHasSuffix(v string) predicate.Settings

PostalAddressHasSuffix applies the HasSuffix predicate on the "postal_address" field.

func PostalAddressIn

func PostalAddressIn(vs ...string) predicate.Settings

PostalAddressIn applies the In predicate on the "postal_address" field.

func PostalAddressIsNil

func PostalAddressIsNil() predicate.Settings

PostalAddressIsNil applies the IsNil predicate on the "postal_address" field.

func PostalAddressLT

func PostalAddressLT(v string) predicate.Settings

PostalAddressLT applies the LT predicate on the "postal_address" field.

func PostalAddressLTE

func PostalAddressLTE(v string) predicate.Settings

PostalAddressLTE applies the LTE predicate on the "postal_address" field.

func PostalAddressNEQ

func PostalAddressNEQ(v string) predicate.Settings

PostalAddressNEQ applies the NEQ predicate on the "postal_address" field.

func PostalAddressNotIn

func PostalAddressNotIn(vs ...string) predicate.Settings

PostalAddressNotIn applies the NotIn predicate on the "postal_address" field.

func PostalAddressNotNil

func PostalAddressNotNil() predicate.Settings

PostalAddressNotNil applies the NotNil predicate on the "postal_address" field.

func PostalCode

func PostalCode(v string) predicate.Settings

PostalCode applies equality check predicate on the "postal_code" field. It's identical to PostalCodeEQ.

func PostalCodeContains

func PostalCodeContains(v string) predicate.Settings

PostalCodeContains applies the Contains predicate on the "postal_code" field.

func PostalCodeContainsFold

func PostalCodeContainsFold(v string) predicate.Settings

PostalCodeContainsFold applies the ContainsFold predicate on the "postal_code" field.

func PostalCodeEQ

func PostalCodeEQ(v string) predicate.Settings

PostalCodeEQ applies the EQ predicate on the "postal_code" field.

func PostalCodeEqualFold

func PostalCodeEqualFold(v string) predicate.Settings

PostalCodeEqualFold applies the EqualFold predicate on the "postal_code" field.

func PostalCodeGT

func PostalCodeGT(v string) predicate.Settings

PostalCodeGT applies the GT predicate on the "postal_code" field.

func PostalCodeGTE

func PostalCodeGTE(v string) predicate.Settings

PostalCodeGTE applies the GTE predicate on the "postal_code" field.

func PostalCodeHasPrefix

func PostalCodeHasPrefix(v string) predicate.Settings

PostalCodeHasPrefix applies the HasPrefix predicate on the "postal_code" field.

func PostalCodeHasSuffix

func PostalCodeHasSuffix(v string) predicate.Settings

PostalCodeHasSuffix applies the HasSuffix predicate on the "postal_code" field.

func PostalCodeIn

func PostalCodeIn(vs ...string) predicate.Settings

PostalCodeIn applies the In predicate on the "postal_code" field.

func PostalCodeIsNil

func PostalCodeIsNil() predicate.Settings

PostalCodeIsNil applies the IsNil predicate on the "postal_code" field.

func PostalCodeLT

func PostalCodeLT(v string) predicate.Settings

PostalCodeLT applies the LT predicate on the "postal_code" field.

func PostalCodeLTE

func PostalCodeLTE(v string) predicate.Settings

PostalCodeLTE applies the LTE predicate on the "postal_code" field.

func PostalCodeNEQ

func PostalCodeNEQ(v string) predicate.Settings

PostalCodeNEQ applies the NEQ predicate on the "postal_code" field.

func PostalCodeNotIn

func PostalCodeNotIn(vs ...string) predicate.Settings

PostalCodeNotIn applies the NotIn predicate on the "postal_code" field.

func PostalCodeNotNil

func PostalCodeNotNil() predicate.Settings

PostalCodeNotNil applies the NotNil predicate on the "postal_code" field.

func Province

func Province(v string) predicate.Settings

Province applies equality check predicate on the "province" field. It's identical to ProvinceEQ.

func ProvinceContains

func ProvinceContains(v string) predicate.Settings

ProvinceContains applies the Contains predicate on the "province" field.

func ProvinceContainsFold

func ProvinceContainsFold(v string) predicate.Settings

ProvinceContainsFold applies the ContainsFold predicate on the "province" field.

func ProvinceEQ

func ProvinceEQ(v string) predicate.Settings

ProvinceEQ applies the EQ predicate on the "province" field.

func ProvinceEqualFold

func ProvinceEqualFold(v string) predicate.Settings

ProvinceEqualFold applies the EqualFold predicate on the "province" field.

func ProvinceGT

func ProvinceGT(v string) predicate.Settings

ProvinceGT applies the GT predicate on the "province" field.

func ProvinceGTE

func ProvinceGTE(v string) predicate.Settings

ProvinceGTE applies the GTE predicate on the "province" field.

func ProvinceHasPrefix

func ProvinceHasPrefix(v string) predicate.Settings

ProvinceHasPrefix applies the HasPrefix predicate on the "province" field.

func ProvinceHasSuffix

func ProvinceHasSuffix(v string) predicate.Settings

ProvinceHasSuffix applies the HasSuffix predicate on the "province" field.

func ProvinceIn

func ProvinceIn(vs ...string) predicate.Settings

ProvinceIn applies the In predicate on the "province" field.

func ProvinceIsNil

func ProvinceIsNil() predicate.Settings

ProvinceIsNil applies the IsNil predicate on the "province" field.

func ProvinceLT

func ProvinceLT(v string) predicate.Settings

ProvinceLT applies the LT predicate on the "province" field.

func ProvinceLTE

func ProvinceLTE(v string) predicate.Settings

ProvinceLTE applies the LTE predicate on the "province" field.

func ProvinceNEQ

func ProvinceNEQ(v string) predicate.Settings

ProvinceNEQ applies the NEQ predicate on the "province" field.

func ProvinceNotIn

func ProvinceNotIn(vs ...string) predicate.Settings

ProvinceNotIn applies the NotIn predicate on the "province" field.

func ProvinceNotNil

func ProvinceNotNil() predicate.Settings

ProvinceNotNil applies the NotNil predicate on the "province" field.

func RefreshTimeInMinutes

func RefreshTimeInMinutes(v int) predicate.Settings

RefreshTimeInMinutes applies equality check predicate on the "refresh_time_in_minutes" field. It's identical to RefreshTimeInMinutesEQ.

func RefreshTimeInMinutesEQ

func RefreshTimeInMinutesEQ(v int) predicate.Settings

RefreshTimeInMinutesEQ applies the EQ predicate on the "refresh_time_in_minutes" field.

func RefreshTimeInMinutesGT

func RefreshTimeInMinutesGT(v int) predicate.Settings

RefreshTimeInMinutesGT applies the GT predicate on the "refresh_time_in_minutes" field.

func RefreshTimeInMinutesGTE

func RefreshTimeInMinutesGTE(v int) predicate.Settings

RefreshTimeInMinutesGTE applies the GTE predicate on the "refresh_time_in_minutes" field.

func RefreshTimeInMinutesIn

func RefreshTimeInMinutesIn(vs ...int) predicate.Settings

RefreshTimeInMinutesIn applies the In predicate on the "refresh_time_in_minutes" field.

func RefreshTimeInMinutesIsNil

func RefreshTimeInMinutesIsNil() predicate.Settings

RefreshTimeInMinutesIsNil applies the IsNil predicate on the "refresh_time_in_minutes" field.

func RefreshTimeInMinutesLT

func RefreshTimeInMinutesLT(v int) predicate.Settings

RefreshTimeInMinutesLT applies the LT predicate on the "refresh_time_in_minutes" field.

func RefreshTimeInMinutesLTE

func RefreshTimeInMinutesLTE(v int) predicate.Settings

RefreshTimeInMinutesLTE applies the LTE predicate on the "refresh_time_in_minutes" field.

func RefreshTimeInMinutesNEQ

func RefreshTimeInMinutesNEQ(v int) predicate.Settings

RefreshTimeInMinutesNEQ applies the NEQ predicate on the "refresh_time_in_minutes" field.

func RefreshTimeInMinutesNotIn

func RefreshTimeInMinutesNotIn(vs ...int) predicate.Settings

RefreshTimeInMinutesNotIn applies the NotIn predicate on the "refresh_time_in_minutes" field.

func RefreshTimeInMinutesNotNil

func RefreshTimeInMinutesNotNil() predicate.Settings

RefreshTimeInMinutesNotNil applies the NotNil predicate on the "refresh_time_in_minutes" field.

func RequestVncPin

func RequestVncPin(v bool) predicate.Settings

RequestVncPin applies equality check predicate on the "request_vnc_pin" field. It's identical to RequestVncPinEQ.

func RequestVncPinEQ

func RequestVncPinEQ(v bool) predicate.Settings

RequestVncPinEQ applies the EQ predicate on the "request_vnc_pin" field.

func RequestVncPinIsNil

func RequestVncPinIsNil() predicate.Settings

RequestVncPinIsNil applies the IsNil predicate on the "request_vnc_pin" field.

func RequestVncPinNEQ

func RequestVncPinNEQ(v bool) predicate.Settings

RequestVncPinNEQ applies the NEQ predicate on the "request_vnc_pin" field.

func RequestVncPinNotNil

func RequestVncPinNotNil() predicate.Settings

RequestVncPinNotNil applies the NotNil predicate on the "request_vnc_pin" field.

func SMTPAuth

func SMTPAuth(v string) predicate.Settings

SMTPAuth applies equality check predicate on the "smtp_auth" field. It's identical to SMTPAuthEQ.

func SMTPAuthContains

func SMTPAuthContains(v string) predicate.Settings

SMTPAuthContains applies the Contains predicate on the "smtp_auth" field.

func SMTPAuthContainsFold

func SMTPAuthContainsFold(v string) predicate.Settings

SMTPAuthContainsFold applies the ContainsFold predicate on the "smtp_auth" field.

func SMTPAuthEQ

func SMTPAuthEQ(v string) predicate.Settings

SMTPAuthEQ applies the EQ predicate on the "smtp_auth" field.

func SMTPAuthEqualFold

func SMTPAuthEqualFold(v string) predicate.Settings

SMTPAuthEqualFold applies the EqualFold predicate on the "smtp_auth" field.

func SMTPAuthGT

func SMTPAuthGT(v string) predicate.Settings

SMTPAuthGT applies the GT predicate on the "smtp_auth" field.

func SMTPAuthGTE

func SMTPAuthGTE(v string) predicate.Settings

SMTPAuthGTE applies the GTE predicate on the "smtp_auth" field.

func SMTPAuthHasPrefix

func SMTPAuthHasPrefix(v string) predicate.Settings

SMTPAuthHasPrefix applies the HasPrefix predicate on the "smtp_auth" field.

func SMTPAuthHasSuffix

func SMTPAuthHasSuffix(v string) predicate.Settings

SMTPAuthHasSuffix applies the HasSuffix predicate on the "smtp_auth" field.

func SMTPAuthIn

func SMTPAuthIn(vs ...string) predicate.Settings

SMTPAuthIn applies the In predicate on the "smtp_auth" field.

func SMTPAuthIsNil

func SMTPAuthIsNil() predicate.Settings

SMTPAuthIsNil applies the IsNil predicate on the "smtp_auth" field.

func SMTPAuthLT

func SMTPAuthLT(v string) predicate.Settings

SMTPAuthLT applies the LT predicate on the "smtp_auth" field.

func SMTPAuthLTE

func SMTPAuthLTE(v string) predicate.Settings

SMTPAuthLTE applies the LTE predicate on the "smtp_auth" field.

func SMTPAuthNEQ

func SMTPAuthNEQ(v string) predicate.Settings

SMTPAuthNEQ applies the NEQ predicate on the "smtp_auth" field.

func SMTPAuthNotIn

func SMTPAuthNotIn(vs ...string) predicate.Settings

SMTPAuthNotIn applies the NotIn predicate on the "smtp_auth" field.

func SMTPAuthNotNil

func SMTPAuthNotNil() predicate.Settings

SMTPAuthNotNil applies the NotNil predicate on the "smtp_auth" field.

func SMTPPassword

func SMTPPassword(v string) predicate.Settings

SMTPPassword applies equality check predicate on the "smtp_password" field. It's identical to SMTPPasswordEQ.

func SMTPPasswordContains

func SMTPPasswordContains(v string) predicate.Settings

SMTPPasswordContains applies the Contains predicate on the "smtp_password" field.

func SMTPPasswordContainsFold

func SMTPPasswordContainsFold(v string) predicate.Settings

SMTPPasswordContainsFold applies the ContainsFold predicate on the "smtp_password" field.

func SMTPPasswordEQ

func SMTPPasswordEQ(v string) predicate.Settings

SMTPPasswordEQ applies the EQ predicate on the "smtp_password" field.

func SMTPPasswordEqualFold

func SMTPPasswordEqualFold(v string) predicate.Settings

SMTPPasswordEqualFold applies the EqualFold predicate on the "smtp_password" field.

func SMTPPasswordGT

func SMTPPasswordGT(v string) predicate.Settings

SMTPPasswordGT applies the GT predicate on the "smtp_password" field.

func SMTPPasswordGTE

func SMTPPasswordGTE(v string) predicate.Settings

SMTPPasswordGTE applies the GTE predicate on the "smtp_password" field.

func SMTPPasswordHasPrefix

func SMTPPasswordHasPrefix(v string) predicate.Settings

SMTPPasswordHasPrefix applies the HasPrefix predicate on the "smtp_password" field.

func SMTPPasswordHasSuffix

func SMTPPasswordHasSuffix(v string) predicate.Settings

SMTPPasswordHasSuffix applies the HasSuffix predicate on the "smtp_password" field.

func SMTPPasswordIn

func SMTPPasswordIn(vs ...string) predicate.Settings

SMTPPasswordIn applies the In predicate on the "smtp_password" field.

func SMTPPasswordIsNil

func SMTPPasswordIsNil() predicate.Settings

SMTPPasswordIsNil applies the IsNil predicate on the "smtp_password" field.

func SMTPPasswordLT

func SMTPPasswordLT(v string) predicate.Settings

SMTPPasswordLT applies the LT predicate on the "smtp_password" field.

func SMTPPasswordLTE

func SMTPPasswordLTE(v string) predicate.Settings

SMTPPasswordLTE applies the LTE predicate on the "smtp_password" field.

func SMTPPasswordNEQ

func SMTPPasswordNEQ(v string) predicate.Settings

SMTPPasswordNEQ applies the NEQ predicate on the "smtp_password" field.

func SMTPPasswordNotIn

func SMTPPasswordNotIn(vs ...string) predicate.Settings

SMTPPasswordNotIn applies the NotIn predicate on the "smtp_password" field.

func SMTPPasswordNotNil

func SMTPPasswordNotNil() predicate.Settings

SMTPPasswordNotNil applies the NotNil predicate on the "smtp_password" field.

func SMTPPort

func SMTPPort(v int) predicate.Settings

SMTPPort applies equality check predicate on the "smtp_port" field. It's identical to SMTPPortEQ.

func SMTPPortEQ

func SMTPPortEQ(v int) predicate.Settings

SMTPPortEQ applies the EQ predicate on the "smtp_port" field.

func SMTPPortGT

func SMTPPortGT(v int) predicate.Settings

SMTPPortGT applies the GT predicate on the "smtp_port" field.

func SMTPPortGTE

func SMTPPortGTE(v int) predicate.Settings

SMTPPortGTE applies the GTE predicate on the "smtp_port" field.

func SMTPPortIn

func SMTPPortIn(vs ...int) predicate.Settings

SMTPPortIn applies the In predicate on the "smtp_port" field.

func SMTPPortIsNil

func SMTPPortIsNil() predicate.Settings

SMTPPortIsNil applies the IsNil predicate on the "smtp_port" field.

func SMTPPortLT

func SMTPPortLT(v int) predicate.Settings

SMTPPortLT applies the LT predicate on the "smtp_port" field.

func SMTPPortLTE

func SMTPPortLTE(v int) predicate.Settings

SMTPPortLTE applies the LTE predicate on the "smtp_port" field.

func SMTPPortNEQ

func SMTPPortNEQ(v int) predicate.Settings

SMTPPortNEQ applies the NEQ predicate on the "smtp_port" field.

func SMTPPortNotIn

func SMTPPortNotIn(vs ...int) predicate.Settings

SMTPPortNotIn applies the NotIn predicate on the "smtp_port" field.

func SMTPPortNotNil

func SMTPPortNotNil() predicate.Settings

SMTPPortNotNil applies the NotNil predicate on the "smtp_port" field.

func SMTPServer

func SMTPServer(v string) predicate.Settings

SMTPServer applies equality check predicate on the "smtp_server" field. It's identical to SMTPServerEQ.

func SMTPServerContains

func SMTPServerContains(v string) predicate.Settings

SMTPServerContains applies the Contains predicate on the "smtp_server" field.

func SMTPServerContainsFold

func SMTPServerContainsFold(v string) predicate.Settings

SMTPServerContainsFold applies the ContainsFold predicate on the "smtp_server" field.

func SMTPServerEQ

func SMTPServerEQ(v string) predicate.Settings

SMTPServerEQ applies the EQ predicate on the "smtp_server" field.

func SMTPServerEqualFold

func SMTPServerEqualFold(v string) predicate.Settings

SMTPServerEqualFold applies the EqualFold predicate on the "smtp_server" field.

func SMTPServerGT

func SMTPServerGT(v string) predicate.Settings

SMTPServerGT applies the GT predicate on the "smtp_server" field.

func SMTPServerGTE

func SMTPServerGTE(v string) predicate.Settings

SMTPServerGTE applies the GTE predicate on the "smtp_server" field.

func SMTPServerHasPrefix

func SMTPServerHasPrefix(v string) predicate.Settings

SMTPServerHasPrefix applies the HasPrefix predicate on the "smtp_server" field.

func SMTPServerHasSuffix

func SMTPServerHasSuffix(v string) predicate.Settings

SMTPServerHasSuffix applies the HasSuffix predicate on the "smtp_server" field.

func SMTPServerIn

func SMTPServerIn(vs ...string) predicate.Settings

SMTPServerIn applies the In predicate on the "smtp_server" field.

func SMTPServerIsNil

func SMTPServerIsNil() predicate.Settings

SMTPServerIsNil applies the IsNil predicate on the "smtp_server" field.

func SMTPServerLT

func SMTPServerLT(v string) predicate.Settings

SMTPServerLT applies the LT predicate on the "smtp_server" field.

func SMTPServerLTE

func SMTPServerLTE(v string) predicate.Settings

SMTPServerLTE applies the LTE predicate on the "smtp_server" field.

func SMTPServerNEQ

func SMTPServerNEQ(v string) predicate.Settings

SMTPServerNEQ applies the NEQ predicate on the "smtp_server" field.

func SMTPServerNotIn

func SMTPServerNotIn(vs ...string) predicate.Settings

SMTPServerNotIn applies the NotIn predicate on the "smtp_server" field.

func SMTPServerNotNil

func SMTPServerNotNil() predicate.Settings

SMTPServerNotNil applies the NotNil predicate on the "smtp_server" field.

func SMTPStarttls

func SMTPStarttls(v bool) predicate.Settings

SMTPStarttls applies equality check predicate on the "smtp_starttls" field. It's identical to SMTPStarttlsEQ.

func SMTPStarttlsEQ

func SMTPStarttlsEQ(v bool) predicate.Settings

SMTPStarttlsEQ applies the EQ predicate on the "smtp_starttls" field.

func SMTPStarttlsIsNil

func SMTPStarttlsIsNil() predicate.Settings

SMTPStarttlsIsNil applies the IsNil predicate on the "smtp_starttls" field.

func SMTPStarttlsNEQ

func SMTPStarttlsNEQ(v bool) predicate.Settings

SMTPStarttlsNEQ applies the NEQ predicate on the "smtp_starttls" field.

func SMTPStarttlsNotNil

func SMTPStarttlsNotNil() predicate.Settings

SMTPStarttlsNotNil applies the NotNil predicate on the "smtp_starttls" field.

func SMTPTLS

func SMTPTLS(v bool) predicate.Settings

SMTPTLS applies equality check predicate on the "smtp_tls" field. It's identical to SMTPTLSEQ.

func SMTPTLSEQ

func SMTPTLSEQ(v bool) predicate.Settings

SMTPTLSEQ applies the EQ predicate on the "smtp_tls" field.

func SMTPTLSIsNil

func SMTPTLSIsNil() predicate.Settings

SMTPTLSIsNil applies the IsNil predicate on the "smtp_tls" field.

func SMTPTLSNEQ

func SMTPTLSNEQ(v bool) predicate.Settings

SMTPTLSNEQ applies the NEQ predicate on the "smtp_tls" field.

func SMTPTLSNotNil

func SMTPTLSNotNil() predicate.Settings

SMTPTLSNotNil applies the NotNil predicate on the "smtp_tls" field.

func SMTPUser

func SMTPUser(v string) predicate.Settings

SMTPUser applies equality check predicate on the "smtp_user" field. It's identical to SMTPUserEQ.

func SMTPUserContains

func SMTPUserContains(v string) predicate.Settings

SMTPUserContains applies the Contains predicate on the "smtp_user" field.

func SMTPUserContainsFold

func SMTPUserContainsFold(v string) predicate.Settings

SMTPUserContainsFold applies the ContainsFold predicate on the "smtp_user" field.

func SMTPUserEQ

func SMTPUserEQ(v string) predicate.Settings

SMTPUserEQ applies the EQ predicate on the "smtp_user" field.

func SMTPUserEqualFold

func SMTPUserEqualFold(v string) predicate.Settings

SMTPUserEqualFold applies the EqualFold predicate on the "smtp_user" field.

func SMTPUserGT

func SMTPUserGT(v string) predicate.Settings

SMTPUserGT applies the GT predicate on the "smtp_user" field.

func SMTPUserGTE

func SMTPUserGTE(v string) predicate.Settings

SMTPUserGTE applies the GTE predicate on the "smtp_user" field.

func SMTPUserHasPrefix

func SMTPUserHasPrefix(v string) predicate.Settings

SMTPUserHasPrefix applies the HasPrefix predicate on the "smtp_user" field.

func SMTPUserHasSuffix

func SMTPUserHasSuffix(v string) predicate.Settings

SMTPUserHasSuffix applies the HasSuffix predicate on the "smtp_user" field.

func SMTPUserIn

func SMTPUserIn(vs ...string) predicate.Settings

SMTPUserIn applies the In predicate on the "smtp_user" field.

func SMTPUserIsNil

func SMTPUserIsNil() predicate.Settings

SMTPUserIsNil applies the IsNil predicate on the "smtp_user" field.

func SMTPUserLT

func SMTPUserLT(v string) predicate.Settings

SMTPUserLT applies the LT predicate on the "smtp_user" field.

func SMTPUserLTE

func SMTPUserLTE(v string) predicate.Settings

SMTPUserLTE applies the LTE predicate on the "smtp_user" field.

func SMTPUserNEQ

func SMTPUserNEQ(v string) predicate.Settings

SMTPUserNEQ applies the NEQ predicate on the "smtp_user" field.

func SMTPUserNotIn

func SMTPUserNotIn(vs ...string) predicate.Settings

SMTPUserNotIn applies the NotIn predicate on the "smtp_user" field.

func SMTPUserNotNil

func SMTPUserNotNil() predicate.Settings

SMTPUserNotNil applies the NotNil predicate on the "smtp_user" field.

func SessionLifetimeInMinutes

func SessionLifetimeInMinutes(v int) predicate.Settings

SessionLifetimeInMinutes applies equality check predicate on the "session_lifetime_in_minutes" field. It's identical to SessionLifetimeInMinutesEQ.

func SessionLifetimeInMinutesEQ

func SessionLifetimeInMinutesEQ(v int) predicate.Settings

SessionLifetimeInMinutesEQ applies the EQ predicate on the "session_lifetime_in_minutes" field.

func SessionLifetimeInMinutesGT

func SessionLifetimeInMinutesGT(v int) predicate.Settings

SessionLifetimeInMinutesGT applies the GT predicate on the "session_lifetime_in_minutes" field.

func SessionLifetimeInMinutesGTE

func SessionLifetimeInMinutesGTE(v int) predicate.Settings

SessionLifetimeInMinutesGTE applies the GTE predicate on the "session_lifetime_in_minutes" field.

func SessionLifetimeInMinutesIn

func SessionLifetimeInMinutesIn(vs ...int) predicate.Settings

SessionLifetimeInMinutesIn applies the In predicate on the "session_lifetime_in_minutes" field.

func SessionLifetimeInMinutesIsNil

func SessionLifetimeInMinutesIsNil() predicate.Settings

SessionLifetimeInMinutesIsNil applies the IsNil predicate on the "session_lifetime_in_minutes" field.

func SessionLifetimeInMinutesLT

func SessionLifetimeInMinutesLT(v int) predicate.Settings

SessionLifetimeInMinutesLT applies the LT predicate on the "session_lifetime_in_minutes" field.

func SessionLifetimeInMinutesLTE

func SessionLifetimeInMinutesLTE(v int) predicate.Settings

SessionLifetimeInMinutesLTE applies the LTE predicate on the "session_lifetime_in_minutes" field.

func SessionLifetimeInMinutesNEQ

func SessionLifetimeInMinutesNEQ(v int) predicate.Settings

SessionLifetimeInMinutesNEQ applies the NEQ predicate on the "session_lifetime_in_minutes" field.

func SessionLifetimeInMinutesNotIn

func SessionLifetimeInMinutesNotIn(vs ...int) predicate.Settings

SessionLifetimeInMinutesNotIn applies the NotIn predicate on the "session_lifetime_in_minutes" field.

func SessionLifetimeInMinutesNotNil

func SessionLifetimeInMinutesNotNil() predicate.Settings

SessionLifetimeInMinutesNotNil applies the NotNil predicate on the "session_lifetime_in_minutes" field.

func State

func State(v string) predicate.Settings

State applies equality check predicate on the "state" field. It's identical to StateEQ.

func StateContains

func StateContains(v string) predicate.Settings

StateContains applies the Contains predicate on the "state" field.

func StateContainsFold

func StateContainsFold(v string) predicate.Settings

StateContainsFold applies the ContainsFold predicate on the "state" field.

func StateEQ

func StateEQ(v string) predicate.Settings

StateEQ applies the EQ predicate on the "state" field.

func StateEqualFold

func StateEqualFold(v string) predicate.Settings

StateEqualFold applies the EqualFold predicate on the "state" field.

func StateGT

func StateGT(v string) predicate.Settings

StateGT applies the GT predicate on the "state" field.

func StateGTE

func StateGTE(v string) predicate.Settings

StateGTE applies the GTE predicate on the "state" field.

func StateHasPrefix

func StateHasPrefix(v string) predicate.Settings

StateHasPrefix applies the HasPrefix predicate on the "state" field.

func StateHasSuffix

func StateHasSuffix(v string) predicate.Settings

StateHasSuffix applies the HasSuffix predicate on the "state" field.

func StateIn

func StateIn(vs ...string) predicate.Settings

StateIn applies the In predicate on the "state" field.

func StateIsNil

func StateIsNil() predicate.Settings

StateIsNil applies the IsNil predicate on the "state" field.

func StateLT

func StateLT(v string) predicate.Settings

StateLT applies the LT predicate on the "state" field.

func StateLTE

func StateLTE(v string) predicate.Settings

StateLTE applies the LTE predicate on the "state" field.

func StateNEQ

func StateNEQ(v string) predicate.Settings

StateNEQ applies the NEQ predicate on the "state" field.

func StateNotIn

func StateNotIn(vs ...string) predicate.Settings

StateNotIn applies the NotIn predicate on the "state" field.

func StateNotNil

func StateNotNil() predicate.Settings

StateNotNil applies the NotNil predicate on the "state" field.

func UpdateChannel

func UpdateChannel(v string) predicate.Settings

UpdateChannel applies equality check predicate on the "update_channel" field. It's identical to UpdateChannelEQ.

func UpdateChannelContains

func UpdateChannelContains(v string) predicate.Settings

UpdateChannelContains applies the Contains predicate on the "update_channel" field.

func UpdateChannelContainsFold

func UpdateChannelContainsFold(v string) predicate.Settings

UpdateChannelContainsFold applies the ContainsFold predicate on the "update_channel" field.

func UpdateChannelEQ

func UpdateChannelEQ(v string) predicate.Settings

UpdateChannelEQ applies the EQ predicate on the "update_channel" field.

func UpdateChannelEqualFold

func UpdateChannelEqualFold(v string) predicate.Settings

UpdateChannelEqualFold applies the EqualFold predicate on the "update_channel" field.

func UpdateChannelGT

func UpdateChannelGT(v string) predicate.Settings

UpdateChannelGT applies the GT predicate on the "update_channel" field.

func UpdateChannelGTE

func UpdateChannelGTE(v string) predicate.Settings

UpdateChannelGTE applies the GTE predicate on the "update_channel" field.

func UpdateChannelHasPrefix

func UpdateChannelHasPrefix(v string) predicate.Settings

UpdateChannelHasPrefix applies the HasPrefix predicate on the "update_channel" field.

func UpdateChannelHasSuffix

func UpdateChannelHasSuffix(v string) predicate.Settings

UpdateChannelHasSuffix applies the HasSuffix predicate on the "update_channel" field.

func UpdateChannelIn

func UpdateChannelIn(vs ...string) predicate.Settings

UpdateChannelIn applies the In predicate on the "update_channel" field.

func UpdateChannelIsNil

func UpdateChannelIsNil() predicate.Settings

UpdateChannelIsNil applies the IsNil predicate on the "update_channel" field.

func UpdateChannelLT

func UpdateChannelLT(v string) predicate.Settings

UpdateChannelLT applies the LT predicate on the "update_channel" field.

func UpdateChannelLTE

func UpdateChannelLTE(v string) predicate.Settings

UpdateChannelLTE applies the LTE predicate on the "update_channel" field.

func UpdateChannelNEQ

func UpdateChannelNEQ(v string) predicate.Settings

UpdateChannelNEQ applies the NEQ predicate on the "update_channel" field.

func UpdateChannelNotIn

func UpdateChannelNotIn(vs ...string) predicate.Settings

UpdateChannelNotIn applies the NotIn predicate on the "update_channel" field.

func UpdateChannelNotNil

func UpdateChannelNotNil() predicate.Settings

UpdateChannelNotNil applies the NotNil predicate on the "update_channel" field.

func UserCertYearsValid

func UserCertYearsValid(v int) predicate.Settings

UserCertYearsValid applies equality check predicate on the "user_cert_years_valid" field. It's identical to UserCertYearsValidEQ.

func UserCertYearsValidEQ

func UserCertYearsValidEQ(v int) predicate.Settings

UserCertYearsValidEQ applies the EQ predicate on the "user_cert_years_valid" field.

func UserCertYearsValidGT

func UserCertYearsValidGT(v int) predicate.Settings

UserCertYearsValidGT applies the GT predicate on the "user_cert_years_valid" field.

func UserCertYearsValidGTE

func UserCertYearsValidGTE(v int) predicate.Settings

UserCertYearsValidGTE applies the GTE predicate on the "user_cert_years_valid" field.

func UserCertYearsValidIn

func UserCertYearsValidIn(vs ...int) predicate.Settings

UserCertYearsValidIn applies the In predicate on the "user_cert_years_valid" field.

func UserCertYearsValidIsNil

func UserCertYearsValidIsNil() predicate.Settings

UserCertYearsValidIsNil applies the IsNil predicate on the "user_cert_years_valid" field.

func UserCertYearsValidLT

func UserCertYearsValidLT(v int) predicate.Settings

UserCertYearsValidLT applies the LT predicate on the "user_cert_years_valid" field.

func UserCertYearsValidLTE

func UserCertYearsValidLTE(v int) predicate.Settings

UserCertYearsValidLTE applies the LTE predicate on the "user_cert_years_valid" field.

func UserCertYearsValidNEQ

func UserCertYearsValidNEQ(v int) predicate.Settings

UserCertYearsValidNEQ applies the NEQ predicate on the "user_cert_years_valid" field.

func UserCertYearsValidNotIn

func UserCertYearsValidNotIn(vs ...int) predicate.Settings

UserCertYearsValidNotIn applies the NotIn predicate on the "user_cert_years_valid" field.

func UserCertYearsValidNotNil

func UserCertYearsValidNotNil() predicate.Settings

UserCertYearsValidNotNil applies the NotNil predicate on the "user_cert_years_valid" 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 Settings queries.

func ByAgentReportFrequenceInMinutes

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

ByAgentReportFrequenceInMinutes orders the results by the agent_report_frequence_in_minutes field.

func ByCountry

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

ByCountry orders the results by the country field.

func ByCreated

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

ByCreated orders the results by the created field.

func ByID

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

ByID orders the results by the id field.

func ByLanguage

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

ByLanguage orders the results by the language field.

func ByLocality

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

ByLocality orders the results by the locality field.

func ByMaxUploadSize

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

ByMaxUploadSize orders the results by the max_upload_size field.

func ByMessageFrom

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

ByMessageFrom orders the results by the message_from field.

func ByModified

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

ByModified orders the results by the modified field.

func ByNatsPort

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

ByNatsPort orders the results by the nats_port field.

func ByNatsRequestTimeoutSeconds

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

ByNatsRequestTimeoutSeconds orders the results by the nats_request_timeout_seconds field.

func ByNatsServer

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

ByNatsServer orders the results by the nats_server field.

func ByOrganization

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

ByOrganization orders the results by the organization field.

func ByPostalAddress

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

ByPostalAddress orders the results by the postal_address field.

func ByPostalCode

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

ByPostalCode orders the results by the postal_code field.

func ByProvince

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

ByProvince orders the results by the province field.

func ByRefreshTimeInMinutes

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

ByRefreshTimeInMinutes orders the results by the refresh_time_in_minutes field.

func ByRequestVncPin

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

ByRequestVncPin orders the results by the request_vnc_pin field.

func BySMTPAuth

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

BySMTPAuth orders the results by the smtp_auth field.

func BySMTPPassword

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

BySMTPPassword orders the results by the smtp_password field.

func BySMTPPort

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

BySMTPPort orders the results by the smtp_port field.

func BySMTPServer

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

BySMTPServer orders the results by the smtp_server field.

func BySMTPStarttls

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

BySMTPStarttls orders the results by the smtp_starttls field.

func BySMTPTLS

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

BySMTPTLS orders the results by the smtp_tls field.

func BySMTPUser

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

BySMTPUser orders the results by the smtp_user field.

func BySessionLifetimeInMinutes

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

BySessionLifetimeInMinutes orders the results by the session_lifetime_in_minutes field.

func ByState

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

ByState orders the results by the state field.

func ByUpdateChannel

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

ByUpdateChannel orders the results by the update_channel field.

func ByUserCertYearsValid

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

ByUserCertYearsValid orders the results by the user_cert_years_valid field.

Jump to

Keyboard shortcuts

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