trustcentersubprocessor

package
v1.9.2 Latest Latest
Warning

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

Go to latest
Published: Feb 11, 2026 License: Apache-2.0 Imports: 6 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the trustcentersubprocessor type in the database.
	Label = "trust_center_subprocessor"
	// 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"
	// FieldCreatedBy holds the string denoting the created_by field in the database.
	FieldCreatedBy = "created_by"
	// FieldUpdatedBy holds the string denoting the updated_by field in the database.
	FieldUpdatedBy = "updated_by"
	// FieldDeletedAt holds the string denoting the deleted_at field in the database.
	FieldDeletedAt = "deleted_at"
	// FieldDeletedBy holds the string denoting the deleted_by field in the database.
	FieldDeletedBy = "deleted_by"
	// FieldTrustCenterSubprocessorKindName holds the string denoting the trust_center_subprocessor_kind_name field in the database.
	FieldTrustCenterSubprocessorKindName = "trust_center_subprocessor_kind_name"
	// FieldTrustCenterSubprocessorKindID holds the string denoting the trust_center_subprocessor_kind_id field in the database.
	FieldTrustCenterSubprocessorKindID = "trust_center_subprocessor_kind_id"
	// FieldSubprocessorID holds the string denoting the subprocessor_id field in the database.
	FieldSubprocessorID = "subprocessor_id"
	// FieldTrustCenterID holds the string denoting the trust_center_id field in the database.
	FieldTrustCenterID = "trust_center_id"
	// FieldCountries holds the string denoting the countries field in the database.
	FieldCountries = "countries"
	// EdgeTrustCenterSubprocessorKind holds the string denoting the trust_center_subprocessor_kind edge name in mutations.
	EdgeTrustCenterSubprocessorKind = "trust_center_subprocessor_kind"
	// EdgeBlockedGroups holds the string denoting the blocked_groups edge name in mutations.
	EdgeBlockedGroups = "blocked_groups"
	// EdgeEditors holds the string denoting the editors edge name in mutations.
	EdgeEditors = "editors"
	// EdgeTrustCenter holds the string denoting the trust_center edge name in mutations.
	EdgeTrustCenter = "trust_center"
	// EdgeSubprocessor holds the string denoting the subprocessor edge name in mutations.
	EdgeSubprocessor = "subprocessor"
	// Table holds the table name of the trustcentersubprocessor in the database.
	Table = "trust_center_subprocessors"
	// TrustCenterSubprocessorKindTable is the table that holds the trust_center_subprocessor_kind relation/edge.
	TrustCenterSubprocessorKindTable = "trust_center_subprocessors"
	// TrustCenterSubprocessorKindInverseTable is the table name for the CustomTypeEnum entity.
	// It exists in this package in order to avoid circular dependency with the "customtypeenum" package.
	TrustCenterSubprocessorKindInverseTable = "custom_type_enums"
	// TrustCenterSubprocessorKindColumn is the table column denoting the trust_center_subprocessor_kind relation/edge.
	TrustCenterSubprocessorKindColumn = "trust_center_subprocessor_kind_id"
	// BlockedGroupsTable is the table that holds the blocked_groups relation/edge.
	BlockedGroupsTable = "groups"
	// BlockedGroupsInverseTable is the table name for the Group entity.
	// It exists in this package in order to avoid circular dependency with the "group" package.
	BlockedGroupsInverseTable = "groups"
	// BlockedGroupsColumn is the table column denoting the blocked_groups relation/edge.
	BlockedGroupsColumn = "trust_center_subprocessor_blocked_groups"
	// EditorsTable is the table that holds the editors relation/edge.
	EditorsTable = "groups"
	// EditorsInverseTable is the table name for the Group entity.
	// It exists in this package in order to avoid circular dependency with the "group" package.
	EditorsInverseTable = "groups"
	// EditorsColumn is the table column denoting the editors relation/edge.
	EditorsColumn = "trust_center_subprocessor_editors"
	// TrustCenterTable is the table that holds the trust_center relation/edge.
	TrustCenterTable = "trust_center_subprocessors"
	// TrustCenterInverseTable is the table name for the TrustCenter entity.
	// It exists in this package in order to avoid circular dependency with the "trustcenter" package.
	TrustCenterInverseTable = "trust_centers"
	// TrustCenterColumn is the table column denoting the trust_center relation/edge.
	TrustCenterColumn = "trust_center_id"
	// SubprocessorTable is the table that holds the subprocessor relation/edge.
	SubprocessorTable = "trust_center_subprocessors"
	// SubprocessorInverseTable is the table name for the Subprocessor entity.
	// It exists in this package in order to avoid circular dependency with the "subprocessor" package.
	SubprocessorInverseTable = "subprocessors"
	// SubprocessorColumn is the table column denoting the subprocessor relation/edge.
	SubprocessorColumn = "subprocessor_id"
)

