oidcconfig

package
v0.0.0-...-3be0946 Latest Latest
Warning

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

Go to latest
Published: Jun 12, 2023 License: GPL-3.0 Imports: 2 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the oidcconfig type in the database.
	Label = "oidc_config"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldProviderKey holds the string denoting the provider_key field in the database.
	FieldProviderKey = "provider_key"
	// FieldProviderName holds the string denoting the provider_name field in the database.
	FieldProviderName = "provider_name"
	// FieldDiscoveryURI holds the string denoting the discovery_uri field in the database.
	FieldDiscoveryURI = "discovery_uri"
	// FieldClientID holds the string denoting the client_id field in the database.
	FieldClientID = "client_id"
	// FieldClientSecret holds the string denoting the client_secret field in the database.
	FieldClientSecret = "client_secret"
	// FieldRedirectURI holds the string denoting the redirect_uri field in the database.
	FieldRedirectURI = "redirect_uri"
	// Table holds the table name of the oidcconfig in the database.
	Table = "oidc_configs"
)

Variables

View Source
var (
	// ProviderKeyValidator is a validator for the "provider_key" field. It is called by the builders before save.
	ProviderKeyValidator func(string) error
	// ProviderNameValidator is a validator for the "provider_name" field. It is called by the builders before save.
	ProviderNameValidator func(string) error
	// DiscoveryURIValidator is a validator for the "discovery_uri" field. It is called by the builders before save.
	DiscoveryURIValidator func(string) error
	// ClientIDValidator is a validator for the "client_id" field. It is called by the builders before save.
	ClientIDValidator func(string) error
	// ClientSecretValidator is a validator for the "client_secret" field. It is called by the builders before save.
	ClientSecretValidator func(string) error
	// RedirectURIValidator is a validator for the "redirect_uri" field. It is called by the builders before save.
	RedirectURIValidator func(string) error
)

Columns holds all SQL columns for oidcconfig fields.

Functions

func And

func And(predicates ...predicate.OIDCConfig) predicate.OIDCConfig

And groups predicates with the AND operator between them.

func ClientID

func ClientID(v string) predicate.OIDCConfig

ClientID applies equality check predicate on the "client_id" field. It's identical to ClientIDEQ.

func ClientIDContains

func ClientIDContains(v string) predicate.OIDCConfig

ClientIDContains applies the Contains predicate on the "client_id" field.

func ClientIDContainsFold

func ClientIDContainsFold(v string) predicate.OIDCConfig

ClientIDContainsFold applies the ContainsFold predicate on the "client_id" field.

func ClientIDEQ

func ClientIDEQ(v string) predicate.OIDCConfig

ClientIDEQ applies the EQ predicate on the "client_id" field.

func ClientIDEqualFold

func ClientIDEqualFold(v string) predicate.OIDCConfig

ClientIDEqualFold applies the EqualFold predicate on the "client_id" field.

func ClientIDGT

func ClientIDGT(v string) predicate.OIDCConfig

ClientIDGT applies the GT predicate on the "client_id" field.

func ClientIDGTE

func ClientIDGTE(v string) predicate.OIDCConfig

ClientIDGTE applies the GTE predicate on the "client_id" field.

func ClientIDHasPrefix

func ClientIDHasPrefix(v string) predicate.OIDCConfig

ClientIDHasPrefix applies the HasPrefix predicate on the "client_id" field.

func ClientIDHasSuffix

func ClientIDHasSuffix(v string) predicate.OIDCConfig

ClientIDHasSuffix applies the HasSuffix predicate on the "client_id" field.

func ClientIDIn

func ClientIDIn(vs ...string) predicate.OIDCConfig

ClientIDIn applies the In predicate on the "client_id" field.

func ClientIDLT

func ClientIDLT(v string) predicate.OIDCConfig

ClientIDLT applies the LT predicate on the "client_id" field.

func ClientIDLTE

func ClientIDLTE(v string) predicate.OIDCConfig

ClientIDLTE applies the LTE predicate on the "client_id" field.

func ClientIDNEQ

func ClientIDNEQ(v string) predicate.OIDCConfig

ClientIDNEQ applies the NEQ predicate on the "client_id" field.

func ClientIDNotIn

func ClientIDNotIn(vs ...string) predicate.OIDCConfig

ClientIDNotIn applies the NotIn predicate on the "client_id" field.

func ClientSecret

func ClientSecret(v string) predicate.OIDCConfig

ClientSecret applies equality check predicate on the "client_secret" field. It's identical to ClientSecretEQ.

