customdomain

package
v1.11.13 Latest Latest
Warning

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

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

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the customdomain type in the database.
	Label = "custom_domain"
	// 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"
	// FieldTags holds the string denoting the tags field in the database.
	FieldTags = "tags"
	// FieldOwnerID holds the string denoting the owner_id field in the database.
	FieldOwnerID = "owner_id"
	// FieldSystemOwned holds the string denoting the system_owned field in the database.
	FieldSystemOwned = "system_owned"
	// FieldInternalNotes holds the string denoting the internal_notes field in the database.
	FieldInternalNotes = "internal_notes"
	// FieldSystemInternalID holds the string denoting the system_internal_id field in the database.
	FieldSystemInternalID = "system_internal_id"
	// FieldCnameRecord holds the string denoting the cname_record field in the database.
	FieldCnameRecord = "cname_record"
	// FieldMappableDomainID holds the string denoting the mappable_domain_id field in the database.
	FieldMappableDomainID = "mappable_domain_id"
	// FieldDNSVerificationID holds the string denoting the dns_verification_id field in the database.
	FieldDNSVerificationID = "dns_verification_id"
	// FieldTrustCenterID holds the string denoting the trust_center_id field in the database.
	FieldTrustCenterID = "trust_center_id"
	// EdgeOwner holds the string denoting the owner edge name in mutations.
	EdgeOwner = "owner"
	// EdgeMappableDomain holds the string denoting the mappable_domain edge name in mutations.
	EdgeMappableDomain = "mappable_domain"
	// EdgeDNSVerification holds the string denoting the dns_verification edge name in mutations.
	EdgeDNSVerification = "dns_verification"
	// Table holds the table name of the customdomain in the database.
	Table = "custom_domains"
	// OwnerTable is the table that holds the owner relation/edge.
	OwnerTable = "custom_domains"
	// OwnerInverseTable is the table name for the Organization entity.
	// It exists in this package in order to avoid circular dependency with the "organization" package.
	OwnerInverseTable = "organizations"
	// OwnerColumn is the table column denoting the owner relation/edge.
	OwnerColumn = "owner_id"
	// MappableDomainTable is the table that holds the mappable_domain relation/edge.
	MappableDomainTable = "custom_domains"
	// MappableDomainInverseTable is the table name for the MappableDomain entity.
	// It exists in this package in order to avoid circular dependency with the "mappabledomain" package.
	MappableDomainInverseTable = "mappable_domains"
	// MappableDomainColumn is the table column denoting the mappable_domain relation/edge.
	MappableDomainColumn = "mappable_domain_id"
	// DNSVerificationTable is the table that holds the dns_verification relation/edge.
	DNSVerificationTable = "custom_domains"
	// DNSVerificationInverseTable is the table name for the DNSVerification entity.
	// It exists in this package in order to avoid circular dependency with the "dnsverification" package.
	DNSVerificationInverseTable = "dns_verifications"
	// DNSVerificationColumn is the table column denoting the dns_verification relation/edge.
	DNSVerificationColumn = "dns_verification_id"
)

Variables