Variables

View Source
var (
	Hooks        [8]ent.Hook
	Interceptors [3]ent.Interceptor
	Policy       ent.Policy
	// 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
	// SubprocessorIDValidator is a validator for the "subprocessor_id" field. It is called by the builders before save.
	SubprocessorIDValidator func(string) error
	// TrustCenterIDValidator is a validator for the "trust_center_id" field. It is called by the builders before save.
	TrustCenterIDValidator func(string) error
	// DefaultID holds the default value on creation for the "id" field.
	DefaultID func() string
)

Note that the variables below are initialized by the runtime package on the initialization of the application. Therefore, it should be imported in the main as follows:

import _ "github.com/theopenlane/core/internal/ent/generated/runtime"

Columns holds all SQL columns for trustcentersubprocessor fields.

Functions

func And

And groups predicates with the AND operator between them.

func CountriesIsNil added in v0.23.0

func CountriesIsNil() predicate.TrustCenterSubprocessor

CountriesIsNil applies the IsNil predicate on the "countries" field.

func CountriesNotNil added in v0.23.0

func CountriesNotNil() predicate.TrustCenterSubprocessor

CountriesNotNil applies the NotNil predicate on the "countries" field.

func CreatedAt

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

func CreatedAtEQ

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

func CreatedAtGT

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

func CreatedAtGTE

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

func CreatedAtIn

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

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

func CreatedAtIsNil

func CreatedAtIsNil() predicate.TrustCenterSubprocessor

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

func CreatedAtLT

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

func CreatedAtLTE

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

func CreatedAtNEQ

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

func CreatedAtNotIn

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

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

func CreatedAtNotNil

func CreatedAtNotNil() predicate.TrustCenterSubprocessor

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

func CreatedBy

CreatedBy applies equality check predicate on the "created_by" field. It's identical to CreatedByEQ.

func CreatedByContains

func CreatedByContains(v string) predicate.TrustCenterSubprocessor

CreatedByContains applies the Contains predicate on the "created_by" field.

func CreatedByContainsFold

func CreatedByContainsFold(v string) predicate.TrustCenterSubprocessor

CreatedByContainsFold applies the ContainsFold predicate on the "created_by" field.

func CreatedByEQ

CreatedByEQ applies the EQ predicate on the "created_by" field.

func CreatedByEqualFold

func CreatedByEqualFold(v string) predicate.TrustCenterSubprocessor

CreatedByEqualFold applies the EqualFold predicate on the "created_by" field.

func CreatedByGT

CreatedByGT applies the GT predicate on the "created_by" field.

func CreatedByGTE

CreatedByGTE applies the GTE predicate on the "created_by" field.

func CreatedByHasPrefix

func CreatedByHasPrefix(v string) predicate.TrustCenterSubprocessor

CreatedByHasPrefix applies the HasPrefix predicate on the "created_by" field.

func CreatedByHasSuffix

func CreatedByHasSuffix(v string) predicate.TrustCenterSubprocessor

CreatedByHasSuffix applies the HasSuffix predicate on the "created_by" field.

func CreatedByIn

func CreatedByIn(vs ...string) predicate.TrustCenterSubprocessor

CreatedByIn applies the In predicate on the "created_by" field.

func CreatedByIsNil

func CreatedByIsNil() predicate.TrustCenterSubprocessor

CreatedByIsNil applies the IsNil predicate on the "created_by" field.

func CreatedByLT

CreatedByLT applies the LT predicate on the "created_by" field.

func CreatedByLTE

CreatedByLTE applies the LTE predicate on the "created_by" field.

func CreatedByNEQ

CreatedByNEQ applies the NEQ predicate on the "created_by" field.

func CreatedByNotIn

func CreatedByNotIn(vs ...string) predicate.TrustCenterSubprocessor

CreatedByNotIn applies the NotIn predicate on the "created_by" field.

func CreatedByNotNil

func CreatedByNotNil() predicate.TrustCenterSubprocessor

CreatedByNotNil applies the NotNil predicate on the "created_by" field.

func DeletedAt

DeletedAt applies equality check predicate on the "deleted_at" field. It's identical to DeletedAtEQ.

func DeletedAtEQ

DeletedAtEQ applies the EQ predicate on the "deleted_at" field.

func DeletedAtGT

DeletedAtGT applies the GT predicate on the "deleted_at" field.

func DeletedAtGTE

DeletedAtGTE applies the GTE predicate on the "deleted_at" field.

func DeletedAtIn

func DeletedAtIn(vs ...time.Time) predicate.TrustCenterSubprocessor

DeletedAtIn applies the In predicate on the "deleted_at" field.

func DeletedAtIsNil

