organizationsetting

package
v1.11.21 Latest Latest
Warning

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

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

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the organizationsetting type in the database.
	Label = "organization_setting"
	// 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"
	// FieldDomains holds the string denoting the domains field in the database.
	FieldDomains = "domains"
	// FieldBillingContact holds the string denoting the billing_contact field in the database.
	FieldBillingContact = "billing_contact"
	// FieldBillingEmail holds the string denoting the billing_email field in the database.
	FieldBillingEmail = "billing_email"
	// FieldBillingPhone holds the string denoting the billing_phone field in the database.
	FieldBillingPhone = "billing_phone"
	// FieldBillingAddress holds the string denoting the billing_address field in the database.
	FieldBillingAddress = "billing_address"
	// FieldTaxIdentifier holds the string denoting the tax_identifier field in the database.
	FieldTaxIdentifier = "tax_identifier"
	// FieldGeoLocation holds the string denoting the geo_location field in the database.
	FieldGeoLocation = "geo_location"
	// FieldOrganizationID holds the string denoting the organization_id field in the database.
	FieldOrganizationID = "organization_id"
	// FieldBillingNotificationsEnabled holds the string denoting the billing_notifications_enabled field in the database.
	FieldBillingNotificationsEnabled = "billing_notifications_enabled"
	// FieldAllowedEmailDomains holds the string denoting the allowed_email_domains field in the database.
	FieldAllowedEmailDomains = "allowed_email_domains"
	// FieldAllowMatchingDomainsAutojoin holds the string denoting the allow_matching_domains_autojoin field in the database.
	FieldAllowMatchingDomainsAutojoin = "allow_matching_domains_autojoin"
	// FieldIdentityProvider holds the string denoting the identity_provider field in the database.
	FieldIdentityProvider = "identity_provider"
	// FieldIdentityProviderClientID holds the string denoting the identity_provider_client_id field in the database.
	FieldIdentityProviderClientID = "identity_provider_client_id"
	// FieldIdentityProviderClientSecret holds the string denoting the identity_provider_client_secret field in the database.
	FieldIdentityProviderClientSecret = "identity_provider_client_secret"
	// FieldIdentityProviderMetadataEndpoint holds the string denoting the identity_provider_metadata_endpoint field in the database.
	FieldIdentityProviderMetadataEndpoint = "identity_provider_metadata_endpoint"
	// FieldIdentityProviderAuthTested holds the string denoting the identity_provider_auth_tested field in the database.
	FieldIdentityProviderAuthTested = "identity_provider_auth_tested"
	// FieldIdentityProviderEntityID holds the string denoting the identity_provider_entity_id field in the database.
	FieldIdentityProviderEntityID = "identity_provider_entity_id"
	// FieldOidcDiscoveryEndpoint holds the string denoting the oidc_discovery_endpoint field in the database.
	FieldOidcDiscoveryEndpoint = "oidc_discovery_endpoint"
	// FieldSamlSigninURL holds the string denoting the saml_signin_url field in the database.
	FieldSamlSigninURL = "saml_signin_url"
	// FieldSamlIssuer holds the string denoting the saml_issuer field in the database.
	FieldSamlIssuer = "saml_issuer"
	// FieldSamlCert holds the string denoting the saml_cert field in the database.
	FieldSamlCert = "saml_cert"
	// FieldIdentityProviderLoginEnforced holds the string denoting the identity_provider_login_enforced field in the database.
	FieldIdentityProviderLoginEnforced = "identity_provider_login_enforced"
	// FieldMultifactorAuthEnforced holds the string denoting the multifactor_auth_enforced field in the database.
	FieldMultifactorAuthEnforced = "multifactor_auth_enforced"
	// FieldComplianceWebhookToken holds the string denoting the compliance_webhook_token field in the database.
	FieldComplianceWebhookToken = "compliance_webhook_token"
	// FieldPaymentMethodAdded holds the string denoting the payment_method_added field in the database.
	FieldPaymentMethodAdded = "payment_method_added"
	// EdgeOrganization holds the string denoting the organization edge name in mutations.
	EdgeOrganization = "organization"
	// EdgeFiles holds the string denoting the files edge name in mutations.
	EdgeFiles = "files"
	// Table holds the table name of the organizationsetting in the database.
	Table = "organization_settings"
	// OrganizationTable is the table that holds the organization relation/edge.
	OrganizationTable = "organization_settings"
	// OrganizationInverseTable is the table name for the Organization entity.
	// It exists in this package in order to avoid circular dependency with the "organization" package.
	OrganizationInverseTable = "organizations"
	// OrganizationColumn is the table column denoting the organization relation/edge.
	OrganizationColumn = "organization_id"
	// FilesTable is the table that holds the files relation/edge. The primary key declared below.
	FilesTable = "organization_setting_files"
	// FilesInverseTable is the table name for the File entity.
	// It exists in this package in order to avoid circular dependency with the "file" package.
	FilesInverseTable = "files"
)
View Source
const DefaultGeoLocation enums.Region = "AMER"
View Source
const DefaultIdentityProvider enums.SSOProvider = "NONE"

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
	// DomainsValidator is a validator for the "domains" field. It is called by the builders before save.
	DomainsValidator func([]string) error
	// BillingEmailValidator is a validator for the "billing_email" field. It is called by the builders before save.
	BillingEmailValidator func(string) error
	// BillingPhoneValidator is a validator for the "billing_phone" field. It is called by the builders before save.
	BillingPhoneValidator func(string) error
	// DefaultBillingNotificationsEnabled holds the default value on creation for the "billing_notifications_enabled" field.
	DefaultBillingNotificationsEnabled bool
	// AllowedEmailDomainsValidator is a validator for the "allowed_email_domains" field. It is called by the builders before save.
	AllowedEmailDomainsValidator func([]string) error
	// DefaultAllowMatchingDomainsAutojoin holds the default value on creation for the "allow_matching_domains_autojoin" field.
	DefaultAllowMatchingDomainsAutojoin bool
	// DefaultIdentityProviderAuthTested holds the default value on creation for the "identity_provider_auth_tested" field.
	DefaultIdentityProviderAuthTested bool
	// SamlSigninURLValidator is a validator for the "saml_signin_url" field. It is called by the builders before save.
	SamlSigninURLValidator func(string) error
	// DefaultIdentityProviderLoginEnforced holds the default value on creation for the "identity_provider_login_enforced" field.
	DefaultIdentityProviderLoginEnforced bool
	// DefaultMultifactorAuthEnforced holds the default value on creation for the "multifactor_auth_enforced" field.
	DefaultMultifactorAuthEnforced bool
	// DefaultComplianceWebhookToken holds the default value on creation for the "compliance_webhook_token" field.
	DefaultComplianceWebhookToken func() string
	// DefaultPaymentMethodAdded holds the default value on creation for the "payment_method_added" field.
	DefaultPaymentMethodAdded bool
	// 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 organizationsetting fields.

View Source
var (
	// FilesPrimaryKey and FilesColumn2 are the table columns denoting the
	// primary key for the files relation (M2M).
	FilesPrimaryKey = []string{"organization_setting_id", "file_id"}
)

Functions

func AllowMatchingDomainsAutojoin added in v0.34.4

func AllowMatchingDomainsAutojoin(v bool) predicate.OrganizationSetting

AllowMatchingDomainsAutojoin applies equality check predicate on the "allow_matching_domains_autojoin" field. It's identical to AllowMatchingDomainsAutojoinEQ.

func AllowMatchingDomainsAutojoinEQ added in v0.34.4

func AllowMatchingDomainsAutojoinEQ(v bool) predicate.OrganizationSetting

AllowMatchingDomainsAutojoinEQ applies the EQ predicate on the "allow_matching_domains_autojoin" field.

func AllowMatchingDomainsAutojoinIsNil added in v0.34.4

func AllowMatchingDomainsAutojoinIsNil() predicate.OrganizationSetting

AllowMatchingDomainsAutojoinIsNil applies the IsNil predicate on the "allow_matching_domains_autojoin" field.

func AllowMatchingDomainsAutojoinNEQ added in v0.34.4

func AllowMatchingDomainsAutojoinNEQ(v bool) predicate.OrganizationSetting

AllowMatchingDomainsAutojoinNEQ applies the NEQ predicate on the "allow_matching_domains_autojoin" field.

func AllowMatchingDomainsAutojoinNotNil added in v0.34.4

func AllowMatchingDomainsAutojoinNotNil() predicate.OrganizationSetting

AllowMatchingDomainsAutojoinNotNil applies the NotNil predicate on the "allow_matching_domains_autojoin" field.

func AllowedEmailDomainsIsNil added in v0.7.0

func AllowedEmailDomainsIsNil() predicate.OrganizationSetting

AllowedEmailDomainsIsNil applies the IsNil predicate on the "allowed_email_domains" field.

func AllowedEmailDomainsNotNil added in v0.7.0

func AllowedEmailDomainsNotNil() predicate.OrganizationSetting

AllowedEmailDomainsNotNil applies the NotNil predicate on the "allowed_email_domains" field.

func And

And groups predicates with the AND operator between them.

func BillingAddressIsNil

func BillingAddressIsNil() predicate.OrganizationSetting

BillingAddressIsNil applies the IsNil predicate on the "billing_address" field.

func BillingAddressNotNil

func BillingAddressNotNil() predicate.OrganizationSetting

BillingAddressNotNil applies the NotNil predicate on the "billing_address" field.

func BillingContact

func BillingContact(v string) predicate.OrganizationSetting