View Source
var (
	Hooks        [8]ent.Hook
	Interceptors [2]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
	// DefaultTags holds the default value on creation for the "tags" field.
	DefaultTags []string
	// DefaultSystemOwned holds the default value on creation for the "system_owned" field.
	DefaultSystemOwned bool
	// CnameRecordValidator is a validator for the "cname_record" field. It is called by the builders before save.
	CnameRecordValidator func(string) error
	// MappableDomainIDValidator is a validator for the "mappable_domain_id" field. It is called by the builders before save.
	MappableDomainIDValidator 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 customdomain fields.

View Source
var ForeignKeys = []string{
	"dns_verification_custom_domains",
	"mappable_domain_custom_domains",
}

ForeignKeys holds the SQL foreign-keys that are owned by the "custom_domains" table and are not defined as standalone fields in the schema.

Functions

func And

func And(predicates ...predicate.CustomDomain) predicate.CustomDomain

And groups predicates with the AND operator between them.

func CnameRecord

func CnameRecord(v string) predicate.CustomDomain

CnameRecord applies equality check predicate on the "cname_record" field. It's identical to CnameRecordEQ.

func CnameRecordContains

func CnameRecordContains(v string) predicate.CustomDomain

CnameRecordContains applies the Contains predicate on the "cname_record" field.

func CnameRecordContainsFold

func CnameRecordContainsFold(v string) predicate.CustomDomain

CnameRecordContainsFold applies the ContainsFold predicate on the "cname_record" field.

func CnameRecordEQ

func CnameRecordEQ(v string) predicate.CustomDomain

CnameRecordEQ applies the EQ predicate on the "cname_record" field.

func CnameRecordEqualFold

func CnameRecordEqualFold(v string) predicate.CustomDomain

CnameRecordEqualFold applies the EqualFold predicate on the "cname_record" field.

func CnameRecordGT

func CnameRecordGT(v string) predicate.CustomDomain

CnameRecordGT applies the GT predicate on the "cname_record" field.

func CnameRecordGTE

func CnameRecordGTE(v string) predicate.CustomDomain

CnameRecordGTE applies the GTE predicate on the "cname_record" field.

func CnameRecordHasPrefix

func CnameRecordHasPrefix(v string) predicate.CustomDomain

CnameRecordHasPrefix applies the HasPrefix predicate on the "cname_record" field.

func CnameRecordHasSuffix

func CnameRecordHasSuffix(v string) predicate.CustomDomain

CnameRecordHasSuffix applies the HasSuffix predicate on the "cname_record" field.

func CnameRecordIn

func CnameRecordIn(vs ...string) predicate.CustomDomain

CnameRecordIn applies the In predicate on the "cname_record" field.

func CnameRecordLT

func CnameRecordLT(v string) predicate.CustomDomain

CnameRecordLT applies the LT predicate on the "cname_record" field.

func CnameRecordLTE

func CnameRecordLTE(v string) predicate.CustomDomain

CnameRecordLTE applies the LTE predicate on the "cname_record" field.

func CnameRecordNEQ

func CnameRecordNEQ(v string) predicate.CustomDomain

CnameRecordNEQ applies the NEQ predicate on the "cname_record" field.

func CnameRecordNotIn

func CnameRecordNotIn(vs ...string) predicate.CustomDomain

CnameRecordNotIn applies the NotIn predicate on the "cname_record" field.

func CreatedAt

func CreatedAt(v time.Time) predicate.CustomDomain

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.CustomDomain

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.CustomDomain

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.CustomDomain

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

func CreatedAtIn

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

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

func CreatedAtIsNil

func CreatedAtIsNil() predicate.CustomDomain

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.CustomDomain

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.CustomDomain

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.CustomDomain

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

func CreatedAtNotIn

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

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

func CreatedAtNotNil

func CreatedAtNotNil() predicate.CustomDomain

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

func CreatedBy

func CreatedBy(v string) predicate.CustomDomain

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

func CreatedByContains

func CreatedByContains(v string) predicate.CustomDomain

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

func CreatedByContainsFold

func CreatedByContainsFold(v string) predicate.CustomDomain

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

func CreatedByEQ

func CreatedByEQ(v string) predicate.CustomDomain

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

func CreatedByEqualFold

func CreatedByEqualFold(v string) predicate.CustomDomain

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

func CreatedByGT

func CreatedByGT(v string) predicate.CustomDomain

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

func CreatedByGTE

func CreatedByGTE(v string) predicate.CustomDomain

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

func CreatedByHasPrefix

func CreatedByHasPrefix(v string) predicate.CustomDomain

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

func CreatedByHasSuffix

func CreatedByHasSuffix(v string) predicate.CustomDomain

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

func CreatedByIn

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

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

func CreatedByIsNil

func CreatedByIsNil() predicate.CustomDomain

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

func CreatedByLT

func CreatedByLT(v string) predicate.CustomDomain

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

func CreatedByLTE

func CreatedByLTE(v string) predicate.CustomDomain

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

func CreatedByNEQ

func CreatedByNEQ(v string) predicate.CustomDomain

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

func CreatedByNotIn

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

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

func CreatedByNotNil

func CreatedByNotNil() predicate.CustomDomain

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

func DNSVerificationID added in v0.15.0

func DNSVerificationID(v string) predicate.CustomDomain

DNSVerificationID applies equality check predicate on the "dns_verification_id" field. It's identical to DNSVerificationIDEQ.

func DNSVerificationIDContains added in v0.15.0

func DNSVerificationIDContains(v string) predicate.CustomDomain

DNSVerificationIDContains applies the Contains predicate on the "dns_verification_id" field.

func DNSVerificationIDContainsFold added in v0.15.0

func DNSVerificationIDContainsFold(v string) predicate.CustomDomain

DNSVerificationIDContainsFold applies the ContainsFold predicate on the "dns_verification_id" field.

func DNSVerificationIDEQ added in v0.15.0

func DNSVerificationIDEQ(v string) predicate.CustomDomain

DNSVerificationIDEQ applies the EQ predicate on the "dns_verification_id" field.

func DNSVerificationIDEqualFold added in v0.15.0

func DNSVerificationIDEqualFold(v string) predicate.CustomDomain

DNSVerificationIDEqualFold applies the EqualFold predicate on the "dns_verification_id" field.

func DNSVerificationIDGT added in v0.15.0

func DNSVerificationIDGT(v string) predicate.CustomDomain

DNSVerificationIDGT applies the GT predicate on the "dns_verification_id" field.

func DNSVerificationIDGTE added in v0.15.0

func DNSVerificationIDGTE(v string) predicate.CustomDomain

DNSVerificationIDGTE applies the GTE predicate on the "dns_verification_id" field.

func DNSVerificationIDHasPrefix added in v0.15.0

func DNSVerificationIDHasPrefix(v string) predicate.CustomDomain

DNSVerificationIDHasPrefix applies the HasPrefix predicate on the "dns_verification_id" field.

func DNSVerificationIDHasSuffix added in v0.15.0

func DNSVerificationIDHasSuffix(v string) predicate.CustomDomain

DNSVerificationIDHasSuffix applies the HasSuffix predicate on the "dns_verification_id" field.

func DNSVerificationIDIn added in v0.15.0

func DNSVerificationIDIn(vs ...string) predicate.CustomDomain

DNSVerificationIDIn applies the In predicate on the "dns_verification_id" field.

func DNSVerificationIDIsNil added in v0.15.0

func DNSVerificationIDIsNil() predicate.CustomDomain

DNSVerificationIDIsNil applies the IsNil predicate on the "dns_verification_id" field.

func DNSVerificationIDLT added in v0.15.0

func DNSVerificationIDLT(v string) predicate.CustomDomain

DNSVerificationIDLT applies the LT predicate on the "dns_verification_id" field.

func DNSVerificationIDLTE added in v0.15.0

func DNSVerificationIDLTE(v string) predicate.CustomDomain

DNSVerificationIDLTE applies the LTE predicate on the "dns_verification_id" field.

func DNSVerificationIDNEQ added in v0.15.0

func DNSVerificationIDNEQ(v string) predicate.CustomDomain

DNSVerificationIDNEQ applies the NEQ predicate on the "dns_verification_id" field.

func DNSVerificationIDNotIn added in v0.15.0

func DNSVerificationIDNotIn(vs ...string) predicate.CustomDomain

DNSVerificationIDNotIn applies the NotIn predicate on the "dns_verification_id" field.

func DNSVerificationIDNotNil added in v0.15.0

func DNSVerificationIDNotNil() predicate.CustomDomain

DNSVerificationIDNotNil applies the NotNil predicate on the "dns_verification_id" field.

func DeletedAt

func DeletedAt(v time.Time) predicate.CustomDomain

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

func DeletedAtEQ

func DeletedAtEQ(v time.Time) predicate.CustomDomain

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

func DeletedAtGT

func DeletedAtGT(v time.Time) predicate.CustomDomain

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

func DeletedAtGTE

func DeletedAtGTE(v time.Time) predicate.CustomDomain

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

func DeletedAtIn

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

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

func DeletedAtIsNil

func DeletedAtIsNil() predicate.CustomDomain

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

func DeletedAtLT

func DeletedAtLT(v time.Time) predicate.CustomDomain

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

func DeletedAtLTE

func DeletedAtLTE(v time.Time) predicate.CustomDomain

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

func DeletedAtNEQ

func DeletedAtNEQ(v time.Time) predicate.CustomDomain

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

func DeletedAtNotIn

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

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

func DeletedAtNotNil

func DeletedAtNotNil() predicate.CustomDomain

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

func DeletedBy

func DeletedBy(v string) predicate.CustomDomain

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

func DeletedByContains

func DeletedByContains(v string) predicate.CustomDomain

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

func DeletedByContainsFold

func DeletedByContainsFold(v string) predicate.CustomDomain

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

func DeletedByEQ

func DeletedByEQ(v string) predicate.CustomDomain

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

func DeletedByEqualFold

func DeletedByEqualFold(v string) predicate.CustomDomain

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

func DeletedByGT

func DeletedByGT(v string) predicate.CustomDomain

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

func DeletedByGTE

func DeletedByGTE(v string) predicate.CustomDomain

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

func DeletedByHasPrefix

func DeletedByHasPrefix(v string) predicate.CustomDomain

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

func DeletedByHasSuffix

func DeletedByHasSuffix(v string) predicate.CustomDomain

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

func DeletedByIn

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

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

func DeletedByIsNil

func DeletedByIsNil() predicate.CustomDomain

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

func DeletedByLT

func DeletedByLT(v string) predicate.CustomDomain

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

func DeletedByLTE

func DeletedByLTE(v string) predicate.CustomDomain

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

func DeletedByNEQ

func DeletedByNEQ(v string) predicate.CustomDomain

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

func DeletedByNotIn

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

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

func DeletedByNotNil

func DeletedByNotNil() predicate.CustomDomain

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

func HasDNSVerification added in v0.15.0

func HasDNSVerification() predicate.CustomDomain

HasDNSVerification applies the HasEdge predicate on the "dns_verification" edge.

func HasDNSVerificationWith added in v0.15.0

func HasDNSVerificationWith(preds ...predicate.DNSVerification) predicate.CustomDomain

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

func HasMappableDomain

func HasMappableDomain() predicate.CustomDomain

HasMappableDomain applies the HasEdge predicate on the "mappable_domain" edge.

func HasMappableDomainWith

func HasMappableDomainWith(preds ...predicate.MappableDomain) predicate.CustomDomain

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

func HasOwner

func HasOwner() predicate.CustomDomain

HasOwner applies the HasEdge predicate on the "owner" edge.

func HasOwnerWith

func HasOwnerWith(preds ...predicate.Organization) predicate.CustomDomain

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

func ID

ID filters vertices based on their ID field.

func IDContainsFold

func IDContainsFold(id string) predicate.CustomDomain

IDContainsFold applies the ContainsFold predicate on the ID field.

func IDEQ

func IDEQ(id string) predicate.CustomDomain

IDEQ applies the EQ predicate on the ID field.

func IDEqualFold

func IDEqualFold(id string) predicate.CustomDomain

IDEqualFold applies the EqualFold predicate on the ID field.

func IDGT

func IDGT(id string) predicate.CustomDomain

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id string) predicate.CustomDomain

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...string) predicate.CustomDomain

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id string) predicate.CustomDomain

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id string) predicate.CustomDomain

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id string) predicate.CustomDomain

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...string) predicate.CustomDomain