func DeletedAtIsNil() predicate.TrustCenterSubprocessor

DeletedAtIsNil applies the IsNil predicate on the "deleted_at" field.

func DeletedAtLT

DeletedAtLT applies the LT predicate on the "deleted_at" field.

func DeletedAtLTE

DeletedAtLTE applies the LTE predicate on the "deleted_at" field.

func DeletedAtNEQ

DeletedAtNEQ applies the NEQ predicate on the "deleted_at" field.

func DeletedAtNotIn

func DeletedAtNotIn(vs ...time.Time) predicate.TrustCenterSubprocessor

DeletedAtNotIn applies the NotIn predicate on the "deleted_at" field.

func DeletedAtNotNil

func DeletedAtNotNil() predicate.TrustCenterSubprocessor

DeletedAtNotNil applies the NotNil predicate on the "deleted_at" field.

func DeletedBy

DeletedBy applies equality check predicate on the "deleted_by" field. It's identical to DeletedByEQ.

func DeletedByContains

func DeletedByContains(v string) predicate.TrustCenterSubprocessor

DeletedByContains applies the Contains predicate on the "deleted_by" field.

func DeletedByContainsFold

func DeletedByContainsFold(v string) predicate.TrustCenterSubprocessor

DeletedByContainsFold applies the ContainsFold predicate on the "deleted_by" field.

func DeletedByEQ

DeletedByEQ applies the EQ predicate on the "deleted_by" field.

func DeletedByEqualFold

func DeletedByEqualFold(v string) predicate.TrustCenterSubprocessor

DeletedByEqualFold applies the EqualFold predicate on the "deleted_by" field.

func DeletedByGT

DeletedByGT applies the GT predicate on the "deleted_by" field.

func DeletedByGTE

DeletedByGTE applies the GTE predicate on the "deleted_by" field.

func DeletedByHasPrefix

func DeletedByHasPrefix(v string) predicate.TrustCenterSubprocessor

DeletedByHasPrefix applies the HasPrefix predicate on the "deleted_by" field.

func DeletedByHasSuffix

func DeletedByHasSuffix(v string) predicate.TrustCenterSubprocessor

DeletedByHasSuffix applies the HasSuffix predicate on the "deleted_by" field.

func DeletedByIn

func DeletedByIn(vs ...string) predicate.TrustCenterSubprocessor

DeletedByIn applies the In predicate on the "deleted_by" field.

func DeletedByIsNil

func DeletedByIsNil() predicate.TrustCenterSubprocessor

DeletedByIsNil applies the IsNil predicate on the "deleted_by" field.

func DeletedByLT

DeletedByLT applies the LT predicate on the "deleted_by" field.

func DeletedByLTE

DeletedByLTE applies the LTE predicate on the "deleted_by" field.

func DeletedByNEQ

DeletedByNEQ applies the NEQ predicate on the "deleted_by" field.

func DeletedByNotIn

func DeletedByNotIn(vs ...string) predicate.TrustCenterSubprocessor

DeletedByNotIn applies the NotIn predicate on the "deleted_by" field.

func DeletedByNotNil

func DeletedByNotNil() predicate.TrustCenterSubprocessor

DeletedByNotNil applies the NotNil predicate on the "deleted_by" field.

func HasBlockedGroups added in v1.3.0

func HasBlockedGroups() predicate.TrustCenterSubprocessor

HasBlockedGroups applies the HasEdge predicate on the "blocked_groups" edge.

func HasBlockedGroupsWith added in v1.3.0

func HasBlockedGroupsWith(preds ...predicate.Group) predicate.TrustCenterSubprocessor

HasBlockedGroupsWith applies the HasEdge predicate on the "blocked_groups" edge with a given conditions (other predicates).

func HasEditors added in v1.3.0

HasEditors applies the HasEdge predicate on the "editors" edge.

func HasEditorsWith added in v1.3.0

func HasEditorsWith(preds ...predicate.Group) predicate.TrustCenterSubprocessor

HasEditorsWith applies the HasEdge predicate on the "editors" edge with a given conditions (other predicates).

func HasSubprocessor added in v0.23.0

func HasSubprocessor() predicate.TrustCenterSubprocessor

HasSubprocessor applies the HasEdge predicate on the "subprocessor" edge.

func HasSubprocessorWith added in v0.23.0

func HasSubprocessorWith(preds ...predicate.Subprocessor) predicate.TrustCenterSubprocessor

HasSubprocessorWith applies the HasEdge predicate on the "subprocessor" edge with a given conditions (other predicates).

func HasTrustCenter added in v0.23.0

func HasTrustCenter() predicate.TrustCenterSubprocessor

HasTrustCenter applies the HasEdge predicate on the "trust_center" edge.

func HasTrustCenterSubprocessorKind added in v1.6.0