BillingContact applies equality check predicate on the "billing_contact" field. It's identical to BillingContactEQ.

func BillingContactContains

func BillingContactContains(v string) predicate.OrganizationSetting

BillingContactContains applies the Contains predicate on the "billing_contact" field.

func BillingContactContainsFold

func BillingContactContainsFold(v string) predicate.OrganizationSetting

BillingContactContainsFold applies the ContainsFold predicate on the "billing_contact" field.

func BillingContactEQ

func BillingContactEQ(v string) predicate.OrganizationSetting

BillingContactEQ applies the EQ predicate on the "billing_contact" field.

func BillingContactEqualFold

func BillingContactEqualFold(v string) predicate.OrganizationSetting

BillingContactEqualFold applies the EqualFold predicate on the "billing_contact" field.

func BillingContactGT

func BillingContactGT(v string) predicate.OrganizationSetting

BillingContactGT applies the GT predicate on the "billing_contact" field.

func BillingContactGTE

func BillingContactGTE(v string) predicate.OrganizationSetting

BillingContactGTE applies the GTE predicate on the "billing_contact" field.

func BillingContactHasPrefix

func BillingContactHasPrefix(v string) predicate.OrganizationSetting

BillingContactHasPrefix applies the HasPrefix predicate on the "billing_contact" field.

func BillingContactHasSuffix

func BillingContactHasSuffix(v string) predicate.OrganizationSetting

BillingContactHasSuffix applies the HasSuffix predicate on the "billing_contact" field.

func BillingContactIn

func BillingContactIn(vs ...string) predicate.OrganizationSetting

BillingContactIn applies the In predicate on the "billing_contact" field.

func BillingContactIsNil

func BillingContactIsNil() predicate.OrganizationSetting

BillingContactIsNil applies the IsNil predicate on the "billing_contact" field.

func BillingContactLT

func BillingContactLT(v string) predicate.OrganizationSetting

BillingContactLT applies the LT predicate on the "billing_contact" field.

func BillingContactLTE

func BillingContactLTE(v string) predicate.OrganizationSetting

BillingContactLTE applies the LTE predicate on the "billing_contact" field.

func BillingContactNEQ

func BillingContactNEQ(v string) predicate.OrganizationSetting

BillingContactNEQ applies the NEQ predicate on the "billing_contact" field.

func BillingContactNotIn

func BillingContactNotIn(vs ...string) predicate.OrganizationSetting

BillingContactNotIn applies the NotIn predicate on the "billing_contact" field.

func BillingContactNotNil

func BillingContactNotNil() predicate.OrganizationSetting

BillingContactNotNil applies the NotNil predicate on the "billing_contact" field.

func BillingEmail

func BillingEmail(v string) predicate.OrganizationSetting

BillingEmail applies equality check predicate on the "billing_email" field. It's identical to BillingEmailEQ.

func BillingEmailContains

func BillingEmailContains(v string) predicate.OrganizationSetting

BillingEmailContains applies the Contains predicate on the "billing_email" field.

func BillingEmailContainsFold

func BillingEmailContainsFold(v string) predicate.OrganizationSetting

BillingEmailContainsFold applies the ContainsFold predicate on the "billing_email" field.

func BillingEmailEQ

func BillingEmailEQ(v string) predicate.OrganizationSetting

BillingEmailEQ applies the EQ predicate on the "billing_email" field.

func BillingEmailEqualFold

func BillingEmailEqualFold(v string) predicate.OrganizationSetting

BillingEmailEqualFold applies the EqualFold predicate on the "billing_email" field.

func BillingEmailGT

func BillingEmailGT(v string) predicate.OrganizationSetting

BillingEmailGT applies the GT predicate on the "billing_email" field.

func BillingEmailGTE

func BillingEmailGTE(v string) predicate.OrganizationSetting

BillingEmailGTE applies the GTE predicate on the "billing_email" field.

func BillingEmailHasPrefix

func BillingEmailHasPrefix(v string) predicate.OrganizationSetting

BillingEmailHasPrefix applies the HasPrefix predicate on the "billing_email" field.

func BillingEmailHasSuffix

func BillingEmailHasSuffix(v string) predicate.OrganizationSetting

BillingEmailHasSuffix applies the HasSuffix predicate on the "billing_email" field.

func BillingEmailIn

func BillingEmailIn(vs ...string) predicate.OrganizationSetting

BillingEmailIn applies the In predicate on the "billing_email" field.

func BillingEmailIsNil

func BillingEmailIsNil() predicate.OrganizationSetting

BillingEmailIsNil applies the IsNil predicate on the "billing_email" field.

func BillingEmailLT

func BillingEmailLT(v string) predicate.OrganizationSetting

BillingEmailLT applies the LT predicate on the "billing_email" field.

func BillingEmailLTE

func BillingEmailLTE(v string) predicate.OrganizationSetting

BillingEmailLTE applies the LTE predicate on the "billing_email" field.

func BillingEmailNEQ

func BillingEmailNEQ(v string) predicate.OrganizationSetting

BillingEmailNEQ applies the NEQ predicate on the "billing_email" field.

func BillingEmailNotIn

func BillingEmailNotIn(vs ...string) predicate.OrganizationSetting

BillingEmailNotIn applies the NotIn predicate on the "billing_email" field.

func BillingEmailNotNil

func BillingEmailNotNil() predicate.OrganizationSetting

BillingEmailNotNil applies the NotNil predicate on the "billing_email" field.

func BillingNotificationsEnabled added in v0.6.8

func BillingNotificationsEnabled(v bool) predicate.OrganizationSetting

BillingNotificationsEnabled applies equality check predicate on the "billing_notifications_enabled" field. It's identical to BillingNotificationsEnabledEQ.

func BillingNotificationsEnabledEQ added in v0.6.8

func BillingNotificationsEnabledEQ(v bool) predicate.OrganizationSetting

BillingNotificationsEnabledEQ applies the EQ predicate on the "billing_notifications_enabled" field.

func BillingNotificationsEnabledNEQ added in v0.6.8

func BillingNotificationsEnabledNEQ(v bool) predicate.OrganizationSetting

BillingNotificationsEnabledNEQ applies the NEQ predicate on the "billing_notifications_enabled" field.

func BillingPhone

func BillingPhone(v string) predicate.OrganizationSetting

BillingPhone applies equality check predicate on the "billing_phone" field. It's identical to BillingPhoneEQ.

func BillingPhoneContains

func BillingPhoneContains(v string) predicate.OrganizationSetting

BillingPhoneContains applies the Contains predicate on the "billing_phone" field.

func BillingPhoneContainsFold

func BillingPhoneContainsFold(v string) predicate.OrganizationSetting

BillingPhoneContainsFold applies the ContainsFold predicate on the "billing_phone" field.

func BillingPhoneEQ

func BillingPhoneEQ(v string) predicate.OrganizationSetting

BillingPhoneEQ applies the EQ predicate on the "billing_phone" field.

func BillingPhoneEqualFold

func BillingPhoneEqualFold(v string) predicate.OrganizationSetting

BillingPhoneEqualFold applies the EqualFold predicate on the "billing_phone" field.

func BillingPhoneGT

func BillingPhoneGT(v string) predicate.OrganizationSetting

BillingPhoneGT applies the GT predicate on the "billing_phone" field.

func BillingPhoneGTE

func BillingPhoneGTE(v string) predicate.OrganizationSetting

BillingPhoneGTE applies the GTE predicate on the "billing_phone" field.

func BillingPhoneHasPrefix

func BillingPhoneHasPrefix(v string) predicate.OrganizationSetting

BillingPhoneHasPrefix applies the HasPrefix predicate on the "billing_phone" field.

func BillingPhoneHasSuffix

func BillingPhoneHasSuffix(v string) predicate.OrganizationSetting

BillingPhoneHasSuffix applies the HasSuffix predicate on the "billing_phone" field.

func BillingPhoneIn

func BillingPhoneIn(vs ...string) predicate.OrganizationSetting

BillingPhoneIn applies the In predicate on the "billing_phone" field.

func BillingPhoneIsNil

func BillingPhoneIsNil() predicate.OrganizationSetting

BillingPhoneIsNil applies the IsNil predicate on the "billing_phone" field.

func BillingPhoneLT

func BillingPhoneLT(v string) predicate.OrganizationSetting

BillingPhoneLT applies the LT predicate on the "billing_phone" field.

func BillingPhoneLTE

func BillingPhoneLTE(v string) predicate.OrganizationSetting

BillingPhoneLTE applies the LTE predicate on the "billing_phone" field.

func BillingPhoneNEQ

func BillingPhoneNEQ(v string) predicate.OrganizationSetting

BillingPhoneNEQ applies the NEQ predicate on the "billing_phone" field.

func BillingPhoneNotIn

func BillingPhoneNotIn(vs ...string) predicate.OrganizationSetting

BillingPhoneNotIn applies the NotIn predicate on the "billing_phone" field.

func BillingPhoneNotNil

func BillingPhoneNotNil() predicate.OrganizationSetting

BillingPhoneNotNil applies the NotNil predicate on the "billing_phone" field.

func ComplianceWebhookToken added in v0.19.0

func ComplianceWebhookToken(v string) predicate.OrganizationSetting

ComplianceWebhookToken applies equality check predicate on the "compliance_webhook_token" field. It's identical to ComplianceWebhookTokenEQ.

func ComplianceWebhookTokenContains added in v0.19.0

func ComplianceWebhookTokenContains(v string) predicate.OrganizationSetting