func ClientSecretContains

func ClientSecretContains(v string) predicate.OIDCConfig

ClientSecretContains applies the Contains predicate on the "client_secret" field.

func ClientSecretContainsFold

func ClientSecretContainsFold(v string) predicate.OIDCConfig

ClientSecretContainsFold applies the ContainsFold predicate on the "client_secret" field.

func ClientSecretEQ

func ClientSecretEQ(v string) predicate.OIDCConfig

ClientSecretEQ applies the EQ predicate on the "client_secret" field.

func ClientSecretEqualFold

func ClientSecretEqualFold(v string) predicate.OIDCConfig

ClientSecretEqualFold applies the EqualFold predicate on the "client_secret" field.

func ClientSecretGT

func ClientSecretGT(v string) predicate.OIDCConfig

ClientSecretGT applies the GT predicate on the "client_secret" field.

func ClientSecretGTE

func ClientSecretGTE(v string) predicate.OIDCConfig

ClientSecretGTE applies the GTE predicate on the "client_secret" field.

func ClientSecretHasPrefix

func ClientSecretHasPrefix(v string) predicate.OIDCConfig

ClientSecretHasPrefix applies the HasPrefix predicate on the "client_secret" field.

func ClientSecretHasSuffix

func ClientSecretHasSuffix(v string) predicate.OIDCConfig

ClientSecretHasSuffix applies the HasSuffix predicate on the "client_secret" field.

func ClientSecretIn

func ClientSecretIn(vs ...string) predicate.OIDCConfig

ClientSecretIn applies the In predicate on the "client_secret" field.

func ClientSecretLT

func ClientSecretLT(v string) predicate.OIDCConfig

ClientSecretLT applies the LT predicate on the "client_secret" field.

func ClientSecretLTE

func ClientSecretLTE(v string) predicate.OIDCConfig

ClientSecretLTE applies the LTE predicate on the "client_secret" field.

func ClientSecretNEQ

func ClientSecretNEQ(v string) predicate.OIDCConfig

ClientSecretNEQ applies the NEQ predicate on the "client_secret" field.

func ClientSecretNotIn

func ClientSecretNotIn(vs ...string) predicate.OIDCConfig

ClientSecretNotIn applies the NotIn predicate on the "client_secret" field.

func DiscoveryURI

func DiscoveryURI(v string) predicate.OIDCConfig

DiscoveryURI applies equality check predicate on the "discovery_uri" field. It's identical to DiscoveryURIEQ.

func DiscoveryURIContains

func DiscoveryURIContains(v string) predicate.OIDCConfig

DiscoveryURIContains applies the Contains predicate on the "discovery_uri" field.

func DiscoveryURIContainsFold

func DiscoveryURIContainsFold(v string) predicate.OIDCConfig

DiscoveryURIContainsFold applies the ContainsFold predicate on the "discovery_uri" field.

func DiscoveryURIEQ

func DiscoveryURIEQ(v string) predicate.OIDCConfig

DiscoveryURIEQ applies the EQ predicate on the "discovery_uri" field.

func DiscoveryURIEqualFold

func DiscoveryURIEqualFold(v string) predicate.OIDCConfig

DiscoveryURIEqualFold applies the EqualFold predicate on the "discovery_uri" field.

func DiscoveryURIGT

func DiscoveryURIGT(v string) predicate.OIDCConfig

DiscoveryURIGT applies the GT predicate on the "discovery_uri" field.

func DiscoveryURIGTE

func DiscoveryURIGTE(v string) predicate.OIDCConfig

DiscoveryURIGTE applies the GTE predicate on the "discovery_uri" field.

func DiscoveryURIHasPrefix

func DiscoveryURIHasPrefix(v string) predicate.OIDCConfig

DiscoveryURIHasPrefix applies the HasPrefix predicate on the "discovery_uri" field.

func DiscoveryURIHasSuffix

func DiscoveryURIHasSuffix(v string) predicate.OIDCConfig

DiscoveryURIHasSuffix applies the HasSuffix predicate on the "discovery_uri" field.

func DiscoveryURIIn

func DiscoveryURIIn(vs ...string) predicate.OIDCConfig

DiscoveryURIIn applies the In predicate on the "discovery_uri" field.

func DiscoveryURILT

func DiscoveryURILT(v string) predicate.OIDCConfig

DiscoveryURILT applies the LT predicate on the "discovery_uri" field.

func DiscoveryURILTE

func DiscoveryURILTE(v string) predicate.OIDCConfig