func HasTrustCenterSubprocessorKind() predicate.TrustCenterSubprocessor

HasTrustCenterSubprocessorKind applies the HasEdge predicate on the "trust_center_subprocessor_kind" edge.

func HasTrustCenterSubprocessorKindWith added in v1.6.0

func HasTrustCenterSubprocessorKindWith(preds ...predicate.CustomTypeEnum) predicate.TrustCenterSubprocessor

HasTrustCenterSubprocessorKindWith applies the HasEdge predicate on the "trust_center_subprocessor_kind" edge with a given conditions (other predicates).

func HasTrustCenterWith added in v0.23.0

func HasTrustCenterWith(preds ...predicate.TrustCenter) predicate.TrustCenterSubprocessor

HasTrustCenterWith applies the HasEdge predicate on the "trust_center" edge with a given conditions (other predicates).

func ID

ID filters vertices based on their ID field.

func IDContainsFold

func IDContainsFold(id string) predicate.TrustCenterSubprocessor

IDContainsFold applies the ContainsFold predicate on the ID field.

func IDEQ

IDEQ applies the EQ predicate on the ID field.

func IDEqualFold

IDEqualFold applies the EqualFold predicate on the ID field.

func IDGT

IDGT applies the GT predicate on the ID field.

func IDGTE

IDGTE applies the GTE predicate on the ID field.

func IDIn

IDIn applies the In predicate on the ID field.

func IDLT

IDLT applies the LT predicate on the ID field.

func IDLTE

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

IDNotIn applies the NotIn predicate on the ID field.

func Not

Not applies the not operator on the given predicate.

func Or

Or groups predicates with the OR operator between them.

func SubprocessorID added in v0.23.0

func SubprocessorID(v string) predicate.TrustCenterSubprocessor

SubprocessorID applies equality check predicate on the "subprocessor_id" field. It's identical to SubprocessorIDEQ.

func SubprocessorIDContains added in v0.23.0

func SubprocessorIDContains(v string) predicate.TrustCenterSubprocessor

SubprocessorIDContains applies the Contains predicate on the "subprocessor_id" field.

func SubprocessorIDContainsFold added in v0.23.0

func SubprocessorIDContainsFold(v string) predicate.TrustCenterSubprocessor

SubprocessorIDContainsFold applies the ContainsFold predicate on the "subprocessor_id" field.

func SubprocessorIDEQ added in v0.23.0

func SubprocessorIDEQ(v string) predicate.TrustCenterSubprocessor

SubprocessorIDEQ applies the EQ predicate on the "subprocessor_id" field.

func SubprocessorIDEqualFold added in v0.23.0

func SubprocessorIDEqualFold(v string) predicate.TrustCenterSubprocessor

SubprocessorIDEqualFold applies the EqualFold predicate on the "subprocessor_id" field.

func SubprocessorIDGT added in v0.23.0

func SubprocessorIDGT(v string) predicate.TrustCenterSubprocessor

SubprocessorIDGT applies the GT predicate on the "subprocessor_id" field.

func SubprocessorIDGTE added in v0.23.0

func SubprocessorIDGTE(v string) predicate.TrustCenterSubprocessor

SubprocessorIDGTE applies the GTE predicate on the "subprocessor_id" field.

func SubprocessorIDHasPrefix added in v0.23.0

func SubprocessorIDHasPrefix(v string) predicate.TrustCenterSubprocessor

SubprocessorIDHasPrefix applies the HasPrefix predicate on the "subprocessor_id" field.

func SubprocessorIDHasSuffix added in v0.23.0

func SubprocessorIDHasSuffix(v string) predicate.TrustCenterSubprocessor

SubprocessorIDHasSuffix applies the HasSuffix predicate on the "subprocessor_id" field.

func SubprocessorIDIn added in v0.23.0

func SubprocessorIDIn(vs ...string) predicate.TrustCenterSubprocessor

SubprocessorIDIn applies the In predicate on the "subprocessor_id" field.

func SubprocessorIDLT added in v0.23.0

func SubprocessorIDLT(v string) predicate.TrustCenterSubprocessor

SubprocessorIDLT applies the LT predicate on the "subprocessor_id" field.

func SubprocessorIDLTE added in v0.23.0

func SubprocessorIDLTE(v string) predicate.TrustCenterSubprocessor

SubprocessorIDLTE applies the LTE predicate on the "subprocessor_id" field.

func SubprocessorIDNEQ added in v0.23.0

func SubprocessorIDNEQ(v string) predicate.TrustCenterSubprocessor

SubprocessorIDNEQ applies the NEQ predicate on the "subprocessor_id" field.

func SubprocessorIDNotIn added in v0.23.0

func SubprocessorIDNotIn(vs ...string) predicate.TrustCenterSubprocessor