ComplianceWebhookTokenContains applies the Contains predicate on the "compliance_webhook_token" field.

func ComplianceWebhookTokenContainsFold added in v0.19.0

func ComplianceWebhookTokenContainsFold(v string) predicate.OrganizationSetting

ComplianceWebhookTokenContainsFold applies the ContainsFold predicate on the "compliance_webhook_token" field.

func ComplianceWebhookTokenEQ added in v0.19.0

func ComplianceWebhookTokenEQ(v string) predicate.OrganizationSetting

ComplianceWebhookTokenEQ applies the EQ predicate on the "compliance_webhook_token" field.

func ComplianceWebhookTokenEqualFold added in v0.19.0

func ComplianceWebhookTokenEqualFold(v string) predicate.OrganizationSetting

ComplianceWebhookTokenEqualFold applies the EqualFold predicate on the "compliance_webhook_token" field.

func ComplianceWebhookTokenGT added in v0.19.0

func ComplianceWebhookTokenGT(v string) predicate.OrganizationSetting

ComplianceWebhookTokenGT applies the GT predicate on the "compliance_webhook_token" field.

func ComplianceWebhookTokenGTE added in v0.19.0

func ComplianceWebhookTokenGTE(v string) predicate.OrganizationSetting

ComplianceWebhookTokenGTE applies the GTE predicate on the "compliance_webhook_token" field.

func ComplianceWebhookTokenHasPrefix added in v0.19.0

func ComplianceWebhookTokenHasPrefix(v string) predicate.OrganizationSetting

ComplianceWebhookTokenHasPrefix applies the HasPrefix predicate on the "compliance_webhook_token" field.

func ComplianceWebhookTokenHasSuffix added in v0.19.0

func ComplianceWebhookTokenHasSuffix(v string) predicate.OrganizationSetting

ComplianceWebhookTokenHasSuffix applies the HasSuffix predicate on the "compliance_webhook_token" field.

func ComplianceWebhookTokenIn added in v0.19.0

func ComplianceWebhookTokenIn(vs ...string) predicate.OrganizationSetting

ComplianceWebhookTokenIn applies the In predicate on the "compliance_webhook_token" field.

func ComplianceWebhookTokenIsNil added in v0.19.2

func ComplianceWebhookTokenIsNil() predicate.OrganizationSetting

ComplianceWebhookTokenIsNil applies the IsNil predicate on the "compliance_webhook_token" field.

func ComplianceWebhookTokenLT added in v0.19.0

func ComplianceWebhookTokenLT(v string) predicate.OrganizationSetting

ComplianceWebhookTokenLT applies the LT predicate on the "compliance_webhook_token" field.

func ComplianceWebhookTokenLTE added in v0.19.0

func ComplianceWebhookTokenLTE(v string) predicate.OrganizationSetting

ComplianceWebhookTokenLTE applies the LTE predicate on the "compliance_webhook_token" field.

func ComplianceWebhookTokenNEQ added in v0.19.0

func ComplianceWebhookTokenNEQ(v string) predicate.OrganizationSetting

ComplianceWebhookTokenNEQ applies the NEQ predicate on the "compliance_webhook_token" field.

func ComplianceWebhookTokenNotIn added in v0.19.0

func ComplianceWebhookTokenNotIn(vs ...string) predicate.OrganizationSetting

ComplianceWebhookTokenNotIn applies the NotIn predicate on the "compliance_webhook_token" field.

func ComplianceWebhookTokenNotNil added in v0.19.2

func ComplianceWebhookTokenNotNil() predicate.OrganizationSetting

ComplianceWebhookTokenNotNil applies the NotNil predicate on the "compliance_webhook_token" field.

func CreatedAt

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.OrganizationSetting

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.OrganizationSetting

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.OrganizationSetting

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

func CreatedAtIn

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

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

func CreatedAtIsNil

func CreatedAtIsNil() predicate.OrganizationSetting

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.OrganizationSetting

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.OrganizationSetting

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.OrganizationSetting

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

func CreatedAtNotIn

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

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

func CreatedAtNotNil

func CreatedAtNotNil() predicate.OrganizationSetting

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

func CreatedBy

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

func CreatedByContains

func CreatedByContains(v string) predicate.OrganizationSetting

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

func CreatedByContainsFold

func CreatedByContainsFold(v string) predicate.OrganizationSetting

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

func CreatedByEQ

func CreatedByEQ(v string) predicate.OrganizationSetting

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

func CreatedByEqualFold

func CreatedByEqualFold(v string) predicate.OrganizationSetting

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

func CreatedByGT

func CreatedByGT(v string) predicate.OrganizationSetting

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

func CreatedByGTE

func CreatedByGTE(v string) predicate.OrganizationSetting

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

func CreatedByHasPrefix

func CreatedByHasPrefix(v string) predicate.OrganizationSetting

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

func CreatedByHasSuffix

func CreatedByHasSuffix(v string) predicate.OrganizationSetting

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

func CreatedByIn

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

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

func CreatedByIsNil

func CreatedByIsNil() predicate.OrganizationSetting

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

func CreatedByLT

func CreatedByLT(v string) predicate.OrganizationSetting

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

func CreatedByLTE

func CreatedByLTE(v string) predicate.OrganizationSetting

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

func CreatedByNEQ

func CreatedByNEQ(v string) predicate.OrganizationSetting

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

func CreatedByNotIn

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

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

func CreatedByNotNil

func CreatedByNotNil() predicate.OrganizationSetting

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

func DeletedAt

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

func DeletedAtEQ

func DeletedAtEQ(v time.Time) predicate.OrganizationSetting

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

func DeletedAtGT

func DeletedAtGT(v time.Time) predicate.OrganizationSetting

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

func DeletedAtGTE

func DeletedAtGTE(v time.Time) predicate.OrganizationSetting

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

func DeletedAtIn

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

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

func DeletedAtIsNil

func DeletedAtIsNil() predicate.OrganizationSetting

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

func DeletedAtLT

func DeletedAtLT(v time.Time) predicate.OrganizationSetting

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

func DeletedAtLTE

func DeletedAtLTE(v time.Time) predicate.OrganizationSetting

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

func DeletedAtNEQ

func DeletedAtNEQ(v time.Time) predicate.OrganizationSetting

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

func DeletedAtNotIn

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

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

func DeletedAtNotNil

func DeletedAtNotNil() predicate.OrganizationSetting

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

func DeletedBy

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

func DeletedByContains

func DeletedByContains(v string) predicate.OrganizationSetting

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

func DeletedByContainsFold

func DeletedByContainsFold(v string) predicate.OrganizationSetting

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

func DeletedByEQ

func DeletedByEQ(v string) predicate.OrganizationSetting

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

func DeletedByEqualFold

func DeletedByEqualFold(v string) predicate.OrganizationSetting

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

func DeletedByGT

func DeletedByGT(v string) predicate.OrganizationSetting

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

func DeletedByGTE

func DeletedByGTE(v string) predicate.OrganizationSetting

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

func DeletedByHasPrefix

func DeletedByHasPrefix(v string) predicate.OrganizationSetting

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

func DeletedByHasSuffix

func DeletedByHasSuffix(v string) predicate.OrganizationSetting

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

func DeletedByIn

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

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

func DeletedByIsNil

func DeletedByIsNil() predicate.OrganizationSetting

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

func DeletedByLT

func DeletedByLT(v string) predicate.OrganizationSetting

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

func DeletedByLTE

func DeletedByLTE(v string) predicate.OrganizationSetting

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

func DeletedByNEQ

func DeletedByNEQ(v string) predicate.OrganizationSetting

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

func DeletedByNotIn

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

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

func DeletedByNotNil

func DeletedByNotNil() predicate.OrganizationSetting

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

func DomainsIsNil

func DomainsIsNil() predicate.OrganizationSetting

DomainsIsNil applies the IsNil predicate on the "domains" field.

func DomainsNotNil

func DomainsNotNil() predicate.OrganizationSetting

DomainsNotNil applies the NotNil predicate on the "domains" field.

func GeoLocationEQ

func GeoLocationEQ(v enums.Region) predicate.OrganizationSetting

GeoLocationEQ applies the EQ predicate on the "geo_location" field.

func GeoLocationIn

func GeoLocationIn(vs ...enums.Region) predicate.OrganizationSetting

GeoLocationIn applies the In predicate on the "geo_location" field.

func GeoLocationIsNil

func GeoLocationIsNil() predicate.OrganizationSetting

GeoLocationIsNil applies the IsNil predicate on the "geo_location" field.

func GeoLocationNEQ

func GeoLocationNEQ(v enums.Region) predicate.OrganizationSetting

GeoLocationNEQ applies the NEQ predicate on the "geo_location" field.

func GeoLocationNotIn

func GeoLocationNotIn(vs ...enums.Region) predicate.OrganizationSetting

GeoLocationNotIn applies the NotIn predicate on the "geo_location" field.

func GeoLocationNotNil

func GeoLocationNotNil() predicate.OrganizationSetting

GeoLocationNotNil applies the NotNil predicate on the "geo_location" field.

func GeoLocationValidator

func GeoLocationValidator(gl enums.Region) error

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

func HasFiles added in v0.3.0

func HasFiles() predicate.OrganizationSetting

HasFiles applies the HasEdge predicate on the "files" edge.

func HasFilesWith added in v0.3.0

func HasFilesWith(preds ...predicate.File) predicate.OrganizationSetting

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

func HasOrganization

func HasOrganization() predicate.OrganizationSetting