DiscoveryURILTE applies the LTE predicate on the "discovery_uri" field.

func DiscoveryURINEQ

func DiscoveryURINEQ(v string) predicate.OIDCConfig

DiscoveryURINEQ applies the NEQ predicate on the "discovery_uri" field.

func DiscoveryURINotIn

func DiscoveryURINotIn(vs ...string) predicate.OIDCConfig

DiscoveryURINotIn applies the NotIn predicate on the "discovery_uri" field.

func ID

func ID(id int) predicate.OIDCConfig

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id int) predicate.OIDCConfig

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id int) predicate.OIDCConfig

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id int) predicate.OIDCConfig

IDGTE applies the GTE predicate on the ID field.

func IDIn

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

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id int) predicate.OIDCConfig

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id int) predicate.OIDCConfig

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id int) predicate.OIDCConfig

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

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

IDNotIn applies the NotIn predicate on the ID field.

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.OIDCConfig) predicate.OIDCConfig

Or groups predicates with the OR operator between them.

func ProviderKey

func ProviderKey(v string) predicate.OIDCConfig

ProviderKey applies equality check predicate on the "provider_key" field. It's identical to ProviderKeyEQ.

func ProviderKeyContains

func ProviderKeyContains(v string) predicate.OIDCConfig

ProviderKeyContains applies the Contains predicate on the "provider_key" field.

func ProviderKeyContainsFold

func ProviderKeyContainsFold(v string) predicate.OIDCConfig

ProviderKeyContainsFold applies the ContainsFold predicate on the "provider_key" field.

func ProviderKeyEQ

func ProviderKeyEQ(v string) predicate.OIDCConfig

ProviderKeyEQ applies the EQ predicate on the "provider_key" field.

func ProviderKeyEqualFold

func ProviderKeyEqualFold(v string) predicate.OIDCConfig

ProviderKeyEqualFold applies the EqualFold predicate on the "provider_key" field.

func ProviderKeyGT

func ProviderKeyGT(v string) predicate.OIDCConfig

ProviderKeyGT applies the GT predicate on the "provider_key" field.

func ProviderKeyGTE

func ProviderKeyGTE(v string) predicate.OIDCConfig

ProviderKeyGTE applies the GTE predicate on the "provider_key" field.

func ProviderKeyHasPrefix

func ProviderKeyHasPrefix(v string) predicate.OIDCConfig

ProviderKeyHasPrefix applies the HasPrefix predicate on the "provider_key" field.

func ProviderKeyHasSuffix

func ProviderKeyHasSuffix(v string) predicate.OIDCConfig

ProviderKeyHasSuffix applies the HasSuffix predicate on the "provider_key" field.

func ProviderKeyIn

func ProviderKeyIn(vs ...string) predicate.OIDCConfig

ProviderKeyIn applies the In predicate on the "provider_key" field.

func ProviderKeyLT

func ProviderKeyLT(v string) predicate.OIDCConfig

ProviderKeyLT applies the LT predicate on the "provider_key" field.

func ProviderKeyLTE

func ProviderKeyLTE(v string) predicate.OIDCConfig

ProviderKeyLTE applies the LTE predicate on the "provider_key" field.

func ProviderKeyNEQ

func ProviderKeyNEQ(v string) predicate.OIDCConfig

ProviderKeyNEQ applies the NEQ predicate on the "provider_key" field.

func ProviderKeyNotIn

func ProviderKeyNotIn(vs ...string) predicate.OIDCConfig

ProviderKeyNotIn applies the NotIn predicate on the "provider_key" field.

func ProviderName

func ProviderName(v string) predicate.OIDCConfig

ProviderName applies equality check predicate on the "provider_name" field. It's identical to ProviderNameEQ.

func ProviderNameContains

func ProviderNameContains(v string) predicate.OIDCConfig

ProviderNameContains applies the Contains predicate on the "provider_name" field.

func ProviderNameContainsFold

func ProviderNameContainsFold(v string) predicate.OIDCConfig

ProviderNameContainsFold applies the ContainsFold predicate on the "provider_name" field.

func ProviderNameEQ

func ProviderNameEQ(v string) predicate.OIDCConfig

ProviderNameEQ applies the EQ predicate on the "provider_name" field.

func ProviderNameEqualFold

func ProviderNameEqualFold(v string) predicate.OIDCConfig

ProviderNameEqualFold applies the EqualFold predicate on the "provider_name" field.

func ProviderNameGT

func ProviderNameGT(v string) predicate.OIDCConfig