SubprocessorIDNotIn applies the NotIn predicate on the "subprocessor_id" field.

func TrustCenterID added in v0.23.0

func TrustCenterID(v string) predicate.TrustCenterSubprocessor

TrustCenterID applies equality check predicate on the "trust_center_id" field. It's identical to TrustCenterIDEQ.

func TrustCenterIDContains added in v0.23.0

func TrustCenterIDContains(v string) predicate.TrustCenterSubprocessor

TrustCenterIDContains applies the Contains predicate on the "trust_center_id" field.

func TrustCenterIDContainsFold added in v0.23.0

func TrustCenterIDContainsFold(v string) predicate.TrustCenterSubprocessor

TrustCenterIDContainsFold applies the ContainsFold predicate on the "trust_center_id" field.

func TrustCenterIDEQ added in v0.23.0

func TrustCenterIDEQ(v string) predicate.TrustCenterSubprocessor

TrustCenterIDEQ applies the EQ predicate on the "trust_center_id" field.

func TrustCenterIDEqualFold added in v0.23.0

func TrustCenterIDEqualFold(v string) predicate.TrustCenterSubprocessor

TrustCenterIDEqualFold applies the EqualFold predicate on the "trust_center_id" field.

func TrustCenterIDGT added in v0.23.0

func TrustCenterIDGT(v string) predicate.TrustCenterSubprocessor

TrustCenterIDGT applies the GT predicate on the "trust_center_id" field.

func TrustCenterIDGTE added in v0.23.0

func TrustCenterIDGTE(v string) predicate.TrustCenterSubprocessor

TrustCenterIDGTE applies the GTE predicate on the "trust_center_id" field.

func TrustCenterIDHasPrefix added in v0.23.0

func TrustCenterIDHasPrefix(v string) predicate.TrustCenterSubprocessor

TrustCenterIDHasPrefix applies the HasPrefix predicate on the "trust_center_id" field.

func TrustCenterIDHasSuffix added in v0.23.0

func TrustCenterIDHasSuffix(v string) predicate.TrustCenterSubprocessor

TrustCenterIDHasSuffix applies the HasSuffix predicate on the "trust_center_id" field.

func TrustCenterIDIn added in v0.23.0

func TrustCenterIDIn(vs ...string) predicate.TrustCenterSubprocessor

TrustCenterIDIn applies the In predicate on the "trust_center_id" field.

func TrustCenterIDIsNil added in v0.23.0

func TrustCenterIDIsNil() predicate.TrustCenterSubprocessor

TrustCenterIDIsNil applies the IsNil predicate on the "trust_center_id" field.

func TrustCenterIDLT added in v0.23.0

func TrustCenterIDLT(v string) predicate.TrustCenterSubprocessor

TrustCenterIDLT applies the LT predicate on the "trust_center_id" field.

func TrustCenterIDLTE added in v0.23.0

func TrustCenterIDLTE(v string) predicate.TrustCenterSubprocessor

TrustCenterIDLTE applies the LTE predicate on the "trust_center_id" field.

func TrustCenterIDNEQ added in v0.23.0

func TrustCenterIDNEQ(v string) predicate.TrustCenterSubprocessor

TrustCenterIDNEQ applies the NEQ predicate on the "trust_center_id" field.

func TrustCenterIDNotIn added in v0.23.0

func TrustCenterIDNotIn(vs ...string) predicate.TrustCenterSubprocessor

TrustCenterIDNotIn applies the NotIn predicate on the "trust_center_id" field.

func TrustCenterIDNotNil added in v0.23.0

func TrustCenterIDNotNil() predicate.TrustCenterSubprocessor

TrustCenterIDNotNil applies the NotNil predicate on the "trust_center_id" field.

func TrustCenterSubprocessorKindID added in v1.6.0

func TrustCenterSubprocessorKindID(v string) predicate.TrustCenterSubprocessor

TrustCenterSubprocessorKindID applies equality check predicate on the "trust_center_subprocessor_kind_id" field. It's identical to TrustCenterSubprocessorKindIDEQ.

func TrustCenterSubprocessorKindIDContains added in v1.6.0

func TrustCenterSubprocessorKindIDContains(v string) predicate.TrustCenterSubprocessor

TrustCenterSubprocessorKindIDContains applies the Contains predicate on the "trust_center_subprocessor_kind_id" field.

func TrustCenterSubprocessorKindIDContainsFold added in v1.6.0

func TrustCenterSubprocessorKindIDContainsFold(v string) predicate.TrustCenterSubprocessor

TrustCenterSubprocessorKindIDContainsFold applies the ContainsFold predicate on the "trust_center_subprocessor_kind_id" field.

func TrustCenterSubprocessorKindIDEQ added in v1.6.0