HasOrganization applies the HasEdge predicate on the "organization" edge.

func HasOrganizationWith

func HasOrganizationWith(preds ...predicate.Organization) predicate.OrganizationSetting

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

func ID

ID filters vertices based on their ID field.

func IDContainsFold

func IDContainsFold(id string) predicate.OrganizationSetting

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

IDEqualFold applies the EqualFold predicate on the ID field.

func IDGT

IDGT applies the GT predicate on the ID field.

func IDGTE

IDGTE applies the GTE predicate on the ID field.

func IDIn

IDIn applies the In predicate on the ID field.

func IDLT

IDLT applies the LT predicate on the ID field.

func IDLTE

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

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

IDNotIn applies the NotIn predicate on the ID field.

func IdentityProviderAuthTested added in v0.33.3

func IdentityProviderAuthTested(v bool) predicate.OrganizationSetting

IdentityProviderAuthTested applies equality check predicate on the "identity_provider_auth_tested" field. It's identical to IdentityProviderAuthTestedEQ.

func IdentityProviderAuthTestedEQ added in v0.33.3

func IdentityProviderAuthTestedEQ(v bool) predicate.OrganizationSetting

IdentityProviderAuthTestedEQ applies the EQ predicate on the "identity_provider_auth_tested" field.

func IdentityProviderAuthTestedNEQ added in v0.33.3

func IdentityProviderAuthTestedNEQ(v bool) predicate.OrganizationSetting

IdentityProviderAuthTestedNEQ applies the NEQ predicate on the "identity_provider_auth_tested" field.

func IdentityProviderClientID added in v0.19.0

func IdentityProviderClientID(v string) predicate.OrganizationSetting

IdentityProviderClientID applies equality check predicate on the "identity_provider_client_id" field. It's identical to IdentityProviderClientIDEQ.

func IdentityProviderClientIDContains added in v0.19.0

func IdentityProviderClientIDContains(v string) predicate.OrganizationSetting

IdentityProviderClientIDContains applies the Contains predicate on the "identity_provider_client_id" field.

func IdentityProviderClientIDContainsFold added in v0.19.0

func IdentityProviderClientIDContainsFold(v string) predicate.OrganizationSetting

IdentityProviderClientIDContainsFold applies the ContainsFold predicate on the "identity_provider_client_id" field.

func IdentityProviderClientIDEQ added in v0.19.0

func IdentityProviderClientIDEQ(v string) predicate.OrganizationSetting

IdentityProviderClientIDEQ applies the EQ predicate on the "identity_provider_client_id" field.

func IdentityProviderClientIDEqualFold added in v0.19.0

func IdentityProviderClientIDEqualFold(v string) predicate.OrganizationSetting

IdentityProviderClientIDEqualFold applies the EqualFold predicate on the "identity_provider_client_id" field.

func IdentityProviderClientIDGT added in v0.19.0

func IdentityProviderClientIDGT(v string) predicate.OrganizationSetting

IdentityProviderClientIDGT applies the GT predicate on the "identity_provider_client_id" field.

func IdentityProviderClientIDGTE added in v0.19.0

func IdentityProviderClientIDGTE(v string) predicate.OrganizationSetting

IdentityProviderClientIDGTE applies the GTE predicate on the "identity_provider_client_id" field.

func IdentityProviderClientIDHasPrefix added in v0.19.0

func IdentityProviderClientIDHasPrefix(v string) predicate.OrganizationSetting

IdentityProviderClientIDHasPrefix applies the HasPrefix predicate on the "identity_provider_client_id" field.

func IdentityProviderClientIDHasSuffix added in v0.19.0

func IdentityProviderClientIDHasSuffix(v string) predicate.OrganizationSetting

IdentityProviderClientIDHasSuffix applies the HasSuffix predicate on the "identity_provider_client_id" field.

func IdentityProviderClientIDIn added in v0.19.0

func IdentityProviderClientIDIn(vs ...string) predicate.OrganizationSetting

IdentityProviderClientIDIn applies the In predicate on the "identity_provider_client_id" field.

func IdentityProviderClientIDIsNil added in v0.19.0

func IdentityProviderClientIDIsNil() predicate.OrganizationSetting

IdentityProviderClientIDIsNil applies the IsNil predicate on the "identity_provider_client_id" field.

func IdentityProviderClientIDLT added in v0.19.0

func IdentityProviderClientIDLT(v string) predicate.OrganizationSetting

IdentityProviderClientIDLT applies the LT predicate on the "identity_provider_client_id" field.

func IdentityProviderClientIDLTE added in v0.19.0

func IdentityProviderClientIDLTE(v string) predicate.OrganizationSetting

IdentityProviderClientIDLTE applies the LTE predicate on the "identity_provider_client_id" field.

func IdentityProviderClientIDNEQ added in v0.19.0

func IdentityProviderClientIDNEQ(v string) predicate.OrganizationSetting

IdentityProviderClientIDNEQ applies the NEQ predicate on the "identity_provider_client_id" field.

func IdentityProviderClientIDNotIn added in v0.19.0

func IdentityProviderClientIDNotIn(vs ...string) predicate.OrganizationSetting

IdentityProviderClientIDNotIn applies the NotIn predicate on the "identity_provider_client_id" field.

func IdentityProviderClientIDNotNil added in v0.19.0

func IdentityProviderClientIDNotNil() predicate.OrganizationSetting

IdentityProviderClientIDNotNil applies the NotNil predicate on the "identity_provider_client_id" field.

func IdentityProviderClientSecret added in v0.19.0

func IdentityProviderClientSecret(v string) predicate.OrganizationSetting

IdentityProviderClientSecret applies equality check predicate on the "identity_provider_client_secret" field. It's identical to IdentityProviderClientSecretEQ.

func IdentityProviderClientSecretContains added in v0.19.0

func IdentityProviderClientSecretContains(v string) predicate.OrganizationSetting

IdentityProviderClientSecretContains applies the Contains predicate on the "identity_provider_client_secret" field.

func IdentityProviderClientSecretContainsFold added in v0.19.0

func IdentityProviderClientSecretContainsFold(v string) predicate.OrganizationSetting

IdentityProviderClientSecretContainsFold applies the ContainsFold predicate on the "identity_provider_client_secret" field.

func IdentityProviderClientSecretEQ added in v0.19.0

func IdentityProviderClientSecretEQ(v string) predicate.OrganizationSetting

IdentityProviderClientSecretEQ applies the EQ predicate on the "identity_provider_client_secret" field.

func IdentityProviderClientSecretEqualFold added in v0.19.0

func IdentityProviderClientSecretEqualFold(v string) predicate.OrganizationSetting

IdentityProviderClientSecretEqualFold applies the EqualFold predicate on the "identity_provider_client_secret" field.

func IdentityProviderClientSecretGT added in v0.19.0

func IdentityProviderClientSecretGT(v string) predicate.OrganizationSetting

IdentityProviderClientSecretGT applies the GT predicate on the "identity_provider_client_secret" field.

func IdentityProviderClientSecretGTE added in v0.19.0

func IdentityProviderClientSecretGTE(v string) predicate.OrganizationSetting

IdentityProviderClientSecretGTE applies the GTE predicate on the "identity_provider_client_secret" field.

func IdentityProviderClientSecretHasPrefix added in v0.19.0

func IdentityProviderClientSecretHasPrefix(v string) predicate.OrganizationSetting

IdentityProviderClientSecretHasPrefix applies the HasPrefix predicate on the "identity_provider_client_secret" field.

func IdentityProviderClientSecretHasSuffix added in v0.19.0

func IdentityProviderClientSecretHasSuffix(v string) predicate.OrganizationSetting

IdentityProviderClientSecretHasSuffix applies the HasSuffix predicate on the "identity_provider_client_secret" field.

func IdentityProviderClientSecretIn added in v0.19.0

func IdentityProviderClientSecretIn(vs ...string) predicate.OrganizationSetting

IdentityProviderClientSecretIn applies the In predicate on the "identity_provider_client_secret" field.

func IdentityProviderClientSecretIsNil added in v0.19.0

func IdentityProviderClientSecretIsNil() predicate.OrganizationSetting

IdentityProviderClientSecretIsNil applies the IsNil predicate on the "identity_provider_client_secret" field.

func IdentityProviderClientSecretLT added in v0.19.0

func IdentityProviderClientSecretLT(v string) predicate.OrganizationSetting

IdentityProviderClientSecretLT applies the LT predicate on the "identity_provider_client_secret" field.

func IdentityProviderClientSecretLTE added in v0.19.0

func IdentityProviderClientSecretLTE(v string) predicate.OrganizationSetting

IdentityProviderClientSecretLTE applies the LTE predicate on the "identity_provider_client_secret" field.

func IdentityProviderClientSecretNEQ added in v0.19.0

func IdentityProviderClientSecretNEQ(v string) predicate.OrganizationSetting

IdentityProviderClientSecretNEQ applies the NEQ predicate on the "identity_provider_client_secret" field.

func IdentityProviderClientSecretNotIn added in v0.19.0

func IdentityProviderClientSecretNotIn(vs ...string) predicate.OrganizationSetting

IdentityProviderClientSecretNotIn applies the NotIn predicate on the "identity_provider_client_secret" field.

func IdentityProviderClientSecretNotNil added in v0.19.0

func IdentityProviderClientSecretNotNil() predicate.OrganizationSetting

IdentityProviderClientSecretNotNil applies the NotNil predicate on the "identity_provider_client_secret" field.

