pvcmetadata

package
v0.0.21 Latest Latest
Warning

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

Go to latest
Published: Jun 6, 2025 License: MIT Imports: 4 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the pvcmetadata type in the database.
	Label = "pvc_metadata"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldCreatedAt holds the string denoting the created_at field in the database.
	FieldCreatedAt = "created_at"
	// FieldUpdatedAt holds the string denoting the updated_at field in the database.
	FieldUpdatedAt = "updated_at"
	// FieldPvcID holds the string denoting the pvc_id field in the database.
	FieldPvcID = "pvc_id"
	// FieldName holds the string denoting the name field in the database.
	FieldName = "name"
	// FieldDescription holds the string denoting the description field in the database.
	FieldDescription = "description"
	// Table holds the table name of the pvcmetadata in the database.
	Table = "pvc_metadata"
)

Variables

View Source
var (
	// DefaultCreatedAt holds the default value on creation for the "created_at" field.
	DefaultCreatedAt func() time.Time
	// DefaultUpdatedAt holds the default value on creation for the "updated_at" field.
	DefaultUpdatedAt func() time.Time
	// UpdateDefaultUpdatedAt holds the default value on update for the "updated_at" field.
	UpdateDefaultUpdatedAt func() time.Time
	// DefaultID holds the default value on creation for the "id" field.
	DefaultID func() uuid.UUID
)

Columns holds all SQL columns for pvcmetadata fields.

Functions

func And

func And(predicates ...predicate.PVCMetadata) predicate.PVCMetadata

And groups predicates with the AND operator between them.

func CreatedAt

func CreatedAt(v time.Time) predicate.PVCMetadata

CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.PVCMetadata

CreatedAtEQ applies the EQ predicate on the "created_at" field.

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.PVCMetadata

CreatedAtGT applies the GT predicate on the "created_at" field.

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.PVCMetadata

CreatedAtGTE applies the GTE predicate on the "created_at" field.

func CreatedAtIn

func CreatedAtIn(vs ...time.Time) predicate.PVCMetadata

CreatedAtIn applies the In predicate on the "created_at" field.

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.PVCMetadata

CreatedAtLT applies the LT predicate on the "created_at" field.

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.PVCMetadata

CreatedAtLTE applies the LTE predicate on the "created_at" field.

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.PVCMetadata

CreatedAtNEQ applies the NEQ predicate on the "created_at" field.

func CreatedAtNotIn

func CreatedAtNotIn(vs ...time.Time) predicate.PVCMetadata

CreatedAtNotIn applies the NotIn predicate on the "created_at" field.

func Description

func Description(v string) predicate.PVCMetadata

Description applies equality check predicate on the "description" field. It's identical to DescriptionEQ.

func DescriptionContains

func DescriptionContains(v string) predicate.PVCMetadata

DescriptionContains applies the Contains predicate on the "description" field.

func DescriptionContainsFold

func DescriptionContainsFold(v string) predicate.PVCMetadata

DescriptionContainsFold applies the ContainsFold predicate on the "description" field.

func DescriptionEQ

func DescriptionEQ(v string) predicate.PVCMetadata

DescriptionEQ applies the EQ predicate on the "description" field.

func DescriptionEqualFold

func DescriptionEqualFold(v string) predicate.PVCMetadata

DescriptionEqualFold applies the EqualFold predicate on the "description" field.

func DescriptionGT

func DescriptionGT(v string) predicate.PVCMetadata

DescriptionGT applies the GT predicate on the "description" field.

func DescriptionGTE

func DescriptionGTE(v string) predicate.PVCMetadata

DescriptionGTE applies the GTE predicate on the "description" field.

func DescriptionHasPrefix

func DescriptionHasPrefix(v string) predicate.PVCMetadata

DescriptionHasPrefix applies the HasPrefix predicate on the "description" field.

func DescriptionHasSuffix

func DescriptionHasSuffix(v string) predicate.PVCMetadata

DescriptionHasSuffix applies the HasSuffix predicate on the "description" field.

func DescriptionIn

func DescriptionIn(vs ...string) predicate.PVCMetadata

DescriptionIn applies the In predicate on the "description" field.

func DescriptionIsNil

func DescriptionIsNil() predicate.PVCMetadata

DescriptionIsNil applies the IsNil predicate on the "description" field.

func DescriptionLT

func DescriptionLT(v string) predicate.PVCMetadata

DescriptionLT applies the LT predicate on the "description" field.

func DescriptionLTE

func DescriptionLTE(v string) predicate.PVCMetadata

DescriptionLTE applies the LTE predicate on the "description" field.

func DescriptionNEQ

func DescriptionNEQ(v string) predicate.PVCMetadata

DescriptionNEQ applies the NEQ predicate on the "description" field.

func DescriptionNotIn

func DescriptionNotIn(vs ...string) predicate.PVCMetadata

DescriptionNotIn applies the NotIn predicate on the "description" field.

func DescriptionNotNil

func DescriptionNotNil() predicate.PVCMetadata

DescriptionNotNil applies the NotNil predicate on the "description" field.

func ID

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id uuid.UUID) predicate.PVCMetadata

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id uuid.UUID) predicate.PVCMetadata

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id uuid.UUID) predicate.PVCMetadata

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...uuid.UUID) predicate.PVCMetadata

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id uuid.UUID) predicate.PVCMetadata

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id uuid.UUID) predicate.PVCMetadata

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id uuid.UUID) predicate.PVCMetadata

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...uuid.UUID) predicate.PVCMetadata

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

NameContains applies the Contains predicate on the "name" field.

func NameContainsFold

func NameContainsFold(v string) predicate.PVCMetadata

NameContainsFold applies the ContainsFold predicate on the "name" field.

func NameEQ

func NameEQ(v string) predicate.PVCMetadata