func TrustCenterSubprocessorKindIDEQ(v string) predicate.TrustCenterSubprocessor

TrustCenterSubprocessorKindIDEQ applies the EQ predicate on the "trust_center_subprocessor_kind_id" field.

func TrustCenterSubprocessorKindIDEqualFold added in v1.6.0

func TrustCenterSubprocessorKindIDEqualFold(v string) predicate.TrustCenterSubprocessor

TrustCenterSubprocessorKindIDEqualFold applies the EqualFold predicate on the "trust_center_subprocessor_kind_id" field.

func TrustCenterSubprocessorKindIDGT added in v1.6.0

func TrustCenterSubprocessorKindIDGT(v string) predicate.TrustCenterSubprocessor

TrustCenterSubprocessorKindIDGT applies the GT predicate on the "trust_center_subprocessor_kind_id" field.

func TrustCenterSubprocessorKindIDGTE added in v1.6.0

func TrustCenterSubprocessorKindIDGTE(v string) predicate.TrustCenterSubprocessor

TrustCenterSubprocessorKindIDGTE applies the GTE predicate on the "trust_center_subprocessor_kind_id" field.

func TrustCenterSubprocessorKindIDHasPrefix added in v1.6.0

func TrustCenterSubprocessorKindIDHasPrefix(v string) predicate.TrustCenterSubprocessor

TrustCenterSubprocessorKindIDHasPrefix applies the HasPrefix predicate on the "trust_center_subprocessor_kind_id" field.

func TrustCenterSubprocessorKindIDHasSuffix added in v1.6.0

func TrustCenterSubprocessorKindIDHasSuffix(v string) predicate.TrustCenterSubprocessor

TrustCenterSubprocessorKindIDHasSuffix applies the HasSuffix predicate on the "trust_center_subprocessor_kind_id" field.

func TrustCenterSubprocessorKindIDIn added in v1.6.0

func TrustCenterSubprocessorKindIDIn(vs ...string) predicate.TrustCenterSubprocessor

TrustCenterSubprocessorKindIDIn applies the In predicate on the "trust_center_subprocessor_kind_id" field.

func TrustCenterSubprocessorKindIDIsNil added in v1.6.0

func TrustCenterSubprocessorKindIDIsNil() predicate.TrustCenterSubprocessor

TrustCenterSubprocessorKindIDIsNil applies the IsNil predicate on the "trust_center_subprocessor_kind_id" field.

func TrustCenterSubprocessorKindIDLT added in v1.6.0

func TrustCenterSubprocessorKindIDLT(v string) predicate.TrustCenterSubprocessor

TrustCenterSubprocessorKindIDLT applies the LT predicate on the "trust_center_subprocessor_kind_id" field.

func TrustCenterSubprocessorKindIDLTE added in v1.6.0

func TrustCenterSubprocessorKindIDLTE(v string) predicate.TrustCenterSubprocessor

TrustCenterSubprocessorKindIDLTE applies the LTE predicate on the "trust_center_subprocessor_kind_id" field.

func TrustCenterSubprocessorKindIDNEQ added in v1.6.0

func TrustCenterSubprocessorKindIDNEQ(v string) predicate.TrustCenterSubprocessor

TrustCenterSubprocessorKindIDNEQ applies the NEQ predicate on the "trust_center_subprocessor_kind_id" field.

func TrustCenterSubprocessorKindIDNotIn added in v1.6.0

func TrustCenterSubprocessorKindIDNotIn(vs ...string) predicate.TrustCenterSubprocessor

TrustCenterSubprocessorKindIDNotIn applies the NotIn predicate on the "trust_center_subprocessor_kind_id" field.

func TrustCenterSubprocessorKindIDNotNil added in v1.6.0

func TrustCenterSubprocessorKindIDNotNil() predicate.TrustCenterSubprocessor

TrustCenterSubprocessorKindIDNotNil applies the NotNil predicate on the "trust_center_subprocessor_kind_id" field.

func TrustCenterSubprocessorKindName added in v1.6.0

func TrustCenterSubprocessorKindName(v string) predicate.TrustCenterSubprocessor

TrustCenterSubprocessorKindName applies equality check predicate on the "trust_center_subprocessor_kind_name" field. It's identical to TrustCenterSubprocessorKindNameEQ.

func TrustCenterSubprocessorKindNameContains added in v1.6.0

func TrustCenterSubprocessorKindNameContains(v string) predicate.TrustCenterSubprocessor

TrustCenterSubprocessorKindNameContains applies the Contains predicate on the "trust_center_subprocessor_kind_name" field.

func TrustCenterSubprocessorKindNameContainsFold added in v1.6.0

func TrustCenterSubprocessorKindNameContainsFold(v string) predicate.TrustCenterSubprocessor