func IdentityProviderEQ added in v0.19.0

func IdentityProviderEQ(v enums.SSOProvider) predicate.OrganizationSetting

IdentityProviderEQ applies the EQ predicate on the "identity_provider" field.

func IdentityProviderEntityID added in v0.19.0

func IdentityProviderEntityID(v string) predicate.OrganizationSetting

IdentityProviderEntityID applies equality check predicate on the "identity_provider_entity_id" field. It's identical to IdentityProviderEntityIDEQ.

func IdentityProviderEntityIDContains added in v0.19.0

func IdentityProviderEntityIDContains(v string) predicate.OrganizationSetting

IdentityProviderEntityIDContains applies the Contains predicate on the "identity_provider_entity_id" field.

func IdentityProviderEntityIDContainsFold added in v0.19.0

func IdentityProviderEntityIDContainsFold(v string) predicate.OrganizationSetting

IdentityProviderEntityIDContainsFold applies the ContainsFold predicate on the "identity_provider_entity_id" field.

func IdentityProviderEntityIDEQ added in v0.19.0

func IdentityProviderEntityIDEQ(v string) predicate.OrganizationSetting

IdentityProviderEntityIDEQ applies the EQ predicate on the "identity_provider_entity_id" field.

func IdentityProviderEntityIDEqualFold added in v0.19.0

func IdentityProviderEntityIDEqualFold(v string) predicate.OrganizationSetting

IdentityProviderEntityIDEqualFold applies the EqualFold predicate on the "identity_provider_entity_id" field.

func IdentityProviderEntityIDGT added in v0.19.0

func IdentityProviderEntityIDGT(v string) predicate.OrganizationSetting

IdentityProviderEntityIDGT applies the GT predicate on the "identity_provider_entity_id" field.

func IdentityProviderEntityIDGTE added in v0.19.0

func IdentityProviderEntityIDGTE(v string) predicate.OrganizationSetting

IdentityProviderEntityIDGTE applies the GTE predicate on the "identity_provider_entity_id" field.

func IdentityProviderEntityIDHasPrefix added in v0.19.0

func IdentityProviderEntityIDHasPrefix(v string) predicate.OrganizationSetting

IdentityProviderEntityIDHasPrefix applies the HasPrefix predicate on the "identity_provider_entity_id" field.

func IdentityProviderEntityIDHasSuffix added in v0.19.0

func IdentityProviderEntityIDHasSuffix(v string) predicate.OrganizationSetting

IdentityProviderEntityIDHasSuffix applies the HasSuffix predicate on the "identity_provider_entity_id" field.

func IdentityProviderEntityIDIn added in v0.19.0

func IdentityProviderEntityIDIn(vs ...string) predicate.OrganizationSetting

IdentityProviderEntityIDIn applies the In predicate on the "identity_provider_entity_id" field.

func IdentityProviderEntityIDIsNil added in v0.19.0

func IdentityProviderEntityIDIsNil() predicate.OrganizationSetting

IdentityProviderEntityIDIsNil applies the IsNil predicate on the "identity_provider_entity_id" field.

func IdentityProviderEntityIDLT added in v0.19.0

func IdentityProviderEntityIDLT(v string) predicate.OrganizationSetting

IdentityProviderEntityIDLT applies the LT predicate on the "identity_provider_entity_id" field.

func IdentityProviderEntityIDLTE added in v0.19.0

func IdentityProviderEntityIDLTE(v string) predicate.OrganizationSetting

IdentityProviderEntityIDLTE applies the LTE predicate on the "identity_provider_entity_id" field.

func IdentityProviderEntityIDNEQ added in v0.19.0

func IdentityProviderEntityIDNEQ(v string) predicate.OrganizationSetting

IdentityProviderEntityIDNEQ applies the NEQ predicate on the "identity_provider_entity_id" field.

func IdentityProviderEntityIDNotIn added in v0.19.0

func IdentityProviderEntityIDNotIn(vs ...string) predicate.OrganizationSetting

IdentityProviderEntityIDNotIn applies the NotIn predicate on the "identity_provider_entity_id" field.

func IdentityProviderEntityIDNotNil added in v0.19.0

func IdentityProviderEntityIDNotNil() predicate.OrganizationSetting

IdentityProviderEntityIDNotNil applies the NotNil predicate on the "identity_provider_entity_id" field.

func IdentityProviderIn added in v0.19.0

func IdentityProviderIn(vs ...enums.SSOProvider) predicate.OrganizationSetting

IdentityProviderIn applies the In predicate on the "identity_provider" field.

func IdentityProviderIsNil added in v0.19.0

func IdentityProviderIsNil() predicate.OrganizationSetting

IdentityProviderIsNil applies the IsNil predicate on the "identity_provider" field.

func IdentityProviderLoginEnforced added in v0.19.0

func IdentityProviderLoginEnforced(v bool) predicate.OrganizationSetting

IdentityProviderLoginEnforced applies equality check predicate on the "identity_provider_login_enforced" field. It's identical to IdentityProviderLoginEnforcedEQ.

func IdentityProviderLoginEnforcedEQ added in v0.19.0

func IdentityProviderLoginEnforcedEQ(v bool) predicate.OrganizationSetting

IdentityProviderLoginEnforcedEQ applies the EQ predicate on the "identity_provider_login_enforced" field.

func IdentityProviderLoginEnforcedNEQ added in v0.19.0

func IdentityProviderLoginEnforcedNEQ(v bool) predicate.OrganizationSetting

IdentityProviderLoginEnforcedNEQ applies the NEQ predicate on the "identity_provider_login_enforced" field.

func IdentityProviderMetadataEndpoint added in v0.19.0

func IdentityProviderMetadataEndpoint(v string) predicate.OrganizationSetting

IdentityProviderMetadataEndpoint applies equality check predicate on the "identity_provider_metadata_endpoint" field. It's identical to IdentityProviderMetadataEndpointEQ.

func IdentityProviderMetadataEndpointContains added in v0.19.0

func IdentityProviderMetadataEndpointContains(v string) predicate.OrganizationSetting

IdentityProviderMetadataEndpointContains applies the Contains predicate on the "identity_provider_metadata_endpoint" field.

func IdentityProviderMetadataEndpointContainsFold added in v0.19.0

func IdentityProviderMetadataEndpointContainsFold(v string) predicate.OrganizationSetting

IdentityProviderMetadataEndpointContainsFold applies the ContainsFold predicate on the "identity_provider_metadata_endpoint" field.

func IdentityProviderMetadataEndpointEQ added in v0.19.0

func IdentityProviderMetadataEndpointEQ(v string) predicate.OrganizationSetting

IdentityProviderMetadataEndpointEQ applies the EQ predicate on the "identity_provider_metadata_endpoint" field.

func IdentityProviderMetadataEndpointEqualFold added in v0.19.0

func IdentityProviderMetadataEndpointEqualFold(v string) predicate.OrganizationSetting

IdentityProviderMetadataEndpointEqualFold applies the EqualFold predicate on the "identity_provider_metadata_endpoint" field.

func IdentityProviderMetadataEndpointGT added in v0.19.0

func IdentityProviderMetadataEndpointGT(v string) predicate.OrganizationSetting

IdentityProviderMetadataEndpointGT applies the GT predicate on the "identity_provider_metadata_endpoint" field.

func IdentityProviderMetadataEndpointGTE added in v0.19.0

func IdentityProviderMetadataEndpointGTE(v string) predicate.OrganizationSetting

IdentityProviderMetadataEndpointGTE applies the GTE predicate on the "identity_provider_metadata_endpoint" field.

func IdentityProviderMetadataEndpointHasPrefix added in v0.19.0

func IdentityProviderMetadataEndpointHasPrefix(v string) predicate.OrganizationSetting

IdentityProviderMetadataEndpointHasPrefix applies the HasPrefix predicate on the "identity_provider_metadata_endpoint" field.

func IdentityProviderMetadataEndpointHasSuffix added in v0.19.0

func IdentityProviderMetadataEndpointHasSuffix(v string) predicate.OrganizationSetting

IdentityProviderMetadataEndpointHasSuffix applies the HasSuffix predicate on the "identity_provider_metadata_endpoint" field.

func IdentityProviderMetadataEndpointIn added in v0.19.0

func IdentityProviderMetadataEndpointIn(vs ...string) predicate.OrganizationSetting

IdentityProviderMetadataEndpointIn applies the In predicate on the "identity_provider_metadata_endpoint" field.

func IdentityProviderMetadataEndpointIsNil added in v0.19.0

func IdentityProviderMetadataEndpointIsNil() predicate.OrganizationSetting

IdentityProviderMetadataEndpointIsNil applies the IsNil predicate on the "identity_provider_metadata_endpoint" field.

func IdentityProviderMetadataEndpointLT added in v0.19.0

func IdentityProviderMetadataEndpointLT(v string) predicate.OrganizationSetting

IdentityProviderMetadataEndpointLT applies the LT predicate on the "identity_provider_metadata_endpoint" field.

func IdentityProviderMetadataEndpointLTE added in v0.19.0

func IdentityProviderMetadataEndpointLTE(v string) predicate.OrganizationSetting

IdentityProviderMetadataEndpointLTE applies the LTE predicate on the "identity_provider_metadata_endpoint" field.

func IdentityProviderMetadataEndpointNEQ added in v0.19.0

func IdentityProviderMetadataEndpointNEQ(v string) predicate.OrganizationSetting

IdentityProviderMetadataEndpointNEQ applies the NEQ predicate on the "identity_provider_metadata_endpoint" field.

