namespacesecret

package
v0.5.10 Latest Latest
Warning

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

Go to latest
Published: Nov 16, 2021 License: Apache-2.0 Imports: 2 Imported by: 0

Documentation

Index

Constants

View Source
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

Columns holds all SQL columns for namespacesecret fields.

Functions

func And

And groups predicates with the AND operator between them.

func ID

ID filters vertices based on their ID field.

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

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

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

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

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

Not applies the not operator on the given predicate.

func Ns

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

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

NsGT applies the GT predicate on the "ns" field.

func NsGTE

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

NsLT applies the LT predicate on the "ns" field.

func NsLTE

NsLTE applies the LTE predicate on the "ns" field.

func NsNEQ

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

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

func ValidColumn(column string) bool

ValidColumn reports if the column name is valid (part of the table columns).

Types

This section is empty.

Jump to

Keyboard shortcuts

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