IDNotIn applies the NotIn predicate on the ID field.

func InternalNotes added in v0.34.0

func InternalNotes(v string) predicate.CustomDomain

InternalNotes applies equality check predicate on the "internal_notes" field. It's identical to InternalNotesEQ.

func InternalNotesContains added in v0.34.0

func InternalNotesContains(v string) predicate.CustomDomain

InternalNotesContains applies the Contains predicate on the "internal_notes" field.

func InternalNotesContainsFold added in v0.34.0

func InternalNotesContainsFold(v string) predicate.CustomDomain

InternalNotesContainsFold applies the ContainsFold predicate on the "internal_notes" field.

func InternalNotesEQ added in v0.34.0

func InternalNotesEQ(v string) predicate.CustomDomain

InternalNotesEQ applies the EQ predicate on the "internal_notes" field.

func InternalNotesEqualFold added in v0.34.0

func InternalNotesEqualFold(v string) predicate.CustomDomain

InternalNotesEqualFold applies the EqualFold predicate on the "internal_notes" field.

func InternalNotesGT added in v0.34.0

func InternalNotesGT(v string) predicate.CustomDomain

InternalNotesGT applies the GT predicate on the "internal_notes" field.

func InternalNotesGTE added in v0.34.0

func InternalNotesGTE(v string) predicate.CustomDomain