func IdentityProviderMetadataEndpointNotIn added in v0.19.0

func IdentityProviderMetadataEndpointNotIn(vs ...string) predicate.OrganizationSetting

IdentityProviderMetadataEndpointNotIn applies the NotIn predicate on the "identity_provider_metadata_endpoint" field.

func IdentityProviderMetadataEndpointNotNil added in v0.19.0

func IdentityProviderMetadataEndpointNotNil() predicate.OrganizationSetting

IdentityProviderMetadataEndpointNotNil applies the NotNil predicate on the "identity_provider_metadata_endpoint" field.

func IdentityProviderNEQ added in v0.19.0

func IdentityProviderNEQ(v enums.SSOProvider) predicate.OrganizationSetting

IdentityProviderNEQ applies the NEQ predicate on the "identity_provider" field.

func IdentityProviderNotIn added in v0.19.0

func IdentityProviderNotIn(vs ...enums.SSOProvider) predicate.OrganizationSetting

IdentityProviderNotIn applies the NotIn predicate on the "identity_provider" field.

func IdentityProviderNotNil added in v0.19.0

func IdentityProviderNotNil() predicate.OrganizationSetting

IdentityProviderNotNil applies the NotNil predicate on the "identity_provider" field.

func IdentityProviderValidator added in v0.19.0

func IdentityProviderValidator(ip enums.SSOProvider) error

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

func MultifactorAuthEnforced added in v0.34.4

func MultifactorAuthEnforced(v bool) predicate.OrganizationSetting

MultifactorAuthEnforced applies equality check predicate on the "multifactor_auth_enforced" field. It's identical to MultifactorAuthEnforcedEQ.

func MultifactorAuthEnforcedEQ added in v0.34.4

func MultifactorAuthEnforcedEQ(v bool) predicate.OrganizationSetting

MultifactorAuthEnforcedEQ applies the EQ predicate on the "multifactor_auth_enforced" field.

func MultifactorAuthEnforcedIsNil added in v0.34.4

func MultifactorAuthEnforcedIsNil() predicate.OrganizationSetting

MultifactorAuthEnforcedIsNil applies the IsNil predicate on the "multifactor_auth_enforced" field.

func MultifactorAuthEnforcedNEQ added in v0.34.4

func MultifactorAuthEnforcedNEQ(v bool) predicate.OrganizationSetting

MultifactorAuthEnforcedNEQ applies the NEQ predicate on the "multifactor_auth_enforced" field.

func MultifactorAuthEnforcedNotNil added in v0.34.4

func MultifactorAuthEnforcedNotNil() predicate.OrganizationSetting

MultifactorAuthEnforcedNotNil applies the NotNil predicate on the "multifactor_auth_enforced" field.

func Not

Not applies the not operator on the given predicate.

func OidcDiscoveryEndpoint added in v0.19.0

func OidcDiscoveryEndpoint(v string) predicate.OrganizationSetting

OidcDiscoveryEndpoint applies equality check predicate on the "oidc_discovery_endpoint" field. It's identical to OidcDiscoveryEndpointEQ.

func OidcDiscoveryEndpointContains added in v0.19.0

func OidcDiscoveryEndpointContains(v string) predicate.OrganizationSetting

OidcDiscoveryEndpointContains applies the Contains predicate on the "oidc_discovery_endpoint" field.

func OidcDiscoveryEndpointContainsFold added in v0.19.0

func OidcDiscoveryEndpointContainsFold(v string) predicate.OrganizationSetting

OidcDiscoveryEndpointContainsFold applies the ContainsFold predicate on the "oidc_discovery_endpoint" field.

func OidcDiscoveryEndpointEQ added in v0.19.0

func OidcDiscoveryEndpointEQ(v string) predicate.OrganizationSetting

OidcDiscoveryEndpointEQ applies the EQ predicate on the "oidc_discovery_endpoint" field.

func OidcDiscoveryEndpointEqualFold added in v0.19.0

func OidcDiscoveryEndpointEqualFold(v string) predicate.OrganizationSetting

OidcDiscoveryEndpointEqualFold applies the EqualFold predicate on the "oidc_discovery_endpoint" field.

func OidcDiscoveryEndpointGT added in v0.19.0

func OidcDiscoveryEndpointGT(v string) predicate.OrganizationSetting

OidcDiscoveryEndpointGT applies the GT predicate on the "oidc_discovery_endpoint" field.

func OidcDiscoveryEndpointGTE added in v0.19.0

func OidcDiscoveryEndpointGTE(v string) predicate.OrganizationSetting

OidcDiscoveryEndpointGTE applies the GTE predicate on the "oidc_discovery_endpoint" field.

func OidcDiscoveryEndpointHasPrefix added in v0.19.0

func OidcDiscoveryEndpointHasPrefix(v string) predicate.OrganizationSetting

OidcDiscoveryEndpointHasPrefix applies the HasPrefix predicate on the "oidc_discovery_endpoint" field.

func OidcDiscoveryEndpointHasSuffix added in v0.19.0

func OidcDiscoveryEndpointHasSuffix(v string) predicate.OrganizationSetting

OidcDiscoveryEndpointHasSuffix applies the HasSuffix predicate on the "oidc_discovery_endpoint" field.

func OidcDiscoveryEndpointIn added in v0.19.0

func OidcDiscoveryEndpointIn(vs ...string) predicate.OrganizationSetting

OidcDiscoveryEndpointIn applies the In predicate on the "oidc_discovery_endpoint" field.

func OidcDiscoveryEndpointIsNil added in v0.19.0

func OidcDiscoveryEndpointIsNil() predicate.OrganizationSetting

OidcDiscoveryEndpointIsNil applies the IsNil predicate on the "oidc_discovery_endpoint" field.

func OidcDiscoveryEndpointLT added in v0.19.0

func OidcDiscoveryEndpointLT(v string) predicate.OrganizationSetting

OidcDiscoveryEndpointLT applies the LT predicate on the "oidc_discovery_endpoint" field.

func OidcDiscoveryEndpointLTE added in v0.19.0

func OidcDiscoveryEndpointLTE(v string) predicate.OrganizationSetting

OidcDiscoveryEndpointLTE applies the LTE predicate on the "oidc_discovery_endpoint" field.

func OidcDiscoveryEndpointNEQ added in v0.19.0

func OidcDiscoveryEndpointNEQ(v string) predicate.OrganizationSetting

OidcDiscoveryEndpointNEQ applies the NEQ predicate on the "oidc_discovery_endpoint" field.

func OidcDiscoveryEndpointNotIn added in v0.19.0

func OidcDiscoveryEndpointNotIn(vs ...string) predicate.OrganizationSetting

OidcDiscoveryEndpointNotIn applies the NotIn predicate on the "oidc_discovery_endpoint" field.

func OidcDiscoveryEndpointNotNil added in v0.19.0

func OidcDiscoveryEndpointNotNil() predicate.OrganizationSetting

OidcDiscoveryEndpointNotNil applies the NotNil predicate on the "oidc_discovery_endpoint" field.

func Or

Or groups predicates with the OR operator between them.

func OrganizationID

func OrganizationID(v string) predicate.OrganizationSetting

OrganizationID applies equality check predicate on the "organization_id" field. It's identical to OrganizationIDEQ.

func OrganizationIDContains

func OrganizationIDContains(v string) predicate.OrganizationSetting

OrganizationIDContains applies the Contains predicate on the "organization_id" field.

func OrganizationIDContainsFold

func OrganizationIDContainsFold(v string) predicate.OrganizationSetting

OrganizationIDContainsFold applies the ContainsFold predicate on the "organization_id" field.

func OrganizationIDEQ

func OrganizationIDEQ(v string) predicate.OrganizationSetting

OrganizationIDEQ applies the EQ predicate on the "organization_id" field.

func OrganizationIDEqualFold

func OrganizationIDEqualFold(v string) predicate.OrganizationSetting

OrganizationIDEqualFold applies the EqualFold predicate on the "organization_id" field.

func OrganizationIDGT

func OrganizationIDGT(v string) predicate.OrganizationSetting

OrganizationIDGT applies the GT predicate on the "organization_id" field.

func OrganizationIDGTE

func OrganizationIDGTE(v string) predicate.OrganizationSetting

OrganizationIDGTE applies the GTE predicate on the "organization_id" field.

func OrganizationIDHasPrefix

func OrganizationIDHasPrefix(v string) predicate.OrganizationSetting

OrganizationIDHasPrefix applies the HasPrefix predicate on the "organization_id" field.

func OrganizationIDHasSuffix

func OrganizationIDHasSuffix(v string) predicate.OrganizationSetting

OrganizationIDHasSuffix applies the HasSuffix predicate on the "organization_id" field.

func OrganizationIDIn

func OrganizationIDIn(vs ...string) predicate.OrganizationSetting

OrganizationIDIn applies the In predicate on the "organization_id" field.

func OrganizationIDIsNil

func OrganizationIDIsNil() predicate.OrganizationSetting

OrganizationIDIsNil applies the IsNil predicate on the "organization_id" field.

func OrganizationIDLT

func OrganizationIDLT(v string) predicate.OrganizationSetting

OrganizationIDLT applies the LT predicate on the "organization_id" field.

func OrganizationIDLTE

func OrganizationIDLTE(v string) predicate.OrganizationSetting

OrganizationIDLTE applies the LTE predicate on the "organization_id" field.

func OrganizationIDNEQ

func OrganizationIDNEQ(v string) predicate.OrganizationSetting

