dnsverification

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: 9 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the dnsverification type in the database.
	Label = "dns_verification"
	// 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"
	// FieldCloudflareHostnameID holds the string denoting the cloudflare_hostname_id field in the database.
	FieldCloudflareHostnameID = "cloudflare_hostname_id"
	// FieldDNSTxtRecord holds the string denoting the dns_txt_record field in the database.
	FieldDNSTxtRecord = "dns_txt_record"
	// FieldDNSTxtValue holds the string denoting the dns_txt_value field in the database.
	FieldDNSTxtValue = "dns_txt_value"
	// FieldDNSVerificationStatus holds the string denoting the dns_verification_status field in the database.
	FieldDNSVerificationStatus = "dns_verification_status"
	// FieldDNSVerificationStatusReason holds the string denoting the dns_verification_status_reason field in the database.
	FieldDNSVerificationStatusReason = "dns_verification_status_reason"
	// FieldAcmeChallengePath holds the string denoting the acme_challenge_path field in the database.
	FieldAcmeChallengePath = "acme_challenge_path"
	// FieldExpectedAcmeChallengeValue holds the string denoting the expected_acme_challenge_value field in the database.
	FieldExpectedAcmeChallengeValue = "expected_acme_challenge_value"
	// FieldAcmeChallengeStatus holds the string denoting the acme_challenge_status field in the database.
	FieldAcmeChallengeStatus = "acme_challenge_status"
	// FieldAcmeChallengeStatusReason holds the string denoting the acme_challenge_status_reason field in the database.
	FieldAcmeChallengeStatusReason = "acme_challenge_status_reason"
	// EdgeOwner holds the string denoting the owner edge name in mutations.
	EdgeOwner = "owner"
	// EdgeCustomDomains holds the string denoting the custom_domains edge name in mutations.
	EdgeCustomDomains = "custom_domains"
	// Table holds the table name of the dnsverification in the database.
	Table = "dns_verifications"
	// OwnerTable is the table that holds the owner relation/edge.
	OwnerTable = "dns_verifications"
	// 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"
	// CustomDomainsTable is the table that holds the custom_domains relation/edge.
	CustomDomainsTable = "custom_domains"
	// CustomDomainsInverseTable is the table name for the CustomDomain entity.
	// It exists in this package in order to avoid circular dependency with the "customdomain" package.
	CustomDomainsInverseTable = "custom_domains"
	// CustomDomainsColumn is the table column denoting the custom_domains relation/edge.
	CustomDomainsColumn = "dns_verification_custom_domains"
)
View Source
const DefaultAcmeChallengeStatus enums.SSLVerificationStatus = "INITIALIZING"
View Source
const DefaultDNSVerificationStatus enums.DNSVerificationStatus = "PENDING"

Variables