InternalNotesGTE applies the GTE predicate on the "internal_notes" field.

func InternalNotesHasPrefix added in v0.34.0

func InternalNotesHasPrefix(v string) predicate.CustomDomain

InternalNotesHasPrefix applies the HasPrefix predicate on the "internal_notes" field.

func InternalNotesHasSuffix added in v0.34.0

func InternalNotesHasSuffix(v string) predicate.CustomDomain

InternalNotesHasSuffix applies the HasSuffix predicate on the "internal_notes" field.

func InternalNotesIn added in v0.34.0

func InternalNotesIn(vs ...string) predicate.CustomDomain

InternalNotesIn applies the In predicate on the "internal_notes" field.

func InternalNotesIsNil added in v0.34.0

func InternalNotesIsNil() predicate.CustomDomain

InternalNotesIsNil applies the IsNil predicate on the "internal_notes" field.

func InternalNotesLT added in v0.34.0

func InternalNotesLT(v string) predicate.CustomDomain

InternalNotesLT applies the LT predicate on the "internal_notes" field.

func InternalNotesLTE added in v0.34.0

func InternalNotesLTE(v string) predicate.CustomDomain

InternalNotesLTE applies the LTE predicate on the "internal_notes" field.

func InternalNotesNEQ added in v0.34.0