OrganizationIDNEQ applies the NEQ predicate on the "organization_id" field.

func OrganizationIDNotIn

func OrganizationIDNotIn(vs ...string) predicate.OrganizationSetting

OrganizationIDNotIn applies the NotIn predicate on the "organization_id" field.

func OrganizationIDNotNil

func OrganizationIDNotNil() predicate.OrganizationSetting

OrganizationIDNotNil applies the NotNil predicate on the "organization_id" field.

func PaymentMethodAdded added in v0.28.0

func PaymentMethodAdded(v bool) predicate.OrganizationSetting

PaymentMethodAdded applies equality check predicate on the "payment_method_added" field. It's identical to PaymentMethodAddedEQ.

func PaymentMethodAddedEQ added in v0.28.0

func PaymentMethodAddedEQ(v bool) predicate.OrganizationSetting

PaymentMethodAddedEQ applies the EQ predicate on the "payment_method_added" field.

func PaymentMethodAddedNEQ added in v0.28.0

func PaymentMethodAddedNEQ(v bool) predicate.OrganizationSetting

PaymentMethodAddedNEQ applies the NEQ predicate on the "payment_method_added" field.

func SamlCert added in v0.34.4

SamlCert applies equality check predicate on the "saml_cert" field. It's identical to SamlCertEQ.

func SamlCertContains added in v0.34.4

func SamlCertContains(v string) predicate.OrganizationSetting

SamlCertContains applies the Contains predicate on the "saml_cert" field.

func SamlCertContainsFold added in v0.34.4

func SamlCertContainsFold(v string) predicate.OrganizationSetting

SamlCertContainsFold applies the ContainsFold predicate on the "saml_cert" field.

func SamlCertEQ added in v0.34.4

func SamlCertEQ(v string) predicate.OrganizationSetting

SamlCertEQ applies the EQ predicate on the "saml_cert" field.

func SamlCertEqualFold added in v0.34.4

func SamlCertEqualFold(v string) predicate.OrganizationSetting

SamlCertEqualFold applies the EqualFold predicate on the "saml_cert" field.

func SamlCertGT added in v0.34.4

func SamlCertGT(v string) predicate.OrganizationSetting

SamlCertGT applies the GT predicate on the "saml_cert" field.

func SamlCertGTE added in v0.34.4

func SamlCertGTE(v string) predicate.OrganizationSetting

SamlCertGTE applies the GTE predicate on the "saml_cert" field.

func SamlCertHasPrefix added in v0.34.4

func SamlCertHasPrefix(v string) predicate.OrganizationSetting

SamlCertHasPrefix applies the HasPrefix predicate on the "saml_cert" field.

func SamlCertHasSuffix added in v0.34.4

func SamlCertHasSuffix(v string) predicate.OrganizationSetting

SamlCertHasSuffix applies the HasSuffix predicate on the "saml_cert" field.

func SamlCertIn added in v0.34.4

func SamlCertIn(vs ...string) predicate.OrganizationSetting

SamlCertIn applies the In predicate on the "saml_cert" field.

func SamlCertIsNil added in v0.34.4

func SamlCertIsNil() predicate.OrganizationSetting

SamlCertIsNil applies the IsNil predicate on the "saml_cert" field.

func SamlCertLT added in v0.34.4

func SamlCertLT(v string) predicate.OrganizationSetting

SamlCertLT applies the LT predicate on the "saml_cert" field.

func SamlCertLTE added in v0.34.4

func SamlCertLTE(v string) predicate.OrganizationSetting

SamlCertLTE applies the LTE predicate on the "saml_cert" field.

func SamlCertNEQ added in v0.34.4

func SamlCertNEQ(v string) predicate.OrganizationSetting

SamlCertNEQ applies the NEQ predicate on the "saml_cert" field.

func SamlCertNotIn added in v0.34.4

func SamlCertNotIn(vs ...string) predicate.OrganizationSetting

SamlCertNotIn applies the NotIn predicate on the "saml_cert" field.

func SamlCertNotNil added in v0.34.4

func SamlCertNotNil() predicate.OrganizationSetting

SamlCertNotNil applies the NotNil predicate on the "saml_cert" field.

func SamlIssuer added in v0.34.4

func SamlIssuer(v string) predicate.OrganizationSetting

SamlIssuer applies equality check predicate on the "saml_issuer" field. It's identical to SamlIssuerEQ.

func SamlIssuerContains added in v0.34.4

func SamlIssuerContains(v string) predicate.OrganizationSetting

SamlIssuerContains applies the Contains predicate on the "saml_issuer" field.

func SamlIssuerContainsFold added in v0.34.4

func SamlIssuerContainsFold(v string) predicate.OrganizationSetting

SamlIssuerContainsFold applies the ContainsFold predicate on the "saml_issuer" field.

func SamlIssuerEQ added in v0.34.4

func SamlIssuerEQ(v string) predicate.OrganizationSetting

SamlIssuerEQ applies the EQ predicate on the "saml_issuer" field.

func SamlIssuerEqualFold added in v0.34.4

func SamlIssuerEqualFold(v string) predicate.OrganizationSetting

SamlIssuerEqualFold applies the EqualFold predicate on the "saml_issuer" field.

func SamlIssuerGT added in v0.34.4

func SamlIssuerGT(v string) predicate.OrganizationSetting

SamlIssuerGT applies the GT predicate on the "saml_issuer" field.

func SamlIssuerGTE added in v0.34.4

func SamlIssuerGTE(v string) predicate.OrganizationSetting

SamlIssuerGTE applies the GTE predicate on the "saml_issuer" field.

func SamlIssuerHasPrefix added in v0.34.4

func SamlIssuerHasPrefix(v string) predicate.OrganizationSetting

SamlIssuerHasPrefix applies the HasPrefix predicate on the "saml_issuer" field.

func SamlIssuerHasSuffix added in v0.34.4

func SamlIssuerHasSuffix(v string) predicate.OrganizationSetting

SamlIssuerHasSuffix applies the HasSuffix predicate on the "saml_issuer" field.

func SamlIssuerIn added in v0.34.4

func SamlIssuerIn(vs ...string) predicate.OrganizationSetting

SamlIssuerIn applies the In predicate on the "saml_issuer" field.

func SamlIssuerIsNil added in v0.34.4

func SamlIssuerIsNil() predicate.OrganizationSetting

SamlIssuerIsNil applies the IsNil predicate on the "saml_issuer" field.

func SamlIssuerLT added in v0.34.4

func SamlIssuerLT(v string) predicate.OrganizationSetting

SamlIssuerLT applies the LT predicate on the "saml_issuer" field.

func SamlIssuerLTE added in v0.34.4

func SamlIssuerLTE(v string) predicate.OrganizationSetting

SamlIssuerLTE applies the LTE predicate on the "saml_issuer" field.

func SamlIssuerNEQ added in v0.34.4

func SamlIssuerNEQ(v string) predicate.OrganizationSetting

SamlIssuerNEQ applies the NEQ predicate on the "saml_issuer" field.

func SamlIssuerNotIn added in v0.34.4

func SamlIssuerNotIn(vs ...string) predicate.OrganizationSetting

SamlIssuerNotIn applies the NotIn predicate on the "saml_issuer" field.

func SamlIssuerNotNil added in v0.34.4

func SamlIssuerNotNil() predicate.OrganizationSetting

SamlIssuerNotNil applies the NotNil predicate on the "saml_issuer" field.

func SamlSigninURL added in v0.34.4

func SamlSigninURL(v string) predicate.OrganizationSetting

SamlSigninURL applies equality check predicate on the "saml_signin_url" field. It's identical to SamlSigninURLEQ.

func SamlSigninURLContains added in v0.34.4

func SamlSigninURLContains(v string) predicate.OrganizationSetting

SamlSigninURLContains applies the Contains predicate on the "saml_signin_url" field.

func SamlSigninURLContainsFold added in v0.34.4

func SamlSigninURLContainsFold(v string) predicate.OrganizationSetting

SamlSigninURLContainsFold applies the ContainsFold predicate on the "saml_signin_url" field.

func SamlSigninURLEQ added in v0.34.4

func SamlSigninURLEQ(v string) predicate.OrganizationSetting

SamlSigninURLEQ applies the EQ predicate on the "saml_signin_url" field.

func SamlSigninURLEqualFold added in v0.34.4

func SamlSigninURLEqualFold(v string) predicate.OrganizationSetting

SamlSigninURLEqualFold applies the EqualFold predicate on the "saml_signin_url" field.

func SamlSigninURLGT added in v0.34.4

func SamlSigninURLGT(v string) predicate.OrganizationSetting

SamlSigninURLGT applies the GT predicate on the "saml_signin_url" field.

func SamlSigninURLGTE added in v0.34.4

func SamlSigninURLGTE(v string) predicate.OrganizationSetting

SamlSigninURLGTE applies the GTE predicate on the "saml_signin_url" field.

func SamlSigninURLHasPrefix added in v0.34.4

func SamlSigninURLHasPrefix(v string) predicate.OrganizationSetting

SamlSigninURLHasPrefix applies the HasPrefix predicate on the "saml_signin_url" field.

func SamlSigninURLHasSuffix added in v0.34.4

func SamlSigninURLHasSuffix(v string) predicate.OrganizationSetting

SamlSigninURLHasSuffix applies the HasSuffix predicate on the "saml_signin_url" field.

func SamlSigninURLIn added in v0.34.4

func SamlSigninURLIn(vs ...string) predicate.OrganizationSetting