ProviderNameGT applies the GT predicate on the "provider_name" field.

func ProviderNameGTE

func ProviderNameGTE(v string) predicate.OIDCConfig

ProviderNameGTE applies the GTE predicate on the "provider_name" field.

func ProviderNameHasPrefix

func ProviderNameHasPrefix(v string) predicate.OIDCConfig

ProviderNameHasPrefix applies the HasPrefix predicate on the "provider_name" field.

func ProviderNameHasSuffix

func ProviderNameHasSuffix(v string) predicate.OIDCConfig

ProviderNameHasSuffix applies the HasSuffix predicate on the "provider_name" field.

func ProviderNameIn

func ProviderNameIn(vs ...string) predicate.OIDCConfig

ProviderNameIn applies the In predicate on the "provider_name" field.

func ProviderNameLT

func ProviderNameLT(v string) predicate.OIDCConfig

ProviderNameLT applies the LT predicate on the "provider_name" field.

func ProviderNameLTE

func ProviderNameLTE(v string) predicate.OIDCConfig

ProviderNameLTE applies the LTE predicate on the "provider_name" field.

func ProviderNameNEQ

func ProviderNameNEQ(v string) predicate.OIDCConfig

ProviderNameNEQ applies the NEQ predicate on the "provider_name" field.

func ProviderNameNotIn

func ProviderNameNotIn(vs ...string) predicate.OIDCConfig

ProviderNameNotIn applies the NotIn predicate on the "provider_name" field.

func RedirectURI

func RedirectURI(v string) predicate.OIDCConfig

RedirectURI applies equality check predicate on the "redirect_uri" field. It's identical to RedirectURIEQ.

func RedirectURIContains

func RedirectURIContains(v string) predicate.OIDCConfig

RedirectURIContains applies the Contains predicate on the "redirect_uri" field.

func RedirectURIContainsFold

func RedirectURIContainsFold(v string) predicate.OIDCConfig

RedirectURIContainsFold applies the ContainsFold predicate on the "redirect_uri" field.

func RedirectURIEQ

func RedirectURIEQ(v string) predicate.OIDCConfig

RedirectURIEQ applies the EQ predicate on the "redirect_uri" field.

func RedirectURIEqualFold

func RedirectURIEqualFold(v string) predicate.OIDCConfig

RedirectURIEqualFold applies the EqualFold predicate on the "redirect_uri" field.

func RedirectURIGT

func RedirectURIGT(v string) predicate.OIDCConfig

RedirectURIGT applies the GT predicate on the "redirect_uri" field.

func RedirectURIGTE

func RedirectURIGTE(v string) predicate.OIDCConfig

RedirectURIGTE applies the GTE predicate on the "redirect_uri" field.

func RedirectURIHasPrefix

func RedirectURIHasPrefix(v string) predicate.OIDCConfig

RedirectURIHasPrefix applies the HasPrefix predicate on the "redirect_uri" field.

func RedirectURIHasSuffix

func RedirectURIHasSuffix(v string) predicate.OIDCConfig

RedirectURIHasSuffix applies the HasSuffix predicate on the "redirect_uri" field.

func RedirectURIIn

func RedirectURIIn(vs ...string) predicate.OIDCConfig

RedirectURIIn applies the In predicate on the "redirect_uri" field.

func RedirectURILT

func RedirectURILT(v string) predicate.OIDCConfig

RedirectURILT applies the LT predicate on the "redirect_uri" field.

func RedirectURILTE

func RedirectURILTE(v string) predicate.OIDCConfig

RedirectURILTE applies the LTE predicate on the "redirect_uri" field.

func RedirectURINEQ

func RedirectURINEQ(v string) predicate.OIDCConfig

RedirectURINEQ applies the NEQ predicate on the "redirect_uri" field.

func RedirectURINotIn

func RedirectURINotIn(vs ...string) predicate.OIDCConfig

RedirectURINotIn applies the NotIn predicate on the "redirect_uri" 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 OIDCConfig queries.

func ByClientID

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

ByClientID orders the results by the client_id field.

func ByClientSecret

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

ByClientSecret orders the results by the client_secret field.

func ByDiscoveryURI

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

ByDiscoveryURI orders the results by the discovery_uri field.

func ByID

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

ByID orders the results by the id field.

func ByProviderKey

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

ByProviderKey orders the results by the provider_key field.

func ByProviderName

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

ByProviderName orders the results by the provider_name field.

func ByRedirectURI

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

ByRedirectURI orders the results by the redirect_uri field.

Jump to

Keyboard shortcuts

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