func InternalNotesNEQ(v string) predicate.CustomDomain

InternalNotesNEQ applies the NEQ predicate on the "internal_notes" field.

func InternalNotesNotIn added in v0.34.0

func InternalNotesNotIn(vs ...string) predicate.CustomDomain

InternalNotesNotIn applies the NotIn predicate on the "internal_notes" field.

func InternalNotesNotNil added in v0.34.0

func InternalNotesNotNil() predicate.CustomDomain

InternalNotesNotNil applies the NotNil predicate on the "internal_notes" field.

func MappableDomainID

func MappableDomainID(v string) predicate.CustomDomain

MappableDomainID applies equality check predicate on the "mappable_domain_id" field. It's identical to MappableDomainIDEQ.

func MappableDomainIDContains

func MappableDomainIDContains(v string) predicate.CustomDomain

MappableDomainIDContains applies the Contains predicate on the "mappable_domain_id" field.

func MappableDomainIDContainsFold

func MappableDomainIDContainsFold(v string) predicate.CustomDomain

MappableDomainIDContainsFold applies the ContainsFold predicate on the "mappable_domain_id" field.

func MappableDomainIDEQ

func MappableDomainIDEQ(v string) predicate.CustomDomain

MappableDomainIDEQ applies the EQ predicate on the "mappable_domain_id" field.

func MappableDomainIDEqualFold

func MappableDomainIDEqualFold(v string) predicate.CustomDomain

MappableDomainIDEqualFold applies the EqualFold predicate on the "mappable_domain_id" field.

func MappableDomainIDGT

func MappableDomainIDGT(v string) predicate.CustomDomain

MappableDomainIDGT applies the GT predicate on the "mappable_domain_id" field.

func MappableDomainIDGTE

func MappableDomainIDGTE(v string) predicate.CustomDomain

MappableDomainIDGTE applies the GTE predicate on the "mappable_domain_id" field.

func MappableDomainIDHasPrefix

func MappableDomainIDHasPrefix(v string) predicate.CustomDomain

MappableDomainIDHasPrefix applies the HasPrefix predicate on the "mappable_domain_id" field.

func MappableDomainIDHasSuffix

func MappableDomainIDHasSuffix(v string) predicate.CustomDomain

MappableDomainIDHasSuffix applies the HasSuffix predicate on the "mappable_domain_id" field.

func MappableDomainIDIn

func MappableDomainIDIn(vs ...string) predicate.CustomDomain

MappableDomainIDIn applies the In predicate on the "mappable_domain_id" field.

func MappableDomainIDLT

func MappableDomainIDLT(v string) predicate.CustomDomain

MappableDomainIDLT applies the LT predicate on the "mappable_domain_id" field.

func MappableDomainIDLTE

func MappableDomainIDLTE(v string) predicate.CustomDomain

MappableDomainIDLTE applies the LTE predicate on the "mappable_domain_id" field.

func MappableDomainIDNEQ