SamlSigninURLIn applies the In predicate on the "saml_signin_url" field.

func SamlSigninURLIsNil added in v0.34.4

func SamlSigninURLIsNil() predicate.OrganizationSetting

SamlSigninURLIsNil applies the IsNil predicate on the "saml_signin_url" field.

func SamlSigninURLLT added in v0.34.4

func SamlSigninURLLT(v string) predicate.OrganizationSetting

SamlSigninURLLT applies the LT predicate on the "saml_signin_url" field.

func SamlSigninURLLTE added in v0.34.4

func SamlSigninURLLTE(v string) predicate.OrganizationSetting

SamlSigninURLLTE applies the LTE predicate on the "saml_signin_url" field.

func SamlSigninURLNEQ added in v0.34.4

func SamlSigninURLNEQ(v string) predicate.OrganizationSetting

SamlSigninURLNEQ applies the NEQ predicate on the "saml_signin_url" field.

func SamlSigninURLNotIn added in v0.34.4

func SamlSigninURLNotIn(vs ...string) predicate.OrganizationSetting

SamlSigninURLNotIn applies the NotIn predicate on the "saml_signin_url" field.

func SamlSigninURLNotNil added in v0.34.4

func SamlSigninURLNotNil() predicate.OrganizationSetting

SamlSigninURLNotNil applies the NotNil predicate on the "saml_signin_url" field.

func TagsIsNil

func TagsIsNil() predicate.OrganizationSetting

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

func TagsNotNil

func TagsNotNil() predicate.OrganizationSetting

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

func TaxIdentifier

func TaxIdentifier(v string) predicate.OrganizationSetting

TaxIdentifier applies equality check predicate on the "tax_identifier" field. It's identical to TaxIdentifierEQ.

func TaxIdentifierContains

func TaxIdentifierContains(v string) predicate.OrganizationSetting

TaxIdentifierContains applies the Contains predicate on the "tax_identifier" field.

func TaxIdentifierContainsFold

func TaxIdentifierContainsFold(v string) predicate.OrganizationSetting

TaxIdentifierContainsFold applies the ContainsFold predicate on the "tax_identifier" field.

func TaxIdentifierEQ

func TaxIdentifierEQ(v string) predicate.OrganizationSetting

TaxIdentifierEQ applies the EQ predicate on the "tax_identifier" field.

func TaxIdentifierEqualFold

func TaxIdentifierEqualFold(v string) predicate.OrganizationSetting

TaxIdentifierEqualFold applies the EqualFold predicate on the "tax_identifier" field.

func TaxIdentifierGT

func TaxIdentifierGT(v string) predicate.OrganizationSetting

TaxIdentifierGT applies the GT predicate on the "tax_identifier" field.

func TaxIdentifierGTE

func TaxIdentifierGTE(v string) predicate.OrganizationSetting

TaxIdentifierGTE applies the GTE predicate on the "tax_identifier" field.

func TaxIdentifierHasPrefix

func TaxIdentifierHasPrefix(v string) predicate.OrganizationSetting

TaxIdentifierHasPrefix applies the HasPrefix predicate on the "tax_identifier" field.

func TaxIdentifierHasSuffix

func TaxIdentifierHasSuffix(v string) predicate.OrganizationSetting

TaxIdentifierHasSuffix applies the HasSuffix predicate on the "tax_identifier" field.

func TaxIdentifierIn

func TaxIdentifierIn(vs ...string) predicate.OrganizationSetting

TaxIdentifierIn applies the In predicate on the "tax_identifier" field.

func TaxIdentifierIsNil

func TaxIdentifierIsNil() predicate.OrganizationSetting

TaxIdentifierIsNil applies the IsNil predicate on the "tax_identifier" field.

func TaxIdentifierLT

func TaxIdentifierLT(v string) predicate.OrganizationSetting

TaxIdentifierLT applies the LT predicate on the "tax_identifier" field.

func TaxIdentifierLTE

func TaxIdentifierLTE(v string) predicate.OrganizationSetting

TaxIdentifierLTE applies the LTE predicate on the "tax_identifier" field.

func TaxIdentifierNEQ

func TaxIdentifierNEQ(v string) predicate.OrganizationSetting

TaxIdentifierNEQ applies the NEQ predicate on the "tax_identifier" field.

func TaxIdentifierNotIn

func TaxIdentifierNotIn(vs ...string) predicate.OrganizationSetting

TaxIdentifierNotIn applies the NotIn predicate on the "tax_identifier" field.

func TaxIdentifierNotNil

func TaxIdentifierNotNil() predicate.OrganizationSetting

TaxIdentifierNotNil applies the NotNil predicate on the "tax_identifier" field.

func UpdatedAt

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

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.OrganizationSetting

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

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.OrganizationSetting

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

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.OrganizationSetting

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

func UpdatedAtIn

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

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

func UpdatedAtIsNil

func UpdatedAtIsNil() predicate.OrganizationSetting

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

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.OrganizationSetting

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

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.OrganizationSetting

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

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.OrganizationSetting

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

func UpdatedAtNotIn

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

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

func UpdatedAtNotNil

func UpdatedAtNotNil() predicate.OrganizationSetting

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

func UpdatedBy

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

func UpdatedByContains

func UpdatedByContains(v string) predicate.OrganizationSetting

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

func UpdatedByContainsFold

func UpdatedByContainsFold(v string) predicate.OrganizationSetting

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

func UpdatedByEQ

func UpdatedByEQ(v string) predicate.OrganizationSetting

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

func UpdatedByEqualFold

func UpdatedByEqualFold(v string) predicate.OrganizationSetting

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

func UpdatedByGT

func UpdatedByGT(v string) predicate.OrganizationSetting

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

func UpdatedByGTE

func UpdatedByGTE(v string) predicate.OrganizationSetting

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

func UpdatedByHasPrefix

func UpdatedByHasPrefix(v string) predicate.OrganizationSetting

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

func UpdatedByHasSuffix

func UpdatedByHasSuffix(v string) predicate.OrganizationSetting

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

func UpdatedByIn

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

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

func UpdatedByIsNil

func UpdatedByIsNil() predicate.OrganizationSetting

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

func UpdatedByLT

func UpdatedByLT(v string) predicate.OrganizationSetting

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

func UpdatedByLTE

func UpdatedByLTE(v string) predicate.OrganizationSetting

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

func UpdatedByNEQ

func UpdatedByNEQ(v string) predicate.OrganizationSetting

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

func UpdatedByNotIn

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

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

func UpdatedByNotNil

func UpdatedByNotNil() predicate.OrganizationSetting

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

func ByAllowMatchingDomainsAutojoin added in v0.34.4

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

ByAllowMatchingDomainsAutojoin orders the results by the allow_matching_domains_autojoin field.

func ByBillingContact

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

ByBillingContact orders the results by the billing_contact field.

func ByBillingEmail

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

ByBillingEmail orders the results by the billing_email field.

func ByBillingNotificationsEnabled added in v0.6.8

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

ByBillingNotificationsEnabled orders the results by the billing_notifications_enabled field.

func ByBillingPhone

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

ByBillingPhone orders the results by the billing_phone field.

func ByComplianceWebhookToken added in v0.19.0

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

ByComplianceWebhookToken orders the results by the compliance_webhook_token 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 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 ByFiles added in v0.3.0

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

ByFiles orders the results by files terms.

func ByFilesCount added in v0.3.0

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

ByFilesCount orders the results by files count.

func ByGeoLocation

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

ByGeoLocation orders the results by the geo_location field.

func ByID

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

ByID orders the results by the id field.

func ByIdentityProvider added in v0.19.0

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

ByIdentityProvider orders the results by the identity_provider field.

func ByIdentityProviderAuthTested added in v0.33.3

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

ByIdentityProviderAuthTested orders the results by the identity_provider_auth_tested field.

func ByIdentityProviderClientID added in v0.19.0

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

ByIdentityProviderClientID orders the results by the identity_provider_client_id field.

func ByIdentityProviderClientSecret added in v0.19.0

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

ByIdentityProviderClientSecret orders the results by the identity_provider_client_secret field.

func ByIdentityProviderEntityID added in v0.19.0

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

ByIdentityProviderEntityID orders the results by the identity_provider_entity_id field.

func ByIdentityProviderLoginEnforced added in v0.19.0

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

ByIdentityProviderLoginEnforced orders the results by the identity_provider_login_enforced field.

func ByIdentityProviderMetadataEndpoint added in v0.19.0

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

ByIdentityProviderMetadataEndpoint orders the results by the identity_provider_metadata_endpoint field.

func ByMultifactorAuthEnforced added in v0.34.4

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

ByMultifactorAuthEnforced orders the results by the multifactor_auth_enforced field.

func ByOidcDiscoveryEndpoint added in v0.19.0

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

ByOidcDiscoveryEndpoint orders the results by the oidc_discovery_endpoint field.

func ByOrganizationField

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

ByOrganizationField orders the results by organization field.

func ByOrganizationID

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

ByOrganizationID orders the results by the organization_id field.

func ByPaymentMethodAdded added in v0.28.0

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

ByPaymentMethodAdded orders the results by the payment_method_added field.

func BySamlCert added in v0.34.4

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

BySamlCert orders the results by the saml_cert field.

func BySamlIssuer added in v0.34.4

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

BySamlIssuer orders the results by the saml_issuer field.

func BySamlSigninURL added in v0.34.4

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

BySamlSigninURL orders the results by the saml_signin_url field.

func ByTaxIdentifier

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

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