Documentation ¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.NamespaceSecret) predicate.NamespaceSecret
- func ID(id int) predicate.NamespaceSecret
- func IDEQ(id int) predicate.NamespaceSecret
- func IDGT(id int) predicate.NamespaceSecret
- func IDGTE(id int) predicate.NamespaceSecret
- func IDIn(ids ...int) predicate.NamespaceSecret
- func IDLT(id int) predicate.NamespaceSecret
- func IDLTE(id int) predicate.NamespaceSecret
- func IDNEQ(id int) predicate.NamespaceSecret
- func IDNotIn(ids ...int) predicate.NamespaceSecret
- func Name(v string) predicate.NamespaceSecret
- func NameContains(v string) predicate.NamespaceSecret
- func NameContainsFold(v string) predicate.NamespaceSecret
- func NameEQ(v string) predicate.NamespaceSecret
- func NameEqualFold(v string) predicate.NamespaceSecret
- func NameGT(v string) predicate.NamespaceSecret
- func NameGTE(v string) predicate.NamespaceSecret
- func NameHasPrefix(v string) predicate.NamespaceSecret
- func NameHasSuffix(v string) predicate.NamespaceSecret
- func NameIn(vs ...string) predicate.NamespaceSecret
- func NameLT(v string) predicate.NamespaceSecret
- func NameLTE(v string) predicate.NamespaceSecret
- func NameNEQ(v string) predicate.NamespaceSecret
- func NameNotIn(vs ...string) predicate.NamespaceSecret
- func Not(p predicate.NamespaceSecret) predicate.NamespaceSecret
- func Ns(v string) predicate.NamespaceSecret
- func NsContains(v string) predicate.NamespaceSecret
- func NsContainsFold(v string) predicate.NamespaceSecret
- func NsEQ(v string) predicate.NamespaceSecret
- func NsEqualFold(v string) predicate.NamespaceSecret
- func NsGT(v string) predicate.NamespaceSecret
- func NsGTE(v string) predicate.NamespaceSecret
- func NsHasPrefix(v string) predicate.NamespaceSecret
- func NsHasSuffix(v string) predicate.NamespaceSecret
- func NsIn(vs ...string) predicate.NamespaceSecret
- func NsLT(v string) predicate.NamespaceSecret
- func NsLTE(v string) predicate.NamespaceSecret
- func NsNEQ(v string) predicate.NamespaceSecret
- func NsNotIn(vs ...string) predicate.NamespaceSecret
- func Or(predicates ...predicate.NamespaceSecret) predicate.NamespaceSecret
- func Secret(v []byte) predicate.NamespaceSecret
- func SecretEQ(v []byte) predicate.NamespaceSecret
- func SecretGT(v []byte) predicate.NamespaceSecret
- func SecretGTE(v []byte) predicate.NamespaceSecret
- func SecretIn(vs ...[]byte) predicate.NamespaceSecret
- func SecretLT(v []byte) predicate.NamespaceSecret
- func SecretLTE(v []byte) predicate.NamespaceSecret
- func SecretNEQ(v []byte) predicate.NamespaceSecret
- func SecretNotIn(vs ...[]byte) predicate.NamespaceSecret
- func ValidColumn(column string) bool
Constants ¶
const ( // Label holds the string label denoting the namespacesecret type in the database. Label = "namespace_secret" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldNs holds the string denoting the ns field in the database. FieldNs = "ns" // FieldName holds the string denoting the name field in the database. FieldName = "name" // FieldSecret holds the string denoting the secret field in the database. FieldSecret = "secret" // Table holds the table name of the namespacesecret in the database. Table = "namespace_secrets" )
Variables ¶
var Columns = []string{ FieldID, FieldNs, FieldName, FieldSecret, }
Columns holds all SQL columns for namespacesecret fields.
Functions ¶
func And ¶
func And(predicates ...predicate.NamespaceSecret) predicate.NamespaceSecret
And groups predicates with the AND operator between them.
func IDEQ ¶
func IDEQ(id int) predicate.NamespaceSecret
IDEQ applies the EQ predicate on the ID field.
func IDGT ¶
func IDGT(id int) predicate.NamespaceSecret
IDGT applies the GT predicate on the ID field.
func IDGTE ¶
func IDGTE(id int) predicate.NamespaceSecret
IDGTE applies the GTE predicate on the ID field.
func IDIn ¶
func IDIn(ids ...int) predicate.NamespaceSecret
IDIn applies the In predicate on the ID field.
func IDLT ¶
func IDLT(id int) predicate.NamespaceSecret
IDLT applies the LT predicate on the ID field.
func IDLTE ¶
func IDLTE(id int) predicate.NamespaceSecret
IDLTE applies the LTE predicate on the ID field.
func IDNEQ ¶
func IDNEQ(id int) predicate.NamespaceSecret
IDNEQ applies the NEQ predicate on the ID field.
func IDNotIn ¶
func IDNotIn(ids ...int) predicate.NamespaceSecret
IDNotIn applies the NotIn predicate on the ID field.
func Name ¶
func Name(v string) predicate.NamespaceSecret
Name applies equality check predicate on the "name" field. It's identical to NameEQ.
func NameContains ¶
func NameContains(v string) predicate.NamespaceSecret
NameContains applies the Contains predicate on the "name" field.
func NameContainsFold ¶
func NameContainsFold(v string) predicate.NamespaceSecret
NameContainsFold applies the ContainsFold predicate on the "name" field.
func NameEQ ¶
func NameEQ(v string) predicate.NamespaceSecret
NameEQ applies the EQ predicate on the "name" field.
func NameEqualFold ¶
func NameEqualFold(v string) predicate.NamespaceSecret
NameEqualFold applies the EqualFold predicate on the "name" field.
func NameGT ¶
func NameGT(v string) predicate.NamespaceSecret
NameGT applies the GT predicate on the "name" field.
func NameGTE ¶
func NameGTE(v string) predicate.NamespaceSecret
NameGTE applies the GTE predicate on the "name" field.
func NameHasPrefix ¶
func NameHasPrefix(v string) predicate.NamespaceSecret
NameHasPrefix applies the HasPrefix predicate on the "name" field.
func NameHasSuffix ¶
func NameHasSuffix(v string) predicate.NamespaceSecret
NameHasSuffix applies the HasSuffix predicate on the "name" field.
func NameIn ¶
func NameIn(vs ...string) predicate.NamespaceSecret
NameIn applies the In predicate on the "name" field.
func NameLT ¶
func NameLT(v string) predicate.NamespaceSecret
NameLT applies the LT predicate on the "name" field.
func NameLTE ¶
func NameLTE(v string) predicate.NamespaceSecret
NameLTE applies the LTE predicate on the "name" field.
func NameNEQ ¶
func NameNEQ(v string) predicate.NamespaceSecret
NameNEQ applies the NEQ predicate on the "name" field.
func NameNotIn ¶
func NameNotIn(vs ...string) predicate.NamespaceSecret
NameNotIn applies the NotIn predicate on the "name" field.
func Not ¶
func Not(p predicate.NamespaceSecret) predicate.NamespaceSecret
Not applies the not operator on the given predicate.
func Ns ¶
func Ns(v string) predicate.NamespaceSecret
Ns applies equality check predicate on the "ns" field. It's identical to NsEQ.
func NsContains ¶
func NsContains(v string) predicate.NamespaceSecret
NsContains applies the Contains predicate on the "ns" field.
func NsContainsFold ¶
func NsContainsFold(v string) predicate.NamespaceSecret
NsContainsFold applies the ContainsFold predicate on the "ns" field.
func NsEQ ¶
func NsEQ(v string) predicate.NamespaceSecret
NsEQ applies the EQ predicate on the "ns" field.
func NsEqualFold ¶
func NsEqualFold(v string) predicate.NamespaceSecret
NsEqualFold applies the EqualFold predicate on the "ns" field.
func NsGT ¶
func NsGT(v string) predicate.NamespaceSecret
NsGT applies the GT predicate on the "ns" field.
func NsGTE ¶
func NsGTE(v string) predicate.NamespaceSecret
NsGTE applies the GTE predicate on the "ns" field.
func NsHasPrefix ¶
func NsHasPrefix(v string) predicate.NamespaceSecret
NsHasPrefix applies the HasPrefix predicate on the "ns" field.
func NsHasSuffix ¶
func NsHasSuffix(v string) predicate.NamespaceSecret
NsHasSuffix applies the HasSuffix predicate on the "ns" field.
func NsIn ¶
func NsIn(vs ...string) predicate.NamespaceSecret
NsIn applies the In predicate on the "ns" field.
func NsLT ¶
func NsLT(v string) predicate.NamespaceSecret
NsLT applies the LT predicate on the "ns" field.
func NsLTE ¶
func NsLTE(v string) predicate.NamespaceSecret
NsLTE applies the LTE predicate on the "ns" field.
func NsNEQ ¶
func NsNEQ(v string) predicate.NamespaceSecret
NsNEQ applies the NEQ predicate on the "ns" field.
func NsNotIn ¶
func NsNotIn(vs ...string) predicate.NamespaceSecret
NsNotIn applies the NotIn predicate on the "ns" field.
func Or ¶
func Or(predicates ...predicate.NamespaceSecret) predicate.NamespaceSecret
Or groups predicates with the OR operator between them.
func Secret ¶
func Secret(v []byte) predicate.NamespaceSecret
Secret applies equality check predicate on the "secret" field. It's identical to SecretEQ.
func SecretEQ ¶
func SecretEQ(v []byte) predicate.NamespaceSecret
SecretEQ applies the EQ predicate on the "secret" field.
func SecretGT ¶
func SecretGT(v []byte) predicate.NamespaceSecret
SecretGT applies the GT predicate on the "secret" field.
func SecretGTE ¶
func SecretGTE(v []byte) predicate.NamespaceSecret
SecretGTE applies the GTE predicate on the "secret" field.
func SecretIn ¶
func SecretIn(vs ...[]byte) predicate.NamespaceSecret
SecretIn applies the In predicate on the "secret" field.
func SecretLT ¶
func SecretLT(v []byte) predicate.NamespaceSecret
SecretLT applies the LT predicate on the "secret" field.
func SecretLTE ¶
func SecretLTE(v []byte) predicate.NamespaceSecret
SecretLTE applies the LTE predicate on the "secret" field.
func SecretNEQ ¶
func SecretNEQ(v []byte) predicate.NamespaceSecret
SecretNEQ applies the NEQ predicate on the "secret" field.
func SecretNotIn ¶
func SecretNotIn(vs ...[]byte) predicate.NamespaceSecret
SecretNotIn applies the NotIn predicate on the "secret" field.
func ValidColumn ¶
ValidColumn reports if the column name is valid (part of the table columns).
Types ¶
This section is empty.