func MappableDomainIDNEQ(v string) predicate.CustomDomain

MappableDomainIDNEQ applies the NEQ predicate on the "mappable_domain_id" field.

func MappableDomainIDNotIn

func MappableDomainIDNotIn(vs ...string) predicate.CustomDomain

MappableDomainIDNotIn applies the NotIn predicate on the "mappable_domain_id" field.

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.CustomDomain) predicate.CustomDomain

Or groups predicates with the OR operator between them.

func OwnerID

func OwnerID(v string) predicate.CustomDomain

OwnerID applies equality check predicate on the "owner_id" field. It's identical to OwnerIDEQ.

func OwnerIDContains

func OwnerIDContains(v string) predicate.CustomDomain

OwnerIDContains applies the Contains predicate on the "owner_id" field.

func OwnerIDContainsFold

func OwnerIDContainsFold(v string) predicate.CustomDomain

OwnerIDContainsFold applies the ContainsFold predicate on the "owner_id" field.

func OwnerIDEQ

func OwnerIDEQ(v string) predicate.CustomDomain

OwnerIDEQ applies the EQ predicate on the "owner_id" field.

func OwnerIDEqualFold

func OwnerIDEqualFold(v string) predicate.CustomDomain

OwnerIDEqualFold applies the EqualFold predicate on the "owner_id" field.

func OwnerIDGT

func OwnerIDGT(v string) predicate.CustomDomain

OwnerIDGT applies the GT predicate on the "owner_id" field.

func OwnerIDGTE

func OwnerIDGTE(v string) predicate.CustomDomain

OwnerIDGTE applies the GTE predicate on the "owner_id" field.

func OwnerIDHasPrefix

func OwnerIDHasPrefix(v string) predicate.CustomDomain

OwnerIDHasPrefix applies the HasPrefix predicate on the "owner_id" field.

func OwnerIDHasSuffix

func OwnerIDHasSuffix(v string) predicate.CustomDomain

OwnerIDHasSuffix applies the HasSuffix predicate on the "owner_id" field.

func OwnerIDIn

func OwnerIDIn(vs ...string) predicate.CustomDomain

OwnerIDIn applies the In predicate on the "owner_id" field.

func OwnerIDIsNil

func OwnerIDIsNil() predicate.CustomDomain

OwnerIDIsNil applies the IsNil predicate on the "owner_id" field.

func OwnerIDLT

func OwnerIDLT(v string) predicate.CustomDomain

OwnerIDLT applies the LT predicate on the "owner_id" field.

func OwnerIDLTE

func OwnerIDLTE(v string) predicate.CustomDomain

OwnerIDLTE applies the LTE predicate on the "owner_id" field.

func OwnerIDNEQ

func OwnerIDNEQ(v string) predicate.CustomDomain

OwnerIDNEQ applies the NEQ predicate on the "owner_id" field.

func OwnerIDNotIn

func OwnerIDNotIn(vs ...string) predicate.CustomDomain

OwnerIDNotIn applies the NotIn predicate on the "owner_id" field.

func OwnerIDNotNil

func OwnerIDNotNil() predicate.CustomDomain

OwnerIDNotNil applies the NotNil predicate on the "owner_id" field.

func SystemInternalID added in v0.34.0

func SystemInternalID(v string) predicate.CustomDomain

SystemInternalID applies equality check predicate on the "system_internal_id" field. It's identical to SystemInternalIDEQ.

func SystemInternalIDContains added in v0.34.0

func SystemInternalIDContains(v string) predicate.CustomDomain

SystemInternalIDContains applies the Contains predicate on the "system_internal_id" field.

func SystemInternalIDContainsFold added in v0.34.0

func SystemInternalIDContainsFold(v string) predicate.CustomDomain

SystemInternalIDContainsFold applies the ContainsFold predicate on the "system_internal_id" field.

func SystemInternalIDEQ added in v0.34.0

func SystemInternalIDEQ(v string) predicate.CustomDomain

SystemInternalIDEQ applies the EQ predicate on the "system_internal_id" field.

func SystemInternalIDEqualFold added in v0.34.0

func SystemInternalIDEqualFold(v string) predicate.CustomDomain

SystemInternalIDEqualFold applies the EqualFold predicate on the "system_internal_id" field.

func SystemInternalIDGT added in v0.34.0