NameEQ applies the EQ predicate on the "name" field.

func NameEqualFold

func NameEqualFold(v string) predicate.PVCMetadata

NameEqualFold applies the EqualFold predicate on the "name" field.

func NameGT

func NameGT(v string) predicate.PVCMetadata

NameGT applies the GT predicate on the "name" field.

func NameGTE

func NameGTE(v string) predicate.PVCMetadata

NameGTE applies the GTE predicate on the "name" field.

func NameHasPrefix

func NameHasPrefix(v string) predicate.PVCMetadata

NameHasPrefix applies the HasPrefix predicate on the "name" field.

func NameHasSuffix

func NameHasSuffix(v string) predicate.PVCMetadata

NameHasSuffix applies the HasSuffix predicate on the "name" field.

func NameIn

func NameIn(vs ...string) predicate.PVCMetadata

NameIn applies the In predicate on the "name" field.

func NameIsNil

func NameIsNil() predicate.PVCMetadata

NameIsNil applies the IsNil predicate on the "name" field.

func NameLT

func NameLT(v string) predicate.PVCMetadata

NameLT applies the LT predicate on the "name" field.

func NameLTE

func NameLTE(v string) predicate.PVCMetadata

NameLTE applies the LTE predicate on the "name" field.

func NameNEQ

func NameNEQ(v string) predicate.PVCMetadata

NameNEQ applies the NEQ predicate on the "name" field.

func NameNotIn

func NameNotIn(vs ...string) predicate.PVCMetadata

NameNotIn applies the NotIn predicate on the "name" field.

func NameNotNil

func NameNotNil() predicate.PVCMetadata

NameNotNil applies the NotNil predicate on the "name" field.

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.PVCMetadata) predicate.PVCMetadata

Or groups predicates with the OR operator between them.

func PvcID

func PvcID(v string) predicate.PVCMetadata

PvcID applies equality check predicate on the "pvc_id" field. It's identical to PvcIDEQ.

func PvcIDContains

func PvcIDContains(v string) predicate.PVCMetadata

PvcIDContains applies the Contains predicate on the "pvc_id" field.

func PvcIDContainsFold

func PvcIDContainsFold(v string) predicate.PVCMetadata

PvcIDContainsFold applies the ContainsFold predicate on the "pvc_id" field.

func PvcIDEQ

func PvcIDEQ(v string) predicate.PVCMetadata

PvcIDEQ applies the EQ predicate on the "pvc_id" field.

func PvcIDEqualFold

func PvcIDEqualFold(v string) predicate.PVCMetadata

PvcIDEqualFold applies the EqualFold predicate on the "pvc_id" field.

func PvcIDGT

func PvcIDGT(v string) predicate.PVCMetadata

PvcIDGT applies the GT predicate on the "pvc_id" field.

func PvcIDGTE

func PvcIDGTE(v string) predicate.PVCMetadata

PvcIDGTE applies the GTE predicate on the "pvc_id" field.

func PvcIDHasPrefix

func PvcIDHasPrefix(v string) predicate.PVCMetadata

PvcIDHasPrefix applies the HasPrefix predicate on the "pvc_id" field.

func PvcIDHasSuffix

func PvcIDHasSuffix(v string) predicate.PVCMetadata

PvcIDHasSuffix applies the HasSuffix predicate on the "pvc_id" field.

func PvcIDIn

func PvcIDIn(vs ...string) predicate.PVCMetadata

PvcIDIn applies the In predicate on the "pvc_id" field.

func PvcIDLT

func PvcIDLT(v string) predicate.PVCMetadata

PvcIDLT applies the LT predicate on the "pvc_id" field.

func PvcIDLTE

func PvcIDLTE(v string) predicate.PVCMetadata

PvcIDLTE applies the LTE predicate on the "pvc_id" field.

func PvcIDNEQ

func PvcIDNEQ(v string) predicate.PVCMetadata

PvcIDNEQ applies the NEQ predicate on the "pvc_id" field.

func PvcIDNotIn

func PvcIDNotIn(vs ...string) predicate.PVCMetadata

PvcIDNotIn applies the NotIn predicate on the "pvc_id" field.

func UpdatedAt

func UpdatedAt(v time.Time) predicate.PVCMetadata

UpdatedAt applies equality check predicate on the "updated_at" field. It's identical to UpdatedAtEQ.

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.PVCMetadata

UpdatedAtEQ applies the EQ predicate on the "updated_at" field.

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.PVCMetadata

UpdatedAtGT applies the GT predicate on the "updated_at" field.

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.PVCMetadata

UpdatedAtGTE applies the GTE predicate on the "updated_at" field.

func UpdatedAtIn

func UpdatedAtIn(vs ...time.Time) predicate.PVCMetadata

UpdatedAtIn applies the In predicate on the "updated_at" field.

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.PVCMetadata

UpdatedAtLT applies the LT predicate on the "updated_at" field.

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.PVCMetadata

UpdatedAtLTE applies the LTE predicate on the "updated_at" field.

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.PVCMetadata

UpdatedAtNEQ applies the NEQ predicate on the "updated_at" field.

func UpdatedAtNotIn

func UpdatedAtNotIn(vs ...time.Time) predicate.PVCMetadata

UpdatedAtNotIn applies the NotIn predicate on the "updated_at" 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 PVCMetadata queries.

func ByCreatedAt

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

ByCreatedAt orders the results by the created_at field.

func ByDescription

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

ByDescription orders the results by the description field.

func ByID

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

ByID orders the results by the id field.

func ByName

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

ByName orders the results by the name field.

func ByPvcID

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

ByPvcID orders the results by the pvc_id field.

func ByUpdatedAt

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

ByUpdatedAt orders the results by the updated_at field.

Jump to

Keyboard shortcuts

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