bucketsecret

package
v0.1.1 Latest Latest
Warning

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

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

Documentation

Index

Constants

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

Columns holds all SQL columns for bucketsecret fields.

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

func ID(id int) predicate.BucketSecret

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id int) predicate.BucketSecret

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id int) predicate.BucketSecret

IDGT applies the GT predicate on the ID field.

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 IDLT

func IDLT(id int) predicate.BucketSecret

IDLT applies the LT 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

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

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

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

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

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

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