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