View Source
var (
	Hooks        [6]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
	// CloudflareHostnameIDValidator is a validator for the "cloudflare_hostname_id" field. It is called by the builders before save.
	CloudflareHostnameIDValidator func(string) error
	// DNSTxtRecordValidator is a validator for the "dns_txt_record" field. It is called by the builders before save.
	DNSTxtRecordValidator func(string) error
	// DNSTxtValueValidator is a validator for the "dns_txt_value" field. It is called by the builders before save.
	DNSTxtValueValidator func(string) error
	// DNSVerificationStatusReasonValidator is a validator for the "dns_verification_status_reason" field. It is called by the builders before save.
	DNSVerificationStatusReasonValidator func(string) error
	// AcmeChallengePathValidator is a validator for the "acme_challenge_path" field. It is called by the builders before save.
	AcmeChallengePathValidator func(string) error
	// ExpectedAcmeChallengeValueValidator is a validator for the "expected_acme_challenge_value" field. It is called by the builders before save.
	ExpectedAcmeChallengeValueValidator func(string) error
	// AcmeChallengeStatusReasonValidator is a validator for the "acme_challenge_status_reason" field. It is called by the builders before save.
	AcmeChallengeStatusReasonValidator 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 dnsverification fields.

Functions

func AcmeChallengePath

func AcmeChallengePath(v string) predicate.DNSVerification

AcmeChallengePath applies equality check predicate on the "acme_challenge_path" field. It's identical to AcmeChallengePathEQ.

func AcmeChallengePathContains

func AcmeChallengePathContains(v string) predicate.DNSVerification

AcmeChallengePathContains applies the Contains predicate on the "acme_challenge_path" field.

func AcmeChallengePathContainsFold

func AcmeChallengePathContainsFold(v string) predicate.DNSVerification

AcmeChallengePathContainsFold applies the ContainsFold predicate on the "acme_challenge_path" field.

func AcmeChallengePathEQ

func AcmeChallengePathEQ(v string) predicate.DNSVerification

AcmeChallengePathEQ applies the EQ predicate on the "acme_challenge_path" field.

func AcmeChallengePathEqualFold

func AcmeChallengePathEqualFold(v string) predicate.DNSVerification

AcmeChallengePathEqualFold applies the EqualFold predicate on the "acme_challenge_path" field.

func AcmeChallengePathGT

func AcmeChallengePathGT(v string) predicate.DNSVerification

AcmeChallengePathGT applies the GT predicate on the "acme_challenge_path" field.

func AcmeChallengePathGTE

func AcmeChallengePathGTE(v string) predicate.DNSVerification

AcmeChallengePathGTE applies the GTE predicate on the "acme_challenge_path" field.

func AcmeChallengePathHasPrefix

func AcmeChallengePathHasPrefix(v string) predicate.DNSVerification

AcmeChallengePathHasPrefix applies the HasPrefix predicate on the "acme_challenge_path" field.

func AcmeChallengePathHasSuffix

func AcmeChallengePathHasSuffix(v string) predicate.DNSVerification

AcmeChallengePathHasSuffix applies the HasSuffix predicate on the "acme_challenge_path" field.

func AcmeChallengePathIn

func AcmeChallengePathIn(vs ...string) predicate.DNSVerification

AcmeChallengePathIn applies the In predicate on the "acme_challenge_path" field.

func AcmeChallengePathIsNil

func AcmeChallengePathIsNil() predicate.DNSVerification

AcmeChallengePathIsNil applies the IsNil predicate on the "acme_challenge_path" field.

func AcmeChallengePathLT

func AcmeChallengePathLT(v string) predicate.DNSVerification

AcmeChallengePathLT applies the LT predicate on the "acme_challenge_path" field.

func AcmeChallengePathLTE

func AcmeChallengePathLTE(v string) predicate.DNSVerification

AcmeChallengePathLTE applies the LTE predicate on the "acme_challenge_path" field.

func AcmeChallengePathNEQ

func AcmeChallengePathNEQ(v string) predicate.DNSVerification

AcmeChallengePathNEQ applies the NEQ predicate on the "acme_challenge_path" field.

func AcmeChallengePathNotIn

func AcmeChallengePathNotIn(vs ...string) predicate.DNSVerification

AcmeChallengePathNotIn applies the NotIn predicate on the "acme_challenge_path" field.

func AcmeChallengePathNotNil

func AcmeChallengePathNotNil() predicate.DNSVerification

AcmeChallengePathNotNil applies the NotNil predicate on the "acme_challenge_path" field.

func AcmeChallengeStatusEQ

func AcmeChallengeStatusEQ(v enums.SSLVerificationStatus) predicate.DNSVerification

AcmeChallengeStatusEQ applies the EQ predicate on the "acme_challenge_status" field.

func AcmeChallengeStatusIn

func AcmeChallengeStatusIn(vs ...enums.SSLVerificationStatus) predicate.DNSVerification

AcmeChallengeStatusIn applies the In predicate on the "acme_challenge_status" field.

func AcmeChallengeStatusNEQ

func AcmeChallengeStatusNEQ(v enums.SSLVerificationStatus) predicate.DNSVerification

AcmeChallengeStatusNEQ applies the NEQ predicate on the "acme_challenge_status" field.

func AcmeChallengeStatusNotIn

func AcmeChallengeStatusNotIn(vs ...enums.SSLVerificationStatus) predicate.DNSVerification

AcmeChallengeStatusNotIn applies the NotIn predicate on the "acme_challenge_status" field.

func AcmeChallengeStatusReason

func AcmeChallengeStatusReason(v string) predicate.DNSVerification

AcmeChallengeStatusReason applies equality check predicate on the "acme_challenge_status_reason" field. It's identical to AcmeChallengeStatusReasonEQ.

func AcmeChallengeStatusReasonContains

func AcmeChallengeStatusReasonContains(v string) predicate.DNSVerification

AcmeChallengeStatusReasonContains applies the Contains predicate on the "acme_challenge_status_reason" field.

func AcmeChallengeStatusReasonContainsFold

func AcmeChallengeStatusReasonContainsFold(v string) predicate.DNSVerification

AcmeChallengeStatusReasonContainsFold applies the ContainsFold predicate on the "acme_challenge_status_reason" field.

func AcmeChallengeStatusReasonEQ

func AcmeChallengeStatusReasonEQ(v string) predicate.DNSVerification

AcmeChallengeStatusReasonEQ applies the EQ predicate on the "acme_challenge_status_reason" field.

func AcmeChallengeStatusReasonEqualFold

func AcmeChallengeStatusReasonEqualFold(v string) predicate.DNSVerification

AcmeChallengeStatusReasonEqualFold applies the EqualFold predicate on the "acme_challenge_status_reason" field.

func AcmeChallengeStatusReasonGT

func AcmeChallengeStatusReasonGT(v string) predicate.DNSVerification

AcmeChallengeStatusReasonGT applies the GT predicate on the "acme_challenge_status_reason" field.

func AcmeChallengeStatusReasonGTE

func AcmeChallengeStatusReasonGTE(v string) predicate.DNSVerification

AcmeChallengeStatusReasonGTE applies the GTE predicate on the "acme_challenge_status_reason" field.

func AcmeChallengeStatusReasonHasPrefix

func AcmeChallengeStatusReasonHasPrefix(v string) predicate.DNSVerification

AcmeChallengeStatusReasonHasPrefix applies the HasPrefix predicate on the "acme_challenge_status_reason" field.

func AcmeChallengeStatusReasonHasSuffix

func AcmeChallengeStatusReasonHasSuffix(v string) predicate.DNSVerification

AcmeChallengeStatusReasonHasSuffix applies the HasSuffix predicate on the "acme_challenge_status_reason" field.

func AcmeChallengeStatusReasonIn

func AcmeChallengeStatusReasonIn(vs ...string) predicate.DNSVerification

AcmeChallengeStatusReasonIn applies the In predicate on the "acme_challenge_status_reason" field.

func AcmeChallengeStatusReasonIsNil

func AcmeChallengeStatusReasonIsNil() predicate.DNSVerification

AcmeChallengeStatusReasonIsNil applies the IsNil predicate on the "acme_challenge_status_reason" field.

func AcmeChallengeStatusReasonLT

func AcmeChallengeStatusReasonLT(v string) predicate.DNSVerification

AcmeChallengeStatusReasonLT applies the LT predicate on the "acme_challenge_status_reason" field.

func AcmeChallengeStatusReasonLTE

func AcmeChallengeStatusReasonLTE(v string) predicate.DNSVerification

AcmeChallengeStatusReasonLTE applies the LTE predicate on the "acme_challenge_status_reason" field.

func AcmeChallengeStatusReasonNEQ

func AcmeChallengeStatusReasonNEQ(v string) predicate.DNSVerification

AcmeChallengeStatusReasonNEQ applies the NEQ predicate on the "acme_challenge_status_reason" field.

func AcmeChallengeStatusReasonNotIn

func AcmeChallengeStatusReasonNotIn(vs ...string) predicate.DNSVerification

AcmeChallengeStatusReasonNotIn applies the NotIn predicate on the "acme_challenge_status_reason" field.

func AcmeChallengeStatusReasonNotNil

func AcmeChallengeStatusReasonNotNil() predicate.DNSVerification

AcmeChallengeStatusReasonNotNil applies the NotNil predicate on the "acme_challenge_status_reason" field.

func AcmeChallengeStatusValidator

func AcmeChallengeStatusValidator(acs enums.SSLVerificationStatus) error

AcmeChallengeStatusValidator is a validator for the "acme_challenge_status" field enum values. It is called by the builders before save.

func And

And groups predicates with the AND operator between them.

func CloudflareHostnameID

func CloudflareHostnameID(v string) predicate.DNSVerification

CloudflareHostnameID applies equality check predicate on the "cloudflare_hostname_id" field. It's identical to CloudflareHostnameIDEQ.

func CloudflareHostnameIDContains

func CloudflareHostnameIDContains(v string) predicate.DNSVerification

CloudflareHostnameIDContains applies the Contains predicate on the "cloudflare_hostname_id" field.

func CloudflareHostnameIDContainsFold

func CloudflareHostnameIDContainsFold(v string) predicate.DNSVerification

CloudflareHostnameIDContainsFold applies the ContainsFold predicate on the "cloudflare_hostname_id" field.

func CloudflareHostnameIDEQ

func CloudflareHostnameIDEQ(v string) predicate.DNSVerification

CloudflareHostnameIDEQ applies the EQ predicate on the "cloudflare_hostname_id" field.

func CloudflareHostnameIDEqualFold

func CloudflareHostnameIDEqualFold(v string) predicate.DNSVerification

CloudflareHostnameIDEqualFold applies the EqualFold predicate on the "cloudflare_hostname_id" field.

func CloudflareHostnameIDGT

func CloudflareHostnameIDGT(v string) predicate.DNSVerification

CloudflareHostnameIDGT applies the GT predicate on the "cloudflare_hostname_id" field.

func CloudflareHostnameIDGTE

func CloudflareHostnameIDGTE(v string) predicate.DNSVerification

CloudflareHostnameIDGTE applies the GTE predicate on the "cloudflare_hostname_id" field.

func CloudflareHostnameIDHasPrefix

func CloudflareHostnameIDHasPrefix(v string) predicate.DNSVerification

CloudflareHostnameIDHasPrefix applies the HasPrefix predicate on the "cloudflare_hostname_id" field.

func CloudflareHostnameIDHasSuffix

func CloudflareHostnameIDHasSuffix(v string) predicate.DNSVerification

CloudflareHostnameIDHasSuffix applies the HasSuffix predicate on the "cloudflare_hostname_id" field.

func CloudflareHostnameIDIn

func CloudflareHostnameIDIn(vs ...string) predicate.DNSVerification

CloudflareHostnameIDIn applies the In predicate on the "cloudflare_hostname_id" field.

func CloudflareHostnameIDLT

func CloudflareHostnameIDLT(v string) predicate.DNSVerification

CloudflareHostnameIDLT applies the LT predicate on the "cloudflare_hostname_id" field.

func CloudflareHostnameIDLTE

func CloudflareHostnameIDLTE(v string) predicate.DNSVerification

CloudflareHostnameIDLTE applies the LTE predicate on the "cloudflare_hostname_id" field.

func CloudflareHostnameIDNEQ

func CloudflareHostnameIDNEQ(v string) predicate.DNSVerification

CloudflareHostnameIDNEQ applies the NEQ predicate on the "cloudflare_hostname_id" field.

func CloudflareHostnameIDNotIn

func CloudflareHostnameIDNotIn(vs ...string) predicate.DNSVerification

CloudflareHostnameIDNotIn applies the NotIn predicate on the "cloudflare_hostname_id" field.

func CreatedAt

func CreatedAt(v time.Time) predicate.DNSVerification

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.DNSVerification

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.DNSVerification

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.DNSVerification

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

func CreatedAtIn

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

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

func CreatedAtIsNil

func CreatedAtIsNil() predicate.DNSVerification

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.DNSVerification

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.DNSVerification

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.DNSVerification

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

func CreatedAtNotIn

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

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

func CreatedAtNotNil

func CreatedAtNotNil() predicate.DNSVerification

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

func CreatedBy

func CreatedBy(v string) predicate.DNSVerification

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

func CreatedByContains

func CreatedByContains(v string) predicate.DNSVerification

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

func CreatedByContainsFold

func CreatedByContainsFold(v string) predicate.DNSVerification

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

func CreatedByEQ

func CreatedByEQ(v string) predicate.DNSVerification

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

func CreatedByEqualFold

func CreatedByEqualFold(v string) predicate.DNSVerification

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

func CreatedByGT

func CreatedByGT(v string) predicate.DNSVerification

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

func CreatedByGTE

func CreatedByGTE(v string) predicate.DNSVerification

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

func CreatedByHasPrefix

func CreatedByHasPrefix(v string) predicate.DNSVerification

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

func CreatedByHasSuffix

func CreatedByHasSuffix(v string) predicate.DNSVerification

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

func CreatedByIn

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

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

func CreatedByIsNil

func CreatedByIsNil() predicate.DNSVerification

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

func CreatedByLT

func CreatedByLT(v string) predicate.DNSVerification

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

func CreatedByLTE

func CreatedByLTE(v string) predicate.DNSVerification

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

func CreatedByNEQ

func CreatedByNEQ(v string) predicate.DNSVerification

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

func CreatedByNotIn

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

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

func CreatedByNotNil

func CreatedByNotNil() predicate.DNSVerification

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

func DNSTxtRecord

func DNSTxtRecord(v string) predicate.DNSVerification

DNSTxtRecord applies equality check predicate on the "dns_txt_record" field. It's identical to DNSTxtRecordEQ.

func DNSTxtRecordContains

func DNSTxtRecordContains(v string) predicate.DNSVerification

DNSTxtRecordContains applies the Contains predicate on the "dns_txt_record" field.

func DNSTxtRecordContainsFold

func DNSTxtRecordContainsFold(v string) predicate.DNSVerification

DNSTxtRecordContainsFold applies the ContainsFold predicate on the "dns_txt_record" field.

func DNSTxtRecordEQ

func DNSTxtRecordEQ(v string) predicate.DNSVerification

DNSTxtRecordEQ applies the EQ predicate on the "dns_txt_record" field.

func DNSTxtRecordEqualFold

func DNSTxtRecordEqualFold(v string) predicate.DNSVerification

DNSTxtRecordEqualFold applies the EqualFold predicate on the "dns_txt_record" field.

func DNSTxtRecordGT

func DNSTxtRecordGT(v string) predicate.DNSVerification

DNSTxtRecordGT applies the GT predicate on the "dns_txt_record" field.

func DNSTxtRecordGTE

func DNSTxtRecordGTE(v string) predicate.DNSVerification

DNSTxtRecordGTE applies the GTE predicate on the "dns_txt_record" field.

func DNSTxtRecordHasPrefix

func DNSTxtRecordHasPrefix(v string) predicate.DNSVerification

DNSTxtRecordHasPrefix applies the HasPrefix predicate on the "dns_txt_record" field.

func DNSTxtRecordHasSuffix

func DNSTxtRecordHasSuffix(v string) predicate.DNSVerification

DNSTxtRecordHasSuffix applies the HasSuffix predicate on the "dns_txt_record" field.

func DNSTxtRecordIn

func DNSTxtRecordIn(vs ...string) predicate.DNSVerification

DNSTxtRecordIn applies the In predicate on the "dns_txt_record" field.

func DNSTxtRecordLT

func DNSTxtRecordLT(v string) predicate.DNSVerification

DNSTxtRecordLT applies the LT predicate on the "dns_txt_record" field.

func DNSTxtRecordLTE

func DNSTxtRecordLTE(v string) predicate.DNSVerification

DNSTxtRecordLTE applies the LTE predicate on the "dns_txt_record" field.

func DNSTxtRecordNEQ

func DNSTxtRecordNEQ(v string) predicate.DNSVerification

DNSTxtRecordNEQ applies the NEQ predicate on the "dns_txt_record" field.

func DNSTxtRecordNotIn

func DNSTxtRecordNotIn(vs ...string) predicate.DNSVerification

DNSTxtRecordNotIn applies the NotIn predicate on the "dns_txt_record" field.

func DNSTxtValue

func DNSTxtValue(v string) predicate.DNSVerification

DNSTxtValue applies equality check predicate on the "dns_txt_value" field. It's identical to DNSTxtValueEQ.

func DNSTxtValueContains

func DNSTxtValueContains(v string) predicate.DNSVerification

DNSTxtValueContains applies the Contains predicate on the "dns_txt_value" field.

func DNSTxtValueContainsFold

func DNSTxtValueContainsFold(v string) predicate.DNSVerification

DNSTxtValueContainsFold applies the ContainsFold predicate on the "dns_txt_value" field.

func DNSTxtValueEQ

func DNSTxtValueEQ(v string) predicate.DNSVerification

DNSTxtValueEQ applies the EQ predicate on the "dns_txt_value" field.

func DNSTxtValueEqualFold

func DNSTxtValueEqualFold(v string) predicate.DNSVerification

DNSTxtValueEqualFold applies the EqualFold predicate on the "dns_txt_value" field.

func DNSTxtValueGT

func DNSTxtValueGT(v string) predicate.DNSVerification

DNSTxtValueGT applies the GT predicate on the "dns_txt_value" field.

func DNSTxtValueGTE

func DNSTxtValueGTE(v string) predicate.DNSVerification

DNSTxtValueGTE applies the GTE predicate on the "dns_txt_value" field.

func DNSTxtValueHasPrefix

func DNSTxtValueHasPrefix(v string) predicate.DNSVerification

DNSTxtValueHasPrefix applies the HasPrefix predicate on the "dns_txt_value" field.

func DNSTxtValueHasSuffix

func DNSTxtValueHasSuffix(v string) predicate.DNSVerification

DNSTxtValueHasSuffix applies the HasSuffix predicate on the "dns_txt_value" field.

func DNSTxtValueIn

func DNSTxtValueIn(vs ...string) predicate.DNSVerification

DNSTxtValueIn applies the In predicate on the "dns_txt_value" field.

func DNSTxtValueLT

func DNSTxtValueLT(v string) predicate.DNSVerification

DNSTxtValueLT applies the LT predicate on the "dns_txt_value" field.

func DNSTxtValueLTE

func DNSTxtValueLTE(v string) predicate.DNSVerification

DNSTxtValueLTE applies the LTE predicate on the "dns_txt_value" field.

func DNSTxtValueNEQ

func DNSTxtValueNEQ(v string) predicate.DNSVerification

DNSTxtValueNEQ applies the NEQ predicate on the "dns_txt_value" field.

func DNSTxtValueNotIn

func DNSTxtValueNotIn(vs ...string) predicate.DNSVerification

DNSTxtValueNotIn applies the NotIn predicate on the "dns_txt_value" field.

func DNSVerificationStatusEQ

func DNSVerificationStatusEQ(v enums.DNSVerificationStatus) predicate.DNSVerification

DNSVerificationStatusEQ applies the EQ predicate on the "dns_verification_status" field.

func DNSVerificationStatusIn

func DNSVerificationStatusIn(vs ...enums.DNSVerificationStatus) predicate.DNSVerification

DNSVerificationStatusIn applies the In predicate on the "dns_verification_status" field.

func DNSVerificationStatusNEQ

func DNSVerificationStatusNEQ(v enums.DNSVerificationStatus) predicate.DNSVerification

DNSVerificationStatusNEQ applies the NEQ predicate on the "dns_verification_status" field.

func DNSVerificationStatusNotIn

func DNSVerificationStatusNotIn(vs ...enums.DNSVerificationStatus) predicate.DNSVerification

DNSVerificationStatusNotIn applies the NotIn predicate on the "dns_verification_status" field.

func DNSVerificationStatusReason

func DNSVerificationStatusReason(v string) predicate.DNSVerification

DNSVerificationStatusReason applies equality check predicate on the "dns_verification_status_reason" field. It's identical to DNSVerificationStatusReasonEQ.

func DNSVerificationStatusReasonContains

func DNSVerificationStatusReasonContains(v string) predicate.DNSVerification

DNSVerificationStatusReasonContains applies the Contains predicate on the "dns_verification_status_reason" field.

func DNSVerificationStatusReasonContainsFold

func DNSVerificationStatusReasonContainsFold(v string) predicate.DNSVerification

DNSVerificationStatusReasonContainsFold applies the ContainsFold predicate on the "dns_verification_status_reason" field.

func DNSVerificationStatusReasonEQ

func DNSVerificationStatusReasonEQ(v string) predicate.DNSVerification

DNSVerificationStatusReasonEQ applies the EQ predicate on the "dns_verification_status_reason" field.

func DNSVerificationStatusReasonEqualFold

func DNSVerificationStatusReasonEqualFold(v string) predicate.DNSVerification

DNSVerificationStatusReasonEqualFold applies the EqualFold predicate on the "dns_verification_status_reason" field.

func DNSVerificationStatusReasonGT

func DNSVerificationStatusReasonGT(v string) predicate.DNSVerification

DNSVerificationStatusReasonGT applies the GT predicate on the "dns_verification_status_reason" field.

func DNSVerificationStatusReasonGTE

func DNSVerificationStatusReasonGTE(v string) predicate.DNSVerification

DNSVerificationStatusReasonGTE applies the GTE predicate on the "dns_verification_status_reason" field.

func DNSVerificationStatusReasonHasPrefix

func DNSVerificationStatusReasonHasPrefix(v string) predicate.DNSVerification

DNSVerificationStatusReasonHasPrefix applies the HasPrefix predicate on the "dns_verification_status_reason" field.

func DNSVerificationStatusReasonHasSuffix

func DNSVerificationStatusReasonHasSuffix(v string) predicate.DNSVerification

DNSVerificationStatusReasonHasSuffix applies the HasSuffix predicate on the "dns_verification_status_reason" field.

func DNSVerificationStatusReasonIn

func DNSVerificationStatusReasonIn(vs ...string) predicate.DNSVerification

DNSVerificationStatusReasonIn applies the In predicate on the "dns_verification_status_reason" field.

func DNSVerificationStatusReasonIsNil

func DNSVerificationStatusReasonIsNil() predicate.DNSVerification

DNSVerificationStatusReasonIsNil applies the IsNil predicate on the "dns_verification_status_reason" field.

func DNSVerificationStatusReasonLT

func DNSVerificationStatusReasonLT(v string) predicate.DNSVerification

DNSVerificationStatusReasonLT applies the LT predicate on the "dns_verification_status_reason" field.

func DNSVerificationStatusReasonLTE

func DNSVerificationStatusReasonLTE(v string) predicate.DNSVerification

DNSVerificationStatusReasonLTE applies the LTE predicate on the "dns_verification_status_reason" field.

func DNSVerificationStatusReasonNEQ

func DNSVerificationStatusReasonNEQ(v string) predicate.DNSVerification

DNSVerificationStatusReasonNEQ applies the NEQ predicate on the "dns_verification_status_reason" field.

func DNSVerificationStatusReasonNotIn

func DNSVerificationStatusReasonNotIn(vs ...string) predicate.DNSVerification

DNSVerificationStatusReasonNotIn applies the NotIn predicate on the "dns_verification_status_reason" field.

func DNSVerificationStatusReasonNotNil

func DNSVerificationStatusReasonNotNil() predicate.DNSVerification

DNSVerificationStatusReasonNotNil applies the NotNil predicate on the "dns_verification_status_reason" field.

func DNSVerificationStatusValidator

func DNSVerificationStatusValidator(dvs enums.DNSVerificationStatus) error

DNSVerificationStatusValidator is a validator for the "dns_verification_status" field enum values. It is called by the builders before save.

func DeletedAt

func DeletedAt(v time.Time) predicate.DNSVerification

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

func DeletedAtEQ

func DeletedAtEQ(v time.Time) predicate.DNSVerification

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

func DeletedAtGT

func DeletedAtGT(v time.Time) predicate.DNSVerification

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

func DeletedAtGTE

func DeletedAtGTE(v time.Time) predicate.DNSVerification

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

func DeletedAtIn

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

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

func DeletedAtIsNil

func DeletedAtIsNil() predicate.DNSVerification

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

func DeletedAtLT

func DeletedAtLT(v time.Time) predicate.DNSVerification

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

func DeletedAtLTE

func DeletedAtLTE(v time.Time) predicate.DNSVerification

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

func DeletedAtNEQ

func DeletedAtNEQ(v time.Time) predicate.DNSVerification

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

func DeletedAtNotIn

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

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

func DeletedAtNotNil

func DeletedAtNotNil() predicate.DNSVerification

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

func DeletedBy

func DeletedBy(v string) predicate.DNSVerification

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

func DeletedByContains

func DeletedByContains(v string) predicate.DNSVerification

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

func DeletedByContainsFold

func DeletedByContainsFold(v string) predicate.DNSVerification

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

func DeletedByEQ

func DeletedByEQ(v string) predicate.DNSVerification

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

func DeletedByEqualFold

func DeletedByEqualFold(v string) predicate.DNSVerification

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

func DeletedByGT

func DeletedByGT(v string) predicate.DNSVerification

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

func DeletedByGTE

func DeletedByGTE(v string) predicate.DNSVerification

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

func DeletedByHasPrefix

func DeletedByHasPrefix(v string) predicate.DNSVerification

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

func DeletedByHasSuffix

func DeletedByHasSuffix(v string) predicate.DNSVerification

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

func DeletedByIn

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

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

func DeletedByIsNil

func DeletedByIsNil() predicate.DNSVerification

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

func DeletedByLT

func DeletedByLT(v string) predicate.DNSVerification

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

func DeletedByLTE

func DeletedByLTE(v string) predicate.DNSVerification

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

func DeletedByNEQ

func DeletedByNEQ(v string) predicate.DNSVerification

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

func DeletedByNotIn

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

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

func DeletedByNotNil

func DeletedByNotNil() predicate.DNSVerification

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

func ExpectedAcmeChallengeValue

func ExpectedAcmeChallengeValue(v string) predicate.DNSVerification

ExpectedAcmeChallengeValue applies equality check predicate on the "expected_acme_challenge_value" field. It's identical to ExpectedAcmeChallengeValueEQ.

func ExpectedAcmeChallengeValueContains

func ExpectedAcmeChallengeValueContains(v string) predicate.DNSVerification

ExpectedAcmeChallengeValueContains applies the Contains predicate on the "expected_acme_challenge_value" field.

func ExpectedAcmeChallengeValueContainsFold

func ExpectedAcmeChallengeValueContainsFold(v string) predicate.DNSVerification

ExpectedAcmeChallengeValueContainsFold applies the ContainsFold predicate on the "expected_acme_challenge_value" field.

func ExpectedAcmeChallengeValueEQ

func ExpectedAcmeChallengeValueEQ(v string) predicate.DNSVerification

ExpectedAcmeChallengeValueEQ applies the EQ predicate on the "expected_acme_challenge_value" field.

func ExpectedAcmeChallengeValueEqualFold

func ExpectedAcmeChallengeValueEqualFold(v string) predicate.DNSVerification

ExpectedAcmeChallengeValueEqualFold applies the EqualFold predicate on the "expected_acme_challenge_value" field.

func ExpectedAcmeChallengeValueGT

func ExpectedAcmeChallengeValueGT(v string) predicate.DNSVerification

ExpectedAcmeChallengeValueGT applies the GT predicate on the "expected_acme_challenge_value" field.

func ExpectedAcmeChallengeValueGTE

func ExpectedAcmeChallengeValueGTE(v string) predicate.DNSVerification

ExpectedAcmeChallengeValueGTE applies the GTE predicate on the "expected_acme_challenge_value" field.

func ExpectedAcmeChallengeValueHasPrefix

func ExpectedAcmeChallengeValueHasPrefix(v string) predicate.DNSVerification

ExpectedAcmeChallengeValueHasPrefix applies the HasPrefix predicate on the "expected_acme_challenge_value" field.

func ExpectedAcmeChallengeValueHasSuffix

func ExpectedAcmeChallengeValueHasSuffix(v string) predicate.DNSVerification

ExpectedAcmeChallengeValueHasSuffix applies the HasSuffix predicate on the "expected_acme_challenge_value" field.

func ExpectedAcmeChallengeValueIn

func ExpectedAcmeChallengeValueIn(vs ...string) predicate.DNSVerification

ExpectedAcmeChallengeValueIn applies the In predicate on the "expected_acme_challenge_value" field.

func ExpectedAcmeChallengeValueIsNil

func ExpectedAcmeChallengeValueIsNil() predicate.DNSVerification

ExpectedAcmeChallengeValueIsNil applies the IsNil predicate on the "expected_acme_challenge_value" field.

func ExpectedAcmeChallengeValueLT

func ExpectedAcmeChallengeValueLT(v string) predicate.DNSVerification

ExpectedAcmeChallengeValueLT applies the LT predicate on the "expected_acme_challenge_value" field.

func ExpectedAcmeChallengeValueLTE

func ExpectedAcmeChallengeValueLTE(v string) predicate.DNSVerification

ExpectedAcmeChallengeValueLTE applies the LTE predicate on the "expected_acme_challenge_value" field.

func ExpectedAcmeChallengeValueNEQ

func ExpectedAcmeChallengeValueNEQ(v string) predicate.DNSVerification

ExpectedAcmeChallengeValueNEQ applies the NEQ predicate on the "expected_acme_challenge_value" field.

func ExpectedAcmeChallengeValueNotIn

func ExpectedAcmeChallengeValueNotIn(vs ...string) predicate.DNSVerification

ExpectedAcmeChallengeValueNotIn applies the NotIn predicate on the "expected_acme_challenge_value" field.

func ExpectedAcmeChallengeValueNotNil

func ExpectedAcmeChallengeValueNotNil() predicate.DNSVerification

ExpectedAcmeChallengeValueNotNil applies the NotNil predicate on the "expected_acme_challenge_value" field.

func HasCustomDomains

func HasCustomDomains() predicate.DNSVerification

HasCustomDomains applies the HasEdge predicate on the "custom_domains" edge.

func HasCustomDomainsWith

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

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

func HasOwner

func HasOwner() predicate.DNSVerification

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

func HasOwnerWith

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

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.DNSVerification

IDContainsFold applies the ContainsFold predicate on the ID field.

func IDEQ

IDEQ applies the EQ predicate on the ID field.

func IDEqualFold

func IDEqualFold(id string) predicate.DNSVerification

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

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

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

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

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 OwnerID

func OwnerID(v string) predicate.DNSVerification

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

func OwnerIDContains

func OwnerIDContains(v string) predicate.DNSVerification

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

func OwnerIDContainsFold

func OwnerIDContainsFold(v string) predicate.DNSVerification

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

func OwnerIDEQ

func OwnerIDEQ(v string) predicate.DNSVerification

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

func OwnerIDEqualFold

func OwnerIDEqualFold(v string) predicate.DNSVerification

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

func OwnerIDGT

func OwnerIDGT(v string) predicate.DNSVerification

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

func OwnerIDGTE

func OwnerIDGTE(v string) predicate.DNSVerification

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

func OwnerIDHasPrefix

func OwnerIDHasPrefix(v string) predicate.DNSVerification

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

func OwnerIDHasSuffix

func OwnerIDHasSuffix(v string) predicate.DNSVerification

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

func OwnerIDIn

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

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

func OwnerIDIsNil

func OwnerIDIsNil() predicate.DNSVerification

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

func OwnerIDLT

func OwnerIDLT(v string) predicate.DNSVerification

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

func OwnerIDLTE

func OwnerIDLTE(v string) predicate.DNSVerification

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

func OwnerIDNEQ

func OwnerIDNEQ(v string) predicate.DNSVerification

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

func OwnerIDNotIn

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

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

func OwnerIDNotNil

func OwnerIDNotNil() predicate.DNSVerification

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

func TagsIsNil

func TagsIsNil() predicate.DNSVerification

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

func TagsNotNil

func TagsNotNil() predicate.DNSVerification

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

func UpdatedAt

func UpdatedAt(v time.Time) predicate.DNSVerification

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

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.DNSVerification

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

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.DNSVerification

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

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.DNSVerification

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

func UpdatedAtIn

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

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

func UpdatedAtIsNil

func UpdatedAtIsNil() predicate.DNSVerification

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

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.DNSVerification

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

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.DNSVerification

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

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.DNSVerification

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

func UpdatedAtNotIn

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

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

func UpdatedAtNotNil

func UpdatedAtNotNil() predicate.DNSVerification

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

func UpdatedBy

func UpdatedBy(v string) predicate.DNSVerification

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

func UpdatedByContains

func UpdatedByContains(v string) predicate.DNSVerification

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

func UpdatedByContainsFold

func UpdatedByContainsFold(v string) predicate.DNSVerification

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

func UpdatedByEQ

func UpdatedByEQ(v string) predicate.DNSVerification

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

func UpdatedByEqualFold

func UpdatedByEqualFold(v string) predicate.DNSVerification

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

func UpdatedByGT

func UpdatedByGT(v string) predicate.DNSVerification

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

func UpdatedByGTE

func UpdatedByGTE(v string) predicate.DNSVerification

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

func UpdatedByHasPrefix

func UpdatedByHasPrefix(v string) predicate.DNSVerification

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

func UpdatedByHasSuffix

func UpdatedByHasSuffix(v string) predicate.DNSVerification

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

func UpdatedByIn

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

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

func UpdatedByIsNil

func UpdatedByIsNil() predicate.DNSVerification

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

func UpdatedByLT

func UpdatedByLT(v string) predicate.DNSVerification

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

func UpdatedByLTE

func UpdatedByLTE(v string) predicate.DNSVerification

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

func UpdatedByNEQ

func UpdatedByNEQ(v string) predicate.DNSVerification

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

func UpdatedByNotIn

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

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

func UpdatedByNotNil

func UpdatedByNotNil() predicate.DNSVerification

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

func ByAcmeChallengePath

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

ByAcmeChallengePath orders the results by the acme_challenge_path field.

func ByAcmeChallengeStatus

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

ByAcmeChallengeStatus orders the results by the acme_challenge_status field.

func ByAcmeChallengeStatusReason

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

ByAcmeChallengeStatusReason orders the results by the acme_challenge_status_reason field.

func ByCloudflareHostnameID

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

ByCloudflareHostnameID orders the results by the cloudflare_hostname_id 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 ByCustomDomains

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

ByCustomDomains orders the results by custom_domains terms.

func ByCustomDomainsCount

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

ByCustomDomainsCount orders the results by custom_domains count.

func ByDNSTxtRecord

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

ByDNSTxtRecord orders the results by the dns_txt_record field.

func ByDNSTxtValue

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

ByDNSTxtValue orders the results by the dns_txt_value field.

func ByDNSVerificationStatus

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

ByDNSVerificationStatus orders the results by the dns_verification_status field.

func ByDNSVerificationStatusReason

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

ByDNSVerificationStatusReason orders the results by the dns_verification_status_reason 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 ByExpectedAcmeChallengeValue

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

ByExpectedAcmeChallengeValue orders the results by the expected_acme_challenge_value field.

func ByID

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

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