TrustCenterSubprocessorKindNameContainsFold applies the ContainsFold predicate on the "trust_center_subprocessor_kind_name" field.

func TrustCenterSubprocessorKindNameEQ added in v1.6.0

func TrustCenterSubprocessorKindNameEQ(v string) predicate.TrustCenterSubprocessor

TrustCenterSubprocessorKindNameEQ applies the EQ predicate on the "trust_center_subprocessor_kind_name" field.

func TrustCenterSubprocessorKindNameEqualFold added in v1.6.0

func TrustCenterSubprocessorKindNameEqualFold(v string) predicate.TrustCenterSubprocessor

TrustCenterSubprocessorKindNameEqualFold applies the EqualFold predicate on the "trust_center_subprocessor_kind_name" field.

func TrustCenterSubprocessorKindNameGT added in v1.6.0

func TrustCenterSubprocessorKindNameGT(v string) predicate.TrustCenterSubprocessor

TrustCenterSubprocessorKindNameGT applies the GT predicate on the "trust_center_subprocessor_kind_name" field.

func TrustCenterSubprocessorKindNameGTE added in v1.6.0

func TrustCenterSubprocessorKindNameGTE(v string) predicate.TrustCenterSubprocessor

TrustCenterSubprocessorKindNameGTE applies the GTE predicate on the "trust_center_subprocessor_kind_name" field.

func TrustCenterSubprocessorKindNameHasPrefix added in v1.6.0

func TrustCenterSubprocessorKindNameHasPrefix(v string) predicate.TrustCenterSubprocessor

TrustCenterSubprocessorKindNameHasPrefix applies the HasPrefix predicate on the "trust_center_subprocessor_kind_name" field.

func TrustCenterSubprocessorKindNameHasSuffix added in v1.6.0

func TrustCenterSubprocessorKindNameHasSuffix(v string) predicate.TrustCenterSubprocessor

TrustCenterSubprocessorKindNameHasSuffix applies the HasSuffix predicate on the "trust_center_subprocessor_kind_name" field.

func TrustCenterSubprocessorKindNameIn added in v1.6.0

func TrustCenterSubprocessorKindNameIn(vs ...string) predicate.TrustCenterSubprocessor

TrustCenterSubprocessorKindNameIn applies the In predicate on the "trust_center_subprocessor_kind_name" field.

func TrustCenterSubprocessorKindNameIsNil added in v1.6.0

func TrustCenterSubprocessorKindNameIsNil() predicate.TrustCenterSubprocessor

TrustCenterSubprocessorKindNameIsNil applies the IsNil predicate on the "trust_center_subprocessor_kind_name" field.

func TrustCenterSubprocessorKindNameLT added in v1.6.0

func TrustCenterSubprocessorKindNameLT(v string) predicate.TrustCenterSubprocessor

TrustCenterSubprocessorKindNameLT applies the LT predicate on the "trust_center_subprocessor_kind_name" field.

func TrustCenterSubprocessorKindNameLTE added in v1.6.0

func TrustCenterSubprocessorKindNameLTE(v string) predicate.TrustCenterSubprocessor

TrustCenterSubprocessorKindNameLTE applies the LTE predicate on the "trust_center_subprocessor_kind_name" field.

func TrustCenterSubprocessorKindNameNEQ added in v1.6.0

func TrustCenterSubprocessorKindNameNEQ(v string) predicate.TrustCenterSubprocessor

TrustCenterSubprocessorKindNameNEQ applies the NEQ predicate on the "trust_center_subprocessor_kind_name" field.

func TrustCenterSubprocessorKindNameNotIn added in v1.6.0

func TrustCenterSubprocessorKindNameNotIn(vs ...string) predicate.TrustCenterSubprocessor

TrustCenterSubprocessorKindNameNotIn applies the NotIn predicate on the "trust_center_subprocessor_kind_name" field.

func TrustCenterSubprocessorKindNameNotNil added in v1.6.0

func TrustCenterSubprocessorKindNameNotNil() predicate.TrustCenterSubprocessor

TrustCenterSubprocessorKindNameNotNil applies the NotNil predicate on the "trust_center_subprocessor_kind_name" field.

func UpdatedAt

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

func UpdatedAtEQ

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

func UpdatedAtGT

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

func UpdatedAtGTE

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

func UpdatedAtIn

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

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

func UpdatedAtIsNil

func UpdatedAtIsNil() predicate.TrustCenterSubprocessor

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

func UpdatedAtLT

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

func UpdatedAtLTE

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

func UpdatedAtNEQ

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

func UpdatedAtNotIn

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

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

func UpdatedAtNotNil

func UpdatedAtNotNil() predicate.TrustCenterSubprocessor

UpdatedAtNotNil applies the NotNil predicate on the "updated_at" field.