func SystemInternalIDGT(v string) predicate.CustomDomain

SystemInternalIDGT applies the GT predicate on the "system_internal_id" field.

func SystemInternalIDGTE added in v0.34.0

func SystemInternalIDGTE(v string) predicate.CustomDomain

SystemInternalIDGTE applies the GTE predicate on the "system_internal_id" field.

func SystemInternalIDHasPrefix added in v0.34.0

func SystemInternalIDHasPrefix(v string) predicate.CustomDomain

SystemInternalIDHasPrefix applies the HasPrefix predicate on the "system_internal_id" field.

func SystemInternalIDHasSuffix added in v0.34.0

func SystemInternalIDHasSuffix(v string) predicate.CustomDomain

SystemInternalIDHasSuffix applies the HasSuffix predicate on the "system_internal_id" field.

func SystemInternalIDIn added in v0.34.0

func SystemInternalIDIn(vs ...string) predicate.CustomDomain

SystemInternalIDIn applies the In predicate on the "system_internal_id" field.

func SystemInternalIDIsNil added in v0.34.0

func SystemInternalIDIsNil() predicate.CustomDomain

SystemInternalIDIsNil applies the IsNil predicate on the "system_internal_id" field.

func SystemInternalIDLT added in v0.34.0

func SystemInternalIDLT(v string) predicate.CustomDomain

SystemInternalIDLT applies the LT predicate on the "system_internal_id" field.

func SystemInternalIDLTE added in v0.34.0

func SystemInternalIDLTE(v string) predicate.CustomDomain

SystemInternalIDLTE applies the LTE predicate on the "system_internal_id" field.

func SystemInternalIDNEQ added in v0.34.0

func SystemInternalIDNEQ(v string) predicate.CustomDomain

SystemInternalIDNEQ applies the NEQ predicate on the "system_internal_id" field.

func SystemInternalIDNotIn added in v0.34.0

func SystemInternalIDNotIn(vs ...string) predicate.CustomDomain

SystemInternalIDNotIn applies the NotIn predicate on the "system_internal_id" field.

func SystemInternalIDNotNil added in v0.34.0

func SystemInternalIDNotNil() predicate.CustomDomain

SystemInternalIDNotNil applies the NotNil predicate on the "system_internal_id" field.

func SystemOwned added in v0.34.0

func SystemOwned(v bool) predicate.CustomDomain

SystemOwned applies equality check predicate on the "system_owned" field. It's identical to SystemOwnedEQ.

func SystemOwnedEQ added in v0.34.0

func SystemOwnedEQ(v bool) predicate.CustomDomain

SystemOwnedEQ applies the EQ predicate on the "system_owned" field.

func SystemOwnedIsNil added in v0.34.0

func SystemOwnedIsNil() predicate.CustomDomain

SystemOwnedIsNil applies the IsNil predicate on the "system_owned" field.

func SystemOwnedNEQ added in v0.34.0

func SystemOwnedNEQ(v bool) predicate.CustomDomain

SystemOwnedNEQ applies the NEQ predicate on the "system_owned" field.

func SystemOwnedNotNil added in v0.34.0

func SystemOwnedNotNil() predicate.CustomDomain

SystemOwnedNotNil applies the NotNil predicate on the "system_owned" field.

func TagsIsNil

func TagsIsNil() predicate.CustomDomain

TagsIsNil applies the IsNil predicate on the "tags" field.

func TagsNotNil

func TagsNotNil() predicate.CustomDomain

TagsNotNil applies the NotNil predicate on the "tags" field.

func TrustCenterID added in v1.7.1

func TrustCenterID(v string) predicate.CustomDomain

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

func TrustCenterIDContains added in v1.7.1

func TrustCenterIDContains(v string) predicate.CustomDomain

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

func TrustCenterIDContainsFold added in v1.7.1

func TrustCenterIDContainsFold(v string) predicate.CustomDomain

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

func TrustCenterIDEQ added in v1.7.1

func TrustCenterIDEQ(v string) predicate.CustomDomain

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

func TrustCenterIDEqualFold added in v1.7.1

func TrustCenterIDEqualFold(v string) predicate.CustomDomain

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

func TrustCenterIDGT added in v1.7.1

func TrustCenterIDGT(v string) predicate.CustomDomain

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