func UpdatedBy

UpdatedBy applies equality check predicate on the "updated_by" field. It's identical to UpdatedByEQ.

func UpdatedByContains

func UpdatedByContains(v string) predicate.TrustCenterSubprocessor

UpdatedByContains applies the Contains predicate on the "updated_by" field.

func UpdatedByContainsFold

func UpdatedByContainsFold(v string) predicate.TrustCenterSubprocessor

UpdatedByContainsFold applies the ContainsFold predicate on the "updated_by" field.

func UpdatedByEQ

UpdatedByEQ applies the EQ predicate on the "updated_by" field.

func UpdatedByEqualFold

func UpdatedByEqualFold(v string) predicate.TrustCenterSubprocessor

UpdatedByEqualFold applies the EqualFold predicate on the "updated_by" field.

func UpdatedByGT

UpdatedByGT applies the GT predicate on the "updated_by" field.

func UpdatedByGTE

UpdatedByGTE applies the GTE predicate on the "updated_by" field.

func UpdatedByHasPrefix

func UpdatedByHasPrefix(v string) predicate.TrustCenterSubprocessor

UpdatedByHasPrefix applies the HasPrefix predicate on the "updated_by" field.

func UpdatedByHasSuffix

func UpdatedByHasSuffix(v string) predicate.TrustCenterSubprocessor

UpdatedByHasSuffix applies the HasSuffix predicate on the "updated_by" field.

func UpdatedByIn

func UpdatedByIn(vs ...string) predicate.TrustCenterSubprocessor

UpdatedByIn applies the In predicate on the "updated_by" field.

func UpdatedByIsNil

func UpdatedByIsNil() predicate.TrustCenterSubprocessor

UpdatedByIsNil applies the IsNil predicate on the "updated_by" field.

func UpdatedByLT

UpdatedByLT applies the LT predicate on the "updated_by" field.

func UpdatedByLTE

UpdatedByLTE applies the LTE predicate on the "updated_by" field.

func UpdatedByNEQ

UpdatedByNEQ applies the NEQ predicate on the "updated_by" field.

func UpdatedByNotIn

func UpdatedByNotIn(vs ...string) predicate.TrustCenterSubprocessor

UpdatedByNotIn applies the NotIn predicate on the "updated_by" field.

func UpdatedByNotNil

func UpdatedByNotNil() predicate.TrustCenterSubprocessor

UpdatedByNotNil applies the NotNil predicate on the "updated_by" 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 TrustCenterSubprocessor queries.

func ByBlockedGroups added in v1.3.0

func ByBlockedGroups(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByBlockedGroups orders the results by blocked_groups terms.

func ByBlockedGroupsCount added in v1.3.0

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

ByBlockedGroupsCount orders the results by blocked_groups count.

func ByCreatedAt

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

ByCreatedAt orders the results by the created_at field.

func ByCreatedBy

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

ByCreatedBy orders the results by the created_by field.

func ByDeletedAt

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

ByDeletedAt orders the results by the deleted_at field.

func ByDeletedBy

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

ByDeletedBy orders the results by the deleted_by field.

func ByEditors added in v1.3.0

func ByEditors(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByEditors orders the results by editors terms.

func ByEditorsCount added in v1.3.0

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

ByEditorsCount orders the results by editors count.

func ByID

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

ByID orders the results by the id field.

func BySubprocessorField added in v0.23.0

func BySubprocessorField(field string, opts ...sql.OrderTermOption) OrderOption

BySubprocessorField orders the results by subprocessor field.

func BySubprocessorID added in v0.23.0

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

BySubprocessorID orders the results by the subprocessor_id field.

func ByTrustCenterField added in v0.23.0

func ByTrustCenterField(field string, opts ...sql.OrderTermOption) OrderOption

ByTrustCenterField orders the results by trust_center field.

func ByTrustCenterID added in v0.23.0

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

ByTrustCenterID orders the results by the trust_center_id field.

func ByTrustCenterSubprocessorKindField added in v1.6.0

func ByTrustCenterSubprocessorKindField(field string, opts ...sql.OrderTermOption) OrderOption

ByTrustCenterSubprocessorKindField orders the results by trust_center_subprocessor_kind field.

func ByTrustCenterSubprocessorKindID added in v1.6.0

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

ByTrustCenterSubprocessorKindID orders the results by the trust_center_subprocessor_kind_id field.

func ByTrustCenterSubprocessorKindName added in v1.6.0

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

ByTrustCenterSubprocessorKindName orders the results by the trust_center_subprocessor_kind_name field.

func ByUpdatedAt

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

ByUpdatedAt orders the results by the updated_at field.

func ByUpdatedBy

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

ByUpdatedBy orders the results by the updated_by field.

Jump to

Keyboard shortcuts

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