func TrustCenterIDGTE added in v1.7.1

func TrustCenterIDGTE(v string) predicate.CustomDomain

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

func TrustCenterIDHasPrefix added in v1.7.1

func TrustCenterIDHasPrefix(v string) predicate.CustomDomain

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

func TrustCenterIDHasSuffix added in v1.7.1

func TrustCenterIDHasSuffix(v string) predicate.CustomDomain

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

func TrustCenterIDIn added in v1.7.1

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

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

func TrustCenterIDIsNil added in v1.7.1

func TrustCenterIDIsNil() predicate.CustomDomain

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

func TrustCenterIDLT added in v1.7.1

func TrustCenterIDLT(v string) predicate.CustomDomain

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

func TrustCenterIDLTE added in v1.7.1

func TrustCenterIDLTE(v string) predicate.CustomDomain

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

func TrustCenterIDNEQ added in v1.7.1

func TrustCenterIDNEQ(v string) predicate.CustomDomain

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

func TrustCenterIDNotIn added in v1.7.1

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

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

func TrustCenterIDNotNil added in v1.7.1

func TrustCenterIDNotNil() predicate.CustomDomain

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

func UpdatedAt

func UpdatedAt(v time.Time) predicate.CustomDomain

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

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.CustomDomain

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

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.CustomDomain

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

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.CustomDomain

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

func UpdatedAtIn

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

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

func UpdatedAtIsNil

func UpdatedAtIsNil() predicate.CustomDomain

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

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.CustomDomain

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

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.CustomDomain

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

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.CustomDomain

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

func UpdatedAtNotIn

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

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

func UpdatedAtNotNil

func UpdatedAtNotNil() predicate.CustomDomain

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

func UpdatedBy

func UpdatedBy(v string) predicate.CustomDomain

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

func UpdatedByContains

func UpdatedByContains(v string) predicate.CustomDomain

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

func UpdatedByContainsFold

func UpdatedByContainsFold(v string) predicate.CustomDomain

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

func UpdatedByEQ

func UpdatedByEQ(v string) predicate.CustomDomain

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

func UpdatedByEqualFold

func UpdatedByEqualFold(v string) predicate.CustomDomain

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

func UpdatedByGT

func UpdatedByGT(v string) predicate.CustomDomain

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

func UpdatedByGTE

func UpdatedByGTE(v string) predicate.CustomDomain

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

func UpdatedByHasPrefix

func UpdatedByHasPrefix(v string) predicate.CustomDomain

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

func UpdatedByHasSuffix

func UpdatedByHasSuffix(v string) predicate.CustomDomain

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

func UpdatedByIn

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

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

func UpdatedByIsNil

func UpdatedByIsNil() predicate.CustomDomain

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

func UpdatedByLT

func UpdatedByLT(v string) predicate.CustomDomain

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

func UpdatedByLTE

func UpdatedByLTE(v string) predicate.CustomDomain

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

func UpdatedByNEQ

func UpdatedByNEQ(v string) predicate.CustomDomain

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

func UpdatedByNotIn

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

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

func UpdatedByNotNil

func UpdatedByNotNil() predicate.CustomDomain

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

func ByCnameRecord

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

ByCnameRecord orders the results by the cname_record field.

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 ByDNSVerificationField added in v0.15.0

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

ByDNSVerificationField orders the results by dns_verification field.

func ByDNSVerificationID added in v0.15.0

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

ByDNSVerificationID orders the results by the dns_verification_id 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 ByID

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

ByID orders the results by the id field.

func ByInternalNotes added in v0.34.0

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

ByInternalNotes orders the results by the internal_notes field.

func ByMappableDomainField

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

ByMappableDomainField orders the results by mappable_domain field.

func ByMappableDomainID

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

ByMappableDomainID orders the results by the mappable_domain_id field.

func ByOwnerField

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

ByOwnerField orders the results by owner field.

func ByOwnerID

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

ByOwnerID orders the results by the owner_id field.

func BySystemInternalID added in v0.34.0

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

BySystemInternalID orders the results by the system_internal_id field.

func BySystemOwned added in v0.34.0

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

BySystemOwned orders the results by the system_owned field.

func ByTrustCenterID added in v1.7.1

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

ByTrustCenterID orders the results by the trust